From eed42380f98439c0776431bc1bd949f530099c62 Mon Sep 17 00:00:00 2001 From: Johannes Scheuermann Date: Wed, 20 Apr 2016 10:38:19 +0200 Subject: [PATCH] Initial Quobyte support --- api/swagger-spec/apps_v1alpha1.json | 34 + api/swagger-spec/batch_v1.json | 34 + api/swagger-spec/extensions_v1beta1.json | 34 + api/swagger-spec/v1.json | 38 + cmd/kubelet/app/plugins.go | 2 + .../autoscaling/v1/definitions.html | 2 +- docs/api-reference/batch/v1/definitions.html | 71 +- .../extensions/v1beta1/definitions.html | 71 +- docs/api-reference/v1/definitions.html | 78 +- examples/volumes/quobyte/Readme.md | 127 + examples/volumes/quobyte/quobyte-pod.yaml | 19 + hack/.linted_packages | 1 + pkg/api/replication_controller_example.json | 3 +- pkg/api/types.generated.go | 40497 +++++++-------- pkg/api/types.go | 30 + pkg/api/v1/generated.pb.go | 1918 +- pkg/api/v1/generated.proto | 30 + pkg/api/v1/types.generated.go | 40655 ++++++++-------- pkg/api/v1/types.go | 31 +- pkg/api/v1/types_swagger_doc_generated.go | 15 + pkg/api/v1/zz_generated.conversion.go | 64 + pkg/api/v1/zz_generated.deepcopy.go | 28 + pkg/api/validation/validation.go | 34 + pkg/api/validation/validation_test.go | 70 + pkg/api/zz_generated.deepcopy.go | 28 + pkg/apis/extensions/types.go | 1 + pkg/apis/extensions/v1beta1/types.go | 1 + pkg/kubectl/describe.go | 12 + pkg/kubectl/describe_test.go | 7 + pkg/security/podsecuritypolicy/util/util.go | 5 +- pkg/volume/quobyte/OWNERS | 3 + pkg/volume/quobyte/doc.go | 19 + pkg/volume/quobyte/quobyte.go | 260 + pkg/volume/quobyte/quobyte_test.go | 200 + pkg/volume/quobyte/quobyte_util.go | 48 + 35 files changed, 43720 insertions(+), 40750 deletions(-) create mode 100644 examples/volumes/quobyte/Readme.md create mode 100644 examples/volumes/quobyte/quobyte-pod.yaml create mode 100644 pkg/volume/quobyte/OWNERS create mode 100644 pkg/volume/quobyte/doc.go create mode 100644 pkg/volume/quobyte/quobyte.go create mode 100644 pkg/volume/quobyte/quobyte_test.go create mode 100644 pkg/volume/quobyte/quobyte_util.go diff --git a/api/swagger-spec/apps_v1alpha1.json b/api/swagger-spec/apps_v1alpha1.json index f368df82807e2..a458269d13660 100644 --- a/api/swagger-spec/apps_v1alpha1.json +++ b/api/swagger-spec/apps_v1alpha1.json @@ -1413,6 +1413,10 @@ "vsphereVolume": { "$ref": "v1.VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" + }, + "quobyte": { + "$ref": "v1.QuobyteVolumeSource", + "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" } } }, @@ -1981,6 +1985,36 @@ } } }, + "v1.QuobyteVolumeSource": { + "id": "v1.QuobyteVolumeSource", + "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + "required": [ + "registry", + "volume" + ], + "properties": { + "registry": { + "type": "string", + "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes" + }, + "volume": { + "type": "string", + "description": "Volume is a string that references an already created Quobyte volume by name." + }, + "readOnly": { + "type": "boolean", + "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false." + }, + "user": { + "type": "string", + "description": "User to map volume access to Defaults to serivceaccount user" + }, + "group": { + "type": "string", + "description": "Group to map volume access to Default is no group" + } + } + }, "v1.Container": { "id": "v1.Container", "description": "A single application container that you want to run within a pod.", diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index a583634d1c122..b01d01e195eb4 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -1418,6 +1418,10 @@ "vsphereVolume": { "$ref": "v1.VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" + }, + "quobyte": { + "$ref": "v1.QuobyteVolumeSource", + "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" } } }, @@ -1986,6 +1990,36 @@ } } }, + "v1.QuobyteVolumeSource": { + "id": "v1.QuobyteVolumeSource", + "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + "required": [ + "registry", + "volume" + ], + "properties": { + "registry": { + "type": "string", + "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes" + }, + "volume": { + "type": "string", + "description": "Volume is a string that references an already created Quobyte volume by name." + }, + "readOnly": { + "type": "boolean", + "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false." + }, + "user": { + "type": "string", + "description": "User to map volume access to Defaults to serivceaccount user" + }, + "group": { + "type": "string", + "description": "Group to map volume access to Default is no group" + } + } + }, "v1.Container": { "id": "v1.Container", "description": "A single application container that you want to run within a pod.", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index dcaf86dca775a..01af27aedcd60 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -8582,6 +8582,10 @@ "vsphereVolume": { "$ref": "v1.VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" + }, + "quobyte": { + "$ref": "v1.QuobyteVolumeSource", + "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" } } }, @@ -9150,6 +9154,36 @@ } } }, + "v1.QuobyteVolumeSource": { + "id": "v1.QuobyteVolumeSource", + "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + "required": [ + "registry", + "volume" + ], + "properties": { + "registry": { + "type": "string", + "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes" + }, + "volume": { + "type": "string", + "description": "Volume is a string that references an already created Quobyte volume by name." + }, + "readOnly": { + "type": "boolean", + "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false." + }, + "user": { + "type": "string", + "description": "User to map volume access to Defaults to serivceaccount user" + }, + "group": { + "type": "string", + "description": "Group to map volume access to Default is no group" + } + } + }, "v1.Container": { "id": "v1.Container", "description": "A single application container that you want to run within a pod.", diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 3c443dd61f2c3..2c44724e2b344 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -17244,6 +17244,10 @@ "$ref": "v1.VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" }, + "quobyte": { + "$ref": "v1.QuobyteVolumeSource", + "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + }, "accessModes": { "type": "array", "items": { @@ -17629,6 +17633,36 @@ } } }, + "v1.QuobyteVolumeSource": { + "id": "v1.QuobyteVolumeSource", + "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + "required": [ + "registry", + "volume" + ], + "properties": { + "registry": { + "type": "string", + "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes" + }, + "volume": { + "type": "string", + "description": "Volume is a string that references an already created Quobyte volume by name." + }, + "readOnly": { + "type": "boolean", + "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false." + }, + "user": { + "type": "string", + "description": "User to map volume access to Defaults to serivceaccount user" + }, + "group": { + "type": "string", + "description": "Group to map volume access to Default is no group" + } + } + }, "v1.PersistentVolumeStatus": { "id": "v1.PersistentVolumeStatus", "description": "PersistentVolumeStatus is the current status of a persistent volume.", @@ -17879,6 +17913,10 @@ "vsphereVolume": { "$ref": "v1.VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" + }, + "quobyte": { + "$ref": "v1.QuobyteVolumeSource", + "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" } } }, diff --git a/cmd/kubelet/app/plugins.go b/cmd/kubelet/app/plugins.go index f904ffa582e35..b71a87ca33db9 100644 --- a/cmd/kubelet/app/plugins.go +++ b/cmd/kubelet/app/plugins.go @@ -44,6 +44,7 @@ import ( "k8s.io/kubernetes/pkg/volume/host_path" "k8s.io/kubernetes/pkg/volume/iscsi" "k8s.io/kubernetes/pkg/volume/nfs" + "k8s.io/kubernetes/pkg/volume/quobyte" "k8s.io/kubernetes/pkg/volume/rbd" "k8s.io/kubernetes/pkg/volume/secret" "k8s.io/kubernetes/pkg/volume/vsphere_volume" @@ -74,6 +75,7 @@ func ProbeVolumePlugins(pluginDir string) []volume.VolumePlugin { allPlugins = append(allPlugins, glusterfs.ProbeVolumePlugins()...) allPlugins = append(allPlugins, rbd.ProbeVolumePlugins()...) allPlugins = append(allPlugins, cinder.ProbeVolumePlugins()...) + allPlugins = append(allPlugins, quobyte.ProbeVolumePlugins()...) allPlugins = append(allPlugins, cephfs.ProbeVolumePlugins()...) allPlugins = append(allPlugins, downwardapi.ProbeVolumePlugins()...) allPlugins = append(allPlugins, fc.ProbeVolumePlugins()...) diff --git a/docs/api-reference/autoscaling/v1/definitions.html b/docs/api-reference/autoscaling/v1/definitions.html index 68b2d209c6555..ca3bb88b39932 100755 --- a/docs/api-reference/autoscaling/v1/definitions.html +++ b/docs/api-reference/autoscaling/v1/definitions.html @@ -1327,7 +1327,7 @@

any

diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index 76b57b0fe0fd2..0b4f5ad1f9d9d 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -2314,6 +2314,68 @@

unversioned.ListMeta

+ +
+

v1.QuobyteVolumeSource

+
+

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

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

registry

Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

true

string

volume

Volume is a string that references an already created Quobyte volume by name.

true

string

readOnly

ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

false

boolean

false

user

User to map volume access to Defaults to serivceaccount user

false

string

group

Group to map volume access to Default is no group

false

string

+

v1.Job

@@ -3237,6 +3299,13 @@

v1.Volume

v1.VsphereVirtualDiskVolumeSource

+ +

quobyte

+

Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

+

false

+

v1.QuobyteVolumeSource

+ + @@ -4138,7 +4207,7 @@

any

diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 46f7dc2632901..69a45b6289614 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -3104,6 +3104,13 @@

v1.Volume

v1.VsphereVirtualDiskVolumeSource

+ +

quobyte

+

Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

+

false

+

v1.QuobyteVolumeSource

+ + @@ -5892,6 +5899,68 @@

v1beta1.HorizontalPodAutoscalerSpe + +
+

v1.QuobyteVolumeSource

+
+

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

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

registry

Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

true

string

volume

Volume is a string that references an already created Quobyte volume by name.

true

string

readOnly

ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

false

boolean

false

user

User to map volume access to Defaults to serivceaccount user

false

string

group

Group to map volume access to Default is no group

false

string

+

v1beta1.LabelSelectorRequirement

@@ -6526,7 +6595,7 @@

any

diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index da543723b3c97..58163a8c5e1e9 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -3711,6 +3711,13 @@

v1.Volume

v1.VsphereVirtualDiskVolumeSource

+ +

quobyte

+

Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

+

false

+

v1.QuobyteVolumeSource

+ + @@ -5964,6 +5971,13 @@

v1.PersistentVolumeSpec

+

quobyte

+

Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

+

false

+

v1.QuobyteVolumeSource

+ + +

accessModes

AccessModes contains all ways the volume can be mounted. More info: http://releases.k8s.io/HEAD/docs/user-guide/persistent-volumes.md#access-modes

false

@@ -6778,6 +6792,68 @@

v1.ContainerStatus

+ +
+

v1.QuobyteVolumeSource

+
+

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

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

registry

Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

true

string

volume

Volume is a string that references an already created Quobyte volume by name.

true

string

readOnly

ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

false

boolean

false

user

User to map volume access to Defaults to serivceaccount user

false

string

group

Group to map volume access to Default is no group

false

string

+

v1.ContainerImage

@@ -8202,7 +8278,7 @@

any

diff --git a/examples/volumes/quobyte/Readme.md b/examples/volumes/quobyte/Readme.md new file mode 100644 index 0000000000000..80246829d9c60 --- /dev/null +++ b/examples/volumes/quobyte/Readme.md @@ -0,0 +1,127 @@ + + + + +WARNING +WARNING +WARNING +WARNING +WARNING + +

PLEASE NOTE: This document applies to the HEAD of the source tree

+ +If you are using a released version of Kubernetes, you should +refer to the docs that go with that version. + +Documentation for other releases can be found at +[releases.k8s.io](http://releases.k8s.io). + +-- + + + + + + + +- [Quobyte Volume](#quobyte-volume) + - [Quobyte](#quobyte) + - [Prerequisites](#prerequisites) + - [Fixed user Mounts](#fixed-user-mounts) + - [Creating a pod](#creating-a-pod) + + + +# Quobyte Volume + +## Quobyte + +[Quobyte](http://www.quobyte.com) is software that turns commodity servers into a reliable and highly automated multi-data center file system. + +The example assumes that you already have a running Kubernetes cluster and you already have setup Quobyte-Client (1.3+) on each Kubernetes node. + +### Prerequisites + +- Running Quobyte storage cluster +- Quobyte client (1.3+) installed on the Kubernetes nodes more information how you can install Quobyte on your Kubernetes nodes, can be found in the [documentation](https://support.quobyte.com) of Quobyte. +- To get access to Quobyte and the documentation please [contact us](http://www.quobyte.com/get-quobyte) +- Already created Quobyte Volume +- Added the line `allow-usermapping-in-volumename` in `/etc/quobyte/client.cfg` to allow the fixed user mounts + +### Fixed user Mounts + +Quobyte supports since 1.3 fixed user mounts. The fixed-user mounts simply allow to mount all Quobyte Volumes inside one directory and use them as different users. All access to the Quobyte Volume will be rewritten to the specified user and group – both are optional, independent of the user inside the container. You can read more about it [here](https://blog.inovex.de/docker-plugins) under the section "Quobyte Mount and Docker — what’s special" + +## Creating a pod + +See example: + + + +```yaml +apiVersion: v1 +kind: Pod +metadata: + name: quobyte +spec: + containers: + - name: quobyte + image: kubernetes/pause + volumeMounts: + - mountPath: /mnt + name: quobytevolume + volumes: + - name: quobytevolume + quobyte: + registry: registry:7861 + volume: testVolume + readOnly: false + user: root + group: root +``` + +[Download example](quobyte-pod.yaml?raw=true) + + +Parameters: +* **registry** Quobyte registry to use to mount the volume. You can specifiy the registry as : pair or if you want to specify multiple registries you just have to put a semicolon between them e.q. :,:,:. The host can be an IP address or if you have a working DNS you can also provide the DNS names. +* **volume** volume represents a Quobyte volume which must be created before usage. +* **readOnly** is the boolean that sets the mountpoint readOnly or readWrite. +* **user** maps all access to this user. Default is root. +* **group** maps all access to this group. Default is empty. + +Creating the pod: + +```bash +$ kubectl create -f examples/volumes/quobyte/quobyte-pod.yaml +``` + +Verify that the pod is running: + +```bash +$ kubectl get pods quobyte +NAME READY STATUS RESTARTS AGE +quobyte 1/1 Running 0 48m + +$ kubectl get pods quobyte --template '{{.status.hostIP}}{{"\n"}}' +10.245.1.3 +``` + +SSH onto the Machine and validate that quobyte is mounted: + +```bash +$ mount | grep quobyte +quobyte@10.239.10.21:7861/ on /var/lib/kubelet/plugins/kubernetes.io~quobyte type fuse (rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,allow_other) + +$ docker inspect --format '{{ range .Mounts }}{{ if eq .Destination "/mnt"}}{{ .Source }}{{ end }}{{ end }}' 55ab97593cd3 +/var/lib/kubelet/plugins/kubernetes.io~quobyte/root#root@testVolume +``` + + +[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/examples/volumes/quobyte/Readme.md?pixel)]() + diff --git a/examples/volumes/quobyte/quobyte-pod.yaml b/examples/volumes/quobyte/quobyte-pod.yaml new file mode 100644 index 0000000000000..f731a53ea5dd0 --- /dev/null +++ b/examples/volumes/quobyte/quobyte-pod.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Pod +metadata: + name: quobyte +spec: + containers: + - name: quobyte + image: kubernetes/pause + volumeMounts: + - mountPath: /mnt + name: quobytevolume + volumes: + - name: quobytevolume + quobyte: + registry: registry:7861 + volume: testVolume + readOnly: false + user: root + group: root diff --git a/hack/.linted_packages b/hack/.linted_packages index 108f1dc1e0cc7..50a8db356a04c 100644 --- a/hack/.linted_packages +++ b/hack/.linted_packages @@ -198,3 +198,4 @@ test/soak/cauldron test/soak/serve_hostnames third_party/forked/golang/expansion pkg/util/maps +pkg/volume/quobyte diff --git a/pkg/api/replication_controller_example.json b/pkg/api/replication_controller_example.json index 5c3c4fe71c048..70eef1cff3235 100644 --- a/pkg/api/replication_controller_example.json +++ b/pkg/api/replication_controller_example.json @@ -40,7 +40,8 @@ "secret": null, "nfs": null, "iscsi": null, - "glusterfs": null + "glusterfs": null, + "quobyte": null } ], "containers": [ diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index dc5dd02e2a5fb..582e6b10427ff 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -1080,7 +1080,7 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep96 := !z.EncBinary() yy2arr96 := z.EncBasicHandle().StructToArray - var yyq96 [21]bool + var yyq96 [22]bool _, _, _ = yysep96, yyq96, yy2arr96 const yyr96 bool = false yyq96[1] = x.VolumeSource.HostPath != nil && x.HostPath != nil @@ -1094,18 +1094,19 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { yyq96[9] = x.VolumeSource.Glusterfs != nil && x.Glusterfs != nil yyq96[10] = x.VolumeSource.PersistentVolumeClaim != nil && x.PersistentVolumeClaim != nil yyq96[11] = x.VolumeSource.RBD != nil && x.RBD != nil - yyq96[12] = x.VolumeSource.FlexVolume != nil && x.FlexVolume != nil - yyq96[13] = x.VolumeSource.Cinder != nil && x.Cinder != nil - yyq96[14] = x.VolumeSource.CephFS != nil && x.CephFS != nil - yyq96[15] = x.VolumeSource.Flocker != nil && x.Flocker != nil - yyq96[16] = x.VolumeSource.DownwardAPI != nil && x.DownwardAPI != nil - yyq96[17] = x.VolumeSource.FC != nil && x.FC != nil - yyq96[18] = x.VolumeSource.AzureFile != nil && x.AzureFile != nil - yyq96[19] = x.VolumeSource.ConfigMap != nil && x.ConfigMap != nil - yyq96[20] = x.VolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq96[12] = x.VolumeSource.Quobyte != nil && x.Quobyte != nil + yyq96[13] = x.VolumeSource.FlexVolume != nil && x.FlexVolume != nil + yyq96[14] = x.VolumeSource.Cinder != nil && x.Cinder != nil + yyq96[15] = x.VolumeSource.CephFS != nil && x.CephFS != nil + yyq96[16] = x.VolumeSource.Flocker != nil && x.Flocker != nil + yyq96[17] = x.VolumeSource.DownwardAPI != nil && x.DownwardAPI != nil + yyq96[18] = x.VolumeSource.FC != nil && x.FC != nil + yyq96[19] = x.VolumeSource.AzureFile != nil && x.AzureFile != nil + yyq96[20] = x.VolumeSource.ConfigMap != nil && x.ConfigMap != nil + yyq96[21] = x.VolumeSource.VsphereVolume != nil && x.VsphereVolume != nil var yynn96 int if yyr96 || yy2arr96 { - r.EncodeArrayStart(21) + r.EncodeArrayStart(22) } else { yynn96 = 1 for _, b := range yyq96 { @@ -1543,7 +1544,7 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } } var yyn111 bool - if x.VolumeSource.FlexVolume == nil { + if x.VolumeSource.Quobyte == nil { yyn111 = true goto LABEL111 } @@ -1554,10 +1555,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[12] { - if x.FlexVolume == nil { + if x.Quobyte == nil { r.EncodeNil() } else { - x.FlexVolume.CodecEncodeSelf(e) + x.Quobyte.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1566,21 +1567,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn111 { r.EncodeNil() } else { - if x.FlexVolume == nil { + if x.Quobyte == nil { r.EncodeNil() } else { - x.FlexVolume.CodecEncodeSelf(e) + x.Quobyte.CodecEncodeSelf(e) } } } } var yyn112 bool - if x.VolumeSource.Cinder == nil { + if x.VolumeSource.FlexVolume == nil { yyn112 = true goto LABEL112 } @@ -1591,10 +1592,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[13] { - if x.Cinder == nil { + if x.FlexVolume == nil { r.EncodeNil() } else { - x.Cinder.CodecEncodeSelf(e) + x.FlexVolume.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1603,21 +1604,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cinder")) + r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn112 { r.EncodeNil() } else { - if x.Cinder == nil { + if x.FlexVolume == nil { r.EncodeNil() } else { - x.Cinder.CodecEncodeSelf(e) + x.FlexVolume.CodecEncodeSelf(e) } } } } var yyn113 bool - if x.VolumeSource.CephFS == nil { + if x.VolumeSource.Cinder == nil { yyn113 = true goto LABEL113 } @@ -1628,10 +1629,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[14] { - if x.CephFS == nil { + if x.Cinder == nil { r.EncodeNil() } else { - x.CephFS.CodecEncodeSelf(e) + x.Cinder.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1640,21 +1641,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cephfs")) + r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn113 { r.EncodeNil() } else { - if x.CephFS == nil { + if x.Cinder == nil { r.EncodeNil() } else { - x.CephFS.CodecEncodeSelf(e) + x.Cinder.CodecEncodeSelf(e) } } } } var yyn114 bool - if x.VolumeSource.Flocker == nil { + if x.VolumeSource.CephFS == nil { yyn114 = true goto LABEL114 } @@ -1665,10 +1666,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[15] { - if x.Flocker == nil { + if x.CephFS == nil { r.EncodeNil() } else { - x.Flocker.CodecEncodeSelf(e) + x.CephFS.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1677,21 +1678,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("flocker")) + r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn114 { r.EncodeNil() } else { - if x.Flocker == nil { + if x.CephFS == nil { r.EncodeNil() } else { - x.Flocker.CodecEncodeSelf(e) + x.CephFS.CodecEncodeSelf(e) } } } } var yyn115 bool - if x.VolumeSource.DownwardAPI == nil { + if x.VolumeSource.Flocker == nil { yyn115 = true goto LABEL115 } @@ -1702,10 +1703,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[16] { - if x.DownwardAPI == nil { + if x.Flocker == nil { r.EncodeNil() } else { - x.DownwardAPI.CodecEncodeSelf(e) + x.Flocker.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1714,21 +1715,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("downwardAPI")) + r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn115 { r.EncodeNil() } else { - if x.DownwardAPI == nil { + if x.Flocker == nil { r.EncodeNil() } else { - x.DownwardAPI.CodecEncodeSelf(e) + x.Flocker.CodecEncodeSelf(e) } } } } var yyn116 bool - if x.VolumeSource.FC == nil { + if x.VolumeSource.DownwardAPI == nil { yyn116 = true goto LABEL116 } @@ -1739,10 +1740,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[17] { - if x.FC == nil { + if x.DownwardAPI == nil { r.EncodeNil() } else { - x.FC.CodecEncodeSelf(e) + x.DownwardAPI.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1751,21 +1752,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fc")) + r.EncodeString(codecSelferC_UTF81234, string("downwardAPI")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn116 { r.EncodeNil() } else { - if x.FC == nil { + if x.DownwardAPI == nil { r.EncodeNil() } else { - x.FC.CodecEncodeSelf(e) + x.DownwardAPI.CodecEncodeSelf(e) } } } } var yyn117 bool - if x.VolumeSource.AzureFile == nil { + if x.VolumeSource.FC == nil { yyn117 = true goto LABEL117 } @@ -1776,10 +1777,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[18] { - if x.AzureFile == nil { + if x.FC == nil { r.EncodeNil() } else { - x.AzureFile.CodecEncodeSelf(e) + x.FC.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1788,21 +1789,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("azureFile")) + r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn117 { r.EncodeNil() } else { - if x.AzureFile == nil { + if x.FC == nil { r.EncodeNil() } else { - x.AzureFile.CodecEncodeSelf(e) + x.FC.CodecEncodeSelf(e) } } } } var yyn118 bool - if x.VolumeSource.ConfigMap == nil { + if x.VolumeSource.AzureFile == nil { yyn118 = true goto LABEL118 } @@ -1813,10 +1814,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[19] { - if x.ConfigMap == nil { + if x.AzureFile == nil { r.EncodeNil() } else { - x.ConfigMap.CodecEncodeSelf(e) + x.AzureFile.CodecEncodeSelf(e) } } else { r.EncodeNil() @@ -1825,21 +1826,21 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq96[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("configMap")) + r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn118 { r.EncodeNil() } else { - if x.ConfigMap == nil { + if x.AzureFile == nil { r.EncodeNil() } else { - x.ConfigMap.CodecEncodeSelf(e) + x.AzureFile.CodecEncodeSelf(e) } } } } var yyn119 bool - if x.VolumeSource.VsphereVolume == nil { + if x.VolumeSource.ConfigMap == nil { yyn119 = true goto LABEL119 } @@ -1850,6 +1851,43 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq96[20] { + if x.ConfigMap == nil { + r.EncodeNil() + } else { + x.ConfigMap.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq96[20] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("configMap")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn119 { + r.EncodeNil() + } else { + if x.ConfigMap == nil { + r.EncodeNil() + } else { + x.ConfigMap.CodecEncodeSelf(e) + } + } + } + } + var yyn120 bool + if x.VolumeSource.VsphereVolume == nil { + yyn120 = true + goto LABEL120 + } + LABEL120: + if yyr96 || yy2arr96 { + if yyn120 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq96[21] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -1860,11 +1898,11 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq96[20] { + if yyq96[21] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn119 { + if yyn120 { r.EncodeNil() } else { if x.VsphereVolume == nil { @@ -1888,25 +1926,25 @@ func (x *Volume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym120 := z.DecBinary() - _ = yym120 + yym121 := z.DecBinary() + _ = yym121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct121 := r.ContainerType() - if yyct121 == codecSelferValueTypeMap1234 { - yyl121 := r.ReadMapStart() - if yyl121 == 0 { + yyct122 := r.ContainerType() + if yyct122 == codecSelferValueTypeMap1234 { + yyl122 := r.ReadMapStart() + if yyl122 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl121, d) + x.codecDecodeSelfFromMap(yyl122, d) } - } else if yyct121 == codecSelferValueTypeArray1234 { - yyl121 := r.ReadArrayStart() - if yyl121 == 0 { + } else if yyct122 == codecSelferValueTypeArray1234 { + yyl122 := r.ReadArrayStart() + if yyl122 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl121, d) + x.codecDecodeSelfFromArray(yyl122, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -1918,12 +1956,12 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys122Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys122Slc - var yyhl122 bool = l >= 0 - for yyj122 := 0; ; yyj122++ { - if yyhl122 { - if yyj122 >= l { + var yys123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys123Slc + var yyhl123 bool = l >= 0 + for yyj123 := 0; ; yyj123++ { + if yyhl123 { + if yyj123 >= l { break } } else { @@ -1932,10 +1970,10 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys122Slc = r.DecodeBytes(yys122Slc, true, true) - yys122 := string(yys122Slc) + yys123Slc = r.DecodeBytes(yys123Slc, true, true) + yys123 := string(yys123Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys122 { + switch yys123 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -2096,6 +2134,20 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } + case "quobyte": + if x.VolumeSource.Quobyte == nil { + x.VolumeSource.Quobyte = new(QuobyteVolumeSource) + } + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } case "flexVolume": if x.VolumeSource.FlexVolume == nil { x.VolumeSource.FlexVolume = new(FlexVolumeSource) @@ -2223,9 +2275,9 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.VsphereVolume.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys122) - } // end switch yys122 - } // end for yyj122 + z.DecStructFieldNotFound(-1, yys123) + } // end switch yys123 + } // end for yyj123 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -2233,16 +2285,16 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj144 int - var yyb144 bool - var yyhl144 bool = l >= 0 - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + var yyj146 int + var yyb146 bool + var yyhl146 bool = l >= 0 + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2255,13 +2307,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.HostPath == nil { x.VolumeSource.HostPath = new(HostPathVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2279,13 +2331,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.EmptyDir == nil { x.VolumeSource.EmptyDir = new(EmptyDirVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2303,13 +2355,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GCEPersistentDisk == nil { x.VolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2327,13 +2379,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AWSElasticBlockStore == nil { x.VolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2351,13 +2403,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GitRepo == nil { x.VolumeSource.GitRepo = new(GitRepoVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2375,13 +2427,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Secret == nil { x.VolumeSource.Secret = new(SecretVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2399,13 +2451,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.NFS == nil { x.VolumeSource.NFS = new(NFSVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2423,13 +2475,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ISCSI == nil { x.VolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2447,13 +2499,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Glusterfs == nil { x.VolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2471,13 +2523,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.PersistentVolumeClaim == nil { x.VolumeSource.PersistentVolumeClaim = new(PersistentVolumeClaimVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2495,13 +2547,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.RBD == nil { x.VolumeSource.RBD = new(RBDVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2516,16 +2568,40 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } + if x.VolumeSource.Quobyte == nil { + x.VolumeSource.Quobyte = new(QuobyteVolumeSource) + } + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l + } else { + yyb146 = r.CheckBreak() + } + if yyb146 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } if x.VolumeSource.FlexVolume == nil { x.VolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2543,13 +2619,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Cinder == nil { x.VolumeSource.Cinder = new(CinderVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2567,13 +2643,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.CephFS == nil { x.VolumeSource.CephFS = new(CephFSVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2591,13 +2667,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Flocker == nil { x.VolumeSource.Flocker = new(FlockerVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2615,13 +2691,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.DownwardAPI == nil { x.VolumeSource.DownwardAPI = new(DownwardAPIVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2639,13 +2715,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FC == nil { x.VolumeSource.FC = new(FCVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2663,13 +2739,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AzureFile == nil { x.VolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2687,13 +2763,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ConfigMap == nil { x.VolumeSource.ConfigMap = new(ConfigMapVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2711,13 +2787,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.VsphereVolume == nil { x.VolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2733,17 +2809,17 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.VsphereVolume.CodecDecodeSelf(d) } for { - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj144-1, "") + z.DecStructFieldNotFound(yyj146-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -2755,52 +2831,53 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym166 := z.EncBinary() - _ = yym166 + yym169 := z.EncBinary() + _ = yym169 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep167 := !z.EncBinary() - yy2arr167 := z.EncBasicHandle().StructToArray - var yyq167 [20]bool - _, _, _ = yysep167, yyq167, yy2arr167 - const yyr167 bool = false - yyq167[0] = x.HostPath != nil - yyq167[1] = x.EmptyDir != nil - yyq167[2] = x.GCEPersistentDisk != nil - yyq167[3] = x.AWSElasticBlockStore != nil - yyq167[4] = x.GitRepo != nil - yyq167[5] = x.Secret != nil - yyq167[6] = x.NFS != nil - yyq167[7] = x.ISCSI != nil - yyq167[8] = x.Glusterfs != nil - yyq167[9] = x.PersistentVolumeClaim != nil - yyq167[10] = x.RBD != nil - yyq167[11] = x.FlexVolume != nil - yyq167[12] = x.Cinder != nil - yyq167[13] = x.CephFS != nil - yyq167[14] = x.Flocker != nil - yyq167[15] = x.DownwardAPI != nil - yyq167[16] = x.FC != nil - yyq167[17] = x.AzureFile != nil - yyq167[18] = x.ConfigMap != nil - yyq167[19] = x.VsphereVolume != nil - var yynn167 int - if yyr167 || yy2arr167 { - r.EncodeArrayStart(20) - } else { - yynn167 = 0 - for _, b := range yyq167 { + yysep170 := !z.EncBinary() + yy2arr170 := z.EncBasicHandle().StructToArray + var yyq170 [21]bool + _, _, _ = yysep170, yyq170, yy2arr170 + const yyr170 bool = false + yyq170[0] = x.HostPath != nil + yyq170[1] = x.EmptyDir != nil + yyq170[2] = x.GCEPersistentDisk != nil + yyq170[3] = x.AWSElasticBlockStore != nil + yyq170[4] = x.GitRepo != nil + yyq170[5] = x.Secret != nil + yyq170[6] = x.NFS != nil + yyq170[7] = x.ISCSI != nil + yyq170[8] = x.Glusterfs != nil + yyq170[9] = x.PersistentVolumeClaim != nil + yyq170[10] = x.RBD != nil + yyq170[11] = x.Quobyte != nil + yyq170[12] = x.FlexVolume != nil + yyq170[13] = x.Cinder != nil + yyq170[14] = x.CephFS != nil + yyq170[15] = x.Flocker != nil + yyq170[16] = x.DownwardAPI != nil + yyq170[17] = x.FC != nil + yyq170[18] = x.AzureFile != nil + yyq170[19] = x.ConfigMap != nil + yyq170[20] = x.VsphereVolume != nil + var yynn170 int + if yyr170 || yy2arr170 { + r.EncodeArrayStart(21) + } else { + yynn170 = 0 + for _, b := range yyq170 { if b { - yynn167++ + yynn170++ } } - r.EncodeMapStart(yynn167) - yynn167 = 0 + r.EncodeMapStart(yynn170) + yynn170 = 0 } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[0] { + if yyq170[0] { if x.HostPath == nil { r.EncodeNil() } else { @@ -2810,7 +2887,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[0] { + if yyq170[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2821,9 +2898,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[1] { + if yyq170[1] { if x.EmptyDir == nil { r.EncodeNil() } else { @@ -2833,7 +2910,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[1] { + if yyq170[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("emptyDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2844,9 +2921,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[2] { + if yyq170[2] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -2856,7 +2933,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[2] { + if yyq170[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2867,9 +2944,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[3] { + if yyq170[3] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -2879,7 +2956,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[3] { + if yyq170[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2890,9 +2967,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[4] { + if yyq170[4] { if x.GitRepo == nil { r.EncodeNil() } else { @@ -2902,7 +2979,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[4] { + if yyq170[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gitRepo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2913,9 +2990,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[5] { + if yyq170[5] { if x.Secret == nil { r.EncodeNil() } else { @@ -2925,7 +3002,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[5] { + if yyq170[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secret")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2936,9 +3013,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[6] { + if yyq170[6] { if x.NFS == nil { r.EncodeNil() } else { @@ -2948,7 +3025,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[6] { + if yyq170[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2959,9 +3036,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[7] { + if yyq170[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -2971,7 +3048,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[7] { + if yyq170[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2982,9 +3059,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[8] { + if yyq170[8] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -2994,7 +3071,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[8] { + if yyq170[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3005,9 +3082,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[9] { + if yyq170[9] { if x.PersistentVolumeClaim == nil { r.EncodeNil() } else { @@ -3017,7 +3094,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[9] { + if yyq170[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeClaim")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3028,9 +3105,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[10] { + if yyq170[10] { if x.RBD == nil { r.EncodeNil() } else { @@ -3040,7 +3117,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[10] { + if yyq170[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3051,9 +3128,32 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[11] { + if yyq170[11] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq170[11] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + if yyr170 || yy2arr170 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq170[12] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -3063,7 +3163,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[11] { + if yyq170[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3074,9 +3174,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[12] { + if yyq170[13] { if x.Cinder == nil { r.EncodeNil() } else { @@ -3086,7 +3186,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[12] { + if yyq170[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3097,9 +3197,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[13] { + if yyq170[14] { if x.CephFS == nil { r.EncodeNil() } else { @@ -3109,7 +3209,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[13] { + if yyq170[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3120,9 +3220,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[14] { + if yyq170[15] { if x.Flocker == nil { r.EncodeNil() } else { @@ -3132,7 +3232,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[14] { + if yyq170[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3143,9 +3243,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[15] { + if yyq170[16] { if x.DownwardAPI == nil { r.EncodeNil() } else { @@ -3155,7 +3255,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[15] { + if yyq170[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("downwardAPI")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3166,9 +3266,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[16] { + if yyq170[17] { if x.FC == nil { r.EncodeNil() } else { @@ -3178,7 +3278,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[16] { + if yyq170[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3189,9 +3289,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[17] { + if yyq170[18] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -3201,7 +3301,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[17] { + if yyq170[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3212,9 +3312,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[18] { + if yyq170[19] { if x.ConfigMap == nil { r.EncodeNil() } else { @@ -3224,7 +3324,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[18] { + if yyq170[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMap")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3235,9 +3335,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[19] { + if yyq170[20] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -3247,7 +3347,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[19] { + if yyq170[20] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3258,7 +3358,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -3271,25 +3371,25 @@ func (x *VolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym188 := z.DecBinary() - _ = yym188 + yym192 := z.DecBinary() + _ = yym192 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct189 := r.ContainerType() - if yyct189 == codecSelferValueTypeMap1234 { - yyl189 := r.ReadMapStart() - if yyl189 == 0 { + yyct193 := r.ContainerType() + if yyct193 == codecSelferValueTypeMap1234 { + yyl193 := r.ReadMapStart() + if yyl193 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl189, d) + x.codecDecodeSelfFromMap(yyl193, d) } - } else if yyct189 == codecSelferValueTypeArray1234 { - yyl189 := r.ReadArrayStart() - if yyl189 == 0 { + } else if yyct193 == codecSelferValueTypeArray1234 { + yyl193 := r.ReadArrayStart() + if yyl193 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl189, d) + x.codecDecodeSelfFromArray(yyl193, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -3301,12 +3401,12 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys190Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys190Slc - var yyhl190 bool = l >= 0 - for yyj190 := 0; ; yyj190++ { - if yyhl190 { - if yyj190 >= l { + var yys194Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys194Slc + var yyhl194 bool = l >= 0 + for yyj194 := 0; ; yyj194++ { + if yyhl194 { + if yyj194 >= l { break } } else { @@ -3315,10 +3415,10 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys190Slc = r.DecodeBytes(yys190Slc, true, true) - yys190 := string(yys190Slc) + yys194Slc = r.DecodeBytes(yys194Slc, true, true) + yys194 := string(yys194Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys190 { + switch yys194 { case "hostPath": if r.TryDecodeAsNil() { if x.HostPath != nil { @@ -3440,6 +3540,17 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } + case "quobyte": + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } case "flexVolume": if r.TryDecodeAsNil() { if x.FlexVolume != nil { @@ -3540,9 +3651,9 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.VsphereVolume.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys190) - } // end switch yys190 - } // end for yyj190 + z.DecStructFieldNotFound(-1, yys194) + } // end switch yys194 + } // end for yyj194 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -3550,16 +3661,16 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj211 int - var yyb211 bool - var yyhl211 bool = l >= 0 - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + var yyj216 int + var yyb216 bool + var yyhl216 bool = l >= 0 + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3574,13 +3685,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HostPath.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3595,13 +3706,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.EmptyDir.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3616,13 +3727,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3637,13 +3748,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3658,13 +3769,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GitRepo.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3679,13 +3790,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Secret.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3700,13 +3811,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NFS.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3721,13 +3832,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ISCSI.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3742,13 +3853,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Glusterfs.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3763,13 +3874,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PersistentVolumeClaim.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3784,13 +3895,34 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l + } else { + yyb216 = r.CheckBreak() + } + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3805,13 +3937,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FlexVolume.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3826,13 +3958,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Cinder.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3847,13 +3979,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.CephFS.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3868,13 +4000,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Flocker.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3889,13 +4021,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.DownwardAPI.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3910,13 +4042,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FC.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3931,13 +4063,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AzureFile.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3952,13 +4084,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMap.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3974,17 +4106,17 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.VsphereVolume.CodecDecodeSelf(d) } for { - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj211-1, "") + z.DecStructFieldNotFound(yyj216-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -3996,46 +4128,47 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym232 := z.EncBinary() - _ = yym232 + yym238 := z.EncBinary() + _ = yym238 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep233 := !z.EncBinary() - yy2arr233 := z.EncBasicHandle().StructToArray - var yyq233 [14]bool - _, _, _ = yysep233, yyq233, yy2arr233 - const yyr233 bool = false - yyq233[0] = x.GCEPersistentDisk != nil - yyq233[1] = x.AWSElasticBlockStore != nil - yyq233[2] = x.HostPath != nil - yyq233[3] = x.Glusterfs != nil - yyq233[4] = x.NFS != nil - yyq233[5] = x.RBD != nil - yyq233[6] = x.ISCSI != nil - yyq233[7] = x.FlexVolume != nil - yyq233[8] = x.Cinder != nil - yyq233[9] = x.CephFS != nil - yyq233[10] = x.FC != nil - yyq233[11] = x.Flocker != nil - yyq233[12] = x.AzureFile != nil - yyq233[13] = x.VsphereVolume != nil - var yynn233 int - if yyr233 || yy2arr233 { - r.EncodeArrayStart(14) - } else { - yynn233 = 0 - for _, b := range yyq233 { + yysep239 := !z.EncBinary() + yy2arr239 := z.EncBasicHandle().StructToArray + var yyq239 [15]bool + _, _, _ = yysep239, yyq239, yy2arr239 + const yyr239 bool = false + yyq239[0] = x.GCEPersistentDisk != nil + yyq239[1] = x.AWSElasticBlockStore != nil + yyq239[2] = x.HostPath != nil + yyq239[3] = x.Glusterfs != nil + yyq239[4] = x.NFS != nil + yyq239[5] = x.RBD != nil + yyq239[6] = x.Quobyte != nil + yyq239[7] = x.ISCSI != nil + yyq239[8] = x.FlexVolume != nil + yyq239[9] = x.Cinder != nil + yyq239[10] = x.CephFS != nil + yyq239[11] = x.FC != nil + yyq239[12] = x.Flocker != nil + yyq239[13] = x.AzureFile != nil + yyq239[14] = x.VsphereVolume != nil + var yynn239 int + if yyr239 || yy2arr239 { + r.EncodeArrayStart(15) + } else { + yynn239 = 0 + for _, b := range yyq239 { if b { - yynn233++ + yynn239++ } } - r.EncodeMapStart(yynn233) - yynn233 = 0 + r.EncodeMapStart(yynn239) + yynn239 = 0 } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[0] { + if yyq239[0] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -4045,7 +4178,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[0] { + if yyq239[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4056,9 +4189,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[1] { + if yyq239[1] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -4068,7 +4201,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[1] { + if yyq239[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4079,9 +4212,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[2] { + if yyq239[2] { if x.HostPath == nil { r.EncodeNil() } else { @@ -4091,7 +4224,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[2] { + if yyq239[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4102,9 +4235,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[3] { + if yyq239[3] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -4114,7 +4247,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[3] { + if yyq239[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4125,9 +4258,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[4] { + if yyq239[4] { if x.NFS == nil { r.EncodeNil() } else { @@ -4137,7 +4270,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[4] { + if yyq239[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4148,9 +4281,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[5] { + if yyq239[5] { if x.RBD == nil { r.EncodeNil() } else { @@ -4160,7 +4293,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[5] { + if yyq239[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4171,9 +4304,32 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[6] { + if yyq239[6] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq239[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + if yyr239 || yy2arr239 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq239[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -4183,7 +4339,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[6] { + if yyq239[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4194,9 +4350,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[7] { + if yyq239[8] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -4206,7 +4362,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[7] { + if yyq239[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4217,9 +4373,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[8] { + if yyq239[9] { if x.Cinder == nil { r.EncodeNil() } else { @@ -4229,7 +4385,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[8] { + if yyq239[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4240,9 +4396,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[9] { + if yyq239[10] { if x.CephFS == nil { r.EncodeNil() } else { @@ -4252,7 +4408,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[9] { + if yyq239[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4263,9 +4419,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[10] { + if yyq239[11] { if x.FC == nil { r.EncodeNil() } else { @@ -4275,7 +4431,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[10] { + if yyq239[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4286,9 +4442,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[11] { + if yyq239[12] { if x.Flocker == nil { r.EncodeNil() } else { @@ -4298,7 +4454,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[11] { + if yyq239[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4309,9 +4465,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[12] { + if yyq239[13] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -4321,7 +4477,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[12] { + if yyq239[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4332,9 +4488,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[13] { + if yyq239[14] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -4344,7 +4500,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq233[13] { + if yyq239[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4355,7 +4511,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4368,25 +4524,25 @@ func (x *PersistentVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym248 := z.DecBinary() - _ = yym248 + yym255 := z.DecBinary() + _ = yym255 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct249 := r.ContainerType() - if yyct249 == codecSelferValueTypeMap1234 { - yyl249 := r.ReadMapStart() - if yyl249 == 0 { + yyct256 := r.ContainerType() + if yyct256 == codecSelferValueTypeMap1234 { + yyl256 := r.ReadMapStart() + if yyl256 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl249, d) + x.codecDecodeSelfFromMap(yyl256, d) } - } else if yyct249 == codecSelferValueTypeArray1234 { - yyl249 := r.ReadArrayStart() - if yyl249 == 0 { + } else if yyct256 == codecSelferValueTypeArray1234 { + yyl256 := r.ReadArrayStart() + if yyl256 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl249, d) + x.codecDecodeSelfFromArray(yyl256, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -4398,12 +4554,12 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys250Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys250Slc - var yyhl250 bool = l >= 0 - for yyj250 := 0; ; yyj250++ { - if yyhl250 { - if yyj250 >= l { + var yys257Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys257Slc + var yyhl257 bool = l >= 0 + for yyj257 := 0; ; yyj257++ { + if yyhl257 { + if yyj257 >= l { break } } else { @@ -4412,10 +4568,10 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys250Slc = r.DecodeBytes(yys250Slc, true, true) - yys250 := string(yys250Slc) + yys257Slc = r.DecodeBytes(yys257Slc, true, true) + yys257 := string(yys257Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys250 { + switch yys257 { case "gcePersistentDisk": if r.TryDecodeAsNil() { if x.GCEPersistentDisk != nil { @@ -4482,6 +4638,17 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } x.RBD.CodecDecodeSelf(d) } + case "quobyte": + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } case "iscsi": if r.TryDecodeAsNil() { if x.ISCSI != nil { @@ -4571,9 +4738,9 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.VsphereVolume.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys250) - } // end switch yys250 - } // end for yyj250 + z.DecStructFieldNotFound(-1, yys257) + } // end switch yys257 + } // end for yyj257 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4581,16 +4748,16 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj265 int - var yyb265 bool - var yyhl265 bool = l >= 0 - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + var yyj273 int + var yyb273 bool + var yyhl273 bool = l >= 0 + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4605,13 +4772,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4626,13 +4793,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4647,13 +4814,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.HostPath.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4668,13 +4835,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Glusterfs.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4689,13 +4856,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.NFS.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4710,13 +4877,34 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.RBD.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l + } else { + yyb273 = r.CheckBreak() + } + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4731,13 +4919,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.ISCSI.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4752,13 +4940,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FlexVolume.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4773,13 +4961,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Cinder.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4794,13 +4982,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.CephFS.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4815,13 +5003,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FC.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4836,13 +5024,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Flocker.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4857,13 +5045,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AzureFile.CodecDecodeSelf(d) } - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4879,17 +5067,17 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De x.VsphereVolume.CodecDecodeSelf(d) } for { - yyj265++ - if yyhl265 { - yyb265 = yyj265 > l + yyj273++ + if yyhl273 { + yyb273 = yyj273 > l } else { - yyb265 = r.CheckBreak() + yyb273 = r.CheckBreak() } - if yyb265 { + if yyb273 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj265-1, "") + z.DecStructFieldNotFound(yyj273-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -4901,34 +5089,34 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym280 := z.EncBinary() - _ = yym280 + yym289 := z.EncBinary() + _ = yym289 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep281 := !z.EncBinary() - yy2arr281 := z.EncBasicHandle().StructToArray - var yyq281 [2]bool - _, _, _ = yysep281, yyq281, yy2arr281 - const yyr281 bool = false - yyq281[1] = x.ReadOnly != false - var yynn281 int - if yyr281 || yy2arr281 { + yysep290 := !z.EncBinary() + yy2arr290 := z.EncBasicHandle().StructToArray + var yyq290 [2]bool + _, _, _ = yysep290, yyq290, yy2arr290 + const yyr290 bool = false + yyq290[1] = x.ReadOnly != false + var yynn290 int + if yyr290 || yy2arr290 { r.EncodeArrayStart(2) } else { - yynn281 = 1 - for _, b := range yyq281 { + yynn290 = 1 + for _, b := range yyq290 { if b { - yynn281++ + yynn290++ } } - r.EncodeMapStart(yynn281) - yynn281 = 0 + r.EncodeMapStart(yynn290) + yynn290 = 0 } - if yyr281 || yy2arr281 { + if yyr290 || yy2arr290 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym283 := z.EncBinary() - _ = yym283 + yym292 := z.EncBinary() + _ = yym292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) @@ -4937,18 +5125,18 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym284 := z.EncBinary() - _ = yym284 + yym293 := z.EncBinary() + _ = yym293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) } } - if yyr281 || yy2arr281 { + if yyr290 || yy2arr290 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq281[1] { - yym286 := z.EncBinary() - _ = yym286 + if yyq290[1] { + yym295 := z.EncBinary() + _ = yym295 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -4957,19 +5145,19 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder r.EncodeBool(false) } } else { - if yyq281[1] { + if yyq290[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym287 := z.EncBinary() - _ = yym287 + yym296 := z.EncBinary() + _ = yym296 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr281 || yy2arr281 { + if yyr290 || yy2arr290 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4982,25 +5170,25 @@ func (x *PersistentVolumeClaimVolumeSource) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym288 := z.DecBinary() - _ = yym288 + yym297 := z.DecBinary() + _ = yym297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct289 := r.ContainerType() - if yyct289 == codecSelferValueTypeMap1234 { - yyl289 := r.ReadMapStart() - if yyl289 == 0 { + yyct298 := r.ContainerType() + if yyct298 == codecSelferValueTypeMap1234 { + yyl298 := r.ReadMapStart() + if yyl298 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl289, d) + x.codecDecodeSelfFromMap(yyl298, d) } - } else if yyct289 == codecSelferValueTypeArray1234 { - yyl289 := r.ReadArrayStart() - if yyl289 == 0 { + } else if yyct298 == codecSelferValueTypeArray1234 { + yyl298 := r.ReadArrayStart() + if yyl298 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl289, d) + x.codecDecodeSelfFromArray(yyl298, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -5012,12 +5200,12 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys290Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys290Slc - var yyhl290 bool = l >= 0 - for yyj290 := 0; ; yyj290++ { - if yyhl290 { - if yyj290 >= l { + var yys299Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys299Slc + var yyhl299 bool = l >= 0 + for yyj299 := 0; ; yyj299++ { + if yyhl299 { + if yyj299 >= l { break } } else { @@ -5026,10 +5214,10 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys290Slc = r.DecodeBytes(yys290Slc, true, true) - yys290 := string(yys290Slc) + yys299Slc = r.DecodeBytes(yys299Slc, true, true) + yys299 := string(yys299Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys290 { + switch yys299 { case "claimName": if r.TryDecodeAsNil() { x.ClaimName = "" @@ -5043,9 +5231,9 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys290) - } // end switch yys290 - } // end for yyj290 + z.DecStructFieldNotFound(-1, yys299) + } // end switch yys299 + } // end for yyj299 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5053,16 +5241,16 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj293 int - var yyb293 bool - var yyhl293 bool = l >= 0 - yyj293++ - if yyhl293 { - yyb293 = yyj293 > l + var yyj302 int + var yyb302 bool + var yyhl302 bool = l >= 0 + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb293 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb293 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5072,13 +5260,13 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c } else { x.ClaimName = string(r.DecodeString()) } - yyj293++ - if yyhl293 { - yyb293 = yyj293 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb293 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb293 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5089,17 +5277,17 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c x.ReadOnly = bool(r.DecodeBool()) } for { - yyj293++ - if yyhl293 { - yyb293 = yyj293 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb293 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb293 { + if yyb302 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj293-1, "") + z.DecStructFieldNotFound(yyj302-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5111,39 +5299,39 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym296 := z.EncBinary() - _ = yym296 + yym305 := z.EncBinary() + _ = yym305 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep297 := !z.EncBinary() - yy2arr297 := z.EncBasicHandle().StructToArray - var yyq297 [5]bool - _, _, _ = yysep297, yyq297, yy2arr297 - const yyr297 bool = false - yyq297[0] = x.Kind != "" - yyq297[1] = x.APIVersion != "" - yyq297[2] = true - yyq297[3] = true - yyq297[4] = true - var yynn297 int - if yyr297 || yy2arr297 { + yysep306 := !z.EncBinary() + yy2arr306 := z.EncBasicHandle().StructToArray + var yyq306 [5]bool + _, _, _ = yysep306, yyq306, yy2arr306 + const yyr306 bool = false + yyq306[0] = x.Kind != "" + yyq306[1] = x.APIVersion != "" + yyq306[2] = true + yyq306[3] = true + yyq306[4] = true + var yynn306 int + if yyr306 || yy2arr306 { r.EncodeArrayStart(5) } else { - yynn297 = 0 - for _, b := range yyq297 { + yynn306 = 0 + for _, b := range yyq306 { if b { - yynn297++ + yynn306++ } } - r.EncodeMapStart(yynn297) - yynn297 = 0 + r.EncodeMapStart(yynn306) + yynn306 = 0 } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[0] { - yym299 := z.EncBinary() - _ = yym299 + if yyq306[0] { + yym308 := z.EncBinary() + _ = yym308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -5152,23 +5340,23 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq297[0] { + if yyq306[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym300 := z.EncBinary() - _ = yym300 + yym309 := z.EncBinary() + _ = yym309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[1] { - yym302 := z.EncBinary() - _ = yym302 + if yyq306[1] { + yym311 := z.EncBinary() + _ = yym311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -5177,70 +5365,70 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq297[1] { + if yyq306[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym303 := z.EncBinary() - _ = yym303 + yym312 := z.EncBinary() + _ = yym312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[2] { - yy305 := &x.ObjectMeta - yy305.CodecEncodeSelf(e) + if yyq306[2] { + yy314 := &x.ObjectMeta + yy314.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq297[2] { + if yyq306[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy306 := &x.ObjectMeta - yy306.CodecEncodeSelf(e) + yy315 := &x.ObjectMeta + yy315.CodecEncodeSelf(e) } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[3] { - yy308 := &x.Spec - yy308.CodecEncodeSelf(e) + if yyq306[3] { + yy317 := &x.Spec + yy317.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq297[3] { + if yyq306[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy309 := &x.Spec - yy309.CodecEncodeSelf(e) + yy318 := &x.Spec + yy318.CodecEncodeSelf(e) } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[4] { - yy311 := &x.Status - yy311.CodecEncodeSelf(e) + if yyq306[4] { + yy320 := &x.Status + yy320.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq297[4] { + if yyq306[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy312 := &x.Status - yy312.CodecEncodeSelf(e) + yy321 := &x.Status + yy321.CodecEncodeSelf(e) } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -5253,25 +5441,25 @@ func (x *PersistentVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym313 := z.DecBinary() - _ = yym313 + yym322 := z.DecBinary() + _ = yym322 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct314 := r.ContainerType() - if yyct314 == codecSelferValueTypeMap1234 { - yyl314 := r.ReadMapStart() - if yyl314 == 0 { + yyct323 := r.ContainerType() + if yyct323 == codecSelferValueTypeMap1234 { + yyl323 := r.ReadMapStart() + if yyl323 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl314, d) + x.codecDecodeSelfFromMap(yyl323, d) } - } else if yyct314 == codecSelferValueTypeArray1234 { - yyl314 := r.ReadArrayStart() - if yyl314 == 0 { + } else if yyct323 == codecSelferValueTypeArray1234 { + yyl323 := r.ReadArrayStart() + if yyl323 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl314, d) + x.codecDecodeSelfFromArray(yyl323, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -5283,12 +5471,12 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys315Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys315Slc - var yyhl315 bool = l >= 0 - for yyj315 := 0; ; yyj315++ { - if yyhl315 { - if yyj315 >= l { + var yys324Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys324Slc + var yyhl324 bool = l >= 0 + for yyj324 := 0; ; yyj324++ { + if yyhl324 { + if yyj324 >= l { break } } else { @@ -5297,10 +5485,10 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys315Slc = r.DecodeBytes(yys315Slc, true, true) - yys315 := string(yys315Slc) + yys324Slc = r.DecodeBytes(yys324Slc, true, true) + yys324 := string(yys324Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys315 { + switch yys324 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -5317,27 +5505,27 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv318 := &x.ObjectMeta - yyv318.CodecDecodeSelf(d) + yyv327 := &x.ObjectMeta + yyv327.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv319 := &x.Spec - yyv319.CodecDecodeSelf(d) + yyv328 := &x.Spec + yyv328.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv320 := &x.Status - yyv320.CodecDecodeSelf(d) + yyv329 := &x.Status + yyv329.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys315) - } // end switch yys315 - } // end for yyj315 + z.DecStructFieldNotFound(-1, yys324) + } // end switch yys324 + } // end for yyj324 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5345,16 +5533,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj321 int - var yyb321 bool - var yyhl321 bool = l >= 0 - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + var yyj330 int + var yyb330 bool + var yyhl330 bool = l >= 0 + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5364,13 +5552,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5380,13 +5568,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5394,16 +5582,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv324 := &x.ObjectMeta - yyv324.CodecDecodeSelf(d) + yyv333 := &x.ObjectMeta + yyv333.CodecDecodeSelf(d) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5411,16 +5599,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv325 := &x.Spec - yyv325.CodecDecodeSelf(d) + yyv334 := &x.Spec + yyv334.CodecDecodeSelf(d) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5428,21 +5616,21 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv326 := &x.Status - yyv326.CodecDecodeSelf(d) + yyv335 := &x.Status + yyv335.CodecDecodeSelf(d) } for { - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj321-1, "") + z.DecStructFieldNotFound(yyj330-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5454,47 +5642,48 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym327 := z.EncBinary() - _ = yym327 + yym336 := z.EncBinary() + _ = yym336 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep328 := !z.EncBinary() - yy2arr328 := z.EncBasicHandle().StructToArray - var yyq328 [18]bool - _, _, _ = yysep328, yyq328, yy2arr328 - const yyr328 bool = false - yyq328[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil - yyq328[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil - yyq328[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil - yyq328[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil - yyq328[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil - yyq328[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil - yyq328[7] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil - yyq328[8] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil - yyq328[9] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil - yyq328[10] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil - yyq328[11] = x.PersistentVolumeSource.FC != nil && x.FC != nil - yyq328[12] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil - yyq328[13] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil - yyq328[14] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil - yyq328[15] = len(x.AccessModes) != 0 - yyq328[16] = x.ClaimRef != nil - yyq328[17] = x.PersistentVolumeReclaimPolicy != "" - var yynn328 int - if yyr328 || yy2arr328 { - r.EncodeArrayStart(18) - } else { - yynn328 = 1 - for _, b := range yyq328 { + yysep337 := !z.EncBinary() + yy2arr337 := z.EncBasicHandle().StructToArray + var yyq337 [19]bool + _, _, _ = yysep337, yyq337, yy2arr337 + const yyr337 bool = false + yyq337[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil + yyq337[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil + yyq337[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil + yyq337[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil + yyq337[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil + yyq337[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil + yyq337[7] = x.PersistentVolumeSource.Quobyte != nil && x.Quobyte != nil + yyq337[8] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil + yyq337[9] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil + yyq337[10] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil + yyq337[11] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil + yyq337[12] = x.PersistentVolumeSource.FC != nil && x.FC != nil + yyq337[13] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil + yyq337[14] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil + yyq337[15] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq337[16] = len(x.AccessModes) != 0 + yyq337[17] = x.ClaimRef != nil + yyq337[18] = x.PersistentVolumeReclaimPolicy != "" + var yynn337 int + if yyr337 || yy2arr337 { + r.EncodeArrayStart(19) + } else { + yynn337 = 1 + for _, b := range yyq337 { if b { - yynn328++ + yynn337++ } } - r.EncodeMapStart(yynn328) - yynn328 = 0 + r.EncodeMapStart(yynn337) + yynn337 = 0 } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Capacity == nil { r.EncodeNil() @@ -5511,18 +5700,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { x.Capacity.CodecEncodeSelf(e) } } - var yyn330 bool + var yyn339 bool if x.PersistentVolumeSource.GCEPersistentDisk == nil { - yyn330 = true - goto LABEL330 + yyn339 = true + goto LABEL339 } - LABEL330: - if yyr328 || yy2arr328 { - if yyn330 { + LABEL339: + if yyr337 || yy2arr337 { + if yyn339 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[1] { + if yyq337[1] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -5533,11 +5722,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[1] { + if yyq337[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn330 { + if yyn339 { r.EncodeNil() } else { if x.GCEPersistentDisk == nil { @@ -5548,18 +5737,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn331 bool + var yyn340 bool if x.PersistentVolumeSource.AWSElasticBlockStore == nil { - yyn331 = true - goto LABEL331 + yyn340 = true + goto LABEL340 } - LABEL331: - if yyr328 || yy2arr328 { - if yyn331 { + LABEL340: + if yyr337 || yy2arr337 { + if yyn340 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[2] { + if yyq337[2] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -5570,11 +5759,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[2] { + if yyq337[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn331 { + if yyn340 { r.EncodeNil() } else { if x.AWSElasticBlockStore == nil { @@ -5585,18 +5774,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn332 bool + var yyn341 bool if x.PersistentVolumeSource.HostPath == nil { - yyn332 = true - goto LABEL332 + yyn341 = true + goto LABEL341 } - LABEL332: - if yyr328 || yy2arr328 { - if yyn332 { + LABEL341: + if yyr337 || yy2arr337 { + if yyn341 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[3] { + if yyq337[3] { if x.HostPath == nil { r.EncodeNil() } else { @@ -5607,11 +5796,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[3] { + if yyq337[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn332 { + if yyn341 { r.EncodeNil() } else { if x.HostPath == nil { @@ -5622,18 +5811,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn333 bool + var yyn342 bool if x.PersistentVolumeSource.Glusterfs == nil { - yyn333 = true - goto LABEL333 + yyn342 = true + goto LABEL342 } - LABEL333: - if yyr328 || yy2arr328 { - if yyn333 { + LABEL342: + if yyr337 || yy2arr337 { + if yyn342 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[4] { + if yyq337[4] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -5644,11 +5833,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[4] { + if yyq337[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn333 { + if yyn342 { r.EncodeNil() } else { if x.Glusterfs == nil { @@ -5659,18 +5848,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn334 bool + var yyn343 bool if x.PersistentVolumeSource.NFS == nil { - yyn334 = true - goto LABEL334 + yyn343 = true + goto LABEL343 } - LABEL334: - if yyr328 || yy2arr328 { - if yyn334 { + LABEL343: + if yyr337 || yy2arr337 { + if yyn343 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[5] { + if yyq337[5] { if x.NFS == nil { r.EncodeNil() } else { @@ -5681,11 +5870,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[5] { + if yyq337[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn334 { + if yyn343 { r.EncodeNil() } else { if x.NFS == nil { @@ -5696,18 +5885,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn335 bool + var yyn344 bool if x.PersistentVolumeSource.RBD == nil { - yyn335 = true - goto LABEL335 + yyn344 = true + goto LABEL344 } - LABEL335: - if yyr328 || yy2arr328 { - if yyn335 { + LABEL344: + if yyr337 || yy2arr337 { + if yyn344 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[6] { + if yyq337[6] { if x.RBD == nil { r.EncodeNil() } else { @@ -5718,11 +5907,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[6] { + if yyq337[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn335 { + if yyn344 { r.EncodeNil() } else { if x.RBD == nil { @@ -5733,18 +5922,55 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn336 bool + var yyn345 bool + if x.PersistentVolumeSource.Quobyte == nil { + yyn345 = true + goto LABEL345 + } + LABEL345: + if yyr337 || yy2arr337 { + if yyn345 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq337[7] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq337[7] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn345 { + r.EncodeNil() + } else { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + } + var yyn346 bool if x.PersistentVolumeSource.ISCSI == nil { - yyn336 = true - goto LABEL336 + yyn346 = true + goto LABEL346 } - LABEL336: - if yyr328 || yy2arr328 { - if yyn336 { + LABEL346: + if yyr337 || yy2arr337 { + if yyn346 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[7] { + if yyq337[8] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -5755,11 +5981,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[7] { + if yyq337[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn336 { + if yyn346 { r.EncodeNil() } else { if x.ISCSI == nil { @@ -5770,18 +5996,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn337 bool + var yyn347 bool if x.PersistentVolumeSource.FlexVolume == nil { - yyn337 = true - goto LABEL337 + yyn347 = true + goto LABEL347 } - LABEL337: - if yyr328 || yy2arr328 { - if yyn337 { + LABEL347: + if yyr337 || yy2arr337 { + if yyn347 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[8] { + if yyq337[9] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -5792,11 +6018,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[8] { + if yyq337[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn337 { + if yyn347 { r.EncodeNil() } else { if x.FlexVolume == nil { @@ -5807,18 +6033,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn338 bool + var yyn348 bool if x.PersistentVolumeSource.Cinder == nil { - yyn338 = true - goto LABEL338 + yyn348 = true + goto LABEL348 } - LABEL338: - if yyr328 || yy2arr328 { - if yyn338 { + LABEL348: + if yyr337 || yy2arr337 { + if yyn348 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[9] { + if yyq337[10] { if x.Cinder == nil { r.EncodeNil() } else { @@ -5829,11 +6055,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[9] { + if yyq337[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn338 { + if yyn348 { r.EncodeNil() } else { if x.Cinder == nil { @@ -5844,18 +6070,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn339 bool + var yyn349 bool if x.PersistentVolumeSource.CephFS == nil { - yyn339 = true - goto LABEL339 + yyn349 = true + goto LABEL349 } - LABEL339: - if yyr328 || yy2arr328 { - if yyn339 { + LABEL349: + if yyr337 || yy2arr337 { + if yyn349 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[10] { + if yyq337[11] { if x.CephFS == nil { r.EncodeNil() } else { @@ -5866,11 +6092,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[10] { + if yyq337[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn339 { + if yyn349 { r.EncodeNil() } else { if x.CephFS == nil { @@ -5881,18 +6107,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn340 bool + var yyn350 bool if x.PersistentVolumeSource.FC == nil { - yyn340 = true - goto LABEL340 + yyn350 = true + goto LABEL350 } - LABEL340: - if yyr328 || yy2arr328 { - if yyn340 { + LABEL350: + if yyr337 || yy2arr337 { + if yyn350 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[11] { + if yyq337[12] { if x.FC == nil { r.EncodeNil() } else { @@ -5903,11 +6129,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[11] { + if yyq337[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn340 { + if yyn350 { r.EncodeNil() } else { if x.FC == nil { @@ -5918,18 +6144,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn341 bool + var yyn351 bool if x.PersistentVolumeSource.Flocker == nil { - yyn341 = true - goto LABEL341 + yyn351 = true + goto LABEL351 } - LABEL341: - if yyr328 || yy2arr328 { - if yyn341 { + LABEL351: + if yyr337 || yy2arr337 { + if yyn351 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[12] { + if yyq337[13] { if x.Flocker == nil { r.EncodeNil() } else { @@ -5940,11 +6166,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[12] { + if yyq337[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn341 { + if yyn351 { r.EncodeNil() } else { if x.Flocker == nil { @@ -5955,18 +6181,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn342 bool + var yyn352 bool if x.PersistentVolumeSource.AzureFile == nil { - yyn342 = true - goto LABEL342 + yyn352 = true + goto LABEL352 } - LABEL342: - if yyr328 || yy2arr328 { - if yyn342 { + LABEL352: + if yyr337 || yy2arr337 { + if yyn352 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[13] { + if yyq337[14] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -5977,11 +6203,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[13] { + if yyq337[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn342 { + if yyn352 { r.EncodeNil() } else { if x.AzureFile == nil { @@ -5992,18 +6218,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn343 bool + var yyn353 bool if x.PersistentVolumeSource.VsphereVolume == nil { - yyn343 = true - goto LABEL343 + yyn353 = true + goto LABEL353 } - LABEL343: - if yyr328 || yy2arr328 { - if yyn343 { + LABEL353: + if yyr337 || yy2arr337 { + if yyn353 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[14] { + if yyq337[15] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -6014,11 +6240,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[14] { + if yyq337[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn343 { + if yyn353 { r.EncodeNil() } else { if x.VsphereVolume == nil { @@ -6029,14 +6255,14 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[15] { + if yyq337[16] { if x.AccessModes == nil { r.EncodeNil() } else { - yym345 := z.EncBinary() - _ = yym345 + yym355 := z.EncBinary() + _ = yym355 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6046,15 +6272,15 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq328[15] { + if yyq337[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym346 := z.EncBinary() - _ = yym346 + yym356 := z.EncBinary() + _ = yym356 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6062,9 +6288,9 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[16] { + if yyq337[17] { if x.ClaimRef == nil { r.EncodeNil() } else { @@ -6074,7 +6300,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq328[16] { + if yyq337[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -6085,22 +6311,22 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[17] { + if yyq337[18] { x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq328[17] { + if yyq337[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeReclaimPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6113,25 +6339,25 @@ func (x *PersistentVolumeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym349 := z.DecBinary() - _ = yym349 + yym359 := z.DecBinary() + _ = yym359 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct350 := r.ContainerType() - if yyct350 == codecSelferValueTypeMap1234 { - yyl350 := r.ReadMapStart() - if yyl350 == 0 { + yyct360 := r.ContainerType() + if yyct360 == codecSelferValueTypeMap1234 { + yyl360 := r.ReadMapStart() + if yyl360 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl350, d) + x.codecDecodeSelfFromMap(yyl360, d) } - } else if yyct350 == codecSelferValueTypeArray1234 { - yyl350 := r.ReadArrayStart() - if yyl350 == 0 { + } else if yyct360 == codecSelferValueTypeArray1234 { + yyl360 := r.ReadArrayStart() + if yyl360 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl350, d) + x.codecDecodeSelfFromArray(yyl360, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -6143,12 +6369,12 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys351Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys351Slc - var yyhl351 bool = l >= 0 - for yyj351 := 0; ; yyj351++ { - if yyhl351 { - if yyj351 >= l { + var yys361Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys361Slc + var yyhl361 bool = l >= 0 + for yyj361 := 0; ; yyj361++ { + if yyhl361 { + if yyj361 >= l { break } } else { @@ -6157,16 +6383,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys351Slc = r.DecodeBytes(yys351Slc, true, true) - yys351 := string(yys351Slc) + yys361Slc = r.DecodeBytes(yys361Slc, true, true) + yys361 := string(yys361Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys351 { + switch yys361 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv352 := &x.Capacity - yyv352.CodecDecodeSelf(d) + yyv362 := &x.Capacity + yyv362.CodecDecodeSelf(d) } case "gcePersistentDisk": if x.PersistentVolumeSource.GCEPersistentDisk == nil { @@ -6252,6 +6478,20 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } x.RBD.CodecDecodeSelf(d) } + case "quobyte": + if x.PersistentVolumeSource.Quobyte == nil { + x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource) + } + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } case "iscsi": if x.PersistentVolumeSource.ISCSI == nil { x.PersistentVolumeSource.ISCSI = new(ISCSIVolumeSource) @@ -6368,12 +6608,12 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv367 := &x.AccessModes - yym368 := z.DecBinary() - _ = yym368 + yyv378 := &x.AccessModes + yym379 := z.DecBinary() + _ = yym379 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv367), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv378), d) } } case "claimRef": @@ -6394,9 +6634,9 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys351) - } // end switch yys351 - } // end for yyj351 + z.DecStructFieldNotFound(-1, yys361) + } // end switch yys361 + } // end for yyj361 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -6404,16 +6644,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj371 int - var yyb371 bool - var yyhl371 bool = l >= 0 - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + var yyj382 int + var yyb382 bool + var yyhl382 bool = l >= 0 + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6421,19 +6661,19 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv372 := &x.Capacity - yyv372.CodecDecodeSelf(d) + yyv383 := &x.Capacity + yyv383.CodecDecodeSelf(d) } if x.PersistentVolumeSource.GCEPersistentDisk == nil { x.PersistentVolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6451,13 +6691,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AWSElasticBlockStore == nil { x.PersistentVolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6475,13 +6715,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.HostPath == nil { x.PersistentVolumeSource.HostPath = new(HostPathVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6499,13 +6739,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Glusterfs == nil { x.PersistentVolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6523,13 +6763,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.NFS == nil { x.PersistentVolumeSource.NFS = new(NFSVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6547,13 +6787,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.RBD == nil { x.PersistentVolumeSource.RBD = new(RBDVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6568,16 +6808,40 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.RBD.CodecDecodeSelf(d) } + if x.PersistentVolumeSource.Quobyte == nil { + x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource) + } + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l + } else { + yyb382 = r.CheckBreak() + } + if yyb382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } if x.PersistentVolumeSource.ISCSI == nil { x.PersistentVolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6595,13 +6859,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FlexVolume == nil { x.PersistentVolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6619,13 +6883,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Cinder == nil { x.PersistentVolumeSource.Cinder = new(CinderVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6643,13 +6907,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.CephFS == nil { x.PersistentVolumeSource.CephFS = new(CephFSVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6667,13 +6931,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FC == nil { x.PersistentVolumeSource.FC = new(FCVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6691,13 +6955,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Flocker == nil { x.PersistentVolumeSource.Flocker = new(FlockerVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6715,13 +6979,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AzureFile == nil { x.PersistentVolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6739,13 +7003,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.VsphereVolume == nil { x.PersistentVolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6760,13 +7024,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.VsphereVolume.CodecDecodeSelf(d) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6774,21 +7038,21 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv387 := &x.AccessModes - yym388 := z.DecBinary() - _ = yym388 + yyv399 := &x.AccessModes + yym400 := z.DecBinary() + _ = yym400 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv387), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv399), d) } } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6803,13 +7067,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.ClaimRef.CodecDecodeSelf(d) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6820,17 +7084,17 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } for { - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj371-1, "") + z.DecStructFieldNotFound(yyj382-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -6839,8 +7103,8 @@ func (x PersistentVolumeReclaimPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym391 := z.EncBinary() - _ = yym391 + yym403 := z.EncBinary() + _ = yym403 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -6852,8 +7116,8 @@ func (x *PersistentVolumeReclaimPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym392 := z.DecBinary() - _ = yym392 + yym404 := z.DecBinary() + _ = yym404 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -6868,52 +7132,52 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym393 := z.EncBinary() - _ = yym393 + yym405 := z.EncBinary() + _ = yym405 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep394 := !z.EncBinary() - yy2arr394 := z.EncBasicHandle().StructToArray - var yyq394 [3]bool - _, _, _ = yysep394, yyq394, yy2arr394 - const yyr394 bool = false - yyq394[0] = x.Phase != "" - yyq394[1] = x.Message != "" - yyq394[2] = x.Reason != "" - var yynn394 int - if yyr394 || yy2arr394 { + yysep406 := !z.EncBinary() + yy2arr406 := z.EncBasicHandle().StructToArray + var yyq406 [3]bool + _, _, _ = yysep406, yyq406, yy2arr406 + const yyr406 bool = false + yyq406[0] = x.Phase != "" + yyq406[1] = x.Message != "" + yyq406[2] = x.Reason != "" + var yynn406 int + if yyr406 || yy2arr406 { r.EncodeArrayStart(3) } else { - yynn394 = 0 - for _, b := range yyq394 { + yynn406 = 0 + for _, b := range yyq406 { if b { - yynn394++ + yynn406++ } } - r.EncodeMapStart(yynn394) - yynn394 = 0 + r.EncodeMapStart(yynn406) + yynn406 = 0 } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq394[0] { + if yyq406[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq394[0] { + if yyq406[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq394[1] { - yym397 := z.EncBinary() - _ = yym397 + if yyq406[1] { + yym409 := z.EncBinary() + _ = yym409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -6922,23 +7186,23 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq394[1] { + if yyq406[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym398 := z.EncBinary() - _ = yym398 + yym410 := z.EncBinary() + _ = yym410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq394[2] { - yym400 := z.EncBinary() - _ = yym400 + if yyq406[2] { + yym412 := z.EncBinary() + _ = yym412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -6947,19 +7211,19 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq394[2] { + if yyq406[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym401 := z.EncBinary() - _ = yym401 + yym413 := z.EncBinary() + _ = yym413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6972,25 +7236,25 @@ func (x *PersistentVolumeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym402 := z.DecBinary() - _ = yym402 + yym414 := z.DecBinary() + _ = yym414 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct403 := r.ContainerType() - if yyct403 == codecSelferValueTypeMap1234 { - yyl403 := r.ReadMapStart() - if yyl403 == 0 { + yyct415 := r.ContainerType() + if yyct415 == codecSelferValueTypeMap1234 { + yyl415 := r.ReadMapStart() + if yyl415 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl403, d) + x.codecDecodeSelfFromMap(yyl415, d) } - } else if yyct403 == codecSelferValueTypeArray1234 { - yyl403 := r.ReadArrayStart() - if yyl403 == 0 { + } else if yyct415 == codecSelferValueTypeArray1234 { + yyl415 := r.ReadArrayStart() + if yyl415 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl403, d) + x.codecDecodeSelfFromArray(yyl415, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7002,12 +7266,12 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys404Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys404Slc - var yyhl404 bool = l >= 0 - for yyj404 := 0; ; yyj404++ { - if yyhl404 { - if yyj404 >= l { + var yys416Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys416Slc + var yyhl416 bool = l >= 0 + for yyj416 := 0; ; yyj416++ { + if yyhl416 { + if yyj416 >= l { break } } else { @@ -7016,10 +7280,10 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys404Slc = r.DecodeBytes(yys404Slc, true, true) - yys404 := string(yys404Slc) + yys416Slc = r.DecodeBytes(yys416Slc, true, true) + yys416 := string(yys416Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys404 { + switch yys416 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -7039,9 +7303,9 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.Reason = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys404) - } // end switch yys404 - } // end for yyj404 + z.DecStructFieldNotFound(-1, yys416) + } // end switch yys416 + } // end for yyj416 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7049,16 +7313,16 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj408 int - var yyb408 bool - var yyhl408 bool = l >= 0 - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + var yyj420 int + var yyb420 bool + var yyhl420 bool = l >= 0 + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7068,13 +7332,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Phase = PersistentVolumePhase(r.DecodeString()) } - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7084,13 +7348,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Message = string(r.DecodeString()) } - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7101,17 +7365,17 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De x.Reason = string(r.DecodeString()) } for { - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj408-1, "") + z.DecStructFieldNotFound(yyj420-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7123,37 +7387,37 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym412 := z.EncBinary() - _ = yym412 + yym424 := z.EncBinary() + _ = yym424 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep413 := !z.EncBinary() - yy2arr413 := z.EncBasicHandle().StructToArray - var yyq413 [4]bool - _, _, _ = yysep413, yyq413, yy2arr413 - const yyr413 bool = false - yyq413[0] = x.Kind != "" - yyq413[1] = x.APIVersion != "" - yyq413[2] = true - var yynn413 int - if yyr413 || yy2arr413 { + yysep425 := !z.EncBinary() + yy2arr425 := z.EncBasicHandle().StructToArray + var yyq425 [4]bool + _, _, _ = yysep425, yyq425, yy2arr425 + const yyr425 bool = false + yyq425[0] = x.Kind != "" + yyq425[1] = x.APIVersion != "" + yyq425[2] = true + var yynn425 int + if yyr425 || yy2arr425 { r.EncodeArrayStart(4) } else { - yynn413 = 1 - for _, b := range yyq413 { + yynn425 = 1 + for _, b := range yyq425 { if b { - yynn413++ + yynn425++ } } - r.EncodeMapStart(yynn413) - yynn413 = 0 + r.EncodeMapStart(yynn425) + yynn425 = 0 } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq413[0] { - yym415 := z.EncBinary() - _ = yym415 + if yyq425[0] { + yym427 := z.EncBinary() + _ = yym427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7162,23 +7426,23 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq413[0] { + if yyq425[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym416 := z.EncBinary() - _ = yym416 + yym428 := z.EncBinary() + _ = yym428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq413[1] { - yym418 := z.EncBinary() - _ = yym418 + if yyq425[1] { + yym430 := z.EncBinary() + _ = yym430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7187,54 +7451,54 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq413[1] { + if yyq425[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym419 := z.EncBinary() - _ = yym419 + yym431 := z.EncBinary() + _ = yym431 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq413[2] { - yy421 := &x.ListMeta - yym422 := z.EncBinary() - _ = yym422 + if yyq425[2] { + yy433 := &x.ListMeta + yym434 := z.EncBinary() + _ = yym434 if false { - } else if z.HasExtensions() && z.EncExt(yy421) { + } else if z.HasExtensions() && z.EncExt(yy433) { } else { - z.EncFallback(yy421) + z.EncFallback(yy433) } } else { r.EncodeNil() } } else { - if yyq413[2] { + if yyq425[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy423 := &x.ListMeta - yym424 := z.EncBinary() - _ = yym424 + yy435 := &x.ListMeta + yym436 := z.EncBinary() + _ = yym436 if false { - } else if z.HasExtensions() && z.EncExt(yy423) { + } else if z.HasExtensions() && z.EncExt(yy435) { } else { - z.EncFallback(yy423) + z.EncFallback(yy435) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym426 := z.EncBinary() - _ = yym426 + yym438 := z.EncBinary() + _ = yym438 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) @@ -7247,15 +7511,15 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym427 := z.EncBinary() - _ = yym427 + yym439 := z.EncBinary() + _ = yym439 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7268,25 +7532,25 @@ func (x *PersistentVolumeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym428 := z.DecBinary() - _ = yym428 + yym440 := z.DecBinary() + _ = yym440 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct429 := r.ContainerType() - if yyct429 == codecSelferValueTypeMap1234 { - yyl429 := r.ReadMapStart() - if yyl429 == 0 { + yyct441 := r.ContainerType() + if yyct441 == codecSelferValueTypeMap1234 { + yyl441 := r.ReadMapStart() + if yyl441 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl429, d) + x.codecDecodeSelfFromMap(yyl441, d) } - } else if yyct429 == codecSelferValueTypeArray1234 { - yyl429 := r.ReadArrayStart() - if yyl429 == 0 { + } else if yyct441 == codecSelferValueTypeArray1234 { + yyl441 := r.ReadArrayStart() + if yyl441 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl429, d) + x.codecDecodeSelfFromArray(yyl441, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7298,12 +7562,12 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys430Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys430Slc - var yyhl430 bool = l >= 0 - for yyj430 := 0; ; yyj430++ { - if yyhl430 { - if yyj430 >= l { + var yys442Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys442Slc + var yyhl442 bool = l >= 0 + for yyj442 := 0; ; yyj442++ { + if yyhl442 { + if yyj442 >= l { break } } else { @@ -7312,10 +7576,10 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys430Slc = r.DecodeBytes(yys430Slc, true, true) - yys430 := string(yys430Slc) + yys442Slc = r.DecodeBytes(yys442Slc, true, true) + yys442 := string(yys442Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys430 { + switch yys442 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7332,31 +7596,31 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv433 := &x.ListMeta - yym434 := z.DecBinary() - _ = yym434 + yyv445 := &x.ListMeta + yym446 := z.DecBinary() + _ = yym446 if false { - } else if z.HasExtensions() && z.DecExt(yyv433) { + } else if z.HasExtensions() && z.DecExt(yyv445) { } else { - z.DecFallback(yyv433, false) + z.DecFallback(yyv445, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv435 := &x.Items - yym436 := z.DecBinary() - _ = yym436 + yyv447 := &x.Items + yym448 := z.DecBinary() + _ = yym448 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv435), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv447), d) } } default: - z.DecStructFieldNotFound(-1, yys430) - } // end switch yys430 - } // end for yyj430 + z.DecStructFieldNotFound(-1, yys442) + } // end switch yys442 + } // end for yyj442 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7364,16 +7628,16 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj437 int - var yyb437 bool - var yyhl437 bool = l >= 0 - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + var yyj449 int + var yyb449 bool + var yyhl449 bool = l >= 0 + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7383,13 +7647,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Kind = string(r.DecodeString()) } - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7399,13 +7663,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.APIVersion = string(r.DecodeString()) } - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7413,22 +7677,22 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv440 := &x.ListMeta - yym441 := z.DecBinary() - _ = yym441 + yyv452 := &x.ListMeta + yym453 := z.DecBinary() + _ = yym453 if false { - } else if z.HasExtensions() && z.DecExt(yyv440) { + } else if z.HasExtensions() && z.DecExt(yyv452) { } else { - z.DecFallback(yyv440, false) + z.DecFallback(yyv452, false) } } - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7436,26 +7700,26 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Items = nil } else { - yyv442 := &x.Items - yym443 := z.DecBinary() - _ = yym443 + yyv454 := &x.Items + yym455 := z.DecBinary() + _ = yym455 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv442), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv454), d) } } for { - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj437-1, "") + z.DecStructFieldNotFound(yyj449-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7467,39 +7731,39 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym444 := z.EncBinary() - _ = yym444 + yym456 := z.EncBinary() + _ = yym456 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep445 := !z.EncBinary() - yy2arr445 := z.EncBasicHandle().StructToArray - var yyq445 [5]bool - _, _, _ = yysep445, yyq445, yy2arr445 - const yyr445 bool = false - yyq445[0] = x.Kind != "" - yyq445[1] = x.APIVersion != "" - yyq445[2] = true - yyq445[3] = true - yyq445[4] = true - var yynn445 int - if yyr445 || yy2arr445 { + yysep457 := !z.EncBinary() + yy2arr457 := z.EncBasicHandle().StructToArray + var yyq457 [5]bool + _, _, _ = yysep457, yyq457, yy2arr457 + const yyr457 bool = false + yyq457[0] = x.Kind != "" + yyq457[1] = x.APIVersion != "" + yyq457[2] = true + yyq457[3] = true + yyq457[4] = true + var yynn457 int + if yyr457 || yy2arr457 { r.EncodeArrayStart(5) } else { - yynn445 = 0 - for _, b := range yyq445 { + yynn457 = 0 + for _, b := range yyq457 { if b { - yynn445++ + yynn457++ } } - r.EncodeMapStart(yynn445) - yynn445 = 0 + r.EncodeMapStart(yynn457) + yynn457 = 0 } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[0] { - yym447 := z.EncBinary() - _ = yym447 + if yyq457[0] { + yym459 := z.EncBinary() + _ = yym459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7508,23 +7772,23 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq445[0] { + if yyq457[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym448 := z.EncBinary() - _ = yym448 + yym460 := z.EncBinary() + _ = yym460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[1] { - yym450 := z.EncBinary() - _ = yym450 + if yyq457[1] { + yym462 := z.EncBinary() + _ = yym462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7533,70 +7797,70 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq445[1] { + if yyq457[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym451 := z.EncBinary() - _ = yym451 + yym463 := z.EncBinary() + _ = yym463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[2] { - yy453 := &x.ObjectMeta - yy453.CodecEncodeSelf(e) + if yyq457[2] { + yy465 := &x.ObjectMeta + yy465.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq445[2] { + if yyq457[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy454 := &x.ObjectMeta - yy454.CodecEncodeSelf(e) + yy466 := &x.ObjectMeta + yy466.CodecEncodeSelf(e) } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[3] { - yy456 := &x.Spec - yy456.CodecEncodeSelf(e) + if yyq457[3] { + yy468 := &x.Spec + yy468.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq445[3] { + if yyq457[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy457 := &x.Spec - yy457.CodecEncodeSelf(e) + yy469 := &x.Spec + yy469.CodecEncodeSelf(e) } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[4] { - yy459 := &x.Status - yy459.CodecEncodeSelf(e) + if yyq457[4] { + yy471 := &x.Status + yy471.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq445[4] { + if yyq457[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy460 := &x.Status - yy460.CodecEncodeSelf(e) + yy472 := &x.Status + yy472.CodecEncodeSelf(e) } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7609,25 +7873,25 @@ func (x *PersistentVolumeClaim) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym461 := z.DecBinary() - _ = yym461 + yym473 := z.DecBinary() + _ = yym473 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct462 := r.ContainerType() - if yyct462 == codecSelferValueTypeMap1234 { - yyl462 := r.ReadMapStart() - if yyl462 == 0 { + yyct474 := r.ContainerType() + if yyct474 == codecSelferValueTypeMap1234 { + yyl474 := r.ReadMapStart() + if yyl474 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl462, d) + x.codecDecodeSelfFromMap(yyl474, d) } - } else if yyct462 == codecSelferValueTypeArray1234 { - yyl462 := r.ReadArrayStart() - if yyl462 == 0 { + } else if yyct474 == codecSelferValueTypeArray1234 { + yyl474 := r.ReadArrayStart() + if yyl474 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl462, d) + x.codecDecodeSelfFromArray(yyl474, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7639,12 +7903,12 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys463Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys463Slc - var yyhl463 bool = l >= 0 - for yyj463 := 0; ; yyj463++ { - if yyhl463 { - if yyj463 >= l { + var yys475Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys475Slc + var yyhl475 bool = l >= 0 + for yyj475 := 0; ; yyj475++ { + if yyhl475 { + if yyj475 >= l { break } } else { @@ -7653,10 +7917,10 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys463Slc = r.DecodeBytes(yys463Slc, true, true) - yys463 := string(yys463Slc) + yys475Slc = r.DecodeBytes(yys475Slc, true, true) + yys475 := string(yys475Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys463 { + switch yys475 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7673,27 +7937,27 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv466 := &x.ObjectMeta - yyv466.CodecDecodeSelf(d) + yyv478 := &x.ObjectMeta + yyv478.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv467 := &x.Spec - yyv467.CodecDecodeSelf(d) + yyv479 := &x.Spec + yyv479.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv468 := &x.Status - yyv468.CodecDecodeSelf(d) + yyv480 := &x.Status + yyv480.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys463) - } // end switch yys463 - } // end for yyj463 + z.DecStructFieldNotFound(-1, yys475) + } // end switch yys475 + } // end for yyj475 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7701,16 +7965,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj469 int - var yyb469 bool - var yyhl469 bool = l >= 0 - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + var yyj481 int + var yyb481 bool + var yyhl481 bool = l >= 0 + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7720,13 +7984,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7736,13 +8000,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7750,16 +8014,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv472 := &x.ObjectMeta - yyv472.CodecDecodeSelf(d) + yyv484 := &x.ObjectMeta + yyv484.CodecDecodeSelf(d) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7767,16 +8031,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv473 := &x.Spec - yyv473.CodecDecodeSelf(d) + yyv485 := &x.Spec + yyv485.CodecDecodeSelf(d) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7784,21 +8048,21 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv474 := &x.Status - yyv474.CodecDecodeSelf(d) + yyv486 := &x.Status + yyv486.CodecDecodeSelf(d) } for { - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj469-1, "") + z.DecStructFieldNotFound(yyj481-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7810,37 +8074,37 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym475 := z.EncBinary() - _ = yym475 + yym487 := z.EncBinary() + _ = yym487 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep476 := !z.EncBinary() - yy2arr476 := z.EncBasicHandle().StructToArray - var yyq476 [4]bool - _, _, _ = yysep476, yyq476, yy2arr476 - const yyr476 bool = false - yyq476[0] = x.Kind != "" - yyq476[1] = x.APIVersion != "" - yyq476[2] = true - var yynn476 int - if yyr476 || yy2arr476 { + yysep488 := !z.EncBinary() + yy2arr488 := z.EncBasicHandle().StructToArray + var yyq488 [4]bool + _, _, _ = yysep488, yyq488, yy2arr488 + const yyr488 bool = false + yyq488[0] = x.Kind != "" + yyq488[1] = x.APIVersion != "" + yyq488[2] = true + var yynn488 int + if yyr488 || yy2arr488 { r.EncodeArrayStart(4) } else { - yynn476 = 1 - for _, b := range yyq476 { + yynn488 = 1 + for _, b := range yyq488 { if b { - yynn476++ + yynn488++ } } - r.EncodeMapStart(yynn476) - yynn476 = 0 + r.EncodeMapStart(yynn488) + yynn488 = 0 } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq476[0] { - yym478 := z.EncBinary() - _ = yym478 + if yyq488[0] { + yym490 := z.EncBinary() + _ = yym490 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7849,23 +8113,23 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq476[0] { + if yyq488[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym479 := z.EncBinary() - _ = yym479 + yym491 := z.EncBinary() + _ = yym491 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq476[1] { - yym481 := z.EncBinary() - _ = yym481 + if yyq488[1] { + yym493 := z.EncBinary() + _ = yym493 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7874,54 +8138,54 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq476[1] { + if yyq488[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym482 := z.EncBinary() - _ = yym482 + yym494 := z.EncBinary() + _ = yym494 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq476[2] { - yy484 := &x.ListMeta - yym485 := z.EncBinary() - _ = yym485 + if yyq488[2] { + yy496 := &x.ListMeta + yym497 := z.EncBinary() + _ = yym497 if false { - } else if z.HasExtensions() && z.EncExt(yy484) { + } else if z.HasExtensions() && z.EncExt(yy496) { } else { - z.EncFallback(yy484) + z.EncFallback(yy496) } } else { r.EncodeNil() } } else { - if yyq476[2] { + if yyq488[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy486 := &x.ListMeta - yym487 := z.EncBinary() - _ = yym487 + yy498 := &x.ListMeta + yym499 := z.EncBinary() + _ = yym499 if false { - } else if z.HasExtensions() && z.EncExt(yy486) { + } else if z.HasExtensions() && z.EncExt(yy498) { } else { - z.EncFallback(yy486) + z.EncFallback(yy498) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym489 := z.EncBinary() - _ = yym489 + yym501 := z.EncBinary() + _ = yym501 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) @@ -7934,15 +8198,15 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym490 := z.EncBinary() - _ = yym490 + yym502 := z.EncBinary() + _ = yym502 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7955,25 +8219,25 @@ func (x *PersistentVolumeClaimList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym491 := z.DecBinary() - _ = yym491 + yym503 := z.DecBinary() + _ = yym503 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct492 := r.ContainerType() - if yyct492 == codecSelferValueTypeMap1234 { - yyl492 := r.ReadMapStart() - if yyl492 == 0 { + yyct504 := r.ContainerType() + if yyct504 == codecSelferValueTypeMap1234 { + yyl504 := r.ReadMapStart() + if yyl504 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl492, d) + x.codecDecodeSelfFromMap(yyl504, d) } - } else if yyct492 == codecSelferValueTypeArray1234 { - yyl492 := r.ReadArrayStart() - if yyl492 == 0 { + } else if yyct504 == codecSelferValueTypeArray1234 { + yyl504 := r.ReadArrayStart() + if yyl504 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl492, d) + x.codecDecodeSelfFromArray(yyl504, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7985,12 +8249,12 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys493Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys493Slc - var yyhl493 bool = l >= 0 - for yyj493 := 0; ; yyj493++ { - if yyhl493 { - if yyj493 >= l { + var yys505Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys505Slc + var yyhl505 bool = l >= 0 + for yyj505 := 0; ; yyj505++ { + if yyhl505 { + if yyj505 >= l { break } } else { @@ -7999,10 +8263,10 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys493Slc = r.DecodeBytes(yys493Slc, true, true) - yys493 := string(yys493Slc) + yys505Slc = r.DecodeBytes(yys505Slc, true, true) + yys505 := string(yys505Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys493 { + switch yys505 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -8019,31 +8283,31 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv496 := &x.ListMeta - yym497 := z.DecBinary() - _ = yym497 + yyv508 := &x.ListMeta + yym509 := z.DecBinary() + _ = yym509 if false { - } else if z.HasExtensions() && z.DecExt(yyv496) { + } else if z.HasExtensions() && z.DecExt(yyv508) { } else { - z.DecFallback(yyv496, false) + z.DecFallback(yyv508, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv498 := &x.Items - yym499 := z.DecBinary() - _ = yym499 + yyv510 := &x.Items + yym511 := z.DecBinary() + _ = yym511 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv498), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv510), d) } } default: - z.DecStructFieldNotFound(-1, yys493) - } // end switch yys493 - } // end for yyj493 + z.DecStructFieldNotFound(-1, yys505) + } // end switch yys505 + } // end for yyj505 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8051,16 +8315,16 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj500 int - var yyb500 bool - var yyhl500 bool = l >= 0 - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + var yyj512 int + var yyb512 bool + var yyhl512 bool = l >= 0 + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8070,13 +8334,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8086,13 +8350,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8100,22 +8364,22 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv503 := &x.ListMeta - yym504 := z.DecBinary() - _ = yym504 + yyv515 := &x.ListMeta + yym516 := z.DecBinary() + _ = yym516 if false { - } else if z.HasExtensions() && z.DecExt(yyv503) { + } else if z.HasExtensions() && z.DecExt(yyv515) { } else { - z.DecFallback(yyv503, false) + z.DecFallback(yyv515, false) } } - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8123,26 +8387,26 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv505 := &x.Items - yym506 := z.DecBinary() - _ = yym506 + yyv517 := &x.Items + yym518 := z.DecBinary() + _ = yym518 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv505), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv517), d) } } for { - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj500-1, "") + z.DecStructFieldNotFound(yyj512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8154,41 +8418,41 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym507 := z.EncBinary() - _ = yym507 + yym519 := z.EncBinary() + _ = yym519 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep508 := !z.EncBinary() - yy2arr508 := z.EncBasicHandle().StructToArray - var yyq508 [4]bool - _, _, _ = yysep508, yyq508, yy2arr508 - const yyr508 bool = false - yyq508[0] = len(x.AccessModes) != 0 - yyq508[1] = x.Selector != nil - yyq508[2] = true - yyq508[3] = x.VolumeName != "" - var yynn508 int - if yyr508 || yy2arr508 { + yysep520 := !z.EncBinary() + yy2arr520 := z.EncBasicHandle().StructToArray + var yyq520 [4]bool + _, _, _ = yysep520, yyq520, yy2arr520 + const yyr520 bool = false + yyq520[0] = len(x.AccessModes) != 0 + yyq520[1] = x.Selector != nil + yyq520[2] = true + yyq520[3] = x.VolumeName != "" + var yynn520 int + if yyr520 || yy2arr520 { r.EncodeArrayStart(4) } else { - yynn508 = 0 - for _, b := range yyq508 { + yynn520 = 0 + for _, b := range yyq520 { if b { - yynn508++ + yynn520++ } } - r.EncodeMapStart(yynn508) - yynn508 = 0 + r.EncodeMapStart(yynn520) + yynn520 = 0 } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[0] { + if yyq520[0] { if x.AccessModes == nil { r.EncodeNil() } else { - yym510 := z.EncBinary() - _ = yym510 + yym522 := z.EncBinary() + _ = yym522 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8198,15 +8462,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq508[0] { + if yyq520[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym511 := z.EncBinary() - _ = yym511 + yym523 := z.EncBinary() + _ = yym523 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8214,14 +8478,14 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[1] { + if yyq520[1] { if x.Selector == nil { r.EncodeNil() } else { - yym513 := z.EncBinary() - _ = yym513 + yym525 := z.EncBinary() + _ = yym525 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8232,15 +8496,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq508[1] { + if yyq520[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym514 := z.EncBinary() - _ = yym514 + yym526 := z.EncBinary() + _ = yym526 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8249,28 +8513,28 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[2] { - yy516 := &x.Resources - yy516.CodecEncodeSelf(e) + if yyq520[2] { + yy528 := &x.Resources + yy528.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq508[2] { + if yyq520[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy517 := &x.Resources - yy517.CodecEncodeSelf(e) + yy529 := &x.Resources + yy529.CodecEncodeSelf(e) } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[3] { - yym519 := z.EncBinary() - _ = yym519 + if yyq520[3] { + yym531 := z.EncBinary() + _ = yym531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) @@ -8279,19 +8543,19 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq508[3] { + if yyq520[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym520 := z.EncBinary() - _ = yym520 + yym532 := z.EncBinary() + _ = yym532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) } } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8304,25 +8568,25 @@ func (x *PersistentVolumeClaimSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym521 := z.DecBinary() - _ = yym521 + yym533 := z.DecBinary() + _ = yym533 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct522 := r.ContainerType() - if yyct522 == codecSelferValueTypeMap1234 { - yyl522 := r.ReadMapStart() - if yyl522 == 0 { + yyct534 := r.ContainerType() + if yyct534 == codecSelferValueTypeMap1234 { + yyl534 := r.ReadMapStart() + if yyl534 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl522, d) + x.codecDecodeSelfFromMap(yyl534, d) } - } else if yyct522 == codecSelferValueTypeArray1234 { - yyl522 := r.ReadArrayStart() - if yyl522 == 0 { + } else if yyct534 == codecSelferValueTypeArray1234 { + yyl534 := r.ReadArrayStart() + if yyl534 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl522, d) + x.codecDecodeSelfFromArray(yyl534, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8334,12 +8598,12 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys523Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys523Slc - var yyhl523 bool = l >= 0 - for yyj523 := 0; ; yyj523++ { - if yyhl523 { - if yyj523 >= l { + var yys535Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys535Slc + var yyhl535 bool = l >= 0 + for yyj535 := 0; ; yyj535++ { + if yyhl535 { + if yyj535 >= l { break } } else { @@ -8348,20 +8612,20 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys523Slc = r.DecodeBytes(yys523Slc, true, true) - yys523 := string(yys523Slc) + yys535Slc = r.DecodeBytes(yys535Slc, true, true) + yys535 := string(yys535Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys523 { + switch yys535 { case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv524 := &x.AccessModes - yym525 := z.DecBinary() - _ = yym525 + yyv536 := &x.AccessModes + yym537 := z.DecBinary() + _ = yym537 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv524), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv536), d) } } case "selector": @@ -8373,8 +8637,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym527 := z.DecBinary() - _ = yym527 + yym539 := z.DecBinary() + _ = yym539 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { @@ -8385,8 +8649,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv528 := &x.Resources - yyv528.CodecDecodeSelf(d) + yyv540 := &x.Resources + yyv540.CodecDecodeSelf(d) } case "volumeName": if r.TryDecodeAsNil() { @@ -8395,9 +8659,9 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.VolumeName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys523) - } // end switch yys523 - } // end for yyj523 + z.DecStructFieldNotFound(-1, yys535) + } // end switch yys535 + } // end for yyj535 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8405,16 +8669,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj530 int - var yyb530 bool - var yyhl530 bool = l >= 0 - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + var yyj542 int + var yyb542 bool + var yyhl542 bool = l >= 0 + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8422,21 +8686,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv531 := &x.AccessModes - yym532 := z.DecBinary() - _ = yym532 + yyv543 := &x.AccessModes + yym544 := z.DecBinary() + _ = yym544 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv531), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv543), d) } } - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8449,21 +8713,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym534 := z.DecBinary() - _ = yym534 + yym546 := z.DecBinary() + _ = yym546 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { z.DecFallback(x.Selector, false) } } - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8471,16 +8735,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv535 := &x.Resources - yyv535.CodecDecodeSelf(d) + yyv547 := &x.Resources + yyv547.CodecDecodeSelf(d) } - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8491,17 +8755,17 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.VolumeName = string(r.DecodeString()) } for { - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj530-1, "") + z.DecStructFieldNotFound(yyj542-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8513,55 +8777,55 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym537 := z.EncBinary() - _ = yym537 + yym549 := z.EncBinary() + _ = yym549 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep538 := !z.EncBinary() - yy2arr538 := z.EncBasicHandle().StructToArray - var yyq538 [3]bool - _, _, _ = yysep538, yyq538, yy2arr538 - const yyr538 bool = false - yyq538[0] = x.Phase != "" - yyq538[1] = len(x.AccessModes) != 0 - yyq538[2] = len(x.Capacity) != 0 - var yynn538 int - if yyr538 || yy2arr538 { + yysep550 := !z.EncBinary() + yy2arr550 := z.EncBasicHandle().StructToArray + var yyq550 [3]bool + _, _, _ = yysep550, yyq550, yy2arr550 + const yyr550 bool = false + yyq550[0] = x.Phase != "" + yyq550[1] = len(x.AccessModes) != 0 + yyq550[2] = len(x.Capacity) != 0 + var yynn550 int + if yyr550 || yy2arr550 { r.EncodeArrayStart(3) } else { - yynn538 = 0 - for _, b := range yyq538 { + yynn550 = 0 + for _, b := range yyq550 { if b { - yynn538++ + yynn550++ } } - r.EncodeMapStart(yynn538) - yynn538 = 0 + r.EncodeMapStart(yynn550) + yynn550 = 0 } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq538[0] { + if yyq550[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq538[0] { + if yyq550[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq538[1] { + if yyq550[1] { if x.AccessModes == nil { r.EncodeNil() } else { - yym541 := z.EncBinary() - _ = yym541 + yym553 := z.EncBinary() + _ = yym553 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8571,15 +8835,15 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq538[1] { + if yyq550[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym542 := z.EncBinary() - _ = yym542 + yym554 := z.EncBinary() + _ = yym554 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8587,9 +8851,9 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq538[2] { + if yyq550[2] { if x.Capacity == nil { r.EncodeNil() } else { @@ -8599,7 +8863,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq538[2] { + if yyq550[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -8610,7 +8874,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8623,25 +8887,25 @@ func (x *PersistentVolumeClaimStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym544 := z.DecBinary() - _ = yym544 + yym556 := z.DecBinary() + _ = yym556 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct545 := r.ContainerType() - if yyct545 == codecSelferValueTypeMap1234 { - yyl545 := r.ReadMapStart() - if yyl545 == 0 { + yyct557 := r.ContainerType() + if yyct557 == codecSelferValueTypeMap1234 { + yyl557 := r.ReadMapStart() + if yyl557 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl545, d) + x.codecDecodeSelfFromMap(yyl557, d) } - } else if yyct545 == codecSelferValueTypeArray1234 { - yyl545 := r.ReadArrayStart() - if yyl545 == 0 { + } else if yyct557 == codecSelferValueTypeArray1234 { + yyl557 := r.ReadArrayStart() + if yyl557 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl545, d) + x.codecDecodeSelfFromArray(yyl557, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8653,12 +8917,12 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys546Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys546Slc - var yyhl546 bool = l >= 0 - for yyj546 := 0; ; yyj546++ { - if yyhl546 { - if yyj546 >= l { + var yys558Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys558Slc + var yyhl558 bool = l >= 0 + for yyj558 := 0; ; yyj558++ { + if yyhl558 { + if yyj558 >= l { break } } else { @@ -8667,10 +8931,10 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys546Slc = r.DecodeBytes(yys546Slc, true, true) - yys546 := string(yys546Slc) + yys558Slc = r.DecodeBytes(yys558Slc, true, true) + yys558 := string(yys558Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys546 { + switch yys558 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -8681,25 +8945,25 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv548 := &x.AccessModes - yym549 := z.DecBinary() - _ = yym549 + yyv560 := &x.AccessModes + yym561 := z.DecBinary() + _ = yym561 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv548), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv560), d) } } case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv550 := &x.Capacity - yyv550.CodecDecodeSelf(d) + yyv562 := &x.Capacity + yyv562.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys546) - } // end switch yys546 - } // end for yyj546 + z.DecStructFieldNotFound(-1, yys558) + } // end switch yys558 + } // end for yyj558 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8707,16 +8971,16 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj551 int - var yyb551 bool - var yyhl551 bool = l >= 0 - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + var yyj563 int + var yyb563 bool + var yyhl563 bool = l >= 0 + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8726,13 +8990,13 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Phase = PersistentVolumeClaimPhase(r.DecodeString()) } - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8740,21 +9004,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv553 := &x.AccessModes - yym554 := z.DecBinary() - _ = yym554 + yyv565 := &x.AccessModes + yym566 := z.DecBinary() + _ = yym566 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv553), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv565), d) } } - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8762,21 +9026,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv555 := &x.Capacity - yyv555.CodecDecodeSelf(d) + yyv567 := &x.Capacity + yyv567.CodecDecodeSelf(d) } for { - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj551-1, "") + z.DecStructFieldNotFound(yyj563-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8785,8 +9049,8 @@ func (x PersistentVolumeAccessMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym556 := z.EncBinary() - _ = yym556 + yym568 := z.EncBinary() + _ = yym568 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -8798,8 +9062,8 @@ func (x *PersistentVolumeAccessMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym557 := z.DecBinary() - _ = yym557 + yym569 := z.DecBinary() + _ = yym569 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -8811,8 +9075,8 @@ func (x PersistentVolumePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym558 := z.EncBinary() - _ = yym558 + yym570 := z.EncBinary() + _ = yym570 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -8824,8 +9088,8 @@ func (x *PersistentVolumePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym559 := z.DecBinary() - _ = yym559 + yym571 := z.DecBinary() + _ = yym571 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -8837,8 +9101,8 @@ func (x PersistentVolumeClaimPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym560 := z.EncBinary() - _ = yym560 + yym572 := z.EncBinary() + _ = yym572 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -8850,8 +9114,8 @@ func (x *PersistentVolumeClaimPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym561 := z.DecBinary() - _ = yym561 + yym573 := z.DecBinary() + _ = yym573 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -8866,33 +9130,33 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym562 := z.EncBinary() - _ = yym562 + yym574 := z.EncBinary() + _ = yym574 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep563 := !z.EncBinary() - yy2arr563 := z.EncBasicHandle().StructToArray - var yyq563 [1]bool - _, _, _ = yysep563, yyq563, yy2arr563 - const yyr563 bool = false - var yynn563 int - if yyr563 || yy2arr563 { + yysep575 := !z.EncBinary() + yy2arr575 := z.EncBasicHandle().StructToArray + var yyq575 [1]bool + _, _, _ = yysep575, yyq575, yy2arr575 + const yyr575 bool = false + var yynn575 int + if yyr575 || yy2arr575 { r.EncodeArrayStart(1) } else { - yynn563 = 1 - for _, b := range yyq563 { + yynn575 = 1 + for _, b := range yyq575 { if b { - yynn563++ + yynn575++ } } - r.EncodeMapStart(yynn563) - yynn563 = 0 + r.EncodeMapStart(yynn575) + yynn575 = 0 } - if yyr563 || yy2arr563 { + if yyr575 || yy2arr575 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym565 := z.EncBinary() - _ = yym565 + yym577 := z.EncBinary() + _ = yym577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -8901,14 +9165,14 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym566 := z.EncBinary() - _ = yym566 + yym578 := z.EncBinary() + _ = yym578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr563 || yy2arr563 { + if yyr575 || yy2arr575 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8921,25 +9185,25 @@ func (x *HostPathVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym567 := z.DecBinary() - _ = yym567 + yym579 := z.DecBinary() + _ = yym579 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct568 := r.ContainerType() - if yyct568 == codecSelferValueTypeMap1234 { - yyl568 := r.ReadMapStart() - if yyl568 == 0 { + yyct580 := r.ContainerType() + if yyct580 == codecSelferValueTypeMap1234 { + yyl580 := r.ReadMapStart() + if yyl580 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl568, d) + x.codecDecodeSelfFromMap(yyl580, d) } - } else if yyct568 == codecSelferValueTypeArray1234 { - yyl568 := r.ReadArrayStart() - if yyl568 == 0 { + } else if yyct580 == codecSelferValueTypeArray1234 { + yyl580 := r.ReadArrayStart() + if yyl580 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl568, d) + x.codecDecodeSelfFromArray(yyl580, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8951,12 +9215,12 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys569Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys569Slc - var yyhl569 bool = l >= 0 - for yyj569 := 0; ; yyj569++ { - if yyhl569 { - if yyj569 >= l { + var yys581Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys581Slc + var yyhl581 bool = l >= 0 + for yyj581 := 0; ; yyj581++ { + if yyhl581 { + if yyj581 >= l { break } } else { @@ -8965,10 +9229,10 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys569Slc = r.DecodeBytes(yys569Slc, true, true) - yys569 := string(yys569Slc) + yys581Slc = r.DecodeBytes(yys581Slc, true, true) + yys581 := string(yys581Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys569 { + switch yys581 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -8976,9 +9240,9 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys569) - } // end switch yys569 - } // end for yyj569 + z.DecStructFieldNotFound(-1, yys581) + } // end switch yys581 + } // end for yyj581 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8986,16 +9250,16 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj571 int - var yyb571 bool - var yyhl571 bool = l >= 0 - yyj571++ - if yyhl571 { - yyb571 = yyj571 > l + var yyj583 int + var yyb583 bool + var yyhl583 bool = l >= 0 + yyj583++ + if yyhl583 { + yyb583 = yyj583 > l } else { - yyb571 = r.CheckBreak() + yyb583 = r.CheckBreak() } - if yyb571 { + if yyb583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9006,17 +9270,17 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Path = string(r.DecodeString()) } for { - yyj571++ - if yyhl571 { - yyb571 = yyj571 > l + yyj583++ + if yyhl583 { + yyb583 = yyj583 > l } else { - yyb571 = r.CheckBreak() + yyb583 = r.CheckBreak() } - if yyb571 { + if yyb583 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj571-1, "") + z.DecStructFieldNotFound(yyj583-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9028,46 +9292,46 @@ func (x *EmptyDirVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym573 := z.EncBinary() - _ = yym573 + yym585 := z.EncBinary() + _ = yym585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep574 := !z.EncBinary() - yy2arr574 := z.EncBasicHandle().StructToArray - var yyq574 [1]bool - _, _, _ = yysep574, yyq574, yy2arr574 - const yyr574 bool = false - yyq574[0] = x.Medium != "" - var yynn574 int - if yyr574 || yy2arr574 { + yysep586 := !z.EncBinary() + yy2arr586 := z.EncBasicHandle().StructToArray + var yyq586 [1]bool + _, _, _ = yysep586, yyq586, yy2arr586 + const yyr586 bool = false + yyq586[0] = x.Medium != "" + var yynn586 int + if yyr586 || yy2arr586 { r.EncodeArrayStart(1) } else { - yynn574 = 0 - for _, b := range yyq574 { + yynn586 = 0 + for _, b := range yyq586 { if b { - yynn574++ + yynn586++ } } - r.EncodeMapStart(yynn574) - yynn574 = 0 + r.EncodeMapStart(yynn586) + yynn586 = 0 } - if yyr574 || yy2arr574 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq574[0] { + if yyq586[0] { x.Medium.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq574[0] { + if yyq586[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("medium")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Medium.CodecEncodeSelf(e) } } - if yyr574 || yy2arr574 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9080,25 +9344,25 @@ func (x *EmptyDirVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym576 := z.DecBinary() - _ = yym576 + yym588 := z.DecBinary() + _ = yym588 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct577 := r.ContainerType() - if yyct577 == codecSelferValueTypeMap1234 { - yyl577 := r.ReadMapStart() - if yyl577 == 0 { + yyct589 := r.ContainerType() + if yyct589 == codecSelferValueTypeMap1234 { + yyl589 := r.ReadMapStart() + if yyl589 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl577, d) + x.codecDecodeSelfFromMap(yyl589, d) } - } else if yyct577 == codecSelferValueTypeArray1234 { - yyl577 := r.ReadArrayStart() - if yyl577 == 0 { + } else if yyct589 == codecSelferValueTypeArray1234 { + yyl589 := r.ReadArrayStart() + if yyl589 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl577, d) + x.codecDecodeSelfFromArray(yyl589, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9110,12 +9374,12 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys578Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys578Slc - var yyhl578 bool = l >= 0 - for yyj578 := 0; ; yyj578++ { - if yyhl578 { - if yyj578 >= l { + var yys590Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys590Slc + var yyhl590 bool = l >= 0 + for yyj590 := 0; ; yyj590++ { + if yyhl590 { + if yyj590 >= l { break } } else { @@ -9124,10 +9388,10 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys578Slc = r.DecodeBytes(yys578Slc, true, true) - yys578 := string(yys578Slc) + yys590Slc = r.DecodeBytes(yys590Slc, true, true) + yys590 := string(yys590Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys578 { + switch yys590 { case "medium": if r.TryDecodeAsNil() { x.Medium = "" @@ -9135,9 +9399,9 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Medium = StorageMedium(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys578) - } // end switch yys578 - } // end for yyj578 + z.DecStructFieldNotFound(-1, yys590) + } // end switch yys590 + } // end for yyj590 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9145,16 +9409,16 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj580 int - var yyb580 bool - var yyhl580 bool = l >= 0 - yyj580++ - if yyhl580 { - yyb580 = yyj580 > l + var yyj592 int + var yyb592 bool + var yyhl592 bool = l >= 0 + yyj592++ + if yyhl592 { + yyb592 = yyj592 > l } else { - yyb580 = r.CheckBreak() + yyb592 = r.CheckBreak() } - if yyb580 { + if yyb592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9165,17 +9429,17 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Medium = StorageMedium(r.DecodeString()) } for { - yyj580++ - if yyhl580 { - yyb580 = yyj580 > l + yyj592++ + if yyhl592 { + yyb592 = yyj592 > l } else { - yyb580 = r.CheckBreak() + yyb592 = r.CheckBreak() } - if yyb580 { + if yyb592 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj580-1, "") + z.DecStructFieldNotFound(yyj592-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9184,8 +9448,8 @@ func (x StorageMedium) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym582 := z.EncBinary() - _ = yym582 + yym594 := z.EncBinary() + _ = yym594 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9197,8 +9461,8 @@ func (x *StorageMedium) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym583 := z.DecBinary() - _ = yym583 + yym595 := z.DecBinary() + _ = yym595 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9210,8 +9474,8 @@ func (x Protocol) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym584 := z.EncBinary() - _ = yym584 + yym596 := z.EncBinary() + _ = yym596 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9223,8 +9487,8 @@ func (x *Protocol) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym585 := z.DecBinary() - _ = yym585 + yym597 := z.DecBinary() + _ = yym597 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9239,36 +9503,36 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym586 := z.EncBinary() - _ = yym586 + yym598 := z.EncBinary() + _ = yym598 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep587 := !z.EncBinary() - yy2arr587 := z.EncBasicHandle().StructToArray - var yyq587 [4]bool - _, _, _ = yysep587, yyq587, yy2arr587 - const yyr587 bool = false - yyq587[1] = x.FSType != "" - yyq587[2] = x.Partition != 0 - yyq587[3] = x.ReadOnly != false - var yynn587 int - if yyr587 || yy2arr587 { + yysep599 := !z.EncBinary() + yy2arr599 := z.EncBasicHandle().StructToArray + var yyq599 [4]bool + _, _, _ = yysep599, yyq599, yy2arr599 + const yyr599 bool = false + yyq599[1] = x.FSType != "" + yyq599[2] = x.Partition != 0 + yyq599[3] = x.ReadOnly != false + var yynn599 int + if yyr599 || yy2arr599 { r.EncodeArrayStart(4) } else { - yynn587 = 1 - for _, b := range yyq587 { + yynn599 = 1 + for _, b := range yyq599 { if b { - yynn587++ + yynn599++ } } - r.EncodeMapStart(yynn587) - yynn587 = 0 + r.EncodeMapStart(yynn599) + yynn599 = 0 } - if yyr587 || yy2arr587 { + if yyr599 || yy2arr599 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym589 := z.EncBinary() - _ = yym589 + yym601 := z.EncBinary() + _ = yym601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) @@ -9277,18 +9541,18 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pdName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym590 := z.EncBinary() - _ = yym590 + yym602 := z.EncBinary() + _ = yym602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) } } - if yyr587 || yy2arr587 { + if yyr599 || yy2arr599 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq587[1] { - yym592 := z.EncBinary() - _ = yym592 + if yyq599[1] { + yym604 := z.EncBinary() + _ = yym604 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9297,23 +9561,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq587[1] { + if yyq599[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym593 := z.EncBinary() - _ = yym593 + yym605 := z.EncBinary() + _ = yym605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr587 || yy2arr587 { + if yyr599 || yy2arr599 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq587[2] { - yym595 := z.EncBinary() - _ = yym595 + if yyq599[2] { + yym607 := z.EncBinary() + _ = yym607 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -9322,23 +9586,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq587[2] { + if yyq599[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym596 := z.EncBinary() - _ = yym596 + yym608 := z.EncBinary() + _ = yym608 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr587 || yy2arr587 { + if yyr599 || yy2arr599 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq587[3] { - yym598 := z.EncBinary() - _ = yym598 + if yyq599[3] { + yym610 := z.EncBinary() + _ = yym610 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9347,19 +9611,19 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq587[3] { + if yyq599[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym599 := z.EncBinary() - _ = yym599 + yym611 := z.EncBinary() + _ = yym611 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr587 || yy2arr587 { + if yyr599 || yy2arr599 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9372,25 +9636,25 @@ func (x *GCEPersistentDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym600 := z.DecBinary() - _ = yym600 + yym612 := z.DecBinary() + _ = yym612 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct601 := r.ContainerType() - if yyct601 == codecSelferValueTypeMap1234 { - yyl601 := r.ReadMapStart() - if yyl601 == 0 { + yyct613 := r.ContainerType() + if yyct613 == codecSelferValueTypeMap1234 { + yyl613 := r.ReadMapStart() + if yyl613 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl601, d) + x.codecDecodeSelfFromMap(yyl613, d) } - } else if yyct601 == codecSelferValueTypeArray1234 { - yyl601 := r.ReadArrayStart() - if yyl601 == 0 { + } else if yyct613 == codecSelferValueTypeArray1234 { + yyl613 := r.ReadArrayStart() + if yyl613 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl601, d) + x.codecDecodeSelfFromArray(yyl613, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9402,12 +9666,12 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys602Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys602Slc - var yyhl602 bool = l >= 0 - for yyj602 := 0; ; yyj602++ { - if yyhl602 { - if yyj602 >= l { + var yys614Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys614Slc + var yyhl614 bool = l >= 0 + for yyj614 := 0; ; yyj614++ { + if yyhl614 { + if yyj614 >= l { break } } else { @@ -9416,10 +9680,10 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys602Slc = r.DecodeBytes(yys602Slc, true, true) - yys602 := string(yys602Slc) + yys614Slc = r.DecodeBytes(yys614Slc, true, true) + yys614 := string(yys614Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys602 { + switch yys614 { case "pdName": if r.TryDecodeAsNil() { x.PDName = "" @@ -9445,9 +9709,9 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys602) - } // end switch yys602 - } // end for yyj602 + z.DecStructFieldNotFound(-1, yys614) + } // end switch yys614 + } // end for yyj614 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9455,16 +9719,16 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj607 int - var yyb607 bool - var yyhl607 bool = l >= 0 - yyj607++ - if yyhl607 { - yyb607 = yyj607 > l + var yyj619 int + var yyb619 bool + var yyhl619 bool = l >= 0 + yyj619++ + if yyhl619 { + yyb619 = yyj619 > l } else { - yyb607 = r.CheckBreak() + yyb619 = r.CheckBreak() } - if yyb607 { + if yyb619 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9474,13 +9738,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.PDName = string(r.DecodeString()) } - yyj607++ - if yyhl607 { - yyb607 = yyj607 > l + yyj619++ + if yyhl619 { + yyb619 = yyj619 > l } else { - yyb607 = r.CheckBreak() + yyb619 = r.CheckBreak() } - if yyb607 { + if yyb619 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9490,13 +9754,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.FSType = string(r.DecodeString()) } - yyj607++ - if yyhl607 { - yyb607 = yyj607 > l + yyj619++ + if yyhl619 { + yyb619 = yyj619 > l } else { - yyb607 = r.CheckBreak() + yyb619 = r.CheckBreak() } - if yyb607 { + if yyb619 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9506,13 +9770,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.Partition = int32(r.DecodeInt(32)) } - yyj607++ - if yyhl607 { - yyb607 = yyj607 > l + yyj619++ + if yyhl619 { + yyb619 = yyj619 > l } else { - yyb607 = r.CheckBreak() + yyb619 = r.CheckBreak() } - if yyb607 { + if yyb619 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9523,17 +9787,17 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj607++ - if yyhl607 { - yyb607 = yyj607 > l + yyj619++ + if yyhl619 { + yyb619 = yyj619 > l } else { - yyb607 = r.CheckBreak() + yyb619 = r.CheckBreak() } - if yyb607 { + if yyb619 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj607-1, "") + z.DecStructFieldNotFound(yyj619-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9545,40 +9809,40 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym612 := z.EncBinary() - _ = yym612 + yym624 := z.EncBinary() + _ = yym624 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep613 := !z.EncBinary() - yy2arr613 := z.EncBasicHandle().StructToArray - var yyq613 [6]bool - _, _, _ = yysep613, yyq613, yy2arr613 - const yyr613 bool = false - yyq613[0] = x.TargetPortal != "" - yyq613[1] = x.IQN != "" - yyq613[2] = x.Lun != 0 - yyq613[3] = x.ISCSIInterface != "" - yyq613[4] = x.FSType != "" - yyq613[5] = x.ReadOnly != false - var yynn613 int - if yyr613 || yy2arr613 { + yysep625 := !z.EncBinary() + yy2arr625 := z.EncBasicHandle().StructToArray + var yyq625 [6]bool + _, _, _ = yysep625, yyq625, yy2arr625 + const yyr625 bool = false + yyq625[0] = x.TargetPortal != "" + yyq625[1] = x.IQN != "" + yyq625[2] = x.Lun != 0 + yyq625[3] = x.ISCSIInterface != "" + yyq625[4] = x.FSType != "" + yyq625[5] = x.ReadOnly != false + var yynn625 int + if yyr625 || yy2arr625 { r.EncodeArrayStart(6) } else { - yynn613 = 0 - for _, b := range yyq613 { + yynn625 = 0 + for _, b := range yyq625 { if b { - yynn613++ + yynn625++ } } - r.EncodeMapStart(yynn613) - yynn613 = 0 + r.EncodeMapStart(yynn625) + yynn625 = 0 } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[0] { - yym615 := z.EncBinary() - _ = yym615 + if yyq625[0] { + yym627 := z.EncBinary() + _ = yym627 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) @@ -9587,23 +9851,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq613[0] { + if yyq625[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPortal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym616 := z.EncBinary() - _ = yym616 + yym628 := z.EncBinary() + _ = yym628 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) } } } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[1] { - yym618 := z.EncBinary() - _ = yym618 + if yyq625[1] { + yym630 := z.EncBinary() + _ = yym630 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) @@ -9612,23 +9876,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq613[1] { + if yyq625[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iqn")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym619 := z.EncBinary() - _ = yym619 + yym631 := z.EncBinary() + _ = yym631 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) } } } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[2] { - yym621 := z.EncBinary() - _ = yym621 + if yyq625[2] { + yym633 := z.EncBinary() + _ = yym633 if false { } else { r.EncodeInt(int64(x.Lun)) @@ -9637,23 +9901,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq613[2] { + if yyq625[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lun")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym622 := z.EncBinary() - _ = yym622 + yym634 := z.EncBinary() + _ = yym634 if false { } else { r.EncodeInt(int64(x.Lun)) } } } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[3] { - yym624 := z.EncBinary() - _ = yym624 + if yyq625[3] { + yym636 := z.EncBinary() + _ = yym636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) @@ -9662,23 +9926,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq613[3] { + if yyq625[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsiInterface")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym625 := z.EncBinary() - _ = yym625 + yym637 := z.EncBinary() + _ = yym637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) } } } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[4] { - yym627 := z.EncBinary() - _ = yym627 + if yyq625[4] { + yym639 := z.EncBinary() + _ = yym639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9687,23 +9951,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq613[4] { + if yyq625[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym628 := z.EncBinary() - _ = yym628 + yym640 := z.EncBinary() + _ = yym640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[5] { - yym630 := z.EncBinary() - _ = yym630 + if yyq625[5] { + yym642 := z.EncBinary() + _ = yym642 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9712,19 +9976,19 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq613[5] { + if yyq625[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym631 := z.EncBinary() - _ = yym631 + yym643 := z.EncBinary() + _ = yym643 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr613 || yy2arr613 { + if yyr625 || yy2arr625 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9737,25 +10001,25 @@ func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym632 := z.DecBinary() - _ = yym632 + yym644 := z.DecBinary() + _ = yym644 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct633 := r.ContainerType() - if yyct633 == codecSelferValueTypeMap1234 { - yyl633 := r.ReadMapStart() - if yyl633 == 0 { + yyct645 := r.ContainerType() + if yyct645 == codecSelferValueTypeMap1234 { + yyl645 := r.ReadMapStart() + if yyl645 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl633, d) + x.codecDecodeSelfFromMap(yyl645, d) } - } else if yyct633 == codecSelferValueTypeArray1234 { - yyl633 := r.ReadArrayStart() - if yyl633 == 0 { + } else if yyct645 == codecSelferValueTypeArray1234 { + yyl645 := r.ReadArrayStart() + if yyl645 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl633, d) + x.codecDecodeSelfFromArray(yyl645, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9767,12 +10031,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys634Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys634Slc - var yyhl634 bool = l >= 0 - for yyj634 := 0; ; yyj634++ { - if yyhl634 { - if yyj634 >= l { + var yys646Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys646Slc + var yyhl646 bool = l >= 0 + for yyj646 := 0; ; yyj646++ { + if yyhl646 { + if yyj646 >= l { break } } else { @@ -9781,10 +10045,10 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys634Slc = r.DecodeBytes(yys634Slc, true, true) - yys634 := string(yys634Slc) + yys646Slc = r.DecodeBytes(yys646Slc, true, true) + yys646 := string(yys646Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys634 { + switch yys646 { case "targetPortal": if r.TryDecodeAsNil() { x.TargetPortal = "" @@ -9822,9 +10086,9 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys634) - } // end switch yys634 - } // end for yyj634 + z.DecStructFieldNotFound(-1, yys646) + } // end switch yys646 + } // end for yyj646 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9832,16 +10096,16 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj641 int - var yyb641 bool - var yyhl641 bool = l >= 0 - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + var yyj653 int + var yyb653 bool + var yyhl653 bool = l >= 0 + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9851,13 +10115,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.TargetPortal = string(r.DecodeString()) } - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9867,13 +10131,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.IQN = string(r.DecodeString()) } - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9883,13 +10147,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Lun = int32(r.DecodeInt(32)) } - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9899,13 +10163,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.ISCSIInterface = string(r.DecodeString()) } - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9915,13 +10179,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.FSType = string(r.DecodeString()) } - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9932,17 +10196,17 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.ReadOnly = bool(r.DecodeBool()) } for { - yyj641++ - if yyhl641 { - yyb641 = yyj641 > l + yyj653++ + if yyhl653 { + yyb653 = yyj653 > l } else { - yyb641 = r.CheckBreak() + yyb653 = r.CheckBreak() } - if yyb641 { + if yyb653 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj641-1, "") + z.DecStructFieldNotFound(yyj653-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9954,38 +10218,38 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym648 := z.EncBinary() - _ = yym648 + yym660 := z.EncBinary() + _ = yym660 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep649 := !z.EncBinary() - yy2arr649 := z.EncBasicHandle().StructToArray - var yyq649 [4]bool - _, _, _ = yysep649, yyq649, yy2arr649 - const yyr649 bool = false - yyq649[2] = x.FSType != "" - yyq649[3] = x.ReadOnly != false - var yynn649 int - if yyr649 || yy2arr649 { + yysep661 := !z.EncBinary() + yy2arr661 := z.EncBasicHandle().StructToArray + var yyq661 [4]bool + _, _, _ = yysep661, yyq661, yy2arr661 + const yyr661 bool = false + yyq661[2] = x.FSType != "" + yyq661[3] = x.ReadOnly != false + var yynn661 int + if yyr661 || yy2arr661 { r.EncodeArrayStart(4) } else { - yynn649 = 2 - for _, b := range yyq649 { + yynn661 = 2 + for _, b := range yyq661 { if b { - yynn649++ + yynn661++ } } - r.EncodeMapStart(yynn649) - yynn649 = 0 + r.EncodeMapStart(yynn661) + yynn661 = 0 } - if yyr649 || yy2arr649 { + if yyr661 || yy2arr661 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetWWNs == nil { r.EncodeNil() } else { - yym651 := z.EncBinary() - _ = yym651 + yym663 := z.EncBinary() + _ = yym663 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) @@ -9998,25 +10262,25 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.TargetWWNs == nil { r.EncodeNil() } else { - yym652 := z.EncBinary() - _ = yym652 + yym664 := z.EncBinary() + _ = yym664 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) } } } - if yyr649 || yy2arr649 { + if yyr661 || yy2arr661 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Lun == nil { r.EncodeNil() } else { - yy654 := *x.Lun - yym655 := z.EncBinary() - _ = yym655 + yy666 := *x.Lun + yym667 := z.EncBinary() + _ = yym667 if false { } else { - r.EncodeInt(int64(yy654)) + r.EncodeInt(int64(yy666)) } } } else { @@ -10026,20 +10290,20 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Lun == nil { r.EncodeNil() } else { - yy656 := *x.Lun - yym657 := z.EncBinary() - _ = yym657 + yy668 := *x.Lun + yym669 := z.EncBinary() + _ = yym669 if false { } else { - r.EncodeInt(int64(yy656)) + r.EncodeInt(int64(yy668)) } } } - if yyr649 || yy2arr649 { + if yyr661 || yy2arr661 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq649[2] { - yym659 := z.EncBinary() - _ = yym659 + if yyq661[2] { + yym671 := z.EncBinary() + _ = yym671 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10048,23 +10312,23 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq649[2] { + if yyq661[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym660 := z.EncBinary() - _ = yym660 + yym672 := z.EncBinary() + _ = yym672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr649 || yy2arr649 { + if yyr661 || yy2arr661 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq649[3] { - yym662 := z.EncBinary() - _ = yym662 + if yyq661[3] { + yym674 := z.EncBinary() + _ = yym674 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10073,19 +10337,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq649[3] { + if yyq661[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym663 := z.EncBinary() - _ = yym663 + yym675 := z.EncBinary() + _ = yym675 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr649 || yy2arr649 { + if yyr661 || yy2arr661 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10098,25 +10362,25 @@ func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym664 := z.DecBinary() - _ = yym664 + yym676 := z.DecBinary() + _ = yym676 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct665 := r.ContainerType() - if yyct665 == codecSelferValueTypeMap1234 { - yyl665 := r.ReadMapStart() - if yyl665 == 0 { + yyct677 := r.ContainerType() + if yyct677 == codecSelferValueTypeMap1234 { + yyl677 := r.ReadMapStart() + if yyl677 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl665, d) + x.codecDecodeSelfFromMap(yyl677, d) } - } else if yyct665 == codecSelferValueTypeArray1234 { - yyl665 := r.ReadArrayStart() - if yyl665 == 0 { + } else if yyct677 == codecSelferValueTypeArray1234 { + yyl677 := r.ReadArrayStart() + if yyl677 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl665, d) + x.codecDecodeSelfFromArray(yyl677, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10128,12 +10392,12 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys666Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys666Slc - var yyhl666 bool = l >= 0 - for yyj666 := 0; ; yyj666++ { - if yyhl666 { - if yyj666 >= l { + var yys678Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys678Slc + var yyhl678 bool = l >= 0 + for yyj678 := 0; ; yyj678++ { + if yyhl678 { + if yyj678 >= l { break } } else { @@ -10142,20 +10406,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys666Slc = r.DecodeBytes(yys666Slc, true, true) - yys666 := string(yys666Slc) + yys678Slc = r.DecodeBytes(yys678Slc, true, true) + yys678 := string(yys678Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys666 { + switch yys678 { case "targetWWNs": if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv667 := &x.TargetWWNs - yym668 := z.DecBinary() - _ = yym668 + yyv679 := &x.TargetWWNs + yym680 := z.DecBinary() + _ = yym680 if false { } else { - z.F.DecSliceStringX(yyv667, false, d) + z.F.DecSliceStringX(yyv679, false, d) } } case "lun": @@ -10167,8 +10431,8 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym670 := z.DecBinary() - _ = yym670 + yym682 := z.DecBinary() + _ = yym682 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) @@ -10187,9 +10451,9 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys666) - } // end switch yys666 - } // end for yyj666 + z.DecStructFieldNotFound(-1, yys678) + } // end switch yys678 + } // end for yyj678 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10197,16 +10461,16 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj673 int - var yyb673 bool - var yyhl673 bool = l >= 0 - yyj673++ - if yyhl673 { - yyb673 = yyj673 > l + var yyj685 int + var yyb685 bool + var yyhl685 bool = l >= 0 + yyj685++ + if yyhl685 { + yyb685 = yyj685 > l } else { - yyb673 = r.CheckBreak() + yyb685 = r.CheckBreak() } - if yyb673 { + if yyb685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10214,21 +10478,21 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv674 := &x.TargetWWNs - yym675 := z.DecBinary() - _ = yym675 + yyv686 := &x.TargetWWNs + yym687 := z.DecBinary() + _ = yym687 if false { } else { - z.F.DecSliceStringX(yyv674, false, d) + z.F.DecSliceStringX(yyv686, false, d) } } - yyj673++ - if yyhl673 { - yyb673 = yyj673 > l + yyj685++ + if yyhl685 { + yyb685 = yyj685 > l } else { - yyb673 = r.CheckBreak() + yyb685 = r.CheckBreak() } - if yyb673 { + if yyb685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10241,20 +10505,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym677 := z.DecBinary() - _ = yym677 + yym689 := z.DecBinary() + _ = yym689 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) } } - yyj673++ - if yyhl673 { - yyb673 = yyj673 > l + yyj685++ + if yyhl685 { + yyb685 = yyj685 > l } else { - yyb673 = r.CheckBreak() + yyb685 = r.CheckBreak() } - if yyb673 { + if yyb685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10264,13 +10528,13 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FSType = string(r.DecodeString()) } - yyj673++ - if yyhl673 { - yyb673 = yyj673 > l + yyj685++ + if yyhl685 { + yyb685 = yyj685 > l } else { - yyb673 = r.CheckBreak() + yyb685 = r.CheckBreak() } - if yyb673 { + if yyb685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10281,17 +10545,17 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } for { - yyj673++ - if yyhl673 { - yyb673 = yyj673 > l + yyj685++ + if yyhl685 { + yyb685 = yyj685 > l } else { - yyb673 = r.CheckBreak() + yyb685 = r.CheckBreak() } - if yyb673 { + if yyb685 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj673-1, "") + z.DecStructFieldNotFound(yyj685-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10303,37 +10567,37 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym680 := z.EncBinary() - _ = yym680 + yym692 := z.EncBinary() + _ = yym692 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep681 := !z.EncBinary() - yy2arr681 := z.EncBasicHandle().StructToArray - var yyq681 [5]bool - _, _, _ = yysep681, yyq681, yy2arr681 - const yyr681 bool = false - yyq681[1] = x.FSType != "" - yyq681[2] = x.SecretRef != nil - yyq681[3] = x.ReadOnly != false - yyq681[4] = len(x.Options) != 0 - var yynn681 int - if yyr681 || yy2arr681 { + yysep693 := !z.EncBinary() + yy2arr693 := z.EncBasicHandle().StructToArray + var yyq693 [5]bool + _, _, _ = yysep693, yyq693, yy2arr693 + const yyr693 bool = false + yyq693[1] = x.FSType != "" + yyq693[2] = x.SecretRef != nil + yyq693[3] = x.ReadOnly != false + yyq693[4] = len(x.Options) != 0 + var yynn693 int + if yyr693 || yy2arr693 { r.EncodeArrayStart(5) } else { - yynn681 = 1 - for _, b := range yyq681 { + yynn693 = 1 + for _, b := range yyq693 { if b { - yynn681++ + yynn693++ } } - r.EncodeMapStart(yynn681) - yynn681 = 0 + r.EncodeMapStart(yynn693) + yynn693 = 0 } - if yyr681 || yy2arr681 { + if yyr693 || yy2arr693 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym683 := z.EncBinary() - _ = yym683 + yym695 := z.EncBinary() + _ = yym695 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) @@ -10342,18 +10606,18 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("driver")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym684 := z.EncBinary() - _ = yym684 + yym696 := z.EncBinary() + _ = yym696 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) } } - if yyr681 || yy2arr681 { + if yyr693 || yy2arr693 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq681[1] { - yym686 := z.EncBinary() - _ = yym686 + if yyq693[1] { + yym698 := z.EncBinary() + _ = yym698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10362,21 +10626,21 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq681[1] { + if yyq693[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym687 := z.EncBinary() - _ = yym687 + yym699 := z.EncBinary() + _ = yym699 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr681 || yy2arr681 { + if yyr693 || yy2arr693 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq681[2] { + if yyq693[2] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -10386,7 +10650,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq681[2] { + if yyq693[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -10397,11 +10661,11 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr681 || yy2arr681 { + if yyr693 || yy2arr693 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq681[3] { - yym690 := z.EncBinary() - _ = yym690 + if yyq693[3] { + yym702 := z.EncBinary() + _ = yym702 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10410,26 +10674,26 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq681[3] { + if yyq693[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym691 := z.EncBinary() - _ = yym691 + yym703 := z.EncBinary() + _ = yym703 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr681 || yy2arr681 { + if yyr693 || yy2arr693 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq681[4] { + if yyq693[4] { if x.Options == nil { r.EncodeNil() } else { - yym693 := z.EncBinary() - _ = yym693 + yym705 := z.EncBinary() + _ = yym705 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -10439,15 +10703,15 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq681[4] { + if yyq693[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("options")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Options == nil { r.EncodeNil() } else { - yym694 := z.EncBinary() - _ = yym694 + yym706 := z.EncBinary() + _ = yym706 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -10455,7 +10719,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr681 || yy2arr681 { + if yyr693 || yy2arr693 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10468,25 +10732,25 @@ func (x *FlexVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym695 := z.DecBinary() - _ = yym695 + yym707 := z.DecBinary() + _ = yym707 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct696 := r.ContainerType() - if yyct696 == codecSelferValueTypeMap1234 { - yyl696 := r.ReadMapStart() - if yyl696 == 0 { + yyct708 := r.ContainerType() + if yyct708 == codecSelferValueTypeMap1234 { + yyl708 := r.ReadMapStart() + if yyl708 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl696, d) + x.codecDecodeSelfFromMap(yyl708, d) } - } else if yyct696 == codecSelferValueTypeArray1234 { - yyl696 := r.ReadArrayStart() - if yyl696 == 0 { + } else if yyct708 == codecSelferValueTypeArray1234 { + yyl708 := r.ReadArrayStart() + if yyl708 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl696, d) + x.codecDecodeSelfFromArray(yyl708, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10498,12 +10762,12 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys697Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys697Slc - var yyhl697 bool = l >= 0 - for yyj697 := 0; ; yyj697++ { - if yyhl697 { - if yyj697 >= l { + var yys709Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys709Slc + var yyhl709 bool = l >= 0 + for yyj709 := 0; ; yyj709++ { + if yyhl709 { + if yyj709 >= l { break } } else { @@ -10512,10 +10776,10 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys697Slc = r.DecodeBytes(yys697Slc, true, true) - yys697 := string(yys697Slc) + yys709Slc = r.DecodeBytes(yys709Slc, true, true) + yys709 := string(yys709Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys697 { + switch yys709 { case "driver": if r.TryDecodeAsNil() { x.Driver = "" @@ -10549,18 +10813,18 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Options = nil } else { - yyv702 := &x.Options - yym703 := z.DecBinary() - _ = yym703 + yyv714 := &x.Options + yym715 := z.DecBinary() + _ = yym715 if false { } else { - z.F.DecMapStringStringX(yyv702, false, d) + z.F.DecMapStringStringX(yyv714, false, d) } } default: - z.DecStructFieldNotFound(-1, yys697) - } // end switch yys697 - } // end for yyj697 + z.DecStructFieldNotFound(-1, yys709) + } // end switch yys709 + } // end for yyj709 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10568,16 +10832,16 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj704 int - var yyb704 bool - var yyhl704 bool = l >= 0 - yyj704++ - if yyhl704 { - yyb704 = yyj704 > l + var yyj716 int + var yyb716 bool + var yyhl716 bool = l >= 0 + yyj716++ + if yyhl716 { + yyb716 = yyj716 > l } else { - yyb704 = r.CheckBreak() + yyb716 = r.CheckBreak() } - if yyb704 { + if yyb716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10587,13 +10851,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Driver = string(r.DecodeString()) } - yyj704++ - if yyhl704 { - yyb704 = yyj704 > l + yyj716++ + if yyhl716 { + yyb716 = yyj716 > l } else { - yyb704 = r.CheckBreak() + yyb716 = r.CheckBreak() } - if yyb704 { + if yyb716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10603,13 +10867,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj704++ - if yyhl704 { - yyb704 = yyj704 > l + yyj716++ + if yyhl716 { + yyb716 = yyj716 > l } else { - yyb704 = r.CheckBreak() + yyb716 = r.CheckBreak() } - if yyb704 { + if yyb716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10624,13 +10888,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj704++ - if yyhl704 { - yyb704 = yyj704 > l + yyj716++ + if yyhl716 { + yyb716 = yyj716 > l } else { - yyb704 = r.CheckBreak() + yyb716 = r.CheckBreak() } - if yyb704 { + if yyb716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10640,13 +10904,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj704++ - if yyhl704 { - yyb704 = yyj704 > l + yyj716++ + if yyhl716 { + yyb716 = yyj716 > l } else { - yyb704 = r.CheckBreak() + yyb716 = r.CheckBreak() } - if yyb704 { + if yyb716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10654,26 +10918,26 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Options = nil } else { - yyv709 := &x.Options - yym710 := z.DecBinary() - _ = yym710 + yyv721 := &x.Options + yym722 := z.DecBinary() + _ = yym722 if false { } else { - z.F.DecMapStringStringX(yyv709, false, d) + z.F.DecMapStringStringX(yyv721, false, d) } } for { - yyj704++ - if yyhl704 { - yyb704 = yyj704 > l + yyj716++ + if yyhl716 { + yyb716 = yyj716 > l } else { - yyb704 = r.CheckBreak() + yyb716 = r.CheckBreak() } - if yyb704 { + if yyb716 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj704-1, "") + z.DecStructFieldNotFound(yyj716-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10685,36 +10949,36 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) if x == nil { r.EncodeNil() } else { - yym711 := z.EncBinary() - _ = yym711 + yym723 := z.EncBinary() + _ = yym723 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep712 := !z.EncBinary() - yy2arr712 := z.EncBasicHandle().StructToArray - var yyq712 [4]bool - _, _, _ = yysep712, yyq712, yy2arr712 - const yyr712 bool = false - yyq712[1] = x.FSType != "" - yyq712[2] = x.Partition != 0 - yyq712[3] = x.ReadOnly != false - var yynn712 int - if yyr712 || yy2arr712 { + yysep724 := !z.EncBinary() + yy2arr724 := z.EncBasicHandle().StructToArray + var yyq724 [4]bool + _, _, _ = yysep724, yyq724, yy2arr724 + const yyr724 bool = false + yyq724[1] = x.FSType != "" + yyq724[2] = x.Partition != 0 + yyq724[3] = x.ReadOnly != false + var yynn724 int + if yyr724 || yy2arr724 { r.EncodeArrayStart(4) } else { - yynn712 = 1 - for _, b := range yyq712 { + yynn724 = 1 + for _, b := range yyq724 { if b { - yynn712++ + yynn724++ } } - r.EncodeMapStart(yynn712) - yynn712 = 0 + r.EncodeMapStart(yynn724) + yynn724 = 0 } - if yyr712 || yy2arr712 { + if yyr724 || yy2arr724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym714 := z.EncBinary() - _ = yym714 + yym726 := z.EncBinary() + _ = yym726 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -10723,18 +10987,18 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym715 := z.EncBinary() - _ = yym715 + yym727 := z.EncBinary() + _ = yym727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr712 || yy2arr712 { + if yyr724 || yy2arr724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq712[1] { - yym717 := z.EncBinary() - _ = yym717 + if yyq724[1] { + yym729 := z.EncBinary() + _ = yym729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10743,23 +11007,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq712[1] { + if yyq724[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym718 := z.EncBinary() - _ = yym718 + yym730 := z.EncBinary() + _ = yym730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr712 || yy2arr712 { + if yyr724 || yy2arr724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq712[2] { - yym720 := z.EncBinary() - _ = yym720 + if yyq724[2] { + yym732 := z.EncBinary() + _ = yym732 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -10768,23 +11032,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeInt(0) } } else { - if yyq712[2] { + if yyq724[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym721 := z.EncBinary() - _ = yym721 + yym733 := z.EncBinary() + _ = yym733 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr712 || yy2arr712 { + if yyr724 || yy2arr724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq712[3] { - yym723 := z.EncBinary() - _ = yym723 + if yyq724[3] { + yym735 := z.EncBinary() + _ = yym735 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10793,19 +11057,19 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeBool(false) } } else { - if yyq712[3] { + if yyq724[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym724 := z.EncBinary() - _ = yym724 + yym736 := z.EncBinary() + _ = yym736 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr712 || yy2arr712 { + if yyr724 || yy2arr724 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10818,25 +11082,25 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym725 := z.DecBinary() - _ = yym725 + yym737 := z.DecBinary() + _ = yym737 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct726 := r.ContainerType() - if yyct726 == codecSelferValueTypeMap1234 { - yyl726 := r.ReadMapStart() - if yyl726 == 0 { + yyct738 := r.ContainerType() + if yyct738 == codecSelferValueTypeMap1234 { + yyl738 := r.ReadMapStart() + if yyl738 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl726, d) + x.codecDecodeSelfFromMap(yyl738, d) } - } else if yyct726 == codecSelferValueTypeArray1234 { - yyl726 := r.ReadArrayStart() - if yyl726 == 0 { + } else if yyct738 == codecSelferValueTypeArray1234 { + yyl738 := r.ReadArrayStart() + if yyl738 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl726, d) + x.codecDecodeSelfFromArray(yyl738, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10848,12 +11112,12 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys727Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys727Slc - var yyhl727 bool = l >= 0 - for yyj727 := 0; ; yyj727++ { - if yyhl727 { - if yyj727 >= l { + var yys739Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys739Slc + var yyhl739 bool = l >= 0 + for yyj739 := 0; ; yyj739++ { + if yyhl739 { + if yyj739 >= l { break } } else { @@ -10862,10 +11126,10 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys727Slc = r.DecodeBytes(yys727Slc, true, true) - yys727 := string(yys727Slc) + yys739Slc = r.DecodeBytes(yys739Slc, true, true) + yys739 := string(yys739Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys727 { + switch yys739 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -10891,9 +11155,9 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys727) - } // end switch yys727 - } // end for yyj727 + z.DecStructFieldNotFound(-1, yys739) + } // end switch yys739 + } // end for yyj739 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10901,16 +11165,16 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj732 int - var yyb732 bool - var yyhl732 bool = l >= 0 - yyj732++ - if yyhl732 { - yyb732 = yyj732 > l + var yyj744 int + var yyb744 bool + var yyhl744 bool = l >= 0 + yyj744++ + if yyhl744 { + yyb744 = yyj744 > l } else { - yyb732 = r.CheckBreak() + yyb744 = r.CheckBreak() } - if yyb732 { + if yyb744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10920,13 +11184,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.VolumeID = string(r.DecodeString()) } - yyj732++ - if yyhl732 { - yyb732 = yyj732 > l + yyj744++ + if yyhl744 { + yyb744 = yyj744 > l } else { - yyb732 = r.CheckBreak() + yyb744 = r.CheckBreak() } - if yyb732 { + if yyb744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10936,13 +11200,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.FSType = string(r.DecodeString()) } - yyj732++ - if yyhl732 { - yyb732 = yyj732 > l + yyj744++ + if yyhl744 { + yyb744 = yyj744 > l } else { - yyb732 = r.CheckBreak() + yyb744 = r.CheckBreak() } - if yyb732 { + if yyb744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10952,13 +11216,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.Partition = int32(r.DecodeInt(32)) } - yyj732++ - if yyhl732 { - yyb732 = yyj732 > l + yyj744++ + if yyhl744 { + yyb744 = yyj744 > l } else { - yyb732 = r.CheckBreak() + yyb744 = r.CheckBreak() } - if yyb732 { + if yyb744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10969,17 +11233,17 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co x.ReadOnly = bool(r.DecodeBool()) } for { - yyj732++ - if yyhl732 { - yyb732 = yyj732 > l + yyj744++ + if yyhl744 { + yyb744 = yyj744 > l } else { - yyb732 = r.CheckBreak() + yyb744 = r.CheckBreak() } - if yyb732 { + if yyb744 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj732-1, "") + z.DecStructFieldNotFound(yyj744-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10991,35 +11255,35 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym737 := z.EncBinary() - _ = yym737 + yym749 := z.EncBinary() + _ = yym749 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep738 := !z.EncBinary() - yy2arr738 := z.EncBasicHandle().StructToArray - var yyq738 [3]bool - _, _, _ = yysep738, yyq738, yy2arr738 - const yyr738 bool = false - yyq738[1] = x.Revision != "" - yyq738[2] = x.Directory != "" - var yynn738 int - if yyr738 || yy2arr738 { + yysep750 := !z.EncBinary() + yy2arr750 := z.EncBasicHandle().StructToArray + var yyq750 [3]bool + _, _, _ = yysep750, yyq750, yy2arr750 + const yyr750 bool = false + yyq750[1] = x.Revision != "" + yyq750[2] = x.Directory != "" + var yynn750 int + if yyr750 || yy2arr750 { r.EncodeArrayStart(3) } else { - yynn738 = 1 - for _, b := range yyq738 { + yynn750 = 1 + for _, b := range yyq750 { if b { - yynn738++ + yynn750++ } } - r.EncodeMapStart(yynn738) - yynn738 = 0 + r.EncodeMapStart(yynn750) + yynn750 = 0 } - if yyr738 || yy2arr738 { + if yyr750 || yy2arr750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym740 := z.EncBinary() - _ = yym740 + yym752 := z.EncBinary() + _ = yym752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) @@ -11028,18 +11292,18 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("repository")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym741 := z.EncBinary() - _ = yym741 + yym753 := z.EncBinary() + _ = yym753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) } } - if yyr738 || yy2arr738 { + if yyr750 || yy2arr750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq738[1] { - yym743 := z.EncBinary() - _ = yym743 + if yyq750[1] { + yym755 := z.EncBinary() + _ = yym755 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) @@ -11048,23 +11312,23 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq738[1] { + if yyq750[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("revision")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym744 := z.EncBinary() - _ = yym744 + yym756 := z.EncBinary() + _ = yym756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) } } } - if yyr738 || yy2arr738 { + if yyr750 || yy2arr750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq738[2] { - yym746 := z.EncBinary() - _ = yym746 + if yyq750[2] { + yym758 := z.EncBinary() + _ = yym758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) @@ -11073,19 +11337,19 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq738[2] { + if yyq750[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("directory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym747 := z.EncBinary() - _ = yym747 + yym759 := z.EncBinary() + _ = yym759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) } } } - if yyr738 || yy2arr738 { + if yyr750 || yy2arr750 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11098,25 +11362,25 @@ func (x *GitRepoVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym748 := z.DecBinary() - _ = yym748 + yym760 := z.DecBinary() + _ = yym760 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct749 := r.ContainerType() - if yyct749 == codecSelferValueTypeMap1234 { - yyl749 := r.ReadMapStart() - if yyl749 == 0 { + yyct761 := r.ContainerType() + if yyct761 == codecSelferValueTypeMap1234 { + yyl761 := r.ReadMapStart() + if yyl761 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl749, d) + x.codecDecodeSelfFromMap(yyl761, d) } - } else if yyct749 == codecSelferValueTypeArray1234 { - yyl749 := r.ReadArrayStart() - if yyl749 == 0 { + } else if yyct761 == codecSelferValueTypeArray1234 { + yyl761 := r.ReadArrayStart() + if yyl761 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl749, d) + x.codecDecodeSelfFromArray(yyl761, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11128,12 +11392,12 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys750Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys750Slc - var yyhl750 bool = l >= 0 - for yyj750 := 0; ; yyj750++ { - if yyhl750 { - if yyj750 >= l { + var yys762Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys762Slc + var yyhl762 bool = l >= 0 + for yyj762 := 0; ; yyj762++ { + if yyhl762 { + if yyj762 >= l { break } } else { @@ -11142,10 +11406,10 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys750Slc = r.DecodeBytes(yys750Slc, true, true) - yys750 := string(yys750Slc) + yys762Slc = r.DecodeBytes(yys762Slc, true, true) + yys762 := string(yys762Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys750 { + switch yys762 { case "repository": if r.TryDecodeAsNil() { x.Repository = "" @@ -11165,9 +11429,9 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Directory = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys750) - } // end switch yys750 - } // end for yyj750 + z.DecStructFieldNotFound(-1, yys762) + } // end switch yys762 + } // end for yyj762 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11175,16 +11439,16 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj754 int - var yyb754 bool - var yyhl754 bool = l >= 0 - yyj754++ - if yyhl754 { - yyb754 = yyj754 > l + var yyj766 int + var yyb766 bool + var yyhl766 bool = l >= 0 + yyj766++ + if yyhl766 { + yyb766 = yyj766 > l } else { - yyb754 = r.CheckBreak() + yyb766 = r.CheckBreak() } - if yyb754 { + if yyb766 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11194,13 +11458,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Repository = string(r.DecodeString()) } - yyj754++ - if yyhl754 { - yyb754 = yyj754 > l + yyj766++ + if yyhl766 { + yyb766 = yyj766 > l } else { - yyb754 = r.CheckBreak() + yyb766 = r.CheckBreak() } - if yyb754 { + if yyb766 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11210,13 +11474,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Revision = string(r.DecodeString()) } - yyj754++ - if yyhl754 { - yyb754 = yyj754 > l + yyj766++ + if yyhl766 { + yyb766 = yyj766 > l } else { - yyb754 = r.CheckBreak() + yyb766 = r.CheckBreak() } - if yyb754 { + if yyb766 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11227,17 +11491,17 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Directory = string(r.DecodeString()) } for { - yyj754++ - if yyhl754 { - yyb754 = yyj754 > l + yyj766++ + if yyhl766 { + yyb766 = yyj766 > l } else { - yyb754 = r.CheckBreak() + yyb766 = r.CheckBreak() } - if yyb754 { + if yyb766 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj754-1, "") + z.DecStructFieldNotFound(yyj766-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11249,37 +11513,37 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym758 := z.EncBinary() - _ = yym758 + yym770 := z.EncBinary() + _ = yym770 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep759 := !z.EncBinary() - yy2arr759 := z.EncBasicHandle().StructToArray - var yyq759 [3]bool - _, _, _ = yysep759, yyq759, yy2arr759 - const yyr759 bool = false - yyq759[0] = x.SecretName != "" - yyq759[1] = len(x.Items) != 0 - yyq759[2] = x.DefaultMode != nil - var yynn759 int - if yyr759 || yy2arr759 { + yysep771 := !z.EncBinary() + yy2arr771 := z.EncBasicHandle().StructToArray + var yyq771 [3]bool + _, _, _ = yysep771, yyq771, yy2arr771 + const yyr771 bool = false + yyq771[0] = x.SecretName != "" + yyq771[1] = len(x.Items) != 0 + yyq771[2] = x.DefaultMode != nil + var yynn771 int + if yyr771 || yy2arr771 { r.EncodeArrayStart(3) } else { - yynn759 = 0 - for _, b := range yyq759 { + yynn771 = 0 + for _, b := range yyq771 { if b { - yynn759++ + yynn771++ } } - r.EncodeMapStart(yynn759) - yynn759 = 0 + r.EncodeMapStart(yynn771) + yynn771 = 0 } - if yyr759 || yy2arr759 { + if yyr771 || yy2arr771 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq759[0] { - yym761 := z.EncBinary() - _ = yym761 + if yyq771[0] { + yym773 := z.EncBinary() + _ = yym773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -11288,26 +11552,26 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq759[0] { + if yyq771[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym762 := z.EncBinary() - _ = yym762 + yym774 := z.EncBinary() + _ = yym774 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } } - if yyr759 || yy2arr759 { + if yyr771 || yy2arr771 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq759[1] { + if yyq771[1] { if x.Items == nil { r.EncodeNil() } else { - yym764 := z.EncBinary() - _ = yym764 + yym776 := z.EncBinary() + _ = yym776 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -11317,15 +11581,15 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq759[1] { + if yyq771[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym765 := z.EncBinary() - _ = yym765 + yym777 := z.EncBinary() + _ = yym777 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -11333,42 +11597,42 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr759 || yy2arr759 { + if yyr771 || yy2arr771 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq759[2] { + if yyq771[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy767 := *x.DefaultMode - yym768 := z.EncBinary() - _ = yym768 + yy779 := *x.DefaultMode + yym780 := z.EncBinary() + _ = yym780 if false { } else { - r.EncodeInt(int64(yy767)) + r.EncodeInt(int64(yy779)) } } } else { r.EncodeNil() } } else { - if yyq759[2] { + if yyq771[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy769 := *x.DefaultMode - yym770 := z.EncBinary() - _ = yym770 + yy781 := *x.DefaultMode + yym782 := z.EncBinary() + _ = yym782 if false { } else { - r.EncodeInt(int64(yy769)) + r.EncodeInt(int64(yy781)) } } } } - if yyr759 || yy2arr759 { + if yyr771 || yy2arr771 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11381,25 +11645,25 @@ func (x *SecretVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym771 := z.DecBinary() - _ = yym771 + yym783 := z.DecBinary() + _ = yym783 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct772 := r.ContainerType() - if yyct772 == codecSelferValueTypeMap1234 { - yyl772 := r.ReadMapStart() - if yyl772 == 0 { + yyct784 := r.ContainerType() + if yyct784 == codecSelferValueTypeMap1234 { + yyl784 := r.ReadMapStart() + if yyl784 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl772, d) + x.codecDecodeSelfFromMap(yyl784, d) } - } else if yyct772 == codecSelferValueTypeArray1234 { - yyl772 := r.ReadArrayStart() - if yyl772 == 0 { + } else if yyct784 == codecSelferValueTypeArray1234 { + yyl784 := r.ReadArrayStart() + if yyl784 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl772, d) + x.codecDecodeSelfFromArray(yyl784, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11411,12 +11675,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys773Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys773Slc - var yyhl773 bool = l >= 0 - for yyj773 := 0; ; yyj773++ { - if yyhl773 { - if yyj773 >= l { + var yys785Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys785Slc + var yyhl785 bool = l >= 0 + for yyj785 := 0; ; yyj785++ { + if yyhl785 { + if yyj785 >= l { break } } else { @@ -11425,10 +11689,10 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys773Slc = r.DecodeBytes(yys773Slc, true, true) - yys773 := string(yys773Slc) + yys785Slc = r.DecodeBytes(yys785Slc, true, true) + yys785 := string(yys785Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys773 { + switch yys785 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -11439,12 +11703,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv775 := &x.Items - yym776 := z.DecBinary() - _ = yym776 + yyv787 := &x.Items + yym788 := z.DecBinary() + _ = yym788 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv775), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv787), d) } } case "defaultMode": @@ -11456,17 +11720,17 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym778 := z.DecBinary() - _ = yym778 + yym790 := z.DecBinary() + _ = yym790 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys773) - } // end switch yys773 - } // end for yyj773 + z.DecStructFieldNotFound(-1, yys785) + } // end switch yys785 + } // end for yyj785 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11474,16 +11738,16 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj779 int - var yyb779 bool - var yyhl779 bool = l >= 0 - yyj779++ - if yyhl779 { - yyb779 = yyj779 > l + var yyj791 int + var yyb791 bool + var yyhl791 bool = l >= 0 + yyj791++ + if yyhl791 { + yyb791 = yyj791 > l } else { - yyb779 = r.CheckBreak() + yyb791 = r.CheckBreak() } - if yyb779 { + if yyb791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11493,13 +11757,13 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretName = string(r.DecodeString()) } - yyj779++ - if yyhl779 { - yyb779 = yyj779 > l + yyj791++ + if yyhl791 { + yyb791 = yyj791 > l } else { - yyb779 = r.CheckBreak() + yyb791 = r.CheckBreak() } - if yyb779 { + if yyb791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11507,21 +11771,21 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv781 := &x.Items - yym782 := z.DecBinary() - _ = yym782 + yyv793 := &x.Items + yym794 := z.DecBinary() + _ = yym794 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv781), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv793), d) } } - yyj779++ - if yyhl779 { - yyb779 = yyj779 > l + yyj791++ + if yyhl791 { + yyb791 = yyj791 > l } else { - yyb779 = r.CheckBreak() + yyb791 = r.CheckBreak() } - if yyb779 { + if yyb791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11534,25 +11798,25 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym784 := z.DecBinary() - _ = yym784 + yym796 := z.DecBinary() + _ = yym796 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj779++ - if yyhl779 { - yyb779 = yyj779 > l + yyj791++ + if yyhl791 { + yyb791 = yyj791 > l } else { - yyb779 = r.CheckBreak() + yyb791 = r.CheckBreak() } - if yyb779 { + if yyb791 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj779-1, "") + z.DecStructFieldNotFound(yyj791-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11564,34 +11828,34 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym785 := z.EncBinary() - _ = yym785 + yym797 := z.EncBinary() + _ = yym797 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep786 := !z.EncBinary() - yy2arr786 := z.EncBasicHandle().StructToArray - var yyq786 [3]bool - _, _, _ = yysep786, yyq786, yy2arr786 - const yyr786 bool = false - yyq786[2] = x.ReadOnly != false - var yynn786 int - if yyr786 || yy2arr786 { + yysep798 := !z.EncBinary() + yy2arr798 := z.EncBasicHandle().StructToArray + var yyq798 [3]bool + _, _, _ = yysep798, yyq798, yy2arr798 + const yyr798 bool = false + yyq798[2] = x.ReadOnly != false + var yynn798 int + if yyr798 || yy2arr798 { r.EncodeArrayStart(3) } else { - yynn786 = 2 - for _, b := range yyq786 { + yynn798 = 2 + for _, b := range yyq798 { if b { - yynn786++ + yynn798++ } } - r.EncodeMapStart(yynn786) - yynn786 = 0 + r.EncodeMapStart(yynn798) + yynn798 = 0 } - if yyr786 || yy2arr786 { + if yyr798 || yy2arr798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym788 := z.EncBinary() - _ = yym788 + yym800 := z.EncBinary() + _ = yym800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) @@ -11600,17 +11864,17 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("server")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym789 := z.EncBinary() - _ = yym789 + yym801 := z.EncBinary() + _ = yym801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) } } - if yyr786 || yy2arr786 { + if yyr798 || yy2arr798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym791 := z.EncBinary() - _ = yym791 + yym803 := z.EncBinary() + _ = yym803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -11619,18 +11883,18 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym792 := z.EncBinary() - _ = yym792 + yym804 := z.EncBinary() + _ = yym804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr786 || yy2arr786 { + if yyr798 || yy2arr798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq786[2] { - yym794 := z.EncBinary() - _ = yym794 + if yyq798[2] { + yym806 := z.EncBinary() + _ = yym806 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11639,19 +11903,19 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq786[2] { + if yyq798[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym795 := z.EncBinary() - _ = yym795 + yym807 := z.EncBinary() + _ = yym807 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr786 || yy2arr786 { + if yyr798 || yy2arr798 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11664,25 +11928,25 @@ func (x *NFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym796 := z.DecBinary() - _ = yym796 + yym808 := z.DecBinary() + _ = yym808 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct797 := r.ContainerType() - if yyct797 == codecSelferValueTypeMap1234 { - yyl797 := r.ReadMapStart() - if yyl797 == 0 { + yyct809 := r.ContainerType() + if yyct809 == codecSelferValueTypeMap1234 { + yyl809 := r.ReadMapStart() + if yyl809 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl797, d) + x.codecDecodeSelfFromMap(yyl809, d) } - } else if yyct797 == codecSelferValueTypeArray1234 { - yyl797 := r.ReadArrayStart() - if yyl797 == 0 { + } else if yyct809 == codecSelferValueTypeArray1234 { + yyl809 := r.ReadArrayStart() + if yyl809 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl797, d) + x.codecDecodeSelfFromArray(yyl809, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11694,12 +11958,12 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys798Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys798Slc - var yyhl798 bool = l >= 0 - for yyj798 := 0; ; yyj798++ { - if yyhl798 { - if yyj798 >= l { + var yys810Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys810Slc + var yyhl810 bool = l >= 0 + for yyj810 := 0; ; yyj810++ { + if yyhl810 { + if yyj810 >= l { break } } else { @@ -11708,10 +11972,10 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys798Slc = r.DecodeBytes(yys798Slc, true, true) - yys798 := string(yys798Slc) + yys810Slc = r.DecodeBytes(yys810Slc, true, true) + yys810 := string(yys810Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys798 { + switch yys810 { case "server": if r.TryDecodeAsNil() { x.Server = "" @@ -11731,9 +11995,9 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys798) - } // end switch yys798 - } // end for yyj798 + z.DecStructFieldNotFound(-1, yys810) + } // end switch yys810 + } // end for yyj810 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11741,16 +12005,16 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj802 int - var yyb802 bool - var yyhl802 bool = l >= 0 - yyj802++ - if yyhl802 { - yyb802 = yyj802 > l + var yyj814 int + var yyb814 bool + var yyhl814 bool = l >= 0 + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb802 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb802 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11760,13 +12024,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Server = string(r.DecodeString()) } - yyj802++ - if yyhl802 { - yyb802 = yyj802 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb802 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb802 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11776,13 +12040,328 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Path = string(r.DecodeString()) } - yyj802++ - if yyhl802 { - yyb802 = yyj802 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l + } else { + yyb814 = r.CheckBreak() + } + if yyb814 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = bool(r.DecodeBool()) + } + for { + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l + } else { + yyb814 = r.CheckBreak() + } + if yyb814 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj814-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym818 := z.EncBinary() + _ = yym818 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep819 := !z.EncBinary() + yy2arr819 := z.EncBasicHandle().StructToArray + var yyq819 [5]bool + _, _, _ = yysep819, yyq819, yy2arr819 + const yyr819 bool = false + yyq819[2] = x.ReadOnly != false + yyq819[3] = x.User != "" + yyq819[4] = x.Group != "" + var yynn819 int + if yyr819 || yy2arr819 { + r.EncodeArrayStart(5) + } else { + yynn819 = 2 + for _, b := range yyq819 { + if b { + yynn819++ + } + } + r.EncodeMapStart(yynn819) + yynn819 = 0 + } + if yyr819 || yy2arr819 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym821 := z.EncBinary() + _ = yym821 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("registry")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym822 := z.EncBinary() + _ = yym822 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) + } + } + if yyr819 || yy2arr819 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym824 := z.EncBinary() + _ = yym824 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("volume")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym825 := z.EncBinary() + _ = yym825 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) + } + } + if yyr819 || yy2arr819 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq819[2] { + yym827 := z.EncBinary() + _ = yym827 + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq819[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("readOnly")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym828 := z.EncBinary() + _ = yym828 + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } + } + if yyr819 || yy2arr819 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq819[3] { + yym830 := z.EncBinary() + _ = yym830 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.User)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq819[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("user")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym831 := z.EncBinary() + _ = yym831 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.User)) + } + } + } + if yyr819 || yy2arr819 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq819[4] { + yym833 := z.EncBinary() + _ = yym833 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Group)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq819[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("group")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym834 := z.EncBinary() + _ = yym834 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Group)) + } + } + } + if yyr819 || yy2arr819 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *QuobyteVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym835 := z.DecBinary() + _ = yym835 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct836 := r.ContainerType() + if yyct836 == codecSelferValueTypeMap1234 { + yyl836 := r.ReadMapStart() + if yyl836 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl836, d) + } + } else if yyct836 == codecSelferValueTypeArray1234 { + yyl836 := r.ReadArrayStart() + if yyl836 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl836, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys837Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys837Slc + var yyhl837 bool = l >= 0 + for yyj837 := 0; ; yyj837++ { + if yyhl837 { + if yyj837 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys837Slc = r.DecodeBytes(yys837Slc, true, true) + yys837 := string(yys837Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys837 { + case "registry": + if r.TryDecodeAsNil() { + x.Registry = "" + } else { + x.Registry = string(r.DecodeString()) + } + case "volume": + if r.TryDecodeAsNil() { + x.Volume = "" + } else { + x.Volume = string(r.DecodeString()) + } + case "readOnly": + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = bool(r.DecodeBool()) + } + case "user": + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = string(r.DecodeString()) + } + case "group": + if r.TryDecodeAsNil() { + x.Group = "" + } else { + x.Group = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys837) + } // end switch yys837 + } // end for yyj837 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj843 int + var yyb843 bool + var yyhl843 bool = l >= 0 + yyj843++ + if yyhl843 { + yyb843 = yyj843 > l + } else { + yyb843 = r.CheckBreak() + } + if yyb843 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Registry = "" + } else { + x.Registry = string(r.DecodeString()) + } + yyj843++ + if yyhl843 { + yyb843 = yyj843 > l } else { - yyb802 = r.CheckBreak() + yyb843 = r.CheckBreak() } - if yyb802 { + if yyb843 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Volume = "" + } else { + x.Volume = string(r.DecodeString()) + } + yyj843++ + if yyhl843 { + yyb843 = yyj843 > l + } else { + yyb843 = r.CheckBreak() + } + if yyb843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11792,18 +12371,50 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadOnly = bool(r.DecodeBool()) } + yyj843++ + if yyhl843 { + yyb843 = yyj843 > l + } else { + yyb843 = r.CheckBreak() + } + if yyb843 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = string(r.DecodeString()) + } + yyj843++ + if yyhl843 { + yyb843 = yyj843 > l + } else { + yyb843 = r.CheckBreak() + } + if yyb843 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Group = "" + } else { + x.Group = string(r.DecodeString()) + } for { - yyj802++ - if yyhl802 { - yyb802 = yyj802 > l + yyj843++ + if yyhl843 { + yyb843 = yyj843 > l } else { - yyb802 = r.CheckBreak() + yyb843 = r.CheckBreak() } - if yyb802 { + if yyb843 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj802-1, "") + z.DecStructFieldNotFound(yyj843-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11815,34 +12426,34 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym806 := z.EncBinary() - _ = yym806 + yym849 := z.EncBinary() + _ = yym849 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep807 := !z.EncBinary() - yy2arr807 := z.EncBasicHandle().StructToArray - var yyq807 [3]bool - _, _, _ = yysep807, yyq807, yy2arr807 - const yyr807 bool = false - yyq807[2] = x.ReadOnly != false - var yynn807 int - if yyr807 || yy2arr807 { + yysep850 := !z.EncBinary() + yy2arr850 := z.EncBasicHandle().StructToArray + var yyq850 [3]bool + _, _, _ = yysep850, yyq850, yy2arr850 + const yyr850 bool = false + yyq850[2] = x.ReadOnly != false + var yynn850 int + if yyr850 || yy2arr850 { r.EncodeArrayStart(3) } else { - yynn807 = 2 - for _, b := range yyq807 { + yynn850 = 2 + for _, b := range yyq850 { if b { - yynn807++ + yynn850++ } } - r.EncodeMapStart(yynn807) - yynn807 = 0 + r.EncodeMapStart(yynn850) + yynn850 = 0 } - if yyr807 || yy2arr807 { + if yyr850 || yy2arr850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym809 := z.EncBinary() - _ = yym809 + yym852 := z.EncBinary() + _ = yym852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) @@ -11851,17 +12462,17 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("endpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym810 := z.EncBinary() - _ = yym810 + yym853 := z.EncBinary() + _ = yym853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) } } - if yyr807 || yy2arr807 { + if yyr850 || yy2arr850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym812 := z.EncBinary() - _ = yym812 + yym855 := z.EncBinary() + _ = yym855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -11870,18 +12481,18 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym813 := z.EncBinary() - _ = yym813 + yym856 := z.EncBinary() + _ = yym856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr807 || yy2arr807 { + if yyr850 || yy2arr850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq807[2] { - yym815 := z.EncBinary() - _ = yym815 + if yyq850[2] { + yym858 := z.EncBinary() + _ = yym858 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11890,19 +12501,19 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq807[2] { + if yyq850[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym816 := z.EncBinary() - _ = yym816 + yym859 := z.EncBinary() + _ = yym859 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr807 || yy2arr807 { + if yyr850 || yy2arr850 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11915,25 +12526,25 @@ func (x *GlusterfsVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym817 := z.DecBinary() - _ = yym817 + yym860 := z.DecBinary() + _ = yym860 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct818 := r.ContainerType() - if yyct818 == codecSelferValueTypeMap1234 { - yyl818 := r.ReadMapStart() - if yyl818 == 0 { + yyct861 := r.ContainerType() + if yyct861 == codecSelferValueTypeMap1234 { + yyl861 := r.ReadMapStart() + if yyl861 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl818, d) + x.codecDecodeSelfFromMap(yyl861, d) } - } else if yyct818 == codecSelferValueTypeArray1234 { - yyl818 := r.ReadArrayStart() - if yyl818 == 0 { + } else if yyct861 == codecSelferValueTypeArray1234 { + yyl861 := r.ReadArrayStart() + if yyl861 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl818, d) + x.codecDecodeSelfFromArray(yyl861, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11945,12 +12556,12 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys819Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys819Slc - var yyhl819 bool = l >= 0 - for yyj819 := 0; ; yyj819++ { - if yyhl819 { - if yyj819 >= l { + var yys862Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys862Slc + var yyhl862 bool = l >= 0 + for yyj862 := 0; ; yyj862++ { + if yyhl862 { + if yyj862 >= l { break } } else { @@ -11959,10 +12570,10 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys819Slc = r.DecodeBytes(yys819Slc, true, true) - yys819 := string(yys819Slc) + yys862Slc = r.DecodeBytes(yys862Slc, true, true) + yys862 := string(yys862Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys819 { + switch yys862 { case "endpoints": if r.TryDecodeAsNil() { x.EndpointsName = "" @@ -11982,9 +12593,9 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys819) - } // end switch yys819 - } // end for yyj819 + z.DecStructFieldNotFound(-1, yys862) + } // end switch yys862 + } // end for yyj862 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11992,16 +12603,16 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj823 int - var yyb823 bool - var yyhl823 bool = l >= 0 - yyj823++ - if yyhl823 { - yyb823 = yyj823 > l + var yyj866 int + var yyb866 bool + var yyhl866 bool = l >= 0 + yyj866++ + if yyhl866 { + yyb866 = yyj866 > l } else { - yyb823 = r.CheckBreak() + yyb866 = r.CheckBreak() } - if yyb823 { + if yyb866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12011,13 +12622,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.EndpointsName = string(r.DecodeString()) } - yyj823++ - if yyhl823 { - yyb823 = yyj823 > l + yyj866++ + if yyhl866 { + yyb866 = yyj866 > l } else { - yyb823 = r.CheckBreak() + yyb866 = r.CheckBreak() } - if yyb823 { + if yyb866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12027,13 +12638,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj823++ - if yyhl823 { - yyb823 = yyj823 > l + yyj866++ + if yyhl866 { + yyb866 = yyj866 > l } else { - yyb823 = r.CheckBreak() + yyb866 = r.CheckBreak() } - if yyb823 { + if yyb866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12044,17 +12655,17 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj823++ - if yyhl823 { - yyb823 = yyj823 > l + yyj866++ + if yyhl866 { + yyb866 = yyj866 > l } else { - yyb823 = r.CheckBreak() + yyb866 = r.CheckBreak() } - if yyb823 { + if yyb866 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj823-1, "") + z.DecStructFieldNotFound(yyj866-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12066,42 +12677,42 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym827 := z.EncBinary() - _ = yym827 + yym870 := z.EncBinary() + _ = yym870 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep828 := !z.EncBinary() - yy2arr828 := z.EncBasicHandle().StructToArray - var yyq828 [8]bool - _, _, _ = yysep828, yyq828, yy2arr828 - const yyr828 bool = false - yyq828[2] = x.FSType != "" - yyq828[3] = x.RBDPool != "" - yyq828[4] = x.RadosUser != "" - yyq828[5] = x.Keyring != "" - yyq828[6] = x.SecretRef != nil - yyq828[7] = x.ReadOnly != false - var yynn828 int - if yyr828 || yy2arr828 { + yysep871 := !z.EncBinary() + yy2arr871 := z.EncBasicHandle().StructToArray + var yyq871 [8]bool + _, _, _ = yysep871, yyq871, yy2arr871 + const yyr871 bool = false + yyq871[2] = x.FSType != "" + yyq871[3] = x.RBDPool != "" + yyq871[4] = x.RadosUser != "" + yyq871[5] = x.Keyring != "" + yyq871[6] = x.SecretRef != nil + yyq871[7] = x.ReadOnly != false + var yynn871 int + if yyr871 || yy2arr871 { r.EncodeArrayStart(8) } else { - yynn828 = 2 - for _, b := range yyq828 { + yynn871 = 2 + for _, b := range yyq871 { if b { - yynn828++ + yynn871++ } } - r.EncodeMapStart(yynn828) - yynn828 = 0 + r.EncodeMapStart(yynn871) + yynn871 = 0 } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.CephMonitors == nil { r.EncodeNil() } else { - yym830 := z.EncBinary() - _ = yym830 + yym873 := z.EncBinary() + _ = yym873 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) @@ -12114,18 +12725,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.CephMonitors == nil { r.EncodeNil() } else { - yym831 := z.EncBinary() - _ = yym831 + yym874 := z.EncBinary() + _ = yym874 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym833 := z.EncBinary() - _ = yym833 + yym876 := z.EncBinary() + _ = yym876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) @@ -12134,18 +12745,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym834 := z.EncBinary() - _ = yym834 + yym877 := z.EncBinary() + _ = yym877 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq828[2] { - yym836 := z.EncBinary() - _ = yym836 + if yyq871[2] { + yym879 := z.EncBinary() + _ = yym879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -12154,23 +12765,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq828[2] { + if yyq871[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym837 := z.EncBinary() - _ = yym837 + yym880 := z.EncBinary() + _ = yym880 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq828[3] { - yym839 := z.EncBinary() - _ = yym839 + if yyq871[3] { + yym882 := z.EncBinary() + _ = yym882 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) @@ -12179,23 +12790,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq828[3] { + if yyq871[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pool")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym840 := z.EncBinary() - _ = yym840 + yym883 := z.EncBinary() + _ = yym883 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq828[4] { - yym842 := z.EncBinary() - _ = yym842 + if yyq871[4] { + yym885 := z.EncBinary() + _ = yym885 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) @@ -12204,23 +12815,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq828[4] { + if yyq871[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym843 := z.EncBinary() - _ = yym843 + yym886 := z.EncBinary() + _ = yym886 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq828[5] { - yym845 := z.EncBinary() - _ = yym845 + if yyq871[5] { + yym888 := z.EncBinary() + _ = yym888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) @@ -12229,21 +12840,21 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq828[5] { + if yyq871[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("keyring")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym846 := z.EncBinary() - _ = yym846 + yym889 := z.EncBinary() + _ = yym889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq828[6] { + if yyq871[6] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -12253,7 +12864,7 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq828[6] { + if yyq871[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -12264,11 +12875,11 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq828[7] { - yym849 := z.EncBinary() - _ = yym849 + if yyq871[7] { + yym892 := z.EncBinary() + _ = yym892 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12277,19 +12888,19 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq828[7] { + if yyq871[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym850 := z.EncBinary() - _ = yym850 + yym893 := z.EncBinary() + _ = yym893 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr828 || yy2arr828 { + if yyr871 || yy2arr871 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12302,25 +12913,25 @@ func (x *RBDVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym851 := z.DecBinary() - _ = yym851 + yym894 := z.DecBinary() + _ = yym894 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct852 := r.ContainerType() - if yyct852 == codecSelferValueTypeMap1234 { - yyl852 := r.ReadMapStart() - if yyl852 == 0 { + yyct895 := r.ContainerType() + if yyct895 == codecSelferValueTypeMap1234 { + yyl895 := r.ReadMapStart() + if yyl895 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl852, d) + x.codecDecodeSelfFromMap(yyl895, d) } - } else if yyct852 == codecSelferValueTypeArray1234 { - yyl852 := r.ReadArrayStart() - if yyl852 == 0 { + } else if yyct895 == codecSelferValueTypeArray1234 { + yyl895 := r.ReadArrayStart() + if yyl895 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl852, d) + x.codecDecodeSelfFromArray(yyl895, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12332,12 +12943,12 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys853Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys853Slc - var yyhl853 bool = l >= 0 - for yyj853 := 0; ; yyj853++ { - if yyhl853 { - if yyj853 >= l { + var yys896Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys896Slc + var yyhl896 bool = l >= 0 + for yyj896 := 0; ; yyj896++ { + if yyhl896 { + if yyj896 >= l { break } } else { @@ -12346,20 +12957,20 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys853Slc = r.DecodeBytes(yys853Slc, true, true) - yys853 := string(yys853Slc) + yys896Slc = r.DecodeBytes(yys896Slc, true, true) + yys896 := string(yys896Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys853 { + switch yys896 { case "monitors": if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv854 := &x.CephMonitors - yym855 := z.DecBinary() - _ = yym855 + yyv897 := &x.CephMonitors + yym898 := z.DecBinary() + _ = yym898 if false { } else { - z.F.DecSliceStringX(yyv854, false, d) + z.F.DecSliceStringX(yyv897, false, d) } } case "image": @@ -12410,9 +13021,9 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys853) - } // end switch yys853 - } // end for yyj853 + z.DecStructFieldNotFound(-1, yys896) + } // end switch yys896 + } // end for yyj896 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12420,16 +13031,16 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj863 int - var yyb863 bool - var yyhl863 bool = l >= 0 - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + var yyj906 int + var yyb906 bool + var yyhl906 bool = l >= 0 + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12437,21 +13048,21 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv864 := &x.CephMonitors - yym865 := z.DecBinary() - _ = yym865 + yyv907 := &x.CephMonitors + yym908 := z.DecBinary() + _ = yym908 if false { } else { - z.F.DecSliceStringX(yyv864, false, d) + z.F.DecSliceStringX(yyv907, false, d) } } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12461,13 +13072,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDImage = string(r.DecodeString()) } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12477,13 +13088,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12493,13 +13104,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDPool = string(r.DecodeString()) } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12509,13 +13120,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RadosUser = string(r.DecodeString()) } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12525,13 +13136,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Keyring = string(r.DecodeString()) } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12546,13 +13157,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12563,17 +13174,17 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj863++ - if yyhl863 { - yyb863 = yyj863 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb863 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb863 { + if yyb906 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj863-1, "") + z.DecStructFieldNotFound(yyj906-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12585,35 +13196,35 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym873 := z.EncBinary() - _ = yym873 + yym916 := z.EncBinary() + _ = yym916 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep874 := !z.EncBinary() - yy2arr874 := z.EncBasicHandle().StructToArray - var yyq874 [3]bool - _, _, _ = yysep874, yyq874, yy2arr874 - const yyr874 bool = false - yyq874[1] = x.FSType != "" - yyq874[2] = x.ReadOnly != false - var yynn874 int - if yyr874 || yy2arr874 { + yysep917 := !z.EncBinary() + yy2arr917 := z.EncBasicHandle().StructToArray + var yyq917 [3]bool + _, _, _ = yysep917, yyq917, yy2arr917 + const yyr917 bool = false + yyq917[1] = x.FSType != "" + yyq917[2] = x.ReadOnly != false + var yynn917 int + if yyr917 || yy2arr917 { r.EncodeArrayStart(3) } else { - yynn874 = 1 - for _, b := range yyq874 { + yynn917 = 1 + for _, b := range yyq917 { if b { - yynn874++ + yynn917++ } } - r.EncodeMapStart(yynn874) - yynn874 = 0 + r.EncodeMapStart(yynn917) + yynn917 = 0 } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym876 := z.EncBinary() - _ = yym876 + yym919 := z.EncBinary() + _ = yym919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -12622,18 +13233,18 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym877 := z.EncBinary() - _ = yym877 + yym920 := z.EncBinary() + _ = yym920 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[1] { - yym879 := z.EncBinary() - _ = yym879 + if yyq917[1] { + yym922 := z.EncBinary() + _ = yym922 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -12642,23 +13253,23 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq874[1] { + if yyq917[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym880 := z.EncBinary() - _ = yym880 + yym923 := z.EncBinary() + _ = yym923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[2] { - yym882 := z.EncBinary() - _ = yym882 + if yyq917[2] { + yym925 := z.EncBinary() + _ = yym925 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12667,19 +13278,19 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq874[2] { + if yyq917[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym883 := z.EncBinary() - _ = yym883 + yym926 := z.EncBinary() + _ = yym926 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12692,25 +13303,25 @@ func (x *CinderVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym884 := z.DecBinary() - _ = yym884 + yym927 := z.DecBinary() + _ = yym927 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct885 := r.ContainerType() - if yyct885 == codecSelferValueTypeMap1234 { - yyl885 := r.ReadMapStart() - if yyl885 == 0 { + yyct928 := r.ContainerType() + if yyct928 == codecSelferValueTypeMap1234 { + yyl928 := r.ReadMapStart() + if yyl928 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl885, d) + x.codecDecodeSelfFromMap(yyl928, d) } - } else if yyct885 == codecSelferValueTypeArray1234 { - yyl885 := r.ReadArrayStart() - if yyl885 == 0 { + } else if yyct928 == codecSelferValueTypeArray1234 { + yyl928 := r.ReadArrayStart() + if yyl928 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl885, d) + x.codecDecodeSelfFromArray(yyl928, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12722,12 +13333,12 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys886Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys886Slc - var yyhl886 bool = l >= 0 - for yyj886 := 0; ; yyj886++ { - if yyhl886 { - if yyj886 >= l { + var yys929Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys929Slc + var yyhl929 bool = l >= 0 + for yyj929 := 0; ; yyj929++ { + if yyhl929 { + if yyj929 >= l { break } } else { @@ -12736,10 +13347,10 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys886Slc = r.DecodeBytes(yys886Slc, true, true) - yys886 := string(yys886Slc) + yys929Slc = r.DecodeBytes(yys929Slc, true, true) + yys929 := string(yys929Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys886 { + switch yys929 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -12759,9 +13370,9 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys886) - } // end switch yys886 - } // end for yyj886 + z.DecStructFieldNotFound(-1, yys929) + } // end switch yys929 + } // end for yyj929 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12769,16 +13380,16 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj890 int - var yyb890 bool - var yyhl890 bool = l >= 0 - yyj890++ - if yyhl890 { - yyb890 = yyj890 > l + var yyj933 int + var yyb933 bool + var yyhl933 bool = l >= 0 + yyj933++ + if yyhl933 { + yyb933 = yyj933 > l } else { - yyb890 = r.CheckBreak() + yyb933 = r.CheckBreak() } - if yyb890 { + if yyb933 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12788,13 +13399,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.VolumeID = string(r.DecodeString()) } - yyj890++ - if yyhl890 { - yyb890 = yyj890 > l + yyj933++ + if yyhl933 { + yyb933 = yyj933 > l } else { - yyb890 = r.CheckBreak() + yyb933 = r.CheckBreak() } - if yyb890 { + if yyb933 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12804,13 +13415,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.FSType = string(r.DecodeString()) } - yyj890++ - if yyhl890 { - yyb890 = yyj890 > l + yyj933++ + if yyhl933 { + yyb933 = yyj933 > l } else { - yyb890 = r.CheckBreak() + yyb933 = r.CheckBreak() } - if yyb890 { + if yyb933 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12821,17 +13432,17 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj890++ - if yyhl890 { - yyb890 = yyj890 > l + yyj933++ + if yyhl933 { + yyb933 = yyj933 > l } else { - yyb890 = r.CheckBreak() + yyb933 = r.CheckBreak() } - if yyb890 { + if yyb933 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj890-1, "") + z.DecStructFieldNotFound(yyj933-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12843,41 +13454,41 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym894 := z.EncBinary() - _ = yym894 + yym937 := z.EncBinary() + _ = yym937 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep895 := !z.EncBinary() - yy2arr895 := z.EncBasicHandle().StructToArray - var yyq895 [6]bool - _, _, _ = yysep895, yyq895, yy2arr895 - const yyr895 bool = false - yyq895[1] = x.Path != "" - yyq895[2] = x.User != "" - yyq895[3] = x.SecretFile != "" - yyq895[4] = x.SecretRef != nil - yyq895[5] = x.ReadOnly != false - var yynn895 int - if yyr895 || yy2arr895 { + yysep938 := !z.EncBinary() + yy2arr938 := z.EncBasicHandle().StructToArray + var yyq938 [6]bool + _, _, _ = yysep938, yyq938, yy2arr938 + const yyr938 bool = false + yyq938[1] = x.Path != "" + yyq938[2] = x.User != "" + yyq938[3] = x.SecretFile != "" + yyq938[4] = x.SecretRef != nil + yyq938[5] = x.ReadOnly != false + var yynn938 int + if yyr938 || yy2arr938 { r.EncodeArrayStart(6) } else { - yynn895 = 1 - for _, b := range yyq895 { + yynn938 = 1 + for _, b := range yyq938 { if b { - yynn895++ + yynn938++ } } - r.EncodeMapStart(yynn895) - yynn895 = 0 + r.EncodeMapStart(yynn938) + yynn938 = 0 } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Monitors == nil { r.EncodeNil() } else { - yym897 := z.EncBinary() - _ = yym897 + yym940 := z.EncBinary() + _ = yym940 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) @@ -12890,19 +13501,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Monitors == nil { r.EncodeNil() } else { - yym898 := z.EncBinary() - _ = yym898 + yym941 := z.EncBinary() + _ = yym941 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) } } } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq895[1] { - yym900 := z.EncBinary() - _ = yym900 + if yyq938[1] { + yym943 := z.EncBinary() + _ = yym943 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -12911,23 +13522,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq895[1] { + if yyq938[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym901 := z.EncBinary() - _ = yym901 + yym944 := z.EncBinary() + _ = yym944 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq895[2] { - yym903 := z.EncBinary() - _ = yym903 + if yyq938[2] { + yym946 := z.EncBinary() + _ = yym946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -12936,23 +13547,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq895[2] { + if yyq938[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym904 := z.EncBinary() - _ = yym904 + yym947 := z.EncBinary() + _ = yym947 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq895[3] { - yym906 := z.EncBinary() - _ = yym906 + if yyq938[3] { + yym949 := z.EncBinary() + _ = yym949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) @@ -12961,21 +13572,21 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq895[3] { + if yyq938[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym907 := z.EncBinary() - _ = yym907 + yym950 := z.EncBinary() + _ = yym950 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) } } } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq895[4] { + if yyq938[4] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -12985,7 +13596,7 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq895[4] { + if yyq938[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -12996,11 +13607,11 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq895[5] { - yym910 := z.EncBinary() - _ = yym910 + if yyq938[5] { + yym953 := z.EncBinary() + _ = yym953 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13009,19 +13620,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq895[5] { + if yyq938[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym911 := z.EncBinary() - _ = yym911 + yym954 := z.EncBinary() + _ = yym954 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr895 || yy2arr895 { + if yyr938 || yy2arr938 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13034,25 +13645,25 @@ func (x *CephFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym912 := z.DecBinary() - _ = yym912 + yym955 := z.DecBinary() + _ = yym955 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct913 := r.ContainerType() - if yyct913 == codecSelferValueTypeMap1234 { - yyl913 := r.ReadMapStart() - if yyl913 == 0 { + yyct956 := r.ContainerType() + if yyct956 == codecSelferValueTypeMap1234 { + yyl956 := r.ReadMapStart() + if yyl956 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl913, d) + x.codecDecodeSelfFromMap(yyl956, d) } - } else if yyct913 == codecSelferValueTypeArray1234 { - yyl913 := r.ReadArrayStart() - if yyl913 == 0 { + } else if yyct956 == codecSelferValueTypeArray1234 { + yyl956 := r.ReadArrayStart() + if yyl956 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl913, d) + x.codecDecodeSelfFromArray(yyl956, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13064,12 +13675,12 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys914Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys914Slc - var yyhl914 bool = l >= 0 - for yyj914 := 0; ; yyj914++ { - if yyhl914 { - if yyj914 >= l { + var yys957Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys957Slc + var yyhl957 bool = l >= 0 + for yyj957 := 0; ; yyj957++ { + if yyhl957 { + if yyj957 >= l { break } } else { @@ -13078,20 +13689,20 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys914Slc = r.DecodeBytes(yys914Slc, true, true) - yys914 := string(yys914Slc) + yys957Slc = r.DecodeBytes(yys957Slc, true, true) + yys957 := string(yys957Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys914 { + switch yys957 { case "monitors": if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv915 := &x.Monitors - yym916 := z.DecBinary() - _ = yym916 + yyv958 := &x.Monitors + yym959 := z.DecBinary() + _ = yym959 if false { } else { - z.F.DecSliceStringX(yyv915, false, d) + z.F.DecSliceStringX(yyv958, false, d) } } case "path": @@ -13130,9 +13741,9 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys914) - } // end switch yys914 - } // end for yyj914 + z.DecStructFieldNotFound(-1, yys957) + } // end switch yys957 + } // end for yyj957 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13140,16 +13751,16 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj922 int - var yyb922 bool - var yyhl922 bool = l >= 0 - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + var yyj965 int + var yyb965 bool + var yyhl965 bool = l >= 0 + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13157,21 +13768,21 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv923 := &x.Monitors - yym924 := z.DecBinary() - _ = yym924 + yyv966 := &x.Monitors + yym967 := z.DecBinary() + _ = yym967 if false { } else { - z.F.DecSliceStringX(yyv923, false, d) + z.F.DecSliceStringX(yyv966, false, d) } } - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13181,13 +13792,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Path = string(r.DecodeString()) } - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13197,13 +13808,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.User = string(r.DecodeString()) } - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13213,13 +13824,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretFile = string(r.DecodeString()) } - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13234,13 +13845,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SecretRef.CodecDecodeSelf(d) } - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13251,17 +13862,17 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj922++ - if yyhl922 { - yyb922 = yyj922 > l + yyj965++ + if yyhl965 { + yyb965 = yyj965 > l } else { - yyb922 = r.CheckBreak() + yyb965 = r.CheckBreak() } - if yyb922 { + if yyb965 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj922-1, "") + z.DecStructFieldNotFound(yyj965-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13273,33 +13884,33 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym930 := z.EncBinary() - _ = yym930 + yym973 := z.EncBinary() + _ = yym973 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep931 := !z.EncBinary() - yy2arr931 := z.EncBasicHandle().StructToArray - var yyq931 [1]bool - _, _, _ = yysep931, yyq931, yy2arr931 - const yyr931 bool = false - var yynn931 int - if yyr931 || yy2arr931 { + yysep974 := !z.EncBinary() + yy2arr974 := z.EncBasicHandle().StructToArray + var yyq974 [1]bool + _, _, _ = yysep974, yyq974, yy2arr974 + const yyr974 bool = false + var yynn974 int + if yyr974 || yy2arr974 { r.EncodeArrayStart(1) } else { - yynn931 = 1 - for _, b := range yyq931 { + yynn974 = 1 + for _, b := range yyq974 { if b { - yynn931++ + yynn974++ } } - r.EncodeMapStart(yynn931) - yynn931 = 0 + r.EncodeMapStart(yynn974) + yynn974 = 0 } - if yyr931 || yy2arr931 { + if yyr974 || yy2arr974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym933 := z.EncBinary() - _ = yym933 + yym976 := z.EncBinary() + _ = yym976 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) @@ -13308,14 +13919,14 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("datasetName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym934 := z.EncBinary() - _ = yym934 + yym977 := z.EncBinary() + _ = yym977 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) } } - if yyr931 || yy2arr931 { + if yyr974 || yy2arr974 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13328,25 +13939,25 @@ func (x *FlockerVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym935 := z.DecBinary() - _ = yym935 + yym978 := z.DecBinary() + _ = yym978 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct936 := r.ContainerType() - if yyct936 == codecSelferValueTypeMap1234 { - yyl936 := r.ReadMapStart() - if yyl936 == 0 { + yyct979 := r.ContainerType() + if yyct979 == codecSelferValueTypeMap1234 { + yyl979 := r.ReadMapStart() + if yyl979 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl936, d) + x.codecDecodeSelfFromMap(yyl979, d) } - } else if yyct936 == codecSelferValueTypeArray1234 { - yyl936 := r.ReadArrayStart() - if yyl936 == 0 { + } else if yyct979 == codecSelferValueTypeArray1234 { + yyl979 := r.ReadArrayStart() + if yyl979 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl936, d) + x.codecDecodeSelfFromArray(yyl979, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13358,12 +13969,12 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys937Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys937Slc - var yyhl937 bool = l >= 0 - for yyj937 := 0; ; yyj937++ { - if yyhl937 { - if yyj937 >= l { + var yys980Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys980Slc + var yyhl980 bool = l >= 0 + for yyj980 := 0; ; yyj980++ { + if yyhl980 { + if yyj980 >= l { break } } else { @@ -13372,10 +13983,10 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys937Slc = r.DecodeBytes(yys937Slc, true, true) - yys937 := string(yys937Slc) + yys980Slc = r.DecodeBytes(yys980Slc, true, true) + yys980 := string(yys980Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys937 { + switch yys980 { case "datasetName": if r.TryDecodeAsNil() { x.DatasetName = "" @@ -13383,9 +13994,9 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.DatasetName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys937) - } // end switch yys937 - } // end for yyj937 + z.DecStructFieldNotFound(-1, yys980) + } // end switch yys980 + } // end for yyj980 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13393,16 +14004,16 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj939 int - var yyb939 bool - var yyhl939 bool = l >= 0 - yyj939++ - if yyhl939 { - yyb939 = yyj939 > l + var yyj982 int + var yyb982 bool + var yyhl982 bool = l >= 0 + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb939 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb939 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13413,17 +14024,17 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.DatasetName = string(r.DecodeString()) } for { - yyj939++ - if yyhl939 { - yyb939 = yyj939 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb939 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb939 { + if yyb982 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj939-1, "") + z.DecStructFieldNotFound(yyj982-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13435,39 +14046,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym941 := z.EncBinary() - _ = yym941 + yym984 := z.EncBinary() + _ = yym984 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep942 := !z.EncBinary() - yy2arr942 := z.EncBasicHandle().StructToArray - var yyq942 [2]bool - _, _, _ = yysep942, yyq942, yy2arr942 - const yyr942 bool = false - yyq942[0] = len(x.Items) != 0 - yyq942[1] = x.DefaultMode != nil - var yynn942 int - if yyr942 || yy2arr942 { + yysep985 := !z.EncBinary() + yy2arr985 := z.EncBasicHandle().StructToArray + var yyq985 [2]bool + _, _, _ = yysep985, yyq985, yy2arr985 + const yyr985 bool = false + yyq985[0] = len(x.Items) != 0 + yyq985[1] = x.DefaultMode != nil + var yynn985 int + if yyr985 || yy2arr985 { r.EncodeArrayStart(2) } else { - yynn942 = 0 - for _, b := range yyq942 { + yynn985 = 0 + for _, b := range yyq985 { if b { - yynn942++ + yynn985++ } } - r.EncodeMapStart(yynn942) - yynn942 = 0 + r.EncodeMapStart(yynn985) + yynn985 = 0 } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq942[0] { + if yyq985[0] { if x.Items == nil { r.EncodeNil() } else { - yym944 := z.EncBinary() - _ = yym944 + yym987 := z.EncBinary() + _ = yym987 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -13477,15 +14088,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq942[0] { + if yyq985[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym945 := z.EncBinary() - _ = yym945 + yym988 := z.EncBinary() + _ = yym988 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -13493,42 +14104,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq942[1] { + if yyq985[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy947 := *x.DefaultMode - yym948 := z.EncBinary() - _ = yym948 + yy990 := *x.DefaultMode + yym991 := z.EncBinary() + _ = yym991 if false { } else { - r.EncodeInt(int64(yy947)) + r.EncodeInt(int64(yy990)) } } } else { r.EncodeNil() } } else { - if yyq942[1] { + if yyq985[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy949 := *x.DefaultMode - yym950 := z.EncBinary() - _ = yym950 + yy992 := *x.DefaultMode + yym993 := z.EncBinary() + _ = yym993 if false { } else { - r.EncodeInt(int64(yy949)) + r.EncodeInt(int64(yy992)) } } } } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13541,25 +14152,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym951 := z.DecBinary() - _ = yym951 + yym994 := z.DecBinary() + _ = yym994 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct952 := r.ContainerType() - if yyct952 == codecSelferValueTypeMap1234 { - yyl952 := r.ReadMapStart() - if yyl952 == 0 { + yyct995 := r.ContainerType() + if yyct995 == codecSelferValueTypeMap1234 { + yyl995 := r.ReadMapStart() + if yyl995 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl952, d) + x.codecDecodeSelfFromMap(yyl995, d) } - } else if yyct952 == codecSelferValueTypeArray1234 { - yyl952 := r.ReadArrayStart() - if yyl952 == 0 { + } else if yyct995 == codecSelferValueTypeArray1234 { + yyl995 := r.ReadArrayStart() + if yyl995 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl952, d) + x.codecDecodeSelfFromArray(yyl995, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13571,12 +14182,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys953Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys953Slc - var yyhl953 bool = l >= 0 - for yyj953 := 0; ; yyj953++ { - if yyhl953 { - if yyj953 >= l { + var yys996Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys996Slc + var yyhl996 bool = l >= 0 + for yyj996 := 0; ; yyj996++ { + if yyhl996 { + if yyj996 >= l { break } } else { @@ -13585,20 +14196,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys953Slc = r.DecodeBytes(yys953Slc, true, true) - yys953 := string(yys953Slc) + yys996Slc = r.DecodeBytes(yys996Slc, true, true) + yys996 := string(yys996Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys953 { + switch yys996 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv954 := &x.Items - yym955 := z.DecBinary() - _ = yym955 + yyv997 := &x.Items + yym998 := z.DecBinary() + _ = yym998 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv954), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv997), d) } } case "defaultMode": @@ -13610,17 +14221,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym957 := z.DecBinary() - _ = yym957 + yym1000 := z.DecBinary() + _ = yym1000 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys953) - } // end switch yys953 - } // end for yyj953 + z.DecStructFieldNotFound(-1, yys996) + } // end switch yys996 + } // end for yyj996 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13628,16 +14239,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj958 int - var yyb958 bool - var yyhl958 bool = l >= 0 - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + var yyj1001 int + var yyb1001 bool + var yyhl1001 bool = l >= 0 + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13645,21 +14256,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv959 := &x.Items - yym960 := z.DecBinary() - _ = yym960 + yyv1002 := &x.Items + yym1003 := z.DecBinary() + _ = yym1003 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv959), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv1002), d) } } - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13672,25 +14283,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym962 := z.DecBinary() - _ = yym962 + yym1005 := z.DecBinary() + _ = yym1005 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj958-1, "") + z.DecStructFieldNotFound(yyj1001-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13702,36 +14313,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym963 := z.EncBinary() - _ = yym963 + yym1006 := z.EncBinary() + _ = yym1006 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep964 := !z.EncBinary() - yy2arr964 := z.EncBasicHandle().StructToArray - var yyq964 [4]bool - _, _, _ = yysep964, yyq964, yy2arr964 - const yyr964 bool = false - yyq964[1] = x.FieldRef != nil - yyq964[2] = x.ResourceFieldRef != nil - yyq964[3] = x.Mode != nil - var yynn964 int - if yyr964 || yy2arr964 { + yysep1007 := !z.EncBinary() + yy2arr1007 := z.EncBasicHandle().StructToArray + var yyq1007 [4]bool + _, _, _ = yysep1007, yyq1007, yy2arr1007 + const yyr1007 bool = false + yyq1007[1] = x.FieldRef != nil + yyq1007[2] = x.ResourceFieldRef != nil + yyq1007[3] = x.Mode != nil + var yynn1007 int + if yyr1007 || yy2arr1007 { r.EncodeArrayStart(4) } else { - yynn964 = 1 - for _, b := range yyq964 { + yynn1007 = 1 + for _, b := range yyq1007 { if b { - yynn964++ + yynn1007++ } } - r.EncodeMapStart(yynn964) - yynn964 = 0 + r.EncodeMapStart(yynn1007) + yynn1007 = 0 } - if yyr964 || yy2arr964 { + if yyr1007 || yy2arr1007 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym966 := z.EncBinary() - _ = yym966 + yym1009 := z.EncBinary() + _ = yym1009 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -13740,16 +14351,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym967 := z.EncBinary() - _ = yym967 + yym1010 := z.EncBinary() + _ = yym1010 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr964 || yy2arr964 { + if yyr1007 || yy2arr1007 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq964[1] { + if yyq1007[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -13759,7 +14370,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq964[1] { + if yyq1007[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -13770,9 +14381,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr964 || yy2arr964 { + if yyr1007 || yy2arr1007 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq964[2] { + if yyq1007[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -13782,7 +14393,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq964[2] { + if yyq1007[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -13793,42 +14404,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr964 || yy2arr964 { + if yyr1007 || yy2arr1007 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq964[3] { + if yyq1007[3] { if x.Mode == nil { r.EncodeNil() } else { - yy971 := *x.Mode - yym972 := z.EncBinary() - _ = yym972 + yy1014 := *x.Mode + yym1015 := z.EncBinary() + _ = yym1015 if false { } else { - r.EncodeInt(int64(yy971)) + r.EncodeInt(int64(yy1014)) } } } else { r.EncodeNil() } } else { - if yyq964[3] { + if yyq1007[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy973 := *x.Mode - yym974 := z.EncBinary() - _ = yym974 + yy1016 := *x.Mode + yym1017 := z.EncBinary() + _ = yym1017 if false { } else { - r.EncodeInt(int64(yy973)) + r.EncodeInt(int64(yy1016)) } } } } - if yyr964 || yy2arr964 { + if yyr1007 || yy2arr1007 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13841,25 +14452,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym975 := z.DecBinary() - _ = yym975 + yym1018 := z.DecBinary() + _ = yym1018 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct976 := r.ContainerType() - if yyct976 == codecSelferValueTypeMap1234 { - yyl976 := r.ReadMapStart() - if yyl976 == 0 { + yyct1019 := r.ContainerType() + if yyct1019 == codecSelferValueTypeMap1234 { + yyl1019 := r.ReadMapStart() + if yyl1019 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl976, d) + x.codecDecodeSelfFromMap(yyl1019, d) } - } else if yyct976 == codecSelferValueTypeArray1234 { - yyl976 := r.ReadArrayStart() - if yyl976 == 0 { + } else if yyct1019 == codecSelferValueTypeArray1234 { + yyl1019 := r.ReadArrayStart() + if yyl1019 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl976, d) + x.codecDecodeSelfFromArray(yyl1019, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13871,12 +14482,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys977Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys977Slc - var yyhl977 bool = l >= 0 - for yyj977 := 0; ; yyj977++ { - if yyhl977 { - if yyj977 >= l { + var yys1020Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1020Slc + var yyhl1020 bool = l >= 0 + for yyj1020 := 0; ; yyj1020++ { + if yyhl1020 { + if yyj1020 >= l { break } } else { @@ -13885,10 +14496,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys977Slc = r.DecodeBytes(yys977Slc, true, true) - yys977 := string(yys977Slc) + yys1020Slc = r.DecodeBytes(yys1020Slc, true, true) + yys1020 := string(yys1020Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys977 { + switch yys1020 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -13926,17 +14537,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym982 := z.DecBinary() - _ = yym982 + yym1025 := z.DecBinary() + _ = yym1025 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys977) - } // end switch yys977 - } // end for yyj977 + z.DecStructFieldNotFound(-1, yys1020) + } // end switch yys1020 + } // end for yyj1020 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13944,16 +14555,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj983 int - var yyb983 bool - var yyhl983 bool = l >= 0 - yyj983++ - if yyhl983 { - yyb983 = yyj983 > l + var yyj1026 int + var yyb1026 bool + var yyhl1026 bool = l >= 0 + yyj1026++ + if yyhl1026 { + yyb1026 = yyj1026 > l } else { - yyb983 = r.CheckBreak() + yyb1026 = r.CheckBreak() } - if yyb983 { + if yyb1026 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13963,13 +14574,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj983++ - if yyhl983 { - yyb983 = yyj983 > l + yyj1026++ + if yyhl1026 { + yyb1026 = yyj1026 > l } else { - yyb983 = r.CheckBreak() + yyb1026 = r.CheckBreak() } - if yyb983 { + if yyb1026 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13984,13 +14595,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj983++ - if yyhl983 { - yyb983 = yyj983 > l + yyj1026++ + if yyhl1026 { + yyb1026 = yyj1026 > l } else { - yyb983 = r.CheckBreak() + yyb1026 = r.CheckBreak() } - if yyb983 { + if yyb1026 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14005,13 +14616,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj983++ - if yyhl983 { - yyb983 = yyj983 > l + yyj1026++ + if yyhl1026 { + yyb1026 = yyj1026 > l } else { - yyb983 = r.CheckBreak() + yyb1026 = r.CheckBreak() } - if yyb983 { + if yyb1026 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14024,25 +14635,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym988 := z.DecBinary() - _ = yym988 + yym1031 := z.DecBinary() + _ = yym1031 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj983++ - if yyhl983 { - yyb983 = yyj983 > l + yyj1026++ + if yyhl1026 { + yyb1026 = yyj1026 > l } else { - yyb983 = r.CheckBreak() + yyb1026 = r.CheckBreak() } - if yyb983 { + if yyb1026 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj983-1, "") + z.DecStructFieldNotFound(yyj1026-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14054,34 +14665,34 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym989 := z.EncBinary() - _ = yym989 + yym1032 := z.EncBinary() + _ = yym1032 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep990 := !z.EncBinary() - yy2arr990 := z.EncBasicHandle().StructToArray - var yyq990 [3]bool - _, _, _ = yysep990, yyq990, yy2arr990 - const yyr990 bool = false - yyq990[2] = x.ReadOnly != false - var yynn990 int - if yyr990 || yy2arr990 { + yysep1033 := !z.EncBinary() + yy2arr1033 := z.EncBasicHandle().StructToArray + var yyq1033 [3]bool + _, _, _ = yysep1033, yyq1033, yy2arr1033 + const yyr1033 bool = false + yyq1033[2] = x.ReadOnly != false + var yynn1033 int + if yyr1033 || yy2arr1033 { r.EncodeArrayStart(3) } else { - yynn990 = 2 - for _, b := range yyq990 { + yynn1033 = 2 + for _, b := range yyq1033 { if b { - yynn990++ + yynn1033++ } } - r.EncodeMapStart(yynn990) - yynn990 = 0 + r.EncodeMapStart(yynn1033) + yynn1033 = 0 } - if yyr990 || yy2arr990 { + if yyr1033 || yy2arr1033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym992 := z.EncBinary() - _ = yym992 + yym1035 := z.EncBinary() + _ = yym1035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -14090,17 +14701,17 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym993 := z.EncBinary() - _ = yym993 + yym1036 := z.EncBinary() + _ = yym1036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } - if yyr990 || yy2arr990 { + if yyr1033 || yy2arr1033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym995 := z.EncBinary() - _ = yym995 + yym1038 := z.EncBinary() + _ = yym1038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) @@ -14109,18 +14720,18 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("shareName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym996 := z.EncBinary() - _ = yym996 + yym1039 := z.EncBinary() + _ = yym1039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) } } - if yyr990 || yy2arr990 { + if yyr1033 || yy2arr1033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq990[2] { - yym998 := z.EncBinary() - _ = yym998 + if yyq1033[2] { + yym1041 := z.EncBinary() + _ = yym1041 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -14129,19 +14740,19 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq990[2] { + if yyq1033[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym999 := z.EncBinary() - _ = yym999 + yym1042 := z.EncBinary() + _ = yym1042 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr990 || yy2arr990 { + if yyr1033 || yy2arr1033 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14154,25 +14765,25 @@ func (x *AzureFileVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1000 := z.DecBinary() - _ = yym1000 + yym1043 := z.DecBinary() + _ = yym1043 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1001 := r.ContainerType() - if yyct1001 == codecSelferValueTypeMap1234 { - yyl1001 := r.ReadMapStart() - if yyl1001 == 0 { + yyct1044 := r.ContainerType() + if yyct1044 == codecSelferValueTypeMap1234 { + yyl1044 := r.ReadMapStart() + if yyl1044 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1001, d) + x.codecDecodeSelfFromMap(yyl1044, d) } - } else if yyct1001 == codecSelferValueTypeArray1234 { - yyl1001 := r.ReadArrayStart() - if yyl1001 == 0 { + } else if yyct1044 == codecSelferValueTypeArray1234 { + yyl1044 := r.ReadArrayStart() + if yyl1044 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1001, d) + x.codecDecodeSelfFromArray(yyl1044, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14184,12 +14795,12 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1002Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1002Slc - var yyhl1002 bool = l >= 0 - for yyj1002 := 0; ; yyj1002++ { - if yyhl1002 { - if yyj1002 >= l { + 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 { @@ -14198,10 +14809,10 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1002Slc = r.DecodeBytes(yys1002Slc, true, true) - yys1002 := string(yys1002Slc) + yys1045Slc = r.DecodeBytes(yys1045Slc, true, true) + yys1045 := string(yys1045Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1002 { + switch yys1045 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -14221,9 +14832,9 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1002) - } // end switch yys1002 - } // end for yyj1002 + z.DecStructFieldNotFound(-1, yys1045) + } // end switch yys1045 + } // end for yyj1045 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14231,16 +14842,16 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1006 int - var yyb1006 bool - var yyhl1006 bool = l >= 0 - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + var yyj1049 int + var yyb1049 bool + var yyhl1049 bool = l >= 0 + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1006 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1006 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14250,13 +14861,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.SecretName = string(r.DecodeString()) } - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1006 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1006 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14266,13 +14877,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ShareName = string(r.DecodeString()) } - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1006 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1006 { + if yyb1049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14283,17 +14894,17 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1049++ + if yyhl1049 { + yyb1049 = yyj1049 > l } else { - yyb1006 = r.CheckBreak() + yyb1049 = r.CheckBreak() } - if yyb1006 { + if yyb1049 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1006-1, "") + z.DecStructFieldNotFound(yyj1049-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14305,34 +14916,34 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1010 := z.EncBinary() - _ = yym1010 + yym1053 := z.EncBinary() + _ = yym1053 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1011 := !z.EncBinary() - yy2arr1011 := z.EncBasicHandle().StructToArray - var yyq1011 [2]bool - _, _, _ = yysep1011, yyq1011, yy2arr1011 - const yyr1011 bool = false - yyq1011[1] = x.FSType != "" - var yynn1011 int - if yyr1011 || yy2arr1011 { + yysep1054 := !z.EncBinary() + yy2arr1054 := z.EncBasicHandle().StructToArray + var yyq1054 [2]bool + _, _, _ = yysep1054, yyq1054, yy2arr1054 + const yyr1054 bool = false + yyq1054[1] = x.FSType != "" + var yynn1054 int + if yyr1054 || yy2arr1054 { r.EncodeArrayStart(2) } else { - yynn1011 = 1 - for _, b := range yyq1011 { + yynn1054 = 1 + for _, b := range yyq1054 { if b { - yynn1011++ + yynn1054++ } } - r.EncodeMapStart(yynn1011) - yynn1011 = 0 + r.EncodeMapStart(yynn1054) + yynn1054 = 0 } - if yyr1011 || yy2arr1011 { + if yyr1054 || yy2arr1054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1013 := z.EncBinary() - _ = yym1013 + yym1056 := z.EncBinary() + _ = yym1056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) @@ -14341,18 +14952,18 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1014 := z.EncBinary() - _ = yym1014 + yym1057 := z.EncBinary() + _ = yym1057 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) } } - if yyr1011 || yy2arr1011 { + if yyr1054 || yy2arr1054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1011[1] { - yym1016 := z.EncBinary() - _ = yym1016 + if yyq1054[1] { + yym1059 := z.EncBinary() + _ = yym1059 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -14361,19 +14972,19 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1011[1] { + if yyq1054[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1017 := z.EncBinary() - _ = yym1017 + yym1060 := z.EncBinary() + _ = yym1060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr1011 || yy2arr1011 { + if yyr1054 || yy2arr1054 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14386,25 +14997,25 @@ func (x *VsphereVirtualDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1018 := z.DecBinary() - _ = yym1018 + yym1061 := z.DecBinary() + _ = yym1061 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1019 := r.ContainerType() - if yyct1019 == codecSelferValueTypeMap1234 { - yyl1019 := r.ReadMapStart() - if yyl1019 == 0 { + yyct1062 := r.ContainerType() + if yyct1062 == codecSelferValueTypeMap1234 { + yyl1062 := r.ReadMapStart() + if yyl1062 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1019, d) + x.codecDecodeSelfFromMap(yyl1062, d) } - } else if yyct1019 == codecSelferValueTypeArray1234 { - yyl1019 := r.ReadArrayStart() - if yyl1019 == 0 { + } else if yyct1062 == codecSelferValueTypeArray1234 { + yyl1062 := r.ReadArrayStart() + if yyl1062 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1019, d) + x.codecDecodeSelfFromArray(yyl1062, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14416,12 +15027,12 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1020Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1020Slc - var yyhl1020 bool = l >= 0 - for yyj1020 := 0; ; yyj1020++ { - if yyhl1020 { - if yyj1020 >= l { + var yys1063Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1063Slc + var yyhl1063 bool = l >= 0 + for yyj1063 := 0; ; yyj1063++ { + if yyhl1063 { + if yyj1063 >= l { break } } else { @@ -14430,10 +15041,10 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1020Slc = r.DecodeBytes(yys1020Slc, true, true) - yys1020 := string(yys1020Slc) + yys1063Slc = r.DecodeBytes(yys1063Slc, true, true) + yys1063 := string(yys1063Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1020 { + switch yys1063 { case "volumePath": if r.TryDecodeAsNil() { x.VolumePath = "" @@ -14447,9 +15058,9 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 x.FSType = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1020) - } // end switch yys1020 - } // end for yyj1020 + z.DecStructFieldNotFound(-1, yys1063) + } // end switch yys1063 + } // end for yyj1063 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14457,16 +15068,16 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1023 int - var yyb1023 bool - var yyhl1023 bool = l >= 0 - yyj1023++ - if yyhl1023 { - yyb1023 = yyj1023 > l + var yyj1066 int + var yyb1066 bool + var yyhl1066 bool = l >= 0 + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1023 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1023 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14476,13 +15087,13 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code } else { x.VolumePath = string(r.DecodeString()) } - yyj1023++ - if yyhl1023 { - yyb1023 = yyj1023 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1023 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1023 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14493,17 +15104,17 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code x.FSType = string(r.DecodeString()) } for { - yyj1023++ - if yyhl1023 { - yyb1023 = yyj1023 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1023 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1023 { + if yyb1066 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1023-1, "") + z.DecStructFieldNotFound(yyj1066-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14515,35 +15126,35 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1026 := z.EncBinary() - _ = yym1026 + yym1069 := z.EncBinary() + _ = yym1069 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1027 := !z.EncBinary() - yy2arr1027 := z.EncBasicHandle().StructToArray - var yyq1027 [3]bool - _, _, _ = yysep1027, yyq1027, yy2arr1027 - const yyr1027 bool = false - yyq1027[1] = len(x.Items) != 0 - yyq1027[2] = x.DefaultMode != nil - var yynn1027 int - if yyr1027 || yy2arr1027 { + yysep1070 := !z.EncBinary() + yy2arr1070 := z.EncBasicHandle().StructToArray + var yyq1070 [3]bool + _, _, _ = yysep1070, yyq1070, yy2arr1070 + const yyr1070 bool = false + yyq1070[1] = len(x.Items) != 0 + yyq1070[2] = x.DefaultMode != nil + var yynn1070 int + if yyr1070 || yy2arr1070 { r.EncodeArrayStart(3) } else { - yynn1027 = 1 - for _, b := range yyq1027 { + yynn1070 = 1 + for _, b := range yyq1070 { if b { - yynn1027++ + yynn1070++ } } - r.EncodeMapStart(yynn1027) - yynn1027 = 0 + r.EncodeMapStart(yynn1070) + yynn1070 = 0 } - if yyr1027 || yy2arr1027 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1029 := z.EncBinary() - _ = yym1029 + yym1072 := z.EncBinary() + _ = yym1072 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -14552,21 +15163,21 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1030 := z.EncBinary() - _ = yym1030 + yym1073 := z.EncBinary() + _ = yym1073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1027 || yy2arr1027 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1027[1] { + if yyq1070[1] { if x.Items == nil { r.EncodeNil() } else { - yym1032 := z.EncBinary() - _ = yym1032 + yym1075 := z.EncBinary() + _ = yym1075 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -14576,15 +15187,15 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1027[1] { + if yyq1070[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym1033 := z.EncBinary() - _ = yym1033 + yym1076 := z.EncBinary() + _ = yym1076 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -14592,42 +15203,42 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1027 || yy2arr1027 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1027[2] { + if yyq1070[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy1035 := *x.DefaultMode - yym1036 := z.EncBinary() - _ = yym1036 + yy1078 := *x.DefaultMode + yym1079 := z.EncBinary() + _ = yym1079 if false { } else { - r.EncodeInt(int64(yy1035)) + r.EncodeInt(int64(yy1078)) } } } else { r.EncodeNil() } } else { - if yyq1027[2] { + if yyq1070[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy1037 := *x.DefaultMode - yym1038 := z.EncBinary() - _ = yym1038 + yy1080 := *x.DefaultMode + yym1081 := z.EncBinary() + _ = yym1081 if false { } else { - r.EncodeInt(int64(yy1037)) + r.EncodeInt(int64(yy1080)) } } } } - if yyr1027 || yy2arr1027 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14640,25 +15251,25 @@ func (x *ConfigMapVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1039 := z.DecBinary() - _ = yym1039 + yym1082 := z.DecBinary() + _ = yym1082 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1040 := r.ContainerType() - if yyct1040 == codecSelferValueTypeMap1234 { - yyl1040 := r.ReadMapStart() - if yyl1040 == 0 { + yyct1083 := r.ContainerType() + if yyct1083 == codecSelferValueTypeMap1234 { + yyl1083 := r.ReadMapStart() + if yyl1083 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1040, d) + x.codecDecodeSelfFromMap(yyl1083, d) } - } else if yyct1040 == codecSelferValueTypeArray1234 { - yyl1040 := r.ReadArrayStart() - if yyl1040 == 0 { + } else if yyct1083 == codecSelferValueTypeArray1234 { + yyl1083 := r.ReadArrayStart() + if yyl1083 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1040, d) + x.codecDecodeSelfFromArray(yyl1083, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14670,12 +15281,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1041Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1041Slc - var yyhl1041 bool = l >= 0 - for yyj1041 := 0; ; yyj1041++ { - if yyhl1041 { - if yyj1041 >= l { + var yys1084Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1084Slc + var yyhl1084 bool = l >= 0 + for yyj1084 := 0; ; yyj1084++ { + if yyhl1084 { + if yyj1084 >= l { break } } else { @@ -14684,10 +15295,10 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1041Slc = r.DecodeBytes(yys1041Slc, true, true) - yys1041 := string(yys1041Slc) + yys1084Slc = r.DecodeBytes(yys1084Slc, true, true) + yys1084 := string(yys1084Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1041 { + switch yys1084 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -14698,12 +15309,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1043 := &x.Items - yym1044 := z.DecBinary() - _ = yym1044 + yyv1086 := &x.Items + yym1087 := z.DecBinary() + _ = yym1087 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1043), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1086), d) } } case "defaultMode": @@ -14715,17 +15326,17 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1046 := z.DecBinary() - _ = yym1046 + yym1089 := z.DecBinary() + _ = yym1089 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1041) - } // end switch yys1041 - } // end for yyj1041 + z.DecStructFieldNotFound(-1, yys1084) + } // end switch yys1084 + } // end for yyj1084 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14733,16 +15344,16 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1047 int - var yyb1047 bool - var yyhl1047 bool = l >= 0 - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + var yyj1090 int + var yyb1090 bool + var yyhl1090 bool = l >= 0 + yyj1090++ + if yyhl1090 { + yyb1090 = yyj1090 > l } else { - yyb1047 = r.CheckBreak() + yyb1090 = r.CheckBreak() } - if yyb1047 { + if yyb1090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14752,13 +15363,13 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Name = string(r.DecodeString()) } - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1090++ + if yyhl1090 { + yyb1090 = yyj1090 > l } else { - yyb1047 = r.CheckBreak() + yyb1090 = r.CheckBreak() } - if yyb1047 { + if yyb1090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14766,21 +15377,21 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1049 := &x.Items - yym1050 := z.DecBinary() - _ = yym1050 + yyv1092 := &x.Items + yym1093 := z.DecBinary() + _ = yym1093 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1049), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1092), d) } } - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1090++ + if yyhl1090 { + yyb1090 = yyj1090 > l } else { - yyb1047 = r.CheckBreak() + yyb1090 = r.CheckBreak() } - if yyb1047 { + if yyb1090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14793,25 +15404,25 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1052 := z.DecBinary() - _ = yym1052 + yym1095 := z.DecBinary() + _ = yym1095 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1090++ + if yyhl1090 { + yyb1090 = yyj1090 > l } else { - yyb1047 = r.CheckBreak() + yyb1090 = r.CheckBreak() } - if yyb1047 { + if yyb1090 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1047-1, "") + z.DecStructFieldNotFound(yyj1090-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14823,34 +15434,34 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1053 := z.EncBinary() - _ = yym1053 + yym1096 := z.EncBinary() + _ = yym1096 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1054 := !z.EncBinary() - yy2arr1054 := z.EncBasicHandle().StructToArray - var yyq1054 [3]bool - _, _, _ = yysep1054, yyq1054, yy2arr1054 - const yyr1054 bool = false - yyq1054[2] = x.Mode != nil - var yynn1054 int - if yyr1054 || yy2arr1054 { + yysep1097 := !z.EncBinary() + yy2arr1097 := z.EncBasicHandle().StructToArray + var yyq1097 [3]bool + _, _, _ = yysep1097, yyq1097, yy2arr1097 + const yyr1097 bool = false + yyq1097[2] = x.Mode != nil + var yynn1097 int + if yyr1097 || yy2arr1097 { r.EncodeArrayStart(3) } else { - yynn1054 = 2 - for _, b := range yyq1054 { + yynn1097 = 2 + for _, b := range yyq1097 { if b { - yynn1054++ + yynn1097++ } } - r.EncodeMapStart(yynn1054) - yynn1054 = 0 + r.EncodeMapStart(yynn1097) + yynn1097 = 0 } - if yyr1054 || yy2arr1054 { + if yyr1097 || yy2arr1097 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1056 := z.EncBinary() - _ = yym1056 + yym1099 := z.EncBinary() + _ = yym1099 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -14859,17 +15470,17 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1057 := z.EncBinary() - _ = yym1057 + yym1100 := z.EncBinary() + _ = yym1100 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1054 || yy2arr1054 { + if yyr1097 || yy2arr1097 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1059 := z.EncBinary() - _ = yym1059 + yym1102 := z.EncBinary() + _ = yym1102 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -14878,49 +15489,49 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1060 := z.EncBinary() - _ = yym1060 + yym1103 := z.EncBinary() + _ = yym1103 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr1054 || yy2arr1054 { + if yyr1097 || yy2arr1097 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1054[2] { + if yyq1097[2] { if x.Mode == nil { r.EncodeNil() } else { - yy1062 := *x.Mode - yym1063 := z.EncBinary() - _ = yym1063 + yy1105 := *x.Mode + yym1106 := z.EncBinary() + _ = yym1106 if false { } else { - r.EncodeInt(int64(yy1062)) + r.EncodeInt(int64(yy1105)) } } } else { r.EncodeNil() } } else { - if yyq1054[2] { + if yyq1097[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy1064 := *x.Mode - yym1065 := z.EncBinary() - _ = yym1065 + yy1107 := *x.Mode + yym1108 := z.EncBinary() + _ = yym1108 if false { } else { - r.EncodeInt(int64(yy1064)) + r.EncodeInt(int64(yy1107)) } } } } - if yyr1054 || yy2arr1054 { + if yyr1097 || yy2arr1097 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14933,25 +15544,25 @@ func (x *KeyToPath) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1066 := z.DecBinary() - _ = yym1066 + yym1109 := z.DecBinary() + _ = yym1109 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1067 := r.ContainerType() - if yyct1067 == codecSelferValueTypeMap1234 { - yyl1067 := r.ReadMapStart() - if yyl1067 == 0 { + yyct1110 := r.ContainerType() + if yyct1110 == codecSelferValueTypeMap1234 { + yyl1110 := r.ReadMapStart() + if yyl1110 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1067, d) + x.codecDecodeSelfFromMap(yyl1110, d) } - } else if yyct1067 == codecSelferValueTypeArray1234 { - yyl1067 := r.ReadArrayStart() - if yyl1067 == 0 { + } else if yyct1110 == codecSelferValueTypeArray1234 { + yyl1110 := r.ReadArrayStart() + if yyl1110 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1067, d) + x.codecDecodeSelfFromArray(yyl1110, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14963,12 +15574,12 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1068Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1068Slc - var yyhl1068 bool = l >= 0 - for yyj1068 := 0; ; yyj1068++ { - if yyhl1068 { - if yyj1068 >= l { + var yys1111Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1111Slc + var yyhl1111 bool = l >= 0 + for yyj1111 := 0; ; yyj1111++ { + if yyhl1111 { + if yyj1111 >= l { break } } else { @@ -14977,10 +15588,10 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1068Slc = r.DecodeBytes(yys1068Slc, true, true) - yys1068 := string(yys1068Slc) + yys1111Slc = r.DecodeBytes(yys1111Slc, true, true) + yys1111 := string(yys1111Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1068 { + switch yys1111 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -15002,17 +15613,17 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1072 := z.DecBinary() - _ = yym1072 + yym1115 := z.DecBinary() + _ = yym1115 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1068) - } // end switch yys1068 - } // end for yyj1068 + z.DecStructFieldNotFound(-1, yys1111) + } // end switch yys1111 + } // end for yyj1111 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15020,16 +15631,16 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1073 int - var yyb1073 bool - var yyhl1073 bool = l >= 0 - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + var yyj1116 int + var yyb1116 bool + var yyhl1116 bool = l >= 0 + yyj1116++ + if yyhl1116 { + yyb1116 = yyj1116 > l } else { - yyb1073 = r.CheckBreak() + yyb1116 = r.CheckBreak() } - if yyb1073 { + if yyb1116 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15039,13 +15650,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + yyj1116++ + if yyhl1116 { + yyb1116 = yyj1116 > l } else { - yyb1073 = r.CheckBreak() + yyb1116 = r.CheckBreak() } - if yyb1073 { + if yyb1116 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15055,13 +15666,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + yyj1116++ + if yyhl1116 { + yyb1116 = yyj1116 > l } else { - yyb1073 = r.CheckBreak() + yyb1116 = r.CheckBreak() } - if yyb1073 { + if yyb1116 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15074,25 +15685,25 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1077 := z.DecBinary() - _ = yym1077 + yym1120 := z.DecBinary() + _ = yym1120 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + yyj1116++ + if yyhl1116 { + yyb1116 = yyj1116 > l } else { - yyb1073 = r.CheckBreak() + yyb1116 = r.CheckBreak() } - if yyb1073 { + if yyb1116 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1073-1, "") + z.DecStructFieldNotFound(yyj1116-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15104,38 +15715,38 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1078 := z.EncBinary() - _ = yym1078 + yym1121 := z.EncBinary() + _ = yym1121 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1079 := !z.EncBinary() - yy2arr1079 := z.EncBasicHandle().StructToArray - var yyq1079 [5]bool - _, _, _ = yysep1079, yyq1079, yy2arr1079 - const yyr1079 bool = false - yyq1079[0] = x.Name != "" - yyq1079[1] = x.HostPort != 0 - yyq1079[3] = x.Protocol != "" - yyq1079[4] = x.HostIP != "" - var yynn1079 int - if yyr1079 || yy2arr1079 { + yysep1122 := !z.EncBinary() + yy2arr1122 := z.EncBasicHandle().StructToArray + var yyq1122 [5]bool + _, _, _ = yysep1122, yyq1122, yy2arr1122 + const yyr1122 bool = false + yyq1122[0] = x.Name != "" + yyq1122[1] = x.HostPort != 0 + yyq1122[3] = x.Protocol != "" + yyq1122[4] = x.HostIP != "" + var yynn1122 int + if yyr1122 || yy2arr1122 { r.EncodeArrayStart(5) } else { - yynn1079 = 1 - for _, b := range yyq1079 { + yynn1122 = 1 + for _, b := range yyq1122 { if b { - yynn1079++ + yynn1122++ } } - r.EncodeMapStart(yynn1079) - yynn1079 = 0 + r.EncodeMapStart(yynn1122) + yynn1122 = 0 } - if yyr1079 || yy2arr1079 { + if yyr1122 || yy2arr1122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[0] { - yym1081 := z.EncBinary() - _ = yym1081 + if yyq1122[0] { + yym1124 := z.EncBinary() + _ = yym1124 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15144,23 +15755,23 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[0] { + if yyq1122[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1082 := z.EncBinary() - _ = yym1082 + yym1125 := z.EncBinary() + _ = yym1125 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1079 || yy2arr1079 { + if yyr1122 || yy2arr1122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[1] { - yym1084 := z.EncBinary() - _ = yym1084 + if yyq1122[1] { + yym1127 := z.EncBinary() + _ = yym1127 if false { } else { r.EncodeInt(int64(x.HostPort)) @@ -15169,22 +15780,22 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1079[1] { + if yyq1122[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1085 := z.EncBinary() - _ = yym1085 + yym1128 := z.EncBinary() + _ = yym1128 if false { } else { r.EncodeInt(int64(x.HostPort)) } } } - if yyr1079 || yy2arr1079 { + if yyr1122 || yy2arr1122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1087 := z.EncBinary() - _ = yym1087 + yym1130 := z.EncBinary() + _ = yym1130 if false { } else { r.EncodeInt(int64(x.ContainerPort)) @@ -15193,33 +15804,33 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1088 := z.EncBinary() - _ = yym1088 + yym1131 := z.EncBinary() + _ = yym1131 if false { } else { r.EncodeInt(int64(x.ContainerPort)) } } - if yyr1079 || yy2arr1079 { + if yyr1122 || yy2arr1122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[3] { + if yyq1122[3] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[3] { + if yyq1122[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr1079 || yy2arr1079 { + if yyr1122 || yy2arr1122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[4] { - yym1091 := z.EncBinary() - _ = yym1091 + if yyq1122[4] { + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -15228,19 +15839,19 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[4] { + if yyq1122[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1092 := z.EncBinary() - _ = yym1092 + yym1135 := z.EncBinary() + _ = yym1135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1079 || yy2arr1079 { + if yyr1122 || yy2arr1122 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15253,25 +15864,25 @@ func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1093 := z.DecBinary() - _ = yym1093 + yym1136 := z.DecBinary() + _ = yym1136 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1094 := r.ContainerType() - if yyct1094 == codecSelferValueTypeMap1234 { - yyl1094 := r.ReadMapStart() - if yyl1094 == 0 { + yyct1137 := r.ContainerType() + if yyct1137 == codecSelferValueTypeMap1234 { + yyl1137 := r.ReadMapStart() + if yyl1137 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1094, d) + x.codecDecodeSelfFromMap(yyl1137, d) } - } else if yyct1094 == codecSelferValueTypeArray1234 { - yyl1094 := r.ReadArrayStart() - if yyl1094 == 0 { + } else if yyct1137 == codecSelferValueTypeArray1234 { + yyl1137 := r.ReadArrayStart() + if yyl1137 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1094, d) + x.codecDecodeSelfFromArray(yyl1137, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15283,12 +15894,12 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1095Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1095Slc - var yyhl1095 bool = l >= 0 - for yyj1095 := 0; ; yyj1095++ { - if yyhl1095 { - if yyj1095 >= 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 { @@ -15297,10 +15908,10 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1095Slc = r.DecodeBytes(yys1095Slc, true, true) - yys1095 := string(yys1095Slc) + yys1138Slc = r.DecodeBytes(yys1138Slc, true, true) + yys1138 := string(yys1138Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1095 { + switch yys1138 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15332,9 +15943,9 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1095) - } // end switch yys1095 - } // end for yyj1095 + z.DecStructFieldNotFound(-1, yys1138) + } // end switch yys1138 + } // end for yyj1138 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15342,16 +15953,16 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1101 int - var yyb1101 bool - var yyhl1101 bool = l >= 0 - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + var yyj1144 int + var yyb1144 bool + var yyhl1144 bool = l >= 0 + yyj1144++ + if yyhl1144 { + yyb1144 = yyj1144 > l } else { - yyb1101 = r.CheckBreak() + yyb1144 = r.CheckBreak() } - if yyb1101 { + if yyb1144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15361,13 +15972,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1144++ + if yyhl1144 { + yyb1144 = yyj1144 > l } else { - yyb1101 = r.CheckBreak() + yyb1144 = r.CheckBreak() } - if yyb1101 { + if yyb1144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15377,13 +15988,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPort = int32(r.DecodeInt(32)) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1144++ + if yyhl1144 { + yyb1144 = yyj1144 > l } else { - yyb1101 = r.CheckBreak() + yyb1144 = r.CheckBreak() } - if yyb1101 { + if yyb1144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15393,13 +16004,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerPort = int32(r.DecodeInt(32)) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1144++ + if yyhl1144 { + yyb1144 = yyj1144 > l } else { - yyb1101 = r.CheckBreak() + yyb1144 = r.CheckBreak() } - if yyb1101 { + if yyb1144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15409,13 +16020,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1144++ + if yyhl1144 { + yyb1144 = yyj1144 > l } else { - yyb1101 = r.CheckBreak() + yyb1144 = r.CheckBreak() } - if yyb1101 { + if yyb1144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15426,17 +16037,17 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } for { - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1144++ + if yyhl1144 { + yyb1144 = yyj1144 > l } else { - yyb1101 = r.CheckBreak() + yyb1144 = r.CheckBreak() } - if yyb1101 { + if yyb1144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1101-1, "") + z.DecStructFieldNotFound(yyj1144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15448,35 +16059,35 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1107 := z.EncBinary() - _ = yym1107 + yym1150 := z.EncBinary() + _ = yym1150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1108 := !z.EncBinary() - yy2arr1108 := z.EncBasicHandle().StructToArray - var yyq1108 [4]bool - _, _, _ = yysep1108, yyq1108, yy2arr1108 - const yyr1108 bool = false - yyq1108[1] = x.ReadOnly != false - yyq1108[3] = x.SubPath != "" - var yynn1108 int - if yyr1108 || yy2arr1108 { + yysep1151 := !z.EncBinary() + yy2arr1151 := z.EncBasicHandle().StructToArray + var yyq1151 [4]bool + _, _, _ = yysep1151, yyq1151, yy2arr1151 + const yyr1151 bool = false + yyq1151[1] = x.ReadOnly != false + yyq1151[3] = x.SubPath != "" + var yynn1151 int + if yyr1151 || yy2arr1151 { r.EncodeArrayStart(4) } else { - yynn1108 = 2 - for _, b := range yyq1108 { + yynn1151 = 2 + for _, b := range yyq1151 { if b { - yynn1108++ + yynn1151++ } } - r.EncodeMapStart(yynn1108) - yynn1108 = 0 + r.EncodeMapStart(yynn1151) + yynn1151 = 0 } - if yyr1108 || yy2arr1108 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1110 := z.EncBinary() - _ = yym1110 + yym1153 := z.EncBinary() + _ = yym1153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15485,18 +16096,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1111 := z.EncBinary() - _ = yym1111 + yym1154 := z.EncBinary() + _ = yym1154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1108 || yy2arr1108 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1108[1] { - yym1113 := z.EncBinary() - _ = yym1113 + if yyq1151[1] { + yym1156 := z.EncBinary() + _ = yym1156 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -15505,22 +16116,22 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1108[1] { + if yyq1151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1114 := z.EncBinary() - _ = yym1114 + yym1157 := z.EncBinary() + _ = yym1157 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr1108 || yy2arr1108 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1116 := z.EncBinary() - _ = yym1116 + yym1159 := z.EncBinary() + _ = yym1159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) @@ -15529,18 +16140,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mountPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1117 := z.EncBinary() - _ = yym1117 + yym1160 := z.EncBinary() + _ = yym1160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) } } - if yyr1108 || yy2arr1108 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1108[3] { - yym1119 := z.EncBinary() - _ = yym1119 + if yyq1151[3] { + yym1162 := z.EncBinary() + _ = yym1162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) @@ -15549,19 +16160,19 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1108[3] { + if yyq1151[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1120 := z.EncBinary() - _ = yym1120 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) } } } - if yyr1108 || yy2arr1108 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15574,25 +16185,25 @@ func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1121 := z.DecBinary() - _ = yym1121 + yym1164 := z.DecBinary() + _ = yym1164 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1122 := r.ContainerType() - if yyct1122 == codecSelferValueTypeMap1234 { - yyl1122 := r.ReadMapStart() - if yyl1122 == 0 { + yyct1165 := r.ContainerType() + if yyct1165 == codecSelferValueTypeMap1234 { + yyl1165 := r.ReadMapStart() + if yyl1165 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1122, d) + x.codecDecodeSelfFromMap(yyl1165, d) } - } else if yyct1122 == codecSelferValueTypeArray1234 { - yyl1122 := r.ReadArrayStart() - if yyl1122 == 0 { + } else if yyct1165 == codecSelferValueTypeArray1234 { + yyl1165 := r.ReadArrayStart() + if yyl1165 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1122, d) + x.codecDecodeSelfFromArray(yyl1165, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15604,12 +16215,12 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1123Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1123Slc - var yyhl1123 bool = l >= 0 - for yyj1123 := 0; ; yyj1123++ { - if yyhl1123 { - if yyj1123 >= l { + var yys1166Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1166Slc + var yyhl1166 bool = l >= 0 + for yyj1166 := 0; ; yyj1166++ { + if yyhl1166 { + if yyj1166 >= l { break } } else { @@ -15618,10 +16229,10 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1123Slc = r.DecodeBytes(yys1123Slc, true, true) - yys1123 := string(yys1123Slc) + yys1166Slc = r.DecodeBytes(yys1166Slc, true, true) + yys1166 := string(yys1166Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1123 { + switch yys1166 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15647,9 +16258,9 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1123) - } // end switch yys1123 - } // end for yyj1123 + z.DecStructFieldNotFound(-1, yys1166) + } // end switch yys1166 + } // end for yyj1166 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15657,16 +16268,16 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1128 int - var yyb1128 bool - var yyhl1128 bool = l >= 0 - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + var yyj1171 int + var yyb1171 bool + var yyhl1171 bool = l >= 0 + yyj1171++ + if yyhl1171 { + yyb1171 = yyj1171 > l } else { - yyb1128 = r.CheckBreak() + yyb1171 = r.CheckBreak() } - if yyb1128 { + if yyb1171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15676,13 +16287,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1171++ + if yyhl1171 { + yyb1171 = yyj1171 > l } else { - yyb1128 = r.CheckBreak() + yyb1171 = r.CheckBreak() } - if yyb1128 { + if yyb1171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15692,13 +16303,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1171++ + if yyhl1171 { + yyb1171 = yyj1171 > l } else { - yyb1128 = r.CheckBreak() + yyb1171 = r.CheckBreak() } - if yyb1128 { + if yyb1171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15708,13 +16319,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MountPath = string(r.DecodeString()) } - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1171++ + if yyhl1171 { + yyb1171 = yyj1171 > l } else { - yyb1128 = r.CheckBreak() + yyb1171 = r.CheckBreak() } - if yyb1128 { + if yyb1171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15725,17 +16336,17 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } for { - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1171++ + if yyhl1171 { + yyb1171 = yyj1171 > l } else { - yyb1128 = r.CheckBreak() + yyb1171 = r.CheckBreak() } - if yyb1128 { + if yyb1171 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1128-1, "") + z.DecStructFieldNotFound(yyj1171-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15747,35 +16358,35 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1133 := z.EncBinary() - _ = yym1133 + yym1176 := z.EncBinary() + _ = yym1176 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1134 := !z.EncBinary() - yy2arr1134 := z.EncBasicHandle().StructToArray - var yyq1134 [3]bool - _, _, _ = yysep1134, yyq1134, yy2arr1134 - const yyr1134 bool = false - yyq1134[1] = x.Value != "" - yyq1134[2] = x.ValueFrom != nil - var yynn1134 int - if yyr1134 || yy2arr1134 { + yysep1177 := !z.EncBinary() + yy2arr1177 := z.EncBasicHandle().StructToArray + var yyq1177 [3]bool + _, _, _ = yysep1177, yyq1177, yy2arr1177 + const yyr1177 bool = false + yyq1177[1] = x.Value != "" + yyq1177[2] = x.ValueFrom != nil + var yynn1177 int + if yyr1177 || yy2arr1177 { r.EncodeArrayStart(3) } else { - yynn1134 = 1 - for _, b := range yyq1134 { + yynn1177 = 1 + for _, b := range yyq1177 { if b { - yynn1134++ + yynn1177++ } } - r.EncodeMapStart(yynn1134) - yynn1134 = 0 + r.EncodeMapStart(yynn1177) + yynn1177 = 0 } - if yyr1134 || yy2arr1134 { + if yyr1177 || yy2arr1177 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1136 := z.EncBinary() - _ = yym1136 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15784,18 +16395,18 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1137 := z.EncBinary() - _ = yym1137 + yym1180 := z.EncBinary() + _ = yym1180 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1134 || yy2arr1134 { + if yyr1177 || yy2arr1177 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1134[1] { - yym1139 := z.EncBinary() - _ = yym1139 + if yyq1177[1] { + yym1182 := z.EncBinary() + _ = yym1182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -15804,21 +16415,21 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1134[1] { + if yyq1177[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1140 := z.EncBinary() - _ = yym1140 + yym1183 := z.EncBinary() + _ = yym1183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1134 || yy2arr1134 { + if yyr1177 || yy2arr1177 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1134[2] { + if yyq1177[2] { if x.ValueFrom == nil { r.EncodeNil() } else { @@ -15828,7 +16439,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1134[2] { + if yyq1177[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("valueFrom")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15839,7 +16450,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1134 || yy2arr1134 { + if yyr1177 || yy2arr1177 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15852,25 +16463,25 @@ func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1142 := z.DecBinary() - _ = yym1142 + yym1185 := z.DecBinary() + _ = yym1185 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1143 := r.ContainerType() - if yyct1143 == codecSelferValueTypeMap1234 { - yyl1143 := r.ReadMapStart() - if yyl1143 == 0 { + yyct1186 := r.ContainerType() + if yyct1186 == codecSelferValueTypeMap1234 { + yyl1186 := r.ReadMapStart() + if yyl1186 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1143, d) + x.codecDecodeSelfFromMap(yyl1186, d) } - } else if yyct1143 == codecSelferValueTypeArray1234 { - yyl1143 := r.ReadArrayStart() - if yyl1143 == 0 { + } else if yyct1186 == codecSelferValueTypeArray1234 { + yyl1186 := r.ReadArrayStart() + if yyl1186 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1143, d) + x.codecDecodeSelfFromArray(yyl1186, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15882,12 +16493,12 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1144Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1144Slc - var yyhl1144 bool = l >= 0 - for yyj1144 := 0; ; yyj1144++ { - if yyhl1144 { - if yyj1144 >= l { + var yys1187Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1187Slc + var yyhl1187 bool = l >= 0 + for yyj1187 := 0; ; yyj1187++ { + if yyhl1187 { + if yyj1187 >= l { break } } else { @@ -15896,10 +16507,10 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1144Slc = r.DecodeBytes(yys1144Slc, true, true) - yys1144 := string(yys1144Slc) + yys1187Slc = r.DecodeBytes(yys1187Slc, true, true) + yys1187 := string(yys1187Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1144 { + switch yys1187 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15924,9 +16535,9 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1144) - } // end switch yys1144 - } // end for yyj1144 + z.DecStructFieldNotFound(-1, yys1187) + } // end switch yys1187 + } // end for yyj1187 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15934,16 +16545,16 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1148 int - var yyb1148 bool - var yyhl1148 bool = l >= 0 - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + var yyj1191 int + var yyb1191 bool + var yyhl1191 bool = l >= 0 + yyj1191++ + if yyhl1191 { + yyb1191 = yyj1191 > l } else { - yyb1148 = r.CheckBreak() + yyb1191 = r.CheckBreak() } - if yyb1148 { + if yyb1191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15953,13 +16564,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + yyj1191++ + if yyhl1191 { + yyb1191 = yyj1191 > l } else { - yyb1148 = r.CheckBreak() + yyb1191 = r.CheckBreak() } - if yyb1148 { + if yyb1191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15969,13 +16580,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + yyj1191++ + if yyhl1191 { + yyb1191 = yyj1191 > l } else { - yyb1148 = r.CheckBreak() + yyb1191 = r.CheckBreak() } - if yyb1148 { + if yyb1191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15991,17 +16602,17 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } for { - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + yyj1191++ + if yyhl1191 { + yyb1191 = yyj1191 > l } else { - yyb1148 = r.CheckBreak() + yyb1191 = r.CheckBreak() } - if yyb1148 { + if yyb1191 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1148-1, "") + z.DecStructFieldNotFound(yyj1191-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16013,36 +16624,36 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1152 := z.EncBinary() - _ = yym1152 + yym1195 := z.EncBinary() + _ = yym1195 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1153 := !z.EncBinary() - yy2arr1153 := z.EncBasicHandle().StructToArray - var yyq1153 [4]bool - _, _, _ = yysep1153, yyq1153, yy2arr1153 - const yyr1153 bool = false - yyq1153[0] = x.FieldRef != nil - yyq1153[1] = x.ResourceFieldRef != nil - yyq1153[2] = x.ConfigMapKeyRef != nil - yyq1153[3] = x.SecretKeyRef != nil - var yynn1153 int - if yyr1153 || yy2arr1153 { + yysep1196 := !z.EncBinary() + yy2arr1196 := z.EncBasicHandle().StructToArray + var yyq1196 [4]bool + _, _, _ = yysep1196, yyq1196, yy2arr1196 + const yyr1196 bool = false + yyq1196[0] = x.FieldRef != nil + yyq1196[1] = x.ResourceFieldRef != nil + yyq1196[2] = x.ConfigMapKeyRef != nil + yyq1196[3] = x.SecretKeyRef != nil + var yynn1196 int + if yyr1196 || yy2arr1196 { r.EncodeArrayStart(4) } else { - yynn1153 = 0 - for _, b := range yyq1153 { + yynn1196 = 0 + for _, b := range yyq1196 { if b { - yynn1153++ + yynn1196++ } } - r.EncodeMapStart(yynn1153) - yynn1153 = 0 + r.EncodeMapStart(yynn1196) + yynn1196 = 0 } - if yyr1153 || yy2arr1153 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[0] { + if yyq1196[0] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -16052,7 +16663,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[0] { + if yyq1196[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16063,9 +16674,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[1] { + if yyq1196[1] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -16075,7 +16686,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[1] { + if yyq1196[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16086,9 +16697,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[2] { + if yyq1196[2] { if x.ConfigMapKeyRef == nil { r.EncodeNil() } else { @@ -16098,7 +16709,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[2] { + if yyq1196[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMapKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16109,9 +16720,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[3] { + if yyq1196[3] { if x.SecretKeyRef == nil { r.EncodeNil() } else { @@ -16121,7 +16732,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[3] { + if yyq1196[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16132,7 +16743,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16145,25 +16756,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1158 := z.DecBinary() - _ = yym1158 + yym1201 := z.DecBinary() + _ = yym1201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1159 := r.ContainerType() - if yyct1159 == codecSelferValueTypeMap1234 { - yyl1159 := r.ReadMapStart() - if yyl1159 == 0 { + yyct1202 := r.ContainerType() + if yyct1202 == codecSelferValueTypeMap1234 { + yyl1202 := r.ReadMapStart() + if yyl1202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1159, d) + x.codecDecodeSelfFromMap(yyl1202, d) } - } else if yyct1159 == codecSelferValueTypeArray1234 { - yyl1159 := r.ReadArrayStart() - if yyl1159 == 0 { + } else if yyct1202 == codecSelferValueTypeArray1234 { + yyl1202 := r.ReadArrayStart() + if yyl1202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1159, d) + x.codecDecodeSelfFromArray(yyl1202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16175,12 +16786,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1160Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1160Slc - var yyhl1160 bool = l >= 0 - for yyj1160 := 0; ; yyj1160++ { - if yyhl1160 { - if yyj1160 >= l { + var yys1203Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1203Slc + var yyhl1203 bool = l >= 0 + for yyj1203 := 0; ; yyj1203++ { + if yyhl1203 { + if yyj1203 >= l { break } } else { @@ -16189,10 +16800,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1160Slc = r.DecodeBytes(yys1160Slc, true, true) - yys1160 := string(yys1160Slc) + yys1203Slc = r.DecodeBytes(yys1203Slc, true, true) + yys1203 := string(yys1203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1160 { + switch yys1203 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -16238,9 +16849,9 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1160) - } // end switch yys1160 - } // end for yyj1160 + z.DecStructFieldNotFound(-1, yys1203) + } // end switch yys1203 + } // end for yyj1203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16248,16 +16859,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1165 int - var yyb1165 bool - var yyhl1165 bool = l >= 0 - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + var yyj1208 int + var yyb1208 bool + var yyhl1208 bool = l >= 0 + yyj1208++ + if yyhl1208 { + yyb1208 = yyj1208 > l } else { - yyb1165 = r.CheckBreak() + yyb1208 = r.CheckBreak() } - if yyb1165 { + if yyb1208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16272,13 +16883,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1208++ + if yyhl1208 { + yyb1208 = yyj1208 > l } else { - yyb1165 = r.CheckBreak() + yyb1208 = r.CheckBreak() } - if yyb1165 { + if yyb1208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16293,13 +16904,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1208++ + if yyhl1208 { + yyb1208 = yyj1208 > l } else { - yyb1165 = r.CheckBreak() + yyb1208 = r.CheckBreak() } - if yyb1165 { + if yyb1208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16314,13 +16925,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMapKeyRef.CodecDecodeSelf(d) } - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1208++ + if yyhl1208 { + yyb1208 = yyj1208 > l } else { - yyb1165 = r.CheckBreak() + yyb1208 = r.CheckBreak() } - if yyb1165 { + if yyb1208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16336,17 +16947,17 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } for { - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1208++ + if yyhl1208 { + yyb1208 = yyj1208 > l } else { - yyb1165 = r.CheckBreak() + yyb1208 = r.CheckBreak() } - if yyb1165 { + if yyb1208 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1165-1, "") + z.DecStructFieldNotFound(yyj1208-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16358,33 +16969,33 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1170 := z.EncBinary() - _ = yym1170 + yym1213 := z.EncBinary() + _ = yym1213 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1171 := !z.EncBinary() - yy2arr1171 := z.EncBasicHandle().StructToArray - var yyq1171 [2]bool - _, _, _ = yysep1171, yyq1171, yy2arr1171 - const yyr1171 bool = false - var yynn1171 int - if yyr1171 || yy2arr1171 { + yysep1214 := !z.EncBinary() + yy2arr1214 := z.EncBasicHandle().StructToArray + var yyq1214 [2]bool + _, _, _ = yysep1214, yyq1214, yy2arr1214 + const yyr1214 bool = false + var yynn1214 int + if yyr1214 || yy2arr1214 { r.EncodeArrayStart(2) } else { - yynn1171 = 2 - for _, b := range yyq1171 { + yynn1214 = 2 + for _, b := range yyq1214 { if b { - yynn1171++ + yynn1214++ } } - r.EncodeMapStart(yynn1171) - yynn1171 = 0 + r.EncodeMapStart(yynn1214) + yynn1214 = 0 } - if yyr1171 || yy2arr1171 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1173 := z.EncBinary() - _ = yym1173 + yym1216 := z.EncBinary() + _ = yym1216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -16393,17 +17004,17 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1174 := z.EncBinary() - _ = yym1174 + yym1217 := z.EncBinary() + _ = yym1217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr1171 || yy2arr1171 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1176 := z.EncBinary() - _ = yym1176 + yym1219 := z.EncBinary() + _ = yym1219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -16412,14 +17023,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1177 := z.EncBinary() - _ = yym1177 + yym1220 := z.EncBinary() + _ = yym1220 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr1171 || yy2arr1171 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16432,25 +17043,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1178 := z.DecBinary() - _ = yym1178 + yym1221 := z.DecBinary() + _ = yym1221 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1179 := r.ContainerType() - if yyct1179 == codecSelferValueTypeMap1234 { - yyl1179 := r.ReadMapStart() - if yyl1179 == 0 { + yyct1222 := r.ContainerType() + if yyct1222 == codecSelferValueTypeMap1234 { + yyl1222 := r.ReadMapStart() + if yyl1222 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1179, d) + x.codecDecodeSelfFromMap(yyl1222, d) } - } else if yyct1179 == codecSelferValueTypeArray1234 { - yyl1179 := r.ReadArrayStart() - if yyl1179 == 0 { + } else if yyct1222 == codecSelferValueTypeArray1234 { + yyl1222 := r.ReadArrayStart() + if yyl1222 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1179, d) + x.codecDecodeSelfFromArray(yyl1222, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16462,12 +17073,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1180Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1180Slc - var yyhl1180 bool = l >= 0 - for yyj1180 := 0; ; yyj1180++ { - if yyhl1180 { - if yyj1180 >= l { + var yys1223Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1223Slc + var yyhl1223 bool = l >= 0 + for yyj1223 := 0; ; yyj1223++ { + if yyhl1223 { + if yyj1223 >= l { break } } else { @@ -16476,10 +17087,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1180Slc = r.DecodeBytes(yys1180Slc, true, true) - yys1180 := string(yys1180Slc) + yys1223Slc = r.DecodeBytes(yys1223Slc, true, true) + yys1223 := string(yys1223Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1180 { + switch yys1223 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -16493,9 +17104,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1180) - } // end switch yys1180 - } // end for yyj1180 + z.DecStructFieldNotFound(-1, yys1223) + } // end switch yys1223 + } // end for yyj1223 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16503,16 +17114,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1183 int - var yyb1183 bool - var yyhl1183 bool = l >= 0 - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + var yyj1226 int + var yyb1226 bool + var yyhl1226 bool = l >= 0 + yyj1226++ + if yyhl1226 { + yyb1226 = yyj1226 > l } else { - yyb1183 = r.CheckBreak() + yyb1226 = r.CheckBreak() } - if yyb1183 { + if yyb1226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16522,13 +17133,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1226++ + if yyhl1226 { + yyb1226 = yyj1226 > l } else { - yyb1183 = r.CheckBreak() + yyb1226 = r.CheckBreak() } - if yyb1183 { + if yyb1226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16539,17 +17150,17 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1226++ + if yyhl1226 { + yyb1226 = yyj1226 > l } else { - yyb1183 = r.CheckBreak() + yyb1226 = r.CheckBreak() } - if yyb1183 { + if yyb1226 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1183-1, "") + z.DecStructFieldNotFound(yyj1226-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16561,36 +17172,36 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1186 := z.EncBinary() - _ = yym1186 + yym1229 := z.EncBinary() + _ = yym1229 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1187 := !z.EncBinary() - yy2arr1187 := z.EncBasicHandle().StructToArray - var yyq1187 [3]bool - _, _, _ = yysep1187, yyq1187, yy2arr1187 - const yyr1187 bool = false - yyq1187[0] = x.ContainerName != "" - yyq1187[2] = true - var yynn1187 int - if yyr1187 || yy2arr1187 { + yysep1230 := !z.EncBinary() + yy2arr1230 := z.EncBasicHandle().StructToArray + var yyq1230 [3]bool + _, _, _ = yysep1230, yyq1230, yy2arr1230 + const yyr1230 bool = false + yyq1230[0] = x.ContainerName != "" + yyq1230[2] = true + var yynn1230 int + if yyr1230 || yy2arr1230 { r.EncodeArrayStart(3) } else { - yynn1187 = 1 - for _, b := range yyq1187 { + yynn1230 = 1 + for _, b := range yyq1230 { if b { - yynn1187++ + yynn1230++ } } - r.EncodeMapStart(yynn1187) - yynn1187 = 0 + r.EncodeMapStart(yynn1230) + yynn1230 = 0 } - if yyr1187 || yy2arr1187 { + if yyr1230 || yy2arr1230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1187[0] { - yym1189 := z.EncBinary() - _ = yym1189 + if yyq1230[0] { + yym1232 := z.EncBinary() + _ = yym1232 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) @@ -16599,22 +17210,22 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1187[0] { + if yyq1230[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1190 := z.EncBinary() - _ = yym1190 + yym1233 := z.EncBinary() + _ = yym1233 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) } } } - if yyr1187 || yy2arr1187 { + if yyr1230 || yy2arr1230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1192 := z.EncBinary() - _ = yym1192 + yym1235 := z.EncBinary() + _ = yym1235 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) @@ -16623,47 +17234,47 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resource")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1193 := z.EncBinary() - _ = yym1193 + yym1236 := z.EncBinary() + _ = yym1236 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) } } - if yyr1187 || yy2arr1187 { + if yyr1230 || yy2arr1230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1187[2] { - yy1195 := &x.Divisor - yym1196 := z.EncBinary() - _ = yym1196 + if yyq1230[2] { + yy1238 := &x.Divisor + yym1239 := z.EncBinary() + _ = yym1239 if false { - } else if z.HasExtensions() && z.EncExt(yy1195) { - } else if !yym1196 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1195) + } else if z.HasExtensions() && z.EncExt(yy1238) { + } else if !yym1239 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1238) } else { - z.EncFallback(yy1195) + z.EncFallback(yy1238) } } else { r.EncodeNil() } } else { - if yyq1187[2] { + if yyq1230[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("divisor")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1197 := &x.Divisor - yym1198 := z.EncBinary() - _ = yym1198 + yy1240 := &x.Divisor + yym1241 := z.EncBinary() + _ = yym1241 if false { - } else if z.HasExtensions() && z.EncExt(yy1197) { - } else if !yym1198 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1197) + } else if z.HasExtensions() && z.EncExt(yy1240) { + } else if !yym1241 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1240) } else { - z.EncFallback(yy1197) + z.EncFallback(yy1240) } } } - if yyr1187 || yy2arr1187 { + if yyr1230 || yy2arr1230 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16676,25 +17287,25 @@ func (x *ResourceFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1199 := z.DecBinary() - _ = yym1199 + yym1242 := z.DecBinary() + _ = yym1242 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1200 := r.ContainerType() - if yyct1200 == codecSelferValueTypeMap1234 { - yyl1200 := r.ReadMapStart() - if yyl1200 == 0 { + yyct1243 := r.ContainerType() + if yyct1243 == codecSelferValueTypeMap1234 { + yyl1243 := r.ReadMapStart() + if yyl1243 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1200, d) + x.codecDecodeSelfFromMap(yyl1243, d) } - } else if yyct1200 == codecSelferValueTypeArray1234 { - yyl1200 := r.ReadArrayStart() - if yyl1200 == 0 { + } else if yyct1243 == codecSelferValueTypeArray1234 { + yyl1243 := r.ReadArrayStart() + if yyl1243 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1200, d) + x.codecDecodeSelfFromArray(yyl1243, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16706,12 +17317,12 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1201Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1201Slc - var yyhl1201 bool = l >= 0 - for yyj1201 := 0; ; yyj1201++ { - if yyhl1201 { - if yyj1201 >= l { + var yys1244Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1244Slc + var yyhl1244 bool = l >= 0 + for yyj1244 := 0; ; yyj1244++ { + if yyhl1244 { + if yyj1244 >= l { break } } else { @@ -16720,10 +17331,10 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1201Slc = r.DecodeBytes(yys1201Slc, true, true) - yys1201 := string(yys1201Slc) + yys1244Slc = r.DecodeBytes(yys1244Slc, true, true) + yys1244 := string(yys1244Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1201 { + switch yys1244 { case "containerName": if r.TryDecodeAsNil() { x.ContainerName = "" @@ -16740,21 +17351,21 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Divisor = pkg3_resource.Quantity{} } else { - yyv1204 := &x.Divisor - yym1205 := z.DecBinary() - _ = yym1205 + yyv1247 := &x.Divisor + yym1248 := z.DecBinary() + _ = yym1248 if false { - } else if z.HasExtensions() && z.DecExt(yyv1204) { - } else if !yym1205 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1204) + } else if z.HasExtensions() && z.DecExt(yyv1247) { + } else if !yym1248 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1247) } else { - z.DecFallback(yyv1204, false) + z.DecFallback(yyv1247, false) } } default: - z.DecStructFieldNotFound(-1, yys1201) - } // end switch yys1201 - } // end for yyj1201 + z.DecStructFieldNotFound(-1, yys1244) + } // end switch yys1244 + } // end for yyj1244 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16762,16 +17373,16 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1206 int - var yyb1206 bool - var yyhl1206 bool = l >= 0 - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + var yyj1249 int + var yyb1249 bool + var yyhl1249 bool = l >= 0 + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1206 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1206 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16781,13 +17392,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ContainerName = string(r.DecodeString()) } - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1206 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1206 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16797,13 +17408,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Resource = string(r.DecodeString()) } - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1206 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1206 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16811,29 +17422,29 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Divisor = pkg3_resource.Quantity{} } else { - yyv1209 := &x.Divisor - yym1210 := z.DecBinary() - _ = yym1210 + yyv1252 := &x.Divisor + yym1253 := z.DecBinary() + _ = yym1253 if false { - } else if z.HasExtensions() && z.DecExt(yyv1209) { - } else if !yym1210 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1209) + } else if z.HasExtensions() && z.DecExt(yyv1252) { + } else if !yym1253 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1252) } else { - z.DecFallback(yyv1209, false) + z.DecFallback(yyv1252, false) } } for { - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1206 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1206 { + if yyb1249 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1206-1, "") + z.DecStructFieldNotFound(yyj1249-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16845,33 +17456,33 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1211 := z.EncBinary() - _ = yym1211 + yym1254 := z.EncBinary() + _ = yym1254 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1212 := !z.EncBinary() - yy2arr1212 := z.EncBasicHandle().StructToArray - var yyq1212 [2]bool - _, _, _ = yysep1212, yyq1212, yy2arr1212 - const yyr1212 bool = false - var yynn1212 int - if yyr1212 || yy2arr1212 { + yysep1255 := !z.EncBinary() + yy2arr1255 := z.EncBasicHandle().StructToArray + var yyq1255 [2]bool + _, _, _ = yysep1255, yyq1255, yy2arr1255 + const yyr1255 bool = false + var yynn1255 int + if yyr1255 || yy2arr1255 { r.EncodeArrayStart(2) } else { - yynn1212 = 2 - for _, b := range yyq1212 { + yynn1255 = 2 + for _, b := range yyq1255 { if b { - yynn1212++ + yynn1255++ } } - r.EncodeMapStart(yynn1212) - yynn1212 = 0 + r.EncodeMapStart(yynn1255) + yynn1255 = 0 } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1214 := z.EncBinary() - _ = yym1214 + yym1257 := z.EncBinary() + _ = yym1257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16880,17 +17491,17 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1215 := z.EncBinary() - _ = yym1215 + yym1258 := z.EncBinary() + _ = yym1258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1217 := z.EncBinary() - _ = yym1217 + yym1260 := z.EncBinary() + _ = yym1260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -16899,14 +17510,14 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1218 := z.EncBinary() - _ = yym1218 + yym1261 := z.EncBinary() + _ = yym1261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16919,25 +17530,25 @@ func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1219 := z.DecBinary() - _ = yym1219 + yym1262 := z.DecBinary() + _ = yym1262 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1220 := r.ContainerType() - if yyct1220 == codecSelferValueTypeMap1234 { - yyl1220 := r.ReadMapStart() - if yyl1220 == 0 { + yyct1263 := r.ContainerType() + if yyct1263 == codecSelferValueTypeMap1234 { + yyl1263 := r.ReadMapStart() + if yyl1263 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1220, d) + x.codecDecodeSelfFromMap(yyl1263, d) } - } else if yyct1220 == codecSelferValueTypeArray1234 { - yyl1220 := r.ReadArrayStart() - if yyl1220 == 0 { + } else if yyct1263 == codecSelferValueTypeArray1234 { + yyl1263 := r.ReadArrayStart() + if yyl1263 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1220, d) + x.codecDecodeSelfFromArray(yyl1263, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16949,12 +17560,12 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1221Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1221Slc - var yyhl1221 bool = l >= 0 - for yyj1221 := 0; ; yyj1221++ { - if yyhl1221 { - if yyj1221 >= l { + var yys1264Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1264Slc + var yyhl1264 bool = l >= 0 + for yyj1264 := 0; ; yyj1264++ { + if yyhl1264 { + if yyj1264 >= l { break } } else { @@ -16963,10 +17574,10 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1221Slc = r.DecodeBytes(yys1221Slc, true, true) - yys1221 := string(yys1221Slc) + yys1264Slc = r.DecodeBytes(yys1264Slc, true, true) + yys1264 := string(yys1264Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1221 { + switch yys1264 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -16980,9 +17591,9 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Key = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1221) - } // end switch yys1221 - } // end for yyj1221 + z.DecStructFieldNotFound(-1, yys1264) + } // end switch yys1264 + } // end for yyj1264 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16990,16 +17601,16 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1224 int - var yyb1224 bool - var yyhl1224 bool = l >= 0 - yyj1224++ - if yyhl1224 { - yyb1224 = yyj1224 > l + var yyj1267 int + var yyb1267 bool + var yyhl1267 bool = l >= 0 + yyj1267++ + if yyhl1267 { + yyb1267 = yyj1267 > l } else { - yyb1224 = r.CheckBreak() + yyb1267 = r.CheckBreak() } - if yyb1224 { + if yyb1267 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17009,13 +17620,13 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Name = string(r.DecodeString()) } - yyj1224++ - if yyhl1224 { - yyb1224 = yyj1224 > l + yyj1267++ + if yyhl1267 { + yyb1267 = yyj1267 > l } else { - yyb1224 = r.CheckBreak() + yyb1267 = r.CheckBreak() } - if yyb1224 { + if yyb1267 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17026,17 +17637,17 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Key = string(r.DecodeString()) } for { - yyj1224++ - if yyhl1224 { - yyb1224 = yyj1224 > l + yyj1267++ + if yyhl1267 { + yyb1267 = yyj1267 > l } else { - yyb1224 = r.CheckBreak() + yyb1267 = r.CheckBreak() } - if yyb1224 { + if yyb1267 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1224-1, "") + z.DecStructFieldNotFound(yyj1267-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17048,33 +17659,33 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1227 := z.EncBinary() - _ = yym1227 + yym1270 := z.EncBinary() + _ = yym1270 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1228 := !z.EncBinary() - yy2arr1228 := z.EncBasicHandle().StructToArray - var yyq1228 [2]bool - _, _, _ = yysep1228, yyq1228, yy2arr1228 - const yyr1228 bool = false - var yynn1228 int - if yyr1228 || yy2arr1228 { + yysep1271 := !z.EncBinary() + yy2arr1271 := z.EncBasicHandle().StructToArray + var yyq1271 [2]bool + _, _, _ = yysep1271, yyq1271, yy2arr1271 + const yyr1271 bool = false + var yynn1271 int + if yyr1271 || yy2arr1271 { r.EncodeArrayStart(2) } else { - yynn1228 = 2 - for _, b := range yyq1228 { + yynn1271 = 2 + for _, b := range yyq1271 { if b { - yynn1228++ + yynn1271++ } } - r.EncodeMapStart(yynn1228) - yynn1228 = 0 + r.EncodeMapStart(yynn1271) + yynn1271 = 0 } - if yyr1228 || yy2arr1228 { + if yyr1271 || yy2arr1271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1230 := z.EncBinary() - _ = yym1230 + yym1273 := z.EncBinary() + _ = yym1273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17083,17 +17694,17 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1231 := z.EncBinary() - _ = yym1231 + yym1274 := z.EncBinary() + _ = yym1274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1228 || yy2arr1228 { + if yyr1271 || yy2arr1271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1233 := z.EncBinary() - _ = yym1233 + yym1276 := z.EncBinary() + _ = yym1276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -17102,14 +17713,14 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1234 := z.EncBinary() - _ = yym1234 + yym1277 := z.EncBinary() + _ = yym1277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1228 || yy2arr1228 { + if yyr1271 || yy2arr1271 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17122,25 +17733,25 @@ func (x *SecretKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1235 := z.DecBinary() - _ = yym1235 + yym1278 := z.DecBinary() + _ = yym1278 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1236 := r.ContainerType() - if yyct1236 == codecSelferValueTypeMap1234 { - yyl1236 := r.ReadMapStart() - if yyl1236 == 0 { + yyct1279 := r.ContainerType() + if yyct1279 == codecSelferValueTypeMap1234 { + yyl1279 := r.ReadMapStart() + if yyl1279 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1236, d) + x.codecDecodeSelfFromMap(yyl1279, d) } - } else if yyct1236 == codecSelferValueTypeArray1234 { - yyl1236 := r.ReadArrayStart() - if yyl1236 == 0 { + } else if yyct1279 == codecSelferValueTypeArray1234 { + yyl1279 := r.ReadArrayStart() + if yyl1279 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1236, d) + x.codecDecodeSelfFromArray(yyl1279, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17152,12 +17763,12 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1237Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1237Slc - var yyhl1237 bool = l >= 0 - for yyj1237 := 0; ; yyj1237++ { - if yyhl1237 { - if yyj1237 >= 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 { @@ -17166,10 +17777,10 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1237Slc = r.DecodeBytes(yys1237Slc, true, true) - yys1237 := string(yys1237Slc) + yys1280Slc = r.DecodeBytes(yys1280Slc, true, true) + yys1280 := string(yys1280Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1237 { + switch yys1280 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -17183,9 +17794,9 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Key = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1237) - } // end switch yys1237 - } // end for yyj1237 + z.DecStructFieldNotFound(-1, yys1280) + } // end switch yys1280 + } // end for yyj1280 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17193,16 +17804,16 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1240 int - var yyb1240 bool - var yyhl1240 bool = l >= 0 - yyj1240++ - if yyhl1240 { - yyb1240 = yyj1240 > l + var yyj1283 int + var yyb1283 bool + var yyhl1283 bool = l >= 0 + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1240 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1240 { + if yyb1283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17212,13 +17823,13 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Name = string(r.DecodeString()) } - yyj1240++ - if yyhl1240 { - yyb1240 = yyj1240 > l + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1240 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1240 { + if yyb1283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17229,17 +17840,17 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.Key = string(r.DecodeString()) } for { - yyj1240++ - if yyhl1240 { - yyb1240 = yyj1240 > l + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1240 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1240 { + if yyb1283 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1240-1, "") + z.DecStructFieldNotFound(yyj1283-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17251,33 +17862,33 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1243 := z.EncBinary() - _ = yym1243 + yym1286 := z.EncBinary() + _ = yym1286 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1244 := !z.EncBinary() - yy2arr1244 := z.EncBasicHandle().StructToArray - var yyq1244 [2]bool - _, _, _ = yysep1244, yyq1244, yy2arr1244 - const yyr1244 bool = false - var yynn1244 int - if yyr1244 || yy2arr1244 { + yysep1287 := !z.EncBinary() + yy2arr1287 := z.EncBasicHandle().StructToArray + var yyq1287 [2]bool + _, _, _ = yysep1287, yyq1287, yy2arr1287 + const yyr1287 bool = false + var yynn1287 int + if yyr1287 || yy2arr1287 { r.EncodeArrayStart(2) } else { - yynn1244 = 2 - for _, b := range yyq1244 { + yynn1287 = 2 + for _, b := range yyq1287 { if b { - yynn1244++ + yynn1287++ } } - r.EncodeMapStart(yynn1244) - yynn1244 = 0 + r.EncodeMapStart(yynn1287) + yynn1287 = 0 } - if yyr1244 || yy2arr1244 { + if yyr1287 || yy2arr1287 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1246 := z.EncBinary() - _ = yym1246 + yym1289 := z.EncBinary() + _ = yym1289 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17286,17 +17897,17 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1247 := z.EncBinary() - _ = yym1247 + yym1290 := z.EncBinary() + _ = yym1290 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1244 || yy2arr1244 { + if yyr1287 || yy2arr1287 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1249 := z.EncBinary() - _ = yym1249 + yym1292 := z.EncBinary() + _ = yym1292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -17305,14 +17916,14 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1250 := z.EncBinary() - _ = yym1250 + yym1293 := z.EncBinary() + _ = yym1293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } - if yyr1244 || yy2arr1244 { + if yyr1287 || yy2arr1287 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17325,25 +17936,25 @@ func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1251 := z.DecBinary() - _ = yym1251 + yym1294 := z.DecBinary() + _ = yym1294 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1252 := r.ContainerType() - if yyct1252 == codecSelferValueTypeMap1234 { - yyl1252 := r.ReadMapStart() - if yyl1252 == 0 { + yyct1295 := r.ContainerType() + if yyct1295 == codecSelferValueTypeMap1234 { + yyl1295 := r.ReadMapStart() + if yyl1295 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1252, d) + x.codecDecodeSelfFromMap(yyl1295, d) } - } else if yyct1252 == codecSelferValueTypeArray1234 { - yyl1252 := r.ReadArrayStart() - if yyl1252 == 0 { + } else if yyct1295 == codecSelferValueTypeArray1234 { + yyl1295 := r.ReadArrayStart() + if yyl1295 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1252, d) + x.codecDecodeSelfFromArray(yyl1295, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17355,12 +17966,12 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1253Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1253Slc - var yyhl1253 bool = l >= 0 - for yyj1253 := 0; ; yyj1253++ { - if yyhl1253 { - if yyj1253 >= l { + var yys1296Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1296Slc + var yyhl1296 bool = l >= 0 + for yyj1296 := 0; ; yyj1296++ { + if yyhl1296 { + if yyj1296 >= l { break } } else { @@ -17369,10 +17980,10 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1253Slc = r.DecodeBytes(yys1253Slc, true, true) - yys1253 := string(yys1253Slc) + yys1296Slc = r.DecodeBytes(yys1296Slc, true, true) + yys1296 := string(yys1296Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1253 { + switch yys1296 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -17386,9 +17997,9 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1253) - } // end switch yys1253 - } // end for yyj1253 + z.DecStructFieldNotFound(-1, yys1296) + } // end switch yys1296 + } // end for yyj1296 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17396,16 +18007,16 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1256 int - var yyb1256 bool - var yyhl1256 bool = l >= 0 - yyj1256++ - if yyhl1256 { - yyb1256 = yyj1256 > l + var yyj1299 int + var yyb1299 bool + var yyhl1299 bool = l >= 0 + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1256 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1256 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17415,13 +18026,13 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1256++ - if yyhl1256 { - yyb1256 = yyj1256 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1256 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1256 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17432,17 +18043,17 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } for { - yyj1256++ - if yyhl1256 { - yyb1256 = yyj1256 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1256 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1256 { + if yyb1299 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1256-1, "") + z.DecStructFieldNotFound(yyj1299-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17454,39 +18065,39 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1259 := z.EncBinary() - _ = yym1259 + yym1302 := z.EncBinary() + _ = yym1302 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1260 := !z.EncBinary() - yy2arr1260 := z.EncBasicHandle().StructToArray - var yyq1260 [5]bool - _, _, _ = yysep1260, yyq1260, yy2arr1260 - const yyr1260 bool = false - yyq1260[0] = x.Path != "" - yyq1260[1] = true - yyq1260[2] = x.Host != "" - yyq1260[3] = x.Scheme != "" - yyq1260[4] = len(x.HTTPHeaders) != 0 - var yynn1260 int - if yyr1260 || yy2arr1260 { + yysep1303 := !z.EncBinary() + yy2arr1303 := z.EncBasicHandle().StructToArray + var yyq1303 [5]bool + _, _, _ = yysep1303, yyq1303, yy2arr1303 + const yyr1303 bool = false + yyq1303[0] = x.Path != "" + yyq1303[1] = true + yyq1303[2] = x.Host != "" + yyq1303[3] = x.Scheme != "" + yyq1303[4] = len(x.HTTPHeaders) != 0 + var yynn1303 int + if yyr1303 || yy2arr1303 { r.EncodeArrayStart(5) } else { - yynn1260 = 0 - for _, b := range yyq1260 { + yynn1303 = 0 + for _, b := range yyq1303 { if b { - yynn1260++ + yynn1303++ } } - r.EncodeMapStart(yynn1260) - yynn1260 = 0 + r.EncodeMapStart(yynn1303) + yynn1303 = 0 } - if yyr1260 || yy2arr1260 { + if yyr1303 || yy2arr1303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[0] { - yym1262 := z.EncBinary() - _ = yym1262 + if yyq1303[0] { + yym1305 := z.EncBinary() + _ = yym1305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -17495,56 +18106,56 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1260[0] { + if yyq1303[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1263 := z.EncBinary() - _ = yym1263 + yym1306 := z.EncBinary() + _ = yym1306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr1260 || yy2arr1260 { + if yyr1303 || yy2arr1303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[1] { - yy1265 := &x.Port - yym1266 := z.EncBinary() - _ = yym1266 + if yyq1303[1] { + yy1308 := &x.Port + yym1309 := z.EncBinary() + _ = yym1309 if false { - } else if z.HasExtensions() && z.EncExt(yy1265) { - } else if !yym1266 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1265) + } else if z.HasExtensions() && z.EncExt(yy1308) { + } else if !yym1309 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1308) } else { - z.EncFallback(yy1265) + z.EncFallback(yy1308) } } else { r.EncodeNil() } } else { - if yyq1260[1] { + if yyq1303[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1267 := &x.Port - yym1268 := z.EncBinary() - _ = yym1268 + yy1310 := &x.Port + yym1311 := z.EncBinary() + _ = yym1311 if false { - } else if z.HasExtensions() && z.EncExt(yy1267) { - } else if !yym1268 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1267) + } else if z.HasExtensions() && z.EncExt(yy1310) { + } else if !yym1311 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1310) } else { - z.EncFallback(yy1267) + z.EncFallback(yy1310) } } } - if yyr1260 || yy2arr1260 { + if yyr1303 || yy2arr1303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[2] { - yym1270 := z.EncBinary() - _ = yym1270 + if yyq1303[2] { + yym1313 := z.EncBinary() + _ = yym1313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -17553,41 +18164,41 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1260[2] { + if yyq1303[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1271 := z.EncBinary() - _ = yym1271 + yym1314 := z.EncBinary() + _ = yym1314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr1260 || yy2arr1260 { + if yyr1303 || yy2arr1303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[3] { + if yyq1303[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1260[3] { + if yyq1303[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr1260 || yy2arr1260 { + if yyr1303 || yy2arr1303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[4] { + if yyq1303[4] { if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1274 := z.EncBinary() - _ = yym1274 + yym1317 := z.EncBinary() + _ = yym1317 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -17597,15 +18208,15 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1260[4] { + if yyq1303[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1275 := z.EncBinary() - _ = yym1275 + yym1318 := z.EncBinary() + _ = yym1318 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -17613,7 +18224,7 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1260 || yy2arr1260 { + if yyr1303 || yy2arr1303 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17626,25 +18237,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1276 := z.DecBinary() - _ = yym1276 + yym1319 := z.DecBinary() + _ = yym1319 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1277 := r.ContainerType() - if yyct1277 == codecSelferValueTypeMap1234 { - yyl1277 := r.ReadMapStart() - if yyl1277 == 0 { + yyct1320 := r.ContainerType() + if yyct1320 == codecSelferValueTypeMap1234 { + yyl1320 := r.ReadMapStart() + if yyl1320 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1277, d) + x.codecDecodeSelfFromMap(yyl1320, d) } - } else if yyct1277 == codecSelferValueTypeArray1234 { - yyl1277 := r.ReadArrayStart() - if yyl1277 == 0 { + } else if yyct1320 == codecSelferValueTypeArray1234 { + yyl1320 := r.ReadArrayStart() + if yyl1320 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1277, d) + x.codecDecodeSelfFromArray(yyl1320, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17656,12 +18267,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1278Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1278Slc - var yyhl1278 bool = l >= 0 - for yyj1278 := 0; ; yyj1278++ { - if yyhl1278 { - if yyj1278 >= l { + var yys1321Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1321Slc + var yyhl1321 bool = l >= 0 + for yyj1321 := 0; ; yyj1321++ { + if yyhl1321 { + if yyj1321 >= l { break } } else { @@ -17670,10 +18281,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1278Slc = r.DecodeBytes(yys1278Slc, true, true) - yys1278 := string(yys1278Slc) + yys1321Slc = r.DecodeBytes(yys1321Slc, true, true) + yys1321 := string(yys1321Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1278 { + switch yys1321 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -17684,15 +18295,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1280 := &x.Port - yym1281 := z.DecBinary() - _ = yym1281 + yyv1323 := &x.Port + yym1324 := z.DecBinary() + _ = yym1324 if false { - } else if z.HasExtensions() && z.DecExt(yyv1280) { - } else if !yym1281 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1280) + } else if z.HasExtensions() && z.DecExt(yyv1323) { + } else if !yym1324 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1323) } else { - z.DecFallback(yyv1280, false) + z.DecFallback(yyv1323, false) } } case "host": @@ -17711,18 +18322,18 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1284 := &x.HTTPHeaders - yym1285 := z.DecBinary() - _ = yym1285 + yyv1327 := &x.HTTPHeaders + yym1328 := z.DecBinary() + _ = yym1328 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1284), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1327), d) } } default: - z.DecStructFieldNotFound(-1, yys1278) - } // end switch yys1278 - } // end for yyj1278 + z.DecStructFieldNotFound(-1, yys1321) + } // end switch yys1321 + } // end for yyj1321 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17730,16 +18341,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1286 int - var yyb1286 bool - var yyhl1286 bool = l >= 0 - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + var yyj1329 int + var yyb1329 bool + var yyhl1329 bool = l >= 0 + yyj1329++ + if yyhl1329 { + yyb1329 = yyj1329 > l } else { - yyb1286 = r.CheckBreak() + yyb1329 = r.CheckBreak() } - if yyb1286 { + if yyb1329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17749,13 +18360,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1329++ + if yyhl1329 { + yyb1329 = yyj1329 > l } else { - yyb1286 = r.CheckBreak() + yyb1329 = r.CheckBreak() } - if yyb1286 { + if yyb1329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17763,24 +18374,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1288 := &x.Port - yym1289 := z.DecBinary() - _ = yym1289 + yyv1331 := &x.Port + yym1332 := z.DecBinary() + _ = yym1332 if false { - } else if z.HasExtensions() && z.DecExt(yyv1288) { - } else if !yym1289 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1288) + } else if z.HasExtensions() && z.DecExt(yyv1331) { + } else if !yym1332 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1331) } else { - z.DecFallback(yyv1288, false) + z.DecFallback(yyv1331, false) } } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1329++ + if yyhl1329 { + yyb1329 = yyj1329 > l } else { - yyb1286 = r.CheckBreak() + yyb1329 = r.CheckBreak() } - if yyb1286 { + if yyb1329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17790,13 +18401,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1329++ + if yyhl1329 { + yyb1329 = yyj1329 > l } else { - yyb1286 = r.CheckBreak() + yyb1329 = r.CheckBreak() } - if yyb1286 { + if yyb1329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17806,13 +18417,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1329++ + if yyhl1329 { + yyb1329 = yyj1329 > l } else { - yyb1286 = r.CheckBreak() + yyb1329 = r.CheckBreak() } - if yyb1286 { + if yyb1329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17820,26 +18431,26 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1292 := &x.HTTPHeaders - yym1293 := z.DecBinary() - _ = yym1293 + yyv1335 := &x.HTTPHeaders + yym1336 := z.DecBinary() + _ = yym1336 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1292), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1335), d) } } for { - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1329++ + if yyhl1329 { + yyb1329 = yyj1329 > l } else { - yyb1286 = r.CheckBreak() + yyb1329 = r.CheckBreak() } - if yyb1286 { + if yyb1329 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1286-1, "") + z.DecStructFieldNotFound(yyj1329-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17848,8 +18459,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1294 := z.EncBinary() - _ = yym1294 + yym1337 := z.EncBinary() + _ = yym1337 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17861,8 +18472,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1295 := z.DecBinary() - _ = yym1295 + yym1338 := z.DecBinary() + _ = yym1338 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17877,64 +18488,64 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1296 := z.EncBinary() - _ = yym1296 + yym1339 := z.EncBinary() + _ = yym1339 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1297 := !z.EncBinary() - yy2arr1297 := z.EncBasicHandle().StructToArray - var yyq1297 [1]bool - _, _, _ = yysep1297, yyq1297, yy2arr1297 - const yyr1297 bool = false - yyq1297[0] = true - var yynn1297 int - if yyr1297 || yy2arr1297 { + yysep1340 := !z.EncBinary() + yy2arr1340 := z.EncBasicHandle().StructToArray + var yyq1340 [1]bool + _, _, _ = yysep1340, yyq1340, yy2arr1340 + const yyr1340 bool = false + yyq1340[0] = true + var yynn1340 int + if yyr1340 || yy2arr1340 { r.EncodeArrayStart(1) } else { - yynn1297 = 0 - for _, b := range yyq1297 { + yynn1340 = 0 + for _, b := range yyq1340 { if b { - yynn1297++ + yynn1340++ } } - r.EncodeMapStart(yynn1297) - yynn1297 = 0 + r.EncodeMapStart(yynn1340) + yynn1340 = 0 } - if yyr1297 || yy2arr1297 { + if yyr1340 || yy2arr1340 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1297[0] { - yy1299 := &x.Port - yym1300 := z.EncBinary() - _ = yym1300 + if yyq1340[0] { + yy1342 := &x.Port + yym1343 := z.EncBinary() + _ = yym1343 if false { - } else if z.HasExtensions() && z.EncExt(yy1299) { - } else if !yym1300 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1299) + } else if z.HasExtensions() && z.EncExt(yy1342) { + } else if !yym1343 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1342) } else { - z.EncFallback(yy1299) + z.EncFallback(yy1342) } } else { r.EncodeNil() } } else { - if yyq1297[0] { + if yyq1340[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1301 := &x.Port - yym1302 := z.EncBinary() - _ = yym1302 + yy1344 := &x.Port + yym1345 := z.EncBinary() + _ = yym1345 if false { - } else if z.HasExtensions() && z.EncExt(yy1301) { - } else if !yym1302 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1301) + } else if z.HasExtensions() && z.EncExt(yy1344) { + } else if !yym1345 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1344) } else { - z.EncFallback(yy1301) + z.EncFallback(yy1344) } } } - if yyr1297 || yy2arr1297 { + if yyr1340 || yy2arr1340 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17947,25 +18558,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1303 := z.DecBinary() - _ = yym1303 + yym1346 := z.DecBinary() + _ = yym1346 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1304 := r.ContainerType() - if yyct1304 == codecSelferValueTypeMap1234 { - yyl1304 := r.ReadMapStart() - if yyl1304 == 0 { + yyct1347 := r.ContainerType() + if yyct1347 == codecSelferValueTypeMap1234 { + yyl1347 := r.ReadMapStart() + if yyl1347 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1304, d) + x.codecDecodeSelfFromMap(yyl1347, d) } - } else if yyct1304 == codecSelferValueTypeArray1234 { - yyl1304 := r.ReadArrayStart() - if yyl1304 == 0 { + } else if yyct1347 == codecSelferValueTypeArray1234 { + yyl1347 := r.ReadArrayStart() + if yyl1347 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1304, d) + x.codecDecodeSelfFromArray(yyl1347, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17977,12 +18588,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1305Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1305Slc - var yyhl1305 bool = l >= 0 - for yyj1305 := 0; ; yyj1305++ { - if yyhl1305 { - if yyj1305 >= 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 { @@ -17991,29 +18602,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1305Slc = r.DecodeBytes(yys1305Slc, true, true) - yys1305 := string(yys1305Slc) + yys1348Slc = r.DecodeBytes(yys1348Slc, true, true) + yys1348 := string(yys1348Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1305 { + switch yys1348 { case "port": if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1306 := &x.Port - yym1307 := z.DecBinary() - _ = yym1307 + yyv1349 := &x.Port + yym1350 := z.DecBinary() + _ = yym1350 if false { - } else if z.HasExtensions() && z.DecExt(yyv1306) { - } else if !yym1307 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1306) + } else if z.HasExtensions() && z.DecExt(yyv1349) { + } else if !yym1350 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1349) } else { - z.DecFallback(yyv1306, false) + z.DecFallback(yyv1349, false) } } default: - z.DecStructFieldNotFound(-1, yys1305) - } // end switch yys1305 - } // end for yyj1305 + z.DecStructFieldNotFound(-1, yys1348) + } // end switch yys1348 + } // end for yyj1348 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18021,16 +18632,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1308 int - var yyb1308 bool - var yyhl1308 bool = l >= 0 - yyj1308++ - if yyhl1308 { - yyb1308 = yyj1308 > l + var yyj1351 int + var yyb1351 bool + var yyhl1351 bool = l >= 0 + yyj1351++ + if yyhl1351 { + yyb1351 = yyj1351 > l } else { - yyb1308 = r.CheckBreak() + yyb1351 = r.CheckBreak() } - if yyb1308 { + if yyb1351 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18038,29 +18649,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1309 := &x.Port - yym1310 := z.DecBinary() - _ = yym1310 + yyv1352 := &x.Port + yym1353 := z.DecBinary() + _ = yym1353 if false { - } else if z.HasExtensions() && z.DecExt(yyv1309) { - } else if !yym1310 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1309) + } else if z.HasExtensions() && z.DecExt(yyv1352) { + } else if !yym1353 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1352) } else { - z.DecFallback(yyv1309, false) + z.DecFallback(yyv1352, false) } } for { - yyj1308++ - if yyhl1308 { - yyb1308 = yyj1308 > l + yyj1351++ + if yyhl1351 { + yyb1351 = yyj1351 > l } else { - yyb1308 = r.CheckBreak() + yyb1351 = r.CheckBreak() } - if yyb1308 { + if yyb1351 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1308-1, "") + z.DecStructFieldNotFound(yyj1351-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18072,38 +18683,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1311 := z.EncBinary() - _ = yym1311 + yym1354 := z.EncBinary() + _ = yym1354 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1312 := !z.EncBinary() - yy2arr1312 := z.EncBasicHandle().StructToArray - var yyq1312 [1]bool - _, _, _ = yysep1312, yyq1312, yy2arr1312 - const yyr1312 bool = false - yyq1312[0] = len(x.Command) != 0 - var yynn1312 int - if yyr1312 || yy2arr1312 { + yysep1355 := !z.EncBinary() + yy2arr1355 := z.EncBasicHandle().StructToArray + var yyq1355 [1]bool + _, _, _ = yysep1355, yyq1355, yy2arr1355 + const yyr1355 bool = false + yyq1355[0] = len(x.Command) != 0 + var yynn1355 int + if yyr1355 || yy2arr1355 { r.EncodeArrayStart(1) } else { - yynn1312 = 0 - for _, b := range yyq1312 { + yynn1355 = 0 + for _, b := range yyq1355 { if b { - yynn1312++ + yynn1355++ } } - r.EncodeMapStart(yynn1312) - yynn1312 = 0 + r.EncodeMapStart(yynn1355) + yynn1355 = 0 } - if yyr1312 || yy2arr1312 { + if yyr1355 || yy2arr1355 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1312[0] { + if yyq1355[0] { if x.Command == nil { r.EncodeNil() } else { - yym1314 := z.EncBinary() - _ = yym1314 + yym1357 := z.EncBinary() + _ = yym1357 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18113,15 +18724,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1312[0] { + if yyq1355[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1315 := z.EncBinary() - _ = yym1315 + yym1358 := z.EncBinary() + _ = yym1358 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18129,7 +18740,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1312 || yy2arr1312 { + if yyr1355 || yy2arr1355 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18142,25 +18753,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1316 := z.DecBinary() - _ = yym1316 + yym1359 := z.DecBinary() + _ = yym1359 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1317 := r.ContainerType() - if yyct1317 == codecSelferValueTypeMap1234 { - yyl1317 := r.ReadMapStart() - if yyl1317 == 0 { + yyct1360 := r.ContainerType() + if yyct1360 == codecSelferValueTypeMap1234 { + yyl1360 := r.ReadMapStart() + if yyl1360 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1317, d) + x.codecDecodeSelfFromMap(yyl1360, d) } - } else if yyct1317 == codecSelferValueTypeArray1234 { - yyl1317 := r.ReadArrayStart() - if yyl1317 == 0 { + } else if yyct1360 == codecSelferValueTypeArray1234 { + yyl1360 := r.ReadArrayStart() + if yyl1360 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1317, d) + x.codecDecodeSelfFromArray(yyl1360, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18172,12 +18783,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1318Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1318Slc - var yyhl1318 bool = l >= 0 - for yyj1318 := 0; ; yyj1318++ { - if yyhl1318 { - if yyj1318 >= l { + var yys1361Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1361Slc + var yyhl1361 bool = l >= 0 + for yyj1361 := 0; ; yyj1361++ { + if yyhl1361 { + if yyj1361 >= l { break } } else { @@ -18186,26 +18797,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1318Slc = r.DecodeBytes(yys1318Slc, true, true) - yys1318 := string(yys1318Slc) + yys1361Slc = r.DecodeBytes(yys1361Slc, true, true) + yys1361 := string(yys1361Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1318 { + switch yys1361 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1319 := &x.Command - yym1320 := z.DecBinary() - _ = yym1320 + yyv1362 := &x.Command + yym1363 := z.DecBinary() + _ = yym1363 if false { } else { - z.F.DecSliceStringX(yyv1319, false, d) + z.F.DecSliceStringX(yyv1362, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1318) - } // end switch yys1318 - } // end for yyj1318 + z.DecStructFieldNotFound(-1, yys1361) + } // end switch yys1361 + } // end for yyj1361 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18213,16 +18824,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1321 int - var yyb1321 bool - var yyhl1321 bool = l >= 0 - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + var yyj1364 int + var yyb1364 bool + var yyhl1364 bool = l >= 0 + yyj1364++ + if yyhl1364 { + yyb1364 = yyj1364 > l } else { - yyb1321 = r.CheckBreak() + yyb1364 = r.CheckBreak() } - if yyb1321 { + if yyb1364 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18230,26 +18841,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1322 := &x.Command - yym1323 := z.DecBinary() - _ = yym1323 + yyv1365 := &x.Command + yym1366 := z.DecBinary() + _ = yym1366 if false { } else { - z.F.DecSliceStringX(yyv1322, false, d) + z.F.DecSliceStringX(yyv1365, false, d) } } for { - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1364++ + if yyhl1364 { + yyb1364 = yyj1364 > l } else { - yyb1321 = r.CheckBreak() + yyb1364 = r.CheckBreak() } - if yyb1321 { + if yyb1364 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1321-1, "") + z.DecStructFieldNotFound(yyj1364-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18261,49 +18872,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1324 := z.EncBinary() - _ = yym1324 + yym1367 := z.EncBinary() + _ = yym1367 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1325 := !z.EncBinary() - yy2arr1325 := z.EncBasicHandle().StructToArray - var yyq1325 [8]bool - _, _, _ = yysep1325, yyq1325, yy2arr1325 - const yyr1325 bool = false - yyq1325[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1325[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1325[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1325[3] = x.InitialDelaySeconds != 0 - yyq1325[4] = x.TimeoutSeconds != 0 - yyq1325[5] = x.PeriodSeconds != 0 - yyq1325[6] = x.SuccessThreshold != 0 - yyq1325[7] = x.FailureThreshold != 0 - var yynn1325 int - if yyr1325 || yy2arr1325 { + yysep1368 := !z.EncBinary() + yy2arr1368 := z.EncBasicHandle().StructToArray + var yyq1368 [8]bool + _, _, _ = yysep1368, yyq1368, yy2arr1368 + const yyr1368 bool = false + yyq1368[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1368[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1368[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1368[3] = x.InitialDelaySeconds != 0 + yyq1368[4] = x.TimeoutSeconds != 0 + yyq1368[5] = x.PeriodSeconds != 0 + yyq1368[6] = x.SuccessThreshold != 0 + yyq1368[7] = x.FailureThreshold != 0 + var yynn1368 int + if yyr1368 || yy2arr1368 { r.EncodeArrayStart(8) } else { - yynn1325 = 0 - for _, b := range yyq1325 { + yynn1368 = 0 + for _, b := range yyq1368 { if b { - yynn1325++ + yynn1368++ } } - r.EncodeMapStart(yynn1325) - yynn1325 = 0 + r.EncodeMapStart(yynn1368) + yynn1368 = 0 } - var yyn1326 bool + var yyn1369 bool if x.Handler.Exec == nil { - yyn1326 = true - goto LABEL1326 + yyn1369 = true + goto LABEL1369 } - LABEL1326: - if yyr1325 || yy2arr1325 { - if yyn1326 { + LABEL1369: + if yyr1368 || yy2arr1368 { + if yyn1369 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[0] { + if yyq1368[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -18314,11 +18925,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1325[0] { + if yyq1368[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1326 { + if yyn1369 { r.EncodeNil() } else { if x.Exec == nil { @@ -18329,18 +18940,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1327 bool + var yyn1370 bool if x.Handler.HTTPGet == nil { - yyn1327 = true - goto LABEL1327 + yyn1370 = true + goto LABEL1370 } - LABEL1327: - if yyr1325 || yy2arr1325 { - if yyn1327 { + LABEL1370: + if yyr1368 || yy2arr1368 { + if yyn1370 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[1] { + if yyq1368[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -18351,11 +18962,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1325[1] { + if yyq1368[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1327 { + if yyn1370 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -18366,18 +18977,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1328 bool + var yyn1371 bool if x.Handler.TCPSocket == nil { - yyn1328 = true - goto LABEL1328 + yyn1371 = true + goto LABEL1371 } - LABEL1328: - if yyr1325 || yy2arr1325 { - if yyn1328 { + LABEL1371: + if yyr1368 || yy2arr1368 { + if yyn1371 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[2] { + if yyq1368[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -18388,11 +18999,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1325[2] { + if yyq1368[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1328 { + if yyn1371 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -18403,11 +19014,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1325 || yy2arr1325 { + if yyr1368 || yy2arr1368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[3] { - yym1330 := z.EncBinary() - _ = yym1330 + if yyq1368[3] { + yym1373 := z.EncBinary() + _ = yym1373 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -18416,23 +19027,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[3] { + if yyq1368[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1331 := z.EncBinary() - _ = yym1331 + yym1374 := z.EncBinary() + _ = yym1374 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1325 || yy2arr1325 { + if yyr1368 || yy2arr1368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[4] { - yym1333 := z.EncBinary() - _ = yym1333 + if yyq1368[4] { + yym1376 := z.EncBinary() + _ = yym1376 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -18441,23 +19052,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[4] { + if yyq1368[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1334 := z.EncBinary() - _ = yym1334 + yym1377 := z.EncBinary() + _ = yym1377 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1325 || yy2arr1325 { + if yyr1368 || yy2arr1368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[5] { - yym1336 := z.EncBinary() - _ = yym1336 + if yyq1368[5] { + yym1379 := z.EncBinary() + _ = yym1379 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -18466,23 +19077,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[5] { + if yyq1368[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1337 := z.EncBinary() - _ = yym1337 + yym1380 := z.EncBinary() + _ = yym1380 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1325 || yy2arr1325 { + if yyr1368 || yy2arr1368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[6] { - yym1339 := z.EncBinary() - _ = yym1339 + if yyq1368[6] { + yym1382 := z.EncBinary() + _ = yym1382 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -18491,23 +19102,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[6] { + if yyq1368[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1340 := z.EncBinary() - _ = yym1340 + yym1383 := z.EncBinary() + _ = yym1383 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1325 || yy2arr1325 { + if yyr1368 || yy2arr1368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[7] { - yym1342 := z.EncBinary() - _ = yym1342 + if yyq1368[7] { + yym1385 := z.EncBinary() + _ = yym1385 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -18516,19 +19127,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[7] { + if yyq1368[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1343 := z.EncBinary() - _ = yym1343 + yym1386 := z.EncBinary() + _ = yym1386 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1325 || yy2arr1325 { + if yyr1368 || yy2arr1368 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18541,25 +19152,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1344 := z.DecBinary() - _ = yym1344 + yym1387 := z.DecBinary() + _ = yym1387 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1345 := r.ContainerType() - if yyct1345 == codecSelferValueTypeMap1234 { - yyl1345 := r.ReadMapStart() - if yyl1345 == 0 { + yyct1388 := r.ContainerType() + if yyct1388 == codecSelferValueTypeMap1234 { + yyl1388 := r.ReadMapStart() + if yyl1388 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1345, d) + x.codecDecodeSelfFromMap(yyl1388, d) } - } else if yyct1345 == codecSelferValueTypeArray1234 { - yyl1345 := r.ReadArrayStart() - if yyl1345 == 0 { + } else if yyct1388 == codecSelferValueTypeArray1234 { + yyl1388 := r.ReadArrayStart() + if yyl1388 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1345, d) + x.codecDecodeSelfFromArray(yyl1388, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18571,12 +19182,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1346Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1346Slc - var yyhl1346 bool = l >= 0 - for yyj1346 := 0; ; yyj1346++ { - if yyhl1346 { - if yyj1346 >= l { + var yys1389Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1389Slc + var yyhl1389 bool = l >= 0 + for yyj1389 := 0; ; yyj1389++ { + if yyhl1389 { + if yyj1389 >= l { break } } else { @@ -18585,10 +19196,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1346Slc = r.DecodeBytes(yys1346Slc, true, true) - yys1346 := string(yys1346Slc) + yys1389Slc = r.DecodeBytes(yys1389Slc, true, true) + yys1389 := string(yys1389Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1346 { + switch yys1389 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -18662,9 +19273,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1346) - } // end switch yys1346 - } // end for yyj1346 + z.DecStructFieldNotFound(-1, yys1389) + } // end switch yys1389 + } // end for yyj1389 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18672,19 +19283,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1355 int - var yyb1355 bool - var yyhl1355 bool = l >= 0 + var yyj1398 int + var yyb1398 bool + var yyhl1398 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18702,13 +19313,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18726,13 +19337,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18747,13 +19358,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18763,13 +19374,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18779,13 +19390,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18795,13 +19406,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18811,13 +19422,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18828,17 +19439,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1398++ + if yyhl1398 { + yyb1398 = yyj1398 > l } else { - yyb1355 = r.CheckBreak() + yyb1398 = r.CheckBreak() } - if yyb1355 { + if yyb1398 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1355-1, "") + z.DecStructFieldNotFound(yyj1398-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18847,8 +19458,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1364 := z.EncBinary() - _ = yym1364 + yym1407 := z.EncBinary() + _ = yym1407 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18860,8 +19471,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1365 := z.DecBinary() - _ = yym1365 + yym1408 := z.DecBinary() + _ = yym1408 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18873,8 +19484,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1366 := z.EncBinary() - _ = yym1366 + yym1409 := z.EncBinary() + _ = yym1409 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18886,8 +19497,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1367 := z.DecBinary() - _ = yym1367 + yym1410 := z.DecBinary() + _ = yym1410 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18902,39 +19513,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1368 := z.EncBinary() - _ = yym1368 + yym1411 := z.EncBinary() + _ = yym1411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1369 := !z.EncBinary() - yy2arr1369 := z.EncBasicHandle().StructToArray - var yyq1369 [2]bool - _, _, _ = yysep1369, yyq1369, yy2arr1369 - const yyr1369 bool = false - yyq1369[0] = len(x.Add) != 0 - yyq1369[1] = len(x.Drop) != 0 - var yynn1369 int - if yyr1369 || yy2arr1369 { + yysep1412 := !z.EncBinary() + yy2arr1412 := z.EncBasicHandle().StructToArray + var yyq1412 [2]bool + _, _, _ = yysep1412, yyq1412, yy2arr1412 + const yyr1412 bool = false + yyq1412[0] = len(x.Add) != 0 + yyq1412[1] = len(x.Drop) != 0 + var yynn1412 int + if yyr1412 || yy2arr1412 { r.EncodeArrayStart(2) } else { - yynn1369 = 0 - for _, b := range yyq1369 { + yynn1412 = 0 + for _, b := range yyq1412 { if b { - yynn1369++ + yynn1412++ } } - r.EncodeMapStart(yynn1369) - yynn1369 = 0 + r.EncodeMapStart(yynn1412) + yynn1412 = 0 } - if yyr1369 || yy2arr1369 { + if yyr1412 || yy2arr1412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1369[0] { + if yyq1412[0] { if x.Add == nil { r.EncodeNil() } else { - yym1371 := z.EncBinary() - _ = yym1371 + yym1414 := z.EncBinary() + _ = yym1414 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -18944,15 +19555,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1369[0] { + if yyq1412[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1372 := z.EncBinary() - _ = yym1372 + yym1415 := z.EncBinary() + _ = yym1415 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -18960,14 +19571,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1369 || yy2arr1369 { + if yyr1412 || yy2arr1412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1369[1] { + if yyq1412[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1374 := z.EncBinary() - _ = yym1374 + yym1417 := z.EncBinary() + _ = yym1417 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -18977,15 +19588,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1369[1] { + if yyq1412[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1375 := z.EncBinary() - _ = yym1375 + yym1418 := z.EncBinary() + _ = yym1418 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -18993,7 +19604,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1369 || yy2arr1369 { + if yyr1412 || yy2arr1412 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19006,25 +19617,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1376 := z.DecBinary() - _ = yym1376 + yym1419 := z.DecBinary() + _ = yym1419 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1377 := r.ContainerType() - if yyct1377 == codecSelferValueTypeMap1234 { - yyl1377 := r.ReadMapStart() - if yyl1377 == 0 { + yyct1420 := r.ContainerType() + if yyct1420 == codecSelferValueTypeMap1234 { + yyl1420 := r.ReadMapStart() + if yyl1420 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1377, d) + x.codecDecodeSelfFromMap(yyl1420, d) } - } else if yyct1377 == codecSelferValueTypeArray1234 { - yyl1377 := r.ReadArrayStart() - if yyl1377 == 0 { + } else if yyct1420 == codecSelferValueTypeArray1234 { + yyl1420 := r.ReadArrayStart() + if yyl1420 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1377, d) + x.codecDecodeSelfFromArray(yyl1420, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19036,12 +19647,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1378Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1378Slc - var yyhl1378 bool = l >= 0 - for yyj1378 := 0; ; yyj1378++ { - if yyhl1378 { - if yyj1378 >= l { + var yys1421Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1421Slc + var yyhl1421 bool = l >= 0 + for yyj1421 := 0; ; yyj1421++ { + if yyhl1421 { + if yyj1421 >= l { break } } else { @@ -19050,38 +19661,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1378Slc = r.DecodeBytes(yys1378Slc, true, true) - yys1378 := string(yys1378Slc) + yys1421Slc = r.DecodeBytes(yys1421Slc, true, true) + yys1421 := string(yys1421Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1378 { + switch yys1421 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1379 := &x.Add - yym1380 := z.DecBinary() - _ = yym1380 + yyv1422 := &x.Add + yym1423 := z.DecBinary() + _ = yym1423 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1379), d) + h.decSliceCapability((*[]Capability)(yyv1422), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1381 := &x.Drop - yym1382 := z.DecBinary() - _ = yym1382 + yyv1424 := &x.Drop + yym1425 := z.DecBinary() + _ = yym1425 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1381), d) + h.decSliceCapability((*[]Capability)(yyv1424), d) } } default: - z.DecStructFieldNotFound(-1, yys1378) - } // end switch yys1378 - } // end for yyj1378 + z.DecStructFieldNotFound(-1, yys1421) + } // end switch yys1421 + } // end for yyj1421 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19089,16 +19700,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1383 int - var yyb1383 bool - var yyhl1383 bool = l >= 0 - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + var yyj1426 int + var yyb1426 bool + var yyhl1426 bool = l >= 0 + yyj1426++ + if yyhl1426 { + yyb1426 = yyj1426 > l } else { - yyb1383 = r.CheckBreak() + yyb1426 = r.CheckBreak() } - if yyb1383 { + if yyb1426 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19106,21 +19717,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1384 := &x.Add - yym1385 := z.DecBinary() - _ = yym1385 + yyv1427 := &x.Add + yym1428 := z.DecBinary() + _ = yym1428 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1384), d) + h.decSliceCapability((*[]Capability)(yyv1427), d) } } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1426++ + if yyhl1426 { + yyb1426 = yyj1426 > l } else { - yyb1383 = r.CheckBreak() + yyb1426 = r.CheckBreak() } - if yyb1383 { + if yyb1426 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19128,26 +19739,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1386 := &x.Drop - yym1387 := z.DecBinary() - _ = yym1387 + yyv1429 := &x.Drop + yym1430 := z.DecBinary() + _ = yym1430 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1386), d) + h.decSliceCapability((*[]Capability)(yyv1429), d) } } for { - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1426++ + if yyhl1426 { + yyb1426 = yyj1426 > l } else { - yyb1383 = r.CheckBreak() + yyb1426 = r.CheckBreak() } - if yyb1383 { + if yyb1426 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1383-1, "") + z.DecStructFieldNotFound(yyj1426-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19159,34 +19770,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1388 := z.EncBinary() - _ = yym1388 + yym1431 := z.EncBinary() + _ = yym1431 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1389 := !z.EncBinary() - yy2arr1389 := z.EncBasicHandle().StructToArray - var yyq1389 [2]bool - _, _, _ = yysep1389, yyq1389, yy2arr1389 - const yyr1389 bool = false - yyq1389[0] = len(x.Limits) != 0 - yyq1389[1] = len(x.Requests) != 0 - var yynn1389 int - if yyr1389 || yy2arr1389 { + yysep1432 := !z.EncBinary() + yy2arr1432 := z.EncBasicHandle().StructToArray + var yyq1432 [2]bool + _, _, _ = yysep1432, yyq1432, yy2arr1432 + const yyr1432 bool = false + yyq1432[0] = len(x.Limits) != 0 + yyq1432[1] = len(x.Requests) != 0 + var yynn1432 int + if yyr1432 || yy2arr1432 { r.EncodeArrayStart(2) } else { - yynn1389 = 0 - for _, b := range yyq1389 { + yynn1432 = 0 + for _, b := range yyq1432 { if b { - yynn1389++ + yynn1432++ } } - r.EncodeMapStart(yynn1389) - yynn1389 = 0 + r.EncodeMapStart(yynn1432) + yynn1432 = 0 } - if yyr1389 || yy2arr1389 { + if yyr1432 || yy2arr1432 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1389[0] { + if yyq1432[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -19196,7 +19807,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1389[0] { + if yyq1432[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19207,9 +19818,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1389 || yy2arr1389 { + if yyr1432 || yy2arr1432 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1389[1] { + if yyq1432[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -19219,7 +19830,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1389[1] { + if yyq1432[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19230,7 +19841,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1389 || yy2arr1389 { + if yyr1432 || yy2arr1432 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19243,25 +19854,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1392 := z.DecBinary() - _ = yym1392 + yym1435 := z.DecBinary() + _ = yym1435 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1393 := r.ContainerType() - if yyct1393 == codecSelferValueTypeMap1234 { - yyl1393 := r.ReadMapStart() - if yyl1393 == 0 { + yyct1436 := r.ContainerType() + if yyct1436 == codecSelferValueTypeMap1234 { + yyl1436 := r.ReadMapStart() + if yyl1436 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1393, d) + x.codecDecodeSelfFromMap(yyl1436, d) } - } else if yyct1393 == codecSelferValueTypeArray1234 { - yyl1393 := r.ReadArrayStart() - if yyl1393 == 0 { + } else if yyct1436 == codecSelferValueTypeArray1234 { + yyl1436 := r.ReadArrayStart() + if yyl1436 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1393, d) + x.codecDecodeSelfFromArray(yyl1436, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19273,12 +19884,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1394Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1394Slc - var yyhl1394 bool = l >= 0 - for yyj1394 := 0; ; yyj1394++ { - if yyhl1394 { - if yyj1394 >= l { + var yys1437Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1437Slc + var yyhl1437 bool = l >= 0 + for yyj1437 := 0; ; yyj1437++ { + if yyhl1437 { + if yyj1437 >= l { break } } else { @@ -19287,28 +19898,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1394Slc = r.DecodeBytes(yys1394Slc, true, true) - yys1394 := string(yys1394Slc) + yys1437Slc = r.DecodeBytes(yys1437Slc, true, true) + yys1437 := string(yys1437Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1394 { + switch yys1437 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1395 := &x.Limits - yyv1395.CodecDecodeSelf(d) + yyv1438 := &x.Limits + yyv1438.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1396 := &x.Requests - yyv1396.CodecDecodeSelf(d) + yyv1439 := &x.Requests + yyv1439.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1394) - } // end switch yys1394 - } // end for yyj1394 + z.DecStructFieldNotFound(-1, yys1437) + } // end switch yys1437 + } // end for yyj1437 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19316,16 +19927,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco 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 yyj1440 int + var yyb1440 bool + var yyhl1440 bool = l >= 0 + yyj1440++ + if yyhl1440 { + yyb1440 = yyj1440 > l } else { - yyb1397 = r.CheckBreak() + yyb1440 = r.CheckBreak() } - if yyb1397 { + if yyb1440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19333,16 +19944,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1398 := &x.Limits - yyv1398.CodecDecodeSelf(d) + yyv1441 := &x.Limits + yyv1441.CodecDecodeSelf(d) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1440++ + if yyhl1440 { + yyb1440 = yyj1440 > l } else { - yyb1397 = r.CheckBreak() + yyb1440 = r.CheckBreak() } - if yyb1397 { + if yyb1440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19350,21 +19961,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1399 := &x.Requests - yyv1399.CodecDecodeSelf(d) + yyv1442 := &x.Requests + yyv1442.CodecDecodeSelf(d) } for { - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1440++ + if yyhl1440 { + yyb1440 = yyj1440 > l } else { - yyb1397 = r.CheckBreak() + yyb1440 = r.CheckBreak() } - if yyb1397 { + if yyb1440 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1397-1, "") + z.DecStructFieldNotFound(yyj1440-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19376,48 +19987,48 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1400 := z.EncBinary() - _ = yym1400 + yym1443 := z.EncBinary() + _ = yym1443 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1401 := !z.EncBinary() - yy2arr1401 := z.EncBasicHandle().StructToArray - var yyq1401 [18]bool - _, _, _ = yysep1401, yyq1401, yy2arr1401 - const yyr1401 bool = false - yyq1401[2] = len(x.Command) != 0 - yyq1401[3] = len(x.Args) != 0 - yyq1401[4] = x.WorkingDir != "" - yyq1401[5] = len(x.Ports) != 0 - yyq1401[6] = len(x.Env) != 0 - yyq1401[7] = true - yyq1401[8] = len(x.VolumeMounts) != 0 - yyq1401[9] = x.LivenessProbe != nil - yyq1401[10] = x.ReadinessProbe != nil - yyq1401[11] = x.Lifecycle != nil - yyq1401[12] = x.TerminationMessagePath != "" - yyq1401[14] = x.SecurityContext != nil - yyq1401[15] = x.Stdin != false - yyq1401[16] = x.StdinOnce != false - yyq1401[17] = x.TTY != false - var yynn1401 int - if yyr1401 || yy2arr1401 { + yysep1444 := !z.EncBinary() + yy2arr1444 := z.EncBasicHandle().StructToArray + var yyq1444 [18]bool + _, _, _ = yysep1444, yyq1444, yy2arr1444 + const yyr1444 bool = false + yyq1444[2] = len(x.Command) != 0 + yyq1444[3] = len(x.Args) != 0 + yyq1444[4] = x.WorkingDir != "" + yyq1444[5] = len(x.Ports) != 0 + yyq1444[6] = len(x.Env) != 0 + yyq1444[7] = true + yyq1444[8] = len(x.VolumeMounts) != 0 + yyq1444[9] = x.LivenessProbe != nil + yyq1444[10] = x.ReadinessProbe != nil + yyq1444[11] = x.Lifecycle != nil + yyq1444[12] = x.TerminationMessagePath != "" + yyq1444[14] = x.SecurityContext != nil + yyq1444[15] = x.Stdin != false + yyq1444[16] = x.StdinOnce != false + yyq1444[17] = x.TTY != false + var yynn1444 int + if yyr1444 || yy2arr1444 { r.EncodeArrayStart(18) } else { - yynn1401 = 3 - for _, b := range yyq1401 { + yynn1444 = 3 + for _, b := range yyq1444 { if b { - yynn1401++ + yynn1444++ } } - r.EncodeMapStart(yynn1401) - yynn1401 = 0 + r.EncodeMapStart(yynn1444) + yynn1444 = 0 } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1403 := z.EncBinary() - _ = yym1403 + yym1446 := z.EncBinary() + _ = yym1446 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -19426,17 +20037,17 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1404 := z.EncBinary() - _ = yym1404 + yym1447 := z.EncBinary() + _ = yym1447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1406 := z.EncBinary() - _ = yym1406 + yym1449 := z.EncBinary() + _ = yym1449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -19445,21 +20056,21 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1407 := z.EncBinary() - _ = yym1407 + yym1450 := z.EncBinary() + _ = yym1450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[2] { + if yyq1444[2] { if x.Command == nil { r.EncodeNil() } else { - yym1409 := z.EncBinary() - _ = yym1409 + yym1452 := z.EncBinary() + _ = yym1452 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -19469,15 +20080,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[2] { + if yyq1444[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1410 := z.EncBinary() - _ = yym1410 + yym1453 := z.EncBinary() + _ = yym1453 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -19485,14 +20096,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[3] { + if yyq1444[3] { if x.Args == nil { r.EncodeNil() } else { - yym1412 := z.EncBinary() - _ = yym1412 + yym1455 := z.EncBinary() + _ = yym1455 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -19502,15 +20113,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[3] { + if yyq1444[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1413 := z.EncBinary() - _ = yym1413 + yym1456 := z.EncBinary() + _ = yym1456 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -19518,11 +20129,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[4] { - yym1415 := z.EncBinary() - _ = yym1415 + if yyq1444[4] { + yym1458 := z.EncBinary() + _ = yym1458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -19531,26 +20142,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1401[4] { + if yyq1444[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1416 := z.EncBinary() - _ = yym1416 + yym1459 := z.EncBinary() + _ = yym1459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[5] { + if yyq1444[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1418 := z.EncBinary() - _ = yym1418 + yym1461 := z.EncBinary() + _ = yym1461 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -19560,15 +20171,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[5] { + if yyq1444[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1419 := z.EncBinary() - _ = yym1419 + yym1462 := z.EncBinary() + _ = yym1462 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -19576,14 +20187,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[6] { + if yyq1444[6] { if x.Env == nil { r.EncodeNil() } else { - yym1421 := z.EncBinary() - _ = yym1421 + yym1464 := z.EncBinary() + _ = yym1464 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -19593,15 +20204,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[6] { + if yyq1444[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1422 := z.EncBinary() - _ = yym1422 + yym1465 := z.EncBinary() + _ = yym1465 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -19609,31 +20220,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[7] { - yy1424 := &x.Resources - yy1424.CodecEncodeSelf(e) + if yyq1444[7] { + yy1467 := &x.Resources + yy1467.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1401[7] { + if yyq1444[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1425 := &x.Resources - yy1425.CodecEncodeSelf(e) + yy1468 := &x.Resources + yy1468.CodecEncodeSelf(e) } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[8] { + if yyq1444[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1427 := z.EncBinary() - _ = yym1427 + yym1470 := z.EncBinary() + _ = yym1470 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -19643,15 +20254,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[8] { + if yyq1444[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1428 := z.EncBinary() - _ = yym1428 + yym1471 := z.EncBinary() + _ = yym1471 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -19659,9 +20270,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[9] { + if yyq1444[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -19671,7 +20282,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[9] { + if yyq1444[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19682,9 +20293,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[10] { + if yyq1444[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -19694,7 +20305,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[10] { + if yyq1444[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19705,9 +20316,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[11] { + if yyq1444[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -19717,7 +20328,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[11] { + if yyq1444[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19728,11 +20339,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[12] { - yym1433 := z.EncBinary() - _ = yym1433 + if yyq1444[12] { + yym1476 := z.EncBinary() + _ = yym1476 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -19741,19 +20352,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1401[12] { + if yyq1444[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1434 := z.EncBinary() - _ = yym1434 + yym1477 := z.EncBinary() + _ = yym1477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.ImagePullPolicy.CodecEncodeSelf(e) } else { @@ -19762,9 +20373,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[14] { + if yyq1444[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -19774,7 +20385,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[14] { + if yyq1444[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19785,11 +20396,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[15] { - yym1438 := z.EncBinary() - _ = yym1438 + if yyq1444[15] { + yym1481 := z.EncBinary() + _ = yym1481 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -19798,23 +20409,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1401[15] { + if yyq1444[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1439 := z.EncBinary() - _ = yym1439 + yym1482 := z.EncBinary() + _ = yym1482 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[16] { - yym1441 := z.EncBinary() - _ = yym1441 + if yyq1444[16] { + yym1484 := z.EncBinary() + _ = yym1484 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -19823,23 +20434,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1401[16] { + if yyq1444[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1442 := z.EncBinary() - _ = yym1442 + yym1485 := z.EncBinary() + _ = yym1485 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[17] { - yym1444 := z.EncBinary() - _ = yym1444 + if yyq1444[17] { + yym1487 := z.EncBinary() + _ = yym1487 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -19848,19 +20459,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1401[17] { + if yyq1444[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1445 := z.EncBinary() - _ = yym1445 + yym1488 := z.EncBinary() + _ = yym1488 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1401 || yy2arr1401 { + if yyr1444 || yy2arr1444 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19873,25 +20484,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1446 := z.DecBinary() - _ = yym1446 + yym1489 := z.DecBinary() + _ = yym1489 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1447 := r.ContainerType() - if yyct1447 == codecSelferValueTypeMap1234 { - yyl1447 := r.ReadMapStart() - if yyl1447 == 0 { + yyct1490 := r.ContainerType() + if yyct1490 == codecSelferValueTypeMap1234 { + yyl1490 := r.ReadMapStart() + if yyl1490 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1447, d) + x.codecDecodeSelfFromMap(yyl1490, d) } - } else if yyct1447 == codecSelferValueTypeArray1234 { - yyl1447 := r.ReadArrayStart() - if yyl1447 == 0 { + } else if yyct1490 == codecSelferValueTypeArray1234 { + yyl1490 := r.ReadArrayStart() + if yyl1490 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1447, d) + x.codecDecodeSelfFromArray(yyl1490, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19903,12 +20514,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1448Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1448Slc - var yyhl1448 bool = l >= 0 - for yyj1448 := 0; ; yyj1448++ { - if yyhl1448 { - if yyj1448 >= l { + var yys1491Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1491Slc + var yyhl1491 bool = l >= 0 + for yyj1491 := 0; ; yyj1491++ { + if yyhl1491 { + if yyj1491 >= l { break } } else { @@ -19917,10 +20528,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1448Slc = r.DecodeBytes(yys1448Slc, true, true) - yys1448 := string(yys1448Slc) + yys1491Slc = r.DecodeBytes(yys1491Slc, true, true) + yys1491 := string(yys1491Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1448 { + switch yys1491 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -19937,24 +20548,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1451 := &x.Command - yym1452 := z.DecBinary() - _ = yym1452 + yyv1494 := &x.Command + yym1495 := z.DecBinary() + _ = yym1495 if false { } else { - z.F.DecSliceStringX(yyv1451, false, d) + z.F.DecSliceStringX(yyv1494, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1453 := &x.Args - yym1454 := z.DecBinary() - _ = yym1454 + yyv1496 := &x.Args + yym1497 := z.DecBinary() + _ = yym1497 if false { } else { - z.F.DecSliceStringX(yyv1453, false, d) + z.F.DecSliceStringX(yyv1496, false, d) } } case "workingDir": @@ -19967,43 +20578,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1456 := &x.Ports - yym1457 := z.DecBinary() - _ = yym1457 + yyv1499 := &x.Ports + yym1500 := z.DecBinary() + _ = yym1500 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1456), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1499), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1458 := &x.Env - yym1459 := z.DecBinary() - _ = yym1459 + yyv1501 := &x.Env + yym1502 := z.DecBinary() + _ = yym1502 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1458), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1501), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1460 := &x.Resources - yyv1460.CodecDecodeSelf(d) + yyv1503 := &x.Resources + yyv1503.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1461 := &x.VolumeMounts - yym1462 := z.DecBinary() - _ = yym1462 + yyv1504 := &x.VolumeMounts + yym1505 := z.DecBinary() + _ = yym1505 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1461), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1504), d) } } case "livenessProbe": @@ -20081,9 +20692,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1448) - } // end switch yys1448 - } // end for yyj1448 + z.DecStructFieldNotFound(-1, yys1491) + } // end switch yys1491 + } // end for yyj1491 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20091,16 +20702,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1472 int - var yyb1472 bool - var yyhl1472 bool = l >= 0 - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + var yyj1515 int + var yyb1515 bool + var yyhl1515 bool = l >= 0 + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20110,13 +20721,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20126,13 +20737,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20140,21 +20751,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1475 := &x.Command - yym1476 := z.DecBinary() - _ = yym1476 + yyv1518 := &x.Command + yym1519 := z.DecBinary() + _ = yym1519 if false { } else { - z.F.DecSliceStringX(yyv1475, false, d) + z.F.DecSliceStringX(yyv1518, false, d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20162,21 +20773,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1477 := &x.Args - yym1478 := z.DecBinary() - _ = yym1478 + yyv1520 := &x.Args + yym1521 := z.DecBinary() + _ = yym1521 if false { } else { - z.F.DecSliceStringX(yyv1477, false, d) + z.F.DecSliceStringX(yyv1520, false, d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20186,13 +20797,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20200,21 +20811,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1480 := &x.Ports - yym1481 := z.DecBinary() - _ = yym1481 + yyv1523 := &x.Ports + yym1524 := z.DecBinary() + _ = yym1524 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1480), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1523), d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20222,21 +20833,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1482 := &x.Env - yym1483 := z.DecBinary() - _ = yym1483 + yyv1525 := &x.Env + yym1526 := z.DecBinary() + _ = yym1526 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1482), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1525), d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20244,16 +20855,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1484 := &x.Resources - yyv1484.CodecDecodeSelf(d) + yyv1527 := &x.Resources + yyv1527.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20261,21 +20872,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1485 := &x.VolumeMounts - yym1486 := z.DecBinary() - _ = yym1486 + yyv1528 := &x.VolumeMounts + yym1529 := z.DecBinary() + _ = yym1529 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1485), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1528), d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20290,13 +20901,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20311,13 +20922,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20332,13 +20943,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20348,13 +20959,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20364,13 +20975,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20385,13 +20996,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20401,13 +21012,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20417,13 +21028,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20434,17 +21045,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1472-1, "") + z.DecStructFieldNotFound(yyj1515-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20456,35 +21067,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1496 := z.EncBinary() - _ = yym1496 + yym1539 := z.EncBinary() + _ = yym1539 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1497 := !z.EncBinary() - yy2arr1497 := z.EncBasicHandle().StructToArray - var yyq1497 [3]bool - _, _, _ = yysep1497, yyq1497, yy2arr1497 - const yyr1497 bool = false - yyq1497[0] = x.Exec != nil - yyq1497[1] = x.HTTPGet != nil - yyq1497[2] = x.TCPSocket != nil - var yynn1497 int - if yyr1497 || yy2arr1497 { + yysep1540 := !z.EncBinary() + yy2arr1540 := z.EncBasicHandle().StructToArray + var yyq1540 [3]bool + _, _, _ = yysep1540, yyq1540, yy2arr1540 + const yyr1540 bool = false + yyq1540[0] = x.Exec != nil + yyq1540[1] = x.HTTPGet != nil + yyq1540[2] = x.TCPSocket != nil + var yynn1540 int + if yyr1540 || yy2arr1540 { r.EncodeArrayStart(3) } else { - yynn1497 = 0 - for _, b := range yyq1497 { + yynn1540 = 0 + for _, b := range yyq1540 { if b { - yynn1497++ + yynn1540++ } } - r.EncodeMapStart(yynn1497) - yynn1497 = 0 + r.EncodeMapStart(yynn1540) + yynn1540 = 0 } - if yyr1497 || yy2arr1497 { + if yyr1540 || yy2arr1540 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1497[0] { + if yyq1540[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -20494,7 +21105,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1497[0] { + if yyq1540[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20505,9 +21116,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1497 || yy2arr1497 { + if yyr1540 || yy2arr1540 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1497[1] { + if yyq1540[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -20517,7 +21128,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1497[1] { + if yyq1540[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20528,9 +21139,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1497 || yy2arr1497 { + if yyr1540 || yy2arr1540 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1497[2] { + if yyq1540[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -20540,7 +21151,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1497[2] { + if yyq1540[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20551,7 +21162,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1497 || yy2arr1497 { + if yyr1540 || yy2arr1540 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20564,25 +21175,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1501 := z.DecBinary() - _ = yym1501 + yym1544 := z.DecBinary() + _ = yym1544 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1502 := r.ContainerType() - if yyct1502 == codecSelferValueTypeMap1234 { - yyl1502 := r.ReadMapStart() - if yyl1502 == 0 { + yyct1545 := r.ContainerType() + if yyct1545 == codecSelferValueTypeMap1234 { + yyl1545 := r.ReadMapStart() + if yyl1545 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1502, d) + x.codecDecodeSelfFromMap(yyl1545, d) } - } else if yyct1502 == codecSelferValueTypeArray1234 { - yyl1502 := r.ReadArrayStart() - if yyl1502 == 0 { + } else if yyct1545 == codecSelferValueTypeArray1234 { + yyl1545 := r.ReadArrayStart() + if yyl1545 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1502, d) + x.codecDecodeSelfFromArray(yyl1545, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20594,12 +21205,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1503Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1503Slc - var yyhl1503 bool = l >= 0 - for yyj1503 := 0; ; yyj1503++ { - if yyhl1503 { - if yyj1503 >= l { + var yys1546Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1546Slc + var yyhl1546 bool = l >= 0 + for yyj1546 := 0; ; yyj1546++ { + if yyhl1546 { + if yyj1546 >= l { break } } else { @@ -20608,10 +21219,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1503Slc = r.DecodeBytes(yys1503Slc, true, true) - yys1503 := string(yys1503Slc) + yys1546Slc = r.DecodeBytes(yys1546Slc, true, true) + yys1546 := string(yys1546Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1503 { + switch yys1546 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -20646,9 +21257,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1503) - } // end switch yys1503 - } // end for yyj1503 + z.DecStructFieldNotFound(-1, yys1546) + } // end switch yys1546 + } // end for yyj1546 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20656,16 +21267,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1507 int - var yyb1507 bool - var yyhl1507 bool = l >= 0 - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + var yyj1550 int + var yyb1550 bool + var yyhl1550 bool = l >= 0 + yyj1550++ + if yyhl1550 { + yyb1550 = yyj1550 > l } else { - yyb1507 = r.CheckBreak() + yyb1550 = r.CheckBreak() } - if yyb1507 { + if yyb1550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20680,13 +21291,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + yyj1550++ + if yyhl1550 { + yyb1550 = yyj1550 > l } else { - yyb1507 = r.CheckBreak() + yyb1550 = r.CheckBreak() } - if yyb1507 { + if yyb1550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20701,13 +21312,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + yyj1550++ + if yyhl1550 { + yyb1550 = yyj1550 > l } else { - yyb1507 = r.CheckBreak() + yyb1550 = r.CheckBreak() } - if yyb1507 { + if yyb1550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20723,17 +21334,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + yyj1550++ + if yyhl1550 { + yyb1550 = yyj1550 > l } else { - yyb1507 = r.CheckBreak() + yyb1550 = r.CheckBreak() } - if yyb1507 { + if yyb1550 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1507-1, "") + z.DecStructFieldNotFound(yyj1550-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20745,34 +21356,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1511 := z.EncBinary() - _ = yym1511 + yym1554 := z.EncBinary() + _ = yym1554 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1512 := !z.EncBinary() - yy2arr1512 := z.EncBasicHandle().StructToArray - var yyq1512 [2]bool - _, _, _ = yysep1512, yyq1512, yy2arr1512 - const yyr1512 bool = false - yyq1512[0] = x.PostStart != nil - yyq1512[1] = x.PreStop != nil - var yynn1512 int - if yyr1512 || yy2arr1512 { + yysep1555 := !z.EncBinary() + yy2arr1555 := z.EncBasicHandle().StructToArray + var yyq1555 [2]bool + _, _, _ = yysep1555, yyq1555, yy2arr1555 + const yyr1555 bool = false + yyq1555[0] = x.PostStart != nil + yyq1555[1] = x.PreStop != nil + var yynn1555 int + if yyr1555 || yy2arr1555 { r.EncodeArrayStart(2) } else { - yynn1512 = 0 - for _, b := range yyq1512 { + yynn1555 = 0 + for _, b := range yyq1555 { if b { - yynn1512++ + yynn1555++ } } - r.EncodeMapStart(yynn1512) - yynn1512 = 0 + r.EncodeMapStart(yynn1555) + yynn1555 = 0 } - if yyr1512 || yy2arr1512 { + if yyr1555 || yy2arr1555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1512[0] { + if yyq1555[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -20782,7 +21393,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1512[0] { + if yyq1555[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20793,9 +21404,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1512 || yy2arr1512 { + if yyr1555 || yy2arr1555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1512[1] { + if yyq1555[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -20805,7 +21416,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1512[1] { + if yyq1555[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20816,7 +21427,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1512 || yy2arr1512 { + if yyr1555 || yy2arr1555 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20829,25 +21440,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1515 := z.DecBinary() - _ = yym1515 + yym1558 := z.DecBinary() + _ = yym1558 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1516 := r.ContainerType() - if yyct1516 == codecSelferValueTypeMap1234 { - yyl1516 := r.ReadMapStart() - if yyl1516 == 0 { + yyct1559 := r.ContainerType() + if yyct1559 == codecSelferValueTypeMap1234 { + yyl1559 := r.ReadMapStart() + if yyl1559 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1516, d) + x.codecDecodeSelfFromMap(yyl1559, d) } - } else if yyct1516 == codecSelferValueTypeArray1234 { - yyl1516 := r.ReadArrayStart() - if yyl1516 == 0 { + } else if yyct1559 == codecSelferValueTypeArray1234 { + yyl1559 := r.ReadArrayStart() + if yyl1559 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1516, d) + x.codecDecodeSelfFromArray(yyl1559, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20859,12 +21470,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1517Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1517Slc - var yyhl1517 bool = l >= 0 - for yyj1517 := 0; ; yyj1517++ { - if yyhl1517 { - if yyj1517 >= l { + var yys1560Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1560Slc + var yyhl1560 bool = l >= 0 + for yyj1560 := 0; ; yyj1560++ { + if yyhl1560 { + if yyj1560 >= l { break } } else { @@ -20873,10 +21484,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1517Slc = r.DecodeBytes(yys1517Slc, true, true) - yys1517 := string(yys1517Slc) + yys1560Slc = r.DecodeBytes(yys1560Slc, true, true) + yys1560 := string(yys1560Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1517 { + switch yys1560 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -20900,9 +21511,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1517) - } // end switch yys1517 - } // end for yyj1517 + z.DecStructFieldNotFound(-1, yys1560) + } // end switch yys1560 + } // end for yyj1560 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20910,16 +21521,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1520 int - var yyb1520 bool - var yyhl1520 bool = l >= 0 - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + var yyj1563 int + var yyb1563 bool + var yyhl1563 bool = l >= 0 + yyj1563++ + if yyhl1563 { + yyb1563 = yyj1563 > l } else { - yyb1520 = r.CheckBreak() + yyb1563 = r.CheckBreak() } - if yyb1520 { + if yyb1563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20934,13 +21545,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1563++ + if yyhl1563 { + yyb1563 = yyj1563 > l } else { - yyb1520 = r.CheckBreak() + yyb1563 = r.CheckBreak() } - if yyb1520 { + if yyb1563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20956,17 +21567,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1563++ + if yyhl1563 { + yyb1563 = yyj1563 > l } else { - yyb1520 = r.CheckBreak() + yyb1563 = r.CheckBreak() } - if yyb1520 { + if yyb1563 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1520-1, "") + z.DecStructFieldNotFound(yyj1563-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20975,8 +21586,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1523 := z.EncBinary() - _ = yym1523 + yym1566 := z.EncBinary() + _ = yym1566 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -20988,8 +21599,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1524 := z.DecBinary() - _ = yym1524 + yym1567 := z.DecBinary() + _ = yym1567 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -21004,36 +21615,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1525 := z.EncBinary() - _ = yym1525 + yym1568 := z.EncBinary() + _ = yym1568 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1526 := !z.EncBinary() - yy2arr1526 := z.EncBasicHandle().StructToArray - var yyq1526 [2]bool - _, _, _ = yysep1526, yyq1526, yy2arr1526 - const yyr1526 bool = false - yyq1526[0] = x.Reason != "" - yyq1526[1] = x.Message != "" - var yynn1526 int - if yyr1526 || yy2arr1526 { + yysep1569 := !z.EncBinary() + yy2arr1569 := z.EncBasicHandle().StructToArray + var yyq1569 [2]bool + _, _, _ = yysep1569, yyq1569, yy2arr1569 + const yyr1569 bool = false + yyq1569[0] = x.Reason != "" + yyq1569[1] = x.Message != "" + var yynn1569 int + if yyr1569 || yy2arr1569 { r.EncodeArrayStart(2) } else { - yynn1526 = 0 - for _, b := range yyq1526 { + yynn1569 = 0 + for _, b := range yyq1569 { if b { - yynn1526++ + yynn1569++ } } - r.EncodeMapStart(yynn1526) - yynn1526 = 0 + r.EncodeMapStart(yynn1569) + yynn1569 = 0 } - if yyr1526 || yy2arr1526 { + if yyr1569 || yy2arr1569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1526[0] { - yym1528 := z.EncBinary() - _ = yym1528 + if yyq1569[0] { + yym1571 := z.EncBinary() + _ = yym1571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -21042,23 +21653,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1526[0] { + if yyq1569[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1529 := z.EncBinary() - _ = yym1529 + yym1572 := z.EncBinary() + _ = yym1572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1526 || yy2arr1526 { + if yyr1569 || yy2arr1569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1526[1] { - yym1531 := z.EncBinary() - _ = yym1531 + if yyq1569[1] { + yym1574 := z.EncBinary() + _ = yym1574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -21067,19 +21678,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1526[1] { + if yyq1569[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1532 := z.EncBinary() - _ = yym1532 + yym1575 := z.EncBinary() + _ = yym1575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1526 || yy2arr1526 { + if yyr1569 || yy2arr1569 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21092,25 +21703,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1533 := z.DecBinary() - _ = yym1533 + yym1576 := z.DecBinary() + _ = yym1576 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1534 := r.ContainerType() - if yyct1534 == codecSelferValueTypeMap1234 { - yyl1534 := r.ReadMapStart() - if yyl1534 == 0 { + yyct1577 := r.ContainerType() + if yyct1577 == codecSelferValueTypeMap1234 { + yyl1577 := r.ReadMapStart() + if yyl1577 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1534, d) + x.codecDecodeSelfFromMap(yyl1577, d) } - } else if yyct1534 == codecSelferValueTypeArray1234 { - yyl1534 := r.ReadArrayStart() - if yyl1534 == 0 { + } else if yyct1577 == codecSelferValueTypeArray1234 { + yyl1577 := r.ReadArrayStart() + if yyl1577 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1534, d) + x.codecDecodeSelfFromArray(yyl1577, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21122,12 +21733,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod 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 yys1578Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1578Slc + var yyhl1578 bool = l >= 0 + for yyj1578 := 0; ; yyj1578++ { + if yyhl1578 { + if yyj1578 >= l { break } } else { @@ -21136,10 +21747,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1535Slc = r.DecodeBytes(yys1535Slc, true, true) - yys1535 := string(yys1535Slc) + yys1578Slc = r.DecodeBytes(yys1578Slc, true, true) + yys1578 := string(yys1578Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1535 { + switch yys1578 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -21153,9 +21764,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1535) - } // end switch yys1535 - } // end for yyj1535 + z.DecStructFieldNotFound(-1, yys1578) + } // end switch yys1578 + } // end for yyj1578 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21163,16 +21774,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec 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 yyj1581 int + var yyb1581 bool + var yyhl1581 bool = l >= 0 + yyj1581++ + if yyhl1581 { + yyb1581 = yyj1581 > l } else { - yyb1538 = r.CheckBreak() + yyb1581 = r.CheckBreak() } - if yyb1538 { + if yyb1581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21182,13 +21793,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1538++ - if yyhl1538 { - yyb1538 = yyj1538 > l + yyj1581++ + if yyhl1581 { + yyb1581 = yyj1581 > l } else { - yyb1538 = r.CheckBreak() + yyb1581 = r.CheckBreak() } - if yyb1538 { + if yyb1581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21199,17 +21810,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1538++ - if yyhl1538 { - yyb1538 = yyj1538 > l + yyj1581++ + if yyhl1581 { + yyb1581 = yyj1581 > l } else { - yyb1538 = r.CheckBreak() + yyb1581 = r.CheckBreak() } - if yyb1538 { + if yyb1581 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1538-1, "") + z.DecStructFieldNotFound(yyj1581-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21221,68 +21832,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1541 := z.EncBinary() - _ = yym1541 + yym1584 := z.EncBinary() + _ = yym1584 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1542 := !z.EncBinary() - yy2arr1542 := z.EncBasicHandle().StructToArray - var yyq1542 [1]bool - _, _, _ = yysep1542, yyq1542, yy2arr1542 - const yyr1542 bool = false - yyq1542[0] = true - var yynn1542 int - if yyr1542 || yy2arr1542 { + yysep1585 := !z.EncBinary() + yy2arr1585 := z.EncBasicHandle().StructToArray + var yyq1585 [1]bool + _, _, _ = yysep1585, yyq1585, yy2arr1585 + const yyr1585 bool = false + yyq1585[0] = true + var yynn1585 int + if yyr1585 || yy2arr1585 { r.EncodeArrayStart(1) } else { - yynn1542 = 0 - for _, b := range yyq1542 { + yynn1585 = 0 + for _, b := range yyq1585 { if b { - yynn1542++ + yynn1585++ } } - r.EncodeMapStart(yynn1542) - yynn1542 = 0 + r.EncodeMapStart(yynn1585) + yynn1585 = 0 } - if yyr1542 || yy2arr1542 { + if yyr1585 || yy2arr1585 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1542[0] { - yy1544 := &x.StartedAt - yym1545 := z.EncBinary() - _ = yym1545 + if yyq1585[0] { + yy1587 := &x.StartedAt + yym1588 := z.EncBinary() + _ = yym1588 if false { - } else if z.HasExtensions() && z.EncExt(yy1544) { - } else if yym1545 { - z.EncBinaryMarshal(yy1544) - } else if !yym1545 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1544) + } else if z.HasExtensions() && z.EncExt(yy1587) { + } else if yym1588 { + z.EncBinaryMarshal(yy1587) + } else if !yym1588 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1587) } else { - z.EncFallback(yy1544) + z.EncFallback(yy1587) } } else { r.EncodeNil() } } else { - if yyq1542[0] { + if yyq1585[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1546 := &x.StartedAt - yym1547 := z.EncBinary() - _ = yym1547 + yy1589 := &x.StartedAt + yym1590 := z.EncBinary() + _ = yym1590 if false { - } else if z.HasExtensions() && z.EncExt(yy1546) { - } else if yym1547 { - z.EncBinaryMarshal(yy1546) - } else if !yym1547 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1546) + } else if z.HasExtensions() && z.EncExt(yy1589) { + } else if yym1590 { + z.EncBinaryMarshal(yy1589) + } else if !yym1590 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1589) } else { - z.EncFallback(yy1546) + z.EncFallback(yy1589) } } } - if yyr1542 || yy2arr1542 { + if yyr1585 || yy2arr1585 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21295,25 +21906,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1548 := z.DecBinary() - _ = yym1548 + yym1591 := z.DecBinary() + _ = yym1591 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1549 := r.ContainerType() - if yyct1549 == codecSelferValueTypeMap1234 { - yyl1549 := r.ReadMapStart() - if yyl1549 == 0 { + yyct1592 := r.ContainerType() + if yyct1592 == codecSelferValueTypeMap1234 { + yyl1592 := r.ReadMapStart() + if yyl1592 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1549, d) + x.codecDecodeSelfFromMap(yyl1592, d) } - } else if yyct1549 == codecSelferValueTypeArray1234 { - yyl1549 := r.ReadArrayStart() - if yyl1549 == 0 { + } else if yyct1592 == codecSelferValueTypeArray1234 { + yyl1592 := r.ReadArrayStart() + if yyl1592 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1549, d) + x.codecDecodeSelfFromArray(yyl1592, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21325,12 +21936,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1550Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1550Slc - var yyhl1550 bool = l >= 0 - for yyj1550 := 0; ; yyj1550++ { - if yyhl1550 { - if yyj1550 >= l { + var yys1593Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1593Slc + var yyhl1593 bool = l >= 0 + for yyj1593 := 0; ; yyj1593++ { + if yyhl1593 { + if yyj1593 >= l { break } } else { @@ -21339,31 +21950,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1550Slc = r.DecodeBytes(yys1550Slc, true, true) - yys1550 := string(yys1550Slc) + yys1593Slc = r.DecodeBytes(yys1593Slc, true, true) + yys1593 := string(yys1593Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1550 { + switch yys1593 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1551 := &x.StartedAt - yym1552 := z.DecBinary() - _ = yym1552 + yyv1594 := &x.StartedAt + yym1595 := z.DecBinary() + _ = yym1595 if false { - } else if z.HasExtensions() && z.DecExt(yyv1551) { - } else if yym1552 { - z.DecBinaryUnmarshal(yyv1551) - } else if !yym1552 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1551) + } else if z.HasExtensions() && z.DecExt(yyv1594) { + } else if yym1595 { + z.DecBinaryUnmarshal(yyv1594) + } else if !yym1595 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1594) } else { - z.DecFallback(yyv1551, false) + z.DecFallback(yyv1594, false) } } default: - z.DecStructFieldNotFound(-1, yys1550) - } // end switch yys1550 - } // end for yyj1550 + z.DecStructFieldNotFound(-1, yys1593) + } // end switch yys1593 + } // end for yyj1593 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21371,16 +21982,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1553 int - var yyb1553 bool - var yyhl1553 bool = l >= 0 - yyj1553++ - if yyhl1553 { - yyb1553 = yyj1553 > l + var yyj1596 int + var yyb1596 bool + var yyhl1596 bool = l >= 0 + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1553 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1553 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21388,31 +21999,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1554 := &x.StartedAt - yym1555 := z.DecBinary() - _ = yym1555 + yyv1597 := &x.StartedAt + yym1598 := z.DecBinary() + _ = yym1598 if false { - } else if z.HasExtensions() && z.DecExt(yyv1554) { - } else if yym1555 { - z.DecBinaryUnmarshal(yyv1554) - } else if !yym1555 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1554) + } else if z.HasExtensions() && z.DecExt(yyv1597) { + } else if yym1598 { + z.DecBinaryUnmarshal(yyv1597) + } else if !yym1598 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1597) } else { - z.DecFallback(yyv1554, false) + z.DecFallback(yyv1597, false) } } for { - yyj1553++ - if yyhl1553 { - yyb1553 = yyj1553 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1553 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1553 { + if yyb1596 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1553-1, "") + z.DecStructFieldNotFound(yyj1596-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21424,39 +22035,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1556 := z.EncBinary() - _ = yym1556 + yym1599 := z.EncBinary() + _ = yym1599 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1557 := !z.EncBinary() - yy2arr1557 := z.EncBasicHandle().StructToArray - var yyq1557 [7]bool - _, _, _ = yysep1557, yyq1557, yy2arr1557 - const yyr1557 bool = false - yyq1557[1] = x.Signal != 0 - yyq1557[2] = x.Reason != "" - yyq1557[3] = x.Message != "" - yyq1557[4] = true - yyq1557[5] = true - yyq1557[6] = x.ContainerID != "" - var yynn1557 int - if yyr1557 || yy2arr1557 { + yysep1600 := !z.EncBinary() + yy2arr1600 := z.EncBasicHandle().StructToArray + var yyq1600 [7]bool + _, _, _ = yysep1600, yyq1600, yy2arr1600 + const yyr1600 bool = false + yyq1600[1] = x.Signal != 0 + yyq1600[2] = x.Reason != "" + yyq1600[3] = x.Message != "" + yyq1600[4] = true + yyq1600[5] = true + yyq1600[6] = x.ContainerID != "" + var yynn1600 int + if yyr1600 || yy2arr1600 { r.EncodeArrayStart(7) } else { - yynn1557 = 1 - for _, b := range yyq1557 { + yynn1600 = 1 + for _, b := range yyq1600 { if b { - yynn1557++ + yynn1600++ } } - r.EncodeMapStart(yynn1557) - yynn1557 = 0 + r.EncodeMapStart(yynn1600) + yynn1600 = 0 } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1559 := z.EncBinary() - _ = yym1559 + yym1602 := z.EncBinary() + _ = yym1602 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -21465,18 +22076,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1560 := z.EncBinary() - _ = yym1560 + yym1603 := z.EncBinary() + _ = yym1603 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[1] { - yym1562 := z.EncBinary() - _ = yym1562 + if yyq1600[1] { + yym1605 := z.EncBinary() + _ = yym1605 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -21485,23 +22096,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1557[1] { + if yyq1600[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1563 := z.EncBinary() - _ = yym1563 + yym1606 := z.EncBinary() + _ = yym1606 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[2] { - yym1565 := z.EncBinary() - _ = yym1565 + if yyq1600[2] { + yym1608 := z.EncBinary() + _ = yym1608 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -21510,23 +22121,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1557[2] { + if yyq1600[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1566 := z.EncBinary() - _ = yym1566 + yym1609 := z.EncBinary() + _ = yym1609 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[3] { - yym1568 := z.EncBinary() - _ = yym1568 + if yyq1600[3] { + yym1611 := z.EncBinary() + _ = yym1611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -21535,97 +22146,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1557[3] { + if yyq1600[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1569 := z.EncBinary() - _ = yym1569 + yym1612 := z.EncBinary() + _ = yym1612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[4] { - yy1571 := &x.StartedAt - yym1572 := z.EncBinary() - _ = yym1572 + if yyq1600[4] { + yy1614 := &x.StartedAt + yym1615 := z.EncBinary() + _ = yym1615 if false { - } else if z.HasExtensions() && z.EncExt(yy1571) { - } else if yym1572 { - z.EncBinaryMarshal(yy1571) - } else if !yym1572 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1571) + } else if z.HasExtensions() && z.EncExt(yy1614) { + } else if yym1615 { + z.EncBinaryMarshal(yy1614) + } else if !yym1615 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1614) } else { - z.EncFallback(yy1571) + z.EncFallback(yy1614) } } else { r.EncodeNil() } } else { - if yyq1557[4] { + if yyq1600[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1573 := &x.StartedAt - yym1574 := z.EncBinary() - _ = yym1574 + yy1616 := &x.StartedAt + yym1617 := z.EncBinary() + _ = yym1617 if false { - } else if z.HasExtensions() && z.EncExt(yy1573) { - } else if yym1574 { - z.EncBinaryMarshal(yy1573) - } else if !yym1574 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1573) + } else if z.HasExtensions() && z.EncExt(yy1616) { + } else if yym1617 { + z.EncBinaryMarshal(yy1616) + } else if !yym1617 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1616) } else { - z.EncFallback(yy1573) + z.EncFallback(yy1616) } } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[5] { - yy1576 := &x.FinishedAt - yym1577 := z.EncBinary() - _ = yym1577 + if yyq1600[5] { + yy1619 := &x.FinishedAt + yym1620 := z.EncBinary() + _ = yym1620 if false { - } else if z.HasExtensions() && z.EncExt(yy1576) { - } else if yym1577 { - z.EncBinaryMarshal(yy1576) - } else if !yym1577 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1576) + } else if z.HasExtensions() && z.EncExt(yy1619) { + } else if yym1620 { + z.EncBinaryMarshal(yy1619) + } else if !yym1620 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1619) } else { - z.EncFallback(yy1576) + z.EncFallback(yy1619) } } else { r.EncodeNil() } } else { - if yyq1557[5] { + if yyq1600[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1578 := &x.FinishedAt - yym1579 := z.EncBinary() - _ = yym1579 + yy1621 := &x.FinishedAt + yym1622 := z.EncBinary() + _ = yym1622 if false { - } else if z.HasExtensions() && z.EncExt(yy1578) { - } else if yym1579 { - z.EncBinaryMarshal(yy1578) - } else if !yym1579 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1578) + } else if z.HasExtensions() && z.EncExt(yy1621) { + } else if yym1622 { + z.EncBinaryMarshal(yy1621) + } else if !yym1622 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1621) } else { - z.EncFallback(yy1578) + z.EncFallback(yy1621) } } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[6] { - yym1581 := z.EncBinary() - _ = yym1581 + if yyq1600[6] { + yym1624 := z.EncBinary() + _ = yym1624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -21634,19 +22245,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1557[6] { + if yyq1600[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1582 := z.EncBinary() - _ = yym1582 + yym1625 := z.EncBinary() + _ = yym1625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1557 || yy2arr1557 { + if yyr1600 || yy2arr1600 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21659,25 +22270,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1583 := z.DecBinary() - _ = yym1583 + yym1626 := z.DecBinary() + _ = yym1626 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1584 := r.ContainerType() - if yyct1584 == codecSelferValueTypeMap1234 { - yyl1584 := r.ReadMapStart() - if yyl1584 == 0 { + yyct1627 := r.ContainerType() + if yyct1627 == codecSelferValueTypeMap1234 { + yyl1627 := r.ReadMapStart() + if yyl1627 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1584, d) + x.codecDecodeSelfFromMap(yyl1627, d) } - } else if yyct1584 == codecSelferValueTypeArray1234 { - yyl1584 := r.ReadArrayStart() - if yyl1584 == 0 { + } else if yyct1627 == codecSelferValueTypeArray1234 { + yyl1627 := r.ReadArrayStart() + if yyl1627 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1584, d) + x.codecDecodeSelfFromArray(yyl1627, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21689,12 +22300,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1585Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1585Slc - var yyhl1585 bool = l >= 0 - for yyj1585 := 0; ; yyj1585++ { - if yyhl1585 { - if yyj1585 >= l { + var yys1628Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1628Slc + var yyhl1628 bool = l >= 0 + for yyj1628 := 0; ; yyj1628++ { + if yyhl1628 { + if yyj1628 >= l { break } } else { @@ -21703,10 +22314,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1585Slc = r.DecodeBytes(yys1585Slc, true, true) - yys1585 := string(yys1585Slc) + yys1628Slc = r.DecodeBytes(yys1628Slc, true, true) + yys1628 := string(yys1628Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1585 { + switch yys1628 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -21735,34 +22346,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1590 := &x.StartedAt - yym1591 := z.DecBinary() - _ = yym1591 + yyv1633 := &x.StartedAt + yym1634 := z.DecBinary() + _ = yym1634 if false { - } else if z.HasExtensions() && z.DecExt(yyv1590) { - } else if yym1591 { - z.DecBinaryUnmarshal(yyv1590) - } else if !yym1591 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1590) + } else if z.HasExtensions() && z.DecExt(yyv1633) { + } else if yym1634 { + z.DecBinaryUnmarshal(yyv1633) + } else if !yym1634 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1633) } else { - z.DecFallback(yyv1590, false) + z.DecFallback(yyv1633, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1592 := &x.FinishedAt - yym1593 := z.DecBinary() - _ = yym1593 + yyv1635 := &x.FinishedAt + yym1636 := z.DecBinary() + _ = yym1636 if false { - } else if z.HasExtensions() && z.DecExt(yyv1592) { - } else if yym1593 { - z.DecBinaryUnmarshal(yyv1592) - } else if !yym1593 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1592) + } else if z.HasExtensions() && z.DecExt(yyv1635) { + } else if yym1636 { + z.DecBinaryUnmarshal(yyv1635) + } else if !yym1636 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1635) } else { - z.DecFallback(yyv1592, false) + z.DecFallback(yyv1635, false) } } case "containerID": @@ -21772,9 +22383,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1585) - } // end switch yys1585 - } // end for yyj1585 + z.DecStructFieldNotFound(-1, yys1628) + } // end switch yys1628 + } // end for yyj1628 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21782,16 +22393,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1595 int - var yyb1595 bool - var yyhl1595 bool = l >= 0 - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + var yyj1638 int + var yyb1638 bool + var yyhl1638 bool = l >= 0 + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21801,13 +22412,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21817,13 +22428,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21833,13 +22444,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21849,13 +22460,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21863,26 +22474,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1600 := &x.StartedAt - yym1601 := z.DecBinary() - _ = yym1601 + yyv1643 := &x.StartedAt + yym1644 := z.DecBinary() + _ = yym1644 if false { - } else if z.HasExtensions() && z.DecExt(yyv1600) { - } else if yym1601 { - z.DecBinaryUnmarshal(yyv1600) - } else if !yym1601 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1600) + } else if z.HasExtensions() && z.DecExt(yyv1643) { + } else if yym1644 { + z.DecBinaryUnmarshal(yyv1643) + } else if !yym1644 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1643) } else { - z.DecFallback(yyv1600, false) + z.DecFallback(yyv1643, false) } } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21890,26 +22501,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1602 := &x.FinishedAt - yym1603 := z.DecBinary() - _ = yym1603 + yyv1645 := &x.FinishedAt + yym1646 := z.DecBinary() + _ = yym1646 if false { - } else if z.HasExtensions() && z.DecExt(yyv1602) { - } else if yym1603 { - z.DecBinaryUnmarshal(yyv1602) - } else if !yym1603 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1602) + } else if z.HasExtensions() && z.DecExt(yyv1645) { + } else if yym1646 { + z.DecBinaryUnmarshal(yyv1645) + } else if !yym1646 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1645) } else { - z.DecFallback(yyv1602, false) + z.DecFallback(yyv1645, false) } } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21920,17 +22531,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1595 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1595 { + if yyb1638 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1595-1, "") + z.DecStructFieldNotFound(yyj1638-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21942,35 +22553,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1605 := z.EncBinary() - _ = yym1605 + yym1648 := z.EncBinary() + _ = yym1648 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1606 := !z.EncBinary() - yy2arr1606 := z.EncBasicHandle().StructToArray - var yyq1606 [3]bool - _, _, _ = yysep1606, yyq1606, yy2arr1606 - const yyr1606 bool = false - yyq1606[0] = x.Waiting != nil - yyq1606[1] = x.Running != nil - yyq1606[2] = x.Terminated != nil - var yynn1606 int - if yyr1606 || yy2arr1606 { + yysep1649 := !z.EncBinary() + yy2arr1649 := z.EncBasicHandle().StructToArray + var yyq1649 [3]bool + _, _, _ = yysep1649, yyq1649, yy2arr1649 + const yyr1649 bool = false + yyq1649[0] = x.Waiting != nil + yyq1649[1] = x.Running != nil + yyq1649[2] = x.Terminated != nil + var yynn1649 int + if yyr1649 || yy2arr1649 { r.EncodeArrayStart(3) } else { - yynn1606 = 0 - for _, b := range yyq1606 { + yynn1649 = 0 + for _, b := range yyq1649 { if b { - yynn1606++ + yynn1649++ } } - r.EncodeMapStart(yynn1606) - yynn1606 = 0 + r.EncodeMapStart(yynn1649) + yynn1649 = 0 } - if yyr1606 || yy2arr1606 { + if yyr1649 || yy2arr1649 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1606[0] { + if yyq1649[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -21980,7 +22591,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1606[0] { + if yyq1649[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21991,9 +22602,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1606 || yy2arr1606 { + if yyr1649 || yy2arr1649 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1606[1] { + if yyq1649[1] { if x.Running == nil { r.EncodeNil() } else { @@ -22003,7 +22614,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1606[1] { + if yyq1649[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22014,9 +22625,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1606 || yy2arr1606 { + if yyr1649 || yy2arr1649 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1606[2] { + if yyq1649[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -22026,7 +22637,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1606[2] { + if yyq1649[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22037,7 +22648,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1606 || yy2arr1606 { + if yyr1649 || yy2arr1649 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22050,25 +22661,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1610 := z.DecBinary() - _ = yym1610 + yym1653 := z.DecBinary() + _ = yym1653 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1611 := r.ContainerType() - if yyct1611 == codecSelferValueTypeMap1234 { - yyl1611 := r.ReadMapStart() - if yyl1611 == 0 { + yyct1654 := r.ContainerType() + if yyct1654 == codecSelferValueTypeMap1234 { + yyl1654 := r.ReadMapStart() + if yyl1654 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1611, d) + x.codecDecodeSelfFromMap(yyl1654, d) } - } else if yyct1611 == codecSelferValueTypeArray1234 { - yyl1611 := r.ReadArrayStart() - if yyl1611 == 0 { + } else if yyct1654 == codecSelferValueTypeArray1234 { + yyl1654 := r.ReadArrayStart() + if yyl1654 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1611, d) + x.codecDecodeSelfFromArray(yyl1654, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22080,12 +22691,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1612Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1612Slc - var yyhl1612 bool = l >= 0 - for yyj1612 := 0; ; yyj1612++ { - if yyhl1612 { - if yyj1612 >= l { + var yys1655Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1655Slc + var yyhl1655 bool = l >= 0 + for yyj1655 := 0; ; yyj1655++ { + if yyhl1655 { + if yyj1655 >= l { break } } else { @@ -22094,10 +22705,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1612Slc = r.DecodeBytes(yys1612Slc, true, true) - yys1612 := string(yys1612Slc) + yys1655Slc = r.DecodeBytes(yys1655Slc, true, true) + yys1655 := string(yys1655Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1612 { + switch yys1655 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -22132,9 +22743,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1612) - } // end switch yys1612 - } // end for yyj1612 + z.DecStructFieldNotFound(-1, yys1655) + } // end switch yys1655 + } // end for yyj1655 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22142,16 +22753,16 @@ func (x *ContainerState) 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 yyj1659 int + var yyb1659 bool + var yyhl1659 bool = l >= 0 + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1616 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1616 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22166,13 +22777,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1616 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1616 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22187,13 +22798,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1616 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1616 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22209,17 +22820,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1616 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1616 { + if yyb1659 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1616-1, "") + z.DecStructFieldNotFound(yyj1659-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22231,36 +22842,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1620 := z.EncBinary() - _ = yym1620 + yym1663 := z.EncBinary() + _ = yym1663 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1621 := !z.EncBinary() - yy2arr1621 := z.EncBasicHandle().StructToArray - var yyq1621 [8]bool - _, _, _ = yysep1621, yyq1621, yy2arr1621 - const yyr1621 bool = false - yyq1621[1] = true - yyq1621[2] = true - yyq1621[7] = x.ContainerID != "" - var yynn1621 int - if yyr1621 || yy2arr1621 { + yysep1664 := !z.EncBinary() + yy2arr1664 := z.EncBasicHandle().StructToArray + var yyq1664 [8]bool + _, _, _ = yysep1664, yyq1664, yy2arr1664 + const yyr1664 bool = false + yyq1664[1] = true + yyq1664[2] = true + yyq1664[7] = x.ContainerID != "" + var yynn1664 int + if yyr1664 || yy2arr1664 { r.EncodeArrayStart(8) } else { - yynn1621 = 5 - for _, b := range yyq1621 { + yynn1664 = 5 + for _, b := range yyq1664 { if b { - yynn1621++ + yynn1664++ } } - r.EncodeMapStart(yynn1621) - yynn1621 = 0 + r.EncodeMapStart(yynn1664) + yynn1664 = 0 } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1623 := z.EncBinary() - _ = yym1623 + yym1666 := z.EncBinary() + _ = yym1666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -22269,51 +22880,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1624 := z.EncBinary() - _ = yym1624 + yym1667 := z.EncBinary() + _ = yym1667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1621[1] { - yy1626 := &x.State - yy1626.CodecEncodeSelf(e) + if yyq1664[1] { + yy1669 := &x.State + yy1669.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1621[1] { + if yyq1664[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1627 := &x.State - yy1627.CodecEncodeSelf(e) + yy1670 := &x.State + yy1670.CodecEncodeSelf(e) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1621[2] { - yy1629 := &x.LastTerminationState - yy1629.CodecEncodeSelf(e) + if yyq1664[2] { + yy1672 := &x.LastTerminationState + yy1672.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1621[2] { + if yyq1664[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1630 := &x.LastTerminationState - yy1630.CodecEncodeSelf(e) + yy1673 := &x.LastTerminationState + yy1673.CodecEncodeSelf(e) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1632 := z.EncBinary() - _ = yym1632 + yym1675 := z.EncBinary() + _ = yym1675 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -22322,17 +22933,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1633 := z.EncBinary() - _ = yym1633 + yym1676 := z.EncBinary() + _ = yym1676 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1635 := z.EncBinary() - _ = yym1635 + yym1678 := z.EncBinary() + _ = yym1678 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -22341,17 +22952,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1636 := z.EncBinary() - _ = yym1636 + yym1679 := z.EncBinary() + _ = yym1679 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1638 := z.EncBinary() - _ = yym1638 + yym1681 := z.EncBinary() + _ = yym1681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -22360,17 +22971,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1639 := z.EncBinary() - _ = yym1639 + yym1682 := z.EncBinary() + _ = yym1682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1641 := z.EncBinary() - _ = yym1641 + yym1684 := z.EncBinary() + _ = yym1684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -22379,18 +22990,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1642 := z.EncBinary() - _ = yym1642 + yym1685 := z.EncBinary() + _ = yym1685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1621[7] { - yym1644 := z.EncBinary() - _ = yym1644 + if yyq1664[7] { + yym1687 := z.EncBinary() + _ = yym1687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -22399,19 +23010,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1621[7] { + if yyq1664[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1645 := z.EncBinary() - _ = yym1645 + yym1688 := z.EncBinary() + _ = yym1688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1621 || yy2arr1621 { + if yyr1664 || yy2arr1664 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22424,25 +23035,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1646 := z.DecBinary() - _ = yym1646 + yym1689 := z.DecBinary() + _ = yym1689 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1647 := r.ContainerType() - if yyct1647 == codecSelferValueTypeMap1234 { - yyl1647 := r.ReadMapStart() - if yyl1647 == 0 { + yyct1690 := r.ContainerType() + if yyct1690 == codecSelferValueTypeMap1234 { + yyl1690 := r.ReadMapStart() + if yyl1690 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1647, d) + x.codecDecodeSelfFromMap(yyl1690, d) } - } else if yyct1647 == codecSelferValueTypeArray1234 { - yyl1647 := r.ReadArrayStart() - if yyl1647 == 0 { + } else if yyct1690 == codecSelferValueTypeArray1234 { + yyl1690 := r.ReadArrayStart() + if yyl1690 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1647, d) + x.codecDecodeSelfFromArray(yyl1690, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22454,12 +23065,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1648Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1648Slc - var yyhl1648 bool = l >= 0 - for yyj1648 := 0; ; yyj1648++ { - if yyhl1648 { - if yyj1648 >= l { + var yys1691Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1691Slc + var yyhl1691 bool = l >= 0 + for yyj1691 := 0; ; yyj1691++ { + if yyhl1691 { + if yyj1691 >= l { break } } else { @@ -22468,10 +23079,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1648Slc = r.DecodeBytes(yys1648Slc, true, true) - yys1648 := string(yys1648Slc) + yys1691Slc = r.DecodeBytes(yys1691Slc, true, true) + yys1691 := string(yys1691Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1648 { + switch yys1691 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -22482,15 +23093,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1650 := &x.State - yyv1650.CodecDecodeSelf(d) + yyv1693 := &x.State + yyv1693.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1651 := &x.LastTerminationState - yyv1651.CodecDecodeSelf(d) + yyv1694 := &x.LastTerminationState + yyv1694.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -22523,9 +23134,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1648) - } // end switch yys1648 - } // end for yyj1648 + z.DecStructFieldNotFound(-1, yys1691) + } // end switch yys1691 + } // end for yyj1691 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22533,16 +23144,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1657 int - var yyb1657 bool - var yyhl1657 bool = l >= 0 - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + var yyj1700 int + var yyb1700 bool + var yyhl1700 bool = l >= 0 + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22552,13 +23163,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22566,16 +23177,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1659 := &x.State - yyv1659.CodecDecodeSelf(d) + yyv1702 := &x.State + yyv1702.CodecDecodeSelf(d) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22583,16 +23194,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1660 := &x.LastTerminationState - yyv1660.CodecDecodeSelf(d) + yyv1703 := &x.LastTerminationState + yyv1703.CodecDecodeSelf(d) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22602,13 +23213,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22618,13 +23229,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22634,13 +23245,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22650,13 +23261,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22667,17 +23278,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1700++ + if yyhl1700 { + yyb1700 = yyj1700 > l } else { - yyb1657 = r.CheckBreak() + yyb1700 = r.CheckBreak() } - if yyb1657 { + if yyb1700 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1657-1, "") + z.DecStructFieldNotFound(yyj1700-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22686,8 +23297,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1666 := z.EncBinary() - _ = yym1666 + yym1709 := z.EncBinary() + _ = yym1709 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22699,8 +23310,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1667 := z.DecBinary() - _ = yym1667 + yym1710 := z.DecBinary() + _ = yym1710 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22712,8 +23323,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1668 := z.EncBinary() - _ = yym1668 + yym1711 := z.EncBinary() + _ = yym1711 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22725,8 +23336,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1669 := z.DecBinary() - _ = yym1669 + yym1712 := z.DecBinary() + _ = yym1712 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22741,34 +23352,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1670 := z.EncBinary() - _ = yym1670 + yym1713 := z.EncBinary() + _ = yym1713 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1671 := !z.EncBinary() - yy2arr1671 := z.EncBasicHandle().StructToArray - var yyq1671 [6]bool - _, _, _ = yysep1671, yyq1671, yy2arr1671 - const yyr1671 bool = false - yyq1671[2] = true - yyq1671[3] = true - yyq1671[4] = x.Reason != "" - yyq1671[5] = x.Message != "" - var yynn1671 int - if yyr1671 || yy2arr1671 { + yysep1714 := !z.EncBinary() + yy2arr1714 := z.EncBasicHandle().StructToArray + var yyq1714 [6]bool + _, _, _ = yysep1714, yyq1714, yy2arr1714 + const yyr1714 bool = false + yyq1714[2] = true + yyq1714[3] = true + yyq1714[4] = x.Reason != "" + yyq1714[5] = x.Message != "" + var yynn1714 int + if yyr1714 || yy2arr1714 { r.EncodeArrayStart(6) } else { - yynn1671 = 2 - for _, b := range yyq1671 { + yynn1714 = 2 + for _, b := range yyq1714 { if b { - yynn1671++ + yynn1714++ } } - r.EncodeMapStart(yynn1671) - yynn1671 = 0 + r.EncodeMapStart(yynn1714) + yynn1714 = 0 } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -22777,7 +23388,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -22786,85 +23397,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[2] { - yy1675 := &x.LastProbeTime - yym1676 := z.EncBinary() - _ = yym1676 + if yyq1714[2] { + yy1718 := &x.LastProbeTime + yym1719 := z.EncBinary() + _ = yym1719 if false { - } else if z.HasExtensions() && z.EncExt(yy1675) { - } else if yym1676 { - z.EncBinaryMarshal(yy1675) - } else if !yym1676 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1675) + } else if z.HasExtensions() && z.EncExt(yy1718) { + } else if yym1719 { + z.EncBinaryMarshal(yy1718) + } else if !yym1719 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1718) } else { - z.EncFallback(yy1675) + z.EncFallback(yy1718) } } else { r.EncodeNil() } } else { - if yyq1671[2] { + if yyq1714[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1677 := &x.LastProbeTime - yym1678 := z.EncBinary() - _ = yym1678 + yy1720 := &x.LastProbeTime + yym1721 := z.EncBinary() + _ = yym1721 if false { - } else if z.HasExtensions() && z.EncExt(yy1677) { - } else if yym1678 { - z.EncBinaryMarshal(yy1677) - } else if !yym1678 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1677) + } else if z.HasExtensions() && z.EncExt(yy1720) { + } else if yym1721 { + z.EncBinaryMarshal(yy1720) + } else if !yym1721 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1720) } else { - z.EncFallback(yy1677) + z.EncFallback(yy1720) } } } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[3] { - yy1680 := &x.LastTransitionTime - yym1681 := z.EncBinary() - _ = yym1681 + if yyq1714[3] { + yy1723 := &x.LastTransitionTime + yym1724 := z.EncBinary() + _ = yym1724 if false { - } else if z.HasExtensions() && z.EncExt(yy1680) { - } else if yym1681 { - z.EncBinaryMarshal(yy1680) - } else if !yym1681 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1680) + } else if z.HasExtensions() && z.EncExt(yy1723) { + } else if yym1724 { + z.EncBinaryMarshal(yy1723) + } else if !yym1724 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1723) } else { - z.EncFallback(yy1680) + z.EncFallback(yy1723) } } else { r.EncodeNil() } } else { - if yyq1671[3] { + if yyq1714[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1682 := &x.LastTransitionTime - yym1683 := z.EncBinary() - _ = yym1683 + yy1725 := &x.LastTransitionTime + yym1726 := z.EncBinary() + _ = yym1726 if false { - } else if z.HasExtensions() && z.EncExt(yy1682) { - } else if yym1683 { - z.EncBinaryMarshal(yy1682) - } else if !yym1683 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1682) + } else if z.HasExtensions() && z.EncExt(yy1725) { + } else if yym1726 { + z.EncBinaryMarshal(yy1725) + } else if !yym1726 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1725) } else { - z.EncFallback(yy1682) + z.EncFallback(yy1725) } } } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[4] { - yym1685 := z.EncBinary() - _ = yym1685 + if yyq1714[4] { + yym1728 := z.EncBinary() + _ = yym1728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -22873,23 +23484,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1671[4] { + if yyq1714[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1686 := z.EncBinary() - _ = yym1686 + yym1729 := z.EncBinary() + _ = yym1729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[5] { - yym1688 := z.EncBinary() - _ = yym1688 + if yyq1714[5] { + yym1731 := z.EncBinary() + _ = yym1731 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -22898,19 +23509,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1671[5] { + if yyq1714[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1689 := z.EncBinary() - _ = yym1689 + yym1732 := z.EncBinary() + _ = yym1732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1671 || yy2arr1671 { + if yyr1714 || yy2arr1714 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22923,25 +23534,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1690 := z.DecBinary() - _ = yym1690 + yym1733 := z.DecBinary() + _ = yym1733 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1691 := r.ContainerType() - if yyct1691 == codecSelferValueTypeMap1234 { - yyl1691 := r.ReadMapStart() - if yyl1691 == 0 { + yyct1734 := r.ContainerType() + if yyct1734 == codecSelferValueTypeMap1234 { + yyl1734 := r.ReadMapStart() + if yyl1734 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1691, d) + x.codecDecodeSelfFromMap(yyl1734, d) } - } else if yyct1691 == codecSelferValueTypeArray1234 { - yyl1691 := r.ReadArrayStart() - if yyl1691 == 0 { + } else if yyct1734 == codecSelferValueTypeArray1234 { + yyl1734 := r.ReadArrayStart() + if yyl1734 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1691, d) + x.codecDecodeSelfFromArray(yyl1734, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22953,12 +23564,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1692Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1692Slc - var yyhl1692 bool = l >= 0 - for yyj1692 := 0; ; yyj1692++ { - if yyhl1692 { - if yyj1692 >= l { + var yys1735Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1735Slc + var yyhl1735 bool = l >= 0 + for yyj1735 := 0; ; yyj1735++ { + if yyhl1735 { + if yyj1735 >= l { break } } else { @@ -22967,10 +23578,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1692Slc = r.DecodeBytes(yys1692Slc, true, true) - yys1692 := string(yys1692Slc) + yys1735Slc = r.DecodeBytes(yys1735Slc, true, true) + yys1735 := string(yys1735Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1692 { + switch yys1735 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -22987,34 +23598,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1695 := &x.LastProbeTime - yym1696 := z.DecBinary() - _ = yym1696 + yyv1738 := &x.LastProbeTime + yym1739 := z.DecBinary() + _ = yym1739 if false { - } else if z.HasExtensions() && z.DecExt(yyv1695) { - } else if yym1696 { - z.DecBinaryUnmarshal(yyv1695) - } else if !yym1696 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1695) + } else if z.HasExtensions() && z.DecExt(yyv1738) { + } else if yym1739 { + z.DecBinaryUnmarshal(yyv1738) + } else if !yym1739 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1738) } else { - z.DecFallback(yyv1695, false) + z.DecFallback(yyv1738, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1697 := &x.LastTransitionTime - yym1698 := z.DecBinary() - _ = yym1698 + yyv1740 := &x.LastTransitionTime + yym1741 := z.DecBinary() + _ = yym1741 if false { - } else if z.HasExtensions() && z.DecExt(yyv1697) { - } else if yym1698 { - z.DecBinaryUnmarshal(yyv1697) - } else if !yym1698 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1697) + } else if z.HasExtensions() && z.DecExt(yyv1740) { + } else if yym1741 { + z.DecBinaryUnmarshal(yyv1740) + } else if !yym1741 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1740) } else { - z.DecFallback(yyv1697, false) + z.DecFallback(yyv1740, false) } } case "reason": @@ -23030,9 +23641,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1692) - } // end switch yys1692 - } // end for yyj1692 + z.DecStructFieldNotFound(-1, yys1735) + } // end switch yys1735 + } // end for yyj1735 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23040,16 +23651,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1701 int - var yyb1701 bool - var yyhl1701 bool = l >= 0 - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + var yyj1744 int + var yyb1744 bool + var yyhl1744 bool = l >= 0 + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23059,13 +23670,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23075,13 +23686,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23089,26 +23700,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1704 := &x.LastProbeTime - yym1705 := z.DecBinary() - _ = yym1705 + yyv1747 := &x.LastProbeTime + yym1748 := z.DecBinary() + _ = yym1748 if false { - } else if z.HasExtensions() && z.DecExt(yyv1704) { - } else if yym1705 { - z.DecBinaryUnmarshal(yyv1704) - } else if !yym1705 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1704) + } else if z.HasExtensions() && z.DecExt(yyv1747) { + } else if yym1748 { + z.DecBinaryUnmarshal(yyv1747) + } else if !yym1748 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1747) } else { - z.DecFallback(yyv1704, false) + z.DecFallback(yyv1747, false) } } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23116,26 +23727,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1706 := &x.LastTransitionTime - yym1707 := z.DecBinary() - _ = yym1707 + yyv1749 := &x.LastTransitionTime + yym1750 := z.DecBinary() + _ = yym1750 if false { - } else if z.HasExtensions() && z.DecExt(yyv1706) { - } else if yym1707 { - z.DecBinaryUnmarshal(yyv1706) - } else if !yym1707 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1706) + } else if z.HasExtensions() && z.DecExt(yyv1749) { + } else if yym1750 { + z.DecBinaryUnmarshal(yyv1749) + } else if !yym1750 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1749) } else { - z.DecFallback(yyv1706, false) + z.DecFallback(yyv1749, false) } } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23145,13 +23756,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23162,17 +23773,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1744++ + if yyhl1744 { + yyb1744 = yyj1744 > l } else { - yyb1701 = r.CheckBreak() + yyb1744 = r.CheckBreak() } - if yyb1701 { + if yyb1744 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1701-1, "") + z.DecStructFieldNotFound(yyj1744-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23181,8 +23792,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1710 := z.EncBinary() - _ = yym1710 + yym1753 := z.EncBinary() + _ = yym1753 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23194,8 +23805,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1711 := z.DecBinary() - _ = yym1711 + yym1754 := z.DecBinary() + _ = yym1754 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23210,37 +23821,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1712 := z.EncBinary() - _ = yym1712 + yym1755 := z.EncBinary() + _ = yym1755 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1713 := !z.EncBinary() - yy2arr1713 := z.EncBasicHandle().StructToArray - var yyq1713 [4]bool - _, _, _ = yysep1713, yyq1713, yy2arr1713 - const yyr1713 bool = false - yyq1713[0] = x.Kind != "" - yyq1713[1] = x.APIVersion != "" - yyq1713[2] = true - var yynn1713 int - if yyr1713 || yy2arr1713 { + yysep1756 := !z.EncBinary() + yy2arr1756 := z.EncBasicHandle().StructToArray + var yyq1756 [4]bool + _, _, _ = yysep1756, yyq1756, yy2arr1756 + const yyr1756 bool = false + yyq1756[0] = x.Kind != "" + yyq1756[1] = x.APIVersion != "" + yyq1756[2] = true + var yynn1756 int + if yyr1756 || yy2arr1756 { r.EncodeArrayStart(4) } else { - yynn1713 = 1 - for _, b := range yyq1713 { + yynn1756 = 1 + for _, b := range yyq1756 { if b { - yynn1713++ + yynn1756++ } } - r.EncodeMapStart(yynn1713) - yynn1713 = 0 + r.EncodeMapStart(yynn1756) + yynn1756 = 0 } - if yyr1713 || yy2arr1713 { + if yyr1756 || yy2arr1756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1713[0] { - yym1715 := z.EncBinary() - _ = yym1715 + if yyq1756[0] { + yym1758 := z.EncBinary() + _ = yym1758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23249,23 +23860,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1713[0] { + if yyq1756[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1716 := z.EncBinary() - _ = yym1716 + yym1759 := z.EncBinary() + _ = yym1759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1713 || yy2arr1713 { + if yyr1756 || yy2arr1756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1713[1] { - yym1718 := z.EncBinary() - _ = yym1718 + if yyq1756[1] { + yym1761 := z.EncBinary() + _ = yym1761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23274,54 +23885,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1713[1] { + if yyq1756[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1719 := z.EncBinary() - _ = yym1719 + yym1762 := z.EncBinary() + _ = yym1762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1713 || yy2arr1713 { + if yyr1756 || yy2arr1756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1713[2] { - yy1721 := &x.ListMeta - yym1722 := z.EncBinary() - _ = yym1722 + if yyq1756[2] { + yy1764 := &x.ListMeta + yym1765 := z.EncBinary() + _ = yym1765 if false { - } else if z.HasExtensions() && z.EncExt(yy1721) { + } else if z.HasExtensions() && z.EncExt(yy1764) { } else { - z.EncFallback(yy1721) + z.EncFallback(yy1764) } } else { r.EncodeNil() } } else { - if yyq1713[2] { + if yyq1756[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1723 := &x.ListMeta - yym1724 := z.EncBinary() - _ = yym1724 + yy1766 := &x.ListMeta + yym1767 := z.EncBinary() + _ = yym1767 if false { - } else if z.HasExtensions() && z.EncExt(yy1723) { + } else if z.HasExtensions() && z.EncExt(yy1766) { } else { - z.EncFallback(yy1723) + z.EncFallback(yy1766) } } } - if yyr1713 || yy2arr1713 { + if yyr1756 || yy2arr1756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1726 := z.EncBinary() - _ = yym1726 + yym1769 := z.EncBinary() + _ = yym1769 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -23334,15 +23945,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1727 := z.EncBinary() - _ = yym1727 + yym1770 := z.EncBinary() + _ = yym1770 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1713 || yy2arr1713 { + if yyr1756 || yy2arr1756 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23355,25 +23966,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1728 := z.DecBinary() - _ = yym1728 + yym1771 := z.DecBinary() + _ = yym1771 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1729 := r.ContainerType() - if yyct1729 == codecSelferValueTypeMap1234 { - yyl1729 := r.ReadMapStart() - if yyl1729 == 0 { + yyct1772 := r.ContainerType() + if yyct1772 == codecSelferValueTypeMap1234 { + yyl1772 := r.ReadMapStart() + if yyl1772 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1729, d) + x.codecDecodeSelfFromMap(yyl1772, d) } - } else if yyct1729 == codecSelferValueTypeArray1234 { - yyl1729 := r.ReadArrayStart() - if yyl1729 == 0 { + } else if yyct1772 == codecSelferValueTypeArray1234 { + yyl1772 := r.ReadArrayStart() + if yyl1772 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1729, d) + x.codecDecodeSelfFromArray(yyl1772, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23385,12 +23996,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1730Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1730Slc - var yyhl1730 bool = l >= 0 - for yyj1730 := 0; ; yyj1730++ { - if yyhl1730 { - if yyj1730 >= l { + var yys1773Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1773Slc + var yyhl1773 bool = l >= 0 + for yyj1773 := 0; ; yyj1773++ { + if yyhl1773 { + if yyj1773 >= l { break } } else { @@ -23399,10 +24010,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1730Slc = r.DecodeBytes(yys1730Slc, true, true) - yys1730 := string(yys1730Slc) + yys1773Slc = r.DecodeBytes(yys1773Slc, true, true) + yys1773 := string(yys1773Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1730 { + switch yys1773 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23419,31 +24030,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1733 := &x.ListMeta - yym1734 := z.DecBinary() - _ = yym1734 + yyv1776 := &x.ListMeta + yym1777 := z.DecBinary() + _ = yym1777 if false { - } else if z.HasExtensions() && z.DecExt(yyv1733) { + } else if z.HasExtensions() && z.DecExt(yyv1776) { } else { - z.DecFallback(yyv1733, false) + z.DecFallback(yyv1776, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1735 := &x.Items - yym1736 := z.DecBinary() - _ = yym1736 + yyv1778 := &x.Items + yym1779 := z.DecBinary() + _ = yym1779 if false { } else { - h.decSlicePod((*[]Pod)(yyv1735), d) + h.decSlicePod((*[]Pod)(yyv1778), d) } } default: - z.DecStructFieldNotFound(-1, yys1730) - } // end switch yys1730 - } // end for yyj1730 + z.DecStructFieldNotFound(-1, yys1773) + } // end switch yys1773 + } // end for yyj1773 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23451,16 +24062,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1737 int - var yyb1737 bool - var yyhl1737 bool = l >= 0 - yyj1737++ - if yyhl1737 { - yyb1737 = yyj1737 > l + var yyj1780 int + var yyb1780 bool + var yyhl1780 bool = l >= 0 + yyj1780++ + if yyhl1780 { + yyb1780 = yyj1780 > l } else { - yyb1737 = r.CheckBreak() + yyb1780 = r.CheckBreak() } - if yyb1737 { + if yyb1780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23470,13 +24081,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1737++ - if yyhl1737 { - yyb1737 = yyj1737 > l + yyj1780++ + if yyhl1780 { + yyb1780 = yyj1780 > l } else { - yyb1737 = r.CheckBreak() + yyb1780 = r.CheckBreak() } - if yyb1737 { + if yyb1780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23486,13 +24097,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1737++ - if yyhl1737 { - yyb1737 = yyj1737 > l + yyj1780++ + if yyhl1780 { + yyb1780 = yyj1780 > l } else { - yyb1737 = r.CheckBreak() + yyb1780 = r.CheckBreak() } - if yyb1737 { + if yyb1780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23500,22 +24111,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1740 := &x.ListMeta - yym1741 := z.DecBinary() - _ = yym1741 + yyv1783 := &x.ListMeta + yym1784 := z.DecBinary() + _ = yym1784 if false { - } else if z.HasExtensions() && z.DecExt(yyv1740) { + } else if z.HasExtensions() && z.DecExt(yyv1783) { } else { - z.DecFallback(yyv1740, false) + z.DecFallback(yyv1783, false) } } - yyj1737++ - if yyhl1737 { - yyb1737 = yyj1737 > l + yyj1780++ + if yyhl1780 { + yyb1780 = yyj1780 > l } else { - yyb1737 = r.CheckBreak() + yyb1780 = r.CheckBreak() } - if yyb1737 { + if yyb1780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23523,26 +24134,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1742 := &x.Items - yym1743 := z.DecBinary() - _ = yym1743 + yyv1785 := &x.Items + yym1786 := z.DecBinary() + _ = yym1786 if false { } else { - h.decSlicePod((*[]Pod)(yyv1742), d) + h.decSlicePod((*[]Pod)(yyv1785), d) } } for { - yyj1737++ - if yyhl1737 { - yyb1737 = yyj1737 > l + yyj1780++ + if yyhl1780 { + yyb1780 = yyj1780 > l } else { - yyb1737 = r.CheckBreak() + yyb1780 = r.CheckBreak() } - if yyb1737 { + if yyb1780 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1737-1, "") + z.DecStructFieldNotFound(yyj1780-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23551,8 +24162,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1744 := z.EncBinary() - _ = yym1744 + yym1787 := z.EncBinary() + _ = yym1787 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23564,8 +24175,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1745 := z.DecBinary() - _ = yym1745 + yym1788 := z.DecBinary() + _ = yym1788 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23580,36 +24191,36 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1746 := z.EncBinary() - _ = yym1746 + yym1789 := z.EncBinary() + _ = yym1789 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1747 := !z.EncBinary() - yy2arr1747 := z.EncBasicHandle().StructToArray - var yyq1747 [1]bool - _, _, _ = yysep1747, yyq1747, yy2arr1747 - const yyr1747 bool = false - var yynn1747 int - if yyr1747 || yy2arr1747 { + yysep1790 := !z.EncBinary() + yy2arr1790 := z.EncBasicHandle().StructToArray + var yyq1790 [1]bool + _, _, _ = yysep1790, yyq1790, yy2arr1790 + const yyr1790 bool = false + var yynn1790 int + if yyr1790 || yy2arr1790 { r.EncodeArrayStart(1) } else { - yynn1747 = 1 - for _, b := range yyq1747 { + yynn1790 = 1 + for _, b := range yyq1790 { if b { - yynn1747++ + yynn1790++ } } - r.EncodeMapStart(yynn1747) - yynn1747 = 0 + r.EncodeMapStart(yynn1790) + yynn1790 = 0 } - if yyr1747 || yy2arr1747 { + if yyr1790 || yy2arr1790 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1749 := z.EncBinary() - _ = yym1749 + yym1792 := z.EncBinary() + _ = yym1792 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) @@ -23622,15 +24233,15 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1750 := z.EncBinary() - _ = yym1750 + yym1793 := z.EncBinary() + _ = yym1793 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) } } } - if yyr1747 || yy2arr1747 { + if yyr1790 || yy2arr1790 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23643,25 +24254,25 @@ func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1751 := z.DecBinary() - _ = yym1751 + yym1794 := z.DecBinary() + _ = yym1794 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1752 := r.ContainerType() - if yyct1752 == codecSelferValueTypeMap1234 { - yyl1752 := r.ReadMapStart() - if yyl1752 == 0 { + yyct1795 := r.ContainerType() + if yyct1795 == codecSelferValueTypeMap1234 { + yyl1795 := r.ReadMapStart() + if yyl1795 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1752, d) + x.codecDecodeSelfFromMap(yyl1795, d) } - } else if yyct1752 == codecSelferValueTypeArray1234 { - yyl1752 := r.ReadArrayStart() - if yyl1752 == 0 { + } else if yyct1795 == codecSelferValueTypeArray1234 { + yyl1795 := r.ReadArrayStart() + if yyl1795 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1752, d) + x.codecDecodeSelfFromArray(yyl1795, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23673,12 +24284,12 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1753Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1753Slc - var yyhl1753 bool = l >= 0 - for yyj1753 := 0; ; yyj1753++ { - if yyhl1753 { - if yyj1753 >= l { + var yys1796Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1796Slc + var yyhl1796 bool = l >= 0 + for yyj1796 := 0; ; yyj1796++ { + if yyhl1796 { + if yyj1796 >= l { break } } else { @@ -23687,26 +24298,26 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1753Slc = r.DecodeBytes(yys1753Slc, true, true) - yys1753 := string(yys1753Slc) + yys1796Slc = r.DecodeBytes(yys1796Slc, true, true) + yys1796 := string(yys1796Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1753 { + switch yys1796 { case "nodeSelectorTerms": if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1754 := &x.NodeSelectorTerms - yym1755 := z.DecBinary() - _ = yym1755 + yyv1797 := &x.NodeSelectorTerms + yym1798 := z.DecBinary() + _ = yym1798 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1754), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1797), d) } } default: - z.DecStructFieldNotFound(-1, yys1753) - } // end switch yys1753 - } // end for yyj1753 + z.DecStructFieldNotFound(-1, yys1796) + } // end switch yys1796 + } // end for yyj1796 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23714,16 +24325,16 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1756 int - var yyb1756 bool - var yyhl1756 bool = l >= 0 - yyj1756++ - if yyhl1756 { - yyb1756 = yyj1756 > l + var yyj1799 int + var yyb1799 bool + var yyhl1799 bool = l >= 0 + yyj1799++ + if yyhl1799 { + yyb1799 = yyj1799 > l } else { - yyb1756 = r.CheckBreak() + yyb1799 = r.CheckBreak() } - if yyb1756 { + if yyb1799 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23731,26 +24342,26 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1757 := &x.NodeSelectorTerms - yym1758 := z.DecBinary() - _ = yym1758 + yyv1800 := &x.NodeSelectorTerms + yym1801 := z.DecBinary() + _ = yym1801 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1757), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1800), d) } } for { - yyj1756++ - if yyhl1756 { - yyb1756 = yyj1756 > l + yyj1799++ + if yyhl1799 { + yyb1799 = yyj1799 > l } else { - yyb1756 = r.CheckBreak() + yyb1799 = r.CheckBreak() } - if yyb1756 { + if yyb1799 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1756-1, "") + z.DecStructFieldNotFound(yyj1799-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23762,36 +24373,36 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1759 := z.EncBinary() - _ = yym1759 + yym1802 := z.EncBinary() + _ = yym1802 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1760 := !z.EncBinary() - yy2arr1760 := z.EncBasicHandle().StructToArray - var yyq1760 [1]bool - _, _, _ = yysep1760, yyq1760, yy2arr1760 - const yyr1760 bool = false - var yynn1760 int - if yyr1760 || yy2arr1760 { + yysep1803 := !z.EncBinary() + yy2arr1803 := z.EncBasicHandle().StructToArray + var yyq1803 [1]bool + _, _, _ = yysep1803, yyq1803, yy2arr1803 + const yyr1803 bool = false + var yynn1803 int + if yyr1803 || yy2arr1803 { r.EncodeArrayStart(1) } else { - yynn1760 = 1 - for _, b := range yyq1760 { + yynn1803 = 1 + for _, b := range yyq1803 { if b { - yynn1760++ + yynn1803++ } } - r.EncodeMapStart(yynn1760) - yynn1760 = 0 + r.EncodeMapStart(yynn1803) + yynn1803 = 0 } - if yyr1760 || yy2arr1760 { + if yyr1803 || yy2arr1803 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1762 := z.EncBinary() - _ = yym1762 + yym1805 := z.EncBinary() + _ = yym1805 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) @@ -23804,15 +24415,15 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1763 := z.EncBinary() - _ = yym1763 + yym1806 := z.EncBinary() + _ = yym1806 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) } } } - if yyr1760 || yy2arr1760 { + if yyr1803 || yy2arr1803 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23825,25 +24436,25 @@ func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1764 := z.DecBinary() - _ = yym1764 + yym1807 := z.DecBinary() + _ = yym1807 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1765 := r.ContainerType() - if yyct1765 == codecSelferValueTypeMap1234 { - yyl1765 := r.ReadMapStart() - if yyl1765 == 0 { + yyct1808 := r.ContainerType() + if yyct1808 == codecSelferValueTypeMap1234 { + yyl1808 := r.ReadMapStart() + if yyl1808 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1765, d) + x.codecDecodeSelfFromMap(yyl1808, d) } - } else if yyct1765 == codecSelferValueTypeArray1234 { - yyl1765 := r.ReadArrayStart() - if yyl1765 == 0 { + } else if yyct1808 == codecSelferValueTypeArray1234 { + yyl1808 := r.ReadArrayStart() + if yyl1808 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1765, d) + x.codecDecodeSelfFromArray(yyl1808, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23855,12 +24466,12 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1766Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1766Slc - var yyhl1766 bool = l >= 0 - for yyj1766 := 0; ; yyj1766++ { - if yyhl1766 { - if yyj1766 >= l { + var yys1809Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1809Slc + var yyhl1809 bool = l >= 0 + for yyj1809 := 0; ; yyj1809++ { + if yyhl1809 { + if yyj1809 >= l { break } } else { @@ -23869,26 +24480,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1766Slc = r.DecodeBytes(yys1766Slc, true, true) - yys1766 := string(yys1766Slc) + yys1809Slc = r.DecodeBytes(yys1809Slc, true, true) + yys1809 := string(yys1809Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1766 { + switch yys1809 { case "matchExpressions": if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1767 := &x.MatchExpressions - yym1768 := z.DecBinary() - _ = yym1768 + yyv1810 := &x.MatchExpressions + yym1811 := z.DecBinary() + _ = yym1811 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1767), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1810), d) } } default: - z.DecStructFieldNotFound(-1, yys1766) - } // end switch yys1766 - } // end for yyj1766 + z.DecStructFieldNotFound(-1, yys1809) + } // end switch yys1809 + } // end for yyj1809 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23896,16 +24507,16 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1769 int - var yyb1769 bool - var yyhl1769 bool = l >= 0 - yyj1769++ - if yyhl1769 { - yyb1769 = yyj1769 > l + var yyj1812 int + var yyb1812 bool + var yyhl1812 bool = l >= 0 + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1769 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1769 { + if yyb1812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23913,26 +24524,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1770 := &x.MatchExpressions - yym1771 := z.DecBinary() - _ = yym1771 + yyv1813 := &x.MatchExpressions + yym1814 := z.DecBinary() + _ = yym1814 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1770), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1813), d) } } for { - yyj1769++ - if yyhl1769 { - yyb1769 = yyj1769 > l + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1769 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1769 { + if yyb1812 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1769-1, "") + z.DecStructFieldNotFound(yyj1812-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23944,34 +24555,34 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1772 := z.EncBinary() - _ = yym1772 + yym1815 := z.EncBinary() + _ = yym1815 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1773 := !z.EncBinary() - yy2arr1773 := z.EncBasicHandle().StructToArray - var yyq1773 [3]bool - _, _, _ = yysep1773, yyq1773, yy2arr1773 - const yyr1773 bool = false - yyq1773[2] = len(x.Values) != 0 - var yynn1773 int - if yyr1773 || yy2arr1773 { + yysep1816 := !z.EncBinary() + yy2arr1816 := z.EncBasicHandle().StructToArray + var yyq1816 [3]bool + _, _, _ = yysep1816, yyq1816, yy2arr1816 + const yyr1816 bool = false + yyq1816[2] = len(x.Values) != 0 + var yynn1816 int + if yyr1816 || yy2arr1816 { r.EncodeArrayStart(3) } else { - yynn1773 = 2 - for _, b := range yyq1773 { + yynn1816 = 2 + for _, b := range yyq1816 { if b { - yynn1773++ + yynn1816++ } } - r.EncodeMapStart(yynn1773) - yynn1773 = 0 + r.EncodeMapStart(yynn1816) + yynn1816 = 0 } - if yyr1773 || yy2arr1773 { + if yyr1816 || yy2arr1816 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1775 := z.EncBinary() - _ = yym1775 + yym1818 := z.EncBinary() + _ = yym1818 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -23980,14 +24591,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1776 := z.EncBinary() - _ = yym1776 + yym1819 := z.EncBinary() + _ = yym1819 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1773 || yy2arr1773 { + if yyr1816 || yy2arr1816 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Operator.CodecEncodeSelf(e) } else { @@ -23996,14 +24607,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } - if yyr1773 || yy2arr1773 { + if yyr1816 || yy2arr1816 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1773[2] { + if yyq1816[2] { if x.Values == nil { r.EncodeNil() } else { - yym1779 := z.EncBinary() - _ = yym1779 + yym1822 := z.EncBinary() + _ = yym1822 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -24013,15 +24624,15 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1773[2] { + if yyq1816[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("values")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Values == nil { r.EncodeNil() } else { - yym1780 := z.EncBinary() - _ = yym1780 + yym1823 := z.EncBinary() + _ = yym1823 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -24029,7 +24640,7 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1773 || yy2arr1773 { + if yyr1816 || yy2arr1816 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24042,25 +24653,25 @@ func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1781 := z.DecBinary() - _ = yym1781 + yym1824 := z.DecBinary() + _ = yym1824 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1782 := r.ContainerType() - if yyct1782 == codecSelferValueTypeMap1234 { - yyl1782 := r.ReadMapStart() - if yyl1782 == 0 { + yyct1825 := r.ContainerType() + if yyct1825 == codecSelferValueTypeMap1234 { + yyl1825 := r.ReadMapStart() + if yyl1825 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1782, d) + x.codecDecodeSelfFromMap(yyl1825, d) } - } else if yyct1782 == codecSelferValueTypeArray1234 { - yyl1782 := r.ReadArrayStart() - if yyl1782 == 0 { + } else if yyct1825 == codecSelferValueTypeArray1234 { + yyl1825 := r.ReadArrayStart() + if yyl1825 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1782, d) + x.codecDecodeSelfFromArray(yyl1825, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24072,12 +24683,12 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1783Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1783Slc - var yyhl1783 bool = l >= 0 - for yyj1783 := 0; ; yyj1783++ { - if yyhl1783 { - if yyj1783 >= 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 { @@ -24086,10 +24697,10 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1783Slc = r.DecodeBytes(yys1783Slc, true, true) - yys1783 := string(yys1783Slc) + yys1826Slc = r.DecodeBytes(yys1826Slc, true, true) + yys1826 := string(yys1826Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1783 { + switch yys1826 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -24106,18 +24717,18 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1786 := &x.Values - yym1787 := z.DecBinary() - _ = yym1787 + yyv1829 := &x.Values + yym1830 := z.DecBinary() + _ = yym1830 if false { } else { - z.F.DecSliceStringX(yyv1786, false, d) + z.F.DecSliceStringX(yyv1829, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1783) - } // end switch yys1783 - } // end for yyj1783 + z.DecStructFieldNotFound(-1, yys1826) + } // end switch yys1826 + } // end for yyj1826 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24125,16 +24736,16 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1788 int - var yyb1788 bool - var yyhl1788 bool = l >= 0 - yyj1788++ - if yyhl1788 { - yyb1788 = yyj1788 > l + var yyj1831 int + var yyb1831 bool + var yyhl1831 bool = l >= 0 + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1788 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1788 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24144,13 +24755,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Key = string(r.DecodeString()) } - yyj1788++ - if yyhl1788 { - yyb1788 = yyj1788 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1788 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1788 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24160,13 +24771,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Operator = NodeSelectorOperator(r.DecodeString()) } - yyj1788++ - if yyhl1788 { - yyb1788 = yyj1788 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1788 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1788 { + if yyb1831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24174,26 +24785,26 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1791 := &x.Values - yym1792 := z.DecBinary() - _ = yym1792 + yyv1834 := &x.Values + yym1835 := z.DecBinary() + _ = yym1835 if false { } else { - z.F.DecSliceStringX(yyv1791, false, d) + z.F.DecSliceStringX(yyv1834, false, d) } } for { - yyj1788++ - if yyhl1788 { - yyb1788 = yyj1788 > l + yyj1831++ + if yyhl1831 { + yyb1831 = yyj1831 > l } else { - yyb1788 = r.CheckBreak() + yyb1831 = r.CheckBreak() } - if yyb1788 { + if yyb1831 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1788-1, "") + z.DecStructFieldNotFound(yyj1831-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24202,8 +24813,8 @@ func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1793 := z.EncBinary() - _ = yym1793 + yym1836 := z.EncBinary() + _ = yym1836 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24215,8 +24826,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1794 := z.DecBinary() - _ = yym1794 + yym1837 := z.DecBinary() + _ = yym1837 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24231,35 +24842,35 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1795 := z.EncBinary() - _ = yym1795 + yym1838 := z.EncBinary() + _ = yym1838 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1796 := !z.EncBinary() - yy2arr1796 := z.EncBasicHandle().StructToArray - var yyq1796 [3]bool - _, _, _ = yysep1796, yyq1796, yy2arr1796 - const yyr1796 bool = false - yyq1796[0] = x.NodeAffinity != nil - yyq1796[1] = x.PodAffinity != nil - yyq1796[2] = x.PodAntiAffinity != nil - var yynn1796 int - if yyr1796 || yy2arr1796 { + yysep1839 := !z.EncBinary() + yy2arr1839 := z.EncBasicHandle().StructToArray + var yyq1839 [3]bool + _, _, _ = yysep1839, yyq1839, yy2arr1839 + const yyr1839 bool = false + yyq1839[0] = x.NodeAffinity != nil + yyq1839[1] = x.PodAffinity != nil + yyq1839[2] = x.PodAntiAffinity != nil + var yynn1839 int + if yyr1839 || yy2arr1839 { r.EncodeArrayStart(3) } else { - yynn1796 = 0 - for _, b := range yyq1796 { + yynn1839 = 0 + for _, b := range yyq1839 { if b { - yynn1796++ + yynn1839++ } } - r.EncodeMapStart(yynn1796) - yynn1796 = 0 + r.EncodeMapStart(yynn1839) + yynn1839 = 0 } - if yyr1796 || yy2arr1796 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1796[0] { + if yyq1839[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -24269,7 +24880,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1796[0] { + if yyq1839[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24280,9 +24891,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1796 || yy2arr1796 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1796[1] { + if yyq1839[1] { if x.PodAffinity == nil { r.EncodeNil() } else { @@ -24292,7 +24903,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1796[1] { + if yyq1839[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24303,9 +24914,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1796 || yy2arr1796 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1796[2] { + if yyq1839[2] { if x.PodAntiAffinity == nil { r.EncodeNil() } else { @@ -24315,7 +24926,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1796[2] { + if yyq1839[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAntiAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24326,7 +24937,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1796 || yy2arr1796 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24339,25 +24950,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1800 := z.DecBinary() - _ = yym1800 + yym1843 := z.DecBinary() + _ = yym1843 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1801 := r.ContainerType() - if yyct1801 == codecSelferValueTypeMap1234 { - yyl1801 := r.ReadMapStart() - if yyl1801 == 0 { + yyct1844 := r.ContainerType() + if yyct1844 == codecSelferValueTypeMap1234 { + yyl1844 := r.ReadMapStart() + if yyl1844 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1801, d) + x.codecDecodeSelfFromMap(yyl1844, d) } - } else if yyct1801 == codecSelferValueTypeArray1234 { - yyl1801 := r.ReadArrayStart() - if yyl1801 == 0 { + } else if yyct1844 == codecSelferValueTypeArray1234 { + yyl1844 := r.ReadArrayStart() + if yyl1844 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1801, d) + x.codecDecodeSelfFromArray(yyl1844, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24369,12 +24980,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1802Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1802Slc - var yyhl1802 bool = l >= 0 - for yyj1802 := 0; ; yyj1802++ { - if yyhl1802 { - if yyj1802 >= l { + var yys1845Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1845Slc + var yyhl1845 bool = l >= 0 + for yyj1845 := 0; ; yyj1845++ { + if yyhl1845 { + if yyj1845 >= l { break } } else { @@ -24383,10 +24994,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1802Slc = r.DecodeBytes(yys1802Slc, true, true) - yys1802 := string(yys1802Slc) + yys1845Slc = r.DecodeBytes(yys1845Slc, true, true) + yys1845 := string(yys1845Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1802 { + switch yys1845 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -24421,9 +25032,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1802) - } // end switch yys1802 - } // end for yyj1802 + z.DecStructFieldNotFound(-1, yys1845) + } // end switch yys1845 + } // end for yyj1845 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24431,16 +25042,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1806 int - var yyb1806 bool - var yyhl1806 bool = l >= 0 - yyj1806++ - if yyhl1806 { - yyb1806 = yyj1806 > l + var yyj1849 int + var yyb1849 bool + var yyhl1849 bool = l >= 0 + yyj1849++ + if yyhl1849 { + yyb1849 = yyj1849 > l } else { - yyb1806 = r.CheckBreak() + yyb1849 = r.CheckBreak() } - if yyb1806 { + if yyb1849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24455,13 +25066,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NodeAffinity.CodecDecodeSelf(d) } - yyj1806++ - if yyhl1806 { - yyb1806 = yyj1806 > l + yyj1849++ + if yyhl1849 { + yyb1849 = yyj1849 > l } else { - yyb1806 = r.CheckBreak() + yyb1849 = r.CheckBreak() } - if yyb1806 { + if yyb1849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24476,13 +25087,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PodAffinity.CodecDecodeSelf(d) } - yyj1806++ - if yyhl1806 { - yyb1806 = yyj1806 > l + yyj1849++ + if yyhl1849 { + yyb1849 = yyj1849 > l } else { - yyb1806 = r.CheckBreak() + yyb1849 = r.CheckBreak() } - if yyb1806 { + if yyb1849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24498,17 +25109,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } for { - yyj1806++ - if yyhl1806 { - yyb1806 = yyj1806 > l + yyj1849++ + if yyhl1849 { + yyb1849 = yyj1849 > l } else { - yyb1806 = r.CheckBreak() + yyb1849 = r.CheckBreak() } - if yyb1806 { + if yyb1849 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1806-1, "") + z.DecStructFieldNotFound(yyj1849-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24520,39 +25131,39 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1810 := z.EncBinary() - _ = yym1810 + yym1853 := z.EncBinary() + _ = yym1853 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1811 := !z.EncBinary() - yy2arr1811 := z.EncBasicHandle().StructToArray - var yyq1811 [2]bool - _, _, _ = yysep1811, yyq1811, yy2arr1811 - const yyr1811 bool = false - yyq1811[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1811[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1811 int - if yyr1811 || yy2arr1811 { + yysep1854 := !z.EncBinary() + yy2arr1854 := z.EncBasicHandle().StructToArray + var yyq1854 [2]bool + _, _, _ = yysep1854, yyq1854, yy2arr1854 + const yyr1854 bool = false + yyq1854[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1854[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1854 int + if yyr1854 || yy2arr1854 { r.EncodeArrayStart(2) } else { - yynn1811 = 0 - for _, b := range yyq1811 { + yynn1854 = 0 + for _, b := range yyq1854 { if b { - yynn1811++ + yynn1854++ } } - r.EncodeMapStart(yynn1811) - yynn1811 = 0 + r.EncodeMapStart(yynn1854) + yynn1854 = 0 } - if yyr1811 || yy2arr1811 { + if yyr1854 || yy2arr1854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1811[0] { + if yyq1854[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1813 := z.EncBinary() - _ = yym1813 + yym1856 := z.EncBinary() + _ = yym1856 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24562,15 +25173,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1811[0] { + if yyq1854[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1814 := z.EncBinary() - _ = yym1814 + yym1857 := z.EncBinary() + _ = yym1857 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24578,14 +25189,14 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1811 || yy2arr1811 { + if yyr1854 || yy2arr1854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1811[1] { + if yyq1854[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1816 := z.EncBinary() - _ = yym1816 + yym1859 := z.EncBinary() + _ = yym1859 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24595,15 +25206,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1811[1] { + if yyq1854[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1817 := z.EncBinary() - _ = yym1817 + yym1860 := z.EncBinary() + _ = yym1860 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24611,7 +25222,7 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1811 || yy2arr1811 { + if yyr1854 || yy2arr1854 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24624,25 +25235,25 @@ func (x *PodAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1818 := z.DecBinary() - _ = yym1818 + yym1861 := z.DecBinary() + _ = yym1861 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1819 := r.ContainerType() - if yyct1819 == codecSelferValueTypeMap1234 { - yyl1819 := r.ReadMapStart() - if yyl1819 == 0 { + yyct1862 := r.ContainerType() + if yyct1862 == codecSelferValueTypeMap1234 { + yyl1862 := r.ReadMapStart() + if yyl1862 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1819, d) + x.codecDecodeSelfFromMap(yyl1862, d) } - } else if yyct1819 == codecSelferValueTypeArray1234 { - yyl1819 := r.ReadArrayStart() - if yyl1819 == 0 { + } else if yyct1862 == codecSelferValueTypeArray1234 { + yyl1862 := r.ReadArrayStart() + if yyl1862 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1819, d) + x.codecDecodeSelfFromArray(yyl1862, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24654,12 +25265,12 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1820Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1820Slc - var yyhl1820 bool = l >= 0 - for yyj1820 := 0; ; yyj1820++ { - if yyhl1820 { - if yyj1820 >= l { + var yys1863Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1863Slc + var yyhl1863 bool = l >= 0 + for yyj1863 := 0; ; yyj1863++ { + if yyhl1863 { + if yyj1863 >= l { break } } else { @@ -24668,38 +25279,38 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1820Slc = r.DecodeBytes(yys1820Slc, true, true) - yys1820 := string(yys1820Slc) + yys1863Slc = r.DecodeBytes(yys1863Slc, true, true) + yys1863 := string(yys1863Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1820 { + switch yys1863 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1821 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1822 := z.DecBinary() - _ = yym1822 + yyv1864 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1865 := z.DecBinary() + _ = yym1865 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1821), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1864), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1823 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1824 := z.DecBinary() - _ = yym1824 + yyv1866 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1867 := z.DecBinary() + _ = yym1867 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1823), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1866), d) } } default: - z.DecStructFieldNotFound(-1, yys1820) - } // end switch yys1820 - } // end for yyj1820 + z.DecStructFieldNotFound(-1, yys1863) + } // end switch yys1863 + } // end for yyj1863 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24707,16 +25318,16 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1825 int - var yyb1825 bool - var yyhl1825 bool = l >= 0 - yyj1825++ - if yyhl1825 { - yyb1825 = yyj1825 > l + var yyj1868 int + var yyb1868 bool + var yyhl1868 bool = l >= 0 + yyj1868++ + if yyhl1868 { + yyb1868 = yyj1868 > l } else { - yyb1825 = r.CheckBreak() + yyb1868 = r.CheckBreak() } - if yyb1825 { + if yyb1868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24724,21 +25335,21 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1826 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1827 := z.DecBinary() - _ = yym1827 + yyv1869 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1870 := z.DecBinary() + _ = yym1870 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1826), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1869), d) } } - yyj1825++ - if yyhl1825 { - yyb1825 = yyj1825 > l + yyj1868++ + if yyhl1868 { + yyb1868 = yyj1868 > l } else { - yyb1825 = r.CheckBreak() + yyb1868 = r.CheckBreak() } - if yyb1825 { + if yyb1868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24746,26 +25357,26 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1828 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1829 := z.DecBinary() - _ = yym1829 + yyv1871 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1872 := z.DecBinary() + _ = yym1872 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1828), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1871), d) } } for { - yyj1825++ - if yyhl1825 { - yyb1825 = yyj1825 > l + yyj1868++ + if yyhl1868 { + yyb1868 = yyj1868 > l } else { - yyb1825 = r.CheckBreak() + yyb1868 = r.CheckBreak() } - if yyb1825 { + if yyb1868 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1825-1, "") + z.DecStructFieldNotFound(yyj1868-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24777,39 +25388,39 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1830 := z.EncBinary() - _ = yym1830 + yym1873 := z.EncBinary() + _ = yym1873 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1831 := !z.EncBinary() - yy2arr1831 := z.EncBasicHandle().StructToArray - var yyq1831 [2]bool - _, _, _ = yysep1831, yyq1831, yy2arr1831 - const yyr1831 bool = false - yyq1831[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1831[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1831 int - if yyr1831 || yy2arr1831 { + yysep1874 := !z.EncBinary() + yy2arr1874 := z.EncBasicHandle().StructToArray + var yyq1874 [2]bool + _, _, _ = yysep1874, yyq1874, yy2arr1874 + const yyr1874 bool = false + yyq1874[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1874[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1874 int + if yyr1874 || yy2arr1874 { r.EncodeArrayStart(2) } else { - yynn1831 = 0 - for _, b := range yyq1831 { + yynn1874 = 0 + for _, b := range yyq1874 { if b { - yynn1831++ + yynn1874++ } } - r.EncodeMapStart(yynn1831) - yynn1831 = 0 + r.EncodeMapStart(yynn1874) + yynn1874 = 0 } - if yyr1831 || yy2arr1831 { + if yyr1874 || yy2arr1874 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1831[0] { + if yyq1874[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1833 := z.EncBinary() - _ = yym1833 + yym1876 := z.EncBinary() + _ = yym1876 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24819,15 +25430,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1831[0] { + if yyq1874[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1834 := z.EncBinary() - _ = yym1834 + yym1877 := z.EncBinary() + _ = yym1877 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24835,14 +25446,14 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1831 || yy2arr1831 { + if yyr1874 || yy2arr1874 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1831[1] { + if yyq1874[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1836 := z.EncBinary() - _ = yym1836 + yym1879 := z.EncBinary() + _ = yym1879 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24852,15 +25463,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1831[1] { + if yyq1874[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1837 := z.EncBinary() - _ = yym1837 + yym1880 := z.EncBinary() + _ = yym1880 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24868,7 +25479,7 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1831 || yy2arr1831 { + if yyr1874 || yy2arr1874 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24881,25 +25492,25 @@ func (x *PodAntiAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1838 := z.DecBinary() - _ = yym1838 + yym1881 := z.DecBinary() + _ = yym1881 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1839 := r.ContainerType() - if yyct1839 == codecSelferValueTypeMap1234 { - yyl1839 := r.ReadMapStart() - if yyl1839 == 0 { + yyct1882 := r.ContainerType() + if yyct1882 == codecSelferValueTypeMap1234 { + yyl1882 := r.ReadMapStart() + if yyl1882 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1839, d) + x.codecDecodeSelfFromMap(yyl1882, d) } - } else if yyct1839 == codecSelferValueTypeArray1234 { - yyl1839 := r.ReadArrayStart() - if yyl1839 == 0 { + } else if yyct1882 == codecSelferValueTypeArray1234 { + yyl1882 := r.ReadArrayStart() + if yyl1882 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1839, d) + x.codecDecodeSelfFromArray(yyl1882, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24911,12 +25522,12 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1840Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1840Slc - var yyhl1840 bool = l >= 0 - for yyj1840 := 0; ; yyj1840++ { - if yyhl1840 { - if yyj1840 >= l { + var yys1883Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1883Slc + var yyhl1883 bool = l >= 0 + for yyj1883 := 0; ; yyj1883++ { + if yyhl1883 { + if yyj1883 >= l { break } } else { @@ -24925,38 +25536,38 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1840Slc = r.DecodeBytes(yys1840Slc, true, true) - yys1840 := string(yys1840Slc) + yys1883Slc = r.DecodeBytes(yys1883Slc, true, true) + yys1883 := string(yys1883Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1840 { + switch yys1883 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1841 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1842 := z.DecBinary() - _ = yym1842 + yyv1884 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1885 := z.DecBinary() + _ = yym1885 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1841), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1884), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1843 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1844 := z.DecBinary() - _ = yym1844 + yyv1886 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1887 := z.DecBinary() + _ = yym1887 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1843), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1886), d) } } default: - z.DecStructFieldNotFound(-1, yys1840) - } // end switch yys1840 - } // end for yyj1840 + z.DecStructFieldNotFound(-1, yys1883) + } // end switch yys1883 + } // end for yyj1883 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24964,16 +25575,16 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1845 int - var yyb1845 bool - var yyhl1845 bool = l >= 0 - yyj1845++ - if yyhl1845 { - yyb1845 = yyj1845 > l + var yyj1888 int + var yyb1888 bool + var yyhl1888 bool = l >= 0 + yyj1888++ + if yyhl1888 { + yyb1888 = yyj1888 > l } else { - yyb1845 = r.CheckBreak() + yyb1888 = r.CheckBreak() } - if yyb1845 { + if yyb1888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24981,21 +25592,21 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1846 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1847 := z.DecBinary() - _ = yym1847 + yyv1889 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1890 := z.DecBinary() + _ = yym1890 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1846), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1889), d) } } - yyj1845++ - if yyhl1845 { - yyb1845 = yyj1845 > l + yyj1888++ + if yyhl1888 { + yyb1888 = yyj1888 > l } else { - yyb1845 = r.CheckBreak() + yyb1888 = r.CheckBreak() } - if yyb1845 { + if yyb1888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25003,26 +25614,26 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1848 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1849 := z.DecBinary() - _ = yym1849 + yyv1891 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1892 := z.DecBinary() + _ = yym1892 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1848), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1891), d) } } for { - yyj1845++ - if yyhl1845 { - yyb1845 = yyj1845 > l + yyj1888++ + if yyhl1888 { + yyb1888 = yyj1888 > l } else { - yyb1845 = r.CheckBreak() + yyb1888 = r.CheckBreak() } - if yyb1845 { + if yyb1888 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1845-1, "") + z.DecStructFieldNotFound(yyj1888-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25034,33 +25645,33 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1850 := z.EncBinary() - _ = yym1850 + yym1893 := z.EncBinary() + _ = yym1893 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1851 := !z.EncBinary() - yy2arr1851 := z.EncBasicHandle().StructToArray - var yyq1851 [2]bool - _, _, _ = yysep1851, yyq1851, yy2arr1851 - const yyr1851 bool = false - var yynn1851 int - if yyr1851 || yy2arr1851 { + yysep1894 := !z.EncBinary() + yy2arr1894 := z.EncBasicHandle().StructToArray + var yyq1894 [2]bool + _, _, _ = yysep1894, yyq1894, yy2arr1894 + const yyr1894 bool = false + var yynn1894 int + if yyr1894 || yy2arr1894 { r.EncodeArrayStart(2) } else { - yynn1851 = 2 - for _, b := range yyq1851 { + yynn1894 = 2 + for _, b := range yyq1894 { if b { - yynn1851++ + yynn1894++ } } - r.EncodeMapStart(yynn1851) - yynn1851 = 0 + r.EncodeMapStart(yynn1894) + yynn1894 = 0 } - if yyr1851 || yy2arr1851 { + if yyr1894 || yy2arr1894 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1853 := z.EncBinary() - _ = yym1853 + yym1896 := z.EncBinary() + _ = yym1896 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -25069,25 +25680,25 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1854 := z.EncBinary() - _ = yym1854 + yym1897 := z.EncBinary() + _ = yym1897 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1851 || yy2arr1851 { + if yyr1894 || yy2arr1894 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1856 := &x.PodAffinityTerm - yy1856.CodecEncodeSelf(e) + yy1899 := &x.PodAffinityTerm + yy1899.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinityTerm")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1857 := &x.PodAffinityTerm - yy1857.CodecEncodeSelf(e) + yy1900 := &x.PodAffinityTerm + yy1900.CodecEncodeSelf(e) } - if yyr1851 || yy2arr1851 { + if yyr1894 || yy2arr1894 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25100,25 +25711,25 @@ func (x *WeightedPodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1858 := z.DecBinary() - _ = yym1858 + yym1901 := z.DecBinary() + _ = yym1901 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1859 := r.ContainerType() - if yyct1859 == codecSelferValueTypeMap1234 { - yyl1859 := r.ReadMapStart() - if yyl1859 == 0 { + yyct1902 := r.ContainerType() + if yyct1902 == codecSelferValueTypeMap1234 { + yyl1902 := r.ReadMapStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1859, d) + x.codecDecodeSelfFromMap(yyl1902, d) } - } else if yyct1859 == codecSelferValueTypeArray1234 { - yyl1859 := r.ReadArrayStart() - if yyl1859 == 0 { + } else if yyct1902 == codecSelferValueTypeArray1234 { + yyl1902 := r.ReadArrayStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1859, d) + x.codecDecodeSelfFromArray(yyl1902, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25130,12 +25741,12 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1860Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1860Slc - var yyhl1860 bool = l >= 0 - for yyj1860 := 0; ; yyj1860++ { - if yyhl1860 { - if yyj1860 >= 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 { @@ -25144,10 +25755,10 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1860Slc = r.DecodeBytes(yys1860Slc, true, true) - yys1860 := string(yys1860Slc) + yys1903Slc = r.DecodeBytes(yys1903Slc, true, true) + yys1903 := string(yys1903Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1860 { + switch yys1903 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -25158,13 +25769,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1862 := &x.PodAffinityTerm - yyv1862.CodecDecodeSelf(d) + yyv1905 := &x.PodAffinityTerm + yyv1905.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1860) - } // end switch yys1860 - } // end for yyj1860 + z.DecStructFieldNotFound(-1, yys1903) + } // end switch yys1903 + } // end for yyj1903 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25172,16 +25783,16 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1863 int - var yyb1863 bool - var yyhl1863 bool = l >= 0 - yyj1863++ - if yyhl1863 { - yyb1863 = yyj1863 > l + var yyj1906 int + var yyb1906 bool + var yyhl1906 bool = l >= 0 + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1863 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1863 { + if yyb1906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25191,13 +25802,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1863++ - if yyhl1863 { - yyb1863 = yyj1863 > l + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1863 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1863 { + if yyb1906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25205,21 +25816,21 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1865 := &x.PodAffinityTerm - yyv1865.CodecDecodeSelf(d) + yyv1908 := &x.PodAffinityTerm + yyv1908.CodecDecodeSelf(d) } for { - yyj1863++ - if yyhl1863 { - yyb1863 = yyj1863 > l + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1863 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1863 { + if yyb1906 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1863-1, "") + z.DecStructFieldNotFound(yyj1906-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25231,39 +25842,39 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1866 := z.EncBinary() - _ = yym1866 + yym1909 := z.EncBinary() + _ = yym1909 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1867 := !z.EncBinary() - yy2arr1867 := z.EncBasicHandle().StructToArray - var yyq1867 [3]bool - _, _, _ = yysep1867, yyq1867, yy2arr1867 - const yyr1867 bool = false - yyq1867[0] = x.LabelSelector != nil - yyq1867[2] = x.TopologyKey != "" - var yynn1867 int - if yyr1867 || yy2arr1867 { + yysep1910 := !z.EncBinary() + yy2arr1910 := z.EncBasicHandle().StructToArray + var yyq1910 [3]bool + _, _, _ = yysep1910, yyq1910, yy2arr1910 + const yyr1910 bool = false + yyq1910[0] = x.LabelSelector != nil + yyq1910[2] = x.TopologyKey != "" + var yynn1910 int + if yyr1910 || yy2arr1910 { r.EncodeArrayStart(3) } else { - yynn1867 = 1 - for _, b := range yyq1867 { + yynn1910 = 1 + for _, b := range yyq1910 { if b { - yynn1867++ + yynn1910++ } } - r.EncodeMapStart(yynn1867) - yynn1867 = 0 + r.EncodeMapStart(yynn1910) + yynn1910 = 0 } - if yyr1867 || yy2arr1867 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1867[0] { + if yyq1910[0] { if x.LabelSelector == nil { r.EncodeNil() } else { - yym1869 := z.EncBinary() - _ = yym1869 + yym1912 := z.EncBinary() + _ = yym1912 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -25274,15 +25885,15 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1867[0] { + if yyq1910[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym1870 := z.EncBinary() - _ = yym1870 + yym1913 := z.EncBinary() + _ = yym1913 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -25291,13 +25902,13 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1867 || yy2arr1867 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Namespaces == nil { r.EncodeNil() } else { - yym1872 := z.EncBinary() - _ = yym1872 + yym1915 := z.EncBinary() + _ = yym1915 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) @@ -25310,19 +25921,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.Namespaces == nil { r.EncodeNil() } else { - yym1873 := z.EncBinary() - _ = yym1873 + yym1916 := z.EncBinary() + _ = yym1916 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) } } } - if yyr1867 || yy2arr1867 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1867[2] { - yym1875 := z.EncBinary() - _ = yym1875 + if yyq1910[2] { + yym1918 := z.EncBinary() + _ = yym1918 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) @@ -25331,19 +25942,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1867[2] { + if yyq1910[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("topologyKey")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1876 := z.EncBinary() - _ = yym1876 + yym1919 := z.EncBinary() + _ = yym1919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) } } } - if yyr1867 || yy2arr1867 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25356,25 +25967,25 @@ func (x *PodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1877 := z.DecBinary() - _ = yym1877 + yym1920 := z.DecBinary() + _ = yym1920 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1878 := r.ContainerType() - if yyct1878 == codecSelferValueTypeMap1234 { - yyl1878 := r.ReadMapStart() - if yyl1878 == 0 { + yyct1921 := r.ContainerType() + if yyct1921 == codecSelferValueTypeMap1234 { + yyl1921 := r.ReadMapStart() + if yyl1921 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1878, d) + x.codecDecodeSelfFromMap(yyl1921, d) } - } else if yyct1878 == codecSelferValueTypeArray1234 { - yyl1878 := r.ReadArrayStart() - if yyl1878 == 0 { + } else if yyct1921 == codecSelferValueTypeArray1234 { + yyl1921 := r.ReadArrayStart() + if yyl1921 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1878, d) + x.codecDecodeSelfFromArray(yyl1921, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25386,12 +25997,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1879Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1879Slc - var yyhl1879 bool = l >= 0 - for yyj1879 := 0; ; yyj1879++ { - if yyhl1879 { - if yyj1879 >= l { + var yys1922Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1922Slc + var yyhl1922 bool = l >= 0 + for yyj1922 := 0; ; yyj1922++ { + if yyhl1922 { + if yyj1922 >= l { break } } else { @@ -25400,10 +26011,10 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1879Slc = r.DecodeBytes(yys1879Slc, true, true) - yys1879 := string(yys1879Slc) + yys1922Slc = r.DecodeBytes(yys1922Slc, true, true) + yys1922 := string(yys1922Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1879 { + switch yys1922 { case "labelSelector": if r.TryDecodeAsNil() { if x.LabelSelector != nil { @@ -25413,8 +26024,8 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1881 := z.DecBinary() - _ = yym1881 + yym1924 := z.DecBinary() + _ = yym1924 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { @@ -25425,12 +26036,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1882 := &x.Namespaces - yym1883 := z.DecBinary() - _ = yym1883 + yyv1925 := &x.Namespaces + yym1926 := z.DecBinary() + _ = yym1926 if false { } else { - z.F.DecSliceStringX(yyv1882, false, d) + z.F.DecSliceStringX(yyv1925, false, d) } } case "topologyKey": @@ -25440,9 +26051,9 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TopologyKey = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1879) - } // end switch yys1879 - } // end for yyj1879 + z.DecStructFieldNotFound(-1, yys1922) + } // end switch yys1922 + } // end for yyj1922 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25450,16 +26061,16 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1885 int - var yyb1885 bool - var yyhl1885 bool = l >= 0 - yyj1885++ - if yyhl1885 { - yyb1885 = yyj1885 > l + var yyj1928 int + var yyb1928 bool + var yyhl1928 bool = l >= 0 + yyj1928++ + if yyhl1928 { + yyb1928 = yyj1928 > l } else { - yyb1885 = r.CheckBreak() + yyb1928 = r.CheckBreak() } - if yyb1885 { + if yyb1928 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25472,21 +26083,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1887 := z.DecBinary() - _ = yym1887 + yym1930 := z.DecBinary() + _ = yym1930 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { z.DecFallback(x.LabelSelector, false) } } - yyj1885++ - if yyhl1885 { - yyb1885 = yyj1885 > l + yyj1928++ + if yyhl1928 { + yyb1928 = yyj1928 > l } else { - yyb1885 = r.CheckBreak() + yyb1928 = r.CheckBreak() } - if yyb1885 { + if yyb1928 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25494,21 +26105,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1888 := &x.Namespaces - yym1889 := z.DecBinary() - _ = yym1889 + yyv1931 := &x.Namespaces + yym1932 := z.DecBinary() + _ = yym1932 if false { } else { - z.F.DecSliceStringX(yyv1888, false, d) + z.F.DecSliceStringX(yyv1931, false, d) } } - yyj1885++ - if yyhl1885 { - yyb1885 = yyj1885 > l + yyj1928++ + if yyhl1928 { + yyb1928 = yyj1928 > l } else { - yyb1885 = r.CheckBreak() + yyb1928 = r.CheckBreak() } - if yyb1885 { + if yyb1928 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25519,17 +26130,17 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TopologyKey = string(r.DecodeString()) } for { - yyj1885++ - if yyhl1885 { - yyb1885 = yyj1885 > l + yyj1928++ + if yyhl1928 { + yyb1928 = yyj1928 > l } else { - yyb1885 = r.CheckBreak() + yyb1928 = r.CheckBreak() } - if yyb1885 { + if yyb1928 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1885-1, "") + z.DecStructFieldNotFound(yyj1928-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25541,34 +26152,34 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1891 := z.EncBinary() - _ = yym1891 + yym1934 := z.EncBinary() + _ = yym1934 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1892 := !z.EncBinary() - yy2arr1892 := z.EncBasicHandle().StructToArray - var yyq1892 [2]bool - _, _, _ = yysep1892, yyq1892, yy2arr1892 - const yyr1892 bool = false - yyq1892[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1892[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1892 int - if yyr1892 || yy2arr1892 { + yysep1935 := !z.EncBinary() + yy2arr1935 := z.EncBasicHandle().StructToArray + var yyq1935 [2]bool + _, _, _ = yysep1935, yyq1935, yy2arr1935 + const yyr1935 bool = false + yyq1935[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1935[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1935 int + if yyr1935 || yy2arr1935 { r.EncodeArrayStart(2) } else { - yynn1892 = 0 - for _, b := range yyq1892 { + yynn1935 = 0 + for _, b := range yyq1935 { if b { - yynn1892++ + yynn1935++ } } - r.EncodeMapStart(yynn1892) - yynn1892 = 0 + r.EncodeMapStart(yynn1935) + yynn1935 = 0 } - if yyr1892 || yy2arr1892 { + if yyr1935 || yy2arr1935 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1892[0] { + if yyq1935[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { @@ -25578,7 +26189,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1892[0] { + if yyq1935[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -25589,14 +26200,14 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1892 || yy2arr1892 { + if yyr1935 || yy2arr1935 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1892[1] { + if yyq1935[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1895 := z.EncBinary() - _ = yym1895 + yym1938 := z.EncBinary() + _ = yym1938 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25606,15 +26217,15 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1892[1] { + if yyq1935[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1896 := z.EncBinary() - _ = yym1896 + yym1939 := z.EncBinary() + _ = yym1939 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25622,7 +26233,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1892 || yy2arr1892 { + if yyr1935 || yy2arr1935 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25635,25 +26246,25 @@ func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1897 := z.DecBinary() - _ = yym1897 + yym1940 := z.DecBinary() + _ = yym1940 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1898 := r.ContainerType() - if yyct1898 == codecSelferValueTypeMap1234 { - yyl1898 := r.ReadMapStart() - if yyl1898 == 0 { + yyct1941 := r.ContainerType() + if yyct1941 == codecSelferValueTypeMap1234 { + yyl1941 := r.ReadMapStart() + if yyl1941 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1898, d) + x.codecDecodeSelfFromMap(yyl1941, d) } - } else if yyct1898 == codecSelferValueTypeArray1234 { - yyl1898 := r.ReadArrayStart() - if yyl1898 == 0 { + } else if yyct1941 == codecSelferValueTypeArray1234 { + yyl1941 := r.ReadArrayStart() + if yyl1941 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1898, d) + x.codecDecodeSelfFromArray(yyl1941, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25665,12 +26276,12 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1899Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1899Slc - var yyhl1899 bool = l >= 0 - for yyj1899 := 0; ; yyj1899++ { - if yyhl1899 { - if yyj1899 >= l { + var yys1942Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1942Slc + var yyhl1942 bool = l >= 0 + for yyj1942 := 0; ; yyj1942++ { + if yyhl1942 { + if yyj1942 >= l { break } } else { @@ -25679,10 +26290,10 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1899Slc = r.DecodeBytes(yys1899Slc, true, true) - yys1899 := string(yys1899Slc) + yys1942Slc = r.DecodeBytes(yys1942Slc, true, true) + yys1942 := string(yys1942Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1899 { + switch yys1942 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { @@ -25698,18 +26309,18 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1901 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1902 := z.DecBinary() - _ = yym1902 + yyv1944 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1945 := z.DecBinary() + _ = yym1945 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1901), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1944), d) } } default: - z.DecStructFieldNotFound(-1, yys1899) - } // end switch yys1899 - } // end for yyj1899 + z.DecStructFieldNotFound(-1, yys1942) + } // end switch yys1942 + } // end for yyj1942 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25717,16 +26328,16 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1903 int - var yyb1903 bool - var yyhl1903 bool = l >= 0 - yyj1903++ - if yyhl1903 { - yyb1903 = yyj1903 > l + var yyj1946 int + var yyb1946 bool + var yyhl1946 bool = l >= 0 + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1903 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1903 { + if yyb1946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25741,13 +26352,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) } - yyj1903++ - if yyhl1903 { - yyb1903 = yyj1903 > l + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1903 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1903 { + if yyb1946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25755,26 +26366,26 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1905 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1906 := z.DecBinary() - _ = yym1906 + yyv1948 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1949 := z.DecBinary() + _ = yym1949 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1905), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1948), d) } } for { - yyj1903++ - if yyhl1903 { - yyb1903 = yyj1903 > l + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1903 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1903 { + if yyb1946 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1903-1, "") + z.DecStructFieldNotFound(yyj1946-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25786,33 +26397,33 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1907 := z.EncBinary() - _ = yym1907 + yym1950 := z.EncBinary() + _ = yym1950 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1908 := !z.EncBinary() - yy2arr1908 := z.EncBasicHandle().StructToArray - var yyq1908 [2]bool - _, _, _ = yysep1908, yyq1908, yy2arr1908 - const yyr1908 bool = false - var yynn1908 int - if yyr1908 || yy2arr1908 { + yysep1951 := !z.EncBinary() + yy2arr1951 := z.EncBasicHandle().StructToArray + var yyq1951 [2]bool + _, _, _ = yysep1951, yyq1951, yy2arr1951 + const yyr1951 bool = false + var yynn1951 int + if yyr1951 || yy2arr1951 { r.EncodeArrayStart(2) } else { - yynn1908 = 2 - for _, b := range yyq1908 { + yynn1951 = 2 + for _, b := range yyq1951 { if b { - yynn1908++ + yynn1951++ } } - r.EncodeMapStart(yynn1908) - yynn1908 = 0 + r.EncodeMapStart(yynn1951) + yynn1951 = 0 } - if yyr1908 || yy2arr1908 { + if yyr1951 || yy2arr1951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1910 := z.EncBinary() - _ = yym1910 + yym1953 := z.EncBinary() + _ = yym1953 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -25821,25 +26432,25 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1911 := z.EncBinary() - _ = yym1911 + yym1954 := z.EncBinary() + _ = yym1954 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1908 || yy2arr1908 { + if yyr1951 || yy2arr1951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1913 := &x.Preference - yy1913.CodecEncodeSelf(e) + yy1956 := &x.Preference + yy1956.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1914 := &x.Preference - yy1914.CodecEncodeSelf(e) + yy1957 := &x.Preference + yy1957.CodecEncodeSelf(e) } - if yyr1908 || yy2arr1908 { + if yyr1951 || yy2arr1951 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25852,25 +26463,25 @@ func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1915 := z.DecBinary() - _ = yym1915 + yym1958 := z.DecBinary() + _ = yym1958 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1916 := r.ContainerType() - if yyct1916 == codecSelferValueTypeMap1234 { - yyl1916 := r.ReadMapStart() - if yyl1916 == 0 { + yyct1959 := r.ContainerType() + if yyct1959 == codecSelferValueTypeMap1234 { + yyl1959 := r.ReadMapStart() + if yyl1959 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1916, d) + x.codecDecodeSelfFromMap(yyl1959, d) } - } else if yyct1916 == codecSelferValueTypeArray1234 { - yyl1916 := r.ReadArrayStart() - if yyl1916 == 0 { + } else if yyct1959 == codecSelferValueTypeArray1234 { + yyl1959 := r.ReadArrayStart() + if yyl1959 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1916, d) + x.codecDecodeSelfFromArray(yyl1959, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25882,12 +26493,12 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1917Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1917Slc - var yyhl1917 bool = l >= 0 - for yyj1917 := 0; ; yyj1917++ { - if yyhl1917 { - if yyj1917 >= l { + var yys1960Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1960Slc + var yyhl1960 bool = l >= 0 + for yyj1960 := 0; ; yyj1960++ { + if yyhl1960 { + if yyj1960 >= l { break } } else { @@ -25896,10 +26507,10 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1917Slc = r.DecodeBytes(yys1917Slc, true, true) - yys1917 := string(yys1917Slc) + yys1960Slc = r.DecodeBytes(yys1960Slc, true, true) + yys1960 := string(yys1960Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1917 { + switch yys1960 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -25910,13 +26521,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1919 := &x.Preference - yyv1919.CodecDecodeSelf(d) + yyv1962 := &x.Preference + yyv1962.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1917) - } // end switch yys1917 - } // end for yyj1917 + z.DecStructFieldNotFound(-1, yys1960) + } // end switch yys1960 + } // end for yyj1960 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25924,16 +26535,16 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1920 int - var yyb1920 bool - var yyhl1920 bool = l >= 0 - yyj1920++ - if yyhl1920 { - yyb1920 = yyj1920 > l + var yyj1963 int + var yyb1963 bool + var yyhl1963 bool = l >= 0 + yyj1963++ + if yyhl1963 { + yyb1963 = yyj1963 > l } else { - yyb1920 = r.CheckBreak() + yyb1963 = r.CheckBreak() } - if yyb1920 { + if yyb1963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25943,13 +26554,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1920++ - if yyhl1920 { - yyb1920 = yyj1920 > l + yyj1963++ + if yyhl1963 { + yyb1963 = yyj1963 > l } else { - yyb1920 = r.CheckBreak() + yyb1963 = r.CheckBreak() } - if yyb1920 { + if yyb1963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25957,21 +26568,21 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1922 := &x.Preference - yyv1922.CodecDecodeSelf(d) + yyv1965 := &x.Preference + yyv1965.CodecDecodeSelf(d) } for { - yyj1920++ - if yyhl1920 { - yyb1920 = yyj1920 > l + yyj1963++ + if yyhl1963 { + yyb1963 = yyj1963 > l } else { - yyb1920 = r.CheckBreak() + yyb1963 = r.CheckBreak() } - if yyb1920 { + if yyb1963 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1920-1, "") + z.DecStructFieldNotFound(yyj1963-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25983,34 +26594,34 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1923 := z.EncBinary() - _ = yym1923 + yym1966 := z.EncBinary() + _ = yym1966 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1924 := !z.EncBinary() - yy2arr1924 := z.EncBasicHandle().StructToArray - var yyq1924 [3]bool - _, _, _ = yysep1924, yyq1924, yy2arr1924 - const yyr1924 bool = false - yyq1924[1] = x.Value != "" - var yynn1924 int - if yyr1924 || yy2arr1924 { + yysep1967 := !z.EncBinary() + yy2arr1967 := z.EncBasicHandle().StructToArray + var yyq1967 [3]bool + _, _, _ = yysep1967, yyq1967, yy2arr1967 + const yyr1967 bool = false + yyq1967[1] = x.Value != "" + var yynn1967 int + if yyr1967 || yy2arr1967 { r.EncodeArrayStart(3) } else { - yynn1924 = 2 - for _, b := range yyq1924 { + yynn1967 = 2 + for _, b := range yyq1967 { if b { - yynn1924++ + yynn1967++ } } - r.EncodeMapStart(yynn1924) - yynn1924 = 0 + r.EncodeMapStart(yynn1967) + yynn1967 = 0 } - if yyr1924 || yy2arr1924 { + if yyr1967 || yy2arr1967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1926 := z.EncBinary() - _ = yym1926 + yym1969 := z.EncBinary() + _ = yym1969 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -26019,18 +26630,18 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1927 := z.EncBinary() - _ = yym1927 + yym1970 := z.EncBinary() + _ = yym1970 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1924 || yy2arr1924 { + if yyr1967 || yy2arr1967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1924[1] { - yym1929 := z.EncBinary() - _ = yym1929 + if yyq1967[1] { + yym1972 := z.EncBinary() + _ = yym1972 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -26039,19 +26650,19 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1924[1] { + if yyq1967[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1930 := z.EncBinary() - _ = yym1930 + yym1973 := z.EncBinary() + _ = yym1973 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1924 || yy2arr1924 { + if yyr1967 || yy2arr1967 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Effect.CodecEncodeSelf(e) } else { @@ -26060,7 +26671,7 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } - if yyr1924 || yy2arr1924 { + if yyr1967 || yy2arr1967 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26073,25 +26684,25 @@ func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1932 := z.DecBinary() - _ = yym1932 + yym1975 := z.DecBinary() + _ = yym1975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1933 := r.ContainerType() - if yyct1933 == codecSelferValueTypeMap1234 { - yyl1933 := r.ReadMapStart() - if yyl1933 == 0 { + yyct1976 := r.ContainerType() + if yyct1976 == codecSelferValueTypeMap1234 { + yyl1976 := r.ReadMapStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1933, d) + x.codecDecodeSelfFromMap(yyl1976, d) } - } else if yyct1933 == codecSelferValueTypeArray1234 { - yyl1933 := r.ReadArrayStart() - if yyl1933 == 0 { + } else if yyct1976 == codecSelferValueTypeArray1234 { + yyl1976 := r.ReadArrayStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1933, d) + x.codecDecodeSelfFromArray(yyl1976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26103,12 +26714,12 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1934Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1934Slc - var yyhl1934 bool = l >= 0 - for yyj1934 := 0; ; yyj1934++ { - if yyhl1934 { - if yyj1934 >= 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 { @@ -26117,10 +26728,10 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1934Slc = r.DecodeBytes(yys1934Slc, true, true) - yys1934 := string(yys1934Slc) + yys1977Slc = r.DecodeBytes(yys1977Slc, true, true) + yys1977 := string(yys1977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1934 { + switch yys1977 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -26140,9 +26751,9 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1934) - } // end switch yys1934 - } // end for yyj1934 + z.DecStructFieldNotFound(-1, yys1977) + } // end switch yys1977 + } // end for yyj1977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26150,16 +26761,16 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1938 int - var yyb1938 bool - var yyhl1938 bool = l >= 0 - yyj1938++ - if yyhl1938 { - yyb1938 = yyj1938 > l + var yyj1981 int + var yyb1981 bool + var yyhl1981 bool = l >= 0 + yyj1981++ + if yyhl1981 { + yyb1981 = yyj1981 > l } else { - yyb1938 = r.CheckBreak() + yyb1981 = r.CheckBreak() } - if yyb1938 { + if yyb1981 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26169,13 +26780,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1938++ - if yyhl1938 { - yyb1938 = yyj1938 > l + yyj1981++ + if yyhl1981 { + yyb1981 = yyj1981 > l } else { - yyb1938 = r.CheckBreak() + yyb1981 = r.CheckBreak() } - if yyb1938 { + if yyb1981 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26185,13 +26796,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1938++ - if yyhl1938 { - yyb1938 = yyj1938 > l + yyj1981++ + if yyhl1981 { + yyb1981 = yyj1981 > l } else { - yyb1938 = r.CheckBreak() + yyb1981 = r.CheckBreak() } - if yyb1938 { + if yyb1981 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26202,17 +26813,17 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1938++ - if yyhl1938 { - yyb1938 = yyj1938 > l + yyj1981++ + if yyhl1981 { + yyb1981 = yyj1981 > l } else { - yyb1938 = r.CheckBreak() + yyb1981 = r.CheckBreak() } - if yyb1938 { + if yyb1981 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1938-1, "") + z.DecStructFieldNotFound(yyj1981-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26221,8 +26832,8 @@ func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1942 := z.EncBinary() - _ = yym1942 + yym1985 := z.EncBinary() + _ = yym1985 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26234,8 +26845,8 @@ func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1943 := z.DecBinary() - _ = yym1943 + yym1986 := z.DecBinary() + _ = yym1986 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26250,38 +26861,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1944 := z.EncBinary() - _ = yym1944 + yym1987 := z.EncBinary() + _ = yym1987 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1945 := !z.EncBinary() - yy2arr1945 := z.EncBasicHandle().StructToArray - var yyq1945 [4]bool - _, _, _ = yysep1945, yyq1945, yy2arr1945 - const yyr1945 bool = false - yyq1945[0] = x.Key != "" - yyq1945[1] = x.Operator != "" - yyq1945[2] = x.Value != "" - yyq1945[3] = x.Effect != "" - var yynn1945 int - if yyr1945 || yy2arr1945 { + yysep1988 := !z.EncBinary() + yy2arr1988 := z.EncBasicHandle().StructToArray + var yyq1988 [4]bool + _, _, _ = yysep1988, yyq1988, yy2arr1988 + const yyr1988 bool = false + yyq1988[0] = x.Key != "" + yyq1988[1] = x.Operator != "" + yyq1988[2] = x.Value != "" + yyq1988[3] = x.Effect != "" + var yynn1988 int + if yyr1988 || yy2arr1988 { r.EncodeArrayStart(4) } else { - yynn1945 = 0 - for _, b := range yyq1945 { + yynn1988 = 0 + for _, b := range yyq1988 { if b { - yynn1945++ + yynn1988++ } } - r.EncodeMapStart(yynn1945) - yynn1945 = 0 + r.EncodeMapStart(yynn1988) + yynn1988 = 0 } - if yyr1945 || yy2arr1945 { + if yyr1988 || yy2arr1988 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1945[0] { - yym1947 := z.EncBinary() - _ = yym1947 + if yyq1988[0] { + yym1990 := z.EncBinary() + _ = yym1990 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -26290,38 +26901,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1945[0] { + if yyq1988[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1948 := z.EncBinary() - _ = yym1948 + yym1991 := z.EncBinary() + _ = yym1991 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } } - if yyr1945 || yy2arr1945 { + if yyr1988 || yy2arr1988 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1945[1] { + if yyq1988[1] { x.Operator.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1945[1] { + if yyq1988[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operator")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } } - if yyr1945 || yy2arr1945 { + if yyr1988 || yy2arr1988 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1945[2] { - yym1951 := z.EncBinary() - _ = yym1951 + if yyq1988[2] { + yym1994 := z.EncBinary() + _ = yym1994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -26330,34 +26941,34 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1945[2] { + if yyq1988[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1952 := z.EncBinary() - _ = yym1952 + yym1995 := z.EncBinary() + _ = yym1995 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1945 || yy2arr1945 { + if yyr1988 || yy2arr1988 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1945[3] { + if yyq1988[3] { x.Effect.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1945[3] { + if yyq1988[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("effect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } } - if yyr1945 || yy2arr1945 { + if yyr1988 || yy2arr1988 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26370,25 +26981,25 @@ func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1954 := z.DecBinary() - _ = yym1954 + yym1997 := z.DecBinary() + _ = yym1997 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1955 := r.ContainerType() - if yyct1955 == codecSelferValueTypeMap1234 { - yyl1955 := r.ReadMapStart() - if yyl1955 == 0 { + yyct1998 := r.ContainerType() + if yyct1998 == codecSelferValueTypeMap1234 { + yyl1998 := r.ReadMapStart() + if yyl1998 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1955, d) + x.codecDecodeSelfFromMap(yyl1998, d) } - } else if yyct1955 == codecSelferValueTypeArray1234 { - yyl1955 := r.ReadArrayStart() - if yyl1955 == 0 { + } else if yyct1998 == codecSelferValueTypeArray1234 { + yyl1998 := r.ReadArrayStart() + if yyl1998 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1955, d) + x.codecDecodeSelfFromArray(yyl1998, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26400,12 +27011,12 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1956Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1956Slc - var yyhl1956 bool = l >= 0 - for yyj1956 := 0; ; yyj1956++ { - if yyhl1956 { - if yyj1956 >= l { + var yys1999Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1999Slc + var yyhl1999 bool = l >= 0 + for yyj1999 := 0; ; yyj1999++ { + if yyhl1999 { + if yyj1999 >= l { break } } else { @@ -26414,10 +27025,10 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1956Slc = r.DecodeBytes(yys1956Slc, true, true) - yys1956 := string(yys1956Slc) + yys1999Slc = r.DecodeBytes(yys1999Slc, true, true) + yys1999 := string(yys1999Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1956 { + switch yys1999 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -26443,9 +27054,9 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1956) - } // end switch yys1956 - } // end for yyj1956 + z.DecStructFieldNotFound(-1, yys1999) + } // end switch yys1999 + } // end for yyj1999 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26453,16 +27064,16 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1961 int - var yyb1961 bool - var yyhl1961 bool = l >= 0 - yyj1961++ - if yyhl1961 { - yyb1961 = yyj1961 > l + var yyj2004 int + var yyb2004 bool + var yyhl2004 bool = l >= 0 + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l } else { - yyb1961 = r.CheckBreak() + yyb2004 = r.CheckBreak() } - if yyb1961 { + if yyb2004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26472,13 +27083,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1961++ - if yyhl1961 { - yyb1961 = yyj1961 > l + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l } else { - yyb1961 = r.CheckBreak() + yyb2004 = r.CheckBreak() } - if yyb1961 { + if yyb2004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26488,13 +27099,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Operator = TolerationOperator(r.DecodeString()) } - yyj1961++ - if yyhl1961 { - yyb1961 = yyj1961 > l + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l } else { - yyb1961 = r.CheckBreak() + yyb2004 = r.CheckBreak() } - if yyb1961 { + if yyb2004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26504,13 +27115,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1961++ - if yyhl1961 { - yyb1961 = yyj1961 > l + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l } else { - yyb1961 = r.CheckBreak() + yyb2004 = r.CheckBreak() } - if yyb1961 { + if yyb2004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26521,17 +27132,17 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1961++ - if yyhl1961 { - yyb1961 = yyj1961 > l + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l } else { - yyb1961 = r.CheckBreak() + yyb2004 = r.CheckBreak() } - if yyb1961 { + if yyb2004 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1961-1, "") + z.DecStructFieldNotFound(yyj2004-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26540,8 +27151,8 @@ func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1966 := z.EncBinary() - _ = yym1966 + yym2009 := z.EncBinary() + _ = yym2009 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26553,8 +27164,8 @@ func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1967 := z.DecBinary() - _ = yym1967 + yym2010 := z.DecBinary() + _ = yym2010 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26569,46 +27180,46 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1968 := z.EncBinary() - _ = yym1968 + yym2011 := z.EncBinary() + _ = yym2011 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1969 := !z.EncBinary() - yy2arr1969 := z.EncBasicHandle().StructToArray - var yyq1969 [13]bool - _, _, _ = yysep1969, yyq1969, yy2arr1969 - const yyr1969 bool = false - yyq1969[2] = x.RestartPolicy != "" - yyq1969[3] = x.TerminationGracePeriodSeconds != nil - yyq1969[4] = x.ActiveDeadlineSeconds != nil - yyq1969[5] = x.DNSPolicy != "" - yyq1969[6] = len(x.NodeSelector) != 0 - yyq1969[8] = x.NodeName != "" - yyq1969[9] = x.SecurityContext != nil - yyq1969[10] = len(x.ImagePullSecrets) != 0 - yyq1969[11] = x.Hostname != "" - yyq1969[12] = x.Subdomain != "" - var yynn1969 int - if yyr1969 || yy2arr1969 { + yysep2012 := !z.EncBinary() + yy2arr2012 := z.EncBasicHandle().StructToArray + var yyq2012 [13]bool + _, _, _ = yysep2012, yyq2012, yy2arr2012 + const yyr2012 bool = false + yyq2012[2] = x.RestartPolicy != "" + yyq2012[3] = x.TerminationGracePeriodSeconds != nil + yyq2012[4] = x.ActiveDeadlineSeconds != nil + yyq2012[5] = x.DNSPolicy != "" + yyq2012[6] = len(x.NodeSelector) != 0 + yyq2012[8] = x.NodeName != "" + yyq2012[9] = x.SecurityContext != nil + yyq2012[10] = len(x.ImagePullSecrets) != 0 + yyq2012[11] = x.Hostname != "" + yyq2012[12] = x.Subdomain != "" + var yynn2012 int + if yyr2012 || yy2arr2012 { r.EncodeArrayStart(13) } else { - yynn1969 = 3 - for _, b := range yyq1969 { + yynn2012 = 3 + for _, b := range yyq2012 { if b { - yynn1969++ + yynn2012++ } } - r.EncodeMapStart(yynn1969) - yynn1969 = 0 + r.EncodeMapStart(yynn2012) + yynn2012 = 0 } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1971 := z.EncBinary() - _ = yym1971 + yym2014 := z.EncBinary() + _ = yym2014 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -26621,21 +27232,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Volumes == nil { r.EncodeNil() } else { - yym1972 := z.EncBinary() - _ = yym1972 + yym2015 := z.EncBinary() + _ = yym2015 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1974 := z.EncBinary() - _ = yym1974 + yym2017 := z.EncBinary() + _ = yym2017 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -26648,122 +27259,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1975 := z.EncBinary() - _ = yym1975 + yym2018 := z.EncBinary() + _ = yym2018 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[2] { + if yyq2012[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1969[2] { + if yyq2012[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[3] { + if yyq2012[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1978 := *x.TerminationGracePeriodSeconds - yym1979 := z.EncBinary() - _ = yym1979 + yy2021 := *x.TerminationGracePeriodSeconds + yym2022 := z.EncBinary() + _ = yym2022 if false { } else { - r.EncodeInt(int64(yy1978)) + r.EncodeInt(int64(yy2021)) } } } else { r.EncodeNil() } } else { - if yyq1969[3] { + if yyq2012[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1980 := *x.TerminationGracePeriodSeconds - yym1981 := z.EncBinary() - _ = yym1981 + yy2023 := *x.TerminationGracePeriodSeconds + yym2024 := z.EncBinary() + _ = yym2024 if false { } else { - r.EncodeInt(int64(yy1980)) + r.EncodeInt(int64(yy2023)) } } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[4] { + if yyq2012[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1983 := *x.ActiveDeadlineSeconds - yym1984 := z.EncBinary() - _ = yym1984 + yy2026 := *x.ActiveDeadlineSeconds + yym2027 := z.EncBinary() + _ = yym2027 if false { } else { - r.EncodeInt(int64(yy1983)) + r.EncodeInt(int64(yy2026)) } } } else { r.EncodeNil() } } else { - if yyq1969[4] { + if yyq2012[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1985 := *x.ActiveDeadlineSeconds - yym1986 := z.EncBinary() - _ = yym1986 + yy2028 := *x.ActiveDeadlineSeconds + yym2029 := z.EncBinary() + _ = yym2029 if false { } else { - r.EncodeInt(int64(yy1985)) + r.EncodeInt(int64(yy2028)) } } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[5] { + if yyq2012[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1969[5] { + if yyq2012[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[6] { + if yyq2012[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1989 := z.EncBinary() - _ = yym1989 + yym2032 := z.EncBinary() + _ = yym2032 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -26773,15 +27384,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1969[6] { + if yyq2012[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1990 := z.EncBinary() - _ = yym1990 + yym2033 := z.EncBinary() + _ = yym2033 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -26789,10 +27400,10 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1992 := z.EncBinary() - _ = yym1992 + yym2035 := z.EncBinary() + _ = yym2035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -26801,18 +27412,18 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1993 := z.EncBinary() - _ = yym1993 + yym2036 := z.EncBinary() + _ = yym2036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[8] { - yym1995 := z.EncBinary() - _ = yym1995 + if yyq2012[8] { + yym2038 := z.EncBinary() + _ = yym2038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -26821,21 +27432,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1969[8] { + if yyq2012[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1996 := z.EncBinary() - _ = yym1996 + yym2039 := z.EncBinary() + _ = yym2039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[9] { + if yyq2012[9] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -26845,7 +27456,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1969[9] { + if yyq2012[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -26856,14 +27467,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[10] { + if yyq2012[10] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1999 := z.EncBinary() - _ = yym1999 + yym2042 := z.EncBinary() + _ = yym2042 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26873,15 +27484,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1969[10] { + if yyq2012[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2000 := z.EncBinary() - _ = yym2000 + yym2043 := z.EncBinary() + _ = yym2043 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26889,11 +27500,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[11] { - yym2002 := z.EncBinary() - _ = yym2002 + if yyq2012[11] { + yym2045 := z.EncBinary() + _ = yym2045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -26902,23 +27513,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1969[11] { + if yyq2012[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2003 := z.EncBinary() - _ = yym2003 + yym2046 := z.EncBinary() + _ = yym2046 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1969[12] { - yym2005 := z.EncBinary() - _ = yym2005 + if yyq2012[12] { + yym2048 := z.EncBinary() + _ = yym2048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) @@ -26927,19 +27538,19 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1969[12] { + if yyq2012[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subdomain")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2006 := z.EncBinary() - _ = yym2006 + yym2049 := z.EncBinary() + _ = yym2049 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) } } } - if yyr1969 || yy2arr1969 { + if yyr2012 || yy2arr2012 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26952,25 +27563,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2007 := z.DecBinary() - _ = yym2007 + yym2050 := z.DecBinary() + _ = yym2050 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2008 := r.ContainerType() - if yyct2008 == codecSelferValueTypeMap1234 { - yyl2008 := r.ReadMapStart() - if yyl2008 == 0 { + yyct2051 := r.ContainerType() + if yyct2051 == codecSelferValueTypeMap1234 { + yyl2051 := r.ReadMapStart() + if yyl2051 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2008, d) + x.codecDecodeSelfFromMap(yyl2051, d) } - } else if yyct2008 == codecSelferValueTypeArray1234 { - yyl2008 := r.ReadArrayStart() - if yyl2008 == 0 { + } else if yyct2051 == codecSelferValueTypeArray1234 { + yyl2051 := r.ReadArrayStart() + if yyl2051 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2008, d) + x.codecDecodeSelfFromArray(yyl2051, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26982,12 +27593,12 @@ func (x *PodSpec) 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 yys2052Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2052Slc + var yyhl2052 bool = l >= 0 + for yyj2052 := 0; ; yyj2052++ { + if yyhl2052 { + if yyj2052 >= l { break } } else { @@ -26996,32 +27607,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2009Slc = r.DecodeBytes(yys2009Slc, true, true) - yys2009 := string(yys2009Slc) + yys2052Slc = r.DecodeBytes(yys2052Slc, true, true) + yys2052 := string(yys2052Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2009 { + switch yys2052 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2010 := &x.Volumes - yym2011 := z.DecBinary() - _ = yym2011 + yyv2053 := &x.Volumes + yym2054 := z.DecBinary() + _ = yym2054 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2010), d) + h.decSliceVolume((*[]Volume)(yyv2053), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2012 := &x.Containers - yym2013 := z.DecBinary() - _ = yym2013 + yyv2055 := &x.Containers + yym2056 := z.DecBinary() + _ = yym2056 if false { } else { - h.decSliceContainer((*[]Container)(yyv2012), d) + h.decSliceContainer((*[]Container)(yyv2055), d) } } case "restartPolicy": @@ -27039,8 +27650,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2016 := z.DecBinary() - _ = yym2016 + yym2059 := z.DecBinary() + _ = yym2059 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -27055,8 +27666,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2018 := z.DecBinary() - _ = yym2018 + yym2061 := z.DecBinary() + _ = yym2061 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -27072,12 +27683,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2020 := &x.NodeSelector - yym2021 := z.DecBinary() - _ = yym2021 + yyv2063 := &x.NodeSelector + yym2064 := z.DecBinary() + _ = yym2064 if false { } else { - z.F.DecMapStringStringX(yyv2020, false, d) + z.F.DecMapStringStringX(yyv2063, false, d) } } case "serviceAccountName": @@ -27107,12 +27718,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2025 := &x.ImagePullSecrets - yym2026 := z.DecBinary() - _ = yym2026 + yyv2068 := &x.ImagePullSecrets + yym2069 := z.DecBinary() + _ = yym2069 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2025), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2068), d) } } case "hostname": @@ -27128,9 +27739,9 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2009) - } // end switch yys2009 - } // end for yyj2009 + z.DecStructFieldNotFound(-1, yys2052) + } // end switch yys2052 + } // end for yyj2052 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27138,16 +27749,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2029 int - var yyb2029 bool - var yyhl2029 bool = l >= 0 - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + var yyj2072 int + var yyb2072 bool + var yyhl2072 bool = l >= 0 + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27155,21 +27766,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2030 := &x.Volumes - yym2031 := z.DecBinary() - _ = yym2031 + yyv2073 := &x.Volumes + yym2074 := z.DecBinary() + _ = yym2074 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2030), d) + h.decSliceVolume((*[]Volume)(yyv2073), d) } } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27177,21 +27788,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2032 := &x.Containers - yym2033 := z.DecBinary() - _ = yym2033 + yyv2075 := &x.Containers + yym2076 := z.DecBinary() + _ = yym2076 if false { } else { - h.decSliceContainer((*[]Container)(yyv2032), d) + h.decSliceContainer((*[]Container)(yyv2075), d) } } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27201,13 +27812,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27220,20 +27831,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2036 := z.DecBinary() - _ = yym2036 + yym2079 := z.DecBinary() + _ = yym2079 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27246,20 +27857,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2038 := z.DecBinary() - _ = yym2038 + yym2081 := z.DecBinary() + _ = yym2081 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27269,13 +27880,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27283,21 +27894,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2040 := &x.NodeSelector - yym2041 := z.DecBinary() - _ = yym2041 + yyv2083 := &x.NodeSelector + yym2084 := z.DecBinary() + _ = yym2084 if false { } else { - z.F.DecMapStringStringX(yyv2040, false, d) + z.F.DecMapStringStringX(yyv2083, false, d) } } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27307,13 +27918,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27323,13 +27934,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27344,13 +27955,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27358,21 +27969,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2045 := &x.ImagePullSecrets - yym2046 := z.DecBinary() - _ = yym2046 + yyv2088 := &x.ImagePullSecrets + yym2089 := z.DecBinary() + _ = yym2089 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2045), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2088), d) } } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27382,13 +27993,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Hostname = string(r.DecodeString()) } - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27399,17 +28010,17 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } for { - yyj2029++ - if yyhl2029 { - yyb2029 = yyj2029 > l + yyj2072++ + if yyhl2072 { + yyb2072 = yyj2072 > l } else { - yyb2029 = r.CheckBreak() + yyb2072 = r.CheckBreak() } - if yyb2029 { + if yyb2072 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2029-1, "") + z.DecStructFieldNotFound(yyj2072-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27421,42 +28032,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2049 := z.EncBinary() - _ = yym2049 + yym2092 := z.EncBinary() + _ = yym2092 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2050 := !z.EncBinary() - yy2arr2050 := z.EncBasicHandle().StructToArray - var yyq2050 [8]bool - _, _, _ = yysep2050, yyq2050, yy2arr2050 - const yyr2050 bool = false - yyq2050[0] = x.HostNetwork != false - yyq2050[1] = x.HostPID != false - yyq2050[2] = x.HostIPC != false - yyq2050[3] = x.SELinuxOptions != nil - yyq2050[4] = x.RunAsUser != nil - yyq2050[5] = x.RunAsNonRoot != nil - yyq2050[6] = len(x.SupplementalGroups) != 0 - yyq2050[7] = x.FSGroup != nil - var yynn2050 int - if yyr2050 || yy2arr2050 { + yysep2093 := !z.EncBinary() + yy2arr2093 := z.EncBasicHandle().StructToArray + var yyq2093 [8]bool + _, _, _ = yysep2093, yyq2093, yy2arr2093 + const yyr2093 bool = false + yyq2093[0] = x.HostNetwork != false + yyq2093[1] = x.HostPID != false + yyq2093[2] = x.HostIPC != false + yyq2093[3] = x.SELinuxOptions != nil + yyq2093[4] = x.RunAsUser != nil + yyq2093[5] = x.RunAsNonRoot != nil + yyq2093[6] = len(x.SupplementalGroups) != 0 + yyq2093[7] = x.FSGroup != nil + var yynn2093 int + if yyr2093 || yy2arr2093 { r.EncodeArrayStart(8) } else { - yynn2050 = 0 - for _, b := range yyq2050 { + yynn2093 = 0 + for _, b := range yyq2093 { if b { - yynn2050++ + yynn2093++ } } - r.EncodeMapStart(yynn2050) - yynn2050 = 0 + r.EncodeMapStart(yynn2093) + yynn2093 = 0 } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[0] { - yym2052 := z.EncBinary() - _ = yym2052 + if yyq2093[0] { + yym2095 := z.EncBinary() + _ = yym2095 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -27465,23 +28076,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2050[0] { + if yyq2093[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2053 := z.EncBinary() - _ = yym2053 + yym2096 := z.EncBinary() + _ = yym2096 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[1] { - yym2055 := z.EncBinary() - _ = yym2055 + if yyq2093[1] { + yym2098 := z.EncBinary() + _ = yym2098 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -27490,23 +28101,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2050[1] { + if yyq2093[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2056 := z.EncBinary() - _ = yym2056 + yym2099 := z.EncBinary() + _ = yym2099 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[2] { - yym2058 := z.EncBinary() - _ = yym2058 + if yyq2093[2] { + yym2101 := z.EncBinary() + _ = yym2101 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -27515,21 +28126,21 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2050[2] { + if yyq2093[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2059 := z.EncBinary() - _ = yym2059 + yym2102 := z.EncBinary() + _ = yym2102 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[3] { + if yyq2093[3] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -27539,7 +28150,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2050[3] { + if yyq2093[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -27550,84 +28161,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[4] { + if yyq2093[4] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy2062 := *x.RunAsUser - yym2063 := z.EncBinary() - _ = yym2063 + yy2105 := *x.RunAsUser + yym2106 := z.EncBinary() + _ = yym2106 if false { } else { - r.EncodeInt(int64(yy2062)) + r.EncodeInt(int64(yy2105)) } } } else { r.EncodeNil() } } else { - if yyq2050[4] { + if yyq2093[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy2064 := *x.RunAsUser - yym2065 := z.EncBinary() - _ = yym2065 + yy2107 := *x.RunAsUser + yym2108 := z.EncBinary() + _ = yym2108 if false { } else { - r.EncodeInt(int64(yy2064)) + r.EncodeInt(int64(yy2107)) } } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[5] { + if yyq2093[5] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2067 := *x.RunAsNonRoot - yym2068 := z.EncBinary() - _ = yym2068 + yy2110 := *x.RunAsNonRoot + yym2111 := z.EncBinary() + _ = yym2111 if false { } else { - r.EncodeBool(bool(yy2067)) + r.EncodeBool(bool(yy2110)) } } } else { r.EncodeNil() } } else { - if yyq2050[5] { + if yyq2093[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2069 := *x.RunAsNonRoot - yym2070 := z.EncBinary() - _ = yym2070 + yy2112 := *x.RunAsNonRoot + yym2113 := z.EncBinary() + _ = yym2113 if false { } else { - r.EncodeBool(bool(yy2069)) + r.EncodeBool(bool(yy2112)) } } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[6] { + if yyq2093[6] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2072 := z.EncBinary() - _ = yym2072 + yym2115 := z.EncBinary() + _ = yym2115 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -27637,15 +28248,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2050[6] { + if yyq2093[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2073 := z.EncBinary() - _ = yym2073 + yym2116 := z.EncBinary() + _ = yym2116 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -27653,42 +28264,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2050[7] { + if yyq2093[7] { if x.FSGroup == nil { r.EncodeNil() } else { - yy2075 := *x.FSGroup - yym2076 := z.EncBinary() - _ = yym2076 + yy2118 := *x.FSGroup + yym2119 := z.EncBinary() + _ = yym2119 if false { } else { - r.EncodeInt(int64(yy2075)) + r.EncodeInt(int64(yy2118)) } } } else { r.EncodeNil() } } else { - if yyq2050[7] { + if yyq2093[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy2077 := *x.FSGroup - yym2078 := z.EncBinary() - _ = yym2078 + yy2120 := *x.FSGroup + yym2121 := z.EncBinary() + _ = yym2121 if false { } else { - r.EncodeInt(int64(yy2077)) + r.EncodeInt(int64(yy2120)) } } } } - if yyr2050 || yy2arr2050 { + if yyr2093 || yy2arr2093 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27701,25 +28312,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2079 := z.DecBinary() - _ = yym2079 + yym2122 := z.DecBinary() + _ = yym2122 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2080 := r.ContainerType() - if yyct2080 == codecSelferValueTypeMap1234 { - yyl2080 := r.ReadMapStart() - if yyl2080 == 0 { + yyct2123 := r.ContainerType() + if yyct2123 == codecSelferValueTypeMap1234 { + yyl2123 := r.ReadMapStart() + if yyl2123 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2080, d) + x.codecDecodeSelfFromMap(yyl2123, d) } - } else if yyct2080 == codecSelferValueTypeArray1234 { - yyl2080 := r.ReadArrayStart() - if yyl2080 == 0 { + } else if yyct2123 == codecSelferValueTypeArray1234 { + yyl2123 := r.ReadArrayStart() + if yyl2123 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2080, d) + x.codecDecodeSelfFromArray(yyl2123, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27731,12 +28342,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2081Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2081Slc - var yyhl2081 bool = l >= 0 - for yyj2081 := 0; ; yyj2081++ { - if yyhl2081 { - if yyj2081 >= l { + var yys2124Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2124Slc + var yyhl2124 bool = l >= 0 + for yyj2124 := 0; ; yyj2124++ { + if yyhl2124 { + if yyj2124 >= l { break } } else { @@ -27745,10 +28356,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2081Slc = r.DecodeBytes(yys2081Slc, true, true) - yys2081 := string(yys2081Slc) + yys2124Slc = r.DecodeBytes(yys2124Slc, true, true) + yys2124 := string(yys2124Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2081 { + switch yys2124 { case "hostNetwork": if r.TryDecodeAsNil() { x.HostNetwork = false @@ -27787,8 +28398,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2087 := z.DecBinary() - _ = yym2087 + yym2130 := z.DecBinary() + _ = yym2130 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -27803,8 +28414,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2089 := z.DecBinary() - _ = yym2089 + yym2132 := z.DecBinary() + _ = yym2132 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -27814,12 +28425,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2090 := &x.SupplementalGroups - yym2091 := z.DecBinary() - _ = yym2091 + yyv2133 := &x.SupplementalGroups + yym2134 := z.DecBinary() + _ = yym2134 if false { } else { - z.F.DecSliceInt64X(yyv2090, false, d) + z.F.DecSliceInt64X(yyv2133, false, d) } } case "fsGroup": @@ -27831,17 +28442,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2093 := z.DecBinary() - _ = yym2093 + yym2136 := z.DecBinary() + _ = yym2136 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2081) - } // end switch yys2081 - } // end for yyj2081 + z.DecStructFieldNotFound(-1, yys2124) + } // end switch yys2124 + } // end for yyj2124 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27849,16 +28460,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2094 int - var yyb2094 bool - var yyhl2094 bool = l >= 0 - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + var yyj2137 int + var yyb2137 bool + var yyhl2137 bool = l >= 0 + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27868,13 +28479,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27884,13 +28495,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostPID = bool(r.DecodeBool()) } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27900,13 +28511,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostIPC = bool(r.DecodeBool()) } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27921,13 +28532,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27940,20 +28551,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2100 := z.DecBinary() - _ = yym2100 + yym2143 := z.DecBinary() + _ = yym2143 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27966,20 +28577,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2102 := z.DecBinary() - _ = yym2102 + yym2145 := z.DecBinary() + _ = yym2145 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27987,21 +28598,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2103 := &x.SupplementalGroups - yym2104 := z.DecBinary() - _ = yym2104 + yyv2146 := &x.SupplementalGroups + yym2147 := z.DecBinary() + _ = yym2147 if false { } else { - z.F.DecSliceInt64X(yyv2103, false, d) + z.F.DecSliceInt64X(yyv2146, false, d) } } - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28014,25 +28625,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2106 := z.DecBinary() - _ = yym2106 + yym2149 := z.DecBinary() + _ = yym2149 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj2094++ - if yyhl2094 { - yyb2094 = yyj2094 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2094 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2094 { + if yyb2137 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2094-1, "") + z.DecStructFieldNotFound(yyj2137-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28044,60 +28655,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2107 := z.EncBinary() - _ = yym2107 + yym2150 := z.EncBinary() + _ = yym2150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2108 := !z.EncBinary() - yy2arr2108 := z.EncBasicHandle().StructToArray - var yyq2108 [8]bool - _, _, _ = yysep2108, yyq2108, yy2arr2108 - const yyr2108 bool = false - yyq2108[0] = x.Phase != "" - yyq2108[1] = len(x.Conditions) != 0 - yyq2108[2] = x.Message != "" - yyq2108[3] = x.Reason != "" - yyq2108[4] = x.HostIP != "" - yyq2108[5] = x.PodIP != "" - yyq2108[6] = x.StartTime != nil - yyq2108[7] = len(x.ContainerStatuses) != 0 - var yynn2108 int - if yyr2108 || yy2arr2108 { + yysep2151 := !z.EncBinary() + yy2arr2151 := z.EncBasicHandle().StructToArray + var yyq2151 [8]bool + _, _, _ = yysep2151, yyq2151, yy2arr2151 + const yyr2151 bool = false + yyq2151[0] = x.Phase != "" + yyq2151[1] = len(x.Conditions) != 0 + yyq2151[2] = x.Message != "" + yyq2151[3] = x.Reason != "" + yyq2151[4] = x.HostIP != "" + yyq2151[5] = x.PodIP != "" + yyq2151[6] = x.StartTime != nil + yyq2151[7] = len(x.ContainerStatuses) != 0 + var yynn2151 int + if yyr2151 || yy2arr2151 { r.EncodeArrayStart(8) } else { - yynn2108 = 0 - for _, b := range yyq2108 { + yynn2151 = 0 + for _, b := range yyq2151 { if b { - yynn2108++ + yynn2151++ } } - r.EncodeMapStart(yynn2108) - yynn2108 = 0 + r.EncodeMapStart(yynn2151) + yynn2151 = 0 } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[0] { + if yyq2151[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2108[0] { + if yyq2151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[1] { + if yyq2151[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym2111 := z.EncBinary() - _ = yym2111 + yym2154 := z.EncBinary() + _ = yym2154 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -28107,15 +28718,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2108[1] { + if yyq2151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2112 := z.EncBinary() - _ = yym2112 + yym2155 := z.EncBinary() + _ = yym2155 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -28123,11 +28734,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[2] { - yym2114 := z.EncBinary() - _ = yym2114 + if yyq2151[2] { + yym2157 := z.EncBinary() + _ = yym2157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -28136,23 +28747,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2108[2] { + if yyq2151[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2115 := z.EncBinary() - _ = yym2115 + yym2158 := z.EncBinary() + _ = yym2158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[3] { - yym2117 := z.EncBinary() - _ = yym2117 + if yyq2151[3] { + yym2160 := z.EncBinary() + _ = yym2160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -28161,23 +28772,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2108[3] { + if yyq2151[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2118 := z.EncBinary() - _ = yym2118 + yym2161 := z.EncBinary() + _ = yym2161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[4] { - yym2120 := z.EncBinary() - _ = yym2120 + if yyq2151[4] { + yym2163 := z.EncBinary() + _ = yym2163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -28186,23 +28797,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2108[4] { + if yyq2151[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2121 := z.EncBinary() - _ = yym2121 + yym2164 := z.EncBinary() + _ = yym2164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[5] { - yym2123 := z.EncBinary() - _ = yym2123 + if yyq2151[5] { + yym2166 := z.EncBinary() + _ = yym2166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -28211,31 +28822,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2108[5] { + if yyq2151[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2124 := z.EncBinary() - _ = yym2124 + yym2167 := z.EncBinary() + _ = yym2167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[6] { + if yyq2151[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym2126 := z.EncBinary() - _ = yym2126 + yym2169 := z.EncBinary() + _ = yym2169 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2126 { + } else if yym2169 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2126 && z.IsJSONHandle() { + } else if !yym2169 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -28245,20 +28856,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2108[6] { + if yyq2151[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym2127 := z.EncBinary() - _ = yym2127 + yym2170 := z.EncBinary() + _ = yym2170 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2127 { + } else if yym2170 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2127 && z.IsJSONHandle() { + } else if !yym2170 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -28266,14 +28877,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2108[7] { + if yyq2151[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2129 := z.EncBinary() - _ = yym2129 + yym2172 := z.EncBinary() + _ = yym2172 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -28283,15 +28894,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2108[7] { + if yyq2151[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2130 := z.EncBinary() - _ = yym2130 + yym2173 := z.EncBinary() + _ = yym2173 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -28299,7 +28910,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2108 || yy2arr2108 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28312,25 +28923,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2131 := z.DecBinary() - _ = yym2131 + yym2174 := z.DecBinary() + _ = yym2174 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2132 := r.ContainerType() - if yyct2132 == codecSelferValueTypeMap1234 { - yyl2132 := r.ReadMapStart() - if yyl2132 == 0 { + yyct2175 := r.ContainerType() + if yyct2175 == codecSelferValueTypeMap1234 { + yyl2175 := r.ReadMapStart() + if yyl2175 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2132, d) + x.codecDecodeSelfFromMap(yyl2175, d) } - } else if yyct2132 == codecSelferValueTypeArray1234 { - yyl2132 := r.ReadArrayStart() - if yyl2132 == 0 { + } else if yyct2175 == codecSelferValueTypeArray1234 { + yyl2175 := r.ReadArrayStart() + if yyl2175 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2132, d) + x.codecDecodeSelfFromArray(yyl2175, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28342,12 +28953,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2133Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2133Slc - var yyhl2133 bool = l >= 0 - for yyj2133 := 0; ; yyj2133++ { - if yyhl2133 { - if yyj2133 >= l { + var yys2176Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2176Slc + var yyhl2176 bool = l >= 0 + for yyj2176 := 0; ; yyj2176++ { + if yyhl2176 { + if yyj2176 >= l { break } } else { @@ -28356,10 +28967,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2133Slc = r.DecodeBytes(yys2133Slc, true, true) - yys2133 := string(yys2133Slc) + yys2176Slc = r.DecodeBytes(yys2176Slc, true, true) + yys2176 := string(yys2176Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2133 { + switch yys2176 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -28370,12 +28981,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2135 := &x.Conditions - yym2136 := z.DecBinary() - _ = yym2136 + yyv2178 := &x.Conditions + yym2179 := z.DecBinary() + _ = yym2179 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2135), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2178), d) } } case "message": @@ -28411,13 +29022,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2142 := z.DecBinary() - _ = yym2142 + yym2185 := z.DecBinary() + _ = yym2185 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2142 { + } else if yym2185 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2142 && z.IsJSONHandle() { + } else if !yym2185 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -28427,18 +29038,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2143 := &x.ContainerStatuses - yym2144 := z.DecBinary() - _ = yym2144 + yyv2186 := &x.ContainerStatuses + yym2187 := z.DecBinary() + _ = yym2187 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2143), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2186), d) } } default: - z.DecStructFieldNotFound(-1, yys2133) - } // end switch yys2133 - } // end for yyj2133 + z.DecStructFieldNotFound(-1, yys2176) + } // end switch yys2176 + } // end for yyj2176 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28446,16 +29057,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2145 int - var yyb2145 bool - var yyhl2145 bool = l >= 0 - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + var yyj2188 int + var yyb2188 bool + var yyhl2188 bool = l >= 0 + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28465,13 +29076,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28479,21 +29090,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2147 := &x.Conditions - yym2148 := z.DecBinary() - _ = yym2148 + yyv2190 := &x.Conditions + yym2191 := z.DecBinary() + _ = yym2191 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2147), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2190), d) } } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28503,13 +29114,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28519,13 +29130,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28535,13 +29146,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28551,13 +29162,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28570,25 +29181,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2154 := z.DecBinary() - _ = yym2154 + yym2197 := z.DecBinary() + _ = yym2197 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2154 { + } else if yym2197 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2154 && z.IsJSONHandle() { + } else if !yym2197 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28596,26 +29207,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2155 := &x.ContainerStatuses - yym2156 := z.DecBinary() - _ = yym2156 + yyv2198 := &x.ContainerStatuses + yym2199 := z.DecBinary() + _ = yym2199 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2155), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2198), d) } } for { - yyj2145++ - if yyhl2145 { - yyb2145 = yyj2145 > l + yyj2188++ + if yyhl2188 { + yyb2188 = yyj2188 > l } else { - yyb2145 = r.CheckBreak() + yyb2188 = r.CheckBreak() } - if yyb2145 { + if yyb2188 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2145-1, "") + z.DecStructFieldNotFound(yyj2188-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28627,38 +29238,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2157 := z.EncBinary() - _ = yym2157 + yym2200 := z.EncBinary() + _ = yym2200 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2158 := !z.EncBinary() - yy2arr2158 := z.EncBasicHandle().StructToArray - var yyq2158 [4]bool - _, _, _ = yysep2158, yyq2158, yy2arr2158 - const yyr2158 bool = false - yyq2158[0] = x.Kind != "" - yyq2158[1] = x.APIVersion != "" - yyq2158[2] = true - yyq2158[3] = true - var yynn2158 int - if yyr2158 || yy2arr2158 { + yysep2201 := !z.EncBinary() + yy2arr2201 := z.EncBasicHandle().StructToArray + var yyq2201 [4]bool + _, _, _ = yysep2201, yyq2201, yy2arr2201 + const yyr2201 bool = false + yyq2201[0] = x.Kind != "" + yyq2201[1] = x.APIVersion != "" + yyq2201[2] = true + yyq2201[3] = true + var yynn2201 int + if yyr2201 || yy2arr2201 { r.EncodeArrayStart(4) } else { - yynn2158 = 0 - for _, b := range yyq2158 { + yynn2201 = 0 + for _, b := range yyq2201 { if b { - yynn2158++ + yynn2201++ } } - r.EncodeMapStart(yynn2158) - yynn2158 = 0 + r.EncodeMapStart(yynn2201) + yynn2201 = 0 } - if yyr2158 || yy2arr2158 { + if yyr2201 || yy2arr2201 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2158[0] { - yym2160 := z.EncBinary() - _ = yym2160 + if yyq2201[0] { + yym2203 := z.EncBinary() + _ = yym2203 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28667,23 +29278,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2158[0] { + if yyq2201[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2161 := z.EncBinary() - _ = yym2161 + yym2204 := z.EncBinary() + _ = yym2204 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2158 || yy2arr2158 { + if yyr2201 || yy2arr2201 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2158[1] { - yym2163 := z.EncBinary() - _ = yym2163 + if yyq2201[1] { + yym2206 := z.EncBinary() + _ = yym2206 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28692,53 +29303,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2158[1] { + if yyq2201[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2164 := z.EncBinary() - _ = yym2164 + yym2207 := z.EncBinary() + _ = yym2207 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2158 || yy2arr2158 { + if yyr2201 || yy2arr2201 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2158[2] { - yy2166 := &x.ObjectMeta - yy2166.CodecEncodeSelf(e) + if yyq2201[2] { + yy2209 := &x.ObjectMeta + yy2209.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2158[2] { + if yyq2201[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2167 := &x.ObjectMeta - yy2167.CodecEncodeSelf(e) + yy2210 := &x.ObjectMeta + yy2210.CodecEncodeSelf(e) } } - if yyr2158 || yy2arr2158 { + if yyr2201 || yy2arr2201 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2158[3] { - yy2169 := &x.Status - yy2169.CodecEncodeSelf(e) + if yyq2201[3] { + yy2212 := &x.Status + yy2212.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2158[3] { + if yyq2201[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2170 := &x.Status - yy2170.CodecEncodeSelf(e) + yy2213 := &x.Status + yy2213.CodecEncodeSelf(e) } } - if yyr2158 || yy2arr2158 { + if yyr2201 || yy2arr2201 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28751,25 +29362,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2171 := z.DecBinary() - _ = yym2171 + yym2214 := z.DecBinary() + _ = yym2214 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2172 := r.ContainerType() - if yyct2172 == codecSelferValueTypeMap1234 { - yyl2172 := r.ReadMapStart() - if yyl2172 == 0 { + yyct2215 := r.ContainerType() + if yyct2215 == codecSelferValueTypeMap1234 { + yyl2215 := r.ReadMapStart() + if yyl2215 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2172, d) + x.codecDecodeSelfFromMap(yyl2215, d) } - } else if yyct2172 == codecSelferValueTypeArray1234 { - yyl2172 := r.ReadArrayStart() - if yyl2172 == 0 { + } else if yyct2215 == codecSelferValueTypeArray1234 { + yyl2215 := r.ReadArrayStart() + if yyl2215 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2172, d) + x.codecDecodeSelfFromArray(yyl2215, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28781,12 +29392,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2173Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2173Slc - var yyhl2173 bool = l >= 0 - for yyj2173 := 0; ; yyj2173++ { - if yyhl2173 { - if yyj2173 >= l { + var yys2216Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2216Slc + var yyhl2216 bool = l >= 0 + for yyj2216 := 0; ; yyj2216++ { + if yyhl2216 { + if yyj2216 >= l { break } } else { @@ -28795,10 +29406,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2173Slc = r.DecodeBytes(yys2173Slc, true, true) - yys2173 := string(yys2173Slc) + yys2216Slc = r.DecodeBytes(yys2216Slc, true, true) + yys2216 := string(yys2216Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2173 { + switch yys2216 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28815,20 +29426,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2176 := &x.ObjectMeta - yyv2176.CodecDecodeSelf(d) + yyv2219 := &x.ObjectMeta + yyv2219.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2177 := &x.Status - yyv2177.CodecDecodeSelf(d) + yyv2220 := &x.Status + yyv2220.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2173) - } // end switch yys2173 - } // end for yyj2173 + z.DecStructFieldNotFound(-1, yys2216) + } // end switch yys2216 + } // end for yyj2216 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28836,16 +29447,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2178 int - var yyb2178 bool - var yyhl2178 bool = l >= 0 - yyj2178++ - if yyhl2178 { - yyb2178 = yyj2178 > l + var yyj2221 int + var yyb2221 bool + var yyhl2221 bool = l >= 0 + yyj2221++ + if yyhl2221 { + yyb2221 = yyj2221 > l } else { - yyb2178 = r.CheckBreak() + yyb2221 = r.CheckBreak() } - if yyb2178 { + if yyb2221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28855,13 +29466,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2178++ - if yyhl2178 { - yyb2178 = yyj2178 > l + yyj2221++ + if yyhl2221 { + yyb2221 = yyj2221 > l } else { - yyb2178 = r.CheckBreak() + yyb2221 = r.CheckBreak() } - if yyb2178 { + if yyb2221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28871,13 +29482,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2178++ - if yyhl2178 { - yyb2178 = yyj2178 > l + yyj2221++ + if yyhl2221 { + yyb2221 = yyj2221 > l } else { - yyb2178 = r.CheckBreak() + yyb2221 = r.CheckBreak() } - if yyb2178 { + if yyb2221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28885,16 +29496,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2181 := &x.ObjectMeta - yyv2181.CodecDecodeSelf(d) + yyv2224 := &x.ObjectMeta + yyv2224.CodecDecodeSelf(d) } - yyj2178++ - if yyhl2178 { - yyb2178 = yyj2178 > l + yyj2221++ + if yyhl2221 { + yyb2221 = yyj2221 > l } else { - yyb2178 = r.CheckBreak() + yyb2221 = r.CheckBreak() } - if yyb2178 { + if yyb2221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28902,21 +29513,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2182 := &x.Status - yyv2182.CodecDecodeSelf(d) + yyv2225 := &x.Status + yyv2225.CodecDecodeSelf(d) } for { - yyj2178++ - if yyhl2178 { - yyb2178 = yyj2178 > l + yyj2221++ + if yyhl2221 { + yyb2221 = yyj2221 > l } else { - yyb2178 = r.CheckBreak() + yyb2221 = r.CheckBreak() } - if yyb2178 { + if yyb2221 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2178-1, "") + z.DecStructFieldNotFound(yyj2221-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28928,39 +29539,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2183 := z.EncBinary() - _ = yym2183 + yym2226 := z.EncBinary() + _ = yym2226 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2184 := !z.EncBinary() - yy2arr2184 := z.EncBasicHandle().StructToArray - var yyq2184 [5]bool - _, _, _ = yysep2184, yyq2184, yy2arr2184 - const yyr2184 bool = false - yyq2184[0] = x.Kind != "" - yyq2184[1] = x.APIVersion != "" - yyq2184[2] = true - yyq2184[3] = true - yyq2184[4] = true - var yynn2184 int - if yyr2184 || yy2arr2184 { + yysep2227 := !z.EncBinary() + yy2arr2227 := z.EncBasicHandle().StructToArray + var yyq2227 [5]bool + _, _, _ = yysep2227, yyq2227, yy2arr2227 + const yyr2227 bool = false + yyq2227[0] = x.Kind != "" + yyq2227[1] = x.APIVersion != "" + yyq2227[2] = true + yyq2227[3] = true + yyq2227[4] = true + var yynn2227 int + if yyr2227 || yy2arr2227 { r.EncodeArrayStart(5) } else { - yynn2184 = 0 - for _, b := range yyq2184 { + yynn2227 = 0 + for _, b := range yyq2227 { if b { - yynn2184++ + yynn2227++ } } - r.EncodeMapStart(yynn2184) - yynn2184 = 0 + r.EncodeMapStart(yynn2227) + yynn2227 = 0 } - if yyr2184 || yy2arr2184 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2184[0] { - yym2186 := z.EncBinary() - _ = yym2186 + if yyq2227[0] { + yym2229 := z.EncBinary() + _ = yym2229 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28969,23 +29580,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2184[0] { + if yyq2227[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2187 := z.EncBinary() - _ = yym2187 + yym2230 := z.EncBinary() + _ = yym2230 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2184 || yy2arr2184 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2184[1] { - yym2189 := z.EncBinary() - _ = yym2189 + if yyq2227[1] { + yym2232 := z.EncBinary() + _ = yym2232 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28994,70 +29605,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2184[1] { + if yyq2227[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2190 := z.EncBinary() - _ = yym2190 + yym2233 := z.EncBinary() + _ = yym2233 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2184 || yy2arr2184 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2184[2] { - yy2192 := &x.ObjectMeta - yy2192.CodecEncodeSelf(e) + if yyq2227[2] { + yy2235 := &x.ObjectMeta + yy2235.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2184[2] { + if yyq2227[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2193 := &x.ObjectMeta - yy2193.CodecEncodeSelf(e) + yy2236 := &x.ObjectMeta + yy2236.CodecEncodeSelf(e) } } - if yyr2184 || yy2arr2184 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2184[3] { - yy2195 := &x.Spec - yy2195.CodecEncodeSelf(e) + if yyq2227[3] { + yy2238 := &x.Spec + yy2238.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2184[3] { + if yyq2227[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2196 := &x.Spec - yy2196.CodecEncodeSelf(e) + yy2239 := &x.Spec + yy2239.CodecEncodeSelf(e) } } - if yyr2184 || yy2arr2184 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2184[4] { - yy2198 := &x.Status - yy2198.CodecEncodeSelf(e) + if yyq2227[4] { + yy2241 := &x.Status + yy2241.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2184[4] { + if yyq2227[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2199 := &x.Status - yy2199.CodecEncodeSelf(e) + yy2242 := &x.Status + yy2242.CodecEncodeSelf(e) } } - if yyr2184 || yy2arr2184 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29070,25 +29681,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2200 := z.DecBinary() - _ = yym2200 + yym2243 := z.DecBinary() + _ = yym2243 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2201 := r.ContainerType() - if yyct2201 == codecSelferValueTypeMap1234 { - yyl2201 := r.ReadMapStart() - if yyl2201 == 0 { + yyct2244 := r.ContainerType() + if yyct2244 == codecSelferValueTypeMap1234 { + yyl2244 := r.ReadMapStart() + if yyl2244 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2201, d) + x.codecDecodeSelfFromMap(yyl2244, d) } - } else if yyct2201 == codecSelferValueTypeArray1234 { - yyl2201 := r.ReadArrayStart() - if yyl2201 == 0 { + } else if yyct2244 == codecSelferValueTypeArray1234 { + yyl2244 := r.ReadArrayStart() + if yyl2244 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2201, d) + x.codecDecodeSelfFromArray(yyl2244, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29100,12 +29711,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2202Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2202Slc - var yyhl2202 bool = l >= 0 - for yyj2202 := 0; ; yyj2202++ { - if yyhl2202 { - if yyj2202 >= l { + var yys2245Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2245Slc + var yyhl2245 bool = l >= 0 + for yyj2245 := 0; ; yyj2245++ { + if yyhl2245 { + if yyj2245 >= l { break } } else { @@ -29114,10 +29725,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2202Slc = r.DecodeBytes(yys2202Slc, true, true) - yys2202 := string(yys2202Slc) + yys2245Slc = r.DecodeBytes(yys2245Slc, true, true) + yys2245 := string(yys2245Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2202 { + switch yys2245 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29134,27 +29745,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2205 := &x.ObjectMeta - yyv2205.CodecDecodeSelf(d) + yyv2248 := &x.ObjectMeta + yyv2248.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2206 := &x.Spec - yyv2206.CodecDecodeSelf(d) + yyv2249 := &x.Spec + yyv2249.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2207 := &x.Status - yyv2207.CodecDecodeSelf(d) + yyv2250 := &x.Status + yyv2250.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2202) - } // end switch yys2202 - } // end for yyj2202 + z.DecStructFieldNotFound(-1, yys2245) + } // end switch yys2245 + } // end for yyj2245 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29162,16 +29773,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2208 int - var yyb2208 bool - var yyhl2208 bool = l >= 0 - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + var yyj2251 int + var yyb2251 bool + var yyhl2251 bool = l >= 0 + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29181,13 +29792,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29197,13 +29808,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29211,16 +29822,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2211 := &x.ObjectMeta - yyv2211.CodecDecodeSelf(d) + yyv2254 := &x.ObjectMeta + yyv2254.CodecDecodeSelf(d) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29228,16 +29839,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2212 := &x.Spec - yyv2212.CodecDecodeSelf(d) + yyv2255 := &x.Spec + yyv2255.CodecDecodeSelf(d) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29245,21 +29856,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2213 := &x.Status - yyv2213.CodecDecodeSelf(d) + yyv2256 := &x.Status + yyv2256.CodecDecodeSelf(d) } for { - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2208-1, "") + z.DecStructFieldNotFound(yyj2251-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29271,66 +29882,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2214 := z.EncBinary() - _ = yym2214 + yym2257 := z.EncBinary() + _ = yym2257 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2215 := !z.EncBinary() - yy2arr2215 := z.EncBasicHandle().StructToArray - var yyq2215 [2]bool - _, _, _ = yysep2215, yyq2215, yy2arr2215 - const yyr2215 bool = false - yyq2215[0] = true - yyq2215[1] = true - var yynn2215 int - if yyr2215 || yy2arr2215 { + yysep2258 := !z.EncBinary() + yy2arr2258 := z.EncBasicHandle().StructToArray + var yyq2258 [2]bool + _, _, _ = yysep2258, yyq2258, yy2arr2258 + const yyr2258 bool = false + yyq2258[0] = true + yyq2258[1] = true + var yynn2258 int + if yyr2258 || yy2arr2258 { r.EncodeArrayStart(2) } else { - yynn2215 = 0 - for _, b := range yyq2215 { + yynn2258 = 0 + for _, b := range yyq2258 { if b { - yynn2215++ + yynn2258++ } } - r.EncodeMapStart(yynn2215) - yynn2215 = 0 + r.EncodeMapStart(yynn2258) + yynn2258 = 0 } - if yyr2215 || yy2arr2215 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2215[0] { - yy2217 := &x.ObjectMeta - yy2217.CodecEncodeSelf(e) + if yyq2258[0] { + yy2260 := &x.ObjectMeta + yy2260.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2215[0] { + if yyq2258[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2218 := &x.ObjectMeta - yy2218.CodecEncodeSelf(e) + yy2261 := &x.ObjectMeta + yy2261.CodecEncodeSelf(e) } } - if yyr2215 || yy2arr2215 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2215[1] { - yy2220 := &x.Spec - yy2220.CodecEncodeSelf(e) + if yyq2258[1] { + yy2263 := &x.Spec + yy2263.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2215[1] { + if yyq2258[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2221 := &x.Spec - yy2221.CodecEncodeSelf(e) + yy2264 := &x.Spec + yy2264.CodecEncodeSelf(e) } } - if yyr2215 || yy2arr2215 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29343,25 +29954,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2222 := z.DecBinary() - _ = yym2222 + yym2265 := z.DecBinary() + _ = yym2265 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2223 := r.ContainerType() - if yyct2223 == codecSelferValueTypeMap1234 { - yyl2223 := r.ReadMapStart() - if yyl2223 == 0 { + yyct2266 := r.ContainerType() + if yyct2266 == codecSelferValueTypeMap1234 { + yyl2266 := r.ReadMapStart() + if yyl2266 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2223, d) + x.codecDecodeSelfFromMap(yyl2266, d) } - } else if yyct2223 == codecSelferValueTypeArray1234 { - yyl2223 := r.ReadArrayStart() - if yyl2223 == 0 { + } else if yyct2266 == codecSelferValueTypeArray1234 { + yyl2266 := r.ReadArrayStart() + if yyl2266 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2223, d) + x.codecDecodeSelfFromArray(yyl2266, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29373,12 +29984,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2224Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2224Slc - var yyhl2224 bool = l >= 0 - for yyj2224 := 0; ; yyj2224++ { - if yyhl2224 { - if yyj2224 >= l { + var yys2267Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2267Slc + var yyhl2267 bool = l >= 0 + for yyj2267 := 0; ; yyj2267++ { + if yyhl2267 { + if yyj2267 >= l { break } } else { @@ -29387,28 +29998,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2224Slc = r.DecodeBytes(yys2224Slc, true, true) - yys2224 := string(yys2224Slc) + yys2267Slc = r.DecodeBytes(yys2267Slc, true, true) + yys2267 := string(yys2267Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2224 { + switch yys2267 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2225 := &x.ObjectMeta - yyv2225.CodecDecodeSelf(d) + yyv2268 := &x.ObjectMeta + yyv2268.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2226 := &x.Spec - yyv2226.CodecDecodeSelf(d) + yyv2269 := &x.Spec + yyv2269.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2224) - } // end switch yys2224 - } // end for yyj2224 + z.DecStructFieldNotFound(-1, yys2267) + } // end switch yys2267 + } // end for yyj2267 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29416,16 +30027,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2227 int - var yyb2227 bool - var yyhl2227 bool = l >= 0 - yyj2227++ - if yyhl2227 { - yyb2227 = yyj2227 > l + var yyj2270 int + var yyb2270 bool + var yyhl2270 bool = l >= 0 + yyj2270++ + if yyhl2270 { + yyb2270 = yyj2270 > l } else { - yyb2227 = r.CheckBreak() + yyb2270 = r.CheckBreak() } - if yyb2227 { + if yyb2270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29433,16 +30044,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2228 := &x.ObjectMeta - yyv2228.CodecDecodeSelf(d) + yyv2271 := &x.ObjectMeta + yyv2271.CodecDecodeSelf(d) } - yyj2227++ - if yyhl2227 { - yyb2227 = yyj2227 > l + yyj2270++ + if yyhl2270 { + yyb2270 = yyj2270 > l } else { - yyb2227 = r.CheckBreak() + yyb2270 = r.CheckBreak() } - if yyb2227 { + if yyb2270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29450,21 +30061,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2229 := &x.Spec - yyv2229.CodecDecodeSelf(d) + yyv2272 := &x.Spec + yyv2272.CodecDecodeSelf(d) } for { - yyj2227++ - if yyhl2227 { - yyb2227 = yyj2227 > l + yyj2270++ + if yyhl2270 { + yyb2270 = yyj2270 > l } else { - yyb2227 = r.CheckBreak() + yyb2270 = r.CheckBreak() } - if yyb2227 { + if yyb2270 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2227-1, "") + z.DecStructFieldNotFound(yyj2270-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29476,38 +30087,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2230 := z.EncBinary() - _ = yym2230 + yym2273 := z.EncBinary() + _ = yym2273 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2231 := !z.EncBinary() - yy2arr2231 := z.EncBasicHandle().StructToArray - var yyq2231 [4]bool - _, _, _ = yysep2231, yyq2231, yy2arr2231 - const yyr2231 bool = false - yyq2231[0] = x.Kind != "" - yyq2231[1] = x.APIVersion != "" - yyq2231[2] = true - yyq2231[3] = true - var yynn2231 int - if yyr2231 || yy2arr2231 { + yysep2274 := !z.EncBinary() + yy2arr2274 := z.EncBasicHandle().StructToArray + var yyq2274 [4]bool + _, _, _ = yysep2274, yyq2274, yy2arr2274 + const yyr2274 bool = false + yyq2274[0] = x.Kind != "" + yyq2274[1] = x.APIVersion != "" + yyq2274[2] = true + yyq2274[3] = true + var yynn2274 int + if yyr2274 || yy2arr2274 { r.EncodeArrayStart(4) } else { - yynn2231 = 0 - for _, b := range yyq2231 { + yynn2274 = 0 + for _, b := range yyq2274 { if b { - yynn2231++ + yynn2274++ } } - r.EncodeMapStart(yynn2231) - yynn2231 = 0 + r.EncodeMapStart(yynn2274) + yynn2274 = 0 } - if yyr2231 || yy2arr2231 { + if yyr2274 || yy2arr2274 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2231[0] { - yym2233 := z.EncBinary() - _ = yym2233 + if yyq2274[0] { + yym2276 := z.EncBinary() + _ = yym2276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29516,23 +30127,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2231[0] { + if yyq2274[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2234 := z.EncBinary() - _ = yym2234 + yym2277 := z.EncBinary() + _ = yym2277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2231 || yy2arr2231 { + if yyr2274 || yy2arr2274 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2231[1] { - yym2236 := z.EncBinary() - _ = yym2236 + if yyq2274[1] { + yym2279 := z.EncBinary() + _ = yym2279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29541,53 +30152,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2231[1] { + if yyq2274[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2237 := z.EncBinary() - _ = yym2237 + yym2280 := z.EncBinary() + _ = yym2280 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2231 || yy2arr2231 { + if yyr2274 || yy2arr2274 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2231[2] { - yy2239 := &x.ObjectMeta - yy2239.CodecEncodeSelf(e) + if yyq2274[2] { + yy2282 := &x.ObjectMeta + yy2282.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2231[2] { + if yyq2274[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2240 := &x.ObjectMeta - yy2240.CodecEncodeSelf(e) + yy2283 := &x.ObjectMeta + yy2283.CodecEncodeSelf(e) } } - if yyr2231 || yy2arr2231 { + if yyr2274 || yy2arr2274 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2231[3] { - yy2242 := &x.Template - yy2242.CodecEncodeSelf(e) + if yyq2274[3] { + yy2285 := &x.Template + yy2285.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2231[3] { + if yyq2274[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2243 := &x.Template - yy2243.CodecEncodeSelf(e) + yy2286 := &x.Template + yy2286.CodecEncodeSelf(e) } } - if yyr2231 || yy2arr2231 { + if yyr2274 || yy2arr2274 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29600,25 +30211,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2244 := z.DecBinary() - _ = yym2244 + yym2287 := z.DecBinary() + _ = yym2287 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2245 := r.ContainerType() - if yyct2245 == codecSelferValueTypeMap1234 { - yyl2245 := r.ReadMapStart() - if yyl2245 == 0 { + yyct2288 := r.ContainerType() + if yyct2288 == codecSelferValueTypeMap1234 { + yyl2288 := r.ReadMapStart() + if yyl2288 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2245, d) + x.codecDecodeSelfFromMap(yyl2288, d) } - } else if yyct2245 == codecSelferValueTypeArray1234 { - yyl2245 := r.ReadArrayStart() - if yyl2245 == 0 { + } else if yyct2288 == codecSelferValueTypeArray1234 { + yyl2288 := r.ReadArrayStart() + if yyl2288 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2245, d) + x.codecDecodeSelfFromArray(yyl2288, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29630,12 +30241,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2246Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2246Slc - var yyhl2246 bool = l >= 0 - for yyj2246 := 0; ; yyj2246++ { - if yyhl2246 { - if yyj2246 >= l { + var yys2289Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2289Slc + var yyhl2289 bool = l >= 0 + for yyj2289 := 0; ; yyj2289++ { + if yyhl2289 { + if yyj2289 >= l { break } } else { @@ -29644,10 +30255,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2246Slc = r.DecodeBytes(yys2246Slc, true, true) - yys2246 := string(yys2246Slc) + yys2289Slc = r.DecodeBytes(yys2289Slc, true, true) + yys2289 := string(yys2289Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2246 { + switch yys2289 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29664,20 +30275,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2249 := &x.ObjectMeta - yyv2249.CodecDecodeSelf(d) + yyv2292 := &x.ObjectMeta + yyv2292.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2250 := &x.Template - yyv2250.CodecDecodeSelf(d) + yyv2293 := &x.Template + yyv2293.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2246) - } // end switch yys2246 - } // end for yyj2246 + z.DecStructFieldNotFound(-1, yys2289) + } // end switch yys2289 + } // end for yyj2289 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29685,16 +30296,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2251 int - var yyb2251 bool - var yyhl2251 bool = l >= 0 - yyj2251++ - if yyhl2251 { - yyb2251 = yyj2251 > l + var yyj2294 int + var yyb2294 bool + var yyhl2294 bool = l >= 0 + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2251 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2251 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29704,13 +30315,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2251++ - if yyhl2251 { - yyb2251 = yyj2251 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2251 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2251 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29720,13 +30331,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2251++ - if yyhl2251 { - yyb2251 = yyj2251 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2251 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2251 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29734,16 +30345,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2254 := &x.ObjectMeta - yyv2254.CodecDecodeSelf(d) + yyv2297 := &x.ObjectMeta + yyv2297.CodecDecodeSelf(d) } - yyj2251++ - if yyhl2251 { - yyb2251 = yyj2251 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2251 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2251 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29751,21 +30362,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2255 := &x.Template - yyv2255.CodecDecodeSelf(d) + yyv2298 := &x.Template + yyv2298.CodecDecodeSelf(d) } for { - yyj2251++ - if yyhl2251 { - yyb2251 = yyj2251 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2251 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2251 { + if yyb2294 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2251-1, "") + z.DecStructFieldNotFound(yyj2294-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29777,37 +30388,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2256 := z.EncBinary() - _ = yym2256 + yym2299 := z.EncBinary() + _ = yym2299 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2257 := !z.EncBinary() - yy2arr2257 := z.EncBasicHandle().StructToArray - var yyq2257 [4]bool - _, _, _ = yysep2257, yyq2257, yy2arr2257 - const yyr2257 bool = false - yyq2257[0] = x.Kind != "" - yyq2257[1] = x.APIVersion != "" - yyq2257[2] = true - var yynn2257 int - if yyr2257 || yy2arr2257 { + yysep2300 := !z.EncBinary() + yy2arr2300 := z.EncBasicHandle().StructToArray + var yyq2300 [4]bool + _, _, _ = yysep2300, yyq2300, yy2arr2300 + const yyr2300 bool = false + yyq2300[0] = x.Kind != "" + yyq2300[1] = x.APIVersion != "" + yyq2300[2] = true + var yynn2300 int + if yyr2300 || yy2arr2300 { r.EncodeArrayStart(4) } else { - yynn2257 = 1 - for _, b := range yyq2257 { + yynn2300 = 1 + for _, b := range yyq2300 { if b { - yynn2257++ + yynn2300++ } } - r.EncodeMapStart(yynn2257) - yynn2257 = 0 + r.EncodeMapStart(yynn2300) + yynn2300 = 0 } - if yyr2257 || yy2arr2257 { + if yyr2300 || yy2arr2300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2257[0] { - yym2259 := z.EncBinary() - _ = yym2259 + if yyq2300[0] { + yym2302 := z.EncBinary() + _ = yym2302 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29816,23 +30427,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2257[0] { + if yyq2300[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2260 := z.EncBinary() - _ = yym2260 + yym2303 := z.EncBinary() + _ = yym2303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2257 || yy2arr2257 { + if yyr2300 || yy2arr2300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2257[1] { - yym2262 := z.EncBinary() - _ = yym2262 + if yyq2300[1] { + yym2305 := z.EncBinary() + _ = yym2305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29841,54 +30452,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2257[1] { + if yyq2300[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2263 := z.EncBinary() - _ = yym2263 + yym2306 := z.EncBinary() + _ = yym2306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2257 || yy2arr2257 { + if yyr2300 || yy2arr2300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2257[2] { - yy2265 := &x.ListMeta - yym2266 := z.EncBinary() - _ = yym2266 + if yyq2300[2] { + yy2308 := &x.ListMeta + yym2309 := z.EncBinary() + _ = yym2309 if false { - } else if z.HasExtensions() && z.EncExt(yy2265) { + } else if z.HasExtensions() && z.EncExt(yy2308) { } else { - z.EncFallback(yy2265) + z.EncFallback(yy2308) } } else { r.EncodeNil() } } else { - if yyq2257[2] { + if yyq2300[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2267 := &x.ListMeta - yym2268 := z.EncBinary() - _ = yym2268 + yy2310 := &x.ListMeta + yym2311 := z.EncBinary() + _ = yym2311 if false { - } else if z.HasExtensions() && z.EncExt(yy2267) { + } else if z.HasExtensions() && z.EncExt(yy2310) { } else { - z.EncFallback(yy2267) + z.EncFallback(yy2310) } } } - if yyr2257 || yy2arr2257 { + if yyr2300 || yy2arr2300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2270 := z.EncBinary() - _ = yym2270 + yym2313 := z.EncBinary() + _ = yym2313 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -29901,15 +30512,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2271 := z.EncBinary() - _ = yym2271 + yym2314 := z.EncBinary() + _ = yym2314 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr2257 || yy2arr2257 { + if yyr2300 || yy2arr2300 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29922,25 +30533,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2272 := z.DecBinary() - _ = yym2272 + yym2315 := z.DecBinary() + _ = yym2315 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2273 := r.ContainerType() - if yyct2273 == codecSelferValueTypeMap1234 { - yyl2273 := r.ReadMapStart() - if yyl2273 == 0 { + yyct2316 := r.ContainerType() + if yyct2316 == codecSelferValueTypeMap1234 { + yyl2316 := r.ReadMapStart() + if yyl2316 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2273, d) + x.codecDecodeSelfFromMap(yyl2316, d) } - } else if yyct2273 == codecSelferValueTypeArray1234 { - yyl2273 := r.ReadArrayStart() - if yyl2273 == 0 { + } else if yyct2316 == codecSelferValueTypeArray1234 { + yyl2316 := r.ReadArrayStart() + if yyl2316 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2273, d) + x.codecDecodeSelfFromArray(yyl2316, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29952,12 +30563,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2274Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2274Slc - var yyhl2274 bool = l >= 0 - for yyj2274 := 0; ; yyj2274++ { - if yyhl2274 { - if yyj2274 >= l { + var yys2317Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2317Slc + var yyhl2317 bool = l >= 0 + for yyj2317 := 0; ; yyj2317++ { + if yyhl2317 { + if yyj2317 >= l { break } } else { @@ -29966,10 +30577,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2274Slc = r.DecodeBytes(yys2274Slc, true, true) - yys2274 := string(yys2274Slc) + yys2317Slc = r.DecodeBytes(yys2317Slc, true, true) + yys2317 := string(yys2317Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2274 { + switch yys2317 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29986,31 +30597,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2277 := &x.ListMeta - yym2278 := z.DecBinary() - _ = yym2278 + yyv2320 := &x.ListMeta + yym2321 := z.DecBinary() + _ = yym2321 if false { - } else if z.HasExtensions() && z.DecExt(yyv2277) { + } else if z.HasExtensions() && z.DecExt(yyv2320) { } else { - z.DecFallback(yyv2277, false) + z.DecFallback(yyv2320, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2279 := &x.Items - yym2280 := z.DecBinary() - _ = yym2280 + yyv2322 := &x.Items + yym2323 := z.DecBinary() + _ = yym2323 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2279), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2322), d) } } default: - z.DecStructFieldNotFound(-1, yys2274) - } // end switch yys2274 - } // end for yyj2274 + z.DecStructFieldNotFound(-1, yys2317) + } // end switch yys2317 + } // end for yyj2317 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30018,16 +30629,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2281 int - var yyb2281 bool - var yyhl2281 bool = l >= 0 - yyj2281++ - if yyhl2281 { - yyb2281 = yyj2281 > l + var yyj2324 int + var yyb2324 bool + var yyhl2324 bool = l >= 0 + yyj2324++ + if yyhl2324 { + yyb2324 = yyj2324 > l } else { - yyb2281 = r.CheckBreak() + yyb2324 = r.CheckBreak() } - if yyb2281 { + if yyb2324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30037,13 +30648,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2281++ - if yyhl2281 { - yyb2281 = yyj2281 > l + yyj2324++ + if yyhl2324 { + yyb2324 = yyj2324 > l } else { - yyb2281 = r.CheckBreak() + yyb2324 = r.CheckBreak() } - if yyb2281 { + if yyb2324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30053,13 +30664,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2281++ - if yyhl2281 { - yyb2281 = yyj2281 > l + yyj2324++ + if yyhl2324 { + yyb2324 = yyj2324 > l } else { - yyb2281 = r.CheckBreak() + yyb2324 = r.CheckBreak() } - if yyb2281 { + if yyb2324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30067,22 +30678,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2284 := &x.ListMeta - yym2285 := z.DecBinary() - _ = yym2285 + yyv2327 := &x.ListMeta + yym2328 := z.DecBinary() + _ = yym2328 if false { - } else if z.HasExtensions() && z.DecExt(yyv2284) { + } else if z.HasExtensions() && z.DecExt(yyv2327) { } else { - z.DecFallback(yyv2284, false) + z.DecFallback(yyv2327, false) } } - yyj2281++ - if yyhl2281 { - yyb2281 = yyj2281 > l + yyj2324++ + if yyhl2324 { + yyb2324 = yyj2324 > l } else { - yyb2281 = r.CheckBreak() + yyb2324 = r.CheckBreak() } - if yyb2281 { + if yyb2324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30090,26 +30701,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2286 := &x.Items - yym2287 := z.DecBinary() - _ = yym2287 + yyv2329 := &x.Items + yym2330 := z.DecBinary() + _ = yym2330 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2286), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2329), d) } } for { - yyj2281++ - if yyhl2281 { - yyb2281 = yyj2281 > l + yyj2324++ + if yyhl2324 { + yyb2324 = yyj2324 > l } else { - yyb2281 = r.CheckBreak() + yyb2324 = r.CheckBreak() } - if yyb2281 { + if yyb2324 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2281-1, "") + z.DecStructFieldNotFound(yyj2324-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30121,34 +30732,34 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2288 := z.EncBinary() - _ = yym2288 + yym2331 := z.EncBinary() + _ = yym2331 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2289 := !z.EncBinary() - yy2arr2289 := z.EncBasicHandle().StructToArray - var yyq2289 [3]bool - _, _, _ = yysep2289, yyq2289, yy2arr2289 - const yyr2289 bool = false - yyq2289[2] = x.Template != nil - var yynn2289 int - if yyr2289 || yy2arr2289 { + yysep2332 := !z.EncBinary() + yy2arr2332 := z.EncBasicHandle().StructToArray + var yyq2332 [3]bool + _, _, _ = yysep2332, yyq2332, yy2arr2332 + const yyr2332 bool = false + yyq2332[2] = x.Template != nil + var yynn2332 int + if yyr2332 || yy2arr2332 { r.EncodeArrayStart(3) } else { - yynn2289 = 2 - for _, b := range yyq2289 { + yynn2332 = 2 + for _, b := range yyq2332 { if b { - yynn2289++ + yynn2332++ } } - r.EncodeMapStart(yynn2289) - yynn2289 = 0 + r.EncodeMapStart(yynn2332) + yynn2332 = 0 } - if yyr2289 || yy2arr2289 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2291 := z.EncBinary() - _ = yym2291 + yym2334 := z.EncBinary() + _ = yym2334 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -30157,20 +30768,20 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2292 := z.EncBinary() - _ = yym2292 + yym2335 := z.EncBinary() + _ = yym2335 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr2289 || yy2arr2289 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym2294 := z.EncBinary() - _ = yym2294 + yym2337 := z.EncBinary() + _ = yym2337 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -30183,17 +30794,17 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym2295 := z.EncBinary() - _ = yym2295 + yym2338 := z.EncBinary() + _ = yym2338 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr2289 || yy2arr2289 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2289[2] { + if yyq2332[2] { if x.Template == nil { r.EncodeNil() } else { @@ -30203,7 +30814,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2289[2] { + if yyq2332[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -30214,7 +30825,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2289 || yy2arr2289 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30227,25 +30838,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2297 := z.DecBinary() - _ = yym2297 + yym2340 := z.DecBinary() + _ = yym2340 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2298 := r.ContainerType() - if yyct2298 == codecSelferValueTypeMap1234 { - yyl2298 := r.ReadMapStart() - if yyl2298 == 0 { + yyct2341 := r.ContainerType() + if yyct2341 == codecSelferValueTypeMap1234 { + yyl2341 := r.ReadMapStart() + if yyl2341 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2298, d) + x.codecDecodeSelfFromMap(yyl2341, d) } - } else if yyct2298 == codecSelferValueTypeArray1234 { - yyl2298 := r.ReadArrayStart() - if yyl2298 == 0 { + } else if yyct2341 == codecSelferValueTypeArray1234 { + yyl2341 := r.ReadArrayStart() + if yyl2341 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2298, d) + x.codecDecodeSelfFromArray(yyl2341, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30257,12 +30868,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2299Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2299Slc - var yyhl2299 bool = l >= 0 - for yyj2299 := 0; ; yyj2299++ { - if yyhl2299 { - if yyj2299 >= l { + var yys2342Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2342Slc + var yyhl2342 bool = l >= 0 + for yyj2342 := 0; ; yyj2342++ { + if yyhl2342 { + if yyj2342 >= l { break } } else { @@ -30271,10 +30882,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2299Slc = r.DecodeBytes(yys2299Slc, true, true) - yys2299 := string(yys2299Slc) + yys2342Slc = r.DecodeBytes(yys2342Slc, true, true) + yys2342 := string(yys2342Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2299 { + switch yys2342 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -30285,12 +30896,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2301 := &x.Selector - yym2302 := z.DecBinary() - _ = yym2302 + yyv2344 := &x.Selector + yym2345 := z.DecBinary() + _ = yym2345 if false { } else { - z.F.DecMapStringStringX(yyv2301, false, d) + z.F.DecMapStringStringX(yyv2344, false, d) } } case "template": @@ -30305,9 +30916,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2299) - } // end switch yys2299 - } // end for yyj2299 + z.DecStructFieldNotFound(-1, yys2342) + } // end switch yys2342 + } // end for yyj2342 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30315,16 +30926,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2304 int - var yyb2304 bool - var yyhl2304 bool = l >= 0 - yyj2304++ - if yyhl2304 { - yyb2304 = yyj2304 > l + var yyj2347 int + var yyb2347 bool + var yyhl2347 bool = l >= 0 + yyj2347++ + if yyhl2347 { + yyb2347 = yyj2347 > l } else { - yyb2304 = r.CheckBreak() + yyb2347 = r.CheckBreak() } - if yyb2304 { + if yyb2347 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30334,13 +30945,13 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2304++ - if yyhl2304 { - yyb2304 = yyj2304 > l + yyj2347++ + if yyhl2347 { + yyb2347 = yyj2347 > l } else { - yyb2304 = r.CheckBreak() + yyb2347 = r.CheckBreak() } - if yyb2304 { + if yyb2347 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30348,21 +30959,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2306 := &x.Selector - yym2307 := z.DecBinary() - _ = yym2307 + yyv2349 := &x.Selector + yym2350 := z.DecBinary() + _ = yym2350 if false { } else { - z.F.DecMapStringStringX(yyv2306, false, d) + z.F.DecMapStringStringX(yyv2349, false, d) } } - yyj2304++ - if yyhl2304 { - yyb2304 = yyj2304 > l + yyj2347++ + if yyhl2347 { + yyb2347 = yyj2347 > l } else { - yyb2304 = r.CheckBreak() + yyb2347 = r.CheckBreak() } - if yyb2304 { + if yyb2347 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30378,17 +30989,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj2304++ - if yyhl2304 { - yyb2304 = yyj2304 > l + yyj2347++ + if yyhl2347 { + yyb2347 = yyj2347 > l } else { - yyb2304 = r.CheckBreak() + yyb2347 = r.CheckBreak() } - if yyb2304 { + if yyb2347 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2304-1, "") + z.DecStructFieldNotFound(yyj2347-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30400,35 +31011,35 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2309 := z.EncBinary() - _ = yym2309 + yym2352 := z.EncBinary() + _ = yym2352 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2310 := !z.EncBinary() - yy2arr2310 := z.EncBasicHandle().StructToArray - var yyq2310 [3]bool - _, _, _ = yysep2310, yyq2310, yy2arr2310 - const yyr2310 bool = false - yyq2310[1] = x.FullyLabeledReplicas != 0 - yyq2310[2] = x.ObservedGeneration != 0 - var yynn2310 int - if yyr2310 || yy2arr2310 { + yysep2353 := !z.EncBinary() + yy2arr2353 := z.EncBasicHandle().StructToArray + var yyq2353 [3]bool + _, _, _ = yysep2353, yyq2353, yy2arr2353 + const yyr2353 bool = false + yyq2353[1] = x.FullyLabeledReplicas != 0 + yyq2353[2] = x.ObservedGeneration != 0 + var yynn2353 int + if yyr2353 || yy2arr2353 { r.EncodeArrayStart(3) } else { - yynn2310 = 1 - for _, b := range yyq2310 { + yynn2353 = 1 + for _, b := range yyq2353 { if b { - yynn2310++ + yynn2353++ } } - r.EncodeMapStart(yynn2310) - yynn2310 = 0 + r.EncodeMapStart(yynn2353) + yynn2353 = 0 } - if yyr2310 || yy2arr2310 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2312 := z.EncBinary() - _ = yym2312 + yym2355 := z.EncBinary() + _ = yym2355 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -30437,18 +31048,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2313 := z.EncBinary() - _ = yym2313 + yym2356 := z.EncBinary() + _ = yym2356 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr2310 || yy2arr2310 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2310[1] { - yym2315 := z.EncBinary() - _ = yym2315 + if yyq2353[1] { + yym2358 := z.EncBinary() + _ = yym2358 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) @@ -30457,23 +31068,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2310[1] { + if yyq2353[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2316 := z.EncBinary() - _ = yym2316 + yym2359 := z.EncBinary() + _ = yym2359 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) } } } - if yyr2310 || yy2arr2310 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2310[2] { - yym2318 := z.EncBinary() - _ = yym2318 + if yyq2353[2] { + yym2361 := z.EncBinary() + _ = yym2361 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -30482,19 +31093,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2310[2] { + if yyq2353[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2319 := z.EncBinary() - _ = yym2319 + yym2362 := z.EncBinary() + _ = yym2362 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr2310 || yy2arr2310 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30507,25 +31118,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2320 := z.DecBinary() - _ = yym2320 + yym2363 := z.DecBinary() + _ = yym2363 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2321 := r.ContainerType() - if yyct2321 == codecSelferValueTypeMap1234 { - yyl2321 := r.ReadMapStart() - if yyl2321 == 0 { + yyct2364 := r.ContainerType() + if yyct2364 == codecSelferValueTypeMap1234 { + yyl2364 := r.ReadMapStart() + if yyl2364 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2321, d) + x.codecDecodeSelfFromMap(yyl2364, d) } - } else if yyct2321 == codecSelferValueTypeArray1234 { - yyl2321 := r.ReadArrayStart() - if yyl2321 == 0 { + } else if yyct2364 == codecSelferValueTypeArray1234 { + yyl2364 := r.ReadArrayStart() + if yyl2364 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2321, d) + x.codecDecodeSelfFromArray(yyl2364, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30537,12 +31148,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2322Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2322Slc - var yyhl2322 bool = l >= 0 - for yyj2322 := 0; ; yyj2322++ { - if yyhl2322 { - if yyj2322 >= l { + var yys2365Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2365Slc + var yyhl2365 bool = l >= 0 + for yyj2365 := 0; ; yyj2365++ { + if yyhl2365 { + if yyj2365 >= l { break } } else { @@ -30551,10 +31162,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2322Slc = r.DecodeBytes(yys2322Slc, true, true) - yys2322 := string(yys2322Slc) + yys2365Slc = r.DecodeBytes(yys2365Slc, true, true) + yys2365 := string(yys2365Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2322 { + switch yys2365 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -30574,9 +31185,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2322) - } // end switch yys2322 - } // end for yyj2322 + z.DecStructFieldNotFound(-1, yys2365) + } // end switch yys2365 + } // end for yyj2365 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30584,16 +31195,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2326 int - var yyb2326 bool - var yyhl2326 bool = l >= 0 - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l + var yyj2369 int + var yyb2369 bool + var yyhl2369 bool = l >= 0 + yyj2369++ + if yyhl2369 { + yyb2369 = yyj2369 > l } else { - yyb2326 = r.CheckBreak() + yyb2369 = r.CheckBreak() } - if yyb2326 { + if yyb2369 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30603,13 +31214,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l + yyj2369++ + if yyhl2369 { + yyb2369 = yyj2369 > l } else { - yyb2326 = r.CheckBreak() + yyb2369 = r.CheckBreak() } - if yyb2326 { + if yyb2369 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30619,13 +31230,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l + yyj2369++ + if yyhl2369 { + yyb2369 = yyj2369 > l } else { - yyb2326 = r.CheckBreak() + yyb2369 = r.CheckBreak() } - if yyb2326 { + if yyb2369 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30636,17 +31247,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l + yyj2369++ + if yyhl2369 { + yyb2369 = yyj2369 > l } else { - yyb2326 = r.CheckBreak() + yyb2369 = r.CheckBreak() } - if yyb2326 { + if yyb2369 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2326-1, "") + z.DecStructFieldNotFound(yyj2369-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30658,39 +31269,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2330 := z.EncBinary() - _ = yym2330 + yym2373 := z.EncBinary() + _ = yym2373 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2331 := !z.EncBinary() - yy2arr2331 := z.EncBasicHandle().StructToArray - var yyq2331 [5]bool - _, _, _ = yysep2331, yyq2331, yy2arr2331 - const yyr2331 bool = false - yyq2331[0] = x.Kind != "" - yyq2331[1] = x.APIVersion != "" - yyq2331[2] = true - yyq2331[3] = true - yyq2331[4] = true - var yynn2331 int - if yyr2331 || yy2arr2331 { + yysep2374 := !z.EncBinary() + yy2arr2374 := z.EncBasicHandle().StructToArray + var yyq2374 [5]bool + _, _, _ = yysep2374, yyq2374, yy2arr2374 + const yyr2374 bool = false + yyq2374[0] = x.Kind != "" + yyq2374[1] = x.APIVersion != "" + yyq2374[2] = true + yyq2374[3] = true + yyq2374[4] = true + var yynn2374 int + if yyr2374 || yy2arr2374 { r.EncodeArrayStart(5) } else { - yynn2331 = 0 - for _, b := range yyq2331 { + yynn2374 = 0 + for _, b := range yyq2374 { if b { - yynn2331++ + yynn2374++ } } - r.EncodeMapStart(yynn2331) - yynn2331 = 0 + r.EncodeMapStart(yynn2374) + yynn2374 = 0 } - if yyr2331 || yy2arr2331 { + if yyr2374 || yy2arr2374 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2331[0] { - yym2333 := z.EncBinary() - _ = yym2333 + if yyq2374[0] { + yym2376 := z.EncBinary() + _ = yym2376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30699,23 +31310,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2331[0] { + if yyq2374[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2334 := z.EncBinary() - _ = yym2334 + yym2377 := z.EncBinary() + _ = yym2377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2331 || yy2arr2331 { + if yyr2374 || yy2arr2374 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2331[1] { - yym2336 := z.EncBinary() - _ = yym2336 + if yyq2374[1] { + yym2379 := z.EncBinary() + _ = yym2379 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30724,70 +31335,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2331[1] { + if yyq2374[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2337 := z.EncBinary() - _ = yym2337 + yym2380 := z.EncBinary() + _ = yym2380 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2331 || yy2arr2331 { + if yyr2374 || yy2arr2374 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2331[2] { - yy2339 := &x.ObjectMeta - yy2339.CodecEncodeSelf(e) + if yyq2374[2] { + yy2382 := &x.ObjectMeta + yy2382.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2331[2] { + if yyq2374[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2340 := &x.ObjectMeta - yy2340.CodecEncodeSelf(e) + yy2383 := &x.ObjectMeta + yy2383.CodecEncodeSelf(e) } } - if yyr2331 || yy2arr2331 { + if yyr2374 || yy2arr2374 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2331[3] { - yy2342 := &x.Spec - yy2342.CodecEncodeSelf(e) + if yyq2374[3] { + yy2385 := &x.Spec + yy2385.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2331[3] { + if yyq2374[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2343 := &x.Spec - yy2343.CodecEncodeSelf(e) + yy2386 := &x.Spec + yy2386.CodecEncodeSelf(e) } } - if yyr2331 || yy2arr2331 { + if yyr2374 || yy2arr2374 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2331[4] { - yy2345 := &x.Status - yy2345.CodecEncodeSelf(e) + if yyq2374[4] { + yy2388 := &x.Status + yy2388.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2331[4] { + if yyq2374[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2346 := &x.Status - yy2346.CodecEncodeSelf(e) + yy2389 := &x.Status + yy2389.CodecEncodeSelf(e) } } - if yyr2331 || yy2arr2331 { + if yyr2374 || yy2arr2374 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30800,25 +31411,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2347 := z.DecBinary() - _ = yym2347 + yym2390 := z.DecBinary() + _ = yym2390 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2348 := r.ContainerType() - if yyct2348 == codecSelferValueTypeMap1234 { - yyl2348 := r.ReadMapStart() - if yyl2348 == 0 { + yyct2391 := r.ContainerType() + if yyct2391 == codecSelferValueTypeMap1234 { + yyl2391 := r.ReadMapStart() + if yyl2391 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2348, d) + x.codecDecodeSelfFromMap(yyl2391, d) } - } else if yyct2348 == codecSelferValueTypeArray1234 { - yyl2348 := r.ReadArrayStart() - if yyl2348 == 0 { + } else if yyct2391 == codecSelferValueTypeArray1234 { + yyl2391 := r.ReadArrayStart() + if yyl2391 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2348, d) + x.codecDecodeSelfFromArray(yyl2391, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30830,12 +31441,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2349Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2349Slc - var yyhl2349 bool = l >= 0 - for yyj2349 := 0; ; yyj2349++ { - if yyhl2349 { - if yyj2349 >= l { + var yys2392Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2392Slc + var yyhl2392 bool = l >= 0 + for yyj2392 := 0; ; yyj2392++ { + if yyhl2392 { + if yyj2392 >= l { break } } else { @@ -30844,10 +31455,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2349Slc = r.DecodeBytes(yys2349Slc, true, true) - yys2349 := string(yys2349Slc) + yys2392Slc = r.DecodeBytes(yys2392Slc, true, true) + yys2392 := string(yys2392Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2349 { + switch yys2392 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30864,27 +31475,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2352 := &x.ObjectMeta - yyv2352.CodecDecodeSelf(d) + yyv2395 := &x.ObjectMeta + yyv2395.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2353 := &x.Spec - yyv2353.CodecDecodeSelf(d) + yyv2396 := &x.Spec + yyv2396.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2354 := &x.Status - yyv2354.CodecDecodeSelf(d) + yyv2397 := &x.Status + yyv2397.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2349) - } // end switch yys2349 - } // end for yyj2349 + z.DecStructFieldNotFound(-1, yys2392) + } // end switch yys2392 + } // end for yyj2392 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30892,16 +31503,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2355 int - var yyb2355 bool - var yyhl2355 bool = l >= 0 - yyj2355++ - if yyhl2355 { - yyb2355 = yyj2355 > l + var yyj2398 int + var yyb2398 bool + var yyhl2398 bool = l >= 0 + yyj2398++ + if yyhl2398 { + yyb2398 = yyj2398 > l } else { - yyb2355 = r.CheckBreak() + yyb2398 = r.CheckBreak() } - if yyb2355 { + if yyb2398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30911,13 +31522,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj2355++ - if yyhl2355 { - yyb2355 = yyj2355 > l + yyj2398++ + if yyhl2398 { + yyb2398 = yyj2398 > l } else { - yyb2355 = r.CheckBreak() + yyb2398 = r.CheckBreak() } - if yyb2355 { + if yyb2398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30927,13 +31538,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj2355++ - if yyhl2355 { - yyb2355 = yyj2355 > l + yyj2398++ + if yyhl2398 { + yyb2398 = yyj2398 > l } else { - yyb2355 = r.CheckBreak() + yyb2398 = r.CheckBreak() } - if yyb2355 { + if yyb2398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30941,16 +31552,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2358 := &x.ObjectMeta - yyv2358.CodecDecodeSelf(d) + yyv2401 := &x.ObjectMeta + yyv2401.CodecDecodeSelf(d) } - yyj2355++ - if yyhl2355 { - yyb2355 = yyj2355 > l + yyj2398++ + if yyhl2398 { + yyb2398 = yyj2398 > l } else { - yyb2355 = r.CheckBreak() + yyb2398 = r.CheckBreak() } - if yyb2355 { + if yyb2398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30958,16 +31569,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2359 := &x.Spec - yyv2359.CodecDecodeSelf(d) + yyv2402 := &x.Spec + yyv2402.CodecDecodeSelf(d) } - yyj2355++ - if yyhl2355 { - yyb2355 = yyj2355 > l + yyj2398++ + if yyhl2398 { + yyb2398 = yyj2398 > l } else { - yyb2355 = r.CheckBreak() + yyb2398 = r.CheckBreak() } - if yyb2355 { + if yyb2398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30975,21 +31586,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2360 := &x.Status - yyv2360.CodecDecodeSelf(d) + yyv2403 := &x.Status + yyv2403.CodecDecodeSelf(d) } for { - yyj2355++ - if yyhl2355 { - yyb2355 = yyj2355 > l + yyj2398++ + if yyhl2398 { + yyb2398 = yyj2398 > l } else { - yyb2355 = r.CheckBreak() + yyb2398 = r.CheckBreak() } - if yyb2355 { + if yyb2398 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2355-1, "") + z.DecStructFieldNotFound(yyj2398-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31001,37 +31612,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2361 := z.EncBinary() - _ = yym2361 + yym2404 := z.EncBinary() + _ = yym2404 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2362 := !z.EncBinary() - yy2arr2362 := z.EncBasicHandle().StructToArray - var yyq2362 [4]bool - _, _, _ = yysep2362, yyq2362, yy2arr2362 - const yyr2362 bool = false - yyq2362[0] = x.Kind != "" - yyq2362[1] = x.APIVersion != "" - yyq2362[2] = true - var yynn2362 int - if yyr2362 || yy2arr2362 { + yysep2405 := !z.EncBinary() + yy2arr2405 := z.EncBasicHandle().StructToArray + var yyq2405 [4]bool + _, _, _ = yysep2405, yyq2405, yy2arr2405 + const yyr2405 bool = false + yyq2405[0] = x.Kind != "" + yyq2405[1] = x.APIVersion != "" + yyq2405[2] = true + var yynn2405 int + if yyr2405 || yy2arr2405 { r.EncodeArrayStart(4) } else { - yynn2362 = 1 - for _, b := range yyq2362 { + yynn2405 = 1 + for _, b := range yyq2405 { if b { - yynn2362++ + yynn2405++ } } - r.EncodeMapStart(yynn2362) - yynn2362 = 0 + r.EncodeMapStart(yynn2405) + yynn2405 = 0 } - if yyr2362 || yy2arr2362 { + if yyr2405 || yy2arr2405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2362[0] { - yym2364 := z.EncBinary() - _ = yym2364 + if yyq2405[0] { + yym2407 := z.EncBinary() + _ = yym2407 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31040,23 +31651,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2362[0] { + if yyq2405[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2365 := z.EncBinary() - _ = yym2365 + yym2408 := z.EncBinary() + _ = yym2408 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2362 || yy2arr2362 { + if yyr2405 || yy2arr2405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2362[1] { - yym2367 := z.EncBinary() - _ = yym2367 + if yyq2405[1] { + yym2410 := z.EncBinary() + _ = yym2410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31065,54 +31676,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2362[1] { + if yyq2405[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2368 := z.EncBinary() - _ = yym2368 + yym2411 := z.EncBinary() + _ = yym2411 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2362 || yy2arr2362 { + if yyr2405 || yy2arr2405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2362[2] { - yy2370 := &x.ListMeta - yym2371 := z.EncBinary() - _ = yym2371 + if yyq2405[2] { + yy2413 := &x.ListMeta + yym2414 := z.EncBinary() + _ = yym2414 if false { - } else if z.HasExtensions() && z.EncExt(yy2370) { + } else if z.HasExtensions() && z.EncExt(yy2413) { } else { - z.EncFallback(yy2370) + z.EncFallback(yy2413) } } else { r.EncodeNil() } } else { - if yyq2362[2] { + if yyq2405[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2372 := &x.ListMeta - yym2373 := z.EncBinary() - _ = yym2373 + yy2415 := &x.ListMeta + yym2416 := z.EncBinary() + _ = yym2416 if false { - } else if z.HasExtensions() && z.EncExt(yy2372) { + } else if z.HasExtensions() && z.EncExt(yy2415) { } else { - z.EncFallback(yy2372) + z.EncFallback(yy2415) } } } - if yyr2362 || yy2arr2362 { + if yyr2405 || yy2arr2405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2375 := z.EncBinary() - _ = yym2375 + yym2418 := z.EncBinary() + _ = yym2418 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -31125,15 +31736,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2376 := z.EncBinary() - _ = yym2376 + yym2419 := z.EncBinary() + _ = yym2419 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2362 || yy2arr2362 { + if yyr2405 || yy2arr2405 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31146,25 +31757,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2377 := z.DecBinary() - _ = yym2377 + yym2420 := z.DecBinary() + _ = yym2420 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2378 := r.ContainerType() - if yyct2378 == codecSelferValueTypeMap1234 { - yyl2378 := r.ReadMapStart() - if yyl2378 == 0 { + yyct2421 := r.ContainerType() + if yyct2421 == codecSelferValueTypeMap1234 { + yyl2421 := r.ReadMapStart() + if yyl2421 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2378, d) + x.codecDecodeSelfFromMap(yyl2421, d) } - } else if yyct2378 == codecSelferValueTypeArray1234 { - yyl2378 := r.ReadArrayStart() - if yyl2378 == 0 { + } else if yyct2421 == codecSelferValueTypeArray1234 { + yyl2421 := r.ReadArrayStart() + if yyl2421 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2378, d) + x.codecDecodeSelfFromArray(yyl2421, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31176,12 +31787,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2379Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2379Slc - var yyhl2379 bool = l >= 0 - for yyj2379 := 0; ; yyj2379++ { - if yyhl2379 { - if yyj2379 >= l { + var yys2422Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2422Slc + var yyhl2422 bool = l >= 0 + for yyj2422 := 0; ; yyj2422++ { + if yyhl2422 { + if yyj2422 >= l { break } } else { @@ -31190,10 +31801,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2379Slc = r.DecodeBytes(yys2379Slc, true, true) - yys2379 := string(yys2379Slc) + yys2422Slc = r.DecodeBytes(yys2422Slc, true, true) + yys2422 := string(yys2422Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2379 { + switch yys2422 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31210,31 +31821,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2382 := &x.ListMeta - yym2383 := z.DecBinary() - _ = yym2383 + yyv2425 := &x.ListMeta + yym2426 := z.DecBinary() + _ = yym2426 if false { - } else if z.HasExtensions() && z.DecExt(yyv2382) { + } else if z.HasExtensions() && z.DecExt(yyv2425) { } else { - z.DecFallback(yyv2382, false) + z.DecFallback(yyv2425, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2384 := &x.Items - yym2385 := z.DecBinary() - _ = yym2385 + yyv2427 := &x.Items + yym2428 := z.DecBinary() + _ = yym2428 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2384), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2427), d) } } default: - z.DecStructFieldNotFound(-1, yys2379) - } // end switch yys2379 - } // end for yyj2379 + z.DecStructFieldNotFound(-1, yys2422) + } // end switch yys2422 + } // end for yyj2422 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31242,16 +31853,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2386 int - var yyb2386 bool - var yyhl2386 bool = l >= 0 - yyj2386++ - if yyhl2386 { - yyb2386 = yyj2386 > l + var yyj2429 int + var yyb2429 bool + var yyhl2429 bool = l >= 0 + yyj2429++ + if yyhl2429 { + yyb2429 = yyj2429 > l } else { - yyb2386 = r.CheckBreak() + yyb2429 = r.CheckBreak() } - if yyb2386 { + if yyb2429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31261,13 +31872,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2386++ - if yyhl2386 { - yyb2386 = yyj2386 > l + yyj2429++ + if yyhl2429 { + yyb2429 = yyj2429 > l } else { - yyb2386 = r.CheckBreak() + yyb2429 = r.CheckBreak() } - if yyb2386 { + if yyb2429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31277,13 +31888,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2386++ - if yyhl2386 { - yyb2386 = yyj2386 > l + yyj2429++ + if yyhl2429 { + yyb2429 = yyj2429 > l } else { - yyb2386 = r.CheckBreak() + yyb2429 = r.CheckBreak() } - if yyb2386 { + if yyb2429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31291,22 +31902,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2389 := &x.ListMeta - yym2390 := z.DecBinary() - _ = yym2390 + yyv2432 := &x.ListMeta + yym2433 := z.DecBinary() + _ = yym2433 if false { - } else if z.HasExtensions() && z.DecExt(yyv2389) { + } else if z.HasExtensions() && z.DecExt(yyv2432) { } else { - z.DecFallback(yyv2389, false) + z.DecFallback(yyv2432, false) } } - yyj2386++ - if yyhl2386 { - yyb2386 = yyj2386 > l + yyj2429++ + if yyhl2429 { + yyb2429 = yyj2429 > l } else { - yyb2386 = r.CheckBreak() + yyb2429 = r.CheckBreak() } - if yyb2386 { + if yyb2429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31314,26 +31925,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2391 := &x.Items - yym2392 := z.DecBinary() - _ = yym2392 + yyv2434 := &x.Items + yym2435 := z.DecBinary() + _ = yym2435 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2391), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2434), d) } } for { - yyj2386++ - if yyhl2386 { - yyb2386 = yyj2386 > l + yyj2429++ + if yyhl2429 { + yyb2429 = yyj2429 > l } else { - yyb2386 = r.CheckBreak() + yyb2429 = r.CheckBreak() } - if yyb2386 { + if yyb2429 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2386-1, "") + z.DecStructFieldNotFound(yyj2429-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31345,37 +31956,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2393 := z.EncBinary() - _ = yym2393 + yym2436 := z.EncBinary() + _ = yym2436 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2394 := !z.EncBinary() - yy2arr2394 := z.EncBasicHandle().StructToArray - var yyq2394 [4]bool - _, _, _ = yysep2394, yyq2394, yy2arr2394 - const yyr2394 bool = false - yyq2394[0] = x.Kind != "" - yyq2394[1] = x.APIVersion != "" - yyq2394[2] = true - var yynn2394 int - if yyr2394 || yy2arr2394 { + yysep2437 := !z.EncBinary() + yy2arr2437 := z.EncBasicHandle().StructToArray + var yyq2437 [4]bool + _, _, _ = yysep2437, yyq2437, yy2arr2437 + const yyr2437 bool = false + yyq2437[0] = x.Kind != "" + yyq2437[1] = x.APIVersion != "" + yyq2437[2] = true + var yynn2437 int + if yyr2437 || yy2arr2437 { r.EncodeArrayStart(4) } else { - yynn2394 = 1 - for _, b := range yyq2394 { + yynn2437 = 1 + for _, b := range yyq2437 { if b { - yynn2394++ + yynn2437++ } } - r.EncodeMapStart(yynn2394) - yynn2394 = 0 + r.EncodeMapStart(yynn2437) + yynn2437 = 0 } - if yyr2394 || yy2arr2394 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2394[0] { - yym2396 := z.EncBinary() - _ = yym2396 + if yyq2437[0] { + yym2439 := z.EncBinary() + _ = yym2439 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31384,23 +31995,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2394[0] { + if yyq2437[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2397 := z.EncBinary() - _ = yym2397 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2394 || yy2arr2394 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2394[1] { - yym2399 := z.EncBinary() - _ = yym2399 + if yyq2437[1] { + yym2442 := z.EncBinary() + _ = yym2442 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31409,54 +32020,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2394[1] { + if yyq2437[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2400 := z.EncBinary() - _ = yym2400 + yym2443 := z.EncBinary() + _ = yym2443 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2394 || yy2arr2394 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2394[2] { - yy2402 := &x.ListMeta - yym2403 := z.EncBinary() - _ = yym2403 + if yyq2437[2] { + yy2445 := &x.ListMeta + yym2446 := z.EncBinary() + _ = yym2446 if false { - } else if z.HasExtensions() && z.EncExt(yy2402) { + } else if z.HasExtensions() && z.EncExt(yy2445) { } else { - z.EncFallback(yy2402) + z.EncFallback(yy2445) } } else { r.EncodeNil() } } else { - if yyq2394[2] { + if yyq2437[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2404 := &x.ListMeta - yym2405 := z.EncBinary() - _ = yym2405 + yy2447 := &x.ListMeta + yym2448 := z.EncBinary() + _ = yym2448 if false { - } else if z.HasExtensions() && z.EncExt(yy2404) { + } else if z.HasExtensions() && z.EncExt(yy2447) { } else { - z.EncFallback(yy2404) + z.EncFallback(yy2447) } } } - if yyr2394 || yy2arr2394 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2407 := z.EncBinary() - _ = yym2407 + yym2450 := z.EncBinary() + _ = yym2450 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -31469,15 +32080,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2408 := z.EncBinary() - _ = yym2408 + yym2451 := z.EncBinary() + _ = yym2451 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2394 || yy2arr2394 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31490,25 +32101,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2409 := z.DecBinary() - _ = yym2409 + yym2452 := z.DecBinary() + _ = yym2452 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2410 := r.ContainerType() - if yyct2410 == codecSelferValueTypeMap1234 { - yyl2410 := r.ReadMapStart() - if yyl2410 == 0 { + yyct2453 := r.ContainerType() + if yyct2453 == codecSelferValueTypeMap1234 { + yyl2453 := r.ReadMapStart() + if yyl2453 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2410, d) + x.codecDecodeSelfFromMap(yyl2453, d) } - } else if yyct2410 == codecSelferValueTypeArray1234 { - yyl2410 := r.ReadArrayStart() - if yyl2410 == 0 { + } else if yyct2453 == codecSelferValueTypeArray1234 { + yyl2453 := r.ReadArrayStart() + if yyl2453 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2410, d) + x.codecDecodeSelfFromArray(yyl2453, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31520,12 +32131,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2411Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2411Slc - var yyhl2411 bool = l >= 0 - for yyj2411 := 0; ; yyj2411++ { - if yyhl2411 { - if yyj2411 >= l { + var yys2454Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2454Slc + var yyhl2454 bool = l >= 0 + for yyj2454 := 0; ; yyj2454++ { + if yyhl2454 { + if yyj2454 >= l { break } } else { @@ -31534,10 +32145,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2411Slc = r.DecodeBytes(yys2411Slc, true, true) - yys2411 := string(yys2411Slc) + yys2454Slc = r.DecodeBytes(yys2454Slc, true, true) + yys2454 := string(yys2454Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2411 { + switch yys2454 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31554,31 +32165,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2414 := &x.ListMeta - yym2415 := z.DecBinary() - _ = yym2415 + yyv2457 := &x.ListMeta + yym2458 := z.DecBinary() + _ = yym2458 if false { - } else if z.HasExtensions() && z.DecExt(yyv2414) { + } else if z.HasExtensions() && z.DecExt(yyv2457) { } else { - z.DecFallback(yyv2414, false) + z.DecFallback(yyv2457, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2416 := &x.Items - yym2417 := z.DecBinary() - _ = yym2417 + yyv2459 := &x.Items + yym2460 := z.DecBinary() + _ = yym2460 if false { } else { - h.decSliceService((*[]Service)(yyv2416), d) + h.decSliceService((*[]Service)(yyv2459), d) } } default: - z.DecStructFieldNotFound(-1, yys2411) - } // end switch yys2411 - } // end for yyj2411 + z.DecStructFieldNotFound(-1, yys2454) + } // end switch yys2454 + } // end for yyj2454 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31586,16 +32197,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2418 int - var yyb2418 bool - var yyhl2418 bool = l >= 0 - yyj2418++ - if yyhl2418 { - yyb2418 = yyj2418 > l + var yyj2461 int + var yyb2461 bool + var yyhl2461 bool = l >= 0 + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2418 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2418 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31605,13 +32216,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2418++ - if yyhl2418 { - yyb2418 = yyj2418 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2418 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2418 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31621,13 +32232,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2418++ - if yyhl2418 { - yyb2418 = yyj2418 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2418 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2418 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31635,22 +32246,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2421 := &x.ListMeta - yym2422 := z.DecBinary() - _ = yym2422 + yyv2464 := &x.ListMeta + yym2465 := z.DecBinary() + _ = yym2465 if false { - } else if z.HasExtensions() && z.DecExt(yyv2421) { + } else if z.HasExtensions() && z.DecExt(yyv2464) { } else { - z.DecFallback(yyv2421, false) + z.DecFallback(yyv2464, false) } } - yyj2418++ - if yyhl2418 { - yyb2418 = yyj2418 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2418 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2418 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31658,26 +32269,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2423 := &x.Items - yym2424 := z.DecBinary() - _ = yym2424 + yyv2466 := &x.Items + yym2467 := z.DecBinary() + _ = yym2467 if false { } else { - h.decSliceService((*[]Service)(yyv2423), d) + h.decSliceService((*[]Service)(yyv2466), d) } } for { - yyj2418++ - if yyhl2418 { - yyb2418 = yyj2418 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2418 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2418 { + if yyb2461 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2418-1, "") + z.DecStructFieldNotFound(yyj2461-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31686,8 +32297,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2425 := z.EncBinary() - _ = yym2425 + yym2468 := z.EncBinary() + _ = yym2468 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31699,8 +32310,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2426 := z.DecBinary() - _ = yym2426 + yym2469 := z.DecBinary() + _ = yym2469 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31712,8 +32323,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2427 := z.EncBinary() - _ = yym2427 + yym2470 := z.EncBinary() + _ = yym2470 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31725,8 +32336,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2428 := z.DecBinary() - _ = yym2428 + yym2471 := z.DecBinary() + _ = yym2471 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31741,48 +32352,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2429 := z.EncBinary() - _ = yym2429 + yym2472 := z.EncBinary() + _ = yym2472 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2430 := !z.EncBinary() - yy2arr2430 := z.EncBasicHandle().StructToArray - var yyq2430 [1]bool - _, _, _ = yysep2430, yyq2430, yy2arr2430 - const yyr2430 bool = false - yyq2430[0] = true - var yynn2430 int - if yyr2430 || yy2arr2430 { + yysep2473 := !z.EncBinary() + yy2arr2473 := z.EncBasicHandle().StructToArray + var yyq2473 [1]bool + _, _, _ = yysep2473, yyq2473, yy2arr2473 + const yyr2473 bool = false + yyq2473[0] = true + var yynn2473 int + if yyr2473 || yy2arr2473 { r.EncodeArrayStart(1) } else { - yynn2430 = 0 - for _, b := range yyq2430 { + yynn2473 = 0 + for _, b := range yyq2473 { if b { - yynn2430++ + yynn2473++ } } - r.EncodeMapStart(yynn2430) - yynn2430 = 0 + r.EncodeMapStart(yynn2473) + yynn2473 = 0 } - if yyr2430 || yy2arr2430 { + if yyr2473 || yy2arr2473 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2430[0] { - yy2432 := &x.LoadBalancer - yy2432.CodecEncodeSelf(e) + if yyq2473[0] { + yy2475 := &x.LoadBalancer + yy2475.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2430[0] { + if yyq2473[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2433 := &x.LoadBalancer - yy2433.CodecEncodeSelf(e) + yy2476 := &x.LoadBalancer + yy2476.CodecEncodeSelf(e) } } - if yyr2430 || yy2arr2430 { + if yyr2473 || yy2arr2473 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31795,25 +32406,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2434 := z.DecBinary() - _ = yym2434 + yym2477 := z.DecBinary() + _ = yym2477 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2435 := r.ContainerType() - if yyct2435 == codecSelferValueTypeMap1234 { - yyl2435 := r.ReadMapStart() - if yyl2435 == 0 { + yyct2478 := r.ContainerType() + if yyct2478 == codecSelferValueTypeMap1234 { + yyl2478 := r.ReadMapStart() + if yyl2478 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2435, d) + x.codecDecodeSelfFromMap(yyl2478, d) } - } else if yyct2435 == codecSelferValueTypeArray1234 { - yyl2435 := r.ReadArrayStart() - if yyl2435 == 0 { + } else if yyct2478 == codecSelferValueTypeArray1234 { + yyl2478 := r.ReadArrayStart() + if yyl2478 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2435, d) + x.codecDecodeSelfFromArray(yyl2478, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31825,12 +32436,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2436Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2436Slc - var yyhl2436 bool = l >= 0 - for yyj2436 := 0; ; yyj2436++ { - if yyhl2436 { - if yyj2436 >= l { + var yys2479Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2479Slc + var yyhl2479 bool = l >= 0 + for yyj2479 := 0; ; yyj2479++ { + if yyhl2479 { + if yyj2479 >= l { break } } else { @@ -31839,21 +32450,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2436Slc = r.DecodeBytes(yys2436Slc, true, true) - yys2436 := string(yys2436Slc) + yys2479Slc = r.DecodeBytes(yys2479Slc, true, true) + yys2479 := string(yys2479Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2436 { + switch yys2479 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2437 := &x.LoadBalancer - yyv2437.CodecDecodeSelf(d) + yyv2480 := &x.LoadBalancer + yyv2480.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2436) - } // end switch yys2436 - } // end for yyj2436 + z.DecStructFieldNotFound(-1, yys2479) + } // end switch yys2479 + } // end for yyj2479 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31861,16 +32472,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2438 int - var yyb2438 bool - var yyhl2438 bool = l >= 0 - yyj2438++ - if yyhl2438 { - yyb2438 = yyj2438 > l + var yyj2481 int + var yyb2481 bool + var yyhl2481 bool = l >= 0 + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2438 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2438 { + if yyb2481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31878,21 +32489,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2439 := &x.LoadBalancer - yyv2439.CodecDecodeSelf(d) + yyv2482 := &x.LoadBalancer + yyv2482.CodecDecodeSelf(d) } for { - yyj2438++ - if yyhl2438 { - yyb2438 = yyj2438 > l + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2438 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2438 { + if yyb2481 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2438-1, "") + z.DecStructFieldNotFound(yyj2481-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31904,38 +32515,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2440 := z.EncBinary() - _ = yym2440 + yym2483 := z.EncBinary() + _ = yym2483 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2441 := !z.EncBinary() - yy2arr2441 := z.EncBasicHandle().StructToArray - var yyq2441 [1]bool - _, _, _ = yysep2441, yyq2441, yy2arr2441 - const yyr2441 bool = false - yyq2441[0] = len(x.Ingress) != 0 - var yynn2441 int - if yyr2441 || yy2arr2441 { + yysep2484 := !z.EncBinary() + yy2arr2484 := z.EncBasicHandle().StructToArray + var yyq2484 [1]bool + _, _, _ = yysep2484, yyq2484, yy2arr2484 + const yyr2484 bool = false + yyq2484[0] = len(x.Ingress) != 0 + var yynn2484 int + if yyr2484 || yy2arr2484 { r.EncodeArrayStart(1) } else { - yynn2441 = 0 - for _, b := range yyq2441 { + yynn2484 = 0 + for _, b := range yyq2484 { if b { - yynn2441++ + yynn2484++ } } - r.EncodeMapStart(yynn2441) - yynn2441 = 0 + r.EncodeMapStart(yynn2484) + yynn2484 = 0 } - if yyr2441 || yy2arr2441 { + if yyr2484 || yy2arr2484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2441[0] { + if yyq2484[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2443 := z.EncBinary() - _ = yym2443 + yym2486 := z.EncBinary() + _ = yym2486 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -31945,15 +32556,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2441[0] { + if yyq2484[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2444 := z.EncBinary() - _ = yym2444 + yym2487 := z.EncBinary() + _ = yym2487 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -31961,7 +32572,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2441 || yy2arr2441 { + if yyr2484 || yy2arr2484 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31974,25 +32585,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2445 := z.DecBinary() - _ = yym2445 + yym2488 := z.DecBinary() + _ = yym2488 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2446 := r.ContainerType() - if yyct2446 == codecSelferValueTypeMap1234 { - yyl2446 := r.ReadMapStart() - if yyl2446 == 0 { + yyct2489 := r.ContainerType() + if yyct2489 == codecSelferValueTypeMap1234 { + yyl2489 := r.ReadMapStart() + if yyl2489 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2446, d) + x.codecDecodeSelfFromMap(yyl2489, d) } - } else if yyct2446 == codecSelferValueTypeArray1234 { - yyl2446 := r.ReadArrayStart() - if yyl2446 == 0 { + } else if yyct2489 == codecSelferValueTypeArray1234 { + yyl2489 := r.ReadArrayStart() + if yyl2489 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2446, d) + x.codecDecodeSelfFromArray(yyl2489, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32004,12 +32615,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2447Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2447Slc - var yyhl2447 bool = l >= 0 - for yyj2447 := 0; ; yyj2447++ { - if yyhl2447 { - if yyj2447 >= l { + var yys2490Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2490Slc + var yyhl2490 bool = l >= 0 + for yyj2490 := 0; ; yyj2490++ { + if yyhl2490 { + if yyj2490 >= l { break } } else { @@ -32018,26 +32629,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2447Slc = r.DecodeBytes(yys2447Slc, true, true) - yys2447 := string(yys2447Slc) + yys2490Slc = r.DecodeBytes(yys2490Slc, true, true) + yys2490 := string(yys2490Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2447 { + switch yys2490 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2448 := &x.Ingress - yym2449 := z.DecBinary() - _ = yym2449 + yyv2491 := &x.Ingress + yym2492 := z.DecBinary() + _ = yym2492 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2448), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2491), d) } } default: - z.DecStructFieldNotFound(-1, yys2447) - } // end switch yys2447 - } // end for yyj2447 + z.DecStructFieldNotFound(-1, yys2490) + } // end switch yys2490 + } // end for yyj2490 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32045,16 +32656,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2450 int - var yyb2450 bool - var yyhl2450 bool = l >= 0 - yyj2450++ - if yyhl2450 { - yyb2450 = yyj2450 > l + var yyj2493 int + var yyb2493 bool + var yyhl2493 bool = l >= 0 + yyj2493++ + if yyhl2493 { + yyb2493 = yyj2493 > l } else { - yyb2450 = r.CheckBreak() + yyb2493 = r.CheckBreak() } - if yyb2450 { + if yyb2493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32062,26 +32673,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2451 := &x.Ingress - yym2452 := z.DecBinary() - _ = yym2452 + yyv2494 := &x.Ingress + yym2495 := z.DecBinary() + _ = yym2495 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2451), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2494), d) } } for { - yyj2450++ - if yyhl2450 { - yyb2450 = yyj2450 > l + yyj2493++ + if yyhl2493 { + yyb2493 = yyj2493 > l } else { - yyb2450 = r.CheckBreak() + yyb2493 = r.CheckBreak() } - if yyb2450 { + if yyb2493 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2450-1, "") + z.DecStructFieldNotFound(yyj2493-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32093,36 +32704,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2453 := z.EncBinary() - _ = yym2453 + yym2496 := z.EncBinary() + _ = yym2496 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2454 := !z.EncBinary() - yy2arr2454 := z.EncBasicHandle().StructToArray - var yyq2454 [2]bool - _, _, _ = yysep2454, yyq2454, yy2arr2454 - const yyr2454 bool = false - yyq2454[0] = x.IP != "" - yyq2454[1] = x.Hostname != "" - var yynn2454 int - if yyr2454 || yy2arr2454 { + yysep2497 := !z.EncBinary() + yy2arr2497 := z.EncBasicHandle().StructToArray + var yyq2497 [2]bool + _, _, _ = yysep2497, yyq2497, yy2arr2497 + const yyr2497 bool = false + yyq2497[0] = x.IP != "" + yyq2497[1] = x.Hostname != "" + var yynn2497 int + if yyr2497 || yy2arr2497 { r.EncodeArrayStart(2) } else { - yynn2454 = 0 - for _, b := range yyq2454 { + yynn2497 = 0 + for _, b := range yyq2497 { if b { - yynn2454++ + yynn2497++ } } - r.EncodeMapStart(yynn2454) - yynn2454 = 0 + r.EncodeMapStart(yynn2497) + yynn2497 = 0 } - if yyr2454 || yy2arr2454 { + if yyr2497 || yy2arr2497 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2454[0] { - yym2456 := z.EncBinary() - _ = yym2456 + if yyq2497[0] { + yym2499 := z.EncBinary() + _ = yym2499 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -32131,23 +32742,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2454[0] { + if yyq2497[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2457 := z.EncBinary() - _ = yym2457 + yym2500 := z.EncBinary() + _ = yym2500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2454 || yy2arr2454 { + if yyr2497 || yy2arr2497 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2454[1] { - yym2459 := z.EncBinary() - _ = yym2459 + if yyq2497[1] { + yym2502 := z.EncBinary() + _ = yym2502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -32156,19 +32767,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2454[1] { + if yyq2497[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2460 := z.EncBinary() - _ = yym2460 + yym2503 := z.EncBinary() + _ = yym2503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2454 || yy2arr2454 { + if yyr2497 || yy2arr2497 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32181,25 +32792,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2461 := z.DecBinary() - _ = yym2461 + yym2504 := z.DecBinary() + _ = yym2504 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2462 := r.ContainerType() - if yyct2462 == codecSelferValueTypeMap1234 { - yyl2462 := r.ReadMapStart() - if yyl2462 == 0 { + yyct2505 := r.ContainerType() + if yyct2505 == codecSelferValueTypeMap1234 { + yyl2505 := r.ReadMapStart() + if yyl2505 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2462, d) + x.codecDecodeSelfFromMap(yyl2505, d) } - } else if yyct2462 == codecSelferValueTypeArray1234 { - yyl2462 := r.ReadArrayStart() - if yyl2462 == 0 { + } else if yyct2505 == codecSelferValueTypeArray1234 { + yyl2505 := r.ReadArrayStart() + if yyl2505 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2462, d) + x.codecDecodeSelfFromArray(yyl2505, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32211,12 +32822,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2463Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2463Slc - var yyhl2463 bool = l >= 0 - for yyj2463 := 0; ; yyj2463++ { - if yyhl2463 { - if yyj2463 >= l { + var yys2506Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2506Slc + var yyhl2506 bool = l >= 0 + for yyj2506 := 0; ; yyj2506++ { + if yyhl2506 { + if yyj2506 >= l { break } } else { @@ -32225,10 +32836,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2463Slc = r.DecodeBytes(yys2463Slc, true, true) - yys2463 := string(yys2463Slc) + yys2506Slc = r.DecodeBytes(yys2506Slc, true, true) + yys2506 := string(yys2506Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2463 { + switch yys2506 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -32242,9 +32853,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2463) - } // end switch yys2463 - } // end for yyj2463 + z.DecStructFieldNotFound(-1, yys2506) + } // end switch yys2506 + } // end for yyj2506 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32252,16 +32863,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2466 int - var yyb2466 bool - var yyhl2466 bool = l >= 0 - yyj2466++ - if yyhl2466 { - yyb2466 = yyj2466 > l + var yyj2509 int + var yyb2509 bool + var yyhl2509 bool = l >= 0 + yyj2509++ + if yyhl2509 { + yyb2509 = yyj2509 > l } else { - yyb2466 = r.CheckBreak() + yyb2509 = r.CheckBreak() } - if yyb2466 { + if yyb2509 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32271,13 +32882,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2466++ - if yyhl2466 { - yyb2466 = yyj2466 > l + yyj2509++ + if yyhl2509 { + yyb2509 = yyj2509 > l } else { - yyb2466 = r.CheckBreak() + yyb2509 = r.CheckBreak() } - if yyb2466 { + if yyb2509 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32288,17 +32899,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2466++ - if yyhl2466 { - yyb2466 = yyj2466 > l + yyj2509++ + if yyhl2509 { + yyb2509 = yyj2509 > l } else { - yyb2466 = r.CheckBreak() + yyb2509 = r.CheckBreak() } - if yyb2466 { + if yyb2509 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2466-1, "") + z.DecStructFieldNotFound(yyj2509-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32310,57 +32921,57 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2469 := z.EncBinary() - _ = yym2469 + yym2512 := z.EncBinary() + _ = yym2512 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] = x.Type != "" - yyq2470[3] = x.ClusterIP != "" - yyq2470[4] = len(x.ExternalIPs) != 0 - yyq2470[5] = x.LoadBalancerIP != "" - yyq2470[6] = x.SessionAffinity != "" - yyq2470[7] = len(x.LoadBalancerSourceRanges) != 0 - var yynn2470 int - if yyr2470 || yy2arr2470 { + yysep2513 := !z.EncBinary() + yy2arr2513 := z.EncBasicHandle().StructToArray + var yyq2513 [8]bool + _, _, _ = yysep2513, yyq2513, yy2arr2513 + const yyr2513 bool = false + yyq2513[0] = x.Type != "" + yyq2513[3] = x.ClusterIP != "" + yyq2513[4] = len(x.ExternalIPs) != 0 + yyq2513[5] = x.LoadBalancerIP != "" + yyq2513[6] = x.SessionAffinity != "" + yyq2513[7] = len(x.LoadBalancerSourceRanges) != 0 + var yynn2513 int + if yyr2513 || yy2arr2513 { r.EncodeArrayStart(8) } else { - yynn2470 = 2 - for _, b := range yyq2470 { + yynn2513 = 2 + for _, b := range yyq2513 { if b { - yynn2470++ + yynn2513++ } } - r.EncodeMapStart(yynn2470) - yynn2470 = 0 + r.EncodeMapStart(yynn2513) + yynn2513 = 0 } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[0] { + if yyq2513[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2470[0] { + if yyq2513[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2473 := z.EncBinary() - _ = yym2473 + yym2516 := z.EncBinary() + _ = yym2516 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -32373,21 +32984,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2474 := z.EncBinary() - _ = yym2474 + yym2517 := z.EncBinary() + _ = yym2517 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym2476 := z.EncBinary() - _ = yym2476 + yym2519 := z.EncBinary() + _ = yym2519 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -32400,19 +33011,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym2477 := z.EncBinary() - _ = yym2477 + yym2520 := z.EncBinary() + _ = yym2520 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[3] { - yym2479 := z.EncBinary() - _ = yym2479 + if yyq2513[3] { + yym2522 := z.EncBinary() + _ = yym2522 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -32421,26 +33032,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2470[3] { + if yyq2513[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2480 := z.EncBinary() - _ = yym2480 + yym2523 := z.EncBinary() + _ = yym2523 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[4] { + if yyq2513[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2482 := z.EncBinary() - _ = yym2482 + yym2525 := z.EncBinary() + _ = yym2525 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32450,15 +33061,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2470[4] { + if yyq2513[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2483 := z.EncBinary() - _ = yym2483 + yym2526 := z.EncBinary() + _ = yym2526 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32466,11 +33077,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[5] { - yym2485 := z.EncBinary() - _ = yym2485 + if yyq2513[5] { + yym2528 := z.EncBinary() + _ = yym2528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -32479,41 +33090,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2470[5] { + if yyq2513[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2486 := z.EncBinary() - _ = yym2486 + yym2529 := z.EncBinary() + _ = yym2529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[6] { + if yyq2513[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2470[6] { + if yyq2513[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2470[7] { + if yyq2513[7] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2489 := z.EncBinary() - _ = yym2489 + yym2532 := z.EncBinary() + _ = yym2532 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32523,15 +33134,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2470[7] { + if yyq2513[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2490 := z.EncBinary() - _ = yym2490 + yym2533 := z.EncBinary() + _ = yym2533 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32539,7 +33150,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2470 || yy2arr2470 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32552,25 +33163,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2491 := z.DecBinary() - _ = yym2491 + yym2534 := z.DecBinary() + _ = yym2534 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2492 := r.ContainerType() - if yyct2492 == codecSelferValueTypeMap1234 { - yyl2492 := r.ReadMapStart() - if yyl2492 == 0 { + yyct2535 := r.ContainerType() + if yyct2535 == codecSelferValueTypeMap1234 { + yyl2535 := r.ReadMapStart() + if yyl2535 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2492, d) + x.codecDecodeSelfFromMap(yyl2535, d) } - } else if yyct2492 == codecSelferValueTypeArray1234 { - yyl2492 := r.ReadArrayStart() - if yyl2492 == 0 { + } else if yyct2535 == codecSelferValueTypeArray1234 { + yyl2535 := r.ReadArrayStart() + if yyl2535 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2492, d) + x.codecDecodeSelfFromArray(yyl2535, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32582,12 +33193,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2493Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2493Slc - var yyhl2493 bool = l >= 0 - for yyj2493 := 0; ; yyj2493++ { - if yyhl2493 { - if yyj2493 >= l { + var yys2536Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2536Slc + var yyhl2536 bool = l >= 0 + for yyj2536 := 0; ; yyj2536++ { + if yyhl2536 { + if yyj2536 >= l { break } } else { @@ -32596,10 +33207,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2493Slc = r.DecodeBytes(yys2493Slc, true, true) - yys2493 := string(yys2493Slc) + yys2536Slc = r.DecodeBytes(yys2536Slc, true, true) + yys2536 := string(yys2536Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2493 { + switch yys2536 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32610,24 +33221,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2495 := &x.Ports - yym2496 := z.DecBinary() - _ = yym2496 + yyv2538 := &x.Ports + yym2539 := z.DecBinary() + _ = yym2539 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2495), d) + h.decSliceServicePort((*[]ServicePort)(yyv2538), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2497 := &x.Selector - yym2498 := z.DecBinary() - _ = yym2498 + yyv2540 := &x.Selector + yym2541 := z.DecBinary() + _ = yym2541 if false { } else { - z.F.DecMapStringStringX(yyv2497, false, d) + z.F.DecMapStringStringX(yyv2540, false, d) } } case "clusterIP": @@ -32640,12 +33251,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2500 := &x.ExternalIPs - yym2501 := z.DecBinary() - _ = yym2501 + yyv2543 := &x.ExternalIPs + yym2544 := z.DecBinary() + _ = yym2544 if false { } else { - z.F.DecSliceStringX(yyv2500, false, d) + z.F.DecSliceStringX(yyv2543, false, d) } } case "loadBalancerIP": @@ -32664,18 +33275,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2504 := &x.LoadBalancerSourceRanges - yym2505 := z.DecBinary() - _ = yym2505 + yyv2547 := &x.LoadBalancerSourceRanges + yym2548 := z.DecBinary() + _ = yym2548 if false { } else { - z.F.DecSliceStringX(yyv2504, false, d) + z.F.DecSliceStringX(yyv2547, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2493) - } // end switch yys2493 - } // end for yyj2493 + z.DecStructFieldNotFound(-1, yys2536) + } // end switch yys2536 + } // end for yyj2536 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32683,16 +33294,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2506 int - var yyb2506 bool - var yyhl2506 bool = l >= 0 - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + var yyj2549 int + var yyb2549 bool + var yyhl2549 bool = l >= 0 + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32702,13 +33313,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32716,21 +33327,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2508 := &x.Ports - yym2509 := z.DecBinary() - _ = yym2509 + yyv2551 := &x.Ports + yym2552 := z.DecBinary() + _ = yym2552 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2508), d) + h.decSliceServicePort((*[]ServicePort)(yyv2551), d) } } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32738,21 +33349,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2510 := &x.Selector - yym2511 := z.DecBinary() - _ = yym2511 + yyv2553 := &x.Selector + yym2554 := z.DecBinary() + _ = yym2554 if false { } else { - z.F.DecMapStringStringX(yyv2510, false, d) + z.F.DecMapStringStringX(yyv2553, false, d) } } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32762,13 +33373,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32776,21 +33387,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2513 := &x.ExternalIPs - yym2514 := z.DecBinary() - _ = yym2514 + yyv2556 := &x.ExternalIPs + yym2557 := z.DecBinary() + _ = yym2557 if false { } else { - z.F.DecSliceStringX(yyv2513, false, d) + z.F.DecSliceStringX(yyv2556, false, d) } } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32800,13 +33411,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32816,13 +33427,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32830,26 +33441,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2517 := &x.LoadBalancerSourceRanges - yym2518 := z.DecBinary() - _ = yym2518 + yyv2560 := &x.LoadBalancerSourceRanges + yym2561 := z.DecBinary() + _ = yym2561 if false { } else { - z.F.DecSliceStringX(yyv2517, false, d) + z.F.DecSliceStringX(yyv2560, false, d) } } for { - yyj2506++ - if yyhl2506 { - yyb2506 = yyj2506 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2506 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2506 { + if yyb2549 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2506-1, "") + z.DecStructFieldNotFound(yyj2549-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32861,33 +33472,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2519 := z.EncBinary() - _ = yym2519 + yym2562 := z.EncBinary() + _ = yym2562 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2520 := !z.EncBinary() - yy2arr2520 := z.EncBasicHandle().StructToArray - var yyq2520 [5]bool - _, _, _ = yysep2520, yyq2520, yy2arr2520 - const yyr2520 bool = false - var yynn2520 int - if yyr2520 || yy2arr2520 { + yysep2563 := !z.EncBinary() + yy2arr2563 := z.EncBasicHandle().StructToArray + var yyq2563 [5]bool + _, _, _ = yysep2563, yyq2563, yy2arr2563 + const yyr2563 bool = false + var yynn2563 int + if yyr2563 || yy2arr2563 { r.EncodeArrayStart(5) } else { - yynn2520 = 5 - for _, b := range yyq2520 { + yynn2563 = 5 + for _, b := range yyq2563 { if b { - yynn2520++ + yynn2563++ } } - r.EncodeMapStart(yynn2520) - yynn2520 = 0 + r.EncodeMapStart(yynn2563) + yynn2563 = 0 } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2522 := z.EncBinary() - _ = yym2522 + yym2565 := z.EncBinary() + _ = yym2565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -32896,14 +33507,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2523 := z.EncBinary() - _ = yym2523 + yym2566 := z.EncBinary() + _ = yym2566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -32912,10 +33523,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2526 := z.EncBinary() - _ = yym2526 + yym2569 := z.EncBinary() + _ = yym2569 if false { } else { r.EncodeInt(int64(x.Port)) @@ -32924,44 +33535,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2527 := z.EncBinary() - _ = yym2527 + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2529 := &x.TargetPort - yym2530 := z.EncBinary() - _ = yym2530 + yy2572 := &x.TargetPort + yym2573 := z.EncBinary() + _ = yym2573 if false { - } else if z.HasExtensions() && z.EncExt(yy2529) { - } else if !yym2530 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2529) + } else if z.HasExtensions() && z.EncExt(yy2572) { + } else if !yym2573 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2572) } else { - z.EncFallback(yy2529) + z.EncFallback(yy2572) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2531 := &x.TargetPort - yym2532 := z.EncBinary() - _ = yym2532 + yy2574 := &x.TargetPort + yym2575 := z.EncBinary() + _ = yym2575 if false { - } else if z.HasExtensions() && z.EncExt(yy2531) { - } else if !yym2532 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2531) + } else if z.HasExtensions() && z.EncExt(yy2574) { + } else if !yym2575 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2574) } else { - z.EncFallback(yy2531) + z.EncFallback(yy2574) } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2534 := z.EncBinary() - _ = yym2534 + yym2577 := z.EncBinary() + _ = yym2577 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -32970,14 +33581,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2535 := z.EncBinary() - _ = yym2535 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32990,25 +33601,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2536 := z.DecBinary() - _ = yym2536 + yym2579 := z.DecBinary() + _ = yym2579 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2537 := r.ContainerType() - if yyct2537 == codecSelferValueTypeMap1234 { - yyl2537 := r.ReadMapStart() - if yyl2537 == 0 { + yyct2580 := r.ContainerType() + if yyct2580 == codecSelferValueTypeMap1234 { + yyl2580 := r.ReadMapStart() + if yyl2580 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2537, d) + x.codecDecodeSelfFromMap(yyl2580, d) } - } else if yyct2537 == codecSelferValueTypeArray1234 { - yyl2537 := r.ReadArrayStart() - if yyl2537 == 0 { + } else if yyct2580 == codecSelferValueTypeArray1234 { + yyl2580 := r.ReadArrayStart() + if yyl2580 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2537, d) + x.codecDecodeSelfFromArray(yyl2580, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33020,12 +33631,12 @@ func (x *ServicePort) 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 yys2581Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2581Slc + var yyhl2581 bool = l >= 0 + for yyj2581 := 0; ; yyj2581++ { + if yyhl2581 { + if yyj2581 >= l { break } } else { @@ -33034,10 +33645,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2538Slc = r.DecodeBytes(yys2538Slc, true, true) - yys2538 := string(yys2538Slc) + yys2581Slc = r.DecodeBytes(yys2581Slc, true, true) + yys2581 := string(yys2581Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2538 { + switch yys2581 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -33060,15 +33671,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2542 := &x.TargetPort - yym2543 := z.DecBinary() - _ = yym2543 + yyv2585 := &x.TargetPort + yym2586 := z.DecBinary() + _ = yym2586 if false { - } else if z.HasExtensions() && z.DecExt(yyv2542) { - } else if !yym2543 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2542) + } else if z.HasExtensions() && z.DecExt(yyv2585) { + } else if !yym2586 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2585) } else { - z.DecFallback(yyv2542, false) + z.DecFallback(yyv2585, false) } } case "nodePort": @@ -33078,9 +33689,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2538) - } // end switch yys2538 - } // end for yyj2538 + z.DecStructFieldNotFound(-1, yys2581) + } // end switch yys2581 + } // end for yyj2581 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33088,16 +33699,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2545 int - var yyb2545 bool - var yyhl2545 bool = l >= 0 - yyj2545++ - if yyhl2545 { - yyb2545 = yyj2545 > l + var yyj2588 int + var yyb2588 bool + var yyhl2588 bool = l >= 0 + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2545 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2545 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33107,13 +33718,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2545++ - if yyhl2545 { - yyb2545 = yyj2545 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2545 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2545 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33123,13 +33734,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2545++ - if yyhl2545 { - yyb2545 = yyj2545 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2545 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2545 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33139,13 +33750,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2545++ - if yyhl2545 { - yyb2545 = yyj2545 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2545 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2545 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33153,24 +33764,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2549 := &x.TargetPort - yym2550 := z.DecBinary() - _ = yym2550 + yyv2592 := &x.TargetPort + yym2593 := z.DecBinary() + _ = yym2593 if false { - } else if z.HasExtensions() && z.DecExt(yyv2549) { - } else if !yym2550 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2549) + } else if z.HasExtensions() && z.DecExt(yyv2592) { + } else if !yym2593 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2592) } else { - z.DecFallback(yyv2549, false) + z.DecFallback(yyv2592, false) } } - yyj2545++ - if yyhl2545 { - yyb2545 = yyj2545 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2545 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2545 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33181,17 +33792,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2545++ - if yyhl2545 { - yyb2545 = yyj2545 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2545 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2545 { + if yyb2588 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2545-1, "") + z.DecStructFieldNotFound(yyj2588-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33203,39 +33814,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2552 := z.EncBinary() - _ = yym2552 + yym2595 := z.EncBinary() + _ = yym2595 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2553 := !z.EncBinary() - yy2arr2553 := z.EncBasicHandle().StructToArray - var yyq2553 [5]bool - _, _, _ = yysep2553, yyq2553, yy2arr2553 - const yyr2553 bool = false - yyq2553[0] = x.Kind != "" - yyq2553[1] = x.APIVersion != "" - yyq2553[2] = true - yyq2553[3] = true - yyq2553[4] = true - var yynn2553 int - if yyr2553 || yy2arr2553 { + yysep2596 := !z.EncBinary() + yy2arr2596 := z.EncBasicHandle().StructToArray + var yyq2596 [5]bool + _, _, _ = yysep2596, yyq2596, yy2arr2596 + const yyr2596 bool = false + yyq2596[0] = x.Kind != "" + yyq2596[1] = x.APIVersion != "" + yyq2596[2] = true + yyq2596[3] = true + yyq2596[4] = true + var yynn2596 int + if yyr2596 || yy2arr2596 { r.EncodeArrayStart(5) } else { - yynn2553 = 0 - for _, b := range yyq2553 { + yynn2596 = 0 + for _, b := range yyq2596 { if b { - yynn2553++ + yynn2596++ } } - r.EncodeMapStart(yynn2553) - yynn2553 = 0 + r.EncodeMapStart(yynn2596) + yynn2596 = 0 } - if yyr2553 || yy2arr2553 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2553[0] { - yym2555 := z.EncBinary() - _ = yym2555 + if yyq2596[0] { + yym2598 := z.EncBinary() + _ = yym2598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33244,23 +33855,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2553[0] { + if yyq2596[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2556 := z.EncBinary() - _ = yym2556 + yym2599 := z.EncBinary() + _ = yym2599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2553 || yy2arr2553 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2553[1] { - yym2558 := z.EncBinary() - _ = yym2558 + if yyq2596[1] { + yym2601 := z.EncBinary() + _ = yym2601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33269,70 +33880,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2553[1] { + if yyq2596[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2559 := z.EncBinary() - _ = yym2559 + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2553 || yy2arr2553 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2553[2] { - yy2561 := &x.ObjectMeta - yy2561.CodecEncodeSelf(e) + if yyq2596[2] { + yy2604 := &x.ObjectMeta + yy2604.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2553[2] { + if yyq2596[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2562 := &x.ObjectMeta - yy2562.CodecEncodeSelf(e) + yy2605 := &x.ObjectMeta + yy2605.CodecEncodeSelf(e) } } - if yyr2553 || yy2arr2553 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2553[3] { - yy2564 := &x.Spec - yy2564.CodecEncodeSelf(e) + if yyq2596[3] { + yy2607 := &x.Spec + yy2607.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2553[3] { + if yyq2596[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2565 := &x.Spec - yy2565.CodecEncodeSelf(e) + yy2608 := &x.Spec + yy2608.CodecEncodeSelf(e) } } - if yyr2553 || yy2arr2553 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2553[4] { - yy2567 := &x.Status - yy2567.CodecEncodeSelf(e) + if yyq2596[4] { + yy2610 := &x.Status + yy2610.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2553[4] { + if yyq2596[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2568 := &x.Status - yy2568.CodecEncodeSelf(e) + yy2611 := &x.Status + yy2611.CodecEncodeSelf(e) } } - if yyr2553 || yy2arr2553 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33345,25 +33956,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2569 := z.DecBinary() - _ = yym2569 + yym2612 := z.DecBinary() + _ = yym2612 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2570 := r.ContainerType() - if yyct2570 == codecSelferValueTypeMap1234 { - yyl2570 := r.ReadMapStart() - if yyl2570 == 0 { + yyct2613 := r.ContainerType() + if yyct2613 == codecSelferValueTypeMap1234 { + yyl2613 := r.ReadMapStart() + if yyl2613 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2570, d) + x.codecDecodeSelfFromMap(yyl2613, d) } - } else if yyct2570 == codecSelferValueTypeArray1234 { - yyl2570 := r.ReadArrayStart() - if yyl2570 == 0 { + } else if yyct2613 == codecSelferValueTypeArray1234 { + yyl2613 := r.ReadArrayStart() + if yyl2613 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2570, d) + x.codecDecodeSelfFromArray(yyl2613, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33375,12 +33986,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2571Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2571Slc - var yyhl2571 bool = l >= 0 - for yyj2571 := 0; ; yyj2571++ { - if yyhl2571 { - if yyj2571 >= l { + var yys2614Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2614Slc + var yyhl2614 bool = l >= 0 + for yyj2614 := 0; ; yyj2614++ { + if yyhl2614 { + if yyj2614 >= l { break } } else { @@ -33389,10 +34000,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2571Slc = r.DecodeBytes(yys2571Slc, true, true) - yys2571 := string(yys2571Slc) + yys2614Slc = r.DecodeBytes(yys2614Slc, true, true) + yys2614 := string(yys2614Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2571 { + switch yys2614 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33409,27 +34020,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2574 := &x.ObjectMeta - yyv2574.CodecDecodeSelf(d) + yyv2617 := &x.ObjectMeta + yyv2617.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2575 := &x.Spec - yyv2575.CodecDecodeSelf(d) + yyv2618 := &x.Spec + yyv2618.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2576 := &x.Status - yyv2576.CodecDecodeSelf(d) + yyv2619 := &x.Status + yyv2619.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2571) - } // end switch yys2571 - } // end for yyj2571 + z.DecStructFieldNotFound(-1, yys2614) + } // end switch yys2614 + } // end for yyj2614 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33437,16 +34048,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2577 int - var yyb2577 bool - var yyhl2577 bool = l >= 0 - yyj2577++ - if yyhl2577 { - yyb2577 = yyj2577 > l + var yyj2620 int + var yyb2620 bool + var yyhl2620 bool = l >= 0 + yyj2620++ + if yyhl2620 { + yyb2620 = yyj2620 > l } else { - yyb2577 = r.CheckBreak() + yyb2620 = r.CheckBreak() } - if yyb2577 { + if yyb2620 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33456,13 +34067,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2577++ - if yyhl2577 { - yyb2577 = yyj2577 > l + yyj2620++ + if yyhl2620 { + yyb2620 = yyj2620 > l } else { - yyb2577 = r.CheckBreak() + yyb2620 = r.CheckBreak() } - if yyb2577 { + if yyb2620 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33472,13 +34083,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2577++ - if yyhl2577 { - yyb2577 = yyj2577 > l + yyj2620++ + if yyhl2620 { + yyb2620 = yyj2620 > l } else { - yyb2577 = r.CheckBreak() + yyb2620 = r.CheckBreak() } - if yyb2577 { + if yyb2620 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33486,16 +34097,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2580 := &x.ObjectMeta - yyv2580.CodecDecodeSelf(d) + yyv2623 := &x.ObjectMeta + yyv2623.CodecDecodeSelf(d) } - yyj2577++ - if yyhl2577 { - yyb2577 = yyj2577 > l + yyj2620++ + if yyhl2620 { + yyb2620 = yyj2620 > l } else { - yyb2577 = r.CheckBreak() + yyb2620 = r.CheckBreak() } - if yyb2577 { + if yyb2620 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33503,16 +34114,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2581 := &x.Spec - yyv2581.CodecDecodeSelf(d) + yyv2624 := &x.Spec + yyv2624.CodecDecodeSelf(d) } - yyj2577++ - if yyhl2577 { - yyb2577 = yyj2577 > l + yyj2620++ + if yyhl2620 { + yyb2620 = yyj2620 > l } else { - yyb2577 = r.CheckBreak() + yyb2620 = r.CheckBreak() } - if yyb2577 { + if yyb2620 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33520,21 +34131,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2582 := &x.Status - yyv2582.CodecDecodeSelf(d) + yyv2625 := &x.Status + yyv2625.CodecDecodeSelf(d) } for { - yyj2577++ - if yyhl2577 { - yyb2577 = yyj2577 > l + yyj2620++ + if yyhl2620 { + yyb2620 = yyj2620 > l } else { - yyb2577 = r.CheckBreak() + yyb2620 = r.CheckBreak() } - if yyb2577 { + if yyb2620 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2577-1, "") + z.DecStructFieldNotFound(yyj2620-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33546,38 +34157,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2583 := z.EncBinary() - _ = yym2583 + yym2626 := z.EncBinary() + _ = yym2626 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2584 := !z.EncBinary() - yy2arr2584 := z.EncBasicHandle().StructToArray - var yyq2584 [5]bool - _, _, _ = yysep2584, yyq2584, yy2arr2584 - const yyr2584 bool = false - yyq2584[0] = x.Kind != "" - yyq2584[1] = x.APIVersion != "" - yyq2584[2] = true - yyq2584[4] = len(x.ImagePullSecrets) != 0 - var yynn2584 int - if yyr2584 || yy2arr2584 { + yysep2627 := !z.EncBinary() + yy2arr2627 := z.EncBasicHandle().StructToArray + var yyq2627 [5]bool + _, _, _ = yysep2627, yyq2627, yy2arr2627 + const yyr2627 bool = false + yyq2627[0] = x.Kind != "" + yyq2627[1] = x.APIVersion != "" + yyq2627[2] = true + yyq2627[4] = len(x.ImagePullSecrets) != 0 + var yynn2627 int + if yyr2627 || yy2arr2627 { r.EncodeArrayStart(5) } else { - yynn2584 = 1 - for _, b := range yyq2584 { + yynn2627 = 1 + for _, b := range yyq2627 { if b { - yynn2584++ + yynn2627++ } } - r.EncodeMapStart(yynn2584) - yynn2584 = 0 + r.EncodeMapStart(yynn2627) + yynn2627 = 0 } - if yyr2584 || yy2arr2584 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2584[0] { - yym2586 := z.EncBinary() - _ = yym2586 + if yyq2627[0] { + yym2629 := z.EncBinary() + _ = yym2629 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33586,23 +34197,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2584[0] { + if yyq2627[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2587 := z.EncBinary() - _ = yym2587 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2584 || yy2arr2584 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2584[1] { - yym2589 := z.EncBinary() - _ = yym2589 + if yyq2627[1] { + yym2632 := z.EncBinary() + _ = yym2632 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33611,42 +34222,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2584[1] { + if yyq2627[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2590 := z.EncBinary() - _ = yym2590 + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2584 || yy2arr2584 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2584[2] { - yy2592 := &x.ObjectMeta - yy2592.CodecEncodeSelf(e) + if yyq2627[2] { + yy2635 := &x.ObjectMeta + yy2635.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2584[2] { + if yyq2627[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2593 := &x.ObjectMeta - yy2593.CodecEncodeSelf(e) + yy2636 := &x.ObjectMeta + yy2636.CodecEncodeSelf(e) } } - if yyr2584 || yy2arr2584 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2595 := z.EncBinary() - _ = yym2595 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33659,22 +34270,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2596 := z.EncBinary() - _ = yym2596 + yym2639 := z.EncBinary() + _ = yym2639 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2584 || yy2arr2584 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2584[4] { + if yyq2627[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2598 := z.EncBinary() - _ = yym2598 + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33684,15 +34295,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2584[4] { + if yyq2627[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2599 := z.EncBinary() - _ = yym2599 + yym2642 := z.EncBinary() + _ = yym2642 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33700,7 +34311,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2584 || yy2arr2584 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33713,25 +34324,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2600 := z.DecBinary() - _ = yym2600 + yym2643 := z.DecBinary() + _ = yym2643 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2601 := r.ContainerType() - if yyct2601 == codecSelferValueTypeMap1234 { - yyl2601 := r.ReadMapStart() - if yyl2601 == 0 { + yyct2644 := r.ContainerType() + if yyct2644 == codecSelferValueTypeMap1234 { + yyl2644 := r.ReadMapStart() + if yyl2644 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2601, d) + x.codecDecodeSelfFromMap(yyl2644, d) } - } else if yyct2601 == codecSelferValueTypeArray1234 { - yyl2601 := r.ReadArrayStart() - if yyl2601 == 0 { + } else if yyct2644 == codecSelferValueTypeArray1234 { + yyl2644 := r.ReadArrayStart() + if yyl2644 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2601, d) + x.codecDecodeSelfFromArray(yyl2644, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33743,12 +34354,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2602Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2602Slc - var yyhl2602 bool = l >= 0 - for yyj2602 := 0; ; yyj2602++ { - if yyhl2602 { - if yyj2602 >= l { + var yys2645Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2645Slc + var yyhl2645 bool = l >= 0 + for yyj2645 := 0; ; yyj2645++ { + if yyhl2645 { + if yyj2645 >= l { break } } else { @@ -33757,10 +34368,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2602Slc = r.DecodeBytes(yys2602Slc, true, true) - yys2602 := string(yys2602Slc) + yys2645Slc = r.DecodeBytes(yys2645Slc, true, true) + yys2645 := string(yys2645Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2602 { + switch yys2645 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33777,37 +34388,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2605 := &x.ObjectMeta - yyv2605.CodecDecodeSelf(d) + yyv2648 := &x.ObjectMeta + yyv2648.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2606 := &x.Secrets - yym2607 := z.DecBinary() - _ = yym2607 + yyv2649 := &x.Secrets + yym2650 := z.DecBinary() + _ = yym2650 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2606), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2649), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2608 := &x.ImagePullSecrets - yym2609 := z.DecBinary() - _ = yym2609 + yyv2651 := &x.ImagePullSecrets + yym2652 := z.DecBinary() + _ = yym2652 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2608), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2651), d) } } default: - z.DecStructFieldNotFound(-1, yys2602) - } // end switch yys2602 - } // end for yyj2602 + z.DecStructFieldNotFound(-1, yys2645) + } // end switch yys2645 + } // end for yyj2645 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33815,16 +34426,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2610 int - var yyb2610 bool - var yyhl2610 bool = l >= 0 - yyj2610++ - if yyhl2610 { - yyb2610 = yyj2610 > l + var yyj2653 int + var yyb2653 bool + var yyhl2653 bool = l >= 0 + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2610 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2610 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33834,13 +34445,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2610++ - if yyhl2610 { - yyb2610 = yyj2610 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2610 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2610 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33850,13 +34461,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2610++ - if yyhl2610 { - yyb2610 = yyj2610 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2610 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2610 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33864,16 +34475,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2613 := &x.ObjectMeta - yyv2613.CodecDecodeSelf(d) + yyv2656 := &x.ObjectMeta + yyv2656.CodecDecodeSelf(d) } - yyj2610++ - if yyhl2610 { - yyb2610 = yyj2610 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2610 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2610 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33881,21 +34492,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2614 := &x.Secrets - yym2615 := z.DecBinary() - _ = yym2615 + yyv2657 := &x.Secrets + yym2658 := z.DecBinary() + _ = yym2658 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2614), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2657), d) } } - yyj2610++ - if yyhl2610 { - yyb2610 = yyj2610 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2610 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2610 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33903,26 +34514,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2616 := &x.ImagePullSecrets - yym2617 := z.DecBinary() - _ = yym2617 + yyv2659 := &x.ImagePullSecrets + yym2660 := z.DecBinary() + _ = yym2660 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2616), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2659), d) } } for { - yyj2610++ - if yyhl2610 { - yyb2610 = yyj2610 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2610 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2610 { + if yyb2653 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2610-1, "") + z.DecStructFieldNotFound(yyj2653-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33934,37 +34545,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2618 := z.EncBinary() - _ = yym2618 + yym2661 := z.EncBinary() + _ = yym2661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2619 := !z.EncBinary() - yy2arr2619 := z.EncBasicHandle().StructToArray - var yyq2619 [4]bool - _, _, _ = yysep2619, yyq2619, yy2arr2619 - const yyr2619 bool = false - yyq2619[0] = x.Kind != "" - yyq2619[1] = x.APIVersion != "" - yyq2619[2] = true - var yynn2619 int - if yyr2619 || yy2arr2619 { + yysep2662 := !z.EncBinary() + yy2arr2662 := z.EncBasicHandle().StructToArray + var yyq2662 [4]bool + _, _, _ = yysep2662, yyq2662, yy2arr2662 + const yyr2662 bool = false + yyq2662[0] = x.Kind != "" + yyq2662[1] = x.APIVersion != "" + yyq2662[2] = true + var yynn2662 int + if yyr2662 || yy2arr2662 { r.EncodeArrayStart(4) } else { - yynn2619 = 1 - for _, b := range yyq2619 { + yynn2662 = 1 + for _, b := range yyq2662 { if b { - yynn2619++ + yynn2662++ } } - r.EncodeMapStart(yynn2619) - yynn2619 = 0 + r.EncodeMapStart(yynn2662) + yynn2662 = 0 } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2619[0] { - yym2621 := z.EncBinary() - _ = yym2621 + if yyq2662[0] { + yym2664 := z.EncBinary() + _ = yym2664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33973,23 +34584,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2619[0] { + if yyq2662[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2622 := z.EncBinary() - _ = yym2622 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2619[1] { - yym2624 := z.EncBinary() - _ = yym2624 + if yyq2662[1] { + yym2667 := z.EncBinary() + _ = yym2667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33998,54 +34609,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2619[1] { + if yyq2662[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2625 := z.EncBinary() - _ = yym2625 + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2619[2] { - yy2627 := &x.ListMeta - yym2628 := z.EncBinary() - _ = yym2628 + if yyq2662[2] { + yy2670 := &x.ListMeta + yym2671 := z.EncBinary() + _ = yym2671 if false { - } else if z.HasExtensions() && z.EncExt(yy2627) { + } else if z.HasExtensions() && z.EncExt(yy2670) { } else { - z.EncFallback(yy2627) + z.EncFallback(yy2670) } } else { r.EncodeNil() } } else { - if yyq2619[2] { + if yyq2662[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2629 := &x.ListMeta - yym2630 := z.EncBinary() - _ = yym2630 + yy2672 := &x.ListMeta + yym2673 := z.EncBinary() + _ = yym2673 if false { - } else if z.HasExtensions() && z.EncExt(yy2629) { + } else if z.HasExtensions() && z.EncExt(yy2672) { } else { - z.EncFallback(yy2629) + z.EncFallback(yy2672) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2632 := z.EncBinary() - _ = yym2632 + yym2675 := z.EncBinary() + _ = yym2675 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -34058,15 +34669,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2633 := z.EncBinary() - _ = yym2633 + yym2676 := z.EncBinary() + _ = yym2676 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34079,25 +34690,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2634 := z.DecBinary() - _ = yym2634 + yym2677 := z.DecBinary() + _ = yym2677 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2635 := r.ContainerType() - if yyct2635 == codecSelferValueTypeMap1234 { - yyl2635 := r.ReadMapStart() - if yyl2635 == 0 { + yyct2678 := r.ContainerType() + if yyct2678 == codecSelferValueTypeMap1234 { + yyl2678 := r.ReadMapStart() + if yyl2678 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2635, d) + x.codecDecodeSelfFromMap(yyl2678, d) } - } else if yyct2635 == codecSelferValueTypeArray1234 { - yyl2635 := r.ReadArrayStart() - if yyl2635 == 0 { + } else if yyct2678 == codecSelferValueTypeArray1234 { + yyl2678 := r.ReadArrayStart() + if yyl2678 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2635, d) + x.codecDecodeSelfFromArray(yyl2678, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34109,12 +34720,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2636Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2636Slc - var yyhl2636 bool = l >= 0 - for yyj2636 := 0; ; yyj2636++ { - if yyhl2636 { - if yyj2636 >= l { + var yys2679Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2679Slc + var yyhl2679 bool = l >= 0 + for yyj2679 := 0; ; yyj2679++ { + if yyhl2679 { + if yyj2679 >= l { break } } else { @@ -34123,10 +34734,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2636Slc = r.DecodeBytes(yys2636Slc, true, true) - yys2636 := string(yys2636Slc) + yys2679Slc = r.DecodeBytes(yys2679Slc, true, true) + yys2679 := string(yys2679Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2636 { + switch yys2679 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34143,31 +34754,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2639 := &x.ListMeta - yym2640 := z.DecBinary() - _ = yym2640 + yyv2682 := &x.ListMeta + yym2683 := z.DecBinary() + _ = yym2683 if false { - } else if z.HasExtensions() && z.DecExt(yyv2639) { + } else if z.HasExtensions() && z.DecExt(yyv2682) { } else { - z.DecFallback(yyv2639, false) + z.DecFallback(yyv2682, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2641 := &x.Items - yym2642 := z.DecBinary() - _ = yym2642 + yyv2684 := &x.Items + yym2685 := z.DecBinary() + _ = yym2685 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2641), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2684), d) } } default: - z.DecStructFieldNotFound(-1, yys2636) - } // end switch yys2636 - } // end for yyj2636 + z.DecStructFieldNotFound(-1, yys2679) + } // end switch yys2679 + } // end for yyj2679 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34175,16 +34786,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2643 int - var yyb2643 bool - var yyhl2643 bool = l >= 0 - yyj2643++ - if yyhl2643 { - yyb2643 = yyj2643 > l + var yyj2686 int + var yyb2686 bool + var yyhl2686 bool = l >= 0 + yyj2686++ + if yyhl2686 { + yyb2686 = yyj2686 > l } else { - yyb2643 = r.CheckBreak() + yyb2686 = r.CheckBreak() } - if yyb2643 { + if yyb2686 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34194,13 +34805,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2643++ - if yyhl2643 { - yyb2643 = yyj2643 > l + yyj2686++ + if yyhl2686 { + yyb2686 = yyj2686 > l } else { - yyb2643 = r.CheckBreak() + yyb2686 = r.CheckBreak() } - if yyb2643 { + if yyb2686 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34210,13 +34821,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2643++ - if yyhl2643 { - yyb2643 = yyj2643 > l + yyj2686++ + if yyhl2686 { + yyb2686 = yyj2686 > l } else { - yyb2643 = r.CheckBreak() + yyb2686 = r.CheckBreak() } - if yyb2643 { + if yyb2686 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34224,22 +34835,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2646 := &x.ListMeta - yym2647 := z.DecBinary() - _ = yym2647 + yyv2689 := &x.ListMeta + yym2690 := z.DecBinary() + _ = yym2690 if false { - } else if z.HasExtensions() && z.DecExt(yyv2646) { + } else if z.HasExtensions() && z.DecExt(yyv2689) { } else { - z.DecFallback(yyv2646, false) + z.DecFallback(yyv2689, false) } } - yyj2643++ - if yyhl2643 { - yyb2643 = yyj2643 > l + yyj2686++ + if yyhl2686 { + yyb2686 = yyj2686 > l } else { - yyb2643 = r.CheckBreak() + yyb2686 = r.CheckBreak() } - if yyb2643 { + if yyb2686 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34247,26 +34858,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2648 := &x.Items - yym2649 := z.DecBinary() - _ = yym2649 + yyv2691 := &x.Items + yym2692 := z.DecBinary() + _ = yym2692 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2648), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2691), d) } } for { - yyj2643++ - if yyhl2643 { - yyb2643 = yyj2643 > l + yyj2686++ + if yyhl2686 { + yyb2686 = yyj2686 > l } else { - yyb2643 = r.CheckBreak() + yyb2686 = r.CheckBreak() } - if yyb2643 { + if yyb2686 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2643-1, "") + z.DecStructFieldNotFound(yyj2686-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34278,37 +34889,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2650 := z.EncBinary() - _ = yym2650 + yym2693 := z.EncBinary() + _ = yym2693 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 { + yysep2694 := !z.EncBinary() + yy2arr2694 := z.EncBasicHandle().StructToArray + var yyq2694 [4]bool + _, _, _ = yysep2694, yyq2694, yy2arr2694 + const yyr2694 bool = false + yyq2694[0] = x.Kind != "" + yyq2694[1] = x.APIVersion != "" + yyq2694[2] = true + var yynn2694 int + if yyr2694 || yy2arr2694 { r.EncodeArrayStart(4) } else { - yynn2651 = 1 - for _, b := range yyq2651 { + yynn2694 = 1 + for _, b := range yyq2694 { if b { - yynn2651++ + yynn2694++ } } - r.EncodeMapStart(yynn2651) - yynn2651 = 0 + r.EncodeMapStart(yynn2694) + yynn2694 = 0 } - if yyr2651 || yy2arr2651 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2651[0] { - yym2653 := z.EncBinary() - _ = yym2653 + if yyq2694[0] { + yym2696 := z.EncBinary() + _ = yym2696 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34317,23 +34928,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2651[0] { + if yyq2694[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2654 := z.EncBinary() - _ = yym2654 + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2651 || yy2arr2651 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2651[1] { - yym2656 := z.EncBinary() - _ = yym2656 + if yyq2694[1] { + yym2699 := z.EncBinary() + _ = yym2699 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34342,42 +34953,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2651[1] { + if yyq2694[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2657 := z.EncBinary() - _ = yym2657 + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2651 || yy2arr2651 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2651[2] { - yy2659 := &x.ObjectMeta - yy2659.CodecEncodeSelf(e) + if yyq2694[2] { + yy2702 := &x.ObjectMeta + yy2702.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2651[2] { + if yyq2694[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2660 := &x.ObjectMeta - yy2660.CodecEncodeSelf(e) + yy2703 := &x.ObjectMeta + yy2703.CodecEncodeSelf(e) } } - if yyr2651 || yy2arr2651 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2662 := z.EncBinary() - _ = yym2662 + yym2705 := z.EncBinary() + _ = yym2705 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -34390,15 +35001,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2663 := z.EncBinary() - _ = yym2663 + yym2706 := z.EncBinary() + _ = yym2706 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2651 || yy2arr2651 { + if yyr2694 || yy2arr2694 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34411,25 +35022,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2664 := z.DecBinary() - _ = yym2664 + yym2707 := z.DecBinary() + _ = yym2707 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2665 := r.ContainerType() - if yyct2665 == codecSelferValueTypeMap1234 { - yyl2665 := r.ReadMapStart() - if yyl2665 == 0 { + yyct2708 := r.ContainerType() + if yyct2708 == codecSelferValueTypeMap1234 { + yyl2708 := r.ReadMapStart() + if yyl2708 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2665, d) + x.codecDecodeSelfFromMap(yyl2708, d) } - } else if yyct2665 == codecSelferValueTypeArray1234 { - yyl2665 := r.ReadArrayStart() - if yyl2665 == 0 { + } else if yyct2708 == codecSelferValueTypeArray1234 { + yyl2708 := r.ReadArrayStart() + if yyl2708 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2665, d) + x.codecDecodeSelfFromArray(yyl2708, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34441,12 +35052,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2666Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2666Slc - var yyhl2666 bool = l >= 0 - for yyj2666 := 0; ; yyj2666++ { - if yyhl2666 { - if yyj2666 >= l { + var yys2709Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2709Slc + var yyhl2709 bool = l >= 0 + for yyj2709 := 0; ; yyj2709++ { + if yyhl2709 { + if yyj2709 >= l { break } } else { @@ -34455,10 +35066,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2666Slc = r.DecodeBytes(yys2666Slc, true, true) - yys2666 := string(yys2666Slc) + yys2709Slc = r.DecodeBytes(yys2709Slc, true, true) + yys2709 := string(yys2709Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2666 { + switch yys2709 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34475,25 +35086,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2669 := &x.ObjectMeta - yyv2669.CodecDecodeSelf(d) + yyv2712 := &x.ObjectMeta + yyv2712.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2670 := &x.Subsets - yym2671 := z.DecBinary() - _ = yym2671 + yyv2713 := &x.Subsets + yym2714 := z.DecBinary() + _ = yym2714 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2670), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2713), d) } } default: - z.DecStructFieldNotFound(-1, yys2666) - } // end switch yys2666 - } // end for yyj2666 + z.DecStructFieldNotFound(-1, yys2709) + } // end switch yys2709 + } // end for yyj2709 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34501,16 +35112,16 @@ func (x *Endpoints) 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 + var yyj2715 int + var yyb2715 bool + var yyhl2715 bool = l >= 0 + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2672 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2672 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34520,13 +35131,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2672++ - if yyhl2672 { - yyb2672 = yyj2672 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2672 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2672 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34536,13 +35147,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2672++ - if yyhl2672 { - yyb2672 = yyj2672 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2672 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2672 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34550,16 +35161,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2675 := &x.ObjectMeta - yyv2675.CodecDecodeSelf(d) + yyv2718 := &x.ObjectMeta + yyv2718.CodecDecodeSelf(d) } - yyj2672++ - if yyhl2672 { - yyb2672 = yyj2672 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2672 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2672 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34567,26 +35178,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2676 := &x.Subsets - yym2677 := z.DecBinary() - _ = yym2677 + yyv2719 := &x.Subsets + yym2720 := z.DecBinary() + _ = yym2720 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2676), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2719), d) } } for { - yyj2672++ - if yyhl2672 { - yyb2672 = yyj2672 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2672 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2672 { + if yyb2715 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2672-1, "") + z.DecStructFieldNotFound(yyj2715-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34598,36 +35209,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2678 := z.EncBinary() - _ = yym2678 + yym2721 := z.EncBinary() + _ = yym2721 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2679 := !z.EncBinary() - yy2arr2679 := z.EncBasicHandle().StructToArray - var yyq2679 [3]bool - _, _, _ = yysep2679, yyq2679, yy2arr2679 - const yyr2679 bool = false - var yynn2679 int - if yyr2679 || yy2arr2679 { + yysep2722 := !z.EncBinary() + yy2arr2722 := z.EncBasicHandle().StructToArray + var yyq2722 [3]bool + _, _, _ = yysep2722, yyq2722, yy2arr2722 + const yyr2722 bool = false + var yynn2722 int + if yyr2722 || yy2arr2722 { r.EncodeArrayStart(3) } else { - yynn2679 = 3 - for _, b := range yyq2679 { + yynn2722 = 3 + for _, b := range yyq2722 { if b { - yynn2679++ + yynn2722++ } } - r.EncodeMapStart(yynn2679) - yynn2679 = 0 + r.EncodeMapStart(yynn2722) + yynn2722 = 0 } - if yyr2679 || yy2arr2679 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2681 := z.EncBinary() - _ = yym2681 + yym2724 := z.EncBinary() + _ = yym2724 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34640,21 +35251,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2682 := z.EncBinary() - _ = yym2682 + yym2725 := z.EncBinary() + _ = yym2725 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2679 || yy2arr2679 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2684 := z.EncBinary() - _ = yym2684 + yym2727 := z.EncBinary() + _ = yym2727 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34667,21 +35278,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2685 := z.EncBinary() - _ = yym2685 + yym2728 := z.EncBinary() + _ = yym2728 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2679 || yy2arr2679 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2687 := z.EncBinary() - _ = yym2687 + yym2730 := z.EncBinary() + _ = yym2730 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34694,15 +35305,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2688 := z.EncBinary() - _ = yym2688 + yym2731 := z.EncBinary() + _ = yym2731 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2679 || yy2arr2679 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34715,25 +35326,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2689 := z.DecBinary() - _ = yym2689 + yym2732 := z.DecBinary() + _ = yym2732 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2690 := r.ContainerType() - if yyct2690 == codecSelferValueTypeMap1234 { - yyl2690 := r.ReadMapStart() - if yyl2690 == 0 { + yyct2733 := r.ContainerType() + if yyct2733 == codecSelferValueTypeMap1234 { + yyl2733 := r.ReadMapStart() + if yyl2733 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2690, d) + x.codecDecodeSelfFromMap(yyl2733, d) } - } else if yyct2690 == codecSelferValueTypeArray1234 { - yyl2690 := r.ReadArrayStart() - if yyl2690 == 0 { + } else if yyct2733 == codecSelferValueTypeArray1234 { + yyl2733 := r.ReadArrayStart() + if yyl2733 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2690, d) + x.codecDecodeSelfFromArray(yyl2733, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34745,12 +35356,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2691Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2691Slc - var yyhl2691 bool = l >= 0 - for yyj2691 := 0; ; yyj2691++ { - if yyhl2691 { - if yyj2691 >= l { + var yys2734Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2734Slc + var yyhl2734 bool = l >= 0 + for yyj2734 := 0; ; yyj2734++ { + if yyhl2734 { + if yyj2734 >= l { break } } else { @@ -34759,50 +35370,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2691Slc = r.DecodeBytes(yys2691Slc, true, true) - yys2691 := string(yys2691Slc) + yys2734Slc = r.DecodeBytes(yys2734Slc, true, true) + yys2734 := string(yys2734Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2691 { + switch yys2734 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2692 := &x.Addresses - yym2693 := z.DecBinary() - _ = yym2693 + yyv2735 := &x.Addresses + yym2736 := z.DecBinary() + _ = yym2736 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2692), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2735), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2694 := &x.NotReadyAddresses - yym2695 := z.DecBinary() - _ = yym2695 + yyv2737 := &x.NotReadyAddresses + yym2738 := z.DecBinary() + _ = yym2738 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2694), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2737), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2696 := &x.Ports - yym2697 := z.DecBinary() - _ = yym2697 + yyv2739 := &x.Ports + yym2740 := z.DecBinary() + _ = yym2740 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2696), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2739), d) } } default: - z.DecStructFieldNotFound(-1, yys2691) - } // end switch yys2691 - } // end for yyj2691 + z.DecStructFieldNotFound(-1, yys2734) + } // end switch yys2734 + } // end for yyj2734 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34810,16 +35421,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2698 int - var yyb2698 bool - var yyhl2698 bool = l >= 0 - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + var yyj2741 int + var yyb2741 bool + var yyhl2741 bool = l >= 0 + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2698 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2698 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34827,21 +35438,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2699 := &x.Addresses - yym2700 := z.DecBinary() - _ = yym2700 + yyv2742 := &x.Addresses + yym2743 := z.DecBinary() + _ = yym2743 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2699), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2742), d) } } - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2698 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2698 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34849,21 +35460,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2701 := &x.NotReadyAddresses - yym2702 := z.DecBinary() - _ = yym2702 + yyv2744 := &x.NotReadyAddresses + yym2745 := z.DecBinary() + _ = yym2745 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2701), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2744), d) } } - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2698 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2698 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34871,26 +35482,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2703 := &x.Ports - yym2704 := z.DecBinary() - _ = yym2704 + yyv2746 := &x.Ports + yym2747 := z.DecBinary() + _ = yym2747 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2703), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2746), d) } } for { - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2698 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2698 { + if yyb2741 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2698-1, "") + z.DecStructFieldNotFound(yyj2741-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34902,35 +35513,35 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2705 := z.EncBinary() - _ = yym2705 + yym2748 := z.EncBinary() + _ = yym2748 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2706 := !z.EncBinary() - yy2arr2706 := z.EncBasicHandle().StructToArray - var yyq2706 [4]bool - _, _, _ = yysep2706, yyq2706, yy2arr2706 - const yyr2706 bool = false - yyq2706[1] = x.Hostname != "" - yyq2706[2] = x.NodeName != nil - var yynn2706 int - if yyr2706 || yy2arr2706 { + yysep2749 := !z.EncBinary() + yy2arr2749 := z.EncBasicHandle().StructToArray + var yyq2749 [4]bool + _, _, _ = yysep2749, yyq2749, yy2arr2749 + const yyr2749 bool = false + yyq2749[1] = x.Hostname != "" + yyq2749[2] = x.NodeName != nil + var yynn2749 int + if yyr2749 || yy2arr2749 { r.EncodeArrayStart(4) } else { - yynn2706 = 2 - for _, b := range yyq2706 { + yynn2749 = 2 + for _, b := range yyq2749 { if b { - yynn2706++ + yynn2749++ } } - r.EncodeMapStart(yynn2706) - yynn2706 = 0 + r.EncodeMapStart(yynn2749) + yynn2749 = 0 } - if yyr2706 || yy2arr2706 { + if yyr2749 || yy2arr2749 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2708 := z.EncBinary() - _ = yym2708 + yym2751 := z.EncBinary() + _ = yym2751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -34939,18 +35550,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2709 := z.EncBinary() - _ = yym2709 + yym2752 := z.EncBinary() + _ = yym2752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2706 || yy2arr2706 { + if yyr2749 || yy2arr2749 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2706[1] { - yym2711 := z.EncBinary() - _ = yym2711 + if yyq2749[1] { + yym2754 := z.EncBinary() + _ = yym2754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -34959,54 +35570,54 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2706[1] { + if yyq2749[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2712 := z.EncBinary() - _ = yym2712 + yym2755 := z.EncBinary() + _ = yym2755 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2706 || yy2arr2706 { + if yyr2749 || yy2arr2749 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2706[2] { + if yyq2749[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2714 := *x.NodeName - yym2715 := z.EncBinary() - _ = yym2715 + yy2757 := *x.NodeName + yym2758 := z.EncBinary() + _ = yym2758 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2714)) + r.EncodeString(codecSelferC_UTF81234, string(yy2757)) } } } else { r.EncodeNil() } } else { - if yyq2706[2] { + if yyq2749[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2716 := *x.NodeName - yym2717 := z.EncBinary() - _ = yym2717 + yy2759 := *x.NodeName + yym2760 := z.EncBinary() + _ = yym2760 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2716)) + r.EncodeString(codecSelferC_UTF81234, string(yy2759)) } } } } - if yyr2706 || yy2arr2706 { + if yyr2749 || yy2arr2749 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -35023,7 +35634,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2706 || yy2arr2706 { + if yyr2749 || yy2arr2749 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35036,25 +35647,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2719 := z.DecBinary() - _ = yym2719 + yym2762 := z.DecBinary() + _ = yym2762 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2720 := r.ContainerType() - if yyct2720 == codecSelferValueTypeMap1234 { - yyl2720 := r.ReadMapStart() - if yyl2720 == 0 { + yyct2763 := r.ContainerType() + if yyct2763 == codecSelferValueTypeMap1234 { + yyl2763 := r.ReadMapStart() + if yyl2763 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2720, d) + x.codecDecodeSelfFromMap(yyl2763, d) } - } else if yyct2720 == codecSelferValueTypeArray1234 { - yyl2720 := r.ReadArrayStart() - if yyl2720 == 0 { + } else if yyct2763 == codecSelferValueTypeArray1234 { + yyl2763 := r.ReadArrayStart() + if yyl2763 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2720, d) + x.codecDecodeSelfFromArray(yyl2763, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35066,12 +35677,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2721Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2721Slc - var yyhl2721 bool = l >= 0 - for yyj2721 := 0; ; yyj2721++ { - if yyhl2721 { - if yyj2721 >= l { + var yys2764Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2764Slc + var yyhl2764 bool = l >= 0 + for yyj2764 := 0; ; yyj2764++ { + if yyhl2764 { + if yyj2764 >= l { break } } else { @@ -35080,10 +35691,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2721Slc = r.DecodeBytes(yys2721Slc, true, true) - yys2721 := string(yys2721Slc) + yys2764Slc = r.DecodeBytes(yys2764Slc, true, true) + yys2764 := string(yys2764Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2721 { + switch yys2764 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -35105,8 +35716,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2725 := z.DecBinary() - _ = yym2725 + yym2768 := z.DecBinary() + _ = yym2768 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -35124,9 +35735,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2721) - } // end switch yys2721 - } // end for yyj2721 + z.DecStructFieldNotFound(-1, yys2764) + } // end switch yys2764 + } // end for yyj2764 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35134,16 +35745,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2727 int - var yyb2727 bool - var yyhl2727 bool = l >= 0 - yyj2727++ - if yyhl2727 { - yyb2727 = yyj2727 > l + var yyj2770 int + var yyb2770 bool + var yyhl2770 bool = l >= 0 + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2727 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2727 { + if yyb2770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35153,13 +35764,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2727++ - if yyhl2727 { - yyb2727 = yyj2727 > l + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2727 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2727 { + if yyb2770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35169,13 +35780,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2727++ - if yyhl2727 { - yyb2727 = yyj2727 > l + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2727 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2727 { + if yyb2770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35188,20 +35799,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2731 := z.DecBinary() - _ = yym2731 + yym2774 := z.DecBinary() + _ = yym2774 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2727++ - if yyhl2727 { - yyb2727 = yyj2727 > l + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2727 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2727 { + if yyb2770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35217,17 +35828,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2727++ - if yyhl2727 { - yyb2727 = yyj2727 > l + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2727 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2727 { + if yyb2770 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2727-1, "") + z.DecStructFieldNotFound(yyj2770-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35239,33 +35850,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2733 := z.EncBinary() - _ = yym2733 + yym2776 := z.EncBinary() + _ = yym2776 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2734 := !z.EncBinary() - yy2arr2734 := z.EncBasicHandle().StructToArray - var yyq2734 [3]bool - _, _, _ = yysep2734, yyq2734, yy2arr2734 - const yyr2734 bool = false - var yynn2734 int - if yyr2734 || yy2arr2734 { + yysep2777 := !z.EncBinary() + yy2arr2777 := z.EncBasicHandle().StructToArray + var yyq2777 [3]bool + _, _, _ = yysep2777, yyq2777, yy2arr2777 + const yyr2777 bool = false + var yynn2777 int + if yyr2777 || yy2arr2777 { r.EncodeArrayStart(3) } else { - yynn2734 = 3 - for _, b := range yyq2734 { + yynn2777 = 3 + for _, b := range yyq2777 { if b { - yynn2734++ + yynn2777++ } } - r.EncodeMapStart(yynn2734) - yynn2734 = 0 + r.EncodeMapStart(yynn2777) + yynn2777 = 0 } - if yyr2734 || yy2arr2734 { + if yyr2777 || yy2arr2777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2736 := z.EncBinary() - _ = yym2736 + yym2779 := z.EncBinary() + _ = yym2779 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -35274,17 +35885,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2737 := z.EncBinary() - _ = yym2737 + yym2780 := z.EncBinary() + _ = yym2780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2734 || yy2arr2734 { + if yyr2777 || yy2arr2777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2739 := z.EncBinary() - _ = yym2739 + yym2782 := z.EncBinary() + _ = yym2782 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35293,14 +35904,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2740 := z.EncBinary() - _ = yym2740 + yym2783 := z.EncBinary() + _ = yym2783 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2734 || yy2arr2734 { + if yyr2777 || yy2arr2777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -35309,7 +35920,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2734 || yy2arr2734 { + if yyr2777 || yy2arr2777 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35322,25 +35933,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2742 := z.DecBinary() - _ = yym2742 + yym2785 := z.DecBinary() + _ = yym2785 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2743 := r.ContainerType() - if yyct2743 == codecSelferValueTypeMap1234 { - yyl2743 := r.ReadMapStart() - if yyl2743 == 0 { + yyct2786 := r.ContainerType() + if yyct2786 == codecSelferValueTypeMap1234 { + yyl2786 := r.ReadMapStart() + if yyl2786 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2743, d) + x.codecDecodeSelfFromMap(yyl2786, d) } - } else if yyct2743 == codecSelferValueTypeArray1234 { - yyl2743 := r.ReadArrayStart() - if yyl2743 == 0 { + } else if yyct2786 == codecSelferValueTypeArray1234 { + yyl2786 := r.ReadArrayStart() + if yyl2786 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2743, d) + x.codecDecodeSelfFromArray(yyl2786, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35352,12 +35963,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2744Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2744Slc - var yyhl2744 bool = l >= 0 - for yyj2744 := 0; ; yyj2744++ { - if yyhl2744 { - if yyj2744 >= l { + var yys2787Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2787Slc + var yyhl2787 bool = l >= 0 + for yyj2787 := 0; ; yyj2787++ { + if yyhl2787 { + if yyj2787 >= l { break } } else { @@ -35366,10 +35977,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2744Slc = r.DecodeBytes(yys2744Slc, true, true) - yys2744 := string(yys2744Slc) + yys2787Slc = r.DecodeBytes(yys2787Slc, true, true) + yys2787 := string(yys2787Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2744 { + switch yys2787 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -35389,9 +36000,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2744) - } // end switch yys2744 - } // end for yyj2744 + z.DecStructFieldNotFound(-1, yys2787) + } // end switch yys2787 + } // end for yyj2787 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35399,16 +36010,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2748 int - var yyb2748 bool - var yyhl2748 bool = l >= 0 - yyj2748++ - if yyhl2748 { - yyb2748 = yyj2748 > l + var yyj2791 int + var yyb2791 bool + var yyhl2791 bool = l >= 0 + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2748 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2748 { + if yyb2791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35418,13 +36029,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2748++ - if yyhl2748 { - yyb2748 = yyj2748 > l + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2748 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2748 { + if yyb2791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35434,13 +36045,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2748++ - if yyhl2748 { - yyb2748 = yyj2748 > l + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2748 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2748 { + if yyb2791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35451,17 +36062,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2748++ - if yyhl2748 { - yyb2748 = yyj2748 > l + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2748 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2748 { + if yyb2791 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2748-1, "") + z.DecStructFieldNotFound(yyj2791-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35473,37 +36084,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2752 := z.EncBinary() - _ = yym2752 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2753 := !z.EncBinary() - yy2arr2753 := z.EncBasicHandle().StructToArray - var yyq2753 [4]bool - _, _, _ = yysep2753, yyq2753, yy2arr2753 - const yyr2753 bool = false - yyq2753[0] = x.Kind != "" - yyq2753[1] = x.APIVersion != "" - yyq2753[2] = true - var yynn2753 int - if yyr2753 || yy2arr2753 { + yysep2796 := !z.EncBinary() + yy2arr2796 := z.EncBasicHandle().StructToArray + var yyq2796 [4]bool + _, _, _ = yysep2796, yyq2796, yy2arr2796 + const yyr2796 bool = false + yyq2796[0] = x.Kind != "" + yyq2796[1] = x.APIVersion != "" + yyq2796[2] = true + var yynn2796 int + if yyr2796 || yy2arr2796 { r.EncodeArrayStart(4) } else { - yynn2753 = 1 - for _, b := range yyq2753 { + yynn2796 = 1 + for _, b := range yyq2796 { if b { - yynn2753++ + yynn2796++ } } - r.EncodeMapStart(yynn2753) - yynn2753 = 0 + r.EncodeMapStart(yynn2796) + yynn2796 = 0 } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[0] { - yym2755 := z.EncBinary() - _ = yym2755 + if yyq2796[0] { + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35512,23 +36123,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2753[0] { + if yyq2796[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2756 := z.EncBinary() - _ = yym2756 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[1] { - yym2758 := z.EncBinary() - _ = yym2758 + if yyq2796[1] { + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35537,54 +36148,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2753[1] { + if yyq2796[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2759 := z.EncBinary() - _ = yym2759 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[2] { - yy2761 := &x.ListMeta - yym2762 := z.EncBinary() - _ = yym2762 + if yyq2796[2] { + yy2804 := &x.ListMeta + yym2805 := z.EncBinary() + _ = yym2805 if false { - } else if z.HasExtensions() && z.EncExt(yy2761) { + } else if z.HasExtensions() && z.EncExt(yy2804) { } else { - z.EncFallback(yy2761) + z.EncFallback(yy2804) } } else { r.EncodeNil() } } else { - if yyq2753[2] { + if yyq2796[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2763 := &x.ListMeta - yym2764 := z.EncBinary() - _ = yym2764 + yy2806 := &x.ListMeta + yym2807 := z.EncBinary() + _ = yym2807 if false { - } else if z.HasExtensions() && z.EncExt(yy2763) { + } else if z.HasExtensions() && z.EncExt(yy2806) { } else { - z.EncFallback(yy2763) + z.EncFallback(yy2806) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2766 := z.EncBinary() - _ = yym2766 + yym2809 := z.EncBinary() + _ = yym2809 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -35597,15 +36208,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2767 := z.EncBinary() - _ = yym2767 + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35618,25 +36229,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2768 := z.DecBinary() - _ = yym2768 + yym2811 := z.DecBinary() + _ = yym2811 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2769 := r.ContainerType() - if yyct2769 == codecSelferValueTypeMap1234 { - yyl2769 := r.ReadMapStart() - if yyl2769 == 0 { + yyct2812 := r.ContainerType() + if yyct2812 == codecSelferValueTypeMap1234 { + yyl2812 := r.ReadMapStart() + if yyl2812 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2769, d) + x.codecDecodeSelfFromMap(yyl2812, d) } - } else if yyct2769 == codecSelferValueTypeArray1234 { - yyl2769 := r.ReadArrayStart() - if yyl2769 == 0 { + } else if yyct2812 == codecSelferValueTypeArray1234 { + yyl2812 := r.ReadArrayStart() + if yyl2812 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2769, d) + x.codecDecodeSelfFromArray(yyl2812, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35648,12 +36259,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2770Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2770Slc - var yyhl2770 bool = l >= 0 - for yyj2770 := 0; ; yyj2770++ { - if yyhl2770 { - if yyj2770 >= 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 { @@ -35662,10 +36273,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2770Slc = r.DecodeBytes(yys2770Slc, true, true) - yys2770 := string(yys2770Slc) + yys2813Slc = r.DecodeBytes(yys2813Slc, true, true) + yys2813 := string(yys2813Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2770 { + switch yys2813 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35682,31 +36293,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2773 := &x.ListMeta - yym2774 := z.DecBinary() - _ = yym2774 + yyv2816 := &x.ListMeta + yym2817 := z.DecBinary() + _ = yym2817 if false { - } else if z.HasExtensions() && z.DecExt(yyv2773) { + } else if z.HasExtensions() && z.DecExt(yyv2816) { } else { - z.DecFallback(yyv2773, false) + z.DecFallback(yyv2816, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2775 := &x.Items - yym2776 := z.DecBinary() - _ = yym2776 + yyv2818 := &x.Items + yym2819 := z.DecBinary() + _ = yym2819 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2775), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2818), d) } } default: - z.DecStructFieldNotFound(-1, yys2770) - } // end switch yys2770 - } // end for yyj2770 + z.DecStructFieldNotFound(-1, yys2813) + } // end switch yys2813 + } // end for yyj2813 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35714,16 +36325,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2777 int - var yyb2777 bool - var yyhl2777 bool = l >= 0 - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + var yyj2820 int + var yyb2820 bool + var yyhl2820 bool = l >= 0 + yyj2820++ + if yyhl2820 { + yyb2820 = yyj2820 > l } else { - yyb2777 = r.CheckBreak() + yyb2820 = r.CheckBreak() } - if yyb2777 { + if yyb2820 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35733,13 +36344,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2820++ + if yyhl2820 { + yyb2820 = yyj2820 > l } else { - yyb2777 = r.CheckBreak() + yyb2820 = r.CheckBreak() } - if yyb2777 { + if yyb2820 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35749,13 +36360,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2820++ + if yyhl2820 { + yyb2820 = yyj2820 > l } else { - yyb2777 = r.CheckBreak() + yyb2820 = r.CheckBreak() } - if yyb2777 { + if yyb2820 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35763,22 +36374,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2780 := &x.ListMeta - yym2781 := z.DecBinary() - _ = yym2781 + yyv2823 := &x.ListMeta + yym2824 := z.DecBinary() + _ = yym2824 if false { - } else if z.HasExtensions() && z.DecExt(yyv2780) { + } else if z.HasExtensions() && z.DecExt(yyv2823) { } else { - z.DecFallback(yyv2780, false) + z.DecFallback(yyv2823, false) } } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2820++ + if yyhl2820 { + yyb2820 = yyj2820 > l } else { - yyb2777 = r.CheckBreak() + yyb2820 = r.CheckBreak() } - if yyb2777 { + if yyb2820 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35786,26 +36397,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2782 := &x.Items - yym2783 := z.DecBinary() - _ = yym2783 + yyv2825 := &x.Items + yym2826 := z.DecBinary() + _ = yym2826 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2782), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2825), d) } } for { - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2820++ + if yyhl2820 { + yyb2820 = yyj2820 > l } else { - yyb2777 = r.CheckBreak() + yyb2820 = r.CheckBreak() } - if yyb2777 { + if yyb2820 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2777-1, "") + z.DecStructFieldNotFound(yyj2820-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35817,38 +36428,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2784 := z.EncBinary() - _ = yym2784 + yym2827 := z.EncBinary() + _ = yym2827 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2785 := !z.EncBinary() - yy2arr2785 := z.EncBasicHandle().StructToArray - var yyq2785 [4]bool - _, _, _ = yysep2785, yyq2785, yy2arr2785 - const yyr2785 bool = false - yyq2785[0] = x.PodCIDR != "" - yyq2785[1] = x.ExternalID != "" - yyq2785[2] = x.ProviderID != "" - yyq2785[3] = x.Unschedulable != false - var yynn2785 int - if yyr2785 || yy2arr2785 { + yysep2828 := !z.EncBinary() + yy2arr2828 := z.EncBasicHandle().StructToArray + var yyq2828 [4]bool + _, _, _ = yysep2828, yyq2828, yy2arr2828 + const yyr2828 bool = false + yyq2828[0] = x.PodCIDR != "" + yyq2828[1] = x.ExternalID != "" + yyq2828[2] = x.ProviderID != "" + yyq2828[3] = x.Unschedulable != false + var yynn2828 int + if yyr2828 || yy2arr2828 { r.EncodeArrayStart(4) } else { - yynn2785 = 0 - for _, b := range yyq2785 { + yynn2828 = 0 + for _, b := range yyq2828 { if b { - yynn2785++ + yynn2828++ } } - r.EncodeMapStart(yynn2785) - yynn2785 = 0 + r.EncodeMapStart(yynn2828) + yynn2828 = 0 } - if yyr2785 || yy2arr2785 { + if yyr2828 || yy2arr2828 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2785[0] { - yym2787 := z.EncBinary() - _ = yym2787 + if yyq2828[0] { + yym2830 := z.EncBinary() + _ = yym2830 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -35857,23 +36468,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2785[0] { + if yyq2828[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2788 := z.EncBinary() - _ = yym2788 + yym2831 := z.EncBinary() + _ = yym2831 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2785 || yy2arr2785 { + if yyr2828 || yy2arr2828 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2785[1] { - yym2790 := z.EncBinary() - _ = yym2790 + if yyq2828[1] { + yym2833 := z.EncBinary() + _ = yym2833 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -35882,23 +36493,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2785[1] { + if yyq2828[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2791 := z.EncBinary() - _ = yym2791 + yym2834 := z.EncBinary() + _ = yym2834 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2785 || yy2arr2785 { + if yyr2828 || yy2arr2828 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2785[2] { - yym2793 := z.EncBinary() - _ = yym2793 + if yyq2828[2] { + yym2836 := z.EncBinary() + _ = yym2836 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -35907,23 +36518,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2785[2] { + if yyq2828[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2794 := z.EncBinary() - _ = yym2794 + yym2837 := z.EncBinary() + _ = yym2837 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2785 || yy2arr2785 { + if yyr2828 || yy2arr2828 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2785[3] { - yym2796 := z.EncBinary() - _ = yym2796 + if yyq2828[3] { + yym2839 := z.EncBinary() + _ = yym2839 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -35932,19 +36543,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2785[3] { + if yyq2828[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2797 := z.EncBinary() - _ = yym2797 + yym2840 := z.EncBinary() + _ = yym2840 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2785 || yy2arr2785 { + if yyr2828 || yy2arr2828 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35957,25 +36568,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2798 := z.DecBinary() - _ = yym2798 + yym2841 := z.DecBinary() + _ = yym2841 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2799 := r.ContainerType() - if yyct2799 == codecSelferValueTypeMap1234 { - yyl2799 := r.ReadMapStart() - if yyl2799 == 0 { + yyct2842 := r.ContainerType() + if yyct2842 == codecSelferValueTypeMap1234 { + yyl2842 := r.ReadMapStart() + if yyl2842 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2799, d) + x.codecDecodeSelfFromMap(yyl2842, d) } - } else if yyct2799 == codecSelferValueTypeArray1234 { - yyl2799 := r.ReadArrayStart() - if yyl2799 == 0 { + } else if yyct2842 == codecSelferValueTypeArray1234 { + yyl2842 := r.ReadArrayStart() + if yyl2842 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2799, d) + x.codecDecodeSelfFromArray(yyl2842, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35987,12 +36598,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2800Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2800Slc - var yyhl2800 bool = l >= 0 - for yyj2800 := 0; ; yyj2800++ { - if yyhl2800 { - if yyj2800 >= l { + var yys2843Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2843Slc + var yyhl2843 bool = l >= 0 + for yyj2843 := 0; ; yyj2843++ { + if yyhl2843 { + if yyj2843 >= l { break } } else { @@ -36001,10 +36612,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2800Slc = r.DecodeBytes(yys2800Slc, true, true) - yys2800 := string(yys2800Slc) + yys2843Slc = r.DecodeBytes(yys2843Slc, true, true) + yys2843 := string(yys2843Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2800 { + switch yys2843 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -36030,9 +36641,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2800) - } // end switch yys2800 - } // end for yyj2800 + z.DecStructFieldNotFound(-1, yys2843) + } // end switch yys2843 + } // end for yyj2843 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36040,16 +36651,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2805 int - var yyb2805 bool - var yyhl2805 bool = l >= 0 - yyj2805++ - if yyhl2805 { - yyb2805 = yyj2805 > l + var yyj2848 int + var yyb2848 bool + var yyhl2848 bool = l >= 0 + yyj2848++ + if yyhl2848 { + yyb2848 = yyj2848 > l } else { - yyb2805 = r.CheckBreak() + yyb2848 = r.CheckBreak() } - if yyb2805 { + if yyb2848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36059,13 +36670,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2805++ - if yyhl2805 { - yyb2805 = yyj2805 > l + yyj2848++ + if yyhl2848 { + yyb2848 = yyj2848 > l } else { - yyb2805 = r.CheckBreak() + yyb2848 = r.CheckBreak() } - if yyb2805 { + if yyb2848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36075,13 +36686,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2805++ - if yyhl2805 { - yyb2805 = yyj2805 > l + yyj2848++ + if yyhl2848 { + yyb2848 = yyj2848 > l } else { - yyb2805 = r.CheckBreak() + yyb2848 = r.CheckBreak() } - if yyb2805 { + if yyb2848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36091,13 +36702,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2805++ - if yyhl2805 { - yyb2805 = yyj2805 > l + yyj2848++ + if yyhl2848 { + yyb2848 = yyj2848 > l } else { - yyb2805 = r.CheckBreak() + yyb2848 = r.CheckBreak() } - if yyb2805 { + if yyb2848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36108,17 +36719,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2805++ - if yyhl2805 { - yyb2805 = yyj2805 > l + yyj2848++ + if yyhl2848 { + yyb2848 = yyj2848 > l } else { - yyb2805 = r.CheckBreak() + yyb2848 = r.CheckBreak() } - if yyb2805 { + if yyb2848 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2805-1, "") + z.DecStructFieldNotFound(yyj2848-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36130,33 +36741,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2810 := z.EncBinary() - _ = yym2810 + yym2853 := z.EncBinary() + _ = yym2853 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2811 := !z.EncBinary() - yy2arr2811 := z.EncBasicHandle().StructToArray - var yyq2811 [1]bool - _, _, _ = yysep2811, yyq2811, yy2arr2811 - const yyr2811 bool = false - var yynn2811 int - if yyr2811 || yy2arr2811 { + yysep2854 := !z.EncBinary() + yy2arr2854 := z.EncBasicHandle().StructToArray + var yyq2854 [1]bool + _, _, _ = yysep2854, yyq2854, yy2arr2854 + const yyr2854 bool = false + var yynn2854 int + if yyr2854 || yy2arr2854 { r.EncodeArrayStart(1) } else { - yynn2811 = 1 - for _, b := range yyq2811 { + yynn2854 = 1 + for _, b := range yyq2854 { if b { - yynn2811++ + yynn2854++ } } - r.EncodeMapStart(yynn2811) - yynn2811 = 0 + r.EncodeMapStart(yynn2854) + yynn2854 = 0 } - if yyr2811 || yy2arr2811 { + if yyr2854 || yy2arr2854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2813 := z.EncBinary() - _ = yym2813 + yym2856 := z.EncBinary() + _ = yym2856 if false { } else { r.EncodeInt(int64(x.Port)) @@ -36165,14 +36776,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2814 := z.EncBinary() - _ = yym2814 + yym2857 := z.EncBinary() + _ = yym2857 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2811 || yy2arr2811 { + if yyr2854 || yy2arr2854 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36185,25 +36796,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2815 := z.DecBinary() - _ = yym2815 + yym2858 := z.DecBinary() + _ = yym2858 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2816 := r.ContainerType() - if yyct2816 == codecSelferValueTypeMap1234 { - yyl2816 := r.ReadMapStart() - if yyl2816 == 0 { + yyct2859 := r.ContainerType() + if yyct2859 == codecSelferValueTypeMap1234 { + yyl2859 := r.ReadMapStart() + if yyl2859 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2816, d) + x.codecDecodeSelfFromMap(yyl2859, d) } - } else if yyct2816 == codecSelferValueTypeArray1234 { - yyl2816 := r.ReadArrayStart() - if yyl2816 == 0 { + } else if yyct2859 == codecSelferValueTypeArray1234 { + yyl2859 := r.ReadArrayStart() + if yyl2859 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2816, d) + x.codecDecodeSelfFromArray(yyl2859, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36215,12 +36826,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2817Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2817Slc - var yyhl2817 bool = l >= 0 - for yyj2817 := 0; ; yyj2817++ { - if yyhl2817 { - if yyj2817 >= l { + var yys2860Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2860Slc + var yyhl2860 bool = l >= 0 + for yyj2860 := 0; ; yyj2860++ { + if yyhl2860 { + if yyj2860 >= l { break } } else { @@ -36229,10 +36840,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2817Slc = r.DecodeBytes(yys2817Slc, true, true) - yys2817 := string(yys2817Slc) + yys2860Slc = r.DecodeBytes(yys2860Slc, true, true) + yys2860 := string(yys2860Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2817 { + switch yys2860 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -36240,9 +36851,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2817) - } // end switch yys2817 - } // end for yyj2817 + z.DecStructFieldNotFound(-1, yys2860) + } // end switch yys2860 + } // end for yyj2860 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36250,16 +36861,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2819 int - var yyb2819 bool - var yyhl2819 bool = l >= 0 - yyj2819++ - if yyhl2819 { - yyb2819 = yyj2819 > l + var yyj2862 int + var yyb2862 bool + var yyhl2862 bool = l >= 0 + yyj2862++ + if yyhl2862 { + yyb2862 = yyj2862 > l } else { - yyb2819 = r.CheckBreak() + yyb2862 = r.CheckBreak() } - if yyb2819 { + if yyb2862 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36270,17 +36881,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2819++ - if yyhl2819 { - yyb2819 = yyj2819 > l + yyj2862++ + if yyhl2862 { + yyb2862 = yyj2862 > l } else { - yyb2819 = r.CheckBreak() + yyb2862 = r.CheckBreak() } - if yyb2819 { + if yyb2862 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2819-1, "") + z.DecStructFieldNotFound(yyj2862-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36292,48 +36903,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2821 := z.EncBinary() - _ = yym2821 + yym2864 := z.EncBinary() + _ = yym2864 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2822 := !z.EncBinary() - yy2arr2822 := z.EncBasicHandle().StructToArray - var yyq2822 [1]bool - _, _, _ = yysep2822, yyq2822, yy2arr2822 - const yyr2822 bool = false - yyq2822[0] = true - var yynn2822 int - if yyr2822 || yy2arr2822 { + yysep2865 := !z.EncBinary() + yy2arr2865 := z.EncBasicHandle().StructToArray + var yyq2865 [1]bool + _, _, _ = yysep2865, yyq2865, yy2arr2865 + const yyr2865 bool = false + yyq2865[0] = true + var yynn2865 int + if yyr2865 || yy2arr2865 { r.EncodeArrayStart(1) } else { - yynn2822 = 0 - for _, b := range yyq2822 { + yynn2865 = 0 + for _, b := range yyq2865 { if b { - yynn2822++ + yynn2865++ } } - r.EncodeMapStart(yynn2822) - yynn2822 = 0 + r.EncodeMapStart(yynn2865) + yynn2865 = 0 } - if yyr2822 || yy2arr2822 { + if yyr2865 || yy2arr2865 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2822[0] { - yy2824 := &x.KubeletEndpoint - yy2824.CodecEncodeSelf(e) + if yyq2865[0] { + yy2867 := &x.KubeletEndpoint + yy2867.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2822[0] { + if yyq2865[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2825 := &x.KubeletEndpoint - yy2825.CodecEncodeSelf(e) + yy2868 := &x.KubeletEndpoint + yy2868.CodecEncodeSelf(e) } } - if yyr2822 || yy2arr2822 { + if yyr2865 || yy2arr2865 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36346,25 +36957,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2826 := z.DecBinary() - _ = yym2826 + yym2869 := z.DecBinary() + _ = yym2869 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2827 := r.ContainerType() - if yyct2827 == codecSelferValueTypeMap1234 { - yyl2827 := r.ReadMapStart() - if yyl2827 == 0 { + yyct2870 := r.ContainerType() + if yyct2870 == codecSelferValueTypeMap1234 { + yyl2870 := r.ReadMapStart() + if yyl2870 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2827, d) + x.codecDecodeSelfFromMap(yyl2870, d) } - } else if yyct2827 == codecSelferValueTypeArray1234 { - yyl2827 := r.ReadArrayStart() - if yyl2827 == 0 { + } else if yyct2870 == codecSelferValueTypeArray1234 { + yyl2870 := r.ReadArrayStart() + if yyl2870 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2827, d) + x.codecDecodeSelfFromArray(yyl2870, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36376,12 +36987,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2828Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2828Slc - var yyhl2828 bool = l >= 0 - for yyj2828 := 0; ; yyj2828++ { - if yyhl2828 { - if yyj2828 >= l { + var yys2871Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2871Slc + var yyhl2871 bool = l >= 0 + for yyj2871 := 0; ; yyj2871++ { + if yyhl2871 { + if yyj2871 >= l { break } } else { @@ -36390,21 +37001,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2828Slc = r.DecodeBytes(yys2828Slc, true, true) - yys2828 := string(yys2828Slc) + yys2871Slc = r.DecodeBytes(yys2871Slc, true, true) + yys2871 := string(yys2871Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2828 { + switch yys2871 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2829 := &x.KubeletEndpoint - yyv2829.CodecDecodeSelf(d) + yyv2872 := &x.KubeletEndpoint + yyv2872.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2828) - } // end switch yys2828 - } // end for yyj2828 + z.DecStructFieldNotFound(-1, yys2871) + } // end switch yys2871 + } // end for yyj2871 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36412,16 +37023,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2830 int - var yyb2830 bool - var yyhl2830 bool = l >= 0 - yyj2830++ - if yyhl2830 { - yyb2830 = yyj2830 > l + var yyj2873 int + var yyb2873 bool + var yyhl2873 bool = l >= 0 + yyj2873++ + if yyhl2873 { + yyb2873 = yyj2873 > l } else { - yyb2830 = r.CheckBreak() + yyb2873 = r.CheckBreak() } - if yyb2830 { + if yyb2873 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36429,21 +37040,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2831 := &x.KubeletEndpoint - yyv2831.CodecDecodeSelf(d) + yyv2874 := &x.KubeletEndpoint + yyv2874.CodecDecodeSelf(d) } for { - yyj2830++ - if yyhl2830 { - yyb2830 = yyj2830 > l + yyj2873++ + if yyhl2873 { + yyb2873 = yyj2873 > l } else { - yyb2830 = r.CheckBreak() + yyb2873 = r.CheckBreak() } - if yyb2830 { + if yyb2873 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2830-1, "") + z.DecStructFieldNotFound(yyj2873-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36455,33 +37066,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2832 := z.EncBinary() - _ = yym2832 + yym2875 := z.EncBinary() + _ = yym2875 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2833 := !z.EncBinary() - yy2arr2833 := z.EncBasicHandle().StructToArray - var yyq2833 [10]bool - _, _, _ = yysep2833, yyq2833, yy2arr2833 - const yyr2833 bool = false - var yynn2833 int - if yyr2833 || yy2arr2833 { + yysep2876 := !z.EncBinary() + yy2arr2876 := z.EncBasicHandle().StructToArray + var yyq2876 [10]bool + _, _, _ = yysep2876, yyq2876, yy2arr2876 + const yyr2876 bool = false + var yynn2876 int + if yyr2876 || yy2arr2876 { r.EncodeArrayStart(10) } else { - yynn2833 = 10 - for _, b := range yyq2833 { + yynn2876 = 10 + for _, b := range yyq2876 { if b { - yynn2833++ + yynn2876++ } } - r.EncodeMapStart(yynn2833) - yynn2833 = 0 + r.EncodeMapStart(yynn2876) + yynn2876 = 0 } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2835 := z.EncBinary() - _ = yym2835 + yym2878 := z.EncBinary() + _ = yym2878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -36490,17 +37101,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2836 := z.EncBinary() - _ = yym2836 + yym2879 := z.EncBinary() + _ = yym2879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2838 := z.EncBinary() - _ = yym2838 + yym2881 := z.EncBinary() + _ = yym2881 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -36509,17 +37120,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2839 := z.EncBinary() - _ = yym2839 + yym2882 := z.EncBinary() + _ = yym2882 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2841 := z.EncBinary() - _ = yym2841 + yym2884 := z.EncBinary() + _ = yym2884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -36528,17 +37139,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2842 := z.EncBinary() - _ = yym2842 + yym2885 := z.EncBinary() + _ = yym2885 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2844 := z.EncBinary() - _ = yym2844 + yym2887 := z.EncBinary() + _ = yym2887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -36547,17 +37158,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2845 := z.EncBinary() - _ = yym2845 + yym2888 := z.EncBinary() + _ = yym2888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2847 := z.EncBinary() - _ = yym2847 + yym2890 := z.EncBinary() + _ = yym2890 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -36566,17 +37177,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2848 := z.EncBinary() - _ = yym2848 + yym2891 := z.EncBinary() + _ = yym2891 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2850 := z.EncBinary() - _ = yym2850 + yym2893 := z.EncBinary() + _ = yym2893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36585,17 +37196,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2851 := z.EncBinary() - _ = yym2851 + yym2894 := z.EncBinary() + _ = yym2894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2853 := z.EncBinary() - _ = yym2853 + yym2896 := z.EncBinary() + _ = yym2896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -36604,17 +37215,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2854 := z.EncBinary() - _ = yym2854 + yym2897 := z.EncBinary() + _ = yym2897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2856 := z.EncBinary() - _ = yym2856 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -36623,17 +37234,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2857 := z.EncBinary() - _ = yym2857 + yym2900 := z.EncBinary() + _ = yym2900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2859 := z.EncBinary() - _ = yym2859 + yym2902 := z.EncBinary() + _ = yym2902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -36642,17 +37253,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2860 := z.EncBinary() - _ = yym2860 + yym2903 := z.EncBinary() + _ = yym2903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2862 := z.EncBinary() - _ = yym2862 + yym2905 := z.EncBinary() + _ = yym2905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -36661,14 +37272,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2863 := z.EncBinary() - _ = yym2863 + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2833 || yy2arr2833 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36681,25 +37292,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2864 := z.DecBinary() - _ = yym2864 + yym2907 := z.DecBinary() + _ = yym2907 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2865 := r.ContainerType() - if yyct2865 == codecSelferValueTypeMap1234 { - yyl2865 := r.ReadMapStart() - if yyl2865 == 0 { + yyct2908 := r.ContainerType() + if yyct2908 == codecSelferValueTypeMap1234 { + yyl2908 := r.ReadMapStart() + if yyl2908 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2865, d) + x.codecDecodeSelfFromMap(yyl2908, d) } - } else if yyct2865 == codecSelferValueTypeArray1234 { - yyl2865 := r.ReadArrayStart() - if yyl2865 == 0 { + } else if yyct2908 == codecSelferValueTypeArray1234 { + yyl2908 := r.ReadArrayStart() + if yyl2908 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2865, d) + x.codecDecodeSelfFromArray(yyl2908, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36711,12 +37322,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2866Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2866Slc - var yyhl2866 bool = l >= 0 - for yyj2866 := 0; ; yyj2866++ { - if yyhl2866 { - if yyj2866 >= l { + var yys2909Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2909Slc + var yyhl2909 bool = l >= 0 + for yyj2909 := 0; ; yyj2909++ { + if yyhl2909 { + if yyj2909 >= l { break } } else { @@ -36725,10 +37336,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2866Slc = r.DecodeBytes(yys2866Slc, true, true) - yys2866 := string(yys2866Slc) + yys2909Slc = r.DecodeBytes(yys2909Slc, true, true) + yys2909 := string(yys2909Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2866 { + switch yys2909 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -36790,9 +37401,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2866) - } // end switch yys2866 - } // end for yyj2866 + z.DecStructFieldNotFound(-1, yys2909) + } // end switch yys2909 + } // end for yyj2909 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36800,16 +37411,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2877 int - var yyb2877 bool - var yyhl2877 bool = l >= 0 - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + var yyj2920 int + var yyb2920 bool + var yyhl2920 bool = l >= 0 + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36819,13 +37430,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36835,13 +37446,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36851,13 +37462,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36867,13 +37478,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36883,13 +37494,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36899,13 +37510,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36915,13 +37526,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36931,13 +37542,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36947,13 +37558,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36964,17 +37575,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2877 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2877 { + if yyb2920 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2877-1, "") + z.DecStructFieldNotFound(yyj2920-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36986,42 +37597,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2888 := z.EncBinary() - _ = yym2888 + yym2931 := z.EncBinary() + _ = yym2931 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2889 := !z.EncBinary() - yy2arr2889 := z.EncBasicHandle().StructToArray - var yyq2889 [10]bool - _, _, _ = yysep2889, yyq2889, yy2arr2889 - const yyr2889 bool = false - yyq2889[0] = len(x.Capacity) != 0 - yyq2889[1] = len(x.Allocatable) != 0 - yyq2889[2] = x.Phase != "" - yyq2889[3] = len(x.Conditions) != 0 - yyq2889[4] = len(x.Addresses) != 0 - yyq2889[5] = true - yyq2889[6] = true - yyq2889[7] = len(x.Images) != 0 - yyq2889[8] = len(x.VolumesInUse) != 0 - yyq2889[9] = len(x.VolumesAttached) != 0 - var yynn2889 int - if yyr2889 || yy2arr2889 { + yysep2932 := !z.EncBinary() + yy2arr2932 := z.EncBasicHandle().StructToArray + var yyq2932 [10]bool + _, _, _ = yysep2932, yyq2932, yy2arr2932 + const yyr2932 bool = false + yyq2932[0] = len(x.Capacity) != 0 + yyq2932[1] = len(x.Allocatable) != 0 + yyq2932[2] = x.Phase != "" + yyq2932[3] = len(x.Conditions) != 0 + yyq2932[4] = len(x.Addresses) != 0 + yyq2932[5] = true + yyq2932[6] = true + yyq2932[7] = len(x.Images) != 0 + yyq2932[8] = len(x.VolumesInUse) != 0 + yyq2932[9] = len(x.VolumesAttached) != 0 + var yynn2932 int + if yyr2932 || yy2arr2932 { r.EncodeArrayStart(10) } else { - yynn2889 = 0 - for _, b := range yyq2889 { + yynn2932 = 0 + for _, b := range yyq2932 { if b { - yynn2889++ + yynn2932++ } } - r.EncodeMapStart(yynn2889) - yynn2889 = 0 + r.EncodeMapStart(yynn2932) + yynn2932 = 0 } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[0] { + if yyq2932[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -37031,7 +37642,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[0] { + if yyq2932[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37042,9 +37653,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[1] { + if yyq2932[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -37054,7 +37665,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[1] { + if yyq2932[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37065,29 +37676,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[2] { + if yyq2932[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2889[2] { + if yyq2932[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[3] { + if yyq2932[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2894 := z.EncBinary() - _ = yym2894 + yym2937 := z.EncBinary() + _ = yym2937 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37097,15 +37708,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[3] { + if yyq2932[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2895 := z.EncBinary() - _ = yym2895 + yym2938 := z.EncBinary() + _ = yym2938 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37113,14 +37724,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[4] { + if yyq2932[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2897 := z.EncBinary() - _ = yym2897 + yym2940 := z.EncBinary() + _ = yym2940 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37130,15 +37741,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[4] { + if yyq2932[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2898 := z.EncBinary() - _ = yym2898 + yym2941 := z.EncBinary() + _ = yym2941 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37146,48 +37757,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[5] { - yy2900 := &x.DaemonEndpoints - yy2900.CodecEncodeSelf(e) + if yyq2932[5] { + yy2943 := &x.DaemonEndpoints + yy2943.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2889[5] { + if yyq2932[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2901 := &x.DaemonEndpoints - yy2901.CodecEncodeSelf(e) + yy2944 := &x.DaemonEndpoints + yy2944.CodecEncodeSelf(e) } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[6] { - yy2903 := &x.NodeInfo - yy2903.CodecEncodeSelf(e) + if yyq2932[6] { + yy2946 := &x.NodeInfo + yy2946.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2889[6] { + if yyq2932[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2904 := &x.NodeInfo - yy2904.CodecEncodeSelf(e) + yy2947 := &x.NodeInfo + yy2947.CodecEncodeSelf(e) } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[7] { + if yyq2932[7] { if x.Images == nil { r.EncodeNil() } else { - yym2906 := z.EncBinary() - _ = yym2906 + yym2949 := z.EncBinary() + _ = yym2949 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37197,15 +37808,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[7] { + if yyq2932[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2907 := z.EncBinary() - _ = yym2907 + yym2950 := z.EncBinary() + _ = yym2950 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37213,14 +37824,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[8] { + if yyq2932[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2909 := z.EncBinary() - _ = yym2909 + yym2952 := z.EncBinary() + _ = yym2952 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37230,15 +37841,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[8] { + if yyq2932[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2910 := z.EncBinary() - _ = yym2910 + yym2953 := z.EncBinary() + _ = yym2953 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37246,14 +37857,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2889[9] { + if yyq2932[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2912 := z.EncBinary() - _ = yym2912 + yym2955 := z.EncBinary() + _ = yym2955 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37263,15 +37874,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2889[9] { + if yyq2932[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2913 := z.EncBinary() - _ = yym2913 + yym2956 := z.EncBinary() + _ = yym2956 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37279,7 +37890,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2889 || yy2arr2889 { + if yyr2932 || yy2arr2932 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37292,25 +37903,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2914 := z.DecBinary() - _ = yym2914 + yym2957 := z.DecBinary() + _ = yym2957 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2915 := r.ContainerType() - if yyct2915 == codecSelferValueTypeMap1234 { - yyl2915 := r.ReadMapStart() - if yyl2915 == 0 { + yyct2958 := r.ContainerType() + if yyct2958 == codecSelferValueTypeMap1234 { + yyl2958 := r.ReadMapStart() + if yyl2958 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2915, d) + x.codecDecodeSelfFromMap(yyl2958, d) } - } else if yyct2915 == codecSelferValueTypeArray1234 { - yyl2915 := r.ReadArrayStart() - if yyl2915 == 0 { + } else if yyct2958 == codecSelferValueTypeArray1234 { + yyl2958 := r.ReadArrayStart() + if yyl2958 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2915, d) + x.codecDecodeSelfFromArray(yyl2958, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37322,12 +37933,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2916Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2916Slc - var yyhl2916 bool = l >= 0 - for yyj2916 := 0; ; yyj2916++ { - if yyhl2916 { - if yyj2916 >= l { + var yys2959Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2959Slc + var yyhl2959 bool = l >= 0 + for yyj2959 := 0; ; yyj2959++ { + if yyhl2959 { + if yyj2959 >= l { break } } else { @@ -37336,23 +37947,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2916Slc = r.DecodeBytes(yys2916Slc, true, true) - yys2916 := string(yys2916Slc) + yys2959Slc = r.DecodeBytes(yys2959Slc, true, true) + yys2959 := string(yys2959Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2916 { + switch yys2959 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2917 := &x.Capacity - yyv2917.CodecDecodeSelf(d) + yyv2960 := &x.Capacity + yyv2960.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2918 := &x.Allocatable - yyv2918.CodecDecodeSelf(d) + yyv2961 := &x.Allocatable + yyv2961.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -37364,80 +37975,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2920 := &x.Conditions - yym2921 := z.DecBinary() - _ = yym2921 + yyv2963 := &x.Conditions + yym2964 := z.DecBinary() + _ = yym2964 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2920), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2963), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2922 := &x.Addresses - yym2923 := z.DecBinary() - _ = yym2923 + yyv2965 := &x.Addresses + yym2966 := z.DecBinary() + _ = yym2966 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2922), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2965), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2924 := &x.DaemonEndpoints - yyv2924.CodecDecodeSelf(d) + yyv2967 := &x.DaemonEndpoints + yyv2967.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2925 := &x.NodeInfo - yyv2925.CodecDecodeSelf(d) + yyv2968 := &x.NodeInfo + yyv2968.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2926 := &x.Images - yym2927 := z.DecBinary() - _ = yym2927 + yyv2969 := &x.Images + yym2970 := z.DecBinary() + _ = yym2970 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2926), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2969), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2928 := &x.VolumesInUse - yym2929 := z.DecBinary() - _ = yym2929 + yyv2971 := &x.VolumesInUse + yym2972 := z.DecBinary() + _ = yym2972 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2928), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2971), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2930 := &x.VolumesAttached - yym2931 := z.DecBinary() - _ = yym2931 + yyv2973 := &x.VolumesAttached + yym2974 := z.DecBinary() + _ = yym2974 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2930), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2973), d) } } default: - z.DecStructFieldNotFound(-1, yys2916) - } // end switch yys2916 - } // end for yyj2916 + z.DecStructFieldNotFound(-1, yys2959) + } // end switch yys2959 + } // end for yyj2959 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37445,16 +38056,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2932 int - var yyb2932 bool - var yyhl2932 bool = l >= 0 - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + var yyj2975 int + var yyb2975 bool + var yyhl2975 bool = l >= 0 + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37462,16 +38073,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2933 := &x.Capacity - yyv2933.CodecDecodeSelf(d) + yyv2976 := &x.Capacity + yyv2976.CodecDecodeSelf(d) } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37479,16 +38090,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2934 := &x.Allocatable - yyv2934.CodecDecodeSelf(d) + yyv2977 := &x.Allocatable + yyv2977.CodecDecodeSelf(d) } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37498,13 +38109,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37512,21 +38123,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2936 := &x.Conditions - yym2937 := z.DecBinary() - _ = yym2937 + yyv2979 := &x.Conditions + yym2980 := z.DecBinary() + _ = yym2980 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2936), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2979), d) } } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37534,21 +38145,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2938 := &x.Addresses - yym2939 := z.DecBinary() - _ = yym2939 + yyv2981 := &x.Addresses + yym2982 := z.DecBinary() + _ = yym2982 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2938), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2981), d) } } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37556,16 +38167,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2940 := &x.DaemonEndpoints - yyv2940.CodecDecodeSelf(d) + yyv2983 := &x.DaemonEndpoints + yyv2983.CodecDecodeSelf(d) } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37573,16 +38184,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2941 := &x.NodeInfo - yyv2941.CodecDecodeSelf(d) + yyv2984 := &x.NodeInfo + yyv2984.CodecDecodeSelf(d) } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37590,21 +38201,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2942 := &x.Images - yym2943 := z.DecBinary() - _ = yym2943 + yyv2985 := &x.Images + yym2986 := z.DecBinary() + _ = yym2986 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2942), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2985), d) } } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37612,21 +38223,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2944 := &x.VolumesInUse - yym2945 := z.DecBinary() - _ = yym2945 + yyv2987 := &x.VolumesInUse + yym2988 := z.DecBinary() + _ = yym2988 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2944), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2987), d) } } - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37634,26 +38245,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2946 := &x.VolumesAttached - yym2947 := z.DecBinary() - _ = yym2947 + yyv2989 := &x.VolumesAttached + yym2990 := z.DecBinary() + _ = yym2990 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2946), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2989), d) } } for { - yyj2932++ - if yyhl2932 { - yyb2932 = yyj2932 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2932 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2932 { + if yyb2975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2932-1, "") + z.DecStructFieldNotFound(yyj2975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37662,8 +38273,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2948 := z.EncBinary() - _ = yym2948 + yym2991 := z.EncBinary() + _ = yym2991 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37675,8 +38286,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2949 := z.DecBinary() - _ = yym2949 + yym2992 := z.DecBinary() + _ = yym2992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37691,30 +38302,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2950 := z.EncBinary() - _ = yym2950 + yym2993 := z.EncBinary() + _ = yym2993 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2951 := !z.EncBinary() - yy2arr2951 := z.EncBasicHandle().StructToArray - var yyq2951 [2]bool - _, _, _ = yysep2951, yyq2951, yy2arr2951 - const yyr2951 bool = false - var yynn2951 int - if yyr2951 || yy2arr2951 { + yysep2994 := !z.EncBinary() + yy2arr2994 := z.EncBasicHandle().StructToArray + var yyq2994 [2]bool + _, _, _ = yysep2994, yyq2994, yy2arr2994 + const yyr2994 bool = false + var yynn2994 int + if yyr2994 || yy2arr2994 { r.EncodeArrayStart(2) } else { - yynn2951 = 2 - for _, b := range yyq2951 { + yynn2994 = 2 + for _, b := range yyq2994 { if b { - yynn2951++ + yynn2994++ } } - r.EncodeMapStart(yynn2951) - yynn2951 = 0 + r.EncodeMapStart(yynn2994) + yynn2994 = 0 } - if yyr2951 || yy2arr2951 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37723,10 +38334,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2951 || yy2arr2951 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2954 := z.EncBinary() - _ = yym2954 + yym2997 := z.EncBinary() + _ = yym2997 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37735,14 +38346,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2955 := z.EncBinary() - _ = yym2955 + yym2998 := z.EncBinary() + _ = yym2998 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2951 || yy2arr2951 { + if yyr2994 || yy2arr2994 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37755,25 +38366,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2956 := z.DecBinary() - _ = yym2956 + yym2999 := z.DecBinary() + _ = yym2999 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2957 := r.ContainerType() - if yyct2957 == codecSelferValueTypeMap1234 { - yyl2957 := r.ReadMapStart() - if yyl2957 == 0 { + yyct3000 := r.ContainerType() + if yyct3000 == codecSelferValueTypeMap1234 { + yyl3000 := r.ReadMapStart() + if yyl3000 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2957, d) + x.codecDecodeSelfFromMap(yyl3000, d) } - } else if yyct2957 == codecSelferValueTypeArray1234 { - yyl2957 := r.ReadArrayStart() - if yyl2957 == 0 { + } else if yyct3000 == codecSelferValueTypeArray1234 { + yyl3000 := r.ReadArrayStart() + if yyl3000 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2957, d) + x.codecDecodeSelfFromArray(yyl3000, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37785,12 +38396,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2958Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2958Slc - var yyhl2958 bool = l >= 0 - for yyj2958 := 0; ; yyj2958++ { - if yyhl2958 { - if yyj2958 >= l { + var yys3001Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3001Slc + var yyhl3001 bool = l >= 0 + for yyj3001 := 0; ; yyj3001++ { + if yyhl3001 { + if yyj3001 >= l { break } } else { @@ -37799,10 +38410,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2958Slc = r.DecodeBytes(yys2958Slc, true, true) - yys2958 := string(yys2958Slc) + yys3001Slc = r.DecodeBytes(yys3001Slc, true, true) + yys3001 := string(yys3001Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2958 { + switch yys3001 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37816,9 +38427,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2958) - } // end switch yys2958 - } // end for yyj2958 + z.DecStructFieldNotFound(-1, yys3001) + } // end switch yys3001 + } // end for yyj3001 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37826,16 +38437,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2961 int - var yyb2961 bool - var yyhl2961 bool = l >= 0 - yyj2961++ - if yyhl2961 { - yyb2961 = yyj2961 > l + var yyj3004 int + var yyb3004 bool + var yyhl3004 bool = l >= 0 + yyj3004++ + if yyhl3004 { + yyb3004 = yyj3004 > l } else { - yyb2961 = r.CheckBreak() + yyb3004 = r.CheckBreak() } - if yyb2961 { + if yyb3004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37845,13 +38456,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2961++ - if yyhl2961 { - yyb2961 = yyj2961 > l + yyj3004++ + if yyhl3004 { + yyb3004 = yyj3004 > l } else { - yyb2961 = r.CheckBreak() + yyb3004 = r.CheckBreak() } - if yyb2961 { + if yyb3004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37862,17 +38473,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2961++ - if yyhl2961 { - yyb2961 = yyj2961 > l + yyj3004++ + if yyhl3004 { + yyb3004 = yyj3004 > l } else { - yyb2961 = r.CheckBreak() + yyb3004 = r.CheckBreak() } - if yyb2961 { + if yyb3004 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2961-1, "") + z.DecStructFieldNotFound(yyj3004-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37884,38 +38495,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2964 := z.EncBinary() - _ = yym2964 + yym3007 := z.EncBinary() + _ = yym3007 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2965 := !z.EncBinary() - yy2arr2965 := z.EncBasicHandle().StructToArray - var yyq2965 [1]bool - _, _, _ = yysep2965, yyq2965, yy2arr2965 - const yyr2965 bool = false - yyq2965[0] = len(x.PreferAvoidPods) != 0 - var yynn2965 int - if yyr2965 || yy2arr2965 { + yysep3008 := !z.EncBinary() + yy2arr3008 := z.EncBasicHandle().StructToArray + var yyq3008 [1]bool + _, _, _ = yysep3008, yyq3008, yy2arr3008 + const yyr3008 bool = false + yyq3008[0] = len(x.PreferAvoidPods) != 0 + var yynn3008 int + if yyr3008 || yy2arr3008 { r.EncodeArrayStart(1) } else { - yynn2965 = 0 - for _, b := range yyq2965 { + yynn3008 = 0 + for _, b := range yyq3008 { if b { - yynn2965++ + yynn3008++ } } - r.EncodeMapStart(yynn2965) - yynn2965 = 0 + r.EncodeMapStart(yynn3008) + yynn3008 = 0 } - if yyr2965 || yy2arr2965 { + if yyr3008 || yy2arr3008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2965[0] { + if yyq3008[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2967 := z.EncBinary() - _ = yym2967 + yym3010 := z.EncBinary() + _ = yym3010 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37925,15 +38536,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2965[0] { + if yyq3008[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2968 := z.EncBinary() - _ = yym2968 + yym3011 := z.EncBinary() + _ = yym3011 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37941,7 +38552,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2965 || yy2arr2965 { + if yyr3008 || yy2arr3008 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37954,25 +38565,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2969 := z.DecBinary() - _ = yym2969 + yym3012 := z.DecBinary() + _ = yym3012 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2970 := r.ContainerType() - if yyct2970 == codecSelferValueTypeMap1234 { - yyl2970 := r.ReadMapStart() - if yyl2970 == 0 { + yyct3013 := r.ContainerType() + if yyct3013 == codecSelferValueTypeMap1234 { + yyl3013 := r.ReadMapStart() + if yyl3013 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2970, d) + x.codecDecodeSelfFromMap(yyl3013, d) } - } else if yyct2970 == codecSelferValueTypeArray1234 { - yyl2970 := r.ReadArrayStart() - if yyl2970 == 0 { + } else if yyct3013 == codecSelferValueTypeArray1234 { + yyl3013 := r.ReadArrayStart() + if yyl3013 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2970, d) + x.codecDecodeSelfFromArray(yyl3013, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37984,12 +38595,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2971Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2971Slc - var yyhl2971 bool = l >= 0 - for yyj2971 := 0; ; yyj2971++ { - if yyhl2971 { - if yyj2971 >= l { + var yys3014Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3014Slc + var yyhl3014 bool = l >= 0 + for yyj3014 := 0; ; yyj3014++ { + if yyhl3014 { + if yyj3014 >= l { break } } else { @@ -37998,26 +38609,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2971Slc = r.DecodeBytes(yys2971Slc, true, true) - yys2971 := string(yys2971Slc) + yys3014Slc = r.DecodeBytes(yys3014Slc, true, true) + yys3014 := string(yys3014Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2971 { + switch yys3014 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2972 := &x.PreferAvoidPods - yym2973 := z.DecBinary() - _ = yym2973 + yyv3015 := &x.PreferAvoidPods + yym3016 := z.DecBinary() + _ = yym3016 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2972), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3015), d) } } default: - z.DecStructFieldNotFound(-1, yys2971) - } // end switch yys2971 - } // end for yyj2971 + z.DecStructFieldNotFound(-1, yys3014) + } // end switch yys3014 + } // end for yyj3014 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38025,16 +38636,16 @@ func (x *AvoidPods) 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 yyj3017 int + var yyb3017 bool + var yyhl3017 bool = l >= 0 + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb2974 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb2974 { + if yyb3017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38042,26 +38653,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2975 := &x.PreferAvoidPods - yym2976 := z.DecBinary() - _ = yym2976 + yyv3018 := &x.PreferAvoidPods + yym3019 := z.DecBinary() + _ = yym3019 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2975), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3018), d) } } for { - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj3017++ + if yyhl3017 { + yyb3017 = yyj3017 > l } else { - yyb2974 = r.CheckBreak() + yyb3017 = r.CheckBreak() } - if yyb2974 { + if yyb3017 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2974-1, "") + z.DecStructFieldNotFound(yyj3017-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38073,85 +38684,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2977 := z.EncBinary() - _ = yym2977 + yym3020 := z.EncBinary() + _ = yym3020 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2978 := !z.EncBinary() - yy2arr2978 := z.EncBasicHandle().StructToArray - var yyq2978 [4]bool - _, _, _ = yysep2978, yyq2978, yy2arr2978 - const yyr2978 bool = false - yyq2978[1] = true - yyq2978[2] = x.Reason != "" - yyq2978[3] = x.Message != "" - var yynn2978 int - if yyr2978 || yy2arr2978 { + yysep3021 := !z.EncBinary() + yy2arr3021 := z.EncBasicHandle().StructToArray + var yyq3021 [4]bool + _, _, _ = yysep3021, yyq3021, yy2arr3021 + const yyr3021 bool = false + yyq3021[1] = true + yyq3021[2] = x.Reason != "" + yyq3021[3] = x.Message != "" + var yynn3021 int + if yyr3021 || yy2arr3021 { r.EncodeArrayStart(4) } else { - yynn2978 = 1 - for _, b := range yyq2978 { + yynn3021 = 1 + for _, b := range yyq3021 { if b { - yynn2978++ + yynn3021++ } } - r.EncodeMapStart(yynn2978) - yynn2978 = 0 + r.EncodeMapStart(yynn3021) + yynn3021 = 0 } - if yyr2978 || yy2arr2978 { + if yyr3021 || yy2arr3021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2980 := &x.PodSignature - yy2980.CodecEncodeSelf(e) + yy3023 := &x.PodSignature + yy3023.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2981 := &x.PodSignature - yy2981.CodecEncodeSelf(e) + yy3024 := &x.PodSignature + yy3024.CodecEncodeSelf(e) } - if yyr2978 || yy2arr2978 { + if yyr3021 || yy2arr3021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2978[1] { - yy2983 := &x.EvictionTime - yym2984 := z.EncBinary() - _ = yym2984 + if yyq3021[1] { + yy3026 := &x.EvictionTime + yym3027 := z.EncBinary() + _ = yym3027 if false { - } else if z.HasExtensions() && z.EncExt(yy2983) { - } else if yym2984 { - z.EncBinaryMarshal(yy2983) - } else if !yym2984 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2983) + } else if z.HasExtensions() && z.EncExt(yy3026) { + } else if yym3027 { + z.EncBinaryMarshal(yy3026) + } else if !yym3027 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3026) } else { - z.EncFallback(yy2983) + z.EncFallback(yy3026) } } else { r.EncodeNil() } } else { - if yyq2978[1] { + if yyq3021[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2985 := &x.EvictionTime - yym2986 := z.EncBinary() - _ = yym2986 + yy3028 := &x.EvictionTime + yym3029 := z.EncBinary() + _ = yym3029 if false { - } else if z.HasExtensions() && z.EncExt(yy2985) { - } else if yym2986 { - z.EncBinaryMarshal(yy2985) - } else if !yym2986 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2985) + } else if z.HasExtensions() && z.EncExt(yy3028) { + } else if yym3029 { + z.EncBinaryMarshal(yy3028) + } else if !yym3029 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3028) } else { - z.EncFallback(yy2985) + z.EncFallback(yy3028) } } } - if yyr2978 || yy2arr2978 { + if yyr3021 || yy2arr3021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2978[2] { - yym2988 := z.EncBinary() - _ = yym2988 + if yyq3021[2] { + yym3031 := z.EncBinary() + _ = yym3031 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38160,23 +38771,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2978[2] { + if yyq3021[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2989 := z.EncBinary() - _ = yym2989 + yym3032 := z.EncBinary() + _ = yym3032 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2978 || yy2arr2978 { + if yyr3021 || yy2arr3021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2978[3] { - yym2991 := z.EncBinary() - _ = yym2991 + if yyq3021[3] { + yym3034 := z.EncBinary() + _ = yym3034 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38185,19 +38796,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2978[3] { + if yyq3021[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2992 := z.EncBinary() - _ = yym2992 + yym3035 := z.EncBinary() + _ = yym3035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2978 || yy2arr2978 { + if yyr3021 || yy2arr3021 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38210,25 +38821,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2993 := z.DecBinary() - _ = yym2993 + yym3036 := z.DecBinary() + _ = yym3036 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2994 := r.ContainerType() - if yyct2994 == codecSelferValueTypeMap1234 { - yyl2994 := r.ReadMapStart() - if yyl2994 == 0 { + yyct3037 := r.ContainerType() + if yyct3037 == codecSelferValueTypeMap1234 { + yyl3037 := r.ReadMapStart() + if yyl3037 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2994, d) + x.codecDecodeSelfFromMap(yyl3037, d) } - } else if yyct2994 == codecSelferValueTypeArray1234 { - yyl2994 := r.ReadArrayStart() - if yyl2994 == 0 { + } else if yyct3037 == codecSelferValueTypeArray1234 { + yyl3037 := r.ReadArrayStart() + if yyl3037 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2994, d) + x.codecDecodeSelfFromArray(yyl3037, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38240,12 +38851,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2995Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2995Slc - var yyhl2995 bool = l >= 0 - for yyj2995 := 0; ; yyj2995++ { - if yyhl2995 { - if yyj2995 >= l { + var yys3038Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3038Slc + var yyhl3038 bool = l >= 0 + for yyj3038 := 0; ; yyj3038++ { + if yyhl3038 { + if yyj3038 >= l { break } } else { @@ -38254,32 +38865,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2995Slc = r.DecodeBytes(yys2995Slc, true, true) - yys2995 := string(yys2995Slc) + yys3038Slc = r.DecodeBytes(yys3038Slc, true, true) + yys3038 := string(yys3038Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2995 { + switch yys3038 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2996 := &x.PodSignature - yyv2996.CodecDecodeSelf(d) + yyv3039 := &x.PodSignature + yyv3039.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2997 := &x.EvictionTime - yym2998 := z.DecBinary() - _ = yym2998 + yyv3040 := &x.EvictionTime + yym3041 := z.DecBinary() + _ = yym3041 if false { - } else if z.HasExtensions() && z.DecExt(yyv2997) { - } else if yym2998 { - z.DecBinaryUnmarshal(yyv2997) - } else if !yym2998 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2997) + } else if z.HasExtensions() && z.DecExt(yyv3040) { + } else if yym3041 { + z.DecBinaryUnmarshal(yyv3040) + } else if !yym3041 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3040) } else { - z.DecFallback(yyv2997, false) + z.DecFallback(yyv3040, false) } } case "reason": @@ -38295,9 +38906,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2995) - } // end switch yys2995 - } // end for yyj2995 + z.DecStructFieldNotFound(-1, yys3038) + } // end switch yys3038 + } // end for yyj3038 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38305,16 +38916,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3001 int - var yyb3001 bool - var yyhl3001 bool = l >= 0 - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + var yyj3044 int + var yyb3044 bool + var yyhl3044 bool = l >= 0 + yyj3044++ + if yyhl3044 { + yyb3044 = yyj3044 > l } else { - yyb3001 = r.CheckBreak() + yyb3044 = r.CheckBreak() } - if yyb3001 { + if yyb3044 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38322,16 +38933,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3002 := &x.PodSignature - yyv3002.CodecDecodeSelf(d) + yyv3045 := &x.PodSignature + yyv3045.CodecDecodeSelf(d) } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3044++ + if yyhl3044 { + yyb3044 = yyj3044 > l } else { - yyb3001 = r.CheckBreak() + yyb3044 = r.CheckBreak() } - if yyb3001 { + if yyb3044 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38339,26 +38950,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3003 := &x.EvictionTime - yym3004 := z.DecBinary() - _ = yym3004 + yyv3046 := &x.EvictionTime + yym3047 := z.DecBinary() + _ = yym3047 if false { - } else if z.HasExtensions() && z.DecExt(yyv3003) { - } else if yym3004 { - z.DecBinaryUnmarshal(yyv3003) - } else if !yym3004 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3003) + } else if z.HasExtensions() && z.DecExt(yyv3046) { + } else if yym3047 { + z.DecBinaryUnmarshal(yyv3046) + } else if !yym3047 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3046) } else { - z.DecFallback(yyv3003, false) + z.DecFallback(yyv3046, false) } } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3044++ + if yyhl3044 { + yyb3044 = yyj3044 > l } else { - yyb3001 = r.CheckBreak() + yyb3044 = r.CheckBreak() } - if yyb3001 { + if yyb3044 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38368,13 +38979,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3044++ + if yyhl3044 { + yyb3044 = yyj3044 > l } else { - yyb3001 = r.CheckBreak() + yyb3044 = r.CheckBreak() } - if yyb3001 { + if yyb3044 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38385,17 +38996,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3044++ + if yyhl3044 { + yyb3044 = yyj3044 > l } else { - yyb3001 = r.CheckBreak() + yyb3044 = r.CheckBreak() } - if yyb3001 { + if yyb3044 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3001-1, "") + z.DecStructFieldNotFound(yyj3044-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38407,33 +39018,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3007 := z.EncBinary() - _ = yym3007 + yym3050 := z.EncBinary() + _ = yym3050 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3008 := !z.EncBinary() - yy2arr3008 := z.EncBasicHandle().StructToArray - var yyq3008 [1]bool - _, _, _ = yysep3008, yyq3008, yy2arr3008 - const yyr3008 bool = false - yyq3008[0] = x.PodController != nil - var yynn3008 int - if yyr3008 || yy2arr3008 { + yysep3051 := !z.EncBinary() + yy2arr3051 := z.EncBasicHandle().StructToArray + var yyq3051 [1]bool + _, _, _ = yysep3051, yyq3051, yy2arr3051 + const yyr3051 bool = false + yyq3051[0] = x.PodController != nil + var yynn3051 int + if yyr3051 || yy2arr3051 { r.EncodeArrayStart(1) } else { - yynn3008 = 0 - for _, b := range yyq3008 { + yynn3051 = 0 + for _, b := range yyq3051 { if b { - yynn3008++ + yynn3051++ } } - r.EncodeMapStart(yynn3008) - yynn3008 = 0 + r.EncodeMapStart(yynn3051) + yynn3051 = 0 } - if yyr3008 || yy2arr3008 { + if yyr3051 || yy2arr3051 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3008[0] { + if yyq3051[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -38443,7 +39054,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3008[0] { + if yyq3051[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38454,7 +39065,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3008 || yy2arr3008 { + if yyr3051 || yy2arr3051 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38467,25 +39078,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3010 := z.DecBinary() - _ = yym3010 + yym3053 := z.DecBinary() + _ = yym3053 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3011 := r.ContainerType() - if yyct3011 == codecSelferValueTypeMap1234 { - yyl3011 := r.ReadMapStart() - if yyl3011 == 0 { + yyct3054 := r.ContainerType() + if yyct3054 == codecSelferValueTypeMap1234 { + yyl3054 := r.ReadMapStart() + if yyl3054 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3011, d) + x.codecDecodeSelfFromMap(yyl3054, d) } - } else if yyct3011 == codecSelferValueTypeArray1234 { - yyl3011 := r.ReadArrayStart() - if yyl3011 == 0 { + } else if yyct3054 == codecSelferValueTypeArray1234 { + yyl3054 := r.ReadArrayStart() + if yyl3054 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3011, d) + x.codecDecodeSelfFromArray(yyl3054, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38497,12 +39108,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3012Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3012Slc - var yyhl3012 bool = l >= 0 - for yyj3012 := 0; ; yyj3012++ { - if yyhl3012 { - if yyj3012 >= l { + var yys3055Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3055Slc + var yyhl3055 bool = l >= 0 + for yyj3055 := 0; ; yyj3055++ { + if yyhl3055 { + if yyj3055 >= l { break } } else { @@ -38511,10 +39122,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3012Slc = r.DecodeBytes(yys3012Slc, true, true) - yys3012 := string(yys3012Slc) + yys3055Slc = r.DecodeBytes(yys3055Slc, true, true) + yys3055 := string(yys3055Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3012 { + switch yys3055 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -38527,9 +39138,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3012) - } // end switch yys3012 - } // end for yyj3012 + z.DecStructFieldNotFound(-1, yys3055) + } // end switch yys3055 + } // end for yyj3055 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38537,16 +39148,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3014 int - var yyb3014 bool - var yyhl3014 bool = l >= 0 - yyj3014++ - if yyhl3014 { - yyb3014 = yyj3014 > l + var yyj3057 int + var yyb3057 bool + var yyhl3057 bool = l >= 0 + yyj3057++ + if yyhl3057 { + yyb3057 = yyj3057 > l } else { - yyb3014 = r.CheckBreak() + yyb3057 = r.CheckBreak() } - if yyb3014 { + if yyb3057 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38562,17 +39173,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj3014++ - if yyhl3014 { - yyb3014 = yyj3014 > l + yyj3057++ + if yyhl3057 { + yyb3057 = yyj3057 > l } else { - yyb3014 = r.CheckBreak() + yyb3057 = r.CheckBreak() } - if yyb3014 { + if yyb3057 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3014-1, "") + z.DecStructFieldNotFound(yyj3057-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38584,37 +39195,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3016 := z.EncBinary() - _ = yym3016 + yym3059 := z.EncBinary() + _ = yym3059 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3017 := !z.EncBinary() - yy2arr3017 := z.EncBasicHandle().StructToArray - var yyq3017 [2]bool - _, _, _ = yysep3017, yyq3017, yy2arr3017 - const yyr3017 bool = false - yyq3017[1] = x.SizeBytes != 0 - var yynn3017 int - if yyr3017 || yy2arr3017 { + yysep3060 := !z.EncBinary() + yy2arr3060 := z.EncBasicHandle().StructToArray + var yyq3060 [2]bool + _, _, _ = yysep3060, yyq3060, yy2arr3060 + const yyr3060 bool = false + yyq3060[1] = x.SizeBytes != 0 + var yynn3060 int + if yyr3060 || yy2arr3060 { r.EncodeArrayStart(2) } else { - yynn3017 = 1 - for _, b := range yyq3017 { + yynn3060 = 1 + for _, b := range yyq3060 { if b { - yynn3017++ + yynn3060++ } } - r.EncodeMapStart(yynn3017) - yynn3017 = 0 + r.EncodeMapStart(yynn3060) + yynn3060 = 0 } - if yyr3017 || yy2arr3017 { + if yyr3060 || yy2arr3060 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3019 := z.EncBinary() - _ = yym3019 + yym3062 := z.EncBinary() + _ = yym3062 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -38627,19 +39238,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3020 := z.EncBinary() - _ = yym3020 + yym3063 := z.EncBinary() + _ = yym3063 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3017 || yy2arr3017 { + if yyr3060 || yy2arr3060 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3017[1] { - yym3022 := z.EncBinary() - _ = yym3022 + if yyq3060[1] { + yym3065 := z.EncBinary() + _ = yym3065 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -38648,19 +39259,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3017[1] { + if yyq3060[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3023 := z.EncBinary() - _ = yym3023 + yym3066 := z.EncBinary() + _ = yym3066 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3017 || yy2arr3017 { + if yyr3060 || yy2arr3060 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38673,25 +39284,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3024 := z.DecBinary() - _ = yym3024 + yym3067 := z.DecBinary() + _ = yym3067 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3025 := r.ContainerType() - if yyct3025 == codecSelferValueTypeMap1234 { - yyl3025 := r.ReadMapStart() - if yyl3025 == 0 { + yyct3068 := r.ContainerType() + if yyct3068 == codecSelferValueTypeMap1234 { + yyl3068 := r.ReadMapStart() + if yyl3068 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3025, d) + x.codecDecodeSelfFromMap(yyl3068, d) } - } else if yyct3025 == codecSelferValueTypeArray1234 { - yyl3025 := r.ReadArrayStart() - if yyl3025 == 0 { + } else if yyct3068 == codecSelferValueTypeArray1234 { + yyl3068 := r.ReadArrayStart() + if yyl3068 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3025, d) + x.codecDecodeSelfFromArray(yyl3068, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38703,12 +39314,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3026Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3026Slc - var yyhl3026 bool = l >= 0 - for yyj3026 := 0; ; yyj3026++ { - if yyhl3026 { - if yyj3026 >= l { + var yys3069Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3069Slc + var yyhl3069 bool = l >= 0 + for yyj3069 := 0; ; yyj3069++ { + if yyhl3069 { + if yyj3069 >= l { break } } else { @@ -38717,20 +39328,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3026Slc = r.DecodeBytes(yys3026Slc, true, true) - yys3026 := string(yys3026Slc) + yys3069Slc = r.DecodeBytes(yys3069Slc, true, true) + yys3069 := string(yys3069Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3026 { + switch yys3069 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3027 := &x.Names - yym3028 := z.DecBinary() - _ = yym3028 + yyv3070 := &x.Names + yym3071 := z.DecBinary() + _ = yym3071 if false { } else { - z.F.DecSliceStringX(yyv3027, false, d) + z.F.DecSliceStringX(yyv3070, false, d) } } case "sizeBytes": @@ -38740,9 +39351,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3026) - } // end switch yys3026 - } // end for yyj3026 + z.DecStructFieldNotFound(-1, yys3069) + } // end switch yys3069 + } // end for yyj3069 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38750,16 +39361,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3030 int - var yyb3030 bool - var yyhl3030 bool = l >= 0 - yyj3030++ - if yyhl3030 { - yyb3030 = yyj3030 > l + var yyj3073 int + var yyb3073 bool + var yyhl3073 bool = l >= 0 + yyj3073++ + if yyhl3073 { + yyb3073 = yyj3073 > l } else { - yyb3030 = r.CheckBreak() + yyb3073 = r.CheckBreak() } - if yyb3030 { + if yyb3073 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38767,21 +39378,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3031 := &x.Names - yym3032 := z.DecBinary() - _ = yym3032 + yyv3074 := &x.Names + yym3075 := z.DecBinary() + _ = yym3075 if false { } else { - z.F.DecSliceStringX(yyv3031, false, d) + z.F.DecSliceStringX(yyv3074, false, d) } } - yyj3030++ - if yyhl3030 { - yyb3030 = yyj3030 > l + yyj3073++ + if yyhl3073 { + yyb3073 = yyj3073 > l } else { - yyb3030 = r.CheckBreak() + yyb3073 = r.CheckBreak() } - if yyb3030 { + if yyb3073 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38792,17 +39403,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3030++ - if yyhl3030 { - yyb3030 = yyj3030 > l + yyj3073++ + if yyhl3073 { + yyb3073 = yyj3073 > l } else { - yyb3030 = r.CheckBreak() + yyb3073 = r.CheckBreak() } - if yyb3030 { + if yyb3073 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3030-1, "") + z.DecStructFieldNotFound(yyj3073-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38811,8 +39422,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3034 := z.EncBinary() - _ = yym3034 + yym3077 := z.EncBinary() + _ = yym3077 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38824,8 +39435,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3035 := z.DecBinary() - _ = yym3035 + yym3078 := z.DecBinary() + _ = yym3078 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38837,8 +39448,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3036 := z.EncBinary() - _ = yym3036 + yym3079 := z.EncBinary() + _ = yym3079 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38850,8 +39461,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3037 := z.DecBinary() - _ = yym3037 + yym3080 := z.DecBinary() + _ = yym3080 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38866,34 +39477,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3038 := z.EncBinary() - _ = yym3038 + yym3081 := z.EncBinary() + _ = yym3081 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3039 := !z.EncBinary() - yy2arr3039 := z.EncBasicHandle().StructToArray - var yyq3039 [6]bool - _, _, _ = yysep3039, yyq3039, yy2arr3039 - const yyr3039 bool = false - yyq3039[2] = true - yyq3039[3] = true - yyq3039[4] = x.Reason != "" - yyq3039[5] = x.Message != "" - var yynn3039 int - if yyr3039 || yy2arr3039 { + yysep3082 := !z.EncBinary() + yy2arr3082 := z.EncBasicHandle().StructToArray + var yyq3082 [6]bool + _, _, _ = yysep3082, yyq3082, yy2arr3082 + const yyr3082 bool = false + yyq3082[2] = true + yyq3082[3] = true + yyq3082[4] = x.Reason != "" + yyq3082[5] = x.Message != "" + var yynn3082 int + if yyr3082 || yy2arr3082 { r.EncodeArrayStart(6) } else { - yynn3039 = 2 - for _, b := range yyq3039 { + yynn3082 = 2 + for _, b := range yyq3082 { if b { - yynn3039++ + yynn3082++ } } - r.EncodeMapStart(yynn3039) - yynn3039 = 0 + r.EncodeMapStart(yynn3082) + yynn3082 = 0 } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38902,7 +39513,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -38911,85 +39522,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3039[2] { - yy3043 := &x.LastHeartbeatTime - yym3044 := z.EncBinary() - _ = yym3044 + if yyq3082[2] { + yy3086 := &x.LastHeartbeatTime + yym3087 := z.EncBinary() + _ = yym3087 if false { - } else if z.HasExtensions() && z.EncExt(yy3043) { - } else if yym3044 { - z.EncBinaryMarshal(yy3043) - } else if !yym3044 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3043) + } else if z.HasExtensions() && z.EncExt(yy3086) { + } else if yym3087 { + z.EncBinaryMarshal(yy3086) + } else if !yym3087 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3086) } else { - z.EncFallback(yy3043) + z.EncFallback(yy3086) } } else { r.EncodeNil() } } else { - if yyq3039[2] { + if yyq3082[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3045 := &x.LastHeartbeatTime - yym3046 := z.EncBinary() - _ = yym3046 + yy3088 := &x.LastHeartbeatTime + yym3089 := z.EncBinary() + _ = yym3089 if false { - } else if z.HasExtensions() && z.EncExt(yy3045) { - } else if yym3046 { - z.EncBinaryMarshal(yy3045) - } else if !yym3046 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3045) + } else if z.HasExtensions() && z.EncExt(yy3088) { + } else if yym3089 { + z.EncBinaryMarshal(yy3088) + } else if !yym3089 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3088) } else { - z.EncFallback(yy3045) + z.EncFallback(yy3088) } } } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3039[3] { - yy3048 := &x.LastTransitionTime - yym3049 := z.EncBinary() - _ = yym3049 + if yyq3082[3] { + yy3091 := &x.LastTransitionTime + yym3092 := z.EncBinary() + _ = yym3092 if false { - } else if z.HasExtensions() && z.EncExt(yy3048) { - } else if yym3049 { - z.EncBinaryMarshal(yy3048) - } else if !yym3049 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3048) + } else if z.HasExtensions() && z.EncExt(yy3091) { + } else if yym3092 { + z.EncBinaryMarshal(yy3091) + } else if !yym3092 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3091) } else { - z.EncFallback(yy3048) + z.EncFallback(yy3091) } } else { r.EncodeNil() } } else { - if yyq3039[3] { + if yyq3082[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3050 := &x.LastTransitionTime - yym3051 := z.EncBinary() - _ = yym3051 + yy3093 := &x.LastTransitionTime + yym3094 := z.EncBinary() + _ = yym3094 if false { - } else if z.HasExtensions() && z.EncExt(yy3050) { - } else if yym3051 { - z.EncBinaryMarshal(yy3050) - } else if !yym3051 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3050) + } else if z.HasExtensions() && z.EncExt(yy3093) { + } else if yym3094 { + z.EncBinaryMarshal(yy3093) + } else if !yym3094 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3093) } else { - z.EncFallback(yy3050) + z.EncFallback(yy3093) } } } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3039[4] { - yym3053 := z.EncBinary() - _ = yym3053 + if yyq3082[4] { + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38998,23 +39609,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3039[4] { + if yyq3082[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3054 := z.EncBinary() - _ = yym3054 + yym3097 := z.EncBinary() + _ = yym3097 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3039[5] { - yym3056 := z.EncBinary() - _ = yym3056 + if yyq3082[5] { + yym3099 := z.EncBinary() + _ = yym3099 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39023,19 +39634,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3039[5] { + if yyq3082[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3057 := z.EncBinary() - _ = yym3057 + yym3100 := z.EncBinary() + _ = yym3100 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3039 || yy2arr3039 { + if yyr3082 || yy2arr3082 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39048,25 +39659,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3058 := z.DecBinary() - _ = yym3058 + yym3101 := z.DecBinary() + _ = yym3101 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3059 := r.ContainerType() - if yyct3059 == codecSelferValueTypeMap1234 { - yyl3059 := r.ReadMapStart() - if yyl3059 == 0 { + yyct3102 := r.ContainerType() + if yyct3102 == codecSelferValueTypeMap1234 { + yyl3102 := r.ReadMapStart() + if yyl3102 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3059, d) + x.codecDecodeSelfFromMap(yyl3102, d) } - } else if yyct3059 == codecSelferValueTypeArray1234 { - yyl3059 := r.ReadArrayStart() - if yyl3059 == 0 { + } else if yyct3102 == codecSelferValueTypeArray1234 { + yyl3102 := r.ReadArrayStart() + if yyl3102 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3059, d) + x.codecDecodeSelfFromArray(yyl3102, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39078,12 +39689,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3060Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3060Slc - var yyhl3060 bool = l >= 0 - for yyj3060 := 0; ; yyj3060++ { - if yyhl3060 { - if yyj3060 >= l { + var yys3103Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3103Slc + var yyhl3103 bool = l >= 0 + for yyj3103 := 0; ; yyj3103++ { + if yyhl3103 { + if yyj3103 >= l { break } } else { @@ -39092,10 +39703,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3060Slc = r.DecodeBytes(yys3060Slc, true, true) - yys3060 := string(yys3060Slc) + yys3103Slc = r.DecodeBytes(yys3103Slc, true, true) + yys3103 := string(yys3103Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3060 { + switch yys3103 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39112,34 +39723,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3063 := &x.LastHeartbeatTime - yym3064 := z.DecBinary() - _ = yym3064 + yyv3106 := &x.LastHeartbeatTime + yym3107 := z.DecBinary() + _ = yym3107 if false { - } else if z.HasExtensions() && z.DecExt(yyv3063) { - } else if yym3064 { - z.DecBinaryUnmarshal(yyv3063) - } else if !yym3064 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3063) + } else if z.HasExtensions() && z.DecExt(yyv3106) { + } else if yym3107 { + z.DecBinaryUnmarshal(yyv3106) + } else if !yym3107 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3106) } else { - z.DecFallback(yyv3063, false) + z.DecFallback(yyv3106, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3065 := &x.LastTransitionTime - yym3066 := z.DecBinary() - _ = yym3066 + yyv3108 := &x.LastTransitionTime + yym3109 := z.DecBinary() + _ = yym3109 if false { - } else if z.HasExtensions() && z.DecExt(yyv3065) { - } else if yym3066 { - z.DecBinaryUnmarshal(yyv3065) - } else if !yym3066 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3065) + } else if z.HasExtensions() && z.DecExt(yyv3108) { + } else if yym3109 { + z.DecBinaryUnmarshal(yyv3108) + } else if !yym3109 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3108) } else { - z.DecFallback(yyv3065, false) + z.DecFallback(yyv3108, false) } } case "reason": @@ -39155,9 +39766,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3060) - } // end switch yys3060 - } // end for yyj3060 + z.DecStructFieldNotFound(-1, yys3103) + } // end switch yys3103 + } // end for yyj3103 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39165,16 +39776,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3069 int - var yyb3069 bool - var yyhl3069 bool = l >= 0 - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + var yyj3112 int + var yyb3112 bool + var yyhl3112 bool = l >= 0 + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39184,13 +39795,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39200,13 +39811,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39214,26 +39825,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3072 := &x.LastHeartbeatTime - yym3073 := z.DecBinary() - _ = yym3073 + yyv3115 := &x.LastHeartbeatTime + yym3116 := z.DecBinary() + _ = yym3116 if false { - } else if z.HasExtensions() && z.DecExt(yyv3072) { - } else if yym3073 { - z.DecBinaryUnmarshal(yyv3072) - } else if !yym3073 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3072) + } else if z.HasExtensions() && z.DecExt(yyv3115) { + } else if yym3116 { + z.DecBinaryUnmarshal(yyv3115) + } else if !yym3116 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3115) } else { - z.DecFallback(yyv3072, false) + z.DecFallback(yyv3115, false) } } - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39241,26 +39852,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3074 := &x.LastTransitionTime - yym3075 := z.DecBinary() - _ = yym3075 + yyv3117 := &x.LastTransitionTime + yym3118 := z.DecBinary() + _ = yym3118 if false { - } else if z.HasExtensions() && z.DecExt(yyv3074) { - } else if yym3075 { - z.DecBinaryUnmarshal(yyv3074) - } else if !yym3075 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3074) + } else if z.HasExtensions() && z.DecExt(yyv3117) { + } else if yym3118 { + z.DecBinaryUnmarshal(yyv3117) + } else if !yym3118 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3117) } else { - z.DecFallback(yyv3074, false) + z.DecFallback(yyv3117, false) } } - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39270,13 +39881,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39287,17 +39898,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3069++ - if yyhl3069 { - yyb3069 = yyj3069 > l + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l } else { - yyb3069 = r.CheckBreak() + yyb3112 = r.CheckBreak() } - if yyb3069 { + if yyb3112 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3069-1, "") + z.DecStructFieldNotFound(yyj3112-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39306,8 +39917,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3078 := z.EncBinary() - _ = yym3078 + yym3121 := z.EncBinary() + _ = yym3121 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39319,8 +39930,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3079 := z.DecBinary() - _ = yym3079 + yym3122 := z.DecBinary() + _ = yym3122 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39335,30 +39946,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3080 := z.EncBinary() - _ = yym3080 + yym3123 := z.EncBinary() + _ = yym3123 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3081 := !z.EncBinary() - yy2arr3081 := z.EncBasicHandle().StructToArray - var yyq3081 [2]bool - _, _, _ = yysep3081, yyq3081, yy2arr3081 - const yyr3081 bool = false - var yynn3081 int - if yyr3081 || yy2arr3081 { + yysep3124 := !z.EncBinary() + yy2arr3124 := z.EncBasicHandle().StructToArray + var yyq3124 [2]bool + _, _, _ = yysep3124, yyq3124, yy2arr3124 + const yyr3124 bool = false + var yynn3124 int + if yyr3124 || yy2arr3124 { r.EncodeArrayStart(2) } else { - yynn3081 = 2 - for _, b := range yyq3081 { + yynn3124 = 2 + for _, b := range yyq3124 { if b { - yynn3081++ + yynn3124++ } } - r.EncodeMapStart(yynn3081) - yynn3081 = 0 + r.EncodeMapStart(yynn3124) + yynn3124 = 0 } - if yyr3081 || yy2arr3081 { + if yyr3124 || yy2arr3124 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39367,10 +39978,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3081 || yy2arr3081 { + if yyr3124 || yy2arr3124 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3084 := z.EncBinary() - _ = yym3084 + yym3127 := z.EncBinary() + _ = yym3127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -39379,14 +39990,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3085 := z.EncBinary() - _ = yym3085 + yym3128 := z.EncBinary() + _ = yym3128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3081 || yy2arr3081 { + if yyr3124 || yy2arr3124 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39399,25 +40010,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3086 := z.DecBinary() - _ = yym3086 + yym3129 := z.DecBinary() + _ = yym3129 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3087 := r.ContainerType() - if yyct3087 == codecSelferValueTypeMap1234 { - yyl3087 := r.ReadMapStart() - if yyl3087 == 0 { + yyct3130 := r.ContainerType() + if yyct3130 == codecSelferValueTypeMap1234 { + yyl3130 := r.ReadMapStart() + if yyl3130 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3087, d) + x.codecDecodeSelfFromMap(yyl3130, d) } - } else if yyct3087 == codecSelferValueTypeArray1234 { - yyl3087 := r.ReadArrayStart() - if yyl3087 == 0 { + } else if yyct3130 == codecSelferValueTypeArray1234 { + yyl3130 := r.ReadArrayStart() + if yyl3130 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3087, d) + x.codecDecodeSelfFromArray(yyl3130, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39429,12 +40040,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3088Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3088Slc - var yyhl3088 bool = l >= 0 - for yyj3088 := 0; ; yyj3088++ { - if yyhl3088 { - if yyj3088 >= l { + var yys3131Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3131Slc + var yyhl3131 bool = l >= 0 + for yyj3131 := 0; ; yyj3131++ { + if yyhl3131 { + if yyj3131 >= l { break } } else { @@ -39443,10 +40054,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3088Slc = r.DecodeBytes(yys3088Slc, true, true) - yys3088 := string(yys3088Slc) + yys3131Slc = r.DecodeBytes(yys3131Slc, true, true) + yys3131 := string(yys3131Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3088 { + switch yys3131 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39460,9 +40071,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3088) - } // end switch yys3088 - } // end for yyj3088 + z.DecStructFieldNotFound(-1, yys3131) + } // end switch yys3131 + } // end for yyj3131 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39470,16 +40081,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3091 int - var yyb3091 bool - var yyhl3091 bool = l >= 0 - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + var yyj3134 int + var yyb3134 bool + var yyhl3134 bool = l >= 0 + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39489,13 +40100,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39506,17 +40117,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3091-1, "") + z.DecStructFieldNotFound(yyj3134-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39528,33 +40139,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3094 := z.EncBinary() - _ = yym3094 + yym3137 := z.EncBinary() + _ = yym3137 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3095 := !z.EncBinary() - yy2arr3095 := z.EncBasicHandle().StructToArray - var yyq3095 [1]bool - _, _, _ = yysep3095, yyq3095, yy2arr3095 - const yyr3095 bool = false - yyq3095[0] = len(x.Capacity) != 0 - var yynn3095 int - if yyr3095 || yy2arr3095 { + yysep3138 := !z.EncBinary() + yy2arr3138 := z.EncBasicHandle().StructToArray + var yyq3138 [1]bool + _, _, _ = yysep3138, yyq3138, yy2arr3138 + const yyr3138 bool = false + yyq3138[0] = len(x.Capacity) != 0 + var yynn3138 int + if yyr3138 || yy2arr3138 { r.EncodeArrayStart(1) } else { - yynn3095 = 0 - for _, b := range yyq3095 { + yynn3138 = 0 + for _, b := range yyq3138 { if b { - yynn3095++ + yynn3138++ } } - r.EncodeMapStart(yynn3095) - yynn3095 = 0 + r.EncodeMapStart(yynn3138) + yynn3138 = 0 } - if yyr3095 || yy2arr3095 { + if yyr3138 || yy2arr3138 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3095[0] { + if yyq3138[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -39564,7 +40175,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3095[0] { + if yyq3138[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39575,7 +40186,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3095 || yy2arr3095 { + if yyr3138 || yy2arr3138 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39588,25 +40199,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3097 := z.DecBinary() - _ = yym3097 + yym3140 := z.DecBinary() + _ = yym3140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3098 := r.ContainerType() - if yyct3098 == codecSelferValueTypeMap1234 { - yyl3098 := r.ReadMapStart() - if yyl3098 == 0 { + yyct3141 := r.ContainerType() + if yyct3141 == codecSelferValueTypeMap1234 { + yyl3141 := r.ReadMapStart() + if yyl3141 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3098, d) + x.codecDecodeSelfFromMap(yyl3141, d) } - } else if yyct3098 == codecSelferValueTypeArray1234 { - yyl3098 := r.ReadArrayStart() - if yyl3098 == 0 { + } else if yyct3141 == codecSelferValueTypeArray1234 { + yyl3141 := r.ReadArrayStart() + if yyl3141 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3098, d) + x.codecDecodeSelfFromArray(yyl3141, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39618,12 +40229,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3099Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3099Slc - var yyhl3099 bool = l >= 0 - for yyj3099 := 0; ; yyj3099++ { - if yyhl3099 { - if yyj3099 >= l { + var yys3142Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3142Slc + var yyhl3142 bool = l >= 0 + for yyj3142 := 0; ; yyj3142++ { + if yyhl3142 { + if yyj3142 >= l { break } } else { @@ -39632,21 +40243,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3099Slc = r.DecodeBytes(yys3099Slc, true, true) - yys3099 := string(yys3099Slc) + yys3142Slc = r.DecodeBytes(yys3142Slc, true, true) + yys3142 := string(yys3142Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3099 { + switch yys3142 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3100 := &x.Capacity - yyv3100.CodecDecodeSelf(d) + yyv3143 := &x.Capacity + yyv3143.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3099) - } // end switch yys3099 - } // end for yyj3099 + z.DecStructFieldNotFound(-1, yys3142) + } // end switch yys3142 + } // end for yyj3142 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39654,16 +40265,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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 yyj3144 int + var yyb3144 bool + var yyhl3144 bool = l >= 0 + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3101 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3101 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39671,21 +40282,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3102 := &x.Capacity - yyv3102.CodecDecodeSelf(d) + yyv3145 := &x.Capacity + yyv3145.CodecDecodeSelf(d) } for { - yyj3101++ - if yyhl3101 { - yyb3101 = yyj3101 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3101 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3101 { + if yyb3144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3101-1, "") + z.DecStructFieldNotFound(yyj3144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39694,8 +40305,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3103 := z.EncBinary() - _ = yym3103 + yym3146 := z.EncBinary() + _ = yym3146 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39707,8 +40318,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3104 := z.DecBinary() - _ = yym3104 + yym3147 := z.DecBinary() + _ = yym3147 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39723,8 +40334,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3105 := z.EncBinary() - _ = yym3105 + yym3148 := z.EncBinary() + _ = yym3148 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39737,8 +40348,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3106 := z.DecBinary() - _ = yym3106 + yym3149 := z.DecBinary() + _ = yym3149 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39753,39 +40364,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3107 := z.EncBinary() - _ = yym3107 + yym3150 := z.EncBinary() + _ = yym3150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3108 := !z.EncBinary() - yy2arr3108 := z.EncBasicHandle().StructToArray - var yyq3108 [5]bool - _, _, _ = yysep3108, yyq3108, yy2arr3108 - const yyr3108 bool = false - yyq3108[0] = x.Kind != "" - yyq3108[1] = x.APIVersion != "" - yyq3108[2] = true - yyq3108[3] = true - yyq3108[4] = true - var yynn3108 int - if yyr3108 || yy2arr3108 { + yysep3151 := !z.EncBinary() + yy2arr3151 := z.EncBasicHandle().StructToArray + var yyq3151 [5]bool + _, _, _ = yysep3151, yyq3151, yy2arr3151 + const yyr3151 bool = false + yyq3151[0] = x.Kind != "" + yyq3151[1] = x.APIVersion != "" + yyq3151[2] = true + yyq3151[3] = true + yyq3151[4] = true + var yynn3151 int + if yyr3151 || yy2arr3151 { r.EncodeArrayStart(5) } else { - yynn3108 = 0 - for _, b := range yyq3108 { + yynn3151 = 0 + for _, b := range yyq3151 { if b { - yynn3108++ + yynn3151++ } } - r.EncodeMapStart(yynn3108) - yynn3108 = 0 + r.EncodeMapStart(yynn3151) + yynn3151 = 0 } - if yyr3108 || yy2arr3108 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3108[0] { - yym3110 := z.EncBinary() - _ = yym3110 + if yyq3151[0] { + yym3153 := z.EncBinary() + _ = yym3153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39794,23 +40405,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3108[0] { + if yyq3151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3111 := z.EncBinary() - _ = yym3111 + yym3154 := z.EncBinary() + _ = yym3154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3108 || yy2arr3108 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3108[1] { - yym3113 := z.EncBinary() - _ = yym3113 + if yyq3151[1] { + yym3156 := z.EncBinary() + _ = yym3156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39819,70 +40430,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3108[1] { + if yyq3151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3114 := z.EncBinary() - _ = yym3114 + yym3157 := z.EncBinary() + _ = yym3157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3108 || yy2arr3108 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3108[2] { - yy3116 := &x.ObjectMeta - yy3116.CodecEncodeSelf(e) + if yyq3151[2] { + yy3159 := &x.ObjectMeta + yy3159.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3108[2] { + if yyq3151[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3117 := &x.ObjectMeta - yy3117.CodecEncodeSelf(e) + yy3160 := &x.ObjectMeta + yy3160.CodecEncodeSelf(e) } } - if yyr3108 || yy2arr3108 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3108[3] { - yy3119 := &x.Spec - yy3119.CodecEncodeSelf(e) + if yyq3151[3] { + yy3162 := &x.Spec + yy3162.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3108[3] { + if yyq3151[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3120 := &x.Spec - yy3120.CodecEncodeSelf(e) + yy3163 := &x.Spec + yy3163.CodecEncodeSelf(e) } } - if yyr3108 || yy2arr3108 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3108[4] { - yy3122 := &x.Status - yy3122.CodecEncodeSelf(e) + if yyq3151[4] { + yy3165 := &x.Status + yy3165.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3108[4] { + if yyq3151[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3123 := &x.Status - yy3123.CodecEncodeSelf(e) + yy3166 := &x.Status + yy3166.CodecEncodeSelf(e) } } - if yyr3108 || yy2arr3108 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39895,25 +40506,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3124 := z.DecBinary() - _ = yym3124 + yym3167 := z.DecBinary() + _ = yym3167 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3125 := r.ContainerType() - if yyct3125 == codecSelferValueTypeMap1234 { - yyl3125 := r.ReadMapStart() - if yyl3125 == 0 { + yyct3168 := r.ContainerType() + if yyct3168 == codecSelferValueTypeMap1234 { + yyl3168 := r.ReadMapStart() + if yyl3168 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3125, d) + x.codecDecodeSelfFromMap(yyl3168, d) } - } else if yyct3125 == codecSelferValueTypeArray1234 { - yyl3125 := r.ReadArrayStart() - if yyl3125 == 0 { + } else if yyct3168 == codecSelferValueTypeArray1234 { + yyl3168 := r.ReadArrayStart() + if yyl3168 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3125, d) + x.codecDecodeSelfFromArray(yyl3168, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39925,12 +40536,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3126Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3126Slc - var yyhl3126 bool = l >= 0 - for yyj3126 := 0; ; yyj3126++ { - if yyhl3126 { - if yyj3126 >= l { + var yys3169Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3169Slc + var yyhl3169 bool = l >= 0 + for yyj3169 := 0; ; yyj3169++ { + if yyhl3169 { + if yyj3169 >= l { break } } else { @@ -39939,10 +40550,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3126Slc = r.DecodeBytes(yys3126Slc, true, true) - yys3126 := string(yys3126Slc) + yys3169Slc = r.DecodeBytes(yys3169Slc, true, true) + yys3169 := string(yys3169Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3126 { + switch yys3169 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39959,27 +40570,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3129 := &x.ObjectMeta - yyv3129.CodecDecodeSelf(d) + yyv3172 := &x.ObjectMeta + yyv3172.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3130 := &x.Spec - yyv3130.CodecDecodeSelf(d) + yyv3173 := &x.Spec + yyv3173.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3131 := &x.Status - yyv3131.CodecDecodeSelf(d) + yyv3174 := &x.Status + yyv3174.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3126) - } // end switch yys3126 - } // end for yyj3126 + z.DecStructFieldNotFound(-1, yys3169) + } // end switch yys3169 + } // end for yyj3169 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39987,16 +40598,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3132 int - var yyb3132 bool - var yyhl3132 bool = l >= 0 - yyj3132++ - if yyhl3132 { - yyb3132 = yyj3132 > l + var yyj3175 int + var yyb3175 bool + var yyhl3175 bool = l >= 0 + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3132 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3132 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40006,13 +40617,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3132++ - if yyhl3132 { - yyb3132 = yyj3132 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3132 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3132 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40022,13 +40633,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3132++ - if yyhl3132 { - yyb3132 = yyj3132 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3132 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3132 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40036,16 +40647,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3135 := &x.ObjectMeta - yyv3135.CodecDecodeSelf(d) + yyv3178 := &x.ObjectMeta + yyv3178.CodecDecodeSelf(d) } - yyj3132++ - if yyhl3132 { - yyb3132 = yyj3132 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3132 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3132 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40053,16 +40664,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3136 := &x.Spec - yyv3136.CodecDecodeSelf(d) + yyv3179 := &x.Spec + yyv3179.CodecDecodeSelf(d) } - yyj3132++ - if yyhl3132 { - yyb3132 = yyj3132 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3132 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3132 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40070,21 +40681,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3137 := &x.Status - yyv3137.CodecDecodeSelf(d) + yyv3180 := &x.Status + yyv3180.CodecDecodeSelf(d) } for { - yyj3132++ - if yyhl3132 { - yyb3132 = yyj3132 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3132 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3132 { + if yyb3175 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3132-1, "") + z.DecStructFieldNotFound(yyj3175-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40096,37 +40707,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3138 := z.EncBinary() - _ = yym3138 + yym3181 := z.EncBinary() + _ = yym3181 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3139 := !z.EncBinary() - yy2arr3139 := z.EncBasicHandle().StructToArray - var yyq3139 [4]bool - _, _, _ = yysep3139, yyq3139, yy2arr3139 - const yyr3139 bool = false - yyq3139[0] = x.Kind != "" - yyq3139[1] = x.APIVersion != "" - yyq3139[2] = true - var yynn3139 int - if yyr3139 || yy2arr3139 { + yysep3182 := !z.EncBinary() + yy2arr3182 := z.EncBasicHandle().StructToArray + var yyq3182 [4]bool + _, _, _ = yysep3182, yyq3182, yy2arr3182 + const yyr3182 bool = false + yyq3182[0] = x.Kind != "" + yyq3182[1] = x.APIVersion != "" + yyq3182[2] = true + var yynn3182 int + if yyr3182 || yy2arr3182 { r.EncodeArrayStart(4) } else { - yynn3139 = 1 - for _, b := range yyq3139 { + yynn3182 = 1 + for _, b := range yyq3182 { if b { - yynn3139++ + yynn3182++ } } - r.EncodeMapStart(yynn3139) - yynn3139 = 0 + r.EncodeMapStart(yynn3182) + yynn3182 = 0 } - if yyr3139 || yy2arr3139 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3139[0] { - yym3141 := z.EncBinary() - _ = yym3141 + if yyq3182[0] { + yym3184 := z.EncBinary() + _ = yym3184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40135,23 +40746,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3139[0] { + if yyq3182[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3142 := z.EncBinary() - _ = yym3142 + yym3185 := z.EncBinary() + _ = yym3185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3139 || yy2arr3139 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3139[1] { - yym3144 := z.EncBinary() - _ = yym3144 + if yyq3182[1] { + yym3187 := z.EncBinary() + _ = yym3187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40160,54 +40771,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3139[1] { + if yyq3182[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3145 := z.EncBinary() - _ = yym3145 + yym3188 := z.EncBinary() + _ = yym3188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3139 || yy2arr3139 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3139[2] { - yy3147 := &x.ListMeta - yym3148 := z.EncBinary() - _ = yym3148 + if yyq3182[2] { + yy3190 := &x.ListMeta + yym3191 := z.EncBinary() + _ = yym3191 if false { - } else if z.HasExtensions() && z.EncExt(yy3147) { + } else if z.HasExtensions() && z.EncExt(yy3190) { } else { - z.EncFallback(yy3147) + z.EncFallback(yy3190) } } else { r.EncodeNil() } } else { - if yyq3139[2] { + if yyq3182[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3149 := &x.ListMeta - yym3150 := z.EncBinary() - _ = yym3150 + yy3192 := &x.ListMeta + yym3193 := z.EncBinary() + _ = yym3193 if false { - } else if z.HasExtensions() && z.EncExt(yy3149) { + } else if z.HasExtensions() && z.EncExt(yy3192) { } else { - z.EncFallback(yy3149) + z.EncFallback(yy3192) } } } - if yyr3139 || yy2arr3139 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3152 := z.EncBinary() - _ = yym3152 + yym3195 := z.EncBinary() + _ = yym3195 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -40220,15 +40831,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3153 := z.EncBinary() - _ = yym3153 + yym3196 := z.EncBinary() + _ = yym3196 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3139 || yy2arr3139 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40241,25 +40852,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3154 := z.DecBinary() - _ = yym3154 + yym3197 := z.DecBinary() + _ = yym3197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3155 := r.ContainerType() - if yyct3155 == codecSelferValueTypeMap1234 { - yyl3155 := r.ReadMapStart() - if yyl3155 == 0 { + yyct3198 := r.ContainerType() + if yyct3198 == codecSelferValueTypeMap1234 { + yyl3198 := r.ReadMapStart() + if yyl3198 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3155, d) + x.codecDecodeSelfFromMap(yyl3198, d) } - } else if yyct3155 == codecSelferValueTypeArray1234 { - yyl3155 := r.ReadArrayStart() - if yyl3155 == 0 { + } else if yyct3198 == codecSelferValueTypeArray1234 { + yyl3198 := r.ReadArrayStart() + if yyl3198 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3155, d) + x.codecDecodeSelfFromArray(yyl3198, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40271,12 +40882,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3156Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3156Slc - var yyhl3156 bool = l >= 0 - for yyj3156 := 0; ; yyj3156++ { - if yyhl3156 { - if yyj3156 >= l { + var yys3199Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3199Slc + var yyhl3199 bool = l >= 0 + for yyj3199 := 0; ; yyj3199++ { + if yyhl3199 { + if yyj3199 >= l { break } } else { @@ -40285,10 +40896,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3156Slc = r.DecodeBytes(yys3156Slc, true, true) - yys3156 := string(yys3156Slc) + yys3199Slc = r.DecodeBytes(yys3199Slc, true, true) + yys3199 := string(yys3199Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3156 { + switch yys3199 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40305,31 +40916,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3159 := &x.ListMeta - yym3160 := z.DecBinary() - _ = yym3160 + yyv3202 := &x.ListMeta + yym3203 := z.DecBinary() + _ = yym3203 if false { - } else if z.HasExtensions() && z.DecExt(yyv3159) { + } else if z.HasExtensions() && z.DecExt(yyv3202) { } else { - z.DecFallback(yyv3159, false) + z.DecFallback(yyv3202, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3161 := &x.Items - yym3162 := z.DecBinary() - _ = yym3162 + yyv3204 := &x.Items + yym3205 := z.DecBinary() + _ = yym3205 if false { } else { - h.decSliceNode((*[]Node)(yyv3161), d) + h.decSliceNode((*[]Node)(yyv3204), d) } } default: - z.DecStructFieldNotFound(-1, yys3156) - } // end switch yys3156 - } // end for yyj3156 + z.DecStructFieldNotFound(-1, yys3199) + } // end switch yys3199 + } // end for yyj3199 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40337,16 +40948,16 @@ func (x *NodeList) 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 yyj3206 int + var yyb3206 bool + var yyhl3206 bool = l >= 0 + yyj3206++ + if yyhl3206 { + yyb3206 = yyj3206 > l } else { - yyb3163 = r.CheckBreak() + yyb3206 = r.CheckBreak() } - if yyb3163 { + if yyb3206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40356,13 +40967,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3206++ + if yyhl3206 { + yyb3206 = yyj3206 > l } else { - yyb3163 = r.CheckBreak() + yyb3206 = r.CheckBreak() } - if yyb3163 { + if yyb3206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40372,13 +40983,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3206++ + if yyhl3206 { + yyb3206 = yyj3206 > l } else { - yyb3163 = r.CheckBreak() + yyb3206 = r.CheckBreak() } - if yyb3163 { + if yyb3206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40386,22 +40997,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3166 := &x.ListMeta - yym3167 := z.DecBinary() - _ = yym3167 + yyv3209 := &x.ListMeta + yym3210 := z.DecBinary() + _ = yym3210 if false { - } else if z.HasExtensions() && z.DecExt(yyv3166) { + } else if z.HasExtensions() && z.DecExt(yyv3209) { } else { - z.DecFallback(yyv3166, false) + z.DecFallback(yyv3209, false) } } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3206++ + if yyhl3206 { + yyb3206 = yyj3206 > l } else { - yyb3163 = r.CheckBreak() + yyb3206 = r.CheckBreak() } - if yyb3163 { + if yyb3206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40409,26 +41020,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3168 := &x.Items - yym3169 := z.DecBinary() - _ = yym3169 + yyv3211 := &x.Items + yym3212 := z.DecBinary() + _ = yym3212 if false { } else { - h.decSliceNode((*[]Node)(yyv3168), d) + h.decSliceNode((*[]Node)(yyv3211), d) } } for { - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3206++ + if yyhl3206 { + yyb3206 = yyj3206 > l } else { - yyb3163 = r.CheckBreak() + yyb3206 = r.CheckBreak() } - if yyb3163 { + if yyb3206 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3163-1, "") + z.DecStructFieldNotFound(yyj3206-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40440,36 +41051,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3170 := z.EncBinary() - _ = yym3170 + yym3213 := z.EncBinary() + _ = yym3213 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3171 := !z.EncBinary() - yy2arr3171 := z.EncBasicHandle().StructToArray - var yyq3171 [1]bool - _, _, _ = yysep3171, yyq3171, yy2arr3171 - const yyr3171 bool = false - var yynn3171 int - if yyr3171 || yy2arr3171 { + yysep3214 := !z.EncBinary() + yy2arr3214 := z.EncBasicHandle().StructToArray + var yyq3214 [1]bool + _, _, _ = yysep3214, yyq3214, yy2arr3214 + const yyr3214 bool = false + var yynn3214 int + if yyr3214 || yy2arr3214 { r.EncodeArrayStart(1) } else { - yynn3171 = 1 - for _, b := range yyq3171 { + yynn3214 = 1 + for _, b := range yyq3214 { if b { - yynn3171++ + yynn3214++ } } - r.EncodeMapStart(yynn3171) - yynn3171 = 0 + r.EncodeMapStart(yynn3214) + yynn3214 = 0 } - if yyr3171 || yy2arr3171 { + if yyr3214 || yy2arr3214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3173 := z.EncBinary() - _ = yym3173 + yym3216 := z.EncBinary() + _ = yym3216 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -40482,15 +41093,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym3174 := z.EncBinary() - _ = yym3174 + yym3217 := z.EncBinary() + _ = yym3217 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr3171 || yy2arr3171 { + if yyr3214 || yy2arr3214 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40503,25 +41114,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3175 := z.DecBinary() - _ = yym3175 + yym3218 := z.DecBinary() + _ = yym3218 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3176 := r.ContainerType() - if yyct3176 == codecSelferValueTypeMap1234 { - yyl3176 := r.ReadMapStart() - if yyl3176 == 0 { + yyct3219 := r.ContainerType() + if yyct3219 == codecSelferValueTypeMap1234 { + yyl3219 := r.ReadMapStart() + if yyl3219 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3176, d) + x.codecDecodeSelfFromMap(yyl3219, d) } - } else if yyct3176 == codecSelferValueTypeArray1234 { - yyl3176 := r.ReadArrayStart() - if yyl3176 == 0 { + } else if yyct3219 == codecSelferValueTypeArray1234 { + yyl3219 := r.ReadArrayStart() + if yyl3219 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3176, d) + x.codecDecodeSelfFromArray(yyl3219, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40533,12 +41144,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3177Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3177Slc - var yyhl3177 bool = l >= 0 - for yyj3177 := 0; ; yyj3177++ { - if yyhl3177 { - if yyj3177 >= l { + var yys3220Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3220Slc + var yyhl3220 bool = l >= 0 + for yyj3220 := 0; ; yyj3220++ { + if yyhl3220 { + if yyj3220 >= l { break } } else { @@ -40547,26 +41158,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3177Slc = r.DecodeBytes(yys3177Slc, true, true) - yys3177 := string(yys3177Slc) + yys3220Slc = r.DecodeBytes(yys3220Slc, true, true) + yys3220 := string(yys3220Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3177 { + switch yys3220 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3178 := &x.Finalizers - yym3179 := z.DecBinary() - _ = yym3179 + yyv3221 := &x.Finalizers + yym3222 := z.DecBinary() + _ = yym3222 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3178), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3221), d) } } default: - z.DecStructFieldNotFound(-1, yys3177) - } // end switch yys3177 - } // end for yyj3177 + z.DecStructFieldNotFound(-1, yys3220) + } // end switch yys3220 + } // end for yyj3220 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40574,16 +41185,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3180 int - var yyb3180 bool - var yyhl3180 bool = l >= 0 - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + var yyj3223 int + var yyb3223 bool + var yyhl3223 bool = l >= 0 + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40591,26 +41202,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3181 := &x.Finalizers - yym3182 := z.DecBinary() - _ = yym3182 + yyv3224 := &x.Finalizers + yym3225 := z.DecBinary() + _ = yym3225 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3181), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3224), d) } } for { - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3180-1, "") + z.DecStructFieldNotFound(yyj3223-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40619,8 +41230,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3183 := z.EncBinary() - _ = yym3183 + yym3226 := z.EncBinary() + _ = yym3226 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40632,8 +41243,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3184 := z.DecBinary() - _ = yym3184 + yym3227 := z.DecBinary() + _ = yym3227 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40648,46 +41259,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3185 := z.EncBinary() - _ = yym3185 + yym3228 := z.EncBinary() + _ = yym3228 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3186 := !z.EncBinary() - yy2arr3186 := z.EncBasicHandle().StructToArray - var yyq3186 [1]bool - _, _, _ = yysep3186, yyq3186, yy2arr3186 - const yyr3186 bool = false - yyq3186[0] = x.Phase != "" - var yynn3186 int - if yyr3186 || yy2arr3186 { + yysep3229 := !z.EncBinary() + yy2arr3229 := z.EncBasicHandle().StructToArray + var yyq3229 [1]bool + _, _, _ = yysep3229, yyq3229, yy2arr3229 + const yyr3229 bool = false + yyq3229[0] = x.Phase != "" + var yynn3229 int + if yyr3229 || yy2arr3229 { r.EncodeArrayStart(1) } else { - yynn3186 = 0 - for _, b := range yyq3186 { + yynn3229 = 0 + for _, b := range yyq3229 { if b { - yynn3186++ + yynn3229++ } } - r.EncodeMapStart(yynn3186) - yynn3186 = 0 + r.EncodeMapStart(yynn3229) + yynn3229 = 0 } - if yyr3186 || yy2arr3186 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3186[0] { + if yyq3229[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3186[0] { + if yyq3229[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3186 || yy2arr3186 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40700,25 +41311,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3188 := z.DecBinary() - _ = yym3188 + yym3231 := z.DecBinary() + _ = yym3231 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3189 := r.ContainerType() - if yyct3189 == codecSelferValueTypeMap1234 { - yyl3189 := r.ReadMapStart() - if yyl3189 == 0 { + yyct3232 := r.ContainerType() + if yyct3232 == codecSelferValueTypeMap1234 { + yyl3232 := r.ReadMapStart() + if yyl3232 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3189, d) + x.codecDecodeSelfFromMap(yyl3232, d) } - } else if yyct3189 == codecSelferValueTypeArray1234 { - yyl3189 := r.ReadArrayStart() - if yyl3189 == 0 { + } else if yyct3232 == codecSelferValueTypeArray1234 { + yyl3232 := r.ReadArrayStart() + if yyl3232 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3189, d) + x.codecDecodeSelfFromArray(yyl3232, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40730,12 +41341,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3190Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3190Slc - var yyhl3190 bool = l >= 0 - for yyj3190 := 0; ; yyj3190++ { - if yyhl3190 { - if yyj3190 >= l { + var yys3233Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3233Slc + var yyhl3233 bool = l >= 0 + for yyj3233 := 0; ; yyj3233++ { + if yyhl3233 { + if yyj3233 >= l { break } } else { @@ -40744,10 +41355,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3190Slc = r.DecodeBytes(yys3190Slc, true, true) - yys3190 := string(yys3190Slc) + yys3233Slc = r.DecodeBytes(yys3233Slc, true, true) + yys3233 := string(yys3233Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3190 { + switch yys3233 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -40755,9 +41366,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3190) - } // end switch yys3190 - } // end for yyj3190 + z.DecStructFieldNotFound(-1, yys3233) + } // end switch yys3233 + } // end for yyj3233 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40765,16 +41376,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3192 int - var yyb3192 bool - var yyhl3192 bool = l >= 0 - yyj3192++ - if yyhl3192 { - yyb3192 = yyj3192 > l + var yyj3235 int + var yyb3235 bool + var yyhl3235 bool = l >= 0 + yyj3235++ + if yyhl3235 { + yyb3235 = yyj3235 > l } else { - yyb3192 = r.CheckBreak() + yyb3235 = r.CheckBreak() } - if yyb3192 { + if yyb3235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40785,17 +41396,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3192++ - if yyhl3192 { - yyb3192 = yyj3192 > l + yyj3235++ + if yyhl3235 { + yyb3235 = yyj3235 > l } else { - yyb3192 = r.CheckBreak() + yyb3235 = r.CheckBreak() } - if yyb3192 { + if yyb3235 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3192-1, "") + z.DecStructFieldNotFound(yyj3235-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40804,8 +41415,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3194 := z.EncBinary() - _ = yym3194 + yym3237 := z.EncBinary() + _ = yym3237 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40817,8 +41428,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3195 := z.DecBinary() - _ = yym3195 + yym3238 := z.DecBinary() + _ = yym3238 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40833,39 +41444,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3196 := z.EncBinary() - _ = yym3196 + yym3239 := z.EncBinary() + _ = yym3239 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3197 := !z.EncBinary() - yy2arr3197 := z.EncBasicHandle().StructToArray - var yyq3197 [5]bool - _, _, _ = yysep3197, yyq3197, yy2arr3197 - const yyr3197 bool = false - yyq3197[0] = x.Kind != "" - yyq3197[1] = x.APIVersion != "" - yyq3197[2] = true - yyq3197[3] = true - yyq3197[4] = true - var yynn3197 int - if yyr3197 || yy2arr3197 { + yysep3240 := !z.EncBinary() + yy2arr3240 := z.EncBasicHandle().StructToArray + var yyq3240 [5]bool + _, _, _ = yysep3240, yyq3240, yy2arr3240 + const yyr3240 bool = false + yyq3240[0] = x.Kind != "" + yyq3240[1] = x.APIVersion != "" + yyq3240[2] = true + yyq3240[3] = true + yyq3240[4] = true + var yynn3240 int + if yyr3240 || yy2arr3240 { r.EncodeArrayStart(5) } else { - yynn3197 = 0 - for _, b := range yyq3197 { + yynn3240 = 0 + for _, b := range yyq3240 { if b { - yynn3197++ + yynn3240++ } } - r.EncodeMapStart(yynn3197) - yynn3197 = 0 + r.EncodeMapStart(yynn3240) + yynn3240 = 0 } - if yyr3197 || yy2arr3197 { + if yyr3240 || yy2arr3240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[0] { - yym3199 := z.EncBinary() - _ = yym3199 + if yyq3240[0] { + yym3242 := z.EncBinary() + _ = yym3242 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40874,23 +41485,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3197[0] { + if yyq3240[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3200 := z.EncBinary() - _ = yym3200 + yym3243 := z.EncBinary() + _ = yym3243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3197 || yy2arr3197 { + if yyr3240 || yy2arr3240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[1] { - yym3202 := z.EncBinary() - _ = yym3202 + if yyq3240[1] { + yym3245 := z.EncBinary() + _ = yym3245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40899,70 +41510,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3197[1] { + if yyq3240[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3203 := z.EncBinary() - _ = yym3203 + yym3246 := z.EncBinary() + _ = yym3246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3197 || yy2arr3197 { + if yyr3240 || yy2arr3240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[2] { - yy3205 := &x.ObjectMeta - yy3205.CodecEncodeSelf(e) + if yyq3240[2] { + yy3248 := &x.ObjectMeta + yy3248.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3197[2] { + if yyq3240[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3206 := &x.ObjectMeta - yy3206.CodecEncodeSelf(e) + yy3249 := &x.ObjectMeta + yy3249.CodecEncodeSelf(e) } } - if yyr3197 || yy2arr3197 { + if yyr3240 || yy2arr3240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[3] { - yy3208 := &x.Spec - yy3208.CodecEncodeSelf(e) + if yyq3240[3] { + yy3251 := &x.Spec + yy3251.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3197[3] { + if yyq3240[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3209 := &x.Spec - yy3209.CodecEncodeSelf(e) + yy3252 := &x.Spec + yy3252.CodecEncodeSelf(e) } } - if yyr3197 || yy2arr3197 { + if yyr3240 || yy2arr3240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[4] { - yy3211 := &x.Status - yy3211.CodecEncodeSelf(e) + if yyq3240[4] { + yy3254 := &x.Status + yy3254.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3197[4] { + if yyq3240[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3212 := &x.Status - yy3212.CodecEncodeSelf(e) + yy3255 := &x.Status + yy3255.CodecEncodeSelf(e) } } - if yyr3197 || yy2arr3197 { + if yyr3240 || yy2arr3240 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40975,25 +41586,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3213 := z.DecBinary() - _ = yym3213 + yym3256 := z.DecBinary() + _ = yym3256 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3214 := r.ContainerType() - if yyct3214 == codecSelferValueTypeMap1234 { - yyl3214 := r.ReadMapStart() - if yyl3214 == 0 { + yyct3257 := r.ContainerType() + if yyct3257 == codecSelferValueTypeMap1234 { + yyl3257 := r.ReadMapStart() + if yyl3257 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3214, d) + x.codecDecodeSelfFromMap(yyl3257, d) } - } else if yyct3214 == codecSelferValueTypeArray1234 { - yyl3214 := r.ReadArrayStart() - if yyl3214 == 0 { + } else if yyct3257 == codecSelferValueTypeArray1234 { + yyl3257 := r.ReadArrayStart() + if yyl3257 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3214, d) + x.codecDecodeSelfFromArray(yyl3257, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41005,12 +41616,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3215Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3215Slc - var yyhl3215 bool = l >= 0 - for yyj3215 := 0; ; yyj3215++ { - if yyhl3215 { - if yyj3215 >= l { + var yys3258Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3258Slc + var yyhl3258 bool = l >= 0 + for yyj3258 := 0; ; yyj3258++ { + if yyhl3258 { + if yyj3258 >= l { break } } else { @@ -41019,10 +41630,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3215Slc = r.DecodeBytes(yys3215Slc, true, true) - yys3215 := string(yys3215Slc) + yys3258Slc = r.DecodeBytes(yys3258Slc, true, true) + yys3258 := string(yys3258Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3215 { + switch yys3258 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41039,27 +41650,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3218 := &x.ObjectMeta - yyv3218.CodecDecodeSelf(d) + yyv3261 := &x.ObjectMeta + yyv3261.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3219 := &x.Spec - yyv3219.CodecDecodeSelf(d) + yyv3262 := &x.Spec + yyv3262.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3220 := &x.Status - yyv3220.CodecDecodeSelf(d) + yyv3263 := &x.Status + yyv3263.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3215) - } // end switch yys3215 - } // end for yyj3215 + z.DecStructFieldNotFound(-1, yys3258) + } // end switch yys3258 + } // end for yyj3258 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41067,16 +41678,16 @@ func (x *Namespace) 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 yyj3264 int + var yyb3264 bool + var yyhl3264 bool = l >= 0 + yyj3264++ + if yyhl3264 { + yyb3264 = yyj3264 > l } else { - yyb3221 = r.CheckBreak() + yyb3264 = r.CheckBreak() } - if yyb3221 { + if yyb3264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41086,13 +41697,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3264++ + if yyhl3264 { + yyb3264 = yyj3264 > l } else { - yyb3221 = r.CheckBreak() + yyb3264 = r.CheckBreak() } - if yyb3221 { + if yyb3264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41102,13 +41713,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3264++ + if yyhl3264 { + yyb3264 = yyj3264 > l } else { - yyb3221 = r.CheckBreak() + yyb3264 = r.CheckBreak() } - if yyb3221 { + if yyb3264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41116,16 +41727,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3224 := &x.ObjectMeta - yyv3224.CodecDecodeSelf(d) + yyv3267 := &x.ObjectMeta + yyv3267.CodecDecodeSelf(d) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3264++ + if yyhl3264 { + yyb3264 = yyj3264 > l } else { - yyb3221 = r.CheckBreak() + yyb3264 = r.CheckBreak() } - if yyb3221 { + if yyb3264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41133,16 +41744,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3225 := &x.Spec - yyv3225.CodecDecodeSelf(d) + yyv3268 := &x.Spec + yyv3268.CodecDecodeSelf(d) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3264++ + if yyhl3264 { + yyb3264 = yyj3264 > l } else { - yyb3221 = r.CheckBreak() + yyb3264 = r.CheckBreak() } - if yyb3221 { + if yyb3264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41150,21 +41761,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3226 := &x.Status - yyv3226.CodecDecodeSelf(d) + yyv3269 := &x.Status + yyv3269.CodecDecodeSelf(d) } for { - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3264++ + if yyhl3264 { + yyb3264 = yyj3264 > l } else { - yyb3221 = r.CheckBreak() + yyb3264 = r.CheckBreak() } - if yyb3221 { + if yyb3264 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3221-1, "") + z.DecStructFieldNotFound(yyj3264-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41176,37 +41787,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3227 := z.EncBinary() - _ = yym3227 + yym3270 := z.EncBinary() + _ = yym3270 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3228 := !z.EncBinary() - yy2arr3228 := z.EncBasicHandle().StructToArray - var yyq3228 [4]bool - _, _, _ = yysep3228, yyq3228, yy2arr3228 - const yyr3228 bool = false - yyq3228[0] = x.Kind != "" - yyq3228[1] = x.APIVersion != "" - yyq3228[2] = true - var yynn3228 int - if yyr3228 || yy2arr3228 { + yysep3271 := !z.EncBinary() + yy2arr3271 := z.EncBasicHandle().StructToArray + var yyq3271 [4]bool + _, _, _ = yysep3271, yyq3271, yy2arr3271 + const yyr3271 bool = false + yyq3271[0] = x.Kind != "" + yyq3271[1] = x.APIVersion != "" + yyq3271[2] = true + var yynn3271 int + if yyr3271 || yy2arr3271 { r.EncodeArrayStart(4) } else { - yynn3228 = 1 - for _, b := range yyq3228 { + yynn3271 = 1 + for _, b := range yyq3271 { if b { - yynn3228++ + yynn3271++ } } - r.EncodeMapStart(yynn3228) - yynn3228 = 0 + r.EncodeMapStart(yynn3271) + yynn3271 = 0 } - if yyr3228 || yy2arr3228 { + if yyr3271 || yy2arr3271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3228[0] { - yym3230 := z.EncBinary() - _ = yym3230 + if yyq3271[0] { + yym3273 := z.EncBinary() + _ = yym3273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41215,23 +41826,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3228[0] { + if yyq3271[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3231 := z.EncBinary() - _ = yym3231 + yym3274 := z.EncBinary() + _ = yym3274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3228 || yy2arr3228 { + if yyr3271 || yy2arr3271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3228[1] { - yym3233 := z.EncBinary() - _ = yym3233 + if yyq3271[1] { + yym3276 := z.EncBinary() + _ = yym3276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41240,54 +41851,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3228[1] { + if yyq3271[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3234 := z.EncBinary() - _ = yym3234 + yym3277 := z.EncBinary() + _ = yym3277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3228 || yy2arr3228 { + if yyr3271 || yy2arr3271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3228[2] { - yy3236 := &x.ListMeta - yym3237 := z.EncBinary() - _ = yym3237 + if yyq3271[2] { + yy3279 := &x.ListMeta + yym3280 := z.EncBinary() + _ = yym3280 if false { - } else if z.HasExtensions() && z.EncExt(yy3236) { + } else if z.HasExtensions() && z.EncExt(yy3279) { } else { - z.EncFallback(yy3236) + z.EncFallback(yy3279) } } else { r.EncodeNil() } } else { - if yyq3228[2] { + if yyq3271[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3238 := &x.ListMeta - yym3239 := z.EncBinary() - _ = yym3239 + yy3281 := &x.ListMeta + yym3282 := z.EncBinary() + _ = yym3282 if false { - } else if z.HasExtensions() && z.EncExt(yy3238) { + } else if z.HasExtensions() && z.EncExt(yy3281) { } else { - z.EncFallback(yy3238) + z.EncFallback(yy3281) } } } - if yyr3228 || yy2arr3228 { + if yyr3271 || yy2arr3271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3241 := z.EncBinary() - _ = yym3241 + yym3284 := z.EncBinary() + _ = yym3284 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -41300,15 +41911,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3242 := z.EncBinary() - _ = yym3242 + yym3285 := z.EncBinary() + _ = yym3285 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3228 || yy2arr3228 { + if yyr3271 || yy2arr3271 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41321,25 +41932,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3243 := z.DecBinary() - _ = yym3243 + yym3286 := z.DecBinary() + _ = yym3286 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3244 := r.ContainerType() - if yyct3244 == codecSelferValueTypeMap1234 { - yyl3244 := r.ReadMapStart() - if yyl3244 == 0 { + yyct3287 := r.ContainerType() + if yyct3287 == codecSelferValueTypeMap1234 { + yyl3287 := r.ReadMapStart() + if yyl3287 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3244, d) + x.codecDecodeSelfFromMap(yyl3287, d) } - } else if yyct3244 == codecSelferValueTypeArray1234 { - yyl3244 := r.ReadArrayStart() - if yyl3244 == 0 { + } else if yyct3287 == codecSelferValueTypeArray1234 { + yyl3287 := r.ReadArrayStart() + if yyl3287 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3244, d) + x.codecDecodeSelfFromArray(yyl3287, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41351,12 +41962,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3245Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3245Slc - var yyhl3245 bool = l >= 0 - for yyj3245 := 0; ; yyj3245++ { - if yyhl3245 { - if yyj3245 >= l { + var yys3288Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3288Slc + var yyhl3288 bool = l >= 0 + for yyj3288 := 0; ; yyj3288++ { + if yyhl3288 { + if yyj3288 >= l { break } } else { @@ -41365,10 +41976,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3245Slc = r.DecodeBytes(yys3245Slc, true, true) - yys3245 := string(yys3245Slc) + yys3288Slc = r.DecodeBytes(yys3288Slc, true, true) + yys3288 := string(yys3288Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3245 { + switch yys3288 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41385,31 +41996,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3248 := &x.ListMeta - yym3249 := z.DecBinary() - _ = yym3249 + yyv3291 := &x.ListMeta + yym3292 := z.DecBinary() + _ = yym3292 if false { - } else if z.HasExtensions() && z.DecExt(yyv3248) { + } else if z.HasExtensions() && z.DecExt(yyv3291) { } else { - z.DecFallback(yyv3248, false) + z.DecFallback(yyv3291, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3250 := &x.Items - yym3251 := z.DecBinary() - _ = yym3251 + yyv3293 := &x.Items + yym3294 := z.DecBinary() + _ = yym3294 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3250), d) + h.decSliceNamespace((*[]Namespace)(yyv3293), d) } } default: - z.DecStructFieldNotFound(-1, yys3245) - } // end switch yys3245 - } // end for yyj3245 + z.DecStructFieldNotFound(-1, yys3288) + } // end switch yys3288 + } // end for yyj3288 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41417,16 +42028,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3252 int - var yyb3252 bool - var yyhl3252 bool = l >= 0 - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + var yyj3295 int + var yyb3295 bool + var yyhl3295 bool = l >= 0 + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3252 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3252 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41436,13 +42047,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3252 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3252 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41452,13 +42063,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3252 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3252 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41466,22 +42077,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3255 := &x.ListMeta - yym3256 := z.DecBinary() - _ = yym3256 + yyv3298 := &x.ListMeta + yym3299 := z.DecBinary() + _ = yym3299 if false { - } else if z.HasExtensions() && z.DecExt(yyv3255) { + } else if z.HasExtensions() && z.DecExt(yyv3298) { } else { - z.DecFallback(yyv3255, false) + z.DecFallback(yyv3298, false) } } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3252 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3252 { + if yyb3295 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41489,26 +42100,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3257 := &x.Items - yym3258 := z.DecBinary() - _ = yym3258 + yyv3300 := &x.Items + yym3301 := z.DecBinary() + _ = yym3301 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3257), d) + h.decSliceNamespace((*[]Namespace)(yyv3300), d) } } for { - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3295++ + if yyhl3295 { + yyb3295 = yyj3295 > l } else { - yyb3252 = r.CheckBreak() + yyb3295 = r.CheckBreak() } - if yyb3252 { + if yyb3295 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3252-1, "") + z.DecStructFieldNotFound(yyj3295-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41520,37 +42131,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3259 := z.EncBinary() - _ = yym3259 + yym3302 := z.EncBinary() + _ = yym3302 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3260 := !z.EncBinary() - yy2arr3260 := z.EncBasicHandle().StructToArray - var yyq3260 [4]bool - _, _, _ = yysep3260, yyq3260, yy2arr3260 - const yyr3260 bool = false - yyq3260[0] = x.Kind != "" - yyq3260[1] = x.APIVersion != "" - yyq3260[2] = true - var yynn3260 int - if yyr3260 || yy2arr3260 { + yysep3303 := !z.EncBinary() + yy2arr3303 := z.EncBasicHandle().StructToArray + var yyq3303 [4]bool + _, _, _ = yysep3303, yyq3303, yy2arr3303 + const yyr3303 bool = false + yyq3303[0] = x.Kind != "" + yyq3303[1] = x.APIVersion != "" + yyq3303[2] = true + var yynn3303 int + if yyr3303 || yy2arr3303 { r.EncodeArrayStart(4) } else { - yynn3260 = 1 - for _, b := range yyq3260 { + yynn3303 = 1 + for _, b := range yyq3303 { if b { - yynn3260++ + yynn3303++ } } - r.EncodeMapStart(yynn3260) - yynn3260 = 0 + r.EncodeMapStart(yynn3303) + yynn3303 = 0 } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[0] { - yym3262 := z.EncBinary() - _ = yym3262 + if yyq3303[0] { + yym3305 := z.EncBinary() + _ = yym3305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41559,23 +42170,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3260[0] { + if yyq3303[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3263 := z.EncBinary() - _ = yym3263 + yym3306 := z.EncBinary() + _ = yym3306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[1] { - yym3265 := z.EncBinary() - _ = yym3265 + if yyq3303[1] { + yym3308 := z.EncBinary() + _ = yym3308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41584,47 +42195,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3260[1] { + if yyq3303[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3266 := z.EncBinary() - _ = yym3266 + yym3309 := z.EncBinary() + _ = yym3309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[2] { - yy3268 := &x.ObjectMeta - yy3268.CodecEncodeSelf(e) + if yyq3303[2] { + yy3311 := &x.ObjectMeta + yy3311.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3260[2] { + if yyq3303[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3269 := &x.ObjectMeta - yy3269.CodecEncodeSelf(e) + yy3312 := &x.ObjectMeta + yy3312.CodecEncodeSelf(e) } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3271 := &x.Target - yy3271.CodecEncodeSelf(e) + yy3314 := &x.Target + yy3314.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3272 := &x.Target - yy3272.CodecEncodeSelf(e) + yy3315 := &x.Target + yy3315.CodecEncodeSelf(e) } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41637,25 +42248,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3273 := z.DecBinary() - _ = yym3273 + yym3316 := z.DecBinary() + _ = yym3316 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3274 := r.ContainerType() - if yyct3274 == codecSelferValueTypeMap1234 { - yyl3274 := r.ReadMapStart() - if yyl3274 == 0 { + yyct3317 := r.ContainerType() + if yyct3317 == codecSelferValueTypeMap1234 { + yyl3317 := r.ReadMapStart() + if yyl3317 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3274, d) + x.codecDecodeSelfFromMap(yyl3317, d) } - } else if yyct3274 == codecSelferValueTypeArray1234 { - yyl3274 := r.ReadArrayStart() - if yyl3274 == 0 { + } else if yyct3317 == codecSelferValueTypeArray1234 { + yyl3317 := r.ReadArrayStart() + if yyl3317 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3274, d) + x.codecDecodeSelfFromArray(yyl3317, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41667,12 +42278,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3275Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3275Slc - var yyhl3275 bool = l >= 0 - for yyj3275 := 0; ; yyj3275++ { - if yyhl3275 { - if yyj3275 >= l { + var yys3318Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3318Slc + var yyhl3318 bool = l >= 0 + for yyj3318 := 0; ; yyj3318++ { + if yyhl3318 { + if yyj3318 >= l { break } } else { @@ -41681,10 +42292,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3275Slc = r.DecodeBytes(yys3275Slc, true, true) - yys3275 := string(yys3275Slc) + yys3318Slc = r.DecodeBytes(yys3318Slc, true, true) + yys3318 := string(yys3318Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3275 { + switch yys3318 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41701,20 +42312,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3278 := &x.ObjectMeta - yyv3278.CodecDecodeSelf(d) + yyv3321 := &x.ObjectMeta + yyv3321.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3279 := &x.Target - yyv3279.CodecDecodeSelf(d) + yyv3322 := &x.Target + yyv3322.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3275) - } // end switch yys3275 - } // end for yyj3275 + z.DecStructFieldNotFound(-1, yys3318) + } // end switch yys3318 + } // end for yyj3318 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41722,16 +42333,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3280 int - var yyb3280 bool - var yyhl3280 bool = l >= 0 - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l + var yyj3323 int + var yyb3323 bool + var yyhl3323 bool = l >= 0 + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3280 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3280 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41741,13 +42352,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3280 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3280 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41757,13 +42368,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3280 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3280 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41771,16 +42382,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3283 := &x.ObjectMeta - yyv3283.CodecDecodeSelf(d) + yyv3326 := &x.ObjectMeta + yyv3326.CodecDecodeSelf(d) } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3280 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3280 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41788,21 +42399,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3284 := &x.Target - yyv3284.CodecDecodeSelf(d) + yyv3327 := &x.Target + yyv3327.CodecDecodeSelf(d) } for { - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3280 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3280 { + if yyb3323 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3280-1, "") + z.DecStructFieldNotFound(yyj3323-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41814,68 +42425,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3285 := z.EncBinary() - _ = yym3285 + yym3328 := z.EncBinary() + _ = yym3328 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3286 := !z.EncBinary() - yy2arr3286 := z.EncBasicHandle().StructToArray - var yyq3286 [1]bool - _, _, _ = yysep3286, yyq3286, yy2arr3286 - const yyr3286 bool = false - yyq3286[0] = x.UID != nil - var yynn3286 int - if yyr3286 || yy2arr3286 { + yysep3329 := !z.EncBinary() + yy2arr3329 := z.EncBasicHandle().StructToArray + var yyq3329 [1]bool + _, _, _ = yysep3329, yyq3329, yy2arr3329 + const yyr3329 bool = false + yyq3329[0] = x.UID != nil + var yynn3329 int + if yyr3329 || yy2arr3329 { r.EncodeArrayStart(1) } else { - yynn3286 = 0 - for _, b := range yyq3286 { + yynn3329 = 0 + for _, b := range yyq3329 { if b { - yynn3286++ + yynn3329++ } } - r.EncodeMapStart(yynn3286) - yynn3286 = 0 + r.EncodeMapStart(yynn3329) + yynn3329 = 0 } - if yyr3286 || yy2arr3286 { + if yyr3329 || yy2arr3329 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3286[0] { + if yyq3329[0] { if x.UID == nil { r.EncodeNil() } else { - yy3288 := *x.UID - yym3289 := z.EncBinary() - _ = yym3289 + yy3331 := *x.UID + yym3332 := z.EncBinary() + _ = yym3332 if false { - } else if z.HasExtensions() && z.EncExt(yy3288) { + } else if z.HasExtensions() && z.EncExt(yy3331) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3288)) + r.EncodeString(codecSelferC_UTF81234, string(yy3331)) } } } else { r.EncodeNil() } } else { - if yyq3286[0] { + if yyq3329[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3290 := *x.UID - yym3291 := z.EncBinary() - _ = yym3291 + yy3333 := *x.UID + yym3334 := z.EncBinary() + _ = yym3334 if false { - } else if z.HasExtensions() && z.EncExt(yy3290) { + } else if z.HasExtensions() && z.EncExt(yy3333) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3290)) + r.EncodeString(codecSelferC_UTF81234, string(yy3333)) } } } } - if yyr3286 || yy2arr3286 { + if yyr3329 || yy2arr3329 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41888,25 +42499,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3292 := z.DecBinary() - _ = yym3292 + yym3335 := z.DecBinary() + _ = yym3335 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3293 := r.ContainerType() - if yyct3293 == codecSelferValueTypeMap1234 { - yyl3293 := r.ReadMapStart() - if yyl3293 == 0 { + yyct3336 := r.ContainerType() + if yyct3336 == codecSelferValueTypeMap1234 { + yyl3336 := r.ReadMapStart() + if yyl3336 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3293, d) + x.codecDecodeSelfFromMap(yyl3336, d) } - } else if yyct3293 == codecSelferValueTypeArray1234 { - yyl3293 := r.ReadArrayStart() - if yyl3293 == 0 { + } else if yyct3336 == codecSelferValueTypeArray1234 { + yyl3336 := r.ReadArrayStart() + if yyl3336 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3293, d) + x.codecDecodeSelfFromArray(yyl3336, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41918,12 +42529,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3294Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3294Slc - var yyhl3294 bool = l >= 0 - for yyj3294 := 0; ; yyj3294++ { - if yyhl3294 { - if yyj3294 >= l { + var yys3337Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3337Slc + var yyhl3337 bool = l >= 0 + for yyj3337 := 0; ; yyj3337++ { + if yyhl3337 { + if yyj3337 >= l { break } } else { @@ -41932,10 +42543,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3294Slc = r.DecodeBytes(yys3294Slc, true, true) - yys3294 := string(yys3294Slc) + yys3337Slc = r.DecodeBytes(yys3337Slc, true, true) + yys3337 := string(yys3337Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3294 { + switch yys3337 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -41945,8 +42556,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3296 := z.DecBinary() - _ = yym3296 + yym3339 := z.DecBinary() + _ = yym3339 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41954,9 +42565,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3294) - } // end switch yys3294 - } // end for yyj3294 + z.DecStructFieldNotFound(-1, yys3337) + } // end switch yys3337 + } // end for yyj3337 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41964,16 +42575,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3297 int - var yyb3297 bool - var yyhl3297 bool = l >= 0 - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + var yyj3340 int + var yyb3340 bool + var yyhl3340 bool = l >= 0 + yyj3340++ + if yyhl3340 { + yyb3340 = yyj3340 > l } else { - yyb3297 = r.CheckBreak() + yyb3340 = r.CheckBreak() } - if yyb3297 { + if yyb3340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41986,8 +42597,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3299 := z.DecBinary() - _ = yym3299 + yym3342 := z.DecBinary() + _ = yym3342 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41995,17 +42606,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + yyj3340++ + if yyhl3340 { + yyb3340 = yyj3340 > l } else { - yyb3297 = r.CheckBreak() + yyb3340 = r.CheckBreak() } - if yyb3297 { + if yyb3340 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3297-1, "") + z.DecStructFieldNotFound(yyj3340-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42017,39 +42628,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3300 := z.EncBinary() - _ = yym3300 + yym3343 := z.EncBinary() + _ = yym3343 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3301 := !z.EncBinary() - yy2arr3301 := z.EncBasicHandle().StructToArray - var yyq3301 [5]bool - _, _, _ = yysep3301, yyq3301, yy2arr3301 - const yyr3301 bool = false - yyq3301[0] = x.Kind != "" - yyq3301[1] = x.APIVersion != "" - yyq3301[2] = x.GracePeriodSeconds != nil - yyq3301[3] = x.Preconditions != nil - yyq3301[4] = x.OrphanDependents != nil - var yynn3301 int - if yyr3301 || yy2arr3301 { + yysep3344 := !z.EncBinary() + yy2arr3344 := z.EncBasicHandle().StructToArray + var yyq3344 [5]bool + _, _, _ = yysep3344, yyq3344, yy2arr3344 + const yyr3344 bool = false + yyq3344[0] = x.Kind != "" + yyq3344[1] = x.APIVersion != "" + yyq3344[2] = x.GracePeriodSeconds != nil + yyq3344[3] = x.Preconditions != nil + yyq3344[4] = x.OrphanDependents != nil + var yynn3344 int + if yyr3344 || yy2arr3344 { r.EncodeArrayStart(5) } else { - yynn3301 = 0 - for _, b := range yyq3301 { + yynn3344 = 0 + for _, b := range yyq3344 { if b { - yynn3301++ + yynn3344++ } } - r.EncodeMapStart(yynn3301) - yynn3301 = 0 + r.EncodeMapStart(yynn3344) + yynn3344 = 0 } - if yyr3301 || yy2arr3301 { + if yyr3344 || yy2arr3344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[0] { - yym3303 := z.EncBinary() - _ = yym3303 + if yyq3344[0] { + yym3346 := z.EncBinary() + _ = yym3346 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42058,23 +42669,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3301[0] { + if yyq3344[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3304 := z.EncBinary() - _ = yym3304 + yym3347 := z.EncBinary() + _ = yym3347 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3301 || yy2arr3301 { + if yyr3344 || yy2arr3344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[1] { - yym3306 := z.EncBinary() - _ = yym3306 + if yyq3344[1] { + yym3349 := z.EncBinary() + _ = yym3349 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42083,56 +42694,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3301[1] { + if yyq3344[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3307 := z.EncBinary() - _ = yym3307 + yym3350 := z.EncBinary() + _ = yym3350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3301 || yy2arr3301 { + if yyr3344 || yy2arr3344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[2] { + if yyq3344[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3309 := *x.GracePeriodSeconds - yym3310 := z.EncBinary() - _ = yym3310 + yy3352 := *x.GracePeriodSeconds + yym3353 := z.EncBinary() + _ = yym3353 if false { } else { - r.EncodeInt(int64(yy3309)) + r.EncodeInt(int64(yy3352)) } } } else { r.EncodeNil() } } else { - if yyq3301[2] { + if yyq3344[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3311 := *x.GracePeriodSeconds - yym3312 := z.EncBinary() - _ = yym3312 + yy3354 := *x.GracePeriodSeconds + yym3355 := z.EncBinary() + _ = yym3355 if false { } else { - r.EncodeInt(int64(yy3311)) + r.EncodeInt(int64(yy3354)) } } } } - if yyr3301 || yy2arr3301 { + if yyr3344 || yy2arr3344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[3] { + if yyq3344[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -42142,7 +42753,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3301[3] { + if yyq3344[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42153,42 +42764,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3301 || yy2arr3301 { + if yyr3344 || yy2arr3344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[4] { + if yyq3344[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3315 := *x.OrphanDependents - yym3316 := z.EncBinary() - _ = yym3316 + yy3358 := *x.OrphanDependents + yym3359 := z.EncBinary() + _ = yym3359 if false { } else { - r.EncodeBool(bool(yy3315)) + r.EncodeBool(bool(yy3358)) } } } else { r.EncodeNil() } } else { - if yyq3301[4] { + if yyq3344[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3317 := *x.OrphanDependents - yym3318 := z.EncBinary() - _ = yym3318 + yy3360 := *x.OrphanDependents + yym3361 := z.EncBinary() + _ = yym3361 if false { } else { - r.EncodeBool(bool(yy3317)) + r.EncodeBool(bool(yy3360)) } } } } - if yyr3301 || yy2arr3301 { + if yyr3344 || yy2arr3344 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42201,25 +42812,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3319 := z.DecBinary() - _ = yym3319 + yym3362 := z.DecBinary() + _ = yym3362 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3320 := r.ContainerType() - if yyct3320 == codecSelferValueTypeMap1234 { - yyl3320 := r.ReadMapStart() - if yyl3320 == 0 { + yyct3363 := r.ContainerType() + if yyct3363 == codecSelferValueTypeMap1234 { + yyl3363 := r.ReadMapStart() + if yyl3363 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3320, d) + x.codecDecodeSelfFromMap(yyl3363, d) } - } else if yyct3320 == codecSelferValueTypeArray1234 { - yyl3320 := r.ReadArrayStart() - if yyl3320 == 0 { + } else if yyct3363 == codecSelferValueTypeArray1234 { + yyl3363 := r.ReadArrayStart() + if yyl3363 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3320, d) + x.codecDecodeSelfFromArray(yyl3363, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42231,12 +42842,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3321Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3321Slc - var yyhl3321 bool = l >= 0 - for yyj3321 := 0; ; yyj3321++ { - if yyhl3321 { - if yyj3321 >= l { + var yys3364Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3364Slc + var yyhl3364 bool = l >= 0 + for yyj3364 := 0; ; yyj3364++ { + if yyhl3364 { + if yyj3364 >= l { break } } else { @@ -42245,10 +42856,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3321Slc = r.DecodeBytes(yys3321Slc, true, true) - yys3321 := string(yys3321Slc) + yys3364Slc = r.DecodeBytes(yys3364Slc, true, true) + yys3364 := string(yys3364Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3321 { + switch yys3364 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42270,8 +42881,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3325 := z.DecBinary() - _ = yym3325 + yym3368 := z.DecBinary() + _ = yym3368 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -42297,17 +42908,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3328 := z.DecBinary() - _ = yym3328 + yym3371 := z.DecBinary() + _ = yym3371 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3321) - } // end switch yys3321 - } // end for yyj3321 + z.DecStructFieldNotFound(-1, yys3364) + } // end switch yys3364 + } // end for yyj3364 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42315,16 +42926,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3329 int - var yyb3329 bool - var yyhl3329 bool = l >= 0 - yyj3329++ - if yyhl3329 { - yyb3329 = yyj3329 > l + var yyj3372 int + var yyb3372 bool + var yyhl3372 bool = l >= 0 + yyj3372++ + if yyhl3372 { + yyb3372 = yyj3372 > l } else { - yyb3329 = r.CheckBreak() + yyb3372 = r.CheckBreak() } - if yyb3329 { + if yyb3372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42334,13 +42945,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3329++ - if yyhl3329 { - yyb3329 = yyj3329 > l + yyj3372++ + if yyhl3372 { + yyb3372 = yyj3372 > l } else { - yyb3329 = r.CheckBreak() + yyb3372 = r.CheckBreak() } - if yyb3329 { + if yyb3372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42350,13 +42961,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3329++ - if yyhl3329 { - yyb3329 = yyj3329 > l + yyj3372++ + if yyhl3372 { + yyb3372 = yyj3372 > l } else { - yyb3329 = r.CheckBreak() + yyb3372 = r.CheckBreak() } - if yyb3329 { + if yyb3372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42369,20 +42980,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3333 := z.DecBinary() - _ = yym3333 + yym3376 := z.DecBinary() + _ = yym3376 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3329++ - if yyhl3329 { - yyb3329 = yyj3329 > l + yyj3372++ + if yyhl3372 { + yyb3372 = yyj3372 > l } else { - yyb3329 = r.CheckBreak() + yyb3372 = r.CheckBreak() } - if yyb3329 { + if yyb3372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42397,13 +43008,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3329++ - if yyhl3329 { - yyb3329 = yyj3329 > l + yyj3372++ + if yyhl3372 { + yyb3372 = yyj3372 > l } else { - yyb3329 = r.CheckBreak() + yyb3372 = r.CheckBreak() } - if yyb3329 { + if yyb3372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42416,25 +43027,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3336 := z.DecBinary() - _ = yym3336 + yym3379 := z.DecBinary() + _ = yym3379 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3329++ - if yyhl3329 { - yyb3329 = yyj3329 > l + yyj3372++ + if yyhl3372 { + yyb3372 = yyj3372 > l } else { - yyb3329 = r.CheckBreak() + yyb3372 = r.CheckBreak() } - if yyb3329 { + if yyb3372 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3329-1, "") + z.DecStructFieldNotFound(yyj3372-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42446,36 +43057,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3337 := z.EncBinary() - _ = yym3337 + yym3380 := z.EncBinary() + _ = yym3380 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3338 := !z.EncBinary() - yy2arr3338 := z.EncBasicHandle().StructToArray - var yyq3338 [4]bool - _, _, _ = yysep3338, yyq3338, yy2arr3338 - const yyr3338 bool = false - yyq3338[0] = x.Kind != "" - yyq3338[1] = x.APIVersion != "" - var yynn3338 int - if yyr3338 || yy2arr3338 { + yysep3381 := !z.EncBinary() + yy2arr3381 := z.EncBasicHandle().StructToArray + var yyq3381 [4]bool + _, _, _ = yysep3381, yyq3381, yy2arr3381 + const yyr3381 bool = false + yyq3381[0] = x.Kind != "" + yyq3381[1] = x.APIVersion != "" + var yynn3381 int + if yyr3381 || yy2arr3381 { r.EncodeArrayStart(4) } else { - yynn3338 = 2 - for _, b := range yyq3338 { + yynn3381 = 2 + for _, b := range yyq3381 { if b { - yynn3338++ + yynn3381++ } } - r.EncodeMapStart(yynn3338) - yynn3338 = 0 + r.EncodeMapStart(yynn3381) + yynn3381 = 0 } - if yyr3338 || yy2arr3338 { + if yyr3381 || yy2arr3381 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3338[0] { - yym3340 := z.EncBinary() - _ = yym3340 + if yyq3381[0] { + yym3383 := z.EncBinary() + _ = yym3383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42484,23 +43095,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3338[0] { + if yyq3381[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3341 := z.EncBinary() - _ = yym3341 + yym3384 := z.EncBinary() + _ = yym3384 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3338 || yy2arr3338 { + if yyr3381 || yy2arr3381 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3338[1] { - yym3343 := z.EncBinary() - _ = yym3343 + if yyq3381[1] { + yym3386 := z.EncBinary() + _ = yym3386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42509,22 +43120,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3338[1] { + if yyq3381[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3344 := z.EncBinary() - _ = yym3344 + yym3387 := z.EncBinary() + _ = yym3387 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3338 || yy2arr3338 { + if yyr3381 || yy2arr3381 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3346 := z.EncBinary() - _ = yym3346 + yym3389 := z.EncBinary() + _ = yym3389 if false { } else { r.EncodeBool(bool(x.Export)) @@ -42533,17 +43144,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3347 := z.EncBinary() - _ = yym3347 + yym3390 := z.EncBinary() + _ = yym3390 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3338 || yy2arr3338 { + if yyr3381 || yy2arr3381 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3349 := z.EncBinary() - _ = yym3349 + yym3392 := z.EncBinary() + _ = yym3392 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -42552,14 +43163,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3350 := z.EncBinary() - _ = yym3350 + yym3393 := z.EncBinary() + _ = yym3393 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3338 || yy2arr3338 { + if yyr3381 || yy2arr3381 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42572,25 +43183,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3351 := z.DecBinary() - _ = yym3351 + yym3394 := z.DecBinary() + _ = yym3394 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3352 := r.ContainerType() - if yyct3352 == codecSelferValueTypeMap1234 { - yyl3352 := r.ReadMapStart() - if yyl3352 == 0 { + yyct3395 := r.ContainerType() + if yyct3395 == codecSelferValueTypeMap1234 { + yyl3395 := r.ReadMapStart() + if yyl3395 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3352, d) + x.codecDecodeSelfFromMap(yyl3395, d) } - } else if yyct3352 == codecSelferValueTypeArray1234 { - yyl3352 := r.ReadArrayStart() - if yyl3352 == 0 { + } else if yyct3395 == codecSelferValueTypeArray1234 { + yyl3395 := r.ReadArrayStart() + if yyl3395 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3352, d) + x.codecDecodeSelfFromArray(yyl3395, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42602,12 +43213,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3353Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3353Slc - var yyhl3353 bool = l >= 0 - for yyj3353 := 0; ; yyj3353++ { - if yyhl3353 { - if yyj3353 >= l { + var yys3396Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3396Slc + var yyhl3396 bool = l >= 0 + for yyj3396 := 0; ; yyj3396++ { + if yyhl3396 { + if yyj3396 >= l { break } } else { @@ -42616,10 +43227,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3353Slc = r.DecodeBytes(yys3353Slc, true, true) - yys3353 := string(yys3353Slc) + yys3396Slc = r.DecodeBytes(yys3396Slc, true, true) + yys3396 := string(yys3396Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3353 { + switch yys3396 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42645,9 +43256,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3353) - } // end switch yys3353 - } // end for yyj3353 + z.DecStructFieldNotFound(-1, yys3396) + } // end switch yys3396 + } // end for yyj3396 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42655,16 +43266,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3358 int - var yyb3358 bool - var yyhl3358 bool = l >= 0 - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + var yyj3401 int + var yyb3401 bool + var yyhl3401 bool = l >= 0 + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42674,13 +43285,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42690,13 +43301,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42706,13 +43317,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42723,17 +43334,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3358-1, "") + z.DecStructFieldNotFound(yyj3401-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42745,36 +43356,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3363 := z.EncBinary() - _ = yym3363 + yym3406 := z.EncBinary() + _ = yym3406 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3364 := !z.EncBinary() - yy2arr3364 := z.EncBasicHandle().StructToArray - var yyq3364 [7]bool - _, _, _ = yysep3364, yyq3364, yy2arr3364 - const yyr3364 bool = false - yyq3364[0] = x.Kind != "" - yyq3364[1] = x.APIVersion != "" - var yynn3364 int - if yyr3364 || yy2arr3364 { + yysep3407 := !z.EncBinary() + yy2arr3407 := z.EncBasicHandle().StructToArray + var yyq3407 [7]bool + _, _, _ = yysep3407, yyq3407, yy2arr3407 + const yyr3407 bool = false + yyq3407[0] = x.Kind != "" + yyq3407[1] = x.APIVersion != "" + var yynn3407 int + if yyr3407 || yy2arr3407 { r.EncodeArrayStart(7) } else { - yynn3364 = 5 - for _, b := range yyq3364 { + yynn3407 = 5 + for _, b := range yyq3407 { if b { - yynn3364++ + yynn3407++ } } - r.EncodeMapStart(yynn3364) - yynn3364 = 0 + r.EncodeMapStart(yynn3407) + yynn3407 = 0 } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3364[0] { - yym3366 := z.EncBinary() - _ = yym3366 + if yyq3407[0] { + yym3409 := z.EncBinary() + _ = yym3409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42783,23 +43394,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3364[0] { + if yyq3407[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3367 := z.EncBinary() - _ = yym3367 + yym3410 := z.EncBinary() + _ = yym3410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3364[1] { - yym3369 := z.EncBinary() - _ = yym3369 + if yyq3407[1] { + yym3412 := z.EncBinary() + _ = yym3412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42808,25 +43419,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3364[1] { + if yyq3407[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3370 := z.EncBinary() - _ = yym3370 + yym3413 := z.EncBinary() + _ = yym3413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3372 := z.EncBinary() - _ = yym3372 + yym3415 := z.EncBinary() + _ = yym3415 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -42840,8 +43451,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3373 := z.EncBinary() - _ = yym3373 + yym3416 := z.EncBinary() + _ = yym3416 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -42849,13 +43460,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3375 := z.EncBinary() - _ = yym3375 + yym3418 := z.EncBinary() + _ = yym3418 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -42869,8 +43480,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3376 := z.EncBinary() - _ = yym3376 + yym3419 := z.EncBinary() + _ = yym3419 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -42878,10 +43489,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3378 := z.EncBinary() - _ = yym3378 + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42890,17 +43501,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3379 := z.EncBinary() - _ = yym3379 + yym3422 := z.EncBinary() + _ = yym3422 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3381 := z.EncBinary() - _ = yym3381 + yym3424 := z.EncBinary() + _ = yym3424 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -42909,24 +43520,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3382 := z.EncBinary() - _ = yym3382 + yym3425 := z.EncBinary() + _ = yym3425 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3384 := *x.TimeoutSeconds - yym3385 := z.EncBinary() - _ = yym3385 + yy3427 := *x.TimeoutSeconds + yym3428 := z.EncBinary() + _ = yym3428 if false { } else { - r.EncodeInt(int64(yy3384)) + r.EncodeInt(int64(yy3427)) } } } else { @@ -42936,16 +43547,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3386 := *x.TimeoutSeconds - yym3387 := z.EncBinary() - _ = yym3387 + yy3429 := *x.TimeoutSeconds + yym3430 := z.EncBinary() + _ = yym3430 if false { } else { - r.EncodeInt(int64(yy3386)) + r.EncodeInt(int64(yy3429)) } } } - if yyr3364 || yy2arr3364 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42958,25 +43569,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3388 := z.DecBinary() - _ = yym3388 + yym3431 := z.DecBinary() + _ = yym3431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3389 := r.ContainerType() - if yyct3389 == codecSelferValueTypeMap1234 { - yyl3389 := r.ReadMapStart() - if yyl3389 == 0 { + yyct3432 := r.ContainerType() + if yyct3432 == codecSelferValueTypeMap1234 { + yyl3432 := r.ReadMapStart() + if yyl3432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3389, d) + x.codecDecodeSelfFromMap(yyl3432, d) } - } else if yyct3389 == codecSelferValueTypeArray1234 { - yyl3389 := r.ReadArrayStart() - if yyl3389 == 0 { + } else if yyct3432 == codecSelferValueTypeArray1234 { + yyl3432 := r.ReadArrayStart() + if yyl3432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3389, d) + x.codecDecodeSelfFromArray(yyl3432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42988,12 +43599,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3390Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3390Slc - var yyhl3390 bool = l >= 0 - for yyj3390 := 0; ; yyj3390++ { - if yyhl3390 { - if yyj3390 >= 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 { @@ -43002,10 +43613,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3390Slc = r.DecodeBytes(yys3390Slc, true, true) - yys3390 := string(yys3390Slc) + yys3433Slc = r.DecodeBytes(yys3433Slc, true, true) + yys3433 := string(yys3433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3390 { + switch yys3433 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43022,26 +43633,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3393 := &x.LabelSelector - yym3394 := z.DecBinary() - _ = yym3394 + yyv3436 := &x.LabelSelector + yym3437 := z.DecBinary() + _ = yym3437 if false { - } else if z.HasExtensions() && z.DecExt(yyv3393) { + } else if z.HasExtensions() && z.DecExt(yyv3436) { } else { - z.DecFallback(yyv3393, true) + z.DecFallback(yyv3436, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3395 := &x.FieldSelector - yym3396 := z.DecBinary() - _ = yym3396 + yyv3438 := &x.FieldSelector + yym3439 := z.DecBinary() + _ = yym3439 if false { - } else if z.HasExtensions() && z.DecExt(yyv3395) { + } else if z.HasExtensions() && z.DecExt(yyv3438) { } else { - z.DecFallback(yyv3395, true) + z.DecFallback(yyv3438, true) } } case "Watch": @@ -43065,17 +43676,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3400 := z.DecBinary() - _ = yym3400 + yym3443 := z.DecBinary() + _ = yym3443 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3390) - } // end switch yys3390 - } // end for yyj3390 + z.DecStructFieldNotFound(-1, yys3433) + } // end switch yys3433 + } // end for yyj3433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43083,16 +43694,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3401 int - var yyb3401 bool - var yyhl3401 bool = l >= 0 - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + var yyj3444 int + var yyb3444 bool + var yyhl3444 bool = l >= 0 + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43102,13 +43713,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43118,13 +43729,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43132,22 +43743,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3404 := &x.LabelSelector - yym3405 := z.DecBinary() - _ = yym3405 + yyv3447 := &x.LabelSelector + yym3448 := z.DecBinary() + _ = yym3448 if false { - } else if z.HasExtensions() && z.DecExt(yyv3404) { + } else if z.HasExtensions() && z.DecExt(yyv3447) { } else { - z.DecFallback(yyv3404, true) + z.DecFallback(yyv3447, true) } } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43155,22 +43766,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3406 := &x.FieldSelector - yym3407 := z.DecBinary() - _ = yym3407 + yyv3449 := &x.FieldSelector + yym3450 := z.DecBinary() + _ = yym3450 if false { - } else if z.HasExtensions() && z.DecExt(yyv3406) { + } else if z.HasExtensions() && z.DecExt(yyv3449) { } else { - z.DecFallback(yyv3406, true) + z.DecFallback(yyv3449, true) } } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43180,13 +43791,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43196,13 +43807,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43215,25 +43826,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3411 := z.DecBinary() - _ = yym3411 + yym3454 := z.DecBinary() + _ = yym3454 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3401++ - if yyhl3401 { - yyb3401 = yyj3401 > l + yyj3444++ + if yyhl3444 { + yyb3444 = yyj3444 > l } else { - yyb3401 = r.CheckBreak() + yyb3444 = r.CheckBreak() } - if yyb3401 { + if yyb3444 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3401-1, "") + z.DecStructFieldNotFound(yyj3444-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43245,36 +43856,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3412 := z.EncBinary() - _ = yym3412 + yym3455 := z.EncBinary() + _ = yym3455 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3413 := !z.EncBinary() - yy2arr3413 := z.EncBasicHandle().StructToArray - var yyq3413 [10]bool - _, _, _ = yysep3413, yyq3413, yy2arr3413 - const yyr3413 bool = false - yyq3413[0] = x.Kind != "" - yyq3413[1] = x.APIVersion != "" - var yynn3413 int - if yyr3413 || yy2arr3413 { + yysep3456 := !z.EncBinary() + yy2arr3456 := z.EncBasicHandle().StructToArray + var yyq3456 [10]bool + _, _, _ = yysep3456, yyq3456, yy2arr3456 + const yyr3456 bool = false + yyq3456[0] = x.Kind != "" + yyq3456[1] = x.APIVersion != "" + var yynn3456 int + if yyr3456 || yy2arr3456 { r.EncodeArrayStart(10) } else { - yynn3413 = 8 - for _, b := range yyq3413 { + yynn3456 = 8 + for _, b := range yyq3456 { if b { - yynn3413++ + yynn3456++ } } - r.EncodeMapStart(yynn3413) - yynn3413 = 0 + r.EncodeMapStart(yynn3456) + yynn3456 = 0 } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3413[0] { - yym3415 := z.EncBinary() - _ = yym3415 + if yyq3456[0] { + yym3458 := z.EncBinary() + _ = yym3458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43283,23 +43894,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3413[0] { + if yyq3456[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3416 := z.EncBinary() - _ = yym3416 + yym3459 := z.EncBinary() + _ = yym3459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3413[1] { - yym3418 := z.EncBinary() - _ = yym3418 + if yyq3456[1] { + yym3461 := z.EncBinary() + _ = yym3461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43308,22 +43919,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3413[1] { + if yyq3456[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3419 := z.EncBinary() - _ = yym3419 + yym3462 := z.EncBinary() + _ = yym3462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3421 := z.EncBinary() - _ = yym3421 + yym3464 := z.EncBinary() + _ = yym3464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43332,17 +43943,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3422 := z.EncBinary() - _ = yym3422 + yym3465 := z.EncBinary() + _ = yym3465 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3424 := z.EncBinary() - _ = yym3424 + yym3467 := z.EncBinary() + _ = yym3467 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -43351,17 +43962,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3425 := z.EncBinary() - _ = yym3425 + yym3468 := z.EncBinary() + _ = yym3468 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3427 := z.EncBinary() - _ = yym3427 + yym3470 := z.EncBinary() + _ = yym3470 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -43370,24 +43981,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3428 := z.EncBinary() - _ = yym3428 + yym3471 := z.EncBinary() + _ = yym3471 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3430 := *x.SinceSeconds - yym3431 := z.EncBinary() - _ = yym3431 + yy3473 := *x.SinceSeconds + yym3474 := z.EncBinary() + _ = yym3474 if false { } else { - r.EncodeInt(int64(yy3430)) + r.EncodeInt(int64(yy3473)) } } } else { @@ -43397,27 +44008,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3432 := *x.SinceSeconds - yym3433 := z.EncBinary() - _ = yym3433 + yy3475 := *x.SinceSeconds + yym3476 := z.EncBinary() + _ = yym3476 if false { } else { - r.EncodeInt(int64(yy3432)) + r.EncodeInt(int64(yy3475)) } } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3435 := z.EncBinary() - _ = yym3435 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3435 { + } else if yym3478 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3435 && z.IsJSONHandle() { + } else if !yym3478 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -43430,23 +44041,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3436 := z.EncBinary() - _ = yym3436 + yym3479 := z.EncBinary() + _ = yym3479 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3436 { + } else if yym3479 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3436 && z.IsJSONHandle() { + } else if !yym3479 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3438 := z.EncBinary() - _ = yym3438 + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -43455,24 +44066,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3439 := z.EncBinary() - _ = yym3439 + yym3482 := z.EncBinary() + _ = yym3482 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3441 := *x.TailLines - yym3442 := z.EncBinary() - _ = yym3442 + yy3484 := *x.TailLines + yym3485 := z.EncBinary() + _ = yym3485 if false { } else { - r.EncodeInt(int64(yy3441)) + r.EncodeInt(int64(yy3484)) } } } else { @@ -43482,26 +44093,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3443 := *x.TailLines - yym3444 := z.EncBinary() - _ = yym3444 + yy3486 := *x.TailLines + yym3487 := z.EncBinary() + _ = yym3487 if false { } else { - r.EncodeInt(int64(yy3443)) + r.EncodeInt(int64(yy3486)) } } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3446 := *x.LimitBytes - yym3447 := z.EncBinary() - _ = yym3447 + yy3489 := *x.LimitBytes + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { - r.EncodeInt(int64(yy3446)) + r.EncodeInt(int64(yy3489)) } } } else { @@ -43511,16 +44122,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3448 := *x.LimitBytes - yym3449 := z.EncBinary() - _ = yym3449 + yy3491 := *x.LimitBytes + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { - r.EncodeInt(int64(yy3448)) + r.EncodeInt(int64(yy3491)) } } } - if yyr3413 || yy2arr3413 { + if yyr3456 || yy2arr3456 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43533,25 +44144,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3450 := z.DecBinary() - _ = yym3450 + yym3493 := z.DecBinary() + _ = yym3493 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3451 := r.ContainerType() - if yyct3451 == codecSelferValueTypeMap1234 { - yyl3451 := r.ReadMapStart() - if yyl3451 == 0 { + yyct3494 := r.ContainerType() + if yyct3494 == codecSelferValueTypeMap1234 { + yyl3494 := r.ReadMapStart() + if yyl3494 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3451, d) + x.codecDecodeSelfFromMap(yyl3494, d) } - } else if yyct3451 == codecSelferValueTypeArray1234 { - yyl3451 := r.ReadArrayStart() - if yyl3451 == 0 { + } else if yyct3494 == codecSelferValueTypeArray1234 { + yyl3494 := r.ReadArrayStart() + if yyl3494 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3451, d) + x.codecDecodeSelfFromArray(yyl3494, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43563,12 +44174,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3452Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3452Slc - var yyhl3452 bool = l >= 0 - for yyj3452 := 0; ; yyj3452++ { - if yyhl3452 { - if yyj3452 >= l { + var yys3495Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3495Slc + var yyhl3495 bool = l >= 0 + for yyj3495 := 0; ; yyj3495++ { + if yyhl3495 { + if yyj3495 >= l { break } } else { @@ -43577,10 +44188,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3452Slc = r.DecodeBytes(yys3452Slc, true, true) - yys3452 := string(yys3452Slc) + yys3495Slc = r.DecodeBytes(yys3495Slc, true, true) + yys3495 := string(yys3495Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3452 { + switch yys3495 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43620,8 +44231,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3459 := z.DecBinary() - _ = yym3459 + yym3502 := z.DecBinary() + _ = yym3502 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -43636,13 +44247,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3461 := z.DecBinary() - _ = yym3461 + yym3504 := z.DecBinary() + _ = yym3504 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3461 { + } else if yym3504 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3461 && z.IsJSONHandle() { + } else if !yym3504 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -43663,8 +44274,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3464 := z.DecBinary() - _ = yym3464 + yym3507 := z.DecBinary() + _ = yym3507 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -43679,17 +44290,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3466 := z.DecBinary() - _ = yym3466 + yym3509 := z.DecBinary() + _ = yym3509 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3452) - } // end switch yys3452 - } // end for yyj3452 + z.DecStructFieldNotFound(-1, yys3495) + } // end switch yys3495 + } // end for yyj3495 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43697,16 +44308,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3467 int - var yyb3467 bool - var yyhl3467 bool = l >= 0 - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + var yyj3510 int + var yyb3510 bool + var yyhl3510 bool = l >= 0 + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43716,13 +44327,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43732,13 +44343,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43748,13 +44359,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43764,13 +44375,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43780,13 +44391,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43799,20 +44410,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3474 := z.DecBinary() - _ = yym3474 + yym3517 := z.DecBinary() + _ = yym3517 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43825,25 +44436,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3476 := z.DecBinary() - _ = yym3476 + yym3519 := z.DecBinary() + _ = yym3519 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3476 { + } else if yym3519 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3476 && z.IsJSONHandle() { + } else if !yym3519 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43853,13 +44464,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43872,20 +44483,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3479 := z.DecBinary() - _ = yym3479 + yym3522 := z.DecBinary() + _ = yym3522 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43898,25 +44509,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3481 := z.DecBinary() - _ = yym3481 + yym3524 := z.DecBinary() + _ = yym3524 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3467++ - if yyhl3467 { - yyb3467 = yyj3467 > l + yyj3510++ + if yyhl3510 { + yyb3510 = yyj3510 > l } else { - yyb3467 = r.CheckBreak() + yyb3510 = r.CheckBreak() } - if yyb3467 { + if yyb3510 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3467-1, "") + z.DecStructFieldNotFound(yyj3510-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43928,41 +44539,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3482 := z.EncBinary() - _ = yym3482 + yym3525 := z.EncBinary() + _ = yym3525 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3483 := !z.EncBinary() - yy2arr3483 := z.EncBasicHandle().StructToArray - var yyq3483 [7]bool - _, _, _ = yysep3483, yyq3483, yy2arr3483 - const yyr3483 bool = false - yyq3483[0] = x.Kind != "" - yyq3483[1] = x.APIVersion != "" - yyq3483[2] = x.Stdin != false - yyq3483[3] = x.Stdout != false - yyq3483[4] = x.Stderr != false - yyq3483[5] = x.TTY != false - yyq3483[6] = x.Container != "" - var yynn3483 int - if yyr3483 || yy2arr3483 { + yysep3526 := !z.EncBinary() + yy2arr3526 := z.EncBasicHandle().StructToArray + var yyq3526 [7]bool + _, _, _ = yysep3526, yyq3526, yy2arr3526 + const yyr3526 bool = false + yyq3526[0] = x.Kind != "" + yyq3526[1] = x.APIVersion != "" + yyq3526[2] = x.Stdin != false + yyq3526[3] = x.Stdout != false + yyq3526[4] = x.Stderr != false + yyq3526[5] = x.TTY != false + yyq3526[6] = x.Container != "" + var yynn3526 int + if yyr3526 || yy2arr3526 { r.EncodeArrayStart(7) } else { - yynn3483 = 0 - for _, b := range yyq3483 { + yynn3526 = 0 + for _, b := range yyq3526 { if b { - yynn3483++ + yynn3526++ } } - r.EncodeMapStart(yynn3483) - yynn3483 = 0 + r.EncodeMapStart(yynn3526) + yynn3526 = 0 } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[0] { - yym3485 := z.EncBinary() - _ = yym3485 + if yyq3526[0] { + yym3528 := z.EncBinary() + _ = yym3528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43971,23 +44582,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3483[0] { + if yyq3526[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3486 := z.EncBinary() - _ = yym3486 + yym3529 := z.EncBinary() + _ = yym3529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[1] { - yym3488 := z.EncBinary() - _ = yym3488 + if yyq3526[1] { + yym3531 := z.EncBinary() + _ = yym3531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43996,23 +44607,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3483[1] { + if yyq3526[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3489 := z.EncBinary() - _ = yym3489 + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[2] { - yym3491 := z.EncBinary() - _ = yym3491 + if yyq3526[2] { + yym3534 := z.EncBinary() + _ = yym3534 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44021,23 +44632,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3483[2] { + if yyq3526[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3492 := z.EncBinary() - _ = yym3492 + yym3535 := z.EncBinary() + _ = yym3535 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[3] { - yym3494 := z.EncBinary() - _ = yym3494 + if yyq3526[3] { + yym3537 := z.EncBinary() + _ = yym3537 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44046,23 +44657,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3483[3] { + if yyq3526[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3495 := z.EncBinary() - _ = yym3495 + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[4] { - yym3497 := z.EncBinary() - _ = yym3497 + if yyq3526[4] { + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44071,23 +44682,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3483[4] { + if yyq3526[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3498 := z.EncBinary() - _ = yym3498 + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[5] { - yym3500 := z.EncBinary() - _ = yym3500 + if yyq3526[5] { + yym3543 := z.EncBinary() + _ = yym3543 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44096,23 +44707,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3483[5] { + if yyq3526[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3501 := z.EncBinary() - _ = yym3501 + yym3544 := z.EncBinary() + _ = yym3544 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3483[6] { - yym3503 := z.EncBinary() - _ = yym3503 + if yyq3526[6] { + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44121,19 +44732,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3483[6] { + if yyq3526[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3504 := z.EncBinary() - _ = yym3504 + yym3547 := z.EncBinary() + _ = yym3547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3483 || yy2arr3483 { + if yyr3526 || yy2arr3526 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44146,25 +44757,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3505 := z.DecBinary() - _ = yym3505 + yym3548 := z.DecBinary() + _ = yym3548 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3506 := r.ContainerType() - if yyct3506 == codecSelferValueTypeMap1234 { - yyl3506 := r.ReadMapStart() - if yyl3506 == 0 { + yyct3549 := r.ContainerType() + if yyct3549 == codecSelferValueTypeMap1234 { + yyl3549 := r.ReadMapStart() + if yyl3549 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3506, d) + x.codecDecodeSelfFromMap(yyl3549, d) } - } else if yyct3506 == codecSelferValueTypeArray1234 { - yyl3506 := r.ReadArrayStart() - if yyl3506 == 0 { + } else if yyct3549 == codecSelferValueTypeArray1234 { + yyl3549 := r.ReadArrayStart() + if yyl3549 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3506, d) + x.codecDecodeSelfFromArray(yyl3549, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44176,12 +44787,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3507Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3507Slc - var yyhl3507 bool = l >= 0 - for yyj3507 := 0; ; yyj3507++ { - if yyhl3507 { - if yyj3507 >= l { + var yys3550Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3550Slc + var yyhl3550 bool = l >= 0 + for yyj3550 := 0; ; yyj3550++ { + if yyhl3550 { + if yyj3550 >= l { break } } else { @@ -44190,10 +44801,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3507Slc = r.DecodeBytes(yys3507Slc, true, true) - yys3507 := string(yys3507Slc) + yys3550Slc = r.DecodeBytes(yys3550Slc, true, true) + yys3550 := string(yys3550Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3507 { + switch yys3550 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44237,9 +44848,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3507) - } // end switch yys3507 - } // end for yyj3507 + z.DecStructFieldNotFound(-1, yys3550) + } // end switch yys3550 + } // end for yyj3550 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44247,16 +44858,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3515 int - var yyb3515 bool - var yyhl3515 bool = l >= 0 - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + var yyj3558 int + var yyb3558 bool + var yyhl3558 bool = l >= 0 + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44266,13 +44877,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44282,13 +44893,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44298,13 +44909,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44314,13 +44925,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44330,13 +44941,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44346,13 +44957,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44363,17 +44974,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3515++ - if yyhl3515 { - yyb3515 = yyj3515 > l + yyj3558++ + if yyhl3558 { + yyb3558 = yyj3558 > l } else { - yyb3515 = r.CheckBreak() + yyb3558 = r.CheckBreak() } - if yyb3515 { + if yyb3558 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3515-1, "") + z.DecStructFieldNotFound(yyj3558-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44385,36 +44996,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3523 := z.EncBinary() - _ = yym3523 + yym3566 := z.EncBinary() + _ = yym3566 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3524 := !z.EncBinary() - yy2arr3524 := z.EncBasicHandle().StructToArray - var yyq3524 [8]bool - _, _, _ = yysep3524, yyq3524, yy2arr3524 - const yyr3524 bool = false - yyq3524[0] = x.Kind != "" - yyq3524[1] = x.APIVersion != "" - var yynn3524 int - if yyr3524 || yy2arr3524 { + yysep3567 := !z.EncBinary() + yy2arr3567 := z.EncBasicHandle().StructToArray + var yyq3567 [8]bool + _, _, _ = yysep3567, yyq3567, yy2arr3567 + const yyr3567 bool = false + yyq3567[0] = x.Kind != "" + yyq3567[1] = x.APIVersion != "" + var yynn3567 int + if yyr3567 || yy2arr3567 { r.EncodeArrayStart(8) } else { - yynn3524 = 6 - for _, b := range yyq3524 { + yynn3567 = 6 + for _, b := range yyq3567 { if b { - yynn3524++ + yynn3567++ } } - r.EncodeMapStart(yynn3524) - yynn3524 = 0 + r.EncodeMapStart(yynn3567) + yynn3567 = 0 } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3524[0] { - yym3526 := z.EncBinary() - _ = yym3526 + if yyq3567[0] { + yym3569 := z.EncBinary() + _ = yym3569 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44423,23 +45034,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3524[0] { + if yyq3567[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3527 := z.EncBinary() - _ = yym3527 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3524[1] { - yym3529 := z.EncBinary() - _ = yym3529 + if yyq3567[1] { + yym3572 := z.EncBinary() + _ = yym3572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44448,22 +45059,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3524[1] { + if yyq3567[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3530 := z.EncBinary() - _ = yym3530 + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3532 := z.EncBinary() - _ = yym3532 + yym3575 := z.EncBinary() + _ = yym3575 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44472,17 +45083,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3533 := z.EncBinary() - _ = yym3533 + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3535 := z.EncBinary() - _ = yym3535 + yym3578 := z.EncBinary() + _ = yym3578 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44491,17 +45102,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3536 := z.EncBinary() - _ = yym3536 + yym3579 := z.EncBinary() + _ = yym3579 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3538 := z.EncBinary() - _ = yym3538 + yym3581 := z.EncBinary() + _ = yym3581 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44510,17 +45121,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3539 := z.EncBinary() - _ = yym3539 + yym3582 := z.EncBinary() + _ = yym3582 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3541 := z.EncBinary() - _ = yym3541 + yym3584 := z.EncBinary() + _ = yym3584 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44529,17 +45140,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3542 := z.EncBinary() - _ = yym3542 + yym3585 := z.EncBinary() + _ = yym3585 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3544 := z.EncBinary() - _ = yym3544 + yym3587 := z.EncBinary() + _ = yym3587 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44548,20 +45159,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3545 := z.EncBinary() - _ = yym3545 + yym3588 := z.EncBinary() + _ = yym3588 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3547 := z.EncBinary() - _ = yym3547 + yym3590 := z.EncBinary() + _ = yym3590 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -44574,15 +45185,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3548 := z.EncBinary() - _ = yym3548 + yym3591 := z.EncBinary() + _ = yym3591 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3524 || yy2arr3524 { + if yyr3567 || yy2arr3567 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44595,25 +45206,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3549 := z.DecBinary() - _ = yym3549 + yym3592 := z.DecBinary() + _ = yym3592 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3550 := r.ContainerType() - if yyct3550 == codecSelferValueTypeMap1234 { - yyl3550 := r.ReadMapStart() - if yyl3550 == 0 { + yyct3593 := r.ContainerType() + if yyct3593 == codecSelferValueTypeMap1234 { + yyl3593 := r.ReadMapStart() + if yyl3593 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3550, d) + x.codecDecodeSelfFromMap(yyl3593, d) } - } else if yyct3550 == codecSelferValueTypeArray1234 { - yyl3550 := r.ReadArrayStart() - if yyl3550 == 0 { + } else if yyct3593 == codecSelferValueTypeArray1234 { + yyl3593 := r.ReadArrayStart() + if yyl3593 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3550, d) + x.codecDecodeSelfFromArray(yyl3593, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44625,12 +45236,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3551Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3551Slc - var yyhl3551 bool = l >= 0 - for yyj3551 := 0; ; yyj3551++ { - if yyhl3551 { - if yyj3551 >= l { + var yys3594Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3594Slc + var yyhl3594 bool = l >= 0 + for yyj3594 := 0; ; yyj3594++ { + if yyhl3594 { + if yyj3594 >= l { break } } else { @@ -44639,10 +45250,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3551Slc = r.DecodeBytes(yys3551Slc, true, true) - yys3551 := string(yys3551Slc) + yys3594Slc = r.DecodeBytes(yys3594Slc, true, true) + yys3594 := string(yys3594Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3551 { + switch yys3594 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44689,18 +45300,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3559 := &x.Command - yym3560 := z.DecBinary() - _ = yym3560 + yyv3602 := &x.Command + yym3603 := z.DecBinary() + _ = yym3603 if false { } else { - z.F.DecSliceStringX(yyv3559, false, d) + z.F.DecSliceStringX(yyv3602, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3551) - } // end switch yys3551 - } // end for yyj3551 + z.DecStructFieldNotFound(-1, yys3594) + } // end switch yys3594 + } // end for yyj3594 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44708,16 +45319,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3561 int - var yyb3561 bool - var yyhl3561 bool = l >= 0 - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + var yyj3604 int + var yyb3604 bool + var yyhl3604 bool = l >= 0 + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44727,13 +45338,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44743,13 +45354,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44759,13 +45370,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44775,13 +45386,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44791,13 +45402,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44807,13 +45418,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44823,13 +45434,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44837,26 +45448,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3569 := &x.Command - yym3570 := z.DecBinary() - _ = yym3570 + yyv3612 := &x.Command + yym3613 := z.DecBinary() + _ = yym3613 if false { } else { - z.F.DecSliceStringX(yyv3569, false, d) + z.F.DecSliceStringX(yyv3612, false, d) } } for { - yyj3561++ - if yyhl3561 { - yyb3561 = yyj3561 > l + yyj3604++ + if yyhl3604 { + yyb3604 = yyj3604 > l } else { - yyb3561 = r.CheckBreak() + yyb3604 = r.CheckBreak() } - if yyb3561 { + if yyb3604 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3561-1, "") + z.DecStructFieldNotFound(yyj3604-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44868,36 +45479,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3571 := z.EncBinary() - _ = yym3571 + yym3614 := z.EncBinary() + _ = yym3614 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3572 := !z.EncBinary() - yy2arr3572 := z.EncBasicHandle().StructToArray - var yyq3572 [3]bool - _, _, _ = yysep3572, yyq3572, yy2arr3572 - const yyr3572 bool = false - yyq3572[0] = x.Kind != "" - yyq3572[1] = x.APIVersion != "" - var yynn3572 int - if yyr3572 || yy2arr3572 { + yysep3615 := !z.EncBinary() + yy2arr3615 := z.EncBasicHandle().StructToArray + var yyq3615 [3]bool + _, _, _ = yysep3615, yyq3615, yy2arr3615 + const yyr3615 bool = false + yyq3615[0] = x.Kind != "" + yyq3615[1] = x.APIVersion != "" + var yynn3615 int + if yyr3615 || yy2arr3615 { r.EncodeArrayStart(3) } else { - yynn3572 = 1 - for _, b := range yyq3572 { + yynn3615 = 1 + for _, b := range yyq3615 { if b { - yynn3572++ + yynn3615++ } } - r.EncodeMapStart(yynn3572) - yynn3572 = 0 + r.EncodeMapStart(yynn3615) + yynn3615 = 0 } - if yyr3572 || yy2arr3572 { + if yyr3615 || yy2arr3615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3572[0] { - yym3574 := z.EncBinary() - _ = yym3574 + if yyq3615[0] { + yym3617 := z.EncBinary() + _ = yym3617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44906,23 +45517,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3572[0] { + if yyq3615[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3575 := z.EncBinary() - _ = yym3575 + yym3618 := z.EncBinary() + _ = yym3618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3572 || yy2arr3572 { + if yyr3615 || yy2arr3615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3572[1] { - yym3577 := z.EncBinary() - _ = yym3577 + if yyq3615[1] { + yym3620 := z.EncBinary() + _ = yym3620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44931,22 +45542,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3572[1] { + if yyq3615[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3578 := z.EncBinary() - _ = yym3578 + yym3621 := z.EncBinary() + _ = yym3621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3572 || yy2arr3572 { + if yyr3615 || yy2arr3615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3580 := z.EncBinary() - _ = yym3580 + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44955,14 +45566,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3581 := z.EncBinary() - _ = yym3581 + yym3624 := z.EncBinary() + _ = yym3624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3572 || yy2arr3572 { + if yyr3615 || yy2arr3615 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44975,25 +45586,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3582 := z.DecBinary() - _ = yym3582 + yym3625 := z.DecBinary() + _ = yym3625 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3583 := r.ContainerType() - if yyct3583 == codecSelferValueTypeMap1234 { - yyl3583 := r.ReadMapStart() - if yyl3583 == 0 { + yyct3626 := r.ContainerType() + if yyct3626 == codecSelferValueTypeMap1234 { + yyl3626 := r.ReadMapStart() + if yyl3626 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3583, d) + x.codecDecodeSelfFromMap(yyl3626, d) } - } else if yyct3583 == codecSelferValueTypeArray1234 { - yyl3583 := r.ReadArrayStart() - if yyl3583 == 0 { + } else if yyct3626 == codecSelferValueTypeArray1234 { + yyl3626 := r.ReadArrayStart() + if yyl3626 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3583, d) + x.codecDecodeSelfFromArray(yyl3626, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45005,12 +45616,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3584Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3584Slc - var yyhl3584 bool = l >= 0 - for yyj3584 := 0; ; yyj3584++ { - if yyhl3584 { - if yyj3584 >= l { + var yys3627Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3627Slc + var yyhl3627 bool = l >= 0 + for yyj3627 := 0; ; yyj3627++ { + if yyhl3627 { + if yyj3627 >= l { break } } else { @@ -45019,10 +45630,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3584Slc = r.DecodeBytes(yys3584Slc, true, true) - yys3584 := string(yys3584Slc) + yys3627Slc = r.DecodeBytes(yys3627Slc, true, true) + yys3627 := string(yys3627Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3584 { + switch yys3627 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45042,9 +45653,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3584) - } // end switch yys3584 - } // end for yyj3584 + z.DecStructFieldNotFound(-1, yys3627) + } // end switch yys3627 + } // end for yyj3627 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45052,16 +45663,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3588 int - var yyb3588 bool - var yyhl3588 bool = l >= 0 - yyj3588++ - if yyhl3588 { - yyb3588 = yyj3588 > l + var yyj3631 int + var yyb3631 bool + var yyhl3631 bool = l >= 0 + yyj3631++ + if yyhl3631 { + yyb3631 = yyj3631 > l } else { - yyb3588 = r.CheckBreak() + yyb3631 = r.CheckBreak() } - if yyb3588 { + if yyb3631 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45071,13 +45682,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3588++ - if yyhl3588 { - yyb3588 = yyj3588 > l + yyj3631++ + if yyhl3631 { + yyb3631 = yyj3631 > l } else { - yyb3588 = r.CheckBreak() + yyb3631 = r.CheckBreak() } - if yyb3588 { + if yyb3631 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45087,13 +45698,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3588++ - if yyhl3588 { - yyb3588 = yyj3588 > l + yyj3631++ + if yyhl3631 { + yyb3631 = yyj3631 > l } else { - yyb3588 = r.CheckBreak() + yyb3631 = r.CheckBreak() } - if yyb3588 { + if yyb3631 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45104,17 +45715,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3588++ - if yyhl3588 { - yyb3588 = yyj3588 > l + yyj3631++ + if yyhl3631 { + yyb3631 = yyj3631 > l } else { - yyb3588 = r.CheckBreak() + yyb3631 = r.CheckBreak() } - if yyb3588 { + if yyb3631 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3588-1, "") + z.DecStructFieldNotFound(yyj3631-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45126,36 +45737,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3592 := z.EncBinary() - _ = yym3592 + yym3635 := z.EncBinary() + _ = yym3635 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3593 := !z.EncBinary() - yy2arr3593 := z.EncBasicHandle().StructToArray - var yyq3593 [3]bool - _, _, _ = yysep3593, yyq3593, yy2arr3593 - const yyr3593 bool = false - yyq3593[0] = x.Kind != "" - yyq3593[1] = x.APIVersion != "" - var yynn3593 int - if yyr3593 || yy2arr3593 { + yysep3636 := !z.EncBinary() + yy2arr3636 := z.EncBasicHandle().StructToArray + var yyq3636 [3]bool + _, _, _ = yysep3636, yyq3636, yy2arr3636 + const yyr3636 bool = false + yyq3636[0] = x.Kind != "" + yyq3636[1] = x.APIVersion != "" + var yynn3636 int + if yyr3636 || yy2arr3636 { r.EncodeArrayStart(3) } else { - yynn3593 = 1 - for _, b := range yyq3593 { + yynn3636 = 1 + for _, b := range yyq3636 { if b { - yynn3593++ + yynn3636++ } } - r.EncodeMapStart(yynn3593) - yynn3593 = 0 + r.EncodeMapStart(yynn3636) + yynn3636 = 0 } - if yyr3593 || yy2arr3593 { + if yyr3636 || yy2arr3636 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3593[0] { - yym3595 := z.EncBinary() - _ = yym3595 + if yyq3636[0] { + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45164,23 +45775,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3593[0] { + if yyq3636[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3596 := z.EncBinary() - _ = yym3596 + yym3639 := z.EncBinary() + _ = yym3639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3593 || yy2arr3593 { + if yyr3636 || yy2arr3636 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3593[1] { - yym3598 := z.EncBinary() - _ = yym3598 + if yyq3636[1] { + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45189,22 +45800,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3593[1] { + if yyq3636[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3599 := z.EncBinary() - _ = yym3599 + yym3642 := z.EncBinary() + _ = yym3642 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3593 || yy2arr3593 { + if yyr3636 || yy2arr3636 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3601 := z.EncBinary() - _ = yym3601 + yym3644 := z.EncBinary() + _ = yym3644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45213,14 +45824,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3602 := z.EncBinary() - _ = yym3602 + yym3645 := z.EncBinary() + _ = yym3645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3593 || yy2arr3593 { + if yyr3636 || yy2arr3636 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45233,25 +45844,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3603 := z.DecBinary() - _ = yym3603 + yym3646 := z.DecBinary() + _ = yym3646 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3604 := r.ContainerType() - if yyct3604 == codecSelferValueTypeMap1234 { - yyl3604 := r.ReadMapStart() - if yyl3604 == 0 { + yyct3647 := r.ContainerType() + if yyct3647 == codecSelferValueTypeMap1234 { + yyl3647 := r.ReadMapStart() + if yyl3647 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3604, d) + x.codecDecodeSelfFromMap(yyl3647, d) } - } else if yyct3604 == codecSelferValueTypeArray1234 { - yyl3604 := r.ReadArrayStart() - if yyl3604 == 0 { + } else if yyct3647 == codecSelferValueTypeArray1234 { + yyl3647 := r.ReadArrayStart() + if yyl3647 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3604, d) + x.codecDecodeSelfFromArray(yyl3647, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45263,12 +45874,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3605Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3605Slc - var yyhl3605 bool = l >= 0 - for yyj3605 := 0; ; yyj3605++ { - if yyhl3605 { - if yyj3605 >= l { + var yys3648Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3648Slc + var yyhl3648 bool = l >= 0 + for yyj3648 := 0; ; yyj3648++ { + if yyhl3648 { + if yyj3648 >= l { break } } else { @@ -45277,10 +45888,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3605Slc = r.DecodeBytes(yys3605Slc, true, true) - yys3605 := string(yys3605Slc) + yys3648Slc = r.DecodeBytes(yys3648Slc, true, true) + yys3648 := string(yys3648Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3605 { + switch yys3648 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45300,9 +45911,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3605) - } // end switch yys3605 - } // end for yyj3605 + z.DecStructFieldNotFound(-1, yys3648) + } // end switch yys3648 + } // end for yyj3648 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45310,16 +45921,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3609 int - var yyb3609 bool - var yyhl3609 bool = l >= 0 - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + var yyj3652 int + var yyb3652 bool + var yyhl3652 bool = l >= 0 + yyj3652++ + if yyhl3652 { + yyb3652 = yyj3652 > l } else { - yyb3609 = r.CheckBreak() + yyb3652 = r.CheckBreak() } - if yyb3609 { + if yyb3652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45329,13 +45940,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3652++ + if yyhl3652 { + yyb3652 = yyj3652 > l } else { - yyb3609 = r.CheckBreak() + yyb3652 = r.CheckBreak() } - if yyb3609 { + if yyb3652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45345,13 +45956,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3652++ + if yyhl3652 { + yyb3652 = yyj3652 > l } else { - yyb3609 = r.CheckBreak() + yyb3652 = r.CheckBreak() } - if yyb3609 { + if yyb3652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45362,17 +45973,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3652++ + if yyhl3652 { + yyb3652 = yyj3652 > l } else { - yyb3609 = r.CheckBreak() + yyb3652 = r.CheckBreak() } - if yyb3609 { + if yyb3652 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3609-1, "") + z.DecStructFieldNotFound(yyj3652-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45384,36 +45995,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3613 := z.EncBinary() - _ = yym3613 + yym3656 := z.EncBinary() + _ = yym3656 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3614 := !z.EncBinary() - yy2arr3614 := z.EncBasicHandle().StructToArray - var yyq3614 [3]bool - _, _, _ = yysep3614, yyq3614, yy2arr3614 - const yyr3614 bool = false - yyq3614[0] = x.Kind != "" - yyq3614[1] = x.APIVersion != "" - var yynn3614 int - if yyr3614 || yy2arr3614 { + yysep3657 := !z.EncBinary() + yy2arr3657 := z.EncBasicHandle().StructToArray + var yyq3657 [3]bool + _, _, _ = yysep3657, yyq3657, yy2arr3657 + const yyr3657 bool = false + yyq3657[0] = x.Kind != "" + yyq3657[1] = x.APIVersion != "" + var yynn3657 int + if yyr3657 || yy2arr3657 { r.EncodeArrayStart(3) } else { - yynn3614 = 1 - for _, b := range yyq3614 { + yynn3657 = 1 + for _, b := range yyq3657 { if b { - yynn3614++ + yynn3657++ } } - r.EncodeMapStart(yynn3614) - yynn3614 = 0 + r.EncodeMapStart(yynn3657) + yynn3657 = 0 } - if yyr3614 || yy2arr3614 { + if yyr3657 || yy2arr3657 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3614[0] { - yym3616 := z.EncBinary() - _ = yym3616 + if yyq3657[0] { + yym3659 := z.EncBinary() + _ = yym3659 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45422,23 +46033,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3614[0] { + if yyq3657[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3617 := z.EncBinary() - _ = yym3617 + yym3660 := z.EncBinary() + _ = yym3660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3614 || yy2arr3614 { + if yyr3657 || yy2arr3657 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3614[1] { - yym3619 := z.EncBinary() - _ = yym3619 + if yyq3657[1] { + yym3662 := z.EncBinary() + _ = yym3662 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45447,22 +46058,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3614[1] { + if yyq3657[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3620 := z.EncBinary() - _ = yym3620 + yym3663 := z.EncBinary() + _ = yym3663 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3614 || yy2arr3614 { + if yyr3657 || yy2arr3657 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3622 := z.EncBinary() - _ = yym3622 + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45471,14 +46082,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3623 := z.EncBinary() - _ = yym3623 + yym3666 := z.EncBinary() + _ = yym3666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3614 || yy2arr3614 { + if yyr3657 || yy2arr3657 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45491,25 +46102,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3624 := z.DecBinary() - _ = yym3624 + yym3667 := z.DecBinary() + _ = yym3667 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3625 := r.ContainerType() - if yyct3625 == codecSelferValueTypeMap1234 { - yyl3625 := r.ReadMapStart() - if yyl3625 == 0 { + yyct3668 := r.ContainerType() + if yyct3668 == codecSelferValueTypeMap1234 { + yyl3668 := r.ReadMapStart() + if yyl3668 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3625, d) + x.codecDecodeSelfFromMap(yyl3668, d) } - } else if yyct3625 == codecSelferValueTypeArray1234 { - yyl3625 := r.ReadArrayStart() - if yyl3625 == 0 { + } else if yyct3668 == codecSelferValueTypeArray1234 { + yyl3668 := r.ReadArrayStart() + if yyl3668 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3625, d) + x.codecDecodeSelfFromArray(yyl3668, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45521,12 +46132,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3626Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3626Slc - var yyhl3626 bool = l >= 0 - for yyj3626 := 0; ; yyj3626++ { - if yyhl3626 { - if yyj3626 >= l { + var yys3669Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3669Slc + var yyhl3669 bool = l >= 0 + for yyj3669 := 0; ; yyj3669++ { + if yyhl3669 { + if yyj3669 >= l { break } } else { @@ -45535,10 +46146,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3626Slc = r.DecodeBytes(yys3626Slc, true, true) - yys3626 := string(yys3626Slc) + yys3669Slc = r.DecodeBytes(yys3669Slc, true, true) + yys3669 := string(yys3669Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3626 { + switch yys3669 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45558,9 +46169,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3626) - } // end switch yys3626 - } // end for yyj3626 + z.DecStructFieldNotFound(-1, yys3669) + } // end switch yys3669 + } // end for yyj3669 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45568,16 +46179,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3630 int - var yyb3630 bool - var yyhl3630 bool = l >= 0 - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + var yyj3673 int + var yyb3673 bool + var yyhl3673 bool = l >= 0 + yyj3673++ + if yyhl3673 { + yyb3673 = yyj3673 > l } else { - yyb3630 = r.CheckBreak() + yyb3673 = r.CheckBreak() } - if yyb3630 { + if yyb3673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45587,13 +46198,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3673++ + if yyhl3673 { + yyb3673 = yyj3673 > l } else { - yyb3630 = r.CheckBreak() + yyb3673 = r.CheckBreak() } - if yyb3630 { + if yyb3673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45603,13 +46214,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3673++ + if yyhl3673 { + yyb3673 = yyj3673 > l } else { - yyb3630 = r.CheckBreak() + yyb3673 = r.CheckBreak() } - if yyb3630 { + if yyb3673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45620,17 +46231,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3630++ - if yyhl3630 { - yyb3630 = yyj3630 > l + yyj3673++ + if yyhl3673 { + yyb3673 = yyj3673 > l } else { - yyb3630 = r.CheckBreak() + yyb3673 = r.CheckBreak() } - if yyb3630 { + if yyb3673 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3630-1, "") + z.DecStructFieldNotFound(yyj3673-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45642,34 +46253,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3634 := z.EncBinary() - _ = yym3634 + yym3677 := z.EncBinary() + _ = yym3677 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3635 := !z.EncBinary() - yy2arr3635 := z.EncBasicHandle().StructToArray - var yyq3635 [5]bool - _, _, _ = yysep3635, yyq3635, yy2arr3635 - const yyr3635 bool = false - yyq3635[4] = x.Controller != nil - var yynn3635 int - if yyr3635 || yy2arr3635 { + yysep3678 := !z.EncBinary() + yy2arr3678 := z.EncBasicHandle().StructToArray + var yyq3678 [5]bool + _, _, _ = yysep3678, yyq3678, yy2arr3678 + const yyr3678 bool = false + yyq3678[4] = x.Controller != nil + var yynn3678 int + if yyr3678 || yy2arr3678 { r.EncodeArrayStart(5) } else { - yynn3635 = 4 - for _, b := range yyq3635 { + yynn3678 = 4 + for _, b := range yyq3678 { if b { - yynn3635++ + yynn3678++ } } - r.EncodeMapStart(yynn3635) - yynn3635 = 0 + r.EncodeMapStart(yynn3678) + yynn3678 = 0 } - if yyr3635 || yy2arr3635 { + if yyr3678 || yy2arr3678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3637 := z.EncBinary() - _ = yym3637 + yym3680 := z.EncBinary() + _ = yym3680 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45678,17 +46289,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3681 := z.EncBinary() + _ = yym3681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3635 || yy2arr3635 { + if yyr3678 || yy2arr3678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3640 := z.EncBinary() - _ = yym3640 + yym3683 := z.EncBinary() + _ = yym3683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45697,17 +46308,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3641 := z.EncBinary() - _ = yym3641 + yym3684 := z.EncBinary() + _ = yym3684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3635 || yy2arr3635 { + if yyr3678 || yy2arr3678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3643 := z.EncBinary() - _ = yym3643 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45716,17 +46327,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3644 := z.EncBinary() - _ = yym3644 + yym3687 := z.EncBinary() + _ = yym3687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3635 || yy2arr3635 { + if yyr3678 || yy2arr3678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3646 := z.EncBinary() - _ = yym3646 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45736,50 +46347,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3647 := z.EncBinary() - _ = yym3647 + yym3690 := z.EncBinary() + _ = yym3690 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3635 || yy2arr3635 { + if yyr3678 || yy2arr3678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3635[4] { + if yyq3678[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3649 := *x.Controller - yym3650 := z.EncBinary() - _ = yym3650 + yy3692 := *x.Controller + yym3693 := z.EncBinary() + _ = yym3693 if false { } else { - r.EncodeBool(bool(yy3649)) + r.EncodeBool(bool(yy3692)) } } } else { r.EncodeNil() } } else { - if yyq3635[4] { + if yyq3678[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3651 := *x.Controller - yym3652 := z.EncBinary() - _ = yym3652 + yy3694 := *x.Controller + yym3695 := z.EncBinary() + _ = yym3695 if false { } else { - r.EncodeBool(bool(yy3651)) + r.EncodeBool(bool(yy3694)) } } } } - if yyr3635 || yy2arr3635 { + if yyr3678 || yy2arr3678 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45792,25 +46403,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3653 := z.DecBinary() - _ = yym3653 + yym3696 := z.DecBinary() + _ = yym3696 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3654 := r.ContainerType() - if yyct3654 == codecSelferValueTypeMap1234 { - yyl3654 := r.ReadMapStart() - if yyl3654 == 0 { + yyct3697 := r.ContainerType() + if yyct3697 == codecSelferValueTypeMap1234 { + yyl3697 := r.ReadMapStart() + if yyl3697 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3654, d) + x.codecDecodeSelfFromMap(yyl3697, d) } - } else if yyct3654 == codecSelferValueTypeArray1234 { - yyl3654 := r.ReadArrayStart() - if yyl3654 == 0 { + } else if yyct3697 == codecSelferValueTypeArray1234 { + yyl3697 := r.ReadArrayStart() + if yyl3697 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3654, d) + x.codecDecodeSelfFromArray(yyl3697, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45822,12 +46433,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3655Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3655Slc - var yyhl3655 bool = l >= 0 - for yyj3655 := 0; ; yyj3655++ { - if yyhl3655 { - if yyj3655 >= l { + var yys3698Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3698Slc + var yyhl3698 bool = l >= 0 + for yyj3698 := 0; ; yyj3698++ { + if yyhl3698 { + if yyj3698 >= l { break } } else { @@ -45836,10 +46447,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3655Slc = r.DecodeBytes(yys3655Slc, true, true) - yys3655 := string(yys3655Slc) + yys3698Slc = r.DecodeBytes(yys3698Slc, true, true) + yys3698 := string(yys3698Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3655 { + switch yys3698 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -45873,17 +46484,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3661 := z.DecBinary() - _ = yym3661 + yym3704 := z.DecBinary() + _ = yym3704 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3655) - } // end switch yys3655 - } // end for yyj3655 + z.DecStructFieldNotFound(-1, yys3698) + } // end switch yys3698 + } // end for yyj3698 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45891,16 +46502,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3662 int - var yyb3662 bool - var yyhl3662 bool = l >= 0 - yyj3662++ - if yyhl3662 { - yyb3662 = yyj3662 > l + var yyj3705 int + var yyb3705 bool + var yyhl3705 bool = l >= 0 + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3662 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3662 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45910,13 +46521,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3662++ - if yyhl3662 { - yyb3662 = yyj3662 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3662 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3662 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45926,13 +46537,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3662++ - if yyhl3662 { - yyb3662 = yyj3662 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3662 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3662 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45942,13 +46553,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3662++ - if yyhl3662 { - yyb3662 = yyj3662 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3662 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3662 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45958,13 +46569,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3662++ - if yyhl3662 { - yyb3662 = yyj3662 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3662 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3662 { + if yyb3705 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45977,25 +46588,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3668 := z.DecBinary() - _ = yym3668 + yym3711 := z.DecBinary() + _ = yym3711 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3662++ - if yyhl3662 { - yyb3662 = yyj3662 > l + yyj3705++ + if yyhl3705 { + yyb3705 = yyj3705 > l } else { - yyb3662 = r.CheckBreak() + yyb3705 = r.CheckBreak() } - if yyb3662 { + if yyb3705 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3662-1, "") + z.DecStructFieldNotFound(yyj3705-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46007,41 +46618,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3669 := z.EncBinary() - _ = yym3669 + yym3712 := z.EncBinary() + _ = yym3712 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3670 := !z.EncBinary() - yy2arr3670 := z.EncBasicHandle().StructToArray - var yyq3670 [7]bool - _, _, _ = yysep3670, yyq3670, yy2arr3670 - const yyr3670 bool = false - yyq3670[0] = x.Kind != "" - yyq3670[1] = x.Namespace != "" - yyq3670[2] = x.Name != "" - yyq3670[3] = x.UID != "" - yyq3670[4] = x.APIVersion != "" - yyq3670[5] = x.ResourceVersion != "" - yyq3670[6] = x.FieldPath != "" - var yynn3670 int - if yyr3670 || yy2arr3670 { + yysep3713 := !z.EncBinary() + yy2arr3713 := z.EncBasicHandle().StructToArray + var yyq3713 [7]bool + _, _, _ = yysep3713, yyq3713, yy2arr3713 + const yyr3713 bool = false + yyq3713[0] = x.Kind != "" + yyq3713[1] = x.Namespace != "" + yyq3713[2] = x.Name != "" + yyq3713[3] = x.UID != "" + yyq3713[4] = x.APIVersion != "" + yyq3713[5] = x.ResourceVersion != "" + yyq3713[6] = x.FieldPath != "" + var yynn3713 int + if yyr3713 || yy2arr3713 { r.EncodeArrayStart(7) } else { - yynn3670 = 0 - for _, b := range yyq3670 { + yynn3713 = 0 + for _, b := range yyq3713 { if b { - yynn3670++ + yynn3713++ } } - r.EncodeMapStart(yynn3670) - yynn3670 = 0 + r.EncodeMapStart(yynn3713) + yynn3713 = 0 } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[0] { - yym3672 := z.EncBinary() - _ = yym3672 + if yyq3713[0] { + yym3715 := z.EncBinary() + _ = yym3715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46050,23 +46661,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[0] { + if yyq3713[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3673 := z.EncBinary() - _ = yym3673 + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[1] { - yym3675 := z.EncBinary() - _ = yym3675 + if yyq3713[1] { + yym3718 := z.EncBinary() + _ = yym3718 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -46075,23 +46686,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[1] { + if yyq3713[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3676 := z.EncBinary() - _ = yym3676 + yym3719 := z.EncBinary() + _ = yym3719 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[2] { - yym3678 := z.EncBinary() - _ = yym3678 + if yyq3713[2] { + yym3721 := z.EncBinary() + _ = yym3721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46100,23 +46711,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[2] { + if yyq3713[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3679 := z.EncBinary() - _ = yym3679 + yym3722 := z.EncBinary() + _ = yym3722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[3] { - yym3681 := z.EncBinary() - _ = yym3681 + if yyq3713[3] { + yym3724 := z.EncBinary() + _ = yym3724 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46126,12 +46737,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[3] { + if yyq3713[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3682 := z.EncBinary() - _ = yym3682 + yym3725 := z.EncBinary() + _ = yym3725 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46139,11 +46750,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[4] { - yym3684 := z.EncBinary() - _ = yym3684 + if yyq3713[4] { + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46152,23 +46763,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[4] { + if yyq3713[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3685 := z.EncBinary() - _ = yym3685 + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[5] { - yym3687 := z.EncBinary() - _ = yym3687 + if yyq3713[5] { + yym3730 := z.EncBinary() + _ = yym3730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -46177,23 +46788,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[5] { + if yyq3713[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3688 := z.EncBinary() - _ = yym3688 + yym3731 := z.EncBinary() + _ = yym3731 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3670[6] { - yym3690 := z.EncBinary() - _ = yym3690 + if yyq3713[6] { + yym3733 := z.EncBinary() + _ = yym3733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -46202,19 +46813,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3670[6] { + if yyq3713[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3691 := z.EncBinary() - _ = yym3691 + yym3734 := z.EncBinary() + _ = yym3734 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3670 || yy2arr3670 { + if yyr3713 || yy2arr3713 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46227,25 +46838,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3692 := z.DecBinary() - _ = yym3692 + yym3735 := z.DecBinary() + _ = yym3735 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3693 := r.ContainerType() - if yyct3693 == codecSelferValueTypeMap1234 { - yyl3693 := r.ReadMapStart() - if yyl3693 == 0 { + yyct3736 := r.ContainerType() + if yyct3736 == codecSelferValueTypeMap1234 { + yyl3736 := r.ReadMapStart() + if yyl3736 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3693, d) + x.codecDecodeSelfFromMap(yyl3736, d) } - } else if yyct3693 == codecSelferValueTypeArray1234 { - yyl3693 := r.ReadArrayStart() - if yyl3693 == 0 { + } else if yyct3736 == codecSelferValueTypeArray1234 { + yyl3736 := r.ReadArrayStart() + if yyl3736 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3693, d) + x.codecDecodeSelfFromArray(yyl3736, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46257,12 +46868,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3694Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3694Slc - var yyhl3694 bool = l >= 0 - for yyj3694 := 0; ; yyj3694++ { - if yyhl3694 { - if yyj3694 >= l { + var yys3737Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3737Slc + var yyhl3737 bool = l >= 0 + for yyj3737 := 0; ; yyj3737++ { + if yyhl3737 { + if yyj3737 >= l { break } } else { @@ -46271,10 +46882,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3694Slc = r.DecodeBytes(yys3694Slc, true, true) - yys3694 := string(yys3694Slc) + yys3737Slc = r.DecodeBytes(yys3737Slc, true, true) + yys3737 := string(yys3737Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3694 { + switch yys3737 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46318,9 +46929,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3694) - } // end switch yys3694 - } // end for yyj3694 + z.DecStructFieldNotFound(-1, yys3737) + } // end switch yys3737 + } // end for yyj3737 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46328,16 +46939,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3702 int - var yyb3702 bool - var yyhl3702 bool = l >= 0 - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + var yyj3745 int + var yyb3745 bool + var yyhl3745 bool = l >= 0 + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46347,13 +46958,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46363,13 +46974,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46379,13 +46990,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46395,13 +47006,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46411,13 +47022,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46427,13 +47038,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46444,17 +47055,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3702++ - if yyhl3702 { - yyb3702 = yyj3702 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3702 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3702 { + if yyb3745 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3702-1, "") + z.DecStructFieldNotFound(yyj3745-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46466,33 +47077,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3710 := z.EncBinary() - _ = yym3710 + yym3753 := z.EncBinary() + _ = yym3753 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3711 := !z.EncBinary() - yy2arr3711 := z.EncBasicHandle().StructToArray - var yyq3711 [1]bool - _, _, _ = yysep3711, yyq3711, yy2arr3711 - const yyr3711 bool = false - var yynn3711 int - if yyr3711 || yy2arr3711 { + yysep3754 := !z.EncBinary() + yy2arr3754 := z.EncBasicHandle().StructToArray + var yyq3754 [1]bool + _, _, _ = yysep3754, yyq3754, yy2arr3754 + const yyr3754 bool = false + var yynn3754 int + if yyr3754 || yy2arr3754 { r.EncodeArrayStart(1) } else { - yynn3711 = 1 - for _, b := range yyq3711 { + yynn3754 = 1 + for _, b := range yyq3754 { if b { - yynn3711++ + yynn3754++ } } - r.EncodeMapStart(yynn3711) - yynn3711 = 0 + r.EncodeMapStart(yynn3754) + yynn3754 = 0 } - if yyr3711 || yy2arr3711 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3713 := z.EncBinary() - _ = yym3713 + yym3756 := z.EncBinary() + _ = yym3756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46501,14 +47112,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3714 := z.EncBinary() - _ = yym3714 + yym3757 := z.EncBinary() + _ = yym3757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3711 || yy2arr3711 { + if yyr3754 || yy2arr3754 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46521,25 +47132,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3715 := z.DecBinary() - _ = yym3715 + yym3758 := z.DecBinary() + _ = yym3758 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3716 := r.ContainerType() - if yyct3716 == codecSelferValueTypeMap1234 { - yyl3716 := r.ReadMapStart() - if yyl3716 == 0 { + yyct3759 := r.ContainerType() + if yyct3759 == codecSelferValueTypeMap1234 { + yyl3759 := r.ReadMapStart() + if yyl3759 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3716, d) + x.codecDecodeSelfFromMap(yyl3759, d) } - } else if yyct3716 == codecSelferValueTypeArray1234 { - yyl3716 := r.ReadArrayStart() - if yyl3716 == 0 { + } else if yyct3759 == codecSelferValueTypeArray1234 { + yyl3759 := r.ReadArrayStart() + if yyl3759 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3716, d) + x.codecDecodeSelfFromArray(yyl3759, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46551,12 +47162,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3717Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3717Slc - var yyhl3717 bool = l >= 0 - for yyj3717 := 0; ; yyj3717++ { - if yyhl3717 { - if yyj3717 >= l { + var yys3760Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3760Slc + var yyhl3760 bool = l >= 0 + for yyj3760 := 0; ; yyj3760++ { + if yyhl3760 { + if yyj3760 >= l { break } } else { @@ -46565,10 +47176,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3717Slc = r.DecodeBytes(yys3717Slc, true, true) - yys3717 := string(yys3717Slc) + yys3760Slc = r.DecodeBytes(yys3760Slc, true, true) + yys3760 := string(yys3760Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3717 { + switch yys3760 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -46576,9 +47187,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3717) - } // end switch yys3717 - } // end for yyj3717 + z.DecStructFieldNotFound(-1, yys3760) + } // end switch yys3760 + } // end for yyj3760 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46586,16 +47197,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3719 int - var yyb3719 bool - var yyhl3719 bool = l >= 0 - yyj3719++ - if yyhl3719 { - yyb3719 = yyj3719 > l + var yyj3762 int + var yyb3762 bool + var yyhl3762 bool = l >= 0 + yyj3762++ + if yyhl3762 { + yyb3762 = yyj3762 > l } else { - yyb3719 = r.CheckBreak() + yyb3762 = r.CheckBreak() } - if yyb3719 { + if yyb3762 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46606,17 +47217,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3719++ - if yyhl3719 { - yyb3719 = yyj3719 > l + yyj3762++ + if yyhl3762 { + yyb3762 = yyj3762 > l } else { - yyb3719 = r.CheckBreak() + yyb3762 = r.CheckBreak() } - if yyb3719 { + if yyb3762 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3719-1, "") + z.DecStructFieldNotFound(yyj3762-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46628,37 +47239,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3721 := z.EncBinary() - _ = yym3721 + yym3764 := z.EncBinary() + _ = yym3764 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3722 := !z.EncBinary() - yy2arr3722 := z.EncBasicHandle().StructToArray - var yyq3722 [3]bool - _, _, _ = yysep3722, yyq3722, yy2arr3722 - const yyr3722 bool = false - yyq3722[0] = x.Kind != "" - yyq3722[1] = x.APIVersion != "" - yyq3722[2] = true - var yynn3722 int - if yyr3722 || yy2arr3722 { + yysep3765 := !z.EncBinary() + yy2arr3765 := z.EncBasicHandle().StructToArray + var yyq3765 [3]bool + _, _, _ = yysep3765, yyq3765, yy2arr3765 + const yyr3765 bool = false + yyq3765[0] = x.Kind != "" + yyq3765[1] = x.APIVersion != "" + yyq3765[2] = true + var yynn3765 int + if yyr3765 || yy2arr3765 { r.EncodeArrayStart(3) } else { - yynn3722 = 0 - for _, b := range yyq3722 { + yynn3765 = 0 + for _, b := range yyq3765 { if b { - yynn3722++ + yynn3765++ } } - r.EncodeMapStart(yynn3722) - yynn3722 = 0 + r.EncodeMapStart(yynn3765) + yynn3765 = 0 } - if yyr3722 || yy2arr3722 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3722[0] { - yym3724 := z.EncBinary() - _ = yym3724 + if yyq3765[0] { + yym3767 := z.EncBinary() + _ = yym3767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46667,23 +47278,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3722[0] { + if yyq3765[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3725 := z.EncBinary() - _ = yym3725 + yym3768 := z.EncBinary() + _ = yym3768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3722 || yy2arr3722 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3722[1] { - yym3727 := z.EncBinary() - _ = yym3727 + if yyq3765[1] { + yym3770 := z.EncBinary() + _ = yym3770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46692,36 +47303,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3722[1] { + if yyq3765[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3728 := z.EncBinary() - _ = yym3728 + yym3771 := z.EncBinary() + _ = yym3771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3722 || yy2arr3722 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3722[2] { - yy3730 := &x.Reference - yy3730.CodecEncodeSelf(e) + if yyq3765[2] { + yy3773 := &x.Reference + yy3773.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3722[2] { + if yyq3765[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3731 := &x.Reference - yy3731.CodecEncodeSelf(e) + yy3774 := &x.Reference + yy3774.CodecEncodeSelf(e) } } - if yyr3722 || yy2arr3722 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46734,25 +47345,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3732 := z.DecBinary() - _ = yym3732 + yym3775 := z.DecBinary() + _ = yym3775 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3733 := r.ContainerType() - if yyct3733 == codecSelferValueTypeMap1234 { - yyl3733 := r.ReadMapStart() - if yyl3733 == 0 { + yyct3776 := r.ContainerType() + if yyct3776 == codecSelferValueTypeMap1234 { + yyl3776 := r.ReadMapStart() + if yyl3776 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3733, d) + x.codecDecodeSelfFromMap(yyl3776, d) } - } else if yyct3733 == codecSelferValueTypeArray1234 { - yyl3733 := r.ReadArrayStart() - if yyl3733 == 0 { + } else if yyct3776 == codecSelferValueTypeArray1234 { + yyl3776 := r.ReadArrayStart() + if yyl3776 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3733, d) + x.codecDecodeSelfFromArray(yyl3776, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46764,12 +47375,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3734Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3734Slc - var yyhl3734 bool = l >= 0 - for yyj3734 := 0; ; yyj3734++ { - if yyhl3734 { - if yyj3734 >= l { + var yys3777Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3777Slc + var yyhl3777 bool = l >= 0 + for yyj3777 := 0; ; yyj3777++ { + if yyhl3777 { + if yyj3777 >= l { break } } else { @@ -46778,10 +47389,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3734Slc = r.DecodeBytes(yys3734Slc, true, true) - yys3734 := string(yys3734Slc) + yys3777Slc = r.DecodeBytes(yys3777Slc, true, true) + yys3777 := string(yys3777Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3734 { + switch yys3777 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46798,13 +47409,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3737 := &x.Reference - yyv3737.CodecDecodeSelf(d) + yyv3780 := &x.Reference + yyv3780.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3734) - } // end switch yys3734 - } // end for yyj3734 + z.DecStructFieldNotFound(-1, yys3777) + } // end switch yys3777 + } // end for yyj3777 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46812,16 +47423,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3738 int - var yyb3738 bool - var yyhl3738 bool = l >= 0 - yyj3738++ - if yyhl3738 { - yyb3738 = yyj3738 > l + var yyj3781 int + var yyb3781 bool + var yyhl3781 bool = l >= 0 + yyj3781++ + if yyhl3781 { + yyb3781 = yyj3781 > l } else { - yyb3738 = r.CheckBreak() + yyb3781 = r.CheckBreak() } - if yyb3738 { + if yyb3781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46831,13 +47442,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3738++ - if yyhl3738 { - yyb3738 = yyj3738 > l + yyj3781++ + if yyhl3781 { + yyb3781 = yyj3781 > l } else { - yyb3738 = r.CheckBreak() + yyb3781 = r.CheckBreak() } - if yyb3738 { + if yyb3781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46847,13 +47458,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3738++ - if yyhl3738 { - yyb3738 = yyj3738 > l + yyj3781++ + if yyhl3781 { + yyb3781 = yyj3781 > l } else { - yyb3738 = r.CheckBreak() + yyb3781 = r.CheckBreak() } - if yyb3738 { + if yyb3781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46861,21 +47472,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3741 := &x.Reference - yyv3741.CodecDecodeSelf(d) + yyv3784 := &x.Reference + yyv3784.CodecDecodeSelf(d) } for { - yyj3738++ - if yyhl3738 { - yyb3738 = yyj3738 > l + yyj3781++ + if yyhl3781 { + yyb3781 = yyj3781 > l } else { - yyb3738 = r.CheckBreak() + yyb3781 = r.CheckBreak() } - if yyb3738 { + if yyb3781 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3738-1, "") + z.DecStructFieldNotFound(yyj3781-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46887,36 +47498,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3742 := z.EncBinary() - _ = yym3742 + yym3785 := z.EncBinary() + _ = yym3785 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3743 := !z.EncBinary() - yy2arr3743 := z.EncBasicHandle().StructToArray - var yyq3743 [2]bool - _, _, _ = yysep3743, yyq3743, yy2arr3743 - const yyr3743 bool = false - yyq3743[0] = x.Component != "" - yyq3743[1] = x.Host != "" - var yynn3743 int - if yyr3743 || yy2arr3743 { + yysep3786 := !z.EncBinary() + yy2arr3786 := z.EncBasicHandle().StructToArray + var yyq3786 [2]bool + _, _, _ = yysep3786, yyq3786, yy2arr3786 + const yyr3786 bool = false + yyq3786[0] = x.Component != "" + yyq3786[1] = x.Host != "" + var yynn3786 int + if yyr3786 || yy2arr3786 { r.EncodeArrayStart(2) } else { - yynn3743 = 0 - for _, b := range yyq3743 { + yynn3786 = 0 + for _, b := range yyq3786 { if b { - yynn3743++ + yynn3786++ } } - r.EncodeMapStart(yynn3743) - yynn3743 = 0 + r.EncodeMapStart(yynn3786) + yynn3786 = 0 } - if yyr3743 || yy2arr3743 { + if yyr3786 || yy2arr3786 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3743[0] { - yym3745 := z.EncBinary() - _ = yym3745 + if yyq3786[0] { + yym3788 := z.EncBinary() + _ = yym3788 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -46925,23 +47536,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3743[0] { + if yyq3786[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3746 := z.EncBinary() - _ = yym3746 + yym3789 := z.EncBinary() + _ = yym3789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3743 || yy2arr3743 { + if yyr3786 || yy2arr3786 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3743[1] { - yym3748 := z.EncBinary() - _ = yym3748 + if yyq3786[1] { + yym3791 := z.EncBinary() + _ = yym3791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -46950,19 +47561,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3743[1] { + if yyq3786[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3749 := z.EncBinary() - _ = yym3749 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3743 || yy2arr3743 { + if yyr3786 || yy2arr3786 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46975,25 +47586,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3750 := z.DecBinary() - _ = yym3750 + yym3793 := z.DecBinary() + _ = yym3793 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3751 := r.ContainerType() - if yyct3751 == codecSelferValueTypeMap1234 { - yyl3751 := r.ReadMapStart() - if yyl3751 == 0 { + yyct3794 := r.ContainerType() + if yyct3794 == codecSelferValueTypeMap1234 { + yyl3794 := r.ReadMapStart() + if yyl3794 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3751, d) + x.codecDecodeSelfFromMap(yyl3794, d) } - } else if yyct3751 == codecSelferValueTypeArray1234 { - yyl3751 := r.ReadArrayStart() - if yyl3751 == 0 { + } else if yyct3794 == codecSelferValueTypeArray1234 { + yyl3794 := r.ReadArrayStart() + if yyl3794 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3751, d) + x.codecDecodeSelfFromArray(yyl3794, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47005,12 +47616,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3752Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3752Slc - var yyhl3752 bool = l >= 0 - for yyj3752 := 0; ; yyj3752++ { - if yyhl3752 { - if yyj3752 >= l { + var yys3795Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3795Slc + var yyhl3795 bool = l >= 0 + for yyj3795 := 0; ; yyj3795++ { + if yyhl3795 { + if yyj3795 >= l { break } } else { @@ -47019,10 +47630,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3752Slc = r.DecodeBytes(yys3752Slc, true, true) - yys3752 := string(yys3752Slc) + yys3795Slc = r.DecodeBytes(yys3795Slc, true, true) + yys3795 := string(yys3795Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3752 { + switch yys3795 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -47036,9 +47647,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3752) - } // end switch yys3752 - } // end for yyj3752 + z.DecStructFieldNotFound(-1, yys3795) + } // end switch yys3795 + } // end for yyj3795 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47046,16 +47657,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3755 int - var yyb3755 bool - var yyhl3755 bool = l >= 0 - yyj3755++ - if yyhl3755 { - yyb3755 = yyj3755 > l + var yyj3798 int + var yyb3798 bool + var yyhl3798 bool = l >= 0 + yyj3798++ + if yyhl3798 { + yyb3798 = yyj3798 > l } else { - yyb3755 = r.CheckBreak() + yyb3798 = r.CheckBreak() } - if yyb3755 { + if yyb3798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47065,13 +47676,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3755++ - if yyhl3755 { - yyb3755 = yyj3755 > l + yyj3798++ + if yyhl3798 { + yyb3798 = yyj3798 > l } else { - yyb3755 = r.CheckBreak() + yyb3798 = r.CheckBreak() } - if yyb3755 { + if yyb3798 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47082,17 +47693,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3755++ - if yyhl3755 { - yyb3755 = yyj3755 > l + yyj3798++ + if yyhl3798 { + yyb3798 = yyj3798 > l } else { - yyb3755 = r.CheckBreak() + yyb3798 = r.CheckBreak() } - if yyb3755 { + if yyb3798 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3755-1, "") + z.DecStructFieldNotFound(yyj3798-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47104,45 +47715,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3758 := z.EncBinary() - _ = yym3758 + yym3801 := z.EncBinary() + _ = yym3801 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3759 := !z.EncBinary() - yy2arr3759 := z.EncBasicHandle().StructToArray - var yyq3759 [11]bool - _, _, _ = yysep3759, yyq3759, yy2arr3759 - const yyr3759 bool = false - yyq3759[0] = x.Kind != "" - yyq3759[1] = x.APIVersion != "" - yyq3759[2] = true - yyq3759[3] = true - yyq3759[4] = x.Reason != "" - yyq3759[5] = x.Message != "" - yyq3759[6] = true - yyq3759[7] = true - yyq3759[8] = true - yyq3759[9] = x.Count != 0 - yyq3759[10] = x.Type != "" - var yynn3759 int - if yyr3759 || yy2arr3759 { + yysep3802 := !z.EncBinary() + yy2arr3802 := z.EncBasicHandle().StructToArray + var yyq3802 [11]bool + _, _, _ = yysep3802, yyq3802, yy2arr3802 + const yyr3802 bool = false + yyq3802[0] = x.Kind != "" + yyq3802[1] = x.APIVersion != "" + yyq3802[2] = true + yyq3802[3] = true + yyq3802[4] = x.Reason != "" + yyq3802[5] = x.Message != "" + yyq3802[6] = true + yyq3802[7] = true + yyq3802[8] = true + yyq3802[9] = x.Count != 0 + yyq3802[10] = x.Type != "" + var yynn3802 int + if yyr3802 || yy2arr3802 { r.EncodeArrayStart(11) } else { - yynn3759 = 0 - for _, b := range yyq3759 { + yynn3802 = 0 + for _, b := range yyq3802 { if b { - yynn3759++ + yynn3802++ } } - r.EncodeMapStart(yynn3759) - yynn3759 = 0 + r.EncodeMapStart(yynn3802) + yynn3802 = 0 } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[0] { - yym3761 := z.EncBinary() - _ = yym3761 + if yyq3802[0] { + yym3804 := z.EncBinary() + _ = yym3804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47151,23 +47762,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3759[0] { + if yyq3802[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3762 := z.EncBinary() - _ = yym3762 + yym3805 := z.EncBinary() + _ = yym3805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[1] { - yym3764 := z.EncBinary() - _ = yym3764 + if yyq3802[1] { + yym3807 := z.EncBinary() + _ = yym3807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47176,57 +47787,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3759[1] { + if yyq3802[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3765 := z.EncBinary() - _ = yym3765 + yym3808 := z.EncBinary() + _ = yym3808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[2] { - yy3767 := &x.ObjectMeta - yy3767.CodecEncodeSelf(e) + if yyq3802[2] { + yy3810 := &x.ObjectMeta + yy3810.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3759[2] { + if yyq3802[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3768 := &x.ObjectMeta - yy3768.CodecEncodeSelf(e) + yy3811 := &x.ObjectMeta + yy3811.CodecEncodeSelf(e) } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[3] { - yy3770 := &x.InvolvedObject - yy3770.CodecEncodeSelf(e) + if yyq3802[3] { + yy3813 := &x.InvolvedObject + yy3813.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3759[3] { + if yyq3802[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3771 := &x.InvolvedObject - yy3771.CodecEncodeSelf(e) + yy3814 := &x.InvolvedObject + yy3814.CodecEncodeSelf(e) } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[4] { - yym3773 := z.EncBinary() - _ = yym3773 + if yyq3802[4] { + yym3816 := z.EncBinary() + _ = yym3816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -47235,23 +47846,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3759[4] { + if yyq3802[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3774 := z.EncBinary() - _ = yym3774 + yym3817 := z.EncBinary() + _ = yym3817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[5] { - yym3776 := z.EncBinary() - _ = yym3776 + if yyq3802[5] { + yym3819 := z.EncBinary() + _ = yym3819 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -47260,114 +47871,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3759[5] { + if yyq3802[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3777 := z.EncBinary() - _ = yym3777 + yym3820 := z.EncBinary() + _ = yym3820 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[6] { - yy3779 := &x.Source - yy3779.CodecEncodeSelf(e) + if yyq3802[6] { + yy3822 := &x.Source + yy3822.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3759[6] { + if yyq3802[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3780 := &x.Source - yy3780.CodecEncodeSelf(e) + yy3823 := &x.Source + yy3823.CodecEncodeSelf(e) } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[7] { - yy3782 := &x.FirstTimestamp - yym3783 := z.EncBinary() - _ = yym3783 + if yyq3802[7] { + yy3825 := &x.FirstTimestamp + yym3826 := z.EncBinary() + _ = yym3826 if false { - } else if z.HasExtensions() && z.EncExt(yy3782) { - } else if yym3783 { - z.EncBinaryMarshal(yy3782) - } else if !yym3783 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3782) + } else if z.HasExtensions() && z.EncExt(yy3825) { + } else if yym3826 { + z.EncBinaryMarshal(yy3825) + } else if !yym3826 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3825) } else { - z.EncFallback(yy3782) + z.EncFallback(yy3825) } } else { r.EncodeNil() } } else { - if yyq3759[7] { + if yyq3802[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3784 := &x.FirstTimestamp - yym3785 := z.EncBinary() - _ = yym3785 + yy3827 := &x.FirstTimestamp + yym3828 := z.EncBinary() + _ = yym3828 if false { - } else if z.HasExtensions() && z.EncExt(yy3784) { - } else if yym3785 { - z.EncBinaryMarshal(yy3784) - } else if !yym3785 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3784) + } else if z.HasExtensions() && z.EncExt(yy3827) { + } else if yym3828 { + z.EncBinaryMarshal(yy3827) + } else if !yym3828 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3827) } else { - z.EncFallback(yy3784) + z.EncFallback(yy3827) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[8] { - yy3787 := &x.LastTimestamp - yym3788 := z.EncBinary() - _ = yym3788 + if yyq3802[8] { + yy3830 := &x.LastTimestamp + yym3831 := z.EncBinary() + _ = yym3831 if false { - } else if z.HasExtensions() && z.EncExt(yy3787) { - } else if yym3788 { - z.EncBinaryMarshal(yy3787) - } else if !yym3788 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3787) + } else if z.HasExtensions() && z.EncExt(yy3830) { + } else if yym3831 { + z.EncBinaryMarshal(yy3830) + } else if !yym3831 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3830) } else { - z.EncFallback(yy3787) + z.EncFallback(yy3830) } } else { r.EncodeNil() } } else { - if yyq3759[8] { + if yyq3802[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3789 := &x.LastTimestamp - yym3790 := z.EncBinary() - _ = yym3790 + yy3832 := &x.LastTimestamp + yym3833 := z.EncBinary() + _ = yym3833 if false { - } else if z.HasExtensions() && z.EncExt(yy3789) { - } else if yym3790 { - z.EncBinaryMarshal(yy3789) - } else if !yym3790 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3789) + } else if z.HasExtensions() && z.EncExt(yy3832) { + } else if yym3833 { + z.EncBinaryMarshal(yy3832) + } else if !yym3833 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3832) } else { - z.EncFallback(yy3789) + z.EncFallback(yy3832) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[9] { - yym3792 := z.EncBinary() - _ = yym3792 + if yyq3802[9] { + yym3835 := z.EncBinary() + _ = yym3835 if false { } else { r.EncodeInt(int64(x.Count)) @@ -47376,23 +47987,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3759[9] { + if yyq3802[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3793 := z.EncBinary() - _ = yym3793 + yym3836 := z.EncBinary() + _ = yym3836 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3759[10] { - yym3795 := z.EncBinary() - _ = yym3795 + if yyq3802[10] { + yym3838 := z.EncBinary() + _ = yym3838 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -47401,19 +48012,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3759[10] { + if yyq3802[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3796 := z.EncBinary() - _ = yym3796 + yym3839 := z.EncBinary() + _ = yym3839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3759 || yy2arr3759 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47426,25 +48037,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3797 := z.DecBinary() - _ = yym3797 + yym3840 := z.DecBinary() + _ = yym3840 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3798 := r.ContainerType() - if yyct3798 == codecSelferValueTypeMap1234 { - yyl3798 := r.ReadMapStart() - if yyl3798 == 0 { + yyct3841 := r.ContainerType() + if yyct3841 == codecSelferValueTypeMap1234 { + yyl3841 := r.ReadMapStart() + if yyl3841 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3798, d) + x.codecDecodeSelfFromMap(yyl3841, d) } - } else if yyct3798 == codecSelferValueTypeArray1234 { - yyl3798 := r.ReadArrayStart() - if yyl3798 == 0 { + } else if yyct3841 == codecSelferValueTypeArray1234 { + yyl3841 := r.ReadArrayStart() + if yyl3841 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3798, d) + x.codecDecodeSelfFromArray(yyl3841, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47456,12 +48067,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3799Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3799Slc - var yyhl3799 bool = l >= 0 - for yyj3799 := 0; ; yyj3799++ { - if yyhl3799 { - if yyj3799 >= l { + var yys3842Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3842Slc + var yyhl3842 bool = l >= 0 + for yyj3842 := 0; ; yyj3842++ { + if yyhl3842 { + if yyj3842 >= l { break } } else { @@ -47470,10 +48081,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3799Slc = r.DecodeBytes(yys3799Slc, true, true) - yys3799 := string(yys3799Slc) + yys3842Slc = r.DecodeBytes(yys3842Slc, true, true) + yys3842 := string(yys3842Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3799 { + switch yys3842 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47490,15 +48101,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3802 := &x.ObjectMeta - yyv3802.CodecDecodeSelf(d) + yyv3845 := &x.ObjectMeta + yyv3845.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3803 := &x.InvolvedObject - yyv3803.CodecDecodeSelf(d) + yyv3846 := &x.InvolvedObject + yyv3846.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -47516,41 +48127,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3806 := &x.Source - yyv3806.CodecDecodeSelf(d) + yyv3849 := &x.Source + yyv3849.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3807 := &x.FirstTimestamp - yym3808 := z.DecBinary() - _ = yym3808 + yyv3850 := &x.FirstTimestamp + yym3851 := z.DecBinary() + _ = yym3851 if false { - } else if z.HasExtensions() && z.DecExt(yyv3807) { - } else if yym3808 { - z.DecBinaryUnmarshal(yyv3807) - } else if !yym3808 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3807) + } else if z.HasExtensions() && z.DecExt(yyv3850) { + } else if yym3851 { + z.DecBinaryUnmarshal(yyv3850) + } else if !yym3851 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3850) } else { - z.DecFallback(yyv3807, false) + z.DecFallback(yyv3850, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3809 := &x.LastTimestamp - yym3810 := z.DecBinary() - _ = yym3810 + yyv3852 := &x.LastTimestamp + yym3853 := z.DecBinary() + _ = yym3853 if false { - } else if z.HasExtensions() && z.DecExt(yyv3809) { - } else if yym3810 { - z.DecBinaryUnmarshal(yyv3809) - } else if !yym3810 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3809) + } else if z.HasExtensions() && z.DecExt(yyv3852) { + } else if yym3853 { + z.DecBinaryUnmarshal(yyv3852) + } else if !yym3853 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3852) } else { - z.DecFallback(yyv3809, false) + z.DecFallback(yyv3852, false) } } case "count": @@ -47566,9 +48177,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3799) - } // end switch yys3799 - } // end for yyj3799 + z.DecStructFieldNotFound(-1, yys3842) + } // end switch yys3842 + } // end for yyj3842 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47576,16 +48187,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3813 int - var yyb3813 bool - var yyhl3813 bool = l >= 0 - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + var yyj3856 int + var yyb3856 bool + var yyhl3856 bool = l >= 0 + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47595,13 +48206,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47611,13 +48222,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47625,16 +48236,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3816 := &x.ObjectMeta - yyv3816.CodecDecodeSelf(d) + yyv3859 := &x.ObjectMeta + yyv3859.CodecDecodeSelf(d) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47642,16 +48253,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3817 := &x.InvolvedObject - yyv3817.CodecDecodeSelf(d) + yyv3860 := &x.InvolvedObject + yyv3860.CodecDecodeSelf(d) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47661,13 +48272,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47677,13 +48288,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47691,16 +48302,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3820 := &x.Source - yyv3820.CodecDecodeSelf(d) + yyv3863 := &x.Source + yyv3863.CodecDecodeSelf(d) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47708,26 +48319,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3821 := &x.FirstTimestamp - yym3822 := z.DecBinary() - _ = yym3822 + yyv3864 := &x.FirstTimestamp + yym3865 := z.DecBinary() + _ = yym3865 if false { - } else if z.HasExtensions() && z.DecExt(yyv3821) { - } else if yym3822 { - z.DecBinaryUnmarshal(yyv3821) - } else if !yym3822 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3821) + } else if z.HasExtensions() && z.DecExt(yyv3864) { + } else if yym3865 { + z.DecBinaryUnmarshal(yyv3864) + } else if !yym3865 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3864) } else { - z.DecFallback(yyv3821, false) + z.DecFallback(yyv3864, false) } } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47735,26 +48346,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3823 := &x.LastTimestamp - yym3824 := z.DecBinary() - _ = yym3824 + yyv3866 := &x.LastTimestamp + yym3867 := z.DecBinary() + _ = yym3867 if false { - } else if z.HasExtensions() && z.DecExt(yyv3823) { - } else if yym3824 { - z.DecBinaryUnmarshal(yyv3823) - } else if !yym3824 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3823) + } else if z.HasExtensions() && z.DecExt(yyv3866) { + } else if yym3867 { + z.DecBinaryUnmarshal(yyv3866) + } else if !yym3867 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3866) } else { - z.DecFallback(yyv3823, false) + z.DecFallback(yyv3866, false) } } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47764,13 +48375,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47781,17 +48392,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3813++ - if yyhl3813 { - yyb3813 = yyj3813 > l + yyj3856++ + if yyhl3856 { + yyb3856 = yyj3856 > l } else { - yyb3813 = r.CheckBreak() + yyb3856 = r.CheckBreak() } - if yyb3813 { + if yyb3856 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3813-1, "") + z.DecStructFieldNotFound(yyj3856-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47803,37 +48414,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3827 := z.EncBinary() - _ = yym3827 + yym3870 := z.EncBinary() + _ = yym3870 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3828 := !z.EncBinary() - yy2arr3828 := z.EncBasicHandle().StructToArray - var yyq3828 [4]bool - _, _, _ = yysep3828, yyq3828, yy2arr3828 - const yyr3828 bool = false - yyq3828[0] = x.Kind != "" - yyq3828[1] = x.APIVersion != "" - yyq3828[2] = true - var yynn3828 int - if yyr3828 || yy2arr3828 { + yysep3871 := !z.EncBinary() + yy2arr3871 := z.EncBasicHandle().StructToArray + var yyq3871 [4]bool + _, _, _ = yysep3871, yyq3871, yy2arr3871 + const yyr3871 bool = false + yyq3871[0] = x.Kind != "" + yyq3871[1] = x.APIVersion != "" + yyq3871[2] = true + var yynn3871 int + if yyr3871 || yy2arr3871 { r.EncodeArrayStart(4) } else { - yynn3828 = 1 - for _, b := range yyq3828 { + yynn3871 = 1 + for _, b := range yyq3871 { if b { - yynn3828++ + yynn3871++ } } - r.EncodeMapStart(yynn3828) - yynn3828 = 0 + r.EncodeMapStart(yynn3871) + yynn3871 = 0 } - if yyr3828 || yy2arr3828 { + if yyr3871 || yy2arr3871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3828[0] { - yym3830 := z.EncBinary() - _ = yym3830 + if yyq3871[0] { + yym3873 := z.EncBinary() + _ = yym3873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47842,23 +48453,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3828[0] { + if yyq3871[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3831 := z.EncBinary() - _ = yym3831 + yym3874 := z.EncBinary() + _ = yym3874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3828 || yy2arr3828 { + if yyr3871 || yy2arr3871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3828[1] { - yym3833 := z.EncBinary() - _ = yym3833 + if yyq3871[1] { + yym3876 := z.EncBinary() + _ = yym3876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47867,54 +48478,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3828[1] { + if yyq3871[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3834 := z.EncBinary() - _ = yym3834 + yym3877 := z.EncBinary() + _ = yym3877 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3828 || yy2arr3828 { + if yyr3871 || yy2arr3871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3828[2] { - yy3836 := &x.ListMeta - yym3837 := z.EncBinary() - _ = yym3837 + if yyq3871[2] { + yy3879 := &x.ListMeta + yym3880 := z.EncBinary() + _ = yym3880 if false { - } else if z.HasExtensions() && z.EncExt(yy3836) { + } else if z.HasExtensions() && z.EncExt(yy3879) { } else { - z.EncFallback(yy3836) + z.EncFallback(yy3879) } } else { r.EncodeNil() } } else { - if yyq3828[2] { + if yyq3871[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3838 := &x.ListMeta - yym3839 := z.EncBinary() - _ = yym3839 + yy3881 := &x.ListMeta + yym3882 := z.EncBinary() + _ = yym3882 if false { - } else if z.HasExtensions() && z.EncExt(yy3838) { + } else if z.HasExtensions() && z.EncExt(yy3881) { } else { - z.EncFallback(yy3838) + z.EncFallback(yy3881) } } } - if yyr3828 || yy2arr3828 { + if yyr3871 || yy2arr3871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3841 := z.EncBinary() - _ = yym3841 + yym3884 := z.EncBinary() + _ = yym3884 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -47927,15 +48538,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3842 := z.EncBinary() - _ = yym3842 + yym3885 := z.EncBinary() + _ = yym3885 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3828 || yy2arr3828 { + if yyr3871 || yy2arr3871 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47948,25 +48559,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3843 := z.DecBinary() - _ = yym3843 + yym3886 := z.DecBinary() + _ = yym3886 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3844 := r.ContainerType() - if yyct3844 == codecSelferValueTypeMap1234 { - yyl3844 := r.ReadMapStart() - if yyl3844 == 0 { + yyct3887 := r.ContainerType() + if yyct3887 == codecSelferValueTypeMap1234 { + yyl3887 := r.ReadMapStart() + if yyl3887 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3844, d) + x.codecDecodeSelfFromMap(yyl3887, d) } - } else if yyct3844 == codecSelferValueTypeArray1234 { - yyl3844 := r.ReadArrayStart() - if yyl3844 == 0 { + } else if yyct3887 == codecSelferValueTypeArray1234 { + yyl3887 := r.ReadArrayStart() + if yyl3887 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3844, d) + x.codecDecodeSelfFromArray(yyl3887, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47978,12 +48589,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3845Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3845Slc - var yyhl3845 bool = l >= 0 - for yyj3845 := 0; ; yyj3845++ { - if yyhl3845 { - if yyj3845 >= l { + var yys3888Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3888Slc + var yyhl3888 bool = l >= 0 + for yyj3888 := 0; ; yyj3888++ { + if yyhl3888 { + if yyj3888 >= l { break } } else { @@ -47992,10 +48603,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3845Slc = r.DecodeBytes(yys3845Slc, true, true) - yys3845 := string(yys3845Slc) + yys3888Slc = r.DecodeBytes(yys3888Slc, true, true) + yys3888 := string(yys3888Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3845 { + switch yys3888 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48012,31 +48623,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3848 := &x.ListMeta - yym3849 := z.DecBinary() - _ = yym3849 + yyv3891 := &x.ListMeta + yym3892 := z.DecBinary() + _ = yym3892 if false { - } else if z.HasExtensions() && z.DecExt(yyv3848) { + } else if z.HasExtensions() && z.DecExt(yyv3891) { } else { - z.DecFallback(yyv3848, false) + z.DecFallback(yyv3891, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3850 := &x.Items - yym3851 := z.DecBinary() - _ = yym3851 + yyv3893 := &x.Items + yym3894 := z.DecBinary() + _ = yym3894 if false { } else { - h.decSliceEvent((*[]Event)(yyv3850), d) + h.decSliceEvent((*[]Event)(yyv3893), d) } } default: - z.DecStructFieldNotFound(-1, yys3845) - } // end switch yys3845 - } // end for yyj3845 + z.DecStructFieldNotFound(-1, yys3888) + } // end switch yys3888 + } // end for yyj3888 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48044,16 +48655,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3852 int - var yyb3852 bool - var yyhl3852 bool = l >= 0 - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + var yyj3895 int + var yyb3895 bool + var yyhl3895 bool = l >= 0 + yyj3895++ + if yyhl3895 { + yyb3895 = yyj3895 > l } else { - yyb3852 = r.CheckBreak() + yyb3895 = r.CheckBreak() } - if yyb3852 { + if yyb3895 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48063,13 +48674,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + yyj3895++ + if yyhl3895 { + yyb3895 = yyj3895 > l } else { - yyb3852 = r.CheckBreak() + yyb3895 = r.CheckBreak() } - if yyb3852 { + if yyb3895 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48079,13 +48690,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + yyj3895++ + if yyhl3895 { + yyb3895 = yyj3895 > l } else { - yyb3852 = r.CheckBreak() + yyb3895 = r.CheckBreak() } - if yyb3852 { + if yyb3895 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48093,22 +48704,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3855 := &x.ListMeta - yym3856 := z.DecBinary() - _ = yym3856 + yyv3898 := &x.ListMeta + yym3899 := z.DecBinary() + _ = yym3899 if false { - } else if z.HasExtensions() && z.DecExt(yyv3855) { + } else if z.HasExtensions() && z.DecExt(yyv3898) { } else { - z.DecFallback(yyv3855, false) + z.DecFallback(yyv3898, false) } } - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + yyj3895++ + if yyhl3895 { + yyb3895 = yyj3895 > l } else { - yyb3852 = r.CheckBreak() + yyb3895 = r.CheckBreak() } - if yyb3852 { + if yyb3895 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48116,26 +48727,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3857 := &x.Items - yym3858 := z.DecBinary() - _ = yym3858 + yyv3900 := &x.Items + yym3901 := z.DecBinary() + _ = yym3901 if false { } else { - h.decSliceEvent((*[]Event)(yyv3857), d) + h.decSliceEvent((*[]Event)(yyv3900), d) } } for { - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + yyj3895++ + if yyhl3895 { + yyb3895 = yyj3895 > l } else { - yyb3852 = r.CheckBreak() + yyb3895 = r.CheckBreak() } - if yyb3852 { + if yyb3895 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3852-1, "") + z.DecStructFieldNotFound(yyj3895-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48147,37 +48758,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3859 := z.EncBinary() - _ = yym3859 + yym3902 := z.EncBinary() + _ = yym3902 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3860 := !z.EncBinary() - yy2arr3860 := z.EncBasicHandle().StructToArray - var yyq3860 [4]bool - _, _, _ = yysep3860, yyq3860, yy2arr3860 - const yyr3860 bool = false - yyq3860[0] = x.Kind != "" - yyq3860[1] = x.APIVersion != "" - yyq3860[2] = true - var yynn3860 int - if yyr3860 || yy2arr3860 { + yysep3903 := !z.EncBinary() + yy2arr3903 := z.EncBasicHandle().StructToArray + var yyq3903 [4]bool + _, _, _ = yysep3903, yyq3903, yy2arr3903 + const yyr3903 bool = false + yyq3903[0] = x.Kind != "" + yyq3903[1] = x.APIVersion != "" + yyq3903[2] = true + var yynn3903 int + if yyr3903 || yy2arr3903 { r.EncodeArrayStart(4) } else { - yynn3860 = 1 - for _, b := range yyq3860 { + yynn3903 = 1 + for _, b := range yyq3903 { if b { - yynn3860++ + yynn3903++ } } - r.EncodeMapStart(yynn3860) - yynn3860 = 0 + r.EncodeMapStart(yynn3903) + yynn3903 = 0 } - if yyr3860 || yy2arr3860 { + if yyr3903 || yy2arr3903 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3860[0] { - yym3862 := z.EncBinary() - _ = yym3862 + if yyq3903[0] { + yym3905 := z.EncBinary() + _ = yym3905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48186,23 +48797,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3860[0] { + if yyq3903[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3863 := z.EncBinary() - _ = yym3863 + yym3906 := z.EncBinary() + _ = yym3906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3860 || yy2arr3860 { + if yyr3903 || yy2arr3903 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3860[1] { - yym3865 := z.EncBinary() - _ = yym3865 + if yyq3903[1] { + yym3908 := z.EncBinary() + _ = yym3908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48211,54 +48822,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3860[1] { + if yyq3903[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3866 := z.EncBinary() - _ = yym3866 + yym3909 := z.EncBinary() + _ = yym3909 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3860 || yy2arr3860 { + if yyr3903 || yy2arr3903 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3860[2] { - yy3868 := &x.ListMeta - yym3869 := z.EncBinary() - _ = yym3869 + if yyq3903[2] { + yy3911 := &x.ListMeta + yym3912 := z.EncBinary() + _ = yym3912 if false { - } else if z.HasExtensions() && z.EncExt(yy3868) { + } else if z.HasExtensions() && z.EncExt(yy3911) { } else { - z.EncFallback(yy3868) + z.EncFallback(yy3911) } } else { r.EncodeNil() } } else { - if yyq3860[2] { + if yyq3903[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3870 := &x.ListMeta - yym3871 := z.EncBinary() - _ = yym3871 + yy3913 := &x.ListMeta + yym3914 := z.EncBinary() + _ = yym3914 if false { - } else if z.HasExtensions() && z.EncExt(yy3870) { + } else if z.HasExtensions() && z.EncExt(yy3913) { } else { - z.EncFallback(yy3870) + z.EncFallback(yy3913) } } } - if yyr3860 || yy2arr3860 { + if yyr3903 || yy2arr3903 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3873 := z.EncBinary() - _ = yym3873 + yym3916 := z.EncBinary() + _ = yym3916 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -48271,15 +48882,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3874 := z.EncBinary() - _ = yym3874 + yym3917 := z.EncBinary() + _ = yym3917 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr3860 || yy2arr3860 { + if yyr3903 || yy2arr3903 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48292,25 +48903,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3875 := z.DecBinary() - _ = yym3875 + yym3918 := z.DecBinary() + _ = yym3918 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3876 := r.ContainerType() - if yyct3876 == codecSelferValueTypeMap1234 { - yyl3876 := r.ReadMapStart() - if yyl3876 == 0 { + yyct3919 := r.ContainerType() + if yyct3919 == codecSelferValueTypeMap1234 { + yyl3919 := r.ReadMapStart() + if yyl3919 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3876, d) + x.codecDecodeSelfFromMap(yyl3919, d) } - } else if yyct3876 == codecSelferValueTypeArray1234 { - yyl3876 := r.ReadArrayStart() - if yyl3876 == 0 { + } else if yyct3919 == codecSelferValueTypeArray1234 { + yyl3919 := r.ReadArrayStart() + if yyl3919 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3876, d) + x.codecDecodeSelfFromArray(yyl3919, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48322,12 +48933,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3877Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3877Slc - var yyhl3877 bool = l >= 0 - for yyj3877 := 0; ; yyj3877++ { - if yyhl3877 { - if yyj3877 >= l { + var yys3920Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3920Slc + var yyhl3920 bool = l >= 0 + for yyj3920 := 0; ; yyj3920++ { + if yyhl3920 { + if yyj3920 >= l { break } } else { @@ -48336,10 +48947,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3877Slc = r.DecodeBytes(yys3877Slc, true, true) - yys3877 := string(yys3877Slc) + yys3920Slc = r.DecodeBytes(yys3920Slc, true, true) + yys3920 := string(yys3920Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3877 { + switch yys3920 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48356,31 +48967,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3880 := &x.ListMeta - yym3881 := z.DecBinary() - _ = yym3881 + yyv3923 := &x.ListMeta + yym3924 := z.DecBinary() + _ = yym3924 if false { - } else if z.HasExtensions() && z.DecExt(yyv3880) { + } else if z.HasExtensions() && z.DecExt(yyv3923) { } else { - z.DecFallback(yyv3880, false) + z.DecFallback(yyv3923, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3882 := &x.Items - yym3883 := z.DecBinary() - _ = yym3883 + yyv3925 := &x.Items + yym3926 := z.DecBinary() + _ = yym3926 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3882), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3925), d) } } default: - z.DecStructFieldNotFound(-1, yys3877) - } // end switch yys3877 - } // end for yyj3877 + z.DecStructFieldNotFound(-1, yys3920) + } // end switch yys3920 + } // end for yyj3920 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48388,16 +48999,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3884 int - var yyb3884 bool - var yyhl3884 bool = l >= 0 - yyj3884++ - if yyhl3884 { - yyb3884 = yyj3884 > l + var yyj3927 int + var yyb3927 bool + var yyhl3927 bool = l >= 0 + yyj3927++ + if yyhl3927 { + yyb3927 = yyj3927 > l } else { - yyb3884 = r.CheckBreak() + yyb3927 = r.CheckBreak() } - if yyb3884 { + if yyb3927 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48407,13 +49018,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3884++ - if yyhl3884 { - yyb3884 = yyj3884 > l + yyj3927++ + if yyhl3927 { + yyb3927 = yyj3927 > l } else { - yyb3884 = r.CheckBreak() + yyb3927 = r.CheckBreak() } - if yyb3884 { + if yyb3927 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48423,13 +49034,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3884++ - if yyhl3884 { - yyb3884 = yyj3884 > l + yyj3927++ + if yyhl3927 { + yyb3927 = yyj3927 > l } else { - yyb3884 = r.CheckBreak() + yyb3927 = r.CheckBreak() } - if yyb3884 { + if yyb3927 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48437,22 +49048,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3887 := &x.ListMeta - yym3888 := z.DecBinary() - _ = yym3888 + yyv3930 := &x.ListMeta + yym3931 := z.DecBinary() + _ = yym3931 if false { - } else if z.HasExtensions() && z.DecExt(yyv3887) { + } else if z.HasExtensions() && z.DecExt(yyv3930) { } else { - z.DecFallback(yyv3887, false) + z.DecFallback(yyv3930, false) } } - yyj3884++ - if yyhl3884 { - yyb3884 = yyj3884 > l + yyj3927++ + if yyhl3927 { + yyb3927 = yyj3927 > l } else { - yyb3884 = r.CheckBreak() + yyb3927 = r.CheckBreak() } - if yyb3884 { + if yyb3927 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48460,26 +49071,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3889 := &x.Items - yym3890 := z.DecBinary() - _ = yym3890 + yyv3932 := &x.Items + yym3933 := z.DecBinary() + _ = yym3933 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3889), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3932), d) } } for { - yyj3884++ - if yyhl3884 { - yyb3884 = yyj3884 > l + yyj3927++ + if yyhl3927 { + yyb3927 = yyj3927 > l } else { - yyb3884 = r.CheckBreak() + yyb3927 = r.CheckBreak() } - if yyb3884 { + if yyb3927 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3884-1, "") + z.DecStructFieldNotFound(yyj3927-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48488,8 +49099,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3891 := z.EncBinary() - _ = yym3891 + yym3934 := z.EncBinary() + _ = yym3934 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -48501,8 +49112,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3892 := z.DecBinary() - _ = yym3892 + yym3935 := z.DecBinary() + _ = yym3935 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -48517,53 +49128,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3893 := z.EncBinary() - _ = yym3893 + yym3936 := z.EncBinary() + _ = yym3936 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3894 := !z.EncBinary() - yy2arr3894 := z.EncBasicHandle().StructToArray - var yyq3894 [6]bool - _, _, _ = yysep3894, yyq3894, yy2arr3894 - const yyr3894 bool = false - yyq3894[0] = x.Type != "" - yyq3894[1] = len(x.Max) != 0 - yyq3894[2] = len(x.Min) != 0 - yyq3894[3] = len(x.Default) != 0 - yyq3894[4] = len(x.DefaultRequest) != 0 - yyq3894[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3894 int - if yyr3894 || yy2arr3894 { + yysep3937 := !z.EncBinary() + yy2arr3937 := z.EncBasicHandle().StructToArray + var yyq3937 [6]bool + _, _, _ = yysep3937, yyq3937, yy2arr3937 + const yyr3937 bool = false + yyq3937[0] = x.Type != "" + yyq3937[1] = len(x.Max) != 0 + yyq3937[2] = len(x.Min) != 0 + yyq3937[3] = len(x.Default) != 0 + yyq3937[4] = len(x.DefaultRequest) != 0 + yyq3937[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3937 int + if yyr3937 || yy2arr3937 { r.EncodeArrayStart(6) } else { - yynn3894 = 0 - for _, b := range yyq3894 { + yynn3937 = 0 + for _, b := range yyq3937 { if b { - yynn3894++ + yynn3937++ } } - r.EncodeMapStart(yynn3894) - yynn3894 = 0 + r.EncodeMapStart(yynn3937) + yynn3937 = 0 } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3894[0] { + if yyq3937[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3894[0] { + if yyq3937[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3894[1] { + if yyq3937[1] { if x.Max == nil { r.EncodeNil() } else { @@ -48573,7 +49184,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3894[1] { + if yyq3937[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48584,9 +49195,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3894[2] { + if yyq3937[2] { if x.Min == nil { r.EncodeNil() } else { @@ -48596,7 +49207,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3894[2] { + if yyq3937[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48607,9 +49218,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3894[3] { + if yyq3937[3] { if x.Default == nil { r.EncodeNil() } else { @@ -48619,7 +49230,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3894[3] { + if yyq3937[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48630,9 +49241,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3894[4] { + if yyq3937[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -48642,7 +49253,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3894[4] { + if yyq3937[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48653,9 +49264,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3894[5] { + if yyq3937[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48665,7 +49276,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3894[5] { + if yyq3937[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48676,7 +49287,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3894 || yy2arr3894 { + if yyr3937 || yy2arr3937 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48689,25 +49300,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3901 := z.DecBinary() - _ = yym3901 + yym3944 := z.DecBinary() + _ = yym3944 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3902 := r.ContainerType() - if yyct3902 == codecSelferValueTypeMap1234 { - yyl3902 := r.ReadMapStart() - if yyl3902 == 0 { + yyct3945 := r.ContainerType() + if yyct3945 == codecSelferValueTypeMap1234 { + yyl3945 := r.ReadMapStart() + if yyl3945 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3902, d) + x.codecDecodeSelfFromMap(yyl3945, d) } - } else if yyct3902 == codecSelferValueTypeArray1234 { - yyl3902 := r.ReadArrayStart() - if yyl3902 == 0 { + } else if yyct3945 == codecSelferValueTypeArray1234 { + yyl3945 := r.ReadArrayStart() + if yyl3945 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3902, d) + x.codecDecodeSelfFromArray(yyl3945, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48719,12 +49330,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3903Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3903Slc - var yyhl3903 bool = l >= 0 - for yyj3903 := 0; ; yyj3903++ { - if yyhl3903 { - if yyj3903 >= l { + var yys3946Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3946Slc + var yyhl3946 bool = l >= 0 + for yyj3946 := 0; ; yyj3946++ { + if yyhl3946 { + if yyj3946 >= l { break } } else { @@ -48733,10 +49344,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3903Slc = r.DecodeBytes(yys3903Slc, true, true) - yys3903 := string(yys3903Slc) + yys3946Slc = r.DecodeBytes(yys3946Slc, true, true) + yys3946 := string(yys3946Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3903 { + switch yys3946 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48747,41 +49358,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3905 := &x.Max - yyv3905.CodecDecodeSelf(d) + yyv3948 := &x.Max + yyv3948.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3906 := &x.Min - yyv3906.CodecDecodeSelf(d) + yyv3949 := &x.Min + yyv3949.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3907 := &x.Default - yyv3907.CodecDecodeSelf(d) + yyv3950 := &x.Default + yyv3950.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3908 := &x.DefaultRequest - yyv3908.CodecDecodeSelf(d) + yyv3951 := &x.DefaultRequest + yyv3951.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3909 := &x.MaxLimitRequestRatio - yyv3909.CodecDecodeSelf(d) + yyv3952 := &x.MaxLimitRequestRatio + yyv3952.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3903) - } // end switch yys3903 - } // end for yyj3903 + z.DecStructFieldNotFound(-1, yys3946) + } // end switch yys3946 + } // end for yyj3946 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48789,16 +49400,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3910 int - var yyb3910 bool - var yyhl3910 bool = l >= 0 - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + var yyj3953 int + var yyb3953 bool + var yyhl3953 bool = l >= 0 + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48808,13 +49419,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48822,16 +49433,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3912 := &x.Max - yyv3912.CodecDecodeSelf(d) + yyv3955 := &x.Max + yyv3955.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48839,16 +49450,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3913 := &x.Min - yyv3913.CodecDecodeSelf(d) + yyv3956 := &x.Min + yyv3956.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48856,16 +49467,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3914 := &x.Default - yyv3914.CodecDecodeSelf(d) + yyv3957 := &x.Default + yyv3957.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48873,16 +49484,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3915 := &x.DefaultRequest - yyv3915.CodecDecodeSelf(d) + yyv3958 := &x.DefaultRequest + yyv3958.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48890,21 +49501,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3916 := &x.MaxLimitRequestRatio - yyv3916.CodecDecodeSelf(d) + yyv3959 := &x.MaxLimitRequestRatio + yyv3959.CodecDecodeSelf(d) } for { - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3910 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3910 { + if yyb3953 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3910-1, "") + z.DecStructFieldNotFound(yyj3953-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48916,36 +49527,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3917 := z.EncBinary() - _ = yym3917 + yym3960 := z.EncBinary() + _ = yym3960 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3918 := !z.EncBinary() - yy2arr3918 := z.EncBasicHandle().StructToArray - var yyq3918 [1]bool - _, _, _ = yysep3918, yyq3918, yy2arr3918 - const yyr3918 bool = false - var yynn3918 int - if yyr3918 || yy2arr3918 { + yysep3961 := !z.EncBinary() + yy2arr3961 := z.EncBasicHandle().StructToArray + var yyq3961 [1]bool + _, _, _ = yysep3961, yyq3961, yy2arr3961 + const yyr3961 bool = false + var yynn3961 int + if yyr3961 || yy2arr3961 { r.EncodeArrayStart(1) } else { - yynn3918 = 1 - for _, b := range yyq3918 { + yynn3961 = 1 + for _, b := range yyq3961 { if b { - yynn3918++ + yynn3961++ } } - r.EncodeMapStart(yynn3918) - yynn3918 = 0 + r.EncodeMapStart(yynn3961) + yynn3961 = 0 } - if yyr3918 || yy2arr3918 { + if yyr3961 || yy2arr3961 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3920 := z.EncBinary() - _ = yym3920 + yym3963 := z.EncBinary() + _ = yym3963 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -48958,15 +49569,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3921 := z.EncBinary() - _ = yym3921 + yym3964 := z.EncBinary() + _ = yym3964 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3918 || yy2arr3918 { + if yyr3961 || yy2arr3961 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48979,25 +49590,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3922 := z.DecBinary() - _ = yym3922 + yym3965 := z.DecBinary() + _ = yym3965 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3923 := r.ContainerType() - if yyct3923 == codecSelferValueTypeMap1234 { - yyl3923 := r.ReadMapStart() - if yyl3923 == 0 { + yyct3966 := r.ContainerType() + if yyct3966 == codecSelferValueTypeMap1234 { + yyl3966 := r.ReadMapStart() + if yyl3966 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3923, d) + x.codecDecodeSelfFromMap(yyl3966, d) } - } else if yyct3923 == codecSelferValueTypeArray1234 { - yyl3923 := r.ReadArrayStart() - if yyl3923 == 0 { + } else if yyct3966 == codecSelferValueTypeArray1234 { + yyl3966 := r.ReadArrayStart() + if yyl3966 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3923, d) + x.codecDecodeSelfFromArray(yyl3966, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49009,12 +49620,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3924Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3924Slc - var yyhl3924 bool = l >= 0 - for yyj3924 := 0; ; yyj3924++ { - if yyhl3924 { - if yyj3924 >= l { + var yys3967Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3967Slc + var yyhl3967 bool = l >= 0 + for yyj3967 := 0; ; yyj3967++ { + if yyhl3967 { + if yyj3967 >= l { break } } else { @@ -49023,26 +49634,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3924Slc = r.DecodeBytes(yys3924Slc, true, true) - yys3924 := string(yys3924Slc) + yys3967Slc = r.DecodeBytes(yys3967Slc, true, true) + yys3967 := string(yys3967Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3924 { + switch yys3967 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3925 := &x.Limits - yym3926 := z.DecBinary() - _ = yym3926 + yyv3968 := &x.Limits + yym3969 := z.DecBinary() + _ = yym3969 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3925), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3968), d) } } default: - z.DecStructFieldNotFound(-1, yys3924) - } // end switch yys3924 - } // end for yyj3924 + z.DecStructFieldNotFound(-1, yys3967) + } // end switch yys3967 + } // end for yyj3967 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49050,16 +49661,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3927 int - var yyb3927 bool - var yyhl3927 bool = l >= 0 - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + var yyj3970 int + var yyb3970 bool + var yyhl3970 bool = l >= 0 + yyj3970++ + if yyhl3970 { + yyb3970 = yyj3970 > l } else { - yyb3927 = r.CheckBreak() + yyb3970 = r.CheckBreak() } - if yyb3927 { + if yyb3970 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49067,26 +49678,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3928 := &x.Limits - yym3929 := z.DecBinary() - _ = yym3929 + yyv3971 := &x.Limits + yym3972 := z.DecBinary() + _ = yym3972 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3928), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3971), d) } } for { - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3970++ + if yyhl3970 { + yyb3970 = yyj3970 > l } else { - yyb3927 = r.CheckBreak() + yyb3970 = r.CheckBreak() } - if yyb3927 { + if yyb3970 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3927-1, "") + z.DecStructFieldNotFound(yyj3970-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49098,38 +49709,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3930 := z.EncBinary() - _ = yym3930 + yym3973 := z.EncBinary() + _ = yym3973 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3931 := !z.EncBinary() - yy2arr3931 := z.EncBasicHandle().StructToArray - var yyq3931 [4]bool - _, _, _ = yysep3931, yyq3931, yy2arr3931 - const yyr3931 bool = false - yyq3931[0] = x.Kind != "" - yyq3931[1] = x.APIVersion != "" - yyq3931[2] = true - yyq3931[3] = true - var yynn3931 int - if yyr3931 || yy2arr3931 { + yysep3974 := !z.EncBinary() + yy2arr3974 := z.EncBasicHandle().StructToArray + var yyq3974 [4]bool + _, _, _ = yysep3974, yyq3974, yy2arr3974 + const yyr3974 bool = false + yyq3974[0] = x.Kind != "" + yyq3974[1] = x.APIVersion != "" + yyq3974[2] = true + yyq3974[3] = true + var yynn3974 int + if yyr3974 || yy2arr3974 { r.EncodeArrayStart(4) } else { - yynn3931 = 0 - for _, b := range yyq3931 { + yynn3974 = 0 + for _, b := range yyq3974 { if b { - yynn3931++ + yynn3974++ } } - r.EncodeMapStart(yynn3931) - yynn3931 = 0 + r.EncodeMapStart(yynn3974) + yynn3974 = 0 } - if yyr3931 || yy2arr3931 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3931[0] { - yym3933 := z.EncBinary() - _ = yym3933 + if yyq3974[0] { + yym3976 := z.EncBinary() + _ = yym3976 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49138,23 +49749,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3931[0] { + if yyq3974[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3934 := z.EncBinary() - _ = yym3934 + yym3977 := z.EncBinary() + _ = yym3977 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3931 || yy2arr3931 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3931[1] { - yym3936 := z.EncBinary() - _ = yym3936 + if yyq3974[1] { + yym3979 := z.EncBinary() + _ = yym3979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49163,53 +49774,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3931[1] { + if yyq3974[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3937 := z.EncBinary() - _ = yym3937 + yym3980 := z.EncBinary() + _ = yym3980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3931 || yy2arr3931 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3931[2] { - yy3939 := &x.ObjectMeta - yy3939.CodecEncodeSelf(e) + if yyq3974[2] { + yy3982 := &x.ObjectMeta + yy3982.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3931[2] { + if yyq3974[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3940 := &x.ObjectMeta - yy3940.CodecEncodeSelf(e) + yy3983 := &x.ObjectMeta + yy3983.CodecEncodeSelf(e) } } - if yyr3931 || yy2arr3931 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3931[3] { - yy3942 := &x.Spec - yy3942.CodecEncodeSelf(e) + if yyq3974[3] { + yy3985 := &x.Spec + yy3985.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3931[3] { + if yyq3974[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3943 := &x.Spec - yy3943.CodecEncodeSelf(e) + yy3986 := &x.Spec + yy3986.CodecEncodeSelf(e) } } - if yyr3931 || yy2arr3931 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49222,25 +49833,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3944 := z.DecBinary() - _ = yym3944 + yym3987 := z.DecBinary() + _ = yym3987 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3945 := r.ContainerType() - if yyct3945 == codecSelferValueTypeMap1234 { - yyl3945 := r.ReadMapStart() - if yyl3945 == 0 { + yyct3988 := r.ContainerType() + if yyct3988 == codecSelferValueTypeMap1234 { + yyl3988 := r.ReadMapStart() + if yyl3988 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3945, d) + x.codecDecodeSelfFromMap(yyl3988, d) } - } else if yyct3945 == codecSelferValueTypeArray1234 { - yyl3945 := r.ReadArrayStart() - if yyl3945 == 0 { + } else if yyct3988 == codecSelferValueTypeArray1234 { + yyl3988 := r.ReadArrayStart() + if yyl3988 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3945, d) + x.codecDecodeSelfFromArray(yyl3988, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49252,12 +49863,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3946Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3946Slc - var yyhl3946 bool = l >= 0 - for yyj3946 := 0; ; yyj3946++ { - if yyhl3946 { - if yyj3946 >= l { + var yys3989Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3989Slc + var yyhl3989 bool = l >= 0 + for yyj3989 := 0; ; yyj3989++ { + if yyhl3989 { + if yyj3989 >= l { break } } else { @@ -49266,10 +49877,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3946Slc = r.DecodeBytes(yys3946Slc, true, true) - yys3946 := string(yys3946Slc) + yys3989Slc = r.DecodeBytes(yys3989Slc, true, true) + yys3989 := string(yys3989Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3946 { + switch yys3989 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49286,20 +49897,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3949 := &x.ObjectMeta - yyv3949.CodecDecodeSelf(d) + yyv3992 := &x.ObjectMeta + yyv3992.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3950 := &x.Spec - yyv3950.CodecDecodeSelf(d) + yyv3993 := &x.Spec + yyv3993.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3946) - } // end switch yys3946 - } // end for yyj3946 + z.DecStructFieldNotFound(-1, yys3989) + } // end switch yys3989 + } // end for yyj3989 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49307,16 +49918,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3951 int - var yyb3951 bool - var yyhl3951 bool = l >= 0 - yyj3951++ - if yyhl3951 { - yyb3951 = yyj3951 > l + var yyj3994 int + var yyb3994 bool + var yyhl3994 bool = l >= 0 + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3951 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3951 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49326,13 +49937,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3951++ - if yyhl3951 { - yyb3951 = yyj3951 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3951 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3951 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49342,13 +49953,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3951++ - if yyhl3951 { - yyb3951 = yyj3951 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3951 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3951 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49356,16 +49967,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3954 := &x.ObjectMeta - yyv3954.CodecDecodeSelf(d) + yyv3997 := &x.ObjectMeta + yyv3997.CodecDecodeSelf(d) } - yyj3951++ - if yyhl3951 { - yyb3951 = yyj3951 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3951 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3951 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49373,21 +49984,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3955 := &x.Spec - yyv3955.CodecDecodeSelf(d) + yyv3998 := &x.Spec + yyv3998.CodecDecodeSelf(d) } for { - yyj3951++ - if yyhl3951 { - yyb3951 = yyj3951 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3951 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3951 { + if yyb3994 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3951-1, "") + z.DecStructFieldNotFound(yyj3994-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49399,37 +50010,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3956 := z.EncBinary() - _ = yym3956 + yym3999 := z.EncBinary() + _ = yym3999 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3957 := !z.EncBinary() - yy2arr3957 := z.EncBasicHandle().StructToArray - var yyq3957 [4]bool - _, _, _ = yysep3957, yyq3957, yy2arr3957 - const yyr3957 bool = false - yyq3957[0] = x.Kind != "" - yyq3957[1] = x.APIVersion != "" - yyq3957[2] = true - var yynn3957 int - if yyr3957 || yy2arr3957 { + yysep4000 := !z.EncBinary() + yy2arr4000 := z.EncBasicHandle().StructToArray + var yyq4000 [4]bool + _, _, _ = yysep4000, yyq4000, yy2arr4000 + const yyr4000 bool = false + yyq4000[0] = x.Kind != "" + yyq4000[1] = x.APIVersion != "" + yyq4000[2] = true + var yynn4000 int + if yyr4000 || yy2arr4000 { r.EncodeArrayStart(4) } else { - yynn3957 = 1 - for _, b := range yyq3957 { + yynn4000 = 1 + for _, b := range yyq4000 { if b { - yynn3957++ + yynn4000++ } } - r.EncodeMapStart(yynn3957) - yynn3957 = 0 + r.EncodeMapStart(yynn4000) + yynn4000 = 0 } - if yyr3957 || yy2arr3957 { + if yyr4000 || yy2arr4000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3957[0] { - yym3959 := z.EncBinary() - _ = yym3959 + if yyq4000[0] { + yym4002 := z.EncBinary() + _ = yym4002 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49438,23 +50049,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3957[0] { + if yyq4000[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3960 := z.EncBinary() - _ = yym3960 + yym4003 := z.EncBinary() + _ = yym4003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3957 || yy2arr3957 { + if yyr4000 || yy2arr4000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3957[1] { - yym3962 := z.EncBinary() - _ = yym3962 + if yyq4000[1] { + yym4005 := z.EncBinary() + _ = yym4005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49463,54 +50074,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3957[1] { + if yyq4000[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3963 := z.EncBinary() - _ = yym3963 + yym4006 := z.EncBinary() + _ = yym4006 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3957 || yy2arr3957 { + if yyr4000 || yy2arr4000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3957[2] { - yy3965 := &x.ListMeta - yym3966 := z.EncBinary() - _ = yym3966 + if yyq4000[2] { + yy4008 := &x.ListMeta + yym4009 := z.EncBinary() + _ = yym4009 if false { - } else if z.HasExtensions() && z.EncExt(yy3965) { + } else if z.HasExtensions() && z.EncExt(yy4008) { } else { - z.EncFallback(yy3965) + z.EncFallback(yy4008) } } else { r.EncodeNil() } } else { - if yyq3957[2] { + if yyq4000[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3967 := &x.ListMeta - yym3968 := z.EncBinary() - _ = yym3968 + yy4010 := &x.ListMeta + yym4011 := z.EncBinary() + _ = yym4011 if false { - } else if z.HasExtensions() && z.EncExt(yy3967) { + } else if z.HasExtensions() && z.EncExt(yy4010) { } else { - z.EncFallback(yy3967) + z.EncFallback(yy4010) } } } - if yyr3957 || yy2arr3957 { + if yyr4000 || yy2arr4000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3970 := z.EncBinary() - _ = yym3970 + yym4013 := z.EncBinary() + _ = yym4013 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -49523,15 +50134,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3971 := z.EncBinary() - _ = yym3971 + yym4014 := z.EncBinary() + _ = yym4014 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3957 || yy2arr3957 { + if yyr4000 || yy2arr4000 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49544,25 +50155,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3972 := z.DecBinary() - _ = yym3972 + yym4015 := z.DecBinary() + _ = yym4015 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3973 := r.ContainerType() - if yyct3973 == codecSelferValueTypeMap1234 { - yyl3973 := r.ReadMapStart() - if yyl3973 == 0 { + yyct4016 := r.ContainerType() + if yyct4016 == codecSelferValueTypeMap1234 { + yyl4016 := r.ReadMapStart() + if yyl4016 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3973, d) + x.codecDecodeSelfFromMap(yyl4016, d) } - } else if yyct3973 == codecSelferValueTypeArray1234 { - yyl3973 := r.ReadArrayStart() - if yyl3973 == 0 { + } else if yyct4016 == codecSelferValueTypeArray1234 { + yyl4016 := r.ReadArrayStart() + if yyl4016 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3973, d) + x.codecDecodeSelfFromArray(yyl4016, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49574,12 +50185,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3974Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3974Slc - var yyhl3974 bool = l >= 0 - for yyj3974 := 0; ; yyj3974++ { - if yyhl3974 { - if yyj3974 >= l { + var yys4017Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4017Slc + var yyhl4017 bool = l >= 0 + for yyj4017 := 0; ; yyj4017++ { + if yyhl4017 { + if yyj4017 >= l { break } } else { @@ -49588,10 +50199,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3974Slc = r.DecodeBytes(yys3974Slc, true, true) - yys3974 := string(yys3974Slc) + yys4017Slc = r.DecodeBytes(yys4017Slc, true, true) + yys4017 := string(yys4017Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3974 { + switch yys4017 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49608,31 +50219,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3977 := &x.ListMeta - yym3978 := z.DecBinary() - _ = yym3978 + yyv4020 := &x.ListMeta + yym4021 := z.DecBinary() + _ = yym4021 if false { - } else if z.HasExtensions() && z.DecExt(yyv3977) { + } else if z.HasExtensions() && z.DecExt(yyv4020) { } else { - z.DecFallback(yyv3977, false) + z.DecFallback(yyv4020, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3979 := &x.Items - yym3980 := z.DecBinary() - _ = yym3980 + yyv4022 := &x.Items + yym4023 := z.DecBinary() + _ = yym4023 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3979), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4022), d) } } default: - z.DecStructFieldNotFound(-1, yys3974) - } // end switch yys3974 - } // end for yyj3974 + z.DecStructFieldNotFound(-1, yys4017) + } // end switch yys4017 + } // end for yyj4017 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49640,16 +50251,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3981 int - var yyb3981 bool - var yyhl3981 bool = l >= 0 - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + var yyj4024 int + var yyb4024 bool + var yyhl4024 bool = l >= 0 + yyj4024++ + if yyhl4024 { + yyb4024 = yyj4024 > l } else { - yyb3981 = r.CheckBreak() + yyb4024 = r.CheckBreak() } - if yyb3981 { + if yyb4024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49659,13 +50270,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj4024++ + if yyhl4024 { + yyb4024 = yyj4024 > l } else { - yyb3981 = r.CheckBreak() + yyb4024 = r.CheckBreak() } - if yyb3981 { + if yyb4024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49675,13 +50286,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj4024++ + if yyhl4024 { + yyb4024 = yyj4024 > l } else { - yyb3981 = r.CheckBreak() + yyb4024 = r.CheckBreak() } - if yyb3981 { + if yyb4024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49689,22 +50300,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3984 := &x.ListMeta - yym3985 := z.DecBinary() - _ = yym3985 + yyv4027 := &x.ListMeta + yym4028 := z.DecBinary() + _ = yym4028 if false { - } else if z.HasExtensions() && z.DecExt(yyv3984) { + } else if z.HasExtensions() && z.DecExt(yyv4027) { } else { - z.DecFallback(yyv3984, false) + z.DecFallback(yyv4027, false) } } - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj4024++ + if yyhl4024 { + yyb4024 = yyj4024 > l } else { - yyb3981 = r.CheckBreak() + yyb4024 = r.CheckBreak() } - if yyb3981 { + if yyb4024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49712,26 +50323,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3986 := &x.Items - yym3987 := z.DecBinary() - _ = yym3987 + yyv4029 := &x.Items + yym4030 := z.DecBinary() + _ = yym4030 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3986), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4029), d) } } for { - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj4024++ + if yyhl4024 { + yyb4024 = yyj4024 > l } else { - yyb3981 = r.CheckBreak() + yyb4024 = r.CheckBreak() } - if yyb3981 { + if yyb4024 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3981-1, "") + z.DecStructFieldNotFound(yyj4024-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49740,8 +50351,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3988 := z.EncBinary() - _ = yym3988 + yym4031 := z.EncBinary() + _ = yym4031 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49753,8 +50364,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3989 := z.DecBinary() - _ = yym3989 + yym4032 := z.DecBinary() + _ = yym4032 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49769,34 +50380,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3990 := z.EncBinary() - _ = yym3990 + yym4033 := z.EncBinary() + _ = yym4033 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3991 := !z.EncBinary() - yy2arr3991 := z.EncBasicHandle().StructToArray - var yyq3991 [2]bool - _, _, _ = yysep3991, yyq3991, yy2arr3991 - const yyr3991 bool = false - yyq3991[0] = len(x.Hard) != 0 - yyq3991[1] = len(x.Scopes) != 0 - var yynn3991 int - if yyr3991 || yy2arr3991 { + yysep4034 := !z.EncBinary() + yy2arr4034 := z.EncBasicHandle().StructToArray + var yyq4034 [2]bool + _, _, _ = yysep4034, yyq4034, yy2arr4034 + const yyr4034 bool = false + yyq4034[0] = len(x.Hard) != 0 + yyq4034[1] = len(x.Scopes) != 0 + var yynn4034 int + if yyr4034 || yy2arr4034 { r.EncodeArrayStart(2) } else { - yynn3991 = 0 - for _, b := range yyq3991 { + yynn4034 = 0 + for _, b := range yyq4034 { if b { - yynn3991++ + yynn4034++ } } - r.EncodeMapStart(yynn3991) - yynn3991 = 0 + r.EncodeMapStart(yynn4034) + yynn4034 = 0 } - if yyr3991 || yy2arr3991 { + if yyr4034 || yy2arr4034 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[0] { + if yyq4034[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49806,7 +50417,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[0] { + if yyq4034[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49817,14 +50428,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr4034 || yy2arr4034 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[1] { + if yyq4034[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3994 := z.EncBinary() - _ = yym3994 + yym4037 := z.EncBinary() + _ = yym4037 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49834,15 +50445,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[1] { + if yyq4034[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3995 := z.EncBinary() - _ = yym3995 + yym4038 := z.EncBinary() + _ = yym4038 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49850,7 +50461,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr4034 || yy2arr4034 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49863,25 +50474,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3996 := z.DecBinary() - _ = yym3996 + yym4039 := z.DecBinary() + _ = yym4039 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3997 := r.ContainerType() - if yyct3997 == codecSelferValueTypeMap1234 { - yyl3997 := r.ReadMapStart() - if yyl3997 == 0 { + yyct4040 := r.ContainerType() + if yyct4040 == codecSelferValueTypeMap1234 { + yyl4040 := r.ReadMapStart() + if yyl4040 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3997, d) + x.codecDecodeSelfFromMap(yyl4040, d) } - } else if yyct3997 == codecSelferValueTypeArray1234 { - yyl3997 := r.ReadArrayStart() - if yyl3997 == 0 { + } else if yyct4040 == codecSelferValueTypeArray1234 { + yyl4040 := r.ReadArrayStart() + if yyl4040 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3997, d) + x.codecDecodeSelfFromArray(yyl4040, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49893,12 +50504,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3998Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3998Slc - var yyhl3998 bool = l >= 0 - for yyj3998 := 0; ; yyj3998++ { - if yyhl3998 { - if yyj3998 >= l { + var yys4041Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4041Slc + var yyhl4041 bool = l >= 0 + for yyj4041 := 0; ; yyj4041++ { + if yyhl4041 { + if yyj4041 >= l { break } } else { @@ -49907,33 +50518,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3998Slc = r.DecodeBytes(yys3998Slc, true, true) - yys3998 := string(yys3998Slc) + yys4041Slc = r.DecodeBytes(yys4041Slc, true, true) + yys4041 := string(yys4041Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3998 { + switch yys4041 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3999 := &x.Hard - yyv3999.CodecDecodeSelf(d) + yyv4042 := &x.Hard + yyv4042.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4000 := &x.Scopes - yym4001 := z.DecBinary() - _ = yym4001 + yyv4043 := &x.Scopes + yym4044 := z.DecBinary() + _ = yym4044 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4000), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4043), d) } } default: - z.DecStructFieldNotFound(-1, yys3998) - } // end switch yys3998 - } // end for yyj3998 + z.DecStructFieldNotFound(-1, yys4041) + } // end switch yys4041 + } // end for yyj4041 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49941,16 +50552,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4002 int - var yyb4002 bool - var yyhl4002 bool = l >= 0 - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + var yyj4045 int + var yyb4045 bool + var yyhl4045 bool = l >= 0 + yyj4045++ + if yyhl4045 { + yyb4045 = yyj4045 > l } else { - yyb4002 = r.CheckBreak() + yyb4045 = r.CheckBreak() } - if yyb4002 { + if yyb4045 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49958,16 +50569,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4003 := &x.Hard - yyv4003.CodecDecodeSelf(d) + yyv4046 := &x.Hard + yyv4046.CodecDecodeSelf(d) } - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + yyj4045++ + if yyhl4045 { + yyb4045 = yyj4045 > l } else { - yyb4002 = r.CheckBreak() + yyb4045 = r.CheckBreak() } - if yyb4002 { + if yyb4045 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49975,26 +50586,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4004 := &x.Scopes - yym4005 := z.DecBinary() - _ = yym4005 + yyv4047 := &x.Scopes + yym4048 := z.DecBinary() + _ = yym4048 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4004), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4047), d) } } for { - yyj4002++ - if yyhl4002 { - yyb4002 = yyj4002 > l + yyj4045++ + if yyhl4045 { + yyb4045 = yyj4045 > l } else { - yyb4002 = r.CheckBreak() + yyb4045 = r.CheckBreak() } - if yyb4002 { + if yyb4045 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4002-1, "") + z.DecStructFieldNotFound(yyj4045-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50006,34 +50617,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4006 := z.EncBinary() - _ = yym4006 + yym4049 := z.EncBinary() + _ = yym4049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4007 := !z.EncBinary() - yy2arr4007 := z.EncBasicHandle().StructToArray - var yyq4007 [2]bool - _, _, _ = yysep4007, yyq4007, yy2arr4007 - const yyr4007 bool = false - yyq4007[0] = len(x.Hard) != 0 - yyq4007[1] = len(x.Used) != 0 - var yynn4007 int - if yyr4007 || yy2arr4007 { + yysep4050 := !z.EncBinary() + yy2arr4050 := z.EncBasicHandle().StructToArray + var yyq4050 [2]bool + _, _, _ = yysep4050, yyq4050, yy2arr4050 + const yyr4050 bool = false + yyq4050[0] = len(x.Hard) != 0 + yyq4050[1] = len(x.Used) != 0 + var yynn4050 int + if yyr4050 || yy2arr4050 { r.EncodeArrayStart(2) } else { - yynn4007 = 0 - for _, b := range yyq4007 { + yynn4050 = 0 + for _, b := range yyq4050 { if b { - yynn4007++ + yynn4050++ } } - r.EncodeMapStart(yynn4007) - yynn4007 = 0 + r.EncodeMapStart(yynn4050) + yynn4050 = 0 } - if yyr4007 || yy2arr4007 { + if yyr4050 || yy2arr4050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4007[0] { + if yyq4050[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50043,7 +50654,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4007[0] { + if yyq4050[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50054,9 +50665,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4007 || yy2arr4007 { + if yyr4050 || yy2arr4050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4007[1] { + if yyq4050[1] { if x.Used == nil { r.EncodeNil() } else { @@ -50066,7 +50677,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4007[1] { + if yyq4050[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50077,7 +50688,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4007 || yy2arr4007 { + if yyr4050 || yy2arr4050 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50090,25 +50701,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4010 := z.DecBinary() - _ = yym4010 + yym4053 := z.DecBinary() + _ = yym4053 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4011 := r.ContainerType() - if yyct4011 == codecSelferValueTypeMap1234 { - yyl4011 := r.ReadMapStart() - if yyl4011 == 0 { + yyct4054 := r.ContainerType() + if yyct4054 == codecSelferValueTypeMap1234 { + yyl4054 := r.ReadMapStart() + if yyl4054 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4011, d) + x.codecDecodeSelfFromMap(yyl4054, d) } - } else if yyct4011 == codecSelferValueTypeArray1234 { - yyl4011 := r.ReadArrayStart() - if yyl4011 == 0 { + } else if yyct4054 == codecSelferValueTypeArray1234 { + yyl4054 := r.ReadArrayStart() + if yyl4054 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4011, d) + x.codecDecodeSelfFromArray(yyl4054, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50120,12 +50731,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4012Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4012Slc - var yyhl4012 bool = l >= 0 - for yyj4012 := 0; ; yyj4012++ { - if yyhl4012 { - if yyj4012 >= l { + var yys4055Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4055Slc + var yyhl4055 bool = l >= 0 + for yyj4055 := 0; ; yyj4055++ { + if yyhl4055 { + if yyj4055 >= l { break } } else { @@ -50134,28 +50745,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4012Slc = r.DecodeBytes(yys4012Slc, true, true) - yys4012 := string(yys4012Slc) + yys4055Slc = r.DecodeBytes(yys4055Slc, true, true) + yys4055 := string(yys4055Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4012 { + switch yys4055 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4013 := &x.Hard - yyv4013.CodecDecodeSelf(d) + yyv4056 := &x.Hard + yyv4056.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4014 := &x.Used - yyv4014.CodecDecodeSelf(d) + yyv4057 := &x.Used + yyv4057.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4012) - } // end switch yys4012 - } // end for yyj4012 + z.DecStructFieldNotFound(-1, yys4055) + } // end switch yys4055 + } // end for yyj4055 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50163,16 +50774,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4015 int - var yyb4015 bool - var yyhl4015 bool = l >= 0 - yyj4015++ - if yyhl4015 { - yyb4015 = yyj4015 > l + var yyj4058 int + var yyb4058 bool + var yyhl4058 bool = l >= 0 + yyj4058++ + if yyhl4058 { + yyb4058 = yyj4058 > l } else { - yyb4015 = r.CheckBreak() + yyb4058 = r.CheckBreak() } - if yyb4015 { + if yyb4058 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50180,16 +50791,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4016 := &x.Hard - yyv4016.CodecDecodeSelf(d) + yyv4059 := &x.Hard + yyv4059.CodecDecodeSelf(d) } - yyj4015++ - if yyhl4015 { - yyb4015 = yyj4015 > l + yyj4058++ + if yyhl4058 { + yyb4058 = yyj4058 > l } else { - yyb4015 = r.CheckBreak() + yyb4058 = r.CheckBreak() } - if yyb4015 { + if yyb4058 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50197,21 +50808,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4017 := &x.Used - yyv4017.CodecDecodeSelf(d) + yyv4060 := &x.Used + yyv4060.CodecDecodeSelf(d) } for { - yyj4015++ - if yyhl4015 { - yyb4015 = yyj4015 > l + yyj4058++ + if yyhl4058 { + yyb4058 = yyj4058 > l } else { - yyb4015 = r.CheckBreak() + yyb4058 = r.CheckBreak() } - if yyb4015 { + if yyb4058 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4015-1, "") + z.DecStructFieldNotFound(yyj4058-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50223,39 +50834,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4018 := z.EncBinary() - _ = yym4018 + yym4061 := z.EncBinary() + _ = yym4061 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4019 := !z.EncBinary() - yy2arr4019 := z.EncBasicHandle().StructToArray - var yyq4019 [5]bool - _, _, _ = yysep4019, yyq4019, yy2arr4019 - const yyr4019 bool = false - yyq4019[0] = x.Kind != "" - yyq4019[1] = x.APIVersion != "" - yyq4019[2] = true - yyq4019[3] = true - yyq4019[4] = true - var yynn4019 int - if yyr4019 || yy2arr4019 { + yysep4062 := !z.EncBinary() + yy2arr4062 := z.EncBasicHandle().StructToArray + var yyq4062 [5]bool + _, _, _ = yysep4062, yyq4062, yy2arr4062 + const yyr4062 bool = false + yyq4062[0] = x.Kind != "" + yyq4062[1] = x.APIVersion != "" + yyq4062[2] = true + yyq4062[3] = true + yyq4062[4] = true + var yynn4062 int + if yyr4062 || yy2arr4062 { r.EncodeArrayStart(5) } else { - yynn4019 = 0 - for _, b := range yyq4019 { + yynn4062 = 0 + for _, b := range yyq4062 { if b { - yynn4019++ + yynn4062++ } } - r.EncodeMapStart(yynn4019) - yynn4019 = 0 + r.EncodeMapStart(yynn4062) + yynn4062 = 0 } - if yyr4019 || yy2arr4019 { + if yyr4062 || yy2arr4062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4019[0] { - yym4021 := z.EncBinary() - _ = yym4021 + if yyq4062[0] { + yym4064 := z.EncBinary() + _ = yym4064 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50264,23 +50875,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4019[0] { + if yyq4062[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4022 := z.EncBinary() - _ = yym4022 + yym4065 := z.EncBinary() + _ = yym4065 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4019 || yy2arr4019 { + if yyr4062 || yy2arr4062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4019[1] { - yym4024 := z.EncBinary() - _ = yym4024 + if yyq4062[1] { + yym4067 := z.EncBinary() + _ = yym4067 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50289,70 +50900,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4019[1] { + if yyq4062[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4025 := z.EncBinary() - _ = yym4025 + yym4068 := z.EncBinary() + _ = yym4068 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4019 || yy2arr4019 { + if yyr4062 || yy2arr4062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4019[2] { - yy4027 := &x.ObjectMeta - yy4027.CodecEncodeSelf(e) + if yyq4062[2] { + yy4070 := &x.ObjectMeta + yy4070.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4019[2] { + if yyq4062[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4028 := &x.ObjectMeta - yy4028.CodecEncodeSelf(e) + yy4071 := &x.ObjectMeta + yy4071.CodecEncodeSelf(e) } } - if yyr4019 || yy2arr4019 { + if yyr4062 || yy2arr4062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4019[3] { - yy4030 := &x.Spec - yy4030.CodecEncodeSelf(e) + if yyq4062[3] { + yy4073 := &x.Spec + yy4073.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4019[3] { + if yyq4062[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4031 := &x.Spec - yy4031.CodecEncodeSelf(e) + yy4074 := &x.Spec + yy4074.CodecEncodeSelf(e) } } - if yyr4019 || yy2arr4019 { + if yyr4062 || yy2arr4062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4019[4] { - yy4033 := &x.Status - yy4033.CodecEncodeSelf(e) + if yyq4062[4] { + yy4076 := &x.Status + yy4076.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4019[4] { + if yyq4062[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4034 := &x.Status - yy4034.CodecEncodeSelf(e) + yy4077 := &x.Status + yy4077.CodecEncodeSelf(e) } } - if yyr4019 || yy2arr4019 { + if yyr4062 || yy2arr4062 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50365,25 +50976,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4035 := z.DecBinary() - _ = yym4035 + yym4078 := z.DecBinary() + _ = yym4078 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4036 := r.ContainerType() - if yyct4036 == codecSelferValueTypeMap1234 { - yyl4036 := r.ReadMapStart() - if yyl4036 == 0 { + yyct4079 := r.ContainerType() + if yyct4079 == codecSelferValueTypeMap1234 { + yyl4079 := r.ReadMapStart() + if yyl4079 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4036, d) + x.codecDecodeSelfFromMap(yyl4079, d) } - } else if yyct4036 == codecSelferValueTypeArray1234 { - yyl4036 := r.ReadArrayStart() - if yyl4036 == 0 { + } else if yyct4079 == codecSelferValueTypeArray1234 { + yyl4079 := r.ReadArrayStart() + if yyl4079 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4036, d) + x.codecDecodeSelfFromArray(yyl4079, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50395,12 +51006,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4037Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4037Slc - var yyhl4037 bool = l >= 0 - for yyj4037 := 0; ; yyj4037++ { - if yyhl4037 { - if yyj4037 >= l { + var yys4080Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4080Slc + var yyhl4080 bool = l >= 0 + for yyj4080 := 0; ; yyj4080++ { + if yyhl4080 { + if yyj4080 >= l { break } } else { @@ -50409,10 +51020,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4037Slc = r.DecodeBytes(yys4037Slc, true, true) - yys4037 := string(yys4037Slc) + yys4080Slc = r.DecodeBytes(yys4080Slc, true, true) + yys4080 := string(yys4080Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4037 { + switch yys4080 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50429,27 +51040,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4040 := &x.ObjectMeta - yyv4040.CodecDecodeSelf(d) + yyv4083 := &x.ObjectMeta + yyv4083.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4041 := &x.Spec - yyv4041.CodecDecodeSelf(d) + yyv4084 := &x.Spec + yyv4084.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4042 := &x.Status - yyv4042.CodecDecodeSelf(d) + yyv4085 := &x.Status + yyv4085.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4037) - } // end switch yys4037 - } // end for yyj4037 + z.DecStructFieldNotFound(-1, yys4080) + } // end switch yys4080 + } // end for yyj4080 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50457,16 +51068,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4043 int - var yyb4043 bool - var yyhl4043 bool = l >= 0 - yyj4043++ - if yyhl4043 { - yyb4043 = yyj4043 > l + var yyj4086 int + var yyb4086 bool + var yyhl4086 bool = l >= 0 + yyj4086++ + if yyhl4086 { + yyb4086 = yyj4086 > l } else { - yyb4043 = r.CheckBreak() + yyb4086 = r.CheckBreak() } - if yyb4043 { + if yyb4086 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50476,13 +51087,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4043++ - if yyhl4043 { - yyb4043 = yyj4043 > l + yyj4086++ + if yyhl4086 { + yyb4086 = yyj4086 > l } else { - yyb4043 = r.CheckBreak() + yyb4086 = r.CheckBreak() } - if yyb4043 { + if yyb4086 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50492,13 +51103,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4043++ - if yyhl4043 { - yyb4043 = yyj4043 > l + yyj4086++ + if yyhl4086 { + yyb4086 = yyj4086 > l } else { - yyb4043 = r.CheckBreak() + yyb4086 = r.CheckBreak() } - if yyb4043 { + if yyb4086 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50506,16 +51117,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4046 := &x.ObjectMeta - yyv4046.CodecDecodeSelf(d) + yyv4089 := &x.ObjectMeta + yyv4089.CodecDecodeSelf(d) } - yyj4043++ - if yyhl4043 { - yyb4043 = yyj4043 > l + yyj4086++ + if yyhl4086 { + yyb4086 = yyj4086 > l } else { - yyb4043 = r.CheckBreak() + yyb4086 = r.CheckBreak() } - if yyb4043 { + if yyb4086 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50523,16 +51134,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4047 := &x.Spec - yyv4047.CodecDecodeSelf(d) + yyv4090 := &x.Spec + yyv4090.CodecDecodeSelf(d) } - yyj4043++ - if yyhl4043 { - yyb4043 = yyj4043 > l + yyj4086++ + if yyhl4086 { + yyb4086 = yyj4086 > l } else { - yyb4043 = r.CheckBreak() + yyb4086 = r.CheckBreak() } - if yyb4043 { + if yyb4086 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50540,21 +51151,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4048 := &x.Status - yyv4048.CodecDecodeSelf(d) + yyv4091 := &x.Status + yyv4091.CodecDecodeSelf(d) } for { - yyj4043++ - if yyhl4043 { - yyb4043 = yyj4043 > l + yyj4086++ + if yyhl4086 { + yyb4086 = yyj4086 > l } else { - yyb4043 = r.CheckBreak() + yyb4086 = r.CheckBreak() } - if yyb4043 { + if yyb4086 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4043-1, "") + z.DecStructFieldNotFound(yyj4086-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50566,37 +51177,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4049 := z.EncBinary() - _ = yym4049 + yym4092 := z.EncBinary() + _ = yym4092 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4050 := !z.EncBinary() - yy2arr4050 := z.EncBasicHandle().StructToArray - var yyq4050 [4]bool - _, _, _ = yysep4050, yyq4050, yy2arr4050 - const yyr4050 bool = false - yyq4050[0] = x.Kind != "" - yyq4050[1] = x.APIVersion != "" - yyq4050[2] = true - var yynn4050 int - if yyr4050 || yy2arr4050 { + yysep4093 := !z.EncBinary() + yy2arr4093 := z.EncBasicHandle().StructToArray + var yyq4093 [4]bool + _, _, _ = yysep4093, yyq4093, yy2arr4093 + const yyr4093 bool = false + yyq4093[0] = x.Kind != "" + yyq4093[1] = x.APIVersion != "" + yyq4093[2] = true + var yynn4093 int + if yyr4093 || yy2arr4093 { r.EncodeArrayStart(4) } else { - yynn4050 = 1 - for _, b := range yyq4050 { + yynn4093 = 1 + for _, b := range yyq4093 { if b { - yynn4050++ + yynn4093++ } } - r.EncodeMapStart(yynn4050) - yynn4050 = 0 + r.EncodeMapStart(yynn4093) + yynn4093 = 0 } - if yyr4050 || yy2arr4050 { + if yyr4093 || yy2arr4093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[0] { - yym4052 := z.EncBinary() - _ = yym4052 + if yyq4093[0] { + yym4095 := z.EncBinary() + _ = yym4095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50605,23 +51216,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4050[0] { + if yyq4093[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4053 := z.EncBinary() - _ = yym4053 + yym4096 := z.EncBinary() + _ = yym4096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4050 || yy2arr4050 { + if yyr4093 || yy2arr4093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[1] { - yym4055 := z.EncBinary() - _ = yym4055 + if yyq4093[1] { + yym4098 := z.EncBinary() + _ = yym4098 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50630,54 +51241,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4050[1] { + if yyq4093[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4056 := z.EncBinary() - _ = yym4056 + yym4099 := z.EncBinary() + _ = yym4099 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4050 || yy2arr4050 { + if yyr4093 || yy2arr4093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4050[2] { - yy4058 := &x.ListMeta - yym4059 := z.EncBinary() - _ = yym4059 + if yyq4093[2] { + yy4101 := &x.ListMeta + yym4102 := z.EncBinary() + _ = yym4102 if false { - } else if z.HasExtensions() && z.EncExt(yy4058) { + } else if z.HasExtensions() && z.EncExt(yy4101) { } else { - z.EncFallback(yy4058) + z.EncFallback(yy4101) } } else { r.EncodeNil() } } else { - if yyq4050[2] { + if yyq4093[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4060 := &x.ListMeta - yym4061 := z.EncBinary() - _ = yym4061 + yy4103 := &x.ListMeta + yym4104 := z.EncBinary() + _ = yym4104 if false { - } else if z.HasExtensions() && z.EncExt(yy4060) { + } else if z.HasExtensions() && z.EncExt(yy4103) { } else { - z.EncFallback(yy4060) + z.EncFallback(yy4103) } } } - if yyr4050 || yy2arr4050 { + if yyr4093 || yy2arr4093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4063 := z.EncBinary() - _ = yym4063 + yym4106 := z.EncBinary() + _ = yym4106 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -50690,15 +51301,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4064 := z.EncBinary() - _ = yym4064 + yym4107 := z.EncBinary() + _ = yym4107 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4050 || yy2arr4050 { + if yyr4093 || yy2arr4093 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50711,25 +51322,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4065 := z.DecBinary() - _ = yym4065 + yym4108 := z.DecBinary() + _ = yym4108 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4066 := r.ContainerType() - if yyct4066 == codecSelferValueTypeMap1234 { - yyl4066 := r.ReadMapStart() - if yyl4066 == 0 { + yyct4109 := r.ContainerType() + if yyct4109 == codecSelferValueTypeMap1234 { + yyl4109 := r.ReadMapStart() + if yyl4109 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4066, d) + x.codecDecodeSelfFromMap(yyl4109, d) } - } else if yyct4066 == codecSelferValueTypeArray1234 { - yyl4066 := r.ReadArrayStart() - if yyl4066 == 0 { + } else if yyct4109 == codecSelferValueTypeArray1234 { + yyl4109 := r.ReadArrayStart() + if yyl4109 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4066, d) + x.codecDecodeSelfFromArray(yyl4109, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50741,12 +51352,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4067Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4067Slc - var yyhl4067 bool = l >= 0 - for yyj4067 := 0; ; yyj4067++ { - if yyhl4067 { - if yyj4067 >= l { + var yys4110Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4110Slc + var yyhl4110 bool = l >= 0 + for yyj4110 := 0; ; yyj4110++ { + if yyhl4110 { + if yyj4110 >= l { break } } else { @@ -50755,10 +51366,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4067Slc = r.DecodeBytes(yys4067Slc, true, true) - yys4067 := string(yys4067Slc) + yys4110Slc = r.DecodeBytes(yys4110Slc, true, true) + yys4110 := string(yys4110Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4067 { + switch yys4110 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50775,31 +51386,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4070 := &x.ListMeta - yym4071 := z.DecBinary() - _ = yym4071 + yyv4113 := &x.ListMeta + yym4114 := z.DecBinary() + _ = yym4114 if false { - } else if z.HasExtensions() && z.DecExt(yyv4070) { + } else if z.HasExtensions() && z.DecExt(yyv4113) { } else { - z.DecFallback(yyv4070, false) + z.DecFallback(yyv4113, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4072 := &x.Items - yym4073 := z.DecBinary() - _ = yym4073 + yyv4115 := &x.Items + yym4116 := z.DecBinary() + _ = yym4116 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4072), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4115), d) } } default: - z.DecStructFieldNotFound(-1, yys4067) - } // end switch yys4067 - } // end for yyj4067 + z.DecStructFieldNotFound(-1, yys4110) + } // end switch yys4110 + } // end for yyj4110 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50807,16 +51418,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4074 int - var yyb4074 bool - var yyhl4074 bool = l >= 0 - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + var yyj4117 int + var yyb4117 bool + var yyhl4117 bool = l >= 0 + yyj4117++ + if yyhl4117 { + yyb4117 = yyj4117 > l } else { - yyb4074 = r.CheckBreak() + yyb4117 = r.CheckBreak() } - if yyb4074 { + if yyb4117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50826,13 +51437,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4117++ + if yyhl4117 { + yyb4117 = yyj4117 > l } else { - yyb4074 = r.CheckBreak() + yyb4117 = r.CheckBreak() } - if yyb4074 { + if yyb4117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50842,13 +51453,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4117++ + if yyhl4117 { + yyb4117 = yyj4117 > l } else { - yyb4074 = r.CheckBreak() + yyb4117 = r.CheckBreak() } - if yyb4074 { + if yyb4117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50856,22 +51467,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4077 := &x.ListMeta - yym4078 := z.DecBinary() - _ = yym4078 + yyv4120 := &x.ListMeta + yym4121 := z.DecBinary() + _ = yym4121 if false { - } else if z.HasExtensions() && z.DecExt(yyv4077) { + } else if z.HasExtensions() && z.DecExt(yyv4120) { } else { - z.DecFallback(yyv4077, false) + z.DecFallback(yyv4120, false) } } - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4117++ + if yyhl4117 { + yyb4117 = yyj4117 > l } else { - yyb4074 = r.CheckBreak() + yyb4117 = r.CheckBreak() } - if yyb4074 { + if yyb4117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50879,26 +51490,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4079 := &x.Items - yym4080 := z.DecBinary() - _ = yym4080 + yyv4122 := &x.Items + yym4123 := z.DecBinary() + _ = yym4123 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4079), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4122), d) } } for { - yyj4074++ - if yyhl4074 { - yyb4074 = yyj4074 > l + yyj4117++ + if yyhl4117 { + yyb4117 = yyj4117 > l } else { - yyb4074 = r.CheckBreak() + yyb4117 = r.CheckBreak() } - if yyb4074 { + if yyb4117 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4074-1, "") + z.DecStructFieldNotFound(yyj4117-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50910,39 +51521,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4081 := z.EncBinary() - _ = yym4081 + yym4124 := z.EncBinary() + _ = yym4124 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4082 := !z.EncBinary() - yy2arr4082 := z.EncBasicHandle().StructToArray - var yyq4082 [5]bool - _, _, _ = yysep4082, yyq4082, yy2arr4082 - const yyr4082 bool = false - yyq4082[0] = x.Kind != "" - yyq4082[1] = x.APIVersion != "" - yyq4082[2] = true - yyq4082[3] = len(x.Data) != 0 - yyq4082[4] = x.Type != "" - var yynn4082 int - if yyr4082 || yy2arr4082 { + yysep4125 := !z.EncBinary() + yy2arr4125 := z.EncBasicHandle().StructToArray + var yyq4125 [5]bool + _, _, _ = yysep4125, yyq4125, yy2arr4125 + const yyr4125 bool = false + yyq4125[0] = x.Kind != "" + yyq4125[1] = x.APIVersion != "" + yyq4125[2] = true + yyq4125[3] = len(x.Data) != 0 + yyq4125[4] = x.Type != "" + var yynn4125 int + if yyr4125 || yy2arr4125 { r.EncodeArrayStart(5) } else { - yynn4082 = 0 - for _, b := range yyq4082 { + yynn4125 = 0 + for _, b := range yyq4125 { if b { - yynn4082++ + yynn4125++ } } - r.EncodeMapStart(yynn4082) - yynn4082 = 0 + r.EncodeMapStart(yynn4125) + yynn4125 = 0 } - if yyr4082 || yy2arr4082 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[0] { - yym4084 := z.EncBinary() - _ = yym4084 + if yyq4125[0] { + yym4127 := z.EncBinary() + _ = yym4127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50951,23 +51562,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4082[0] { + if yyq4125[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4085 := z.EncBinary() - _ = yym4085 + yym4128 := z.EncBinary() + _ = yym4128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4082 || yy2arr4082 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[1] { - yym4087 := z.EncBinary() - _ = yym4087 + if yyq4125[1] { + yym4130 := z.EncBinary() + _ = yym4130 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50976,43 +51587,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4082[1] { + if yyq4125[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4088 := z.EncBinary() - _ = yym4088 + yym4131 := z.EncBinary() + _ = yym4131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4082 || yy2arr4082 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[2] { - yy4090 := &x.ObjectMeta - yy4090.CodecEncodeSelf(e) + if yyq4125[2] { + yy4133 := &x.ObjectMeta + yy4133.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4082[2] { + if yyq4125[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4091 := &x.ObjectMeta - yy4091.CodecEncodeSelf(e) + yy4134 := &x.ObjectMeta + yy4134.CodecEncodeSelf(e) } } - if yyr4082 || yy2arr4082 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[3] { + if yyq4125[3] { if x.Data == nil { r.EncodeNil() } else { - yym4093 := z.EncBinary() - _ = yym4093 + yym4136 := z.EncBinary() + _ = yym4136 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51022,15 +51633,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4082[3] { + if yyq4125[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4094 := z.EncBinary() - _ = yym4094 + yym4137 := z.EncBinary() + _ = yym4137 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51038,22 +51649,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4082 || yy2arr4082 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4082[4] { + if yyq4125[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4082[4] { + if yyq4125[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4082 || yy2arr4082 { + if yyr4125 || yy2arr4125 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51066,25 +51677,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4096 := z.DecBinary() - _ = yym4096 + yym4139 := z.DecBinary() + _ = yym4139 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4097 := r.ContainerType() - if yyct4097 == codecSelferValueTypeMap1234 { - yyl4097 := r.ReadMapStart() - if yyl4097 == 0 { + yyct4140 := r.ContainerType() + if yyct4140 == codecSelferValueTypeMap1234 { + yyl4140 := r.ReadMapStart() + if yyl4140 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4097, d) + x.codecDecodeSelfFromMap(yyl4140, d) } - } else if yyct4097 == codecSelferValueTypeArray1234 { - yyl4097 := r.ReadArrayStart() - if yyl4097 == 0 { + } else if yyct4140 == codecSelferValueTypeArray1234 { + yyl4140 := r.ReadArrayStart() + if yyl4140 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4097, d) + x.codecDecodeSelfFromArray(yyl4140, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51096,12 +51707,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4098Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4098Slc - var yyhl4098 bool = l >= 0 - for yyj4098 := 0; ; yyj4098++ { - if yyhl4098 { - if yyj4098 >= l { + var yys4141Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4141Slc + var yyhl4141 bool = l >= 0 + for yyj4141 := 0; ; yyj4141++ { + if yyhl4141 { + if yyj4141 >= l { break } } else { @@ -51110,10 +51721,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4098Slc = r.DecodeBytes(yys4098Slc, true, true) - yys4098 := string(yys4098Slc) + yys4141Slc = r.DecodeBytes(yys4141Slc, true, true) + yys4141 := string(yys4141Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4098 { + switch yys4141 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51130,19 +51741,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4101 := &x.ObjectMeta - yyv4101.CodecDecodeSelf(d) + yyv4144 := &x.ObjectMeta + yyv4144.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4102 := &x.Data - yym4103 := z.DecBinary() - _ = yym4103 + yyv4145 := &x.Data + yym4146 := z.DecBinary() + _ = yym4146 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4102), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4145), d) } } case "type": @@ -51152,9 +51763,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4098) - } // end switch yys4098 - } // end for yyj4098 + z.DecStructFieldNotFound(-1, yys4141) + } // end switch yys4141 + } // end for yyj4141 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51162,16 +51773,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4105 int - var yyb4105 bool - var yyhl4105 bool = l >= 0 - yyj4105++ - if yyhl4105 { - yyb4105 = yyj4105 > l + var yyj4148 int + var yyb4148 bool + var yyhl4148 bool = l >= 0 + yyj4148++ + if yyhl4148 { + yyb4148 = yyj4148 > l } else { - yyb4105 = r.CheckBreak() + yyb4148 = r.CheckBreak() } - if yyb4105 { + if yyb4148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51181,13 +51792,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4105++ - if yyhl4105 { - yyb4105 = yyj4105 > l + yyj4148++ + if yyhl4148 { + yyb4148 = yyj4148 > l } else { - yyb4105 = r.CheckBreak() + yyb4148 = r.CheckBreak() } - if yyb4105 { + if yyb4148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51197,13 +51808,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4105++ - if yyhl4105 { - yyb4105 = yyj4105 > l + yyj4148++ + if yyhl4148 { + yyb4148 = yyj4148 > l } else { - yyb4105 = r.CheckBreak() + yyb4148 = r.CheckBreak() } - if yyb4105 { + if yyb4148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51211,16 +51822,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4108 := &x.ObjectMeta - yyv4108.CodecDecodeSelf(d) + yyv4151 := &x.ObjectMeta + yyv4151.CodecDecodeSelf(d) } - yyj4105++ - if yyhl4105 { - yyb4105 = yyj4105 > l + yyj4148++ + if yyhl4148 { + yyb4148 = yyj4148 > l } else { - yyb4105 = r.CheckBreak() + yyb4148 = r.CheckBreak() } - if yyb4105 { + if yyb4148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51228,21 +51839,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4109 := &x.Data - yym4110 := z.DecBinary() - _ = yym4110 + yyv4152 := &x.Data + yym4153 := z.DecBinary() + _ = yym4153 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4109), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4152), d) } } - yyj4105++ - if yyhl4105 { - yyb4105 = yyj4105 > l + yyj4148++ + if yyhl4148 { + yyb4148 = yyj4148 > l } else { - yyb4105 = r.CheckBreak() + yyb4148 = r.CheckBreak() } - if yyb4105 { + if yyb4148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51253,17 +51864,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4105++ - if yyhl4105 { - yyb4105 = yyj4105 > l + yyj4148++ + if yyhl4148 { + yyb4148 = yyj4148 > l } else { - yyb4105 = r.CheckBreak() + yyb4148 = r.CheckBreak() } - if yyb4105 { + if yyb4148 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4105-1, "") + z.DecStructFieldNotFound(yyj4148-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51272,8 +51883,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4112 := z.EncBinary() - _ = yym4112 + yym4155 := z.EncBinary() + _ = yym4155 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51285,8 +51896,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4113 := z.DecBinary() - _ = yym4113 + yym4156 := z.DecBinary() + _ = yym4156 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51301,37 +51912,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4114 := z.EncBinary() - _ = yym4114 + yym4157 := z.EncBinary() + _ = yym4157 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4115 := !z.EncBinary() - yy2arr4115 := z.EncBasicHandle().StructToArray - var yyq4115 [4]bool - _, _, _ = yysep4115, yyq4115, yy2arr4115 - const yyr4115 bool = false - yyq4115[0] = x.Kind != "" - yyq4115[1] = x.APIVersion != "" - yyq4115[2] = true - var yynn4115 int - if yyr4115 || yy2arr4115 { + yysep4158 := !z.EncBinary() + yy2arr4158 := z.EncBasicHandle().StructToArray + var yyq4158 [4]bool + _, _, _ = yysep4158, yyq4158, yy2arr4158 + const yyr4158 bool = false + yyq4158[0] = x.Kind != "" + yyq4158[1] = x.APIVersion != "" + yyq4158[2] = true + var yynn4158 int + if yyr4158 || yy2arr4158 { r.EncodeArrayStart(4) } else { - yynn4115 = 1 - for _, b := range yyq4115 { + yynn4158 = 1 + for _, b := range yyq4158 { if b { - yynn4115++ + yynn4158++ } } - r.EncodeMapStart(yynn4115) - yynn4115 = 0 + r.EncodeMapStart(yynn4158) + yynn4158 = 0 } - if yyr4115 || yy2arr4115 { + if yyr4158 || yy2arr4158 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4115[0] { - yym4117 := z.EncBinary() - _ = yym4117 + if yyq4158[0] { + yym4160 := z.EncBinary() + _ = yym4160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51340,23 +51951,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4115[0] { + if yyq4158[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4118 := z.EncBinary() - _ = yym4118 + yym4161 := z.EncBinary() + _ = yym4161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4115 || yy2arr4115 { + if yyr4158 || yy2arr4158 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4115[1] { - yym4120 := z.EncBinary() - _ = yym4120 + if yyq4158[1] { + yym4163 := z.EncBinary() + _ = yym4163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51365,54 +51976,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4115[1] { + if yyq4158[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4121 := z.EncBinary() - _ = yym4121 + yym4164 := z.EncBinary() + _ = yym4164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4115 || yy2arr4115 { + if yyr4158 || yy2arr4158 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4115[2] { - yy4123 := &x.ListMeta - yym4124 := z.EncBinary() - _ = yym4124 + if yyq4158[2] { + yy4166 := &x.ListMeta + yym4167 := z.EncBinary() + _ = yym4167 if false { - } else if z.HasExtensions() && z.EncExt(yy4123) { + } else if z.HasExtensions() && z.EncExt(yy4166) { } else { - z.EncFallback(yy4123) + z.EncFallback(yy4166) } } else { r.EncodeNil() } } else { - if yyq4115[2] { + if yyq4158[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4125 := &x.ListMeta - yym4126 := z.EncBinary() - _ = yym4126 + yy4168 := &x.ListMeta + yym4169 := z.EncBinary() + _ = yym4169 if false { - } else if z.HasExtensions() && z.EncExt(yy4125) { + } else if z.HasExtensions() && z.EncExt(yy4168) { } else { - z.EncFallback(yy4125) + z.EncFallback(yy4168) } } } - if yyr4115 || yy2arr4115 { + if yyr4158 || yy2arr4158 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4128 := z.EncBinary() - _ = yym4128 + yym4171 := z.EncBinary() + _ = yym4171 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -51425,15 +52036,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4129 := z.EncBinary() - _ = yym4129 + yym4172 := z.EncBinary() + _ = yym4172 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4115 || yy2arr4115 { + if yyr4158 || yy2arr4158 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51446,25 +52057,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4130 := z.DecBinary() - _ = yym4130 + yym4173 := z.DecBinary() + _ = yym4173 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4131 := r.ContainerType() - if yyct4131 == codecSelferValueTypeMap1234 { - yyl4131 := r.ReadMapStart() - if yyl4131 == 0 { + yyct4174 := r.ContainerType() + if yyct4174 == codecSelferValueTypeMap1234 { + yyl4174 := r.ReadMapStart() + if yyl4174 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4131, d) + x.codecDecodeSelfFromMap(yyl4174, d) } - } else if yyct4131 == codecSelferValueTypeArray1234 { - yyl4131 := r.ReadArrayStart() - if yyl4131 == 0 { + } else if yyct4174 == codecSelferValueTypeArray1234 { + yyl4174 := r.ReadArrayStart() + if yyl4174 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4131, d) + x.codecDecodeSelfFromArray(yyl4174, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51476,12 +52087,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4132Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4132Slc - var yyhl4132 bool = l >= 0 - for yyj4132 := 0; ; yyj4132++ { - if yyhl4132 { - if yyj4132 >= l { + var yys4175Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4175Slc + var yyhl4175 bool = l >= 0 + for yyj4175 := 0; ; yyj4175++ { + if yyhl4175 { + if yyj4175 >= l { break } } else { @@ -51490,10 +52101,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4132Slc = r.DecodeBytes(yys4132Slc, true, true) - yys4132 := string(yys4132Slc) + yys4175Slc = r.DecodeBytes(yys4175Slc, true, true) + yys4175 := string(yys4175Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4132 { + switch yys4175 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51510,31 +52121,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4135 := &x.ListMeta - yym4136 := z.DecBinary() - _ = yym4136 + yyv4178 := &x.ListMeta + yym4179 := z.DecBinary() + _ = yym4179 if false { - } else if z.HasExtensions() && z.DecExt(yyv4135) { + } else if z.HasExtensions() && z.DecExt(yyv4178) { } else { - z.DecFallback(yyv4135, false) + z.DecFallback(yyv4178, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4137 := &x.Items - yym4138 := z.DecBinary() - _ = yym4138 + yyv4180 := &x.Items + yym4181 := z.DecBinary() + _ = yym4181 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4137), d) + h.decSliceSecret((*[]Secret)(yyv4180), d) } } default: - z.DecStructFieldNotFound(-1, yys4132) - } // end switch yys4132 - } // end for yyj4132 + z.DecStructFieldNotFound(-1, yys4175) + } // end switch yys4175 + } // end for yyj4175 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51542,16 +52153,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4139 int - var yyb4139 bool - var yyhl4139 bool = l >= 0 - yyj4139++ - if yyhl4139 { - yyb4139 = yyj4139 > l + var yyj4182 int + var yyb4182 bool + var yyhl4182 bool = l >= 0 + yyj4182++ + if yyhl4182 { + yyb4182 = yyj4182 > l } else { - yyb4139 = r.CheckBreak() + yyb4182 = r.CheckBreak() } - if yyb4139 { + if yyb4182 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51561,13 +52172,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4139++ - if yyhl4139 { - yyb4139 = yyj4139 > l + yyj4182++ + if yyhl4182 { + yyb4182 = yyj4182 > l } else { - yyb4139 = r.CheckBreak() + yyb4182 = r.CheckBreak() } - if yyb4139 { + if yyb4182 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51577,13 +52188,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4139++ - if yyhl4139 { - yyb4139 = yyj4139 > l + yyj4182++ + if yyhl4182 { + yyb4182 = yyj4182 > l } else { - yyb4139 = r.CheckBreak() + yyb4182 = r.CheckBreak() } - if yyb4139 { + if yyb4182 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51591,22 +52202,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4142 := &x.ListMeta - yym4143 := z.DecBinary() - _ = yym4143 + yyv4185 := &x.ListMeta + yym4186 := z.DecBinary() + _ = yym4186 if false { - } else if z.HasExtensions() && z.DecExt(yyv4142) { + } else if z.HasExtensions() && z.DecExt(yyv4185) { } else { - z.DecFallback(yyv4142, false) + z.DecFallback(yyv4185, false) } } - yyj4139++ - if yyhl4139 { - yyb4139 = yyj4139 > l + yyj4182++ + if yyhl4182 { + yyb4182 = yyj4182 > l } else { - yyb4139 = r.CheckBreak() + yyb4182 = r.CheckBreak() } - if yyb4139 { + if yyb4182 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51614,26 +52225,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4144 := &x.Items - yym4145 := z.DecBinary() - _ = yym4145 + yyv4187 := &x.Items + yym4188 := z.DecBinary() + _ = yym4188 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4144), d) + h.decSliceSecret((*[]Secret)(yyv4187), d) } } for { - yyj4139++ - if yyhl4139 { - yyb4139 = yyj4139 > l + yyj4182++ + if yyhl4182 { + yyb4182 = yyj4182 > l } else { - yyb4139 = r.CheckBreak() + yyb4182 = r.CheckBreak() } - if yyb4139 { + if yyb4182 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4139-1, "") + z.DecStructFieldNotFound(yyj4182-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51645,38 +52256,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4146 := z.EncBinary() - _ = yym4146 + yym4189 := z.EncBinary() + _ = yym4189 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4147 := !z.EncBinary() - yy2arr4147 := z.EncBasicHandle().StructToArray - var yyq4147 [4]bool - _, _, _ = yysep4147, yyq4147, yy2arr4147 - const yyr4147 bool = false - yyq4147[0] = x.Kind != "" - yyq4147[1] = x.APIVersion != "" - yyq4147[2] = true - yyq4147[3] = len(x.Data) != 0 - var yynn4147 int - if yyr4147 || yy2arr4147 { + yysep4190 := !z.EncBinary() + yy2arr4190 := z.EncBasicHandle().StructToArray + var yyq4190 [4]bool + _, _, _ = yysep4190, yyq4190, yy2arr4190 + const yyr4190 bool = false + yyq4190[0] = x.Kind != "" + yyq4190[1] = x.APIVersion != "" + yyq4190[2] = true + yyq4190[3] = len(x.Data) != 0 + var yynn4190 int + if yyr4190 || yy2arr4190 { r.EncodeArrayStart(4) } else { - yynn4147 = 0 - for _, b := range yyq4147 { + yynn4190 = 0 + for _, b := range yyq4190 { if b { - yynn4147++ + yynn4190++ } } - r.EncodeMapStart(yynn4147) - yynn4147 = 0 + r.EncodeMapStart(yynn4190) + yynn4190 = 0 } - if yyr4147 || yy2arr4147 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[0] { - yym4149 := z.EncBinary() - _ = yym4149 + if yyq4190[0] { + yym4192 := z.EncBinary() + _ = yym4192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51685,23 +52296,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4147[0] { + if yyq4190[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4150 := z.EncBinary() - _ = yym4150 + yym4193 := z.EncBinary() + _ = yym4193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4147 || yy2arr4147 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[1] { - yym4152 := z.EncBinary() - _ = yym4152 + if yyq4190[1] { + yym4195 := z.EncBinary() + _ = yym4195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51710,43 +52321,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4147[1] { + if yyq4190[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4153 := z.EncBinary() - _ = yym4153 + yym4196 := z.EncBinary() + _ = yym4196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4147 || yy2arr4147 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[2] { - yy4155 := &x.ObjectMeta - yy4155.CodecEncodeSelf(e) + if yyq4190[2] { + yy4198 := &x.ObjectMeta + yy4198.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4147[2] { + if yyq4190[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4156 := &x.ObjectMeta - yy4156.CodecEncodeSelf(e) + yy4199 := &x.ObjectMeta + yy4199.CodecEncodeSelf(e) } } - if yyr4147 || yy2arr4147 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[3] { + if yyq4190[3] { if x.Data == nil { r.EncodeNil() } else { - yym4158 := z.EncBinary() - _ = yym4158 + yym4201 := z.EncBinary() + _ = yym4201 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51756,15 +52367,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4147[3] { + if yyq4190[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4159 := z.EncBinary() - _ = yym4159 + yym4202 := z.EncBinary() + _ = yym4202 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51772,7 +52383,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4147 || yy2arr4147 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51785,25 +52396,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4160 := z.DecBinary() - _ = yym4160 + yym4203 := z.DecBinary() + _ = yym4203 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4161 := r.ContainerType() - if yyct4161 == codecSelferValueTypeMap1234 { - yyl4161 := r.ReadMapStart() - if yyl4161 == 0 { + yyct4204 := r.ContainerType() + if yyct4204 == codecSelferValueTypeMap1234 { + yyl4204 := r.ReadMapStart() + if yyl4204 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4161, d) + x.codecDecodeSelfFromMap(yyl4204, d) } - } else if yyct4161 == codecSelferValueTypeArray1234 { - yyl4161 := r.ReadArrayStart() - if yyl4161 == 0 { + } else if yyct4204 == codecSelferValueTypeArray1234 { + yyl4204 := r.ReadArrayStart() + if yyl4204 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4161, d) + x.codecDecodeSelfFromArray(yyl4204, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51815,12 +52426,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4162Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4162Slc - var yyhl4162 bool = l >= 0 - for yyj4162 := 0; ; yyj4162++ { - if yyhl4162 { - if yyj4162 >= l { + var yys4205Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4205Slc + var yyhl4205 bool = l >= 0 + for yyj4205 := 0; ; yyj4205++ { + if yyhl4205 { + if yyj4205 >= l { break } } else { @@ -51829,10 +52440,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4162Slc = r.DecodeBytes(yys4162Slc, true, true) - yys4162 := string(yys4162Slc) + yys4205Slc = r.DecodeBytes(yys4205Slc, true, true) + yys4205 := string(yys4205Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4162 { + switch yys4205 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51849,25 +52460,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4165 := &x.ObjectMeta - yyv4165.CodecDecodeSelf(d) + yyv4208 := &x.ObjectMeta + yyv4208.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4166 := &x.Data - yym4167 := z.DecBinary() - _ = yym4167 + yyv4209 := &x.Data + yym4210 := z.DecBinary() + _ = yym4210 if false { } else { - z.F.DecMapStringStringX(yyv4166, false, d) + z.F.DecMapStringStringX(yyv4209, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4162) - } // end switch yys4162 - } // end for yyj4162 + z.DecStructFieldNotFound(-1, yys4205) + } // end switch yys4205 + } // end for yyj4205 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51875,16 +52486,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4168 int - var yyb4168 bool - var yyhl4168 bool = l >= 0 - yyj4168++ - if yyhl4168 { - yyb4168 = yyj4168 > l + var yyj4211 int + var yyb4211 bool + var yyhl4211 bool = l >= 0 + yyj4211++ + if yyhl4211 { + yyb4211 = yyj4211 > l } else { - yyb4168 = r.CheckBreak() + yyb4211 = r.CheckBreak() } - if yyb4168 { + if yyb4211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51894,13 +52505,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4168++ - if yyhl4168 { - yyb4168 = yyj4168 > l + yyj4211++ + if yyhl4211 { + yyb4211 = yyj4211 > l } else { - yyb4168 = r.CheckBreak() + yyb4211 = r.CheckBreak() } - if yyb4168 { + if yyb4211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51910,13 +52521,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4168++ - if yyhl4168 { - yyb4168 = yyj4168 > l + yyj4211++ + if yyhl4211 { + yyb4211 = yyj4211 > l } else { - yyb4168 = r.CheckBreak() + yyb4211 = r.CheckBreak() } - if yyb4168 { + if yyb4211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51924,16 +52535,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4171 := &x.ObjectMeta - yyv4171.CodecDecodeSelf(d) + yyv4214 := &x.ObjectMeta + yyv4214.CodecDecodeSelf(d) } - yyj4168++ - if yyhl4168 { - yyb4168 = yyj4168 > l + yyj4211++ + if yyhl4211 { + yyb4211 = yyj4211 > l } else { - yyb4168 = r.CheckBreak() + yyb4211 = r.CheckBreak() } - if yyb4168 { + if yyb4211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51941,26 +52552,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4172 := &x.Data - yym4173 := z.DecBinary() - _ = yym4173 + yyv4215 := &x.Data + yym4216 := z.DecBinary() + _ = yym4216 if false { } else { - z.F.DecMapStringStringX(yyv4172, false, d) + z.F.DecMapStringStringX(yyv4215, false, d) } } for { - yyj4168++ - if yyhl4168 { - yyb4168 = yyj4168 > l + yyj4211++ + if yyhl4211 { + yyb4211 = yyj4211 > l } else { - yyb4168 = r.CheckBreak() + yyb4211 = r.CheckBreak() } - if yyb4168 { + if yyb4211 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4168-1, "") + z.DecStructFieldNotFound(yyj4211-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51972,37 +52583,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4174 := z.EncBinary() - _ = yym4174 + yym4217 := z.EncBinary() + _ = yym4217 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4175 := !z.EncBinary() - yy2arr4175 := z.EncBasicHandle().StructToArray - var yyq4175 [4]bool - _, _, _ = yysep4175, yyq4175, yy2arr4175 - const yyr4175 bool = false - yyq4175[0] = x.Kind != "" - yyq4175[1] = x.APIVersion != "" - yyq4175[2] = true - var yynn4175 int - if yyr4175 || yy2arr4175 { + yysep4218 := !z.EncBinary() + yy2arr4218 := z.EncBasicHandle().StructToArray + var yyq4218 [4]bool + _, _, _ = yysep4218, yyq4218, yy2arr4218 + const yyr4218 bool = false + yyq4218[0] = x.Kind != "" + yyq4218[1] = x.APIVersion != "" + yyq4218[2] = true + var yynn4218 int + if yyr4218 || yy2arr4218 { r.EncodeArrayStart(4) } else { - yynn4175 = 1 - for _, b := range yyq4175 { + yynn4218 = 1 + for _, b := range yyq4218 { if b { - yynn4175++ + yynn4218++ } } - r.EncodeMapStart(yynn4175) - yynn4175 = 0 + r.EncodeMapStart(yynn4218) + yynn4218 = 0 } - if yyr4175 || yy2arr4175 { + if yyr4218 || yy2arr4218 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4175[0] { - yym4177 := z.EncBinary() - _ = yym4177 + if yyq4218[0] { + yym4220 := z.EncBinary() + _ = yym4220 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52011,23 +52622,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4175[0] { + if yyq4218[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4178 := z.EncBinary() - _ = yym4178 + yym4221 := z.EncBinary() + _ = yym4221 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4175 || yy2arr4175 { + if yyr4218 || yy2arr4218 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4175[1] { - yym4180 := z.EncBinary() - _ = yym4180 + if yyq4218[1] { + yym4223 := z.EncBinary() + _ = yym4223 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52036,54 +52647,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4175[1] { + if yyq4218[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4181 := z.EncBinary() - _ = yym4181 + yym4224 := z.EncBinary() + _ = yym4224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4175 || yy2arr4175 { + if yyr4218 || yy2arr4218 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4175[2] { - yy4183 := &x.ListMeta - yym4184 := z.EncBinary() - _ = yym4184 + if yyq4218[2] { + yy4226 := &x.ListMeta + yym4227 := z.EncBinary() + _ = yym4227 if false { - } else if z.HasExtensions() && z.EncExt(yy4183) { + } else if z.HasExtensions() && z.EncExt(yy4226) { } else { - z.EncFallback(yy4183) + z.EncFallback(yy4226) } } else { r.EncodeNil() } } else { - if yyq4175[2] { + if yyq4218[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4185 := &x.ListMeta - yym4186 := z.EncBinary() - _ = yym4186 + yy4228 := &x.ListMeta + yym4229 := z.EncBinary() + _ = yym4229 if false { - } else if z.HasExtensions() && z.EncExt(yy4185) { + } else if z.HasExtensions() && z.EncExt(yy4228) { } else { - z.EncFallback(yy4185) + z.EncFallback(yy4228) } } } - if yyr4175 || yy2arr4175 { + if yyr4218 || yy2arr4218 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4188 := z.EncBinary() - _ = yym4188 + yym4231 := z.EncBinary() + _ = yym4231 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -52096,15 +52707,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4189 := z.EncBinary() - _ = yym4189 + yym4232 := z.EncBinary() + _ = yym4232 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4175 || yy2arr4175 { + if yyr4218 || yy2arr4218 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52117,25 +52728,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4190 := z.DecBinary() - _ = yym4190 + yym4233 := z.DecBinary() + _ = yym4233 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4191 := r.ContainerType() - if yyct4191 == codecSelferValueTypeMap1234 { - yyl4191 := r.ReadMapStart() - if yyl4191 == 0 { + yyct4234 := r.ContainerType() + if yyct4234 == codecSelferValueTypeMap1234 { + yyl4234 := r.ReadMapStart() + if yyl4234 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4191, d) + x.codecDecodeSelfFromMap(yyl4234, d) } - } else if yyct4191 == codecSelferValueTypeArray1234 { - yyl4191 := r.ReadArrayStart() - if yyl4191 == 0 { + } else if yyct4234 == codecSelferValueTypeArray1234 { + yyl4234 := r.ReadArrayStart() + if yyl4234 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4191, d) + x.codecDecodeSelfFromArray(yyl4234, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52147,12 +52758,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4192Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4192Slc - var yyhl4192 bool = l >= 0 - for yyj4192 := 0; ; yyj4192++ { - if yyhl4192 { - if yyj4192 >= l { + var yys4235Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4235Slc + var yyhl4235 bool = l >= 0 + for yyj4235 := 0; ; yyj4235++ { + if yyhl4235 { + if yyj4235 >= l { break } } else { @@ -52161,10 +52772,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4192Slc = r.DecodeBytes(yys4192Slc, true, true) - yys4192 := string(yys4192Slc) + yys4235Slc = r.DecodeBytes(yys4235Slc, true, true) + yys4235 := string(yys4235Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4192 { + switch yys4235 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52181,31 +52792,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4195 := &x.ListMeta - yym4196 := z.DecBinary() - _ = yym4196 + yyv4238 := &x.ListMeta + yym4239 := z.DecBinary() + _ = yym4239 if false { - } else if z.HasExtensions() && z.DecExt(yyv4195) { + } else if z.HasExtensions() && z.DecExt(yyv4238) { } else { - z.DecFallback(yyv4195, false) + z.DecFallback(yyv4238, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4197 := &x.Items - yym4198 := z.DecBinary() - _ = yym4198 + yyv4240 := &x.Items + yym4241 := z.DecBinary() + _ = yym4241 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4197), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4240), d) } } default: - z.DecStructFieldNotFound(-1, yys4192) - } // end switch yys4192 - } // end for yyj4192 + z.DecStructFieldNotFound(-1, yys4235) + } // end switch yys4235 + } // end for yyj4235 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52213,16 +52824,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4199 int - var yyb4199 bool - var yyhl4199 bool = l >= 0 - yyj4199++ - if yyhl4199 { - yyb4199 = yyj4199 > l + var yyj4242 int + var yyb4242 bool + var yyhl4242 bool = l >= 0 + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l } else { - yyb4199 = r.CheckBreak() + yyb4242 = r.CheckBreak() } - if yyb4199 { + if yyb4242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52232,13 +52843,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4199++ - if yyhl4199 { - yyb4199 = yyj4199 > l + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l } else { - yyb4199 = r.CheckBreak() + yyb4242 = r.CheckBreak() } - if yyb4199 { + if yyb4242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52248,13 +52859,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4199++ - if yyhl4199 { - yyb4199 = yyj4199 > l + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l } else { - yyb4199 = r.CheckBreak() + yyb4242 = r.CheckBreak() } - if yyb4199 { + if yyb4242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52262,22 +52873,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4202 := &x.ListMeta - yym4203 := z.DecBinary() - _ = yym4203 + yyv4245 := &x.ListMeta + yym4246 := z.DecBinary() + _ = yym4246 if false { - } else if z.HasExtensions() && z.DecExt(yyv4202) { + } else if z.HasExtensions() && z.DecExt(yyv4245) { } else { - z.DecFallback(yyv4202, false) + z.DecFallback(yyv4245, false) } } - yyj4199++ - if yyhl4199 { - yyb4199 = yyj4199 > l + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l } else { - yyb4199 = r.CheckBreak() + yyb4242 = r.CheckBreak() } - if yyb4199 { + if yyb4242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52285,26 +52896,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4204 := &x.Items - yym4205 := z.DecBinary() - _ = yym4205 + yyv4247 := &x.Items + yym4248 := z.DecBinary() + _ = yym4248 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4204), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4247), d) } } for { - yyj4199++ - if yyhl4199 { - yyb4199 = yyj4199 > l + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l } else { - yyb4199 = r.CheckBreak() + yyb4242 = r.CheckBreak() } - if yyb4199 { + if yyb4242 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4199-1, "") + z.DecStructFieldNotFound(yyj4242-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52313,8 +52924,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4206 := z.EncBinary() - _ = yym4206 + yym4249 := z.EncBinary() + _ = yym4249 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52326,8 +52937,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4207 := z.DecBinary() - _ = yym4207 + yym4250 := z.DecBinary() + _ = yym4250 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52339,8 +52950,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4208 := z.EncBinary() - _ = yym4208 + yym4251 := z.EncBinary() + _ = yym4251 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52352,8 +52963,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4209 := z.DecBinary() - _ = yym4209 + yym4252 := z.DecBinary() + _ = yym4252 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52368,32 +52979,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4210 := z.EncBinary() - _ = yym4210 + yym4253 := z.EncBinary() + _ = yym4253 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4211 := !z.EncBinary() - yy2arr4211 := z.EncBasicHandle().StructToArray - var yyq4211 [4]bool - _, _, _ = yysep4211, yyq4211, yy2arr4211 - const yyr4211 bool = false - yyq4211[2] = x.Message != "" - yyq4211[3] = x.Error != "" - var yynn4211 int - if yyr4211 || yy2arr4211 { + yysep4254 := !z.EncBinary() + yy2arr4254 := z.EncBasicHandle().StructToArray + var yyq4254 [4]bool + _, _, _ = yysep4254, yyq4254, yy2arr4254 + const yyr4254 bool = false + yyq4254[2] = x.Message != "" + yyq4254[3] = x.Error != "" + var yynn4254 int + if yyr4254 || yy2arr4254 { r.EncodeArrayStart(4) } else { - yynn4211 = 2 - for _, b := range yyq4211 { + yynn4254 = 2 + for _, b := range yyq4254 { if b { - yynn4211++ + yynn4254++ } } - r.EncodeMapStart(yynn4211) - yynn4211 = 0 + r.EncodeMapStart(yynn4254) + yynn4254 = 0 } - if yyr4211 || yy2arr4211 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -52402,7 +53013,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4211 || yy2arr4211 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -52411,11 +53022,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4211 || yy2arr4211 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4211[2] { - yym4215 := z.EncBinary() - _ = yym4215 + if yyq4254[2] { + yym4258 := z.EncBinary() + _ = yym4258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -52424,23 +53035,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4211[2] { + if yyq4254[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4216 := z.EncBinary() - _ = yym4216 + yym4259 := z.EncBinary() + _ = yym4259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4211 || yy2arr4211 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4211[3] { - yym4218 := z.EncBinary() - _ = yym4218 + if yyq4254[3] { + yym4261 := z.EncBinary() + _ = yym4261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -52449,19 +53060,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4211[3] { + if yyq4254[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4219 := z.EncBinary() - _ = yym4219 + yym4262 := z.EncBinary() + _ = yym4262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4211 || yy2arr4211 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52474,25 +53085,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4220 := z.DecBinary() - _ = yym4220 + yym4263 := z.DecBinary() + _ = yym4263 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4221 := r.ContainerType() - if yyct4221 == codecSelferValueTypeMap1234 { - yyl4221 := r.ReadMapStart() - if yyl4221 == 0 { + yyct4264 := r.ContainerType() + if yyct4264 == codecSelferValueTypeMap1234 { + yyl4264 := r.ReadMapStart() + if yyl4264 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4221, d) + x.codecDecodeSelfFromMap(yyl4264, d) } - } else if yyct4221 == codecSelferValueTypeArray1234 { - yyl4221 := r.ReadArrayStart() - if yyl4221 == 0 { + } else if yyct4264 == codecSelferValueTypeArray1234 { + yyl4264 := r.ReadArrayStart() + if yyl4264 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4221, d) + x.codecDecodeSelfFromArray(yyl4264, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52504,12 +53115,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4222Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4222Slc - var yyhl4222 bool = l >= 0 - for yyj4222 := 0; ; yyj4222++ { - if yyhl4222 { - if yyj4222 >= l { + var yys4265Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4265Slc + var yyhl4265 bool = l >= 0 + for yyj4265 := 0; ; yyj4265++ { + if yyhl4265 { + if yyj4265 >= l { break } } else { @@ -52518,10 +53129,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4222Slc = r.DecodeBytes(yys4222Slc, true, true) - yys4222 := string(yys4222Slc) + yys4265Slc = r.DecodeBytes(yys4265Slc, true, true) + yys4265 := string(yys4265Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4222 { + switch yys4265 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -52547,9 +53158,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4222) - } // end switch yys4222 - } // end for yyj4222 + z.DecStructFieldNotFound(-1, yys4265) + } // end switch yys4265 + } // end for yyj4265 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52557,16 +53168,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4227 int - var yyb4227 bool - var yyhl4227 bool = l >= 0 - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + var yyj4270 int + var yyb4270 bool + var yyhl4270 bool = l >= 0 + yyj4270++ + if yyhl4270 { + yyb4270 = yyj4270 > l } else { - yyb4227 = r.CheckBreak() + yyb4270 = r.CheckBreak() } - if yyb4227 { + if yyb4270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52576,13 +53187,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4270++ + if yyhl4270 { + yyb4270 = yyj4270 > l } else { - yyb4227 = r.CheckBreak() + yyb4270 = r.CheckBreak() } - if yyb4227 { + if yyb4270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52592,13 +53203,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4270++ + if yyhl4270 { + yyb4270 = yyj4270 > l } else { - yyb4227 = r.CheckBreak() + yyb4270 = r.CheckBreak() } - if yyb4227 { + if yyb4270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52608,13 +53219,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4270++ + if yyhl4270 { + yyb4270 = yyj4270 > l } else { - yyb4227 = r.CheckBreak() + yyb4270 = r.CheckBreak() } - if yyb4227 { + if yyb4270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52625,17 +53236,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4270++ + if yyhl4270 { + yyb4270 = yyj4270 > l } else { - yyb4227 = r.CheckBreak() + yyb4270 = r.CheckBreak() } - if yyb4227 { + if yyb4270 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4227-1, "") + z.DecStructFieldNotFound(yyj4270-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52647,38 +53258,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4232 := z.EncBinary() - _ = yym4232 + yym4275 := z.EncBinary() + _ = yym4275 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4233 := !z.EncBinary() - yy2arr4233 := z.EncBasicHandle().StructToArray - var yyq4233 [4]bool - _, _, _ = yysep4233, yyq4233, yy2arr4233 - const yyr4233 bool = false - yyq4233[0] = x.Kind != "" - yyq4233[1] = x.APIVersion != "" - yyq4233[2] = true - yyq4233[3] = len(x.Conditions) != 0 - var yynn4233 int - if yyr4233 || yy2arr4233 { + yysep4276 := !z.EncBinary() + yy2arr4276 := z.EncBasicHandle().StructToArray + var yyq4276 [4]bool + _, _, _ = yysep4276, yyq4276, yy2arr4276 + const yyr4276 bool = false + yyq4276[0] = x.Kind != "" + yyq4276[1] = x.APIVersion != "" + yyq4276[2] = true + yyq4276[3] = len(x.Conditions) != 0 + var yynn4276 int + if yyr4276 || yy2arr4276 { r.EncodeArrayStart(4) } else { - yynn4233 = 0 - for _, b := range yyq4233 { + yynn4276 = 0 + for _, b := range yyq4276 { if b { - yynn4233++ + yynn4276++ } } - r.EncodeMapStart(yynn4233) - yynn4233 = 0 + r.EncodeMapStart(yynn4276) + yynn4276 = 0 } - if yyr4233 || yy2arr4233 { + if yyr4276 || yy2arr4276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[0] { - yym4235 := z.EncBinary() - _ = yym4235 + if yyq4276[0] { + yym4278 := z.EncBinary() + _ = yym4278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52687,23 +53298,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4233[0] { + if yyq4276[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4236 := z.EncBinary() - _ = yym4236 + yym4279 := z.EncBinary() + _ = yym4279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4233 || yy2arr4233 { + if yyr4276 || yy2arr4276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[1] { - yym4238 := z.EncBinary() - _ = yym4238 + if yyq4276[1] { + yym4281 := z.EncBinary() + _ = yym4281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52712,43 +53323,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4233[1] { + if yyq4276[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4239 := z.EncBinary() - _ = yym4239 + yym4282 := z.EncBinary() + _ = yym4282 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4233 || yy2arr4233 { + if yyr4276 || yy2arr4276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[2] { - yy4241 := &x.ObjectMeta - yy4241.CodecEncodeSelf(e) + if yyq4276[2] { + yy4284 := &x.ObjectMeta + yy4284.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4233[2] { + if yyq4276[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4242 := &x.ObjectMeta - yy4242.CodecEncodeSelf(e) + yy4285 := &x.ObjectMeta + yy4285.CodecEncodeSelf(e) } } - if yyr4233 || yy2arr4233 { + if yyr4276 || yy2arr4276 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[3] { + if yyq4276[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4244 := z.EncBinary() - _ = yym4244 + yym4287 := z.EncBinary() + _ = yym4287 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52758,15 +53369,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4233[3] { + if yyq4276[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4245 := z.EncBinary() - _ = yym4245 + yym4288 := z.EncBinary() + _ = yym4288 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52774,7 +53385,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4233 || yy2arr4233 { + if yyr4276 || yy2arr4276 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52787,25 +53398,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4246 := z.DecBinary() - _ = yym4246 + yym4289 := z.DecBinary() + _ = yym4289 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4247 := r.ContainerType() - if yyct4247 == codecSelferValueTypeMap1234 { - yyl4247 := r.ReadMapStart() - if yyl4247 == 0 { + yyct4290 := r.ContainerType() + if yyct4290 == codecSelferValueTypeMap1234 { + yyl4290 := r.ReadMapStart() + if yyl4290 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4247, d) + x.codecDecodeSelfFromMap(yyl4290, d) } - } else if yyct4247 == codecSelferValueTypeArray1234 { - yyl4247 := r.ReadArrayStart() - if yyl4247 == 0 { + } else if yyct4290 == codecSelferValueTypeArray1234 { + yyl4290 := r.ReadArrayStart() + if yyl4290 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4247, d) + x.codecDecodeSelfFromArray(yyl4290, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52817,12 +53428,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4248Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4248Slc - var yyhl4248 bool = l >= 0 - for yyj4248 := 0; ; yyj4248++ { - if yyhl4248 { - if yyj4248 >= l { + var yys4291Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4291Slc + var yyhl4291 bool = l >= 0 + for yyj4291 := 0; ; yyj4291++ { + if yyhl4291 { + if yyj4291 >= l { break } } else { @@ -52831,10 +53442,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4248Slc = r.DecodeBytes(yys4248Slc, true, true) - yys4248 := string(yys4248Slc) + yys4291Slc = r.DecodeBytes(yys4291Slc, true, true) + yys4291 := string(yys4291Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4248 { + switch yys4291 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52851,25 +53462,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4251 := &x.ObjectMeta - yyv4251.CodecDecodeSelf(d) + yyv4294 := &x.ObjectMeta + yyv4294.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4252 := &x.Conditions - yym4253 := z.DecBinary() - _ = yym4253 + yyv4295 := &x.Conditions + yym4296 := z.DecBinary() + _ = yym4296 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4252), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4295), d) } } default: - z.DecStructFieldNotFound(-1, yys4248) - } // end switch yys4248 - } // end for yyj4248 + z.DecStructFieldNotFound(-1, yys4291) + } // end switch yys4291 + } // end for yyj4291 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52877,16 +53488,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4254 int - var yyb4254 bool - var yyhl4254 bool = l >= 0 - yyj4254++ - if yyhl4254 { - yyb4254 = yyj4254 > l + var yyj4297 int + var yyb4297 bool + var yyhl4297 bool = l >= 0 + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4254 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4254 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52896,13 +53507,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4254++ - if yyhl4254 { - yyb4254 = yyj4254 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4254 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4254 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52912,13 +53523,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4254++ - if yyhl4254 { - yyb4254 = yyj4254 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4254 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4254 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52926,16 +53537,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4257 := &x.ObjectMeta - yyv4257.CodecDecodeSelf(d) + yyv4300 := &x.ObjectMeta + yyv4300.CodecDecodeSelf(d) } - yyj4254++ - if yyhl4254 { - yyb4254 = yyj4254 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4254 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4254 { + if yyb4297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52943,26 +53554,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4258 := &x.Conditions - yym4259 := z.DecBinary() - _ = yym4259 + yyv4301 := &x.Conditions + yym4302 := z.DecBinary() + _ = yym4302 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4258), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4301), d) } } for { - yyj4254++ - if yyhl4254 { - yyb4254 = yyj4254 > l + yyj4297++ + if yyhl4297 { + yyb4297 = yyj4297 > l } else { - yyb4254 = r.CheckBreak() + yyb4297 = r.CheckBreak() } - if yyb4254 { + if yyb4297 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4254-1, "") + z.DecStructFieldNotFound(yyj4297-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52974,37 +53585,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4260 := z.EncBinary() - _ = yym4260 + yym4303 := z.EncBinary() + _ = yym4303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4261 := !z.EncBinary() - yy2arr4261 := z.EncBasicHandle().StructToArray - var yyq4261 [4]bool - _, _, _ = yysep4261, yyq4261, yy2arr4261 - const yyr4261 bool = false - yyq4261[0] = x.Kind != "" - yyq4261[1] = x.APIVersion != "" - yyq4261[2] = true - var yynn4261 int - if yyr4261 || yy2arr4261 { + yysep4304 := !z.EncBinary() + yy2arr4304 := z.EncBasicHandle().StructToArray + var yyq4304 [4]bool + _, _, _ = yysep4304, yyq4304, yy2arr4304 + const yyr4304 bool = false + yyq4304[0] = x.Kind != "" + yyq4304[1] = x.APIVersion != "" + yyq4304[2] = true + var yynn4304 int + if yyr4304 || yy2arr4304 { r.EncodeArrayStart(4) } else { - yynn4261 = 1 - for _, b := range yyq4261 { + yynn4304 = 1 + for _, b := range yyq4304 { if b { - yynn4261++ + yynn4304++ } } - r.EncodeMapStart(yynn4261) - yynn4261 = 0 + r.EncodeMapStart(yynn4304) + yynn4304 = 0 } - if yyr4261 || yy2arr4261 { + if yyr4304 || yy2arr4304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4261[0] { - yym4263 := z.EncBinary() - _ = yym4263 + if yyq4304[0] { + yym4306 := z.EncBinary() + _ = yym4306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53013,23 +53624,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4261[0] { + if yyq4304[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4264 := z.EncBinary() - _ = yym4264 + yym4307 := z.EncBinary() + _ = yym4307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4261 || yy2arr4261 { + if yyr4304 || yy2arr4304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4261[1] { - yym4266 := z.EncBinary() - _ = yym4266 + if yyq4304[1] { + yym4309 := z.EncBinary() + _ = yym4309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53038,54 +53649,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4261[1] { + if yyq4304[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4267 := z.EncBinary() - _ = yym4267 + yym4310 := z.EncBinary() + _ = yym4310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4261 || yy2arr4261 { + if yyr4304 || yy2arr4304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4261[2] { - yy4269 := &x.ListMeta - yym4270 := z.EncBinary() - _ = yym4270 + if yyq4304[2] { + yy4312 := &x.ListMeta + yym4313 := z.EncBinary() + _ = yym4313 if false { - } else if z.HasExtensions() && z.EncExt(yy4269) { + } else if z.HasExtensions() && z.EncExt(yy4312) { } else { - z.EncFallback(yy4269) + z.EncFallback(yy4312) } } else { r.EncodeNil() } } else { - if yyq4261[2] { + if yyq4304[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4271 := &x.ListMeta - yym4272 := z.EncBinary() - _ = yym4272 + yy4314 := &x.ListMeta + yym4315 := z.EncBinary() + _ = yym4315 if false { - } else if z.HasExtensions() && z.EncExt(yy4271) { + } else if z.HasExtensions() && z.EncExt(yy4314) { } else { - z.EncFallback(yy4271) + z.EncFallback(yy4314) } } } - if yyr4261 || yy2arr4261 { + if yyr4304 || yy2arr4304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4274 := z.EncBinary() - _ = yym4274 + yym4317 := z.EncBinary() + _ = yym4317 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -53098,15 +53709,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4275 := z.EncBinary() - _ = yym4275 + yym4318 := z.EncBinary() + _ = yym4318 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4261 || yy2arr4261 { + if yyr4304 || yy2arr4304 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53119,25 +53730,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4276 := z.DecBinary() - _ = yym4276 + yym4319 := z.DecBinary() + _ = yym4319 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4277 := r.ContainerType() - if yyct4277 == codecSelferValueTypeMap1234 { - yyl4277 := r.ReadMapStart() - if yyl4277 == 0 { + yyct4320 := r.ContainerType() + if yyct4320 == codecSelferValueTypeMap1234 { + yyl4320 := r.ReadMapStart() + if yyl4320 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4277, d) + x.codecDecodeSelfFromMap(yyl4320, d) } - } else if yyct4277 == codecSelferValueTypeArray1234 { - yyl4277 := r.ReadArrayStart() - if yyl4277 == 0 { + } else if yyct4320 == codecSelferValueTypeArray1234 { + yyl4320 := r.ReadArrayStart() + if yyl4320 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4277, d) + x.codecDecodeSelfFromArray(yyl4320, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53149,12 +53760,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4278Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4278Slc - var yyhl4278 bool = l >= 0 - for yyj4278 := 0; ; yyj4278++ { - if yyhl4278 { - if yyj4278 >= l { + var yys4321Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4321Slc + var yyhl4321 bool = l >= 0 + for yyj4321 := 0; ; yyj4321++ { + if yyhl4321 { + if yyj4321 >= l { break } } else { @@ -53163,10 +53774,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4278Slc = r.DecodeBytes(yys4278Slc, true, true) - yys4278 := string(yys4278Slc) + yys4321Slc = r.DecodeBytes(yys4321Slc, true, true) + yys4321 := string(yys4321Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4278 { + switch yys4321 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53183,31 +53794,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4281 := &x.ListMeta - yym4282 := z.DecBinary() - _ = yym4282 + yyv4324 := &x.ListMeta + yym4325 := z.DecBinary() + _ = yym4325 if false { - } else if z.HasExtensions() && z.DecExt(yyv4281) { + } else if z.HasExtensions() && z.DecExt(yyv4324) { } else { - z.DecFallback(yyv4281, false) + z.DecFallback(yyv4324, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4283 := &x.Items - yym4284 := z.DecBinary() - _ = yym4284 + yyv4326 := &x.Items + yym4327 := z.DecBinary() + _ = yym4327 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4283), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4326), d) } } default: - z.DecStructFieldNotFound(-1, yys4278) - } // end switch yys4278 - } // end for yyj4278 + z.DecStructFieldNotFound(-1, yys4321) + } // end switch yys4321 + } // end for yyj4321 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53215,16 +53826,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4285 int - var yyb4285 bool - var yyhl4285 bool = l >= 0 - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + var yyj4328 int + var yyb4328 bool + var yyhl4328 bool = l >= 0 + yyj4328++ + if yyhl4328 { + yyb4328 = yyj4328 > l } else { - yyb4285 = r.CheckBreak() + yyb4328 = r.CheckBreak() } - if yyb4285 { + if yyb4328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53234,13 +53845,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4328++ + if yyhl4328 { + yyb4328 = yyj4328 > l } else { - yyb4285 = r.CheckBreak() + yyb4328 = r.CheckBreak() } - if yyb4285 { + if yyb4328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53250,13 +53861,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4328++ + if yyhl4328 { + yyb4328 = yyj4328 > l } else { - yyb4285 = r.CheckBreak() + yyb4328 = r.CheckBreak() } - if yyb4285 { + if yyb4328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53264,22 +53875,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4288 := &x.ListMeta - yym4289 := z.DecBinary() - _ = yym4289 + yyv4331 := &x.ListMeta + yym4332 := z.DecBinary() + _ = yym4332 if false { - } else if z.HasExtensions() && z.DecExt(yyv4288) { + } else if z.HasExtensions() && z.DecExt(yyv4331) { } else { - z.DecFallback(yyv4288, false) + z.DecFallback(yyv4331, false) } } - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4328++ + if yyhl4328 { + yyb4328 = yyj4328 > l } else { - yyb4285 = r.CheckBreak() + yyb4328 = r.CheckBreak() } - if yyb4285 { + if yyb4328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53287,26 +53898,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4290 := &x.Items - yym4291 := z.DecBinary() - _ = yym4291 + yyv4333 := &x.Items + yym4334 := z.DecBinary() + _ = yym4334 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4290), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4333), d) } } for { - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4328++ + if yyhl4328 { + yyb4328 = yyj4328 > l } else { - yyb4285 = r.CheckBreak() + yyb4328 = r.CheckBreak() } - if yyb4285 { + if yyb4328 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4285-1, "") + z.DecStructFieldNotFound(yyj4328-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53318,38 +53929,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4292 := z.EncBinary() - _ = yym4292 + yym4335 := z.EncBinary() + _ = yym4335 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4293 := !z.EncBinary() - yy2arr4293 := z.EncBasicHandle().StructToArray - var yyq4293 [6]bool - _, _, _ = yysep4293, yyq4293, yy2arr4293 - const yyr4293 bool = false - yyq4293[0] = x.Capabilities != nil - yyq4293[1] = x.Privileged != nil - yyq4293[2] = x.SELinuxOptions != nil - yyq4293[3] = x.RunAsUser != nil - yyq4293[4] = x.RunAsNonRoot != nil - yyq4293[5] = x.ReadOnlyRootFilesystem != nil - var yynn4293 int - if yyr4293 || yy2arr4293 { + yysep4336 := !z.EncBinary() + yy2arr4336 := z.EncBasicHandle().StructToArray + var yyq4336 [6]bool + _, _, _ = yysep4336, yyq4336, yy2arr4336 + const yyr4336 bool = false + yyq4336[0] = x.Capabilities != nil + yyq4336[1] = x.Privileged != nil + yyq4336[2] = x.SELinuxOptions != nil + yyq4336[3] = x.RunAsUser != nil + yyq4336[4] = x.RunAsNonRoot != nil + yyq4336[5] = x.ReadOnlyRootFilesystem != nil + var yynn4336 int + if yyr4336 || yy2arr4336 { r.EncodeArrayStart(6) } else { - yynn4293 = 0 - for _, b := range yyq4293 { + yynn4336 = 0 + for _, b := range yyq4336 { if b { - yynn4293++ + yynn4336++ } } - r.EncodeMapStart(yynn4293) - yynn4293 = 0 + r.EncodeMapStart(yynn4336) + yynn4336 = 0 } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4293[0] { + if yyq4336[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -53359,7 +53970,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4293[0] { + if yyq4336[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53370,44 +53981,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4293[1] { + if yyq4336[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4296 := *x.Privileged - yym4297 := z.EncBinary() - _ = yym4297 + yy4339 := *x.Privileged + yym4340 := z.EncBinary() + _ = yym4340 if false { } else { - r.EncodeBool(bool(yy4296)) + r.EncodeBool(bool(yy4339)) } } } else { r.EncodeNil() } } else { - if yyq4293[1] { + if yyq4336[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4298 := *x.Privileged - yym4299 := z.EncBinary() - _ = yym4299 + yy4341 := *x.Privileged + yym4342 := z.EncBinary() + _ = yym4342 if false { } else { - r.EncodeBool(bool(yy4298)) + r.EncodeBool(bool(yy4341)) } } } } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4293[2] { + if yyq4336[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -53417,7 +54028,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4293[2] { + if yyq4336[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53428,112 +54039,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4293[3] { + if yyq4336[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4302 := *x.RunAsUser - yym4303 := z.EncBinary() - _ = yym4303 + yy4345 := *x.RunAsUser + yym4346 := z.EncBinary() + _ = yym4346 if false { } else { - r.EncodeInt(int64(yy4302)) + r.EncodeInt(int64(yy4345)) } } } else { r.EncodeNil() } } else { - if yyq4293[3] { + if yyq4336[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4304 := *x.RunAsUser - yym4305 := z.EncBinary() - _ = yym4305 + yy4347 := *x.RunAsUser + yym4348 := z.EncBinary() + _ = yym4348 if false { } else { - r.EncodeInt(int64(yy4304)) + r.EncodeInt(int64(yy4347)) } } } } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4293[4] { + if yyq4336[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4307 := *x.RunAsNonRoot - yym4308 := z.EncBinary() - _ = yym4308 + yy4350 := *x.RunAsNonRoot + yym4351 := z.EncBinary() + _ = yym4351 if false { } else { - r.EncodeBool(bool(yy4307)) + r.EncodeBool(bool(yy4350)) } } } else { r.EncodeNil() } } else { - if yyq4293[4] { + if yyq4336[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4309 := *x.RunAsNonRoot - yym4310 := z.EncBinary() - _ = yym4310 + yy4352 := *x.RunAsNonRoot + yym4353 := z.EncBinary() + _ = yym4353 if false { } else { - r.EncodeBool(bool(yy4309)) + r.EncodeBool(bool(yy4352)) } } } } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4293[5] { + if yyq4336[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4312 := *x.ReadOnlyRootFilesystem - yym4313 := z.EncBinary() - _ = yym4313 + yy4355 := *x.ReadOnlyRootFilesystem + yym4356 := z.EncBinary() + _ = yym4356 if false { } else { - r.EncodeBool(bool(yy4312)) + r.EncodeBool(bool(yy4355)) } } } else { r.EncodeNil() } } else { - if yyq4293[5] { + if yyq4336[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4314 := *x.ReadOnlyRootFilesystem - yym4315 := z.EncBinary() - _ = yym4315 + yy4357 := *x.ReadOnlyRootFilesystem + yym4358 := z.EncBinary() + _ = yym4358 if false { } else { - r.EncodeBool(bool(yy4314)) + r.EncodeBool(bool(yy4357)) } } } } - if yyr4293 || yy2arr4293 { + if yyr4336 || yy2arr4336 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53546,25 +54157,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4316 := z.DecBinary() - _ = yym4316 + yym4359 := z.DecBinary() + _ = yym4359 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4317 := r.ContainerType() - if yyct4317 == codecSelferValueTypeMap1234 { - yyl4317 := r.ReadMapStart() - if yyl4317 == 0 { + yyct4360 := r.ContainerType() + if yyct4360 == codecSelferValueTypeMap1234 { + yyl4360 := r.ReadMapStart() + if yyl4360 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4317, d) + x.codecDecodeSelfFromMap(yyl4360, d) } - } else if yyct4317 == codecSelferValueTypeArray1234 { - yyl4317 := r.ReadArrayStart() - if yyl4317 == 0 { + } else if yyct4360 == codecSelferValueTypeArray1234 { + yyl4360 := r.ReadArrayStart() + if yyl4360 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4317, d) + x.codecDecodeSelfFromArray(yyl4360, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53576,12 +54187,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4318Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4318Slc - var yyhl4318 bool = l >= 0 - for yyj4318 := 0; ; yyj4318++ { - if yyhl4318 { - if yyj4318 >= l { + var yys4361Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4361Slc + var yyhl4361 bool = l >= 0 + for yyj4361 := 0; ; yyj4361++ { + if yyhl4361 { + if yyj4361 >= l { break } } else { @@ -53590,10 +54201,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4318Slc = r.DecodeBytes(yys4318Slc, true, true) - yys4318 := string(yys4318Slc) + yys4361Slc = r.DecodeBytes(yys4361Slc, true, true) + yys4361 := string(yys4361Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4318 { + switch yys4361 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -53614,8 +54225,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4321 := z.DecBinary() - _ = yym4321 + yym4364 := z.DecBinary() + _ = yym4364 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -53641,8 +54252,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4324 := z.DecBinary() - _ = yym4324 + yym4367 := z.DecBinary() + _ = yym4367 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -53657,8 +54268,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4326 := z.DecBinary() - _ = yym4326 + yym4369 := z.DecBinary() + _ = yym4369 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -53673,17 +54284,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4328 := z.DecBinary() - _ = yym4328 + yym4371 := z.DecBinary() + _ = yym4371 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4318) - } // end switch yys4318 - } // end for yyj4318 + z.DecStructFieldNotFound(-1, yys4361) + } // end switch yys4361 + } // end for yyj4361 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53691,16 +54302,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4329 int - var yyb4329 bool - var yyhl4329 bool = l >= 0 - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + var yyj4372 int + var yyb4372 bool + var yyhl4372 bool = l >= 0 + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53715,13 +54326,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53734,20 +54345,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4332 := z.DecBinary() - _ = yym4332 + yym4375 := z.DecBinary() + _ = yym4375 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53762,13 +54373,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53781,20 +54392,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4335 := z.DecBinary() - _ = yym4335 + yym4378 := z.DecBinary() + _ = yym4378 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53807,20 +54418,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4337 := z.DecBinary() - _ = yym4337 + yym4380 := z.DecBinary() + _ = yym4380 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53833,25 +54444,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4339 := z.DecBinary() - _ = yym4339 + yym4382 := z.DecBinary() + _ = yym4382 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4372++ + if yyhl4372 { + yyb4372 = yyj4372 > l } else { - yyb4329 = r.CheckBreak() + yyb4372 = r.CheckBreak() } - if yyb4329 { + if yyb4372 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4329-1, "") + z.DecStructFieldNotFound(yyj4372-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53863,38 +54474,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4340 := z.EncBinary() - _ = yym4340 + yym4383 := z.EncBinary() + _ = yym4383 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4341 := !z.EncBinary() - yy2arr4341 := z.EncBasicHandle().StructToArray - var yyq4341 [4]bool - _, _, _ = yysep4341, yyq4341, yy2arr4341 - const yyr4341 bool = false - yyq4341[0] = x.User != "" - yyq4341[1] = x.Role != "" - yyq4341[2] = x.Type != "" - yyq4341[3] = x.Level != "" - var yynn4341 int - if yyr4341 || yy2arr4341 { + yysep4384 := !z.EncBinary() + yy2arr4384 := z.EncBasicHandle().StructToArray + var yyq4384 [4]bool + _, _, _ = yysep4384, yyq4384, yy2arr4384 + const yyr4384 bool = false + yyq4384[0] = x.User != "" + yyq4384[1] = x.Role != "" + yyq4384[2] = x.Type != "" + yyq4384[3] = x.Level != "" + var yynn4384 int + if yyr4384 || yy2arr4384 { r.EncodeArrayStart(4) } else { - yynn4341 = 0 - for _, b := range yyq4341 { + yynn4384 = 0 + for _, b := range yyq4384 { if b { - yynn4341++ + yynn4384++ } } - r.EncodeMapStart(yynn4341) - yynn4341 = 0 + r.EncodeMapStart(yynn4384) + yynn4384 = 0 } - if yyr4341 || yy2arr4341 { + if yyr4384 || yy2arr4384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4341[0] { - yym4343 := z.EncBinary() - _ = yym4343 + if yyq4384[0] { + yym4386 := z.EncBinary() + _ = yym4386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -53903,23 +54514,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4341[0] { + if yyq4384[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4344 := z.EncBinary() - _ = yym4344 + yym4387 := z.EncBinary() + _ = yym4387 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4341 || yy2arr4341 { + if yyr4384 || yy2arr4384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4341[1] { - yym4346 := z.EncBinary() - _ = yym4346 + if yyq4384[1] { + yym4389 := z.EncBinary() + _ = yym4389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -53928,23 +54539,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4341[1] { + if yyq4384[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4347 := z.EncBinary() - _ = yym4347 + yym4390 := z.EncBinary() + _ = yym4390 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4341 || yy2arr4341 { + if yyr4384 || yy2arr4384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4341[2] { - yym4349 := z.EncBinary() - _ = yym4349 + if yyq4384[2] { + yym4392 := z.EncBinary() + _ = yym4392 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -53953,23 +54564,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4341[2] { + if yyq4384[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4350 := z.EncBinary() - _ = yym4350 + yym4393 := z.EncBinary() + _ = yym4393 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4341 || yy2arr4341 { + if yyr4384 || yy2arr4384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4341[3] { - yym4352 := z.EncBinary() - _ = yym4352 + if yyq4384[3] { + yym4395 := z.EncBinary() + _ = yym4395 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -53978,19 +54589,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4341[3] { + if yyq4384[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4353 := z.EncBinary() - _ = yym4353 + yym4396 := z.EncBinary() + _ = yym4396 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4341 || yy2arr4341 { + if yyr4384 || yy2arr4384 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54003,25 +54614,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4354 := z.DecBinary() - _ = yym4354 + yym4397 := z.DecBinary() + _ = yym4397 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4355 := r.ContainerType() - if yyct4355 == codecSelferValueTypeMap1234 { - yyl4355 := r.ReadMapStart() - if yyl4355 == 0 { + yyct4398 := r.ContainerType() + if yyct4398 == codecSelferValueTypeMap1234 { + yyl4398 := r.ReadMapStart() + if yyl4398 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4355, d) + x.codecDecodeSelfFromMap(yyl4398, d) } - } else if yyct4355 == codecSelferValueTypeArray1234 { - yyl4355 := r.ReadArrayStart() - if yyl4355 == 0 { + } else if yyct4398 == codecSelferValueTypeArray1234 { + yyl4398 := r.ReadArrayStart() + if yyl4398 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4355, d) + x.codecDecodeSelfFromArray(yyl4398, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54033,12 +54644,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4356Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4356Slc - var yyhl4356 bool = l >= 0 - for yyj4356 := 0; ; yyj4356++ { - if yyhl4356 { - if yyj4356 >= l { + var yys4399Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4399Slc + var yyhl4399 bool = l >= 0 + for yyj4399 := 0; ; yyj4399++ { + if yyhl4399 { + if yyj4399 >= l { break } } else { @@ -54047,10 +54658,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4356Slc = r.DecodeBytes(yys4356Slc, true, true) - yys4356 := string(yys4356Slc) + yys4399Slc = r.DecodeBytes(yys4399Slc, true, true) + yys4399 := string(yys4399Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4356 { + switch yys4399 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -54076,9 +54687,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4356) - } // end switch yys4356 - } // end for yyj4356 + z.DecStructFieldNotFound(-1, yys4399) + } // end switch yys4399 + } // end for yyj4399 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54086,16 +54697,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4361 int - var yyb4361 bool - var yyhl4361 bool = l >= 0 - yyj4361++ - if yyhl4361 { - yyb4361 = yyj4361 > l + var yyj4404 int + var yyb4404 bool + var yyhl4404 bool = l >= 0 + yyj4404++ + if yyhl4404 { + yyb4404 = yyj4404 > l } else { - yyb4361 = r.CheckBreak() + yyb4404 = r.CheckBreak() } - if yyb4361 { + if yyb4404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54105,13 +54716,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4361++ - if yyhl4361 { - yyb4361 = yyj4361 > l + yyj4404++ + if yyhl4404 { + yyb4404 = yyj4404 > l } else { - yyb4361 = r.CheckBreak() + yyb4404 = r.CheckBreak() } - if yyb4361 { + if yyb4404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54121,13 +54732,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4361++ - if yyhl4361 { - yyb4361 = yyj4361 > l + yyj4404++ + if yyhl4404 { + yyb4404 = yyj4404 > l } else { - yyb4361 = r.CheckBreak() + yyb4404 = r.CheckBreak() } - if yyb4361 { + if yyb4404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54137,13 +54748,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4361++ - if yyhl4361 { - yyb4361 = yyj4361 > l + yyj4404++ + if yyhl4404 { + yyb4404 = yyj4404 > l } else { - yyb4361 = r.CheckBreak() + yyb4404 = r.CheckBreak() } - if yyb4361 { + if yyb4404 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54154,17 +54765,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4361++ - if yyhl4361 { - yyb4361 = yyj4361 > l + yyj4404++ + if yyhl4404 { + yyb4404 = yyj4404 > l } else { - yyb4361 = r.CheckBreak() + yyb4404 = r.CheckBreak() } - if yyb4361 { + if yyb4404 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4361-1, "") + z.DecStructFieldNotFound(yyj4404-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54176,37 +54787,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4366 := z.EncBinary() - _ = yym4366 + yym4409 := z.EncBinary() + _ = yym4409 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4367 := !z.EncBinary() - yy2arr4367 := z.EncBasicHandle().StructToArray - var yyq4367 [5]bool - _, _, _ = yysep4367, yyq4367, yy2arr4367 - const yyr4367 bool = false - yyq4367[0] = x.Kind != "" - yyq4367[1] = x.APIVersion != "" - yyq4367[2] = true - var yynn4367 int - if yyr4367 || yy2arr4367 { + yysep4410 := !z.EncBinary() + yy2arr4410 := z.EncBasicHandle().StructToArray + var yyq4410 [5]bool + _, _, _ = yysep4410, yyq4410, yy2arr4410 + const yyr4410 bool = false + yyq4410[0] = x.Kind != "" + yyq4410[1] = x.APIVersion != "" + yyq4410[2] = true + var yynn4410 int + if yyr4410 || yy2arr4410 { r.EncodeArrayStart(5) } else { - yynn4367 = 2 - for _, b := range yyq4367 { + yynn4410 = 2 + for _, b := range yyq4410 { if b { - yynn4367++ + yynn4410++ } } - r.EncodeMapStart(yynn4367) - yynn4367 = 0 + r.EncodeMapStart(yynn4410) + yynn4410 = 0 } - if yyr4367 || yy2arr4367 { + if yyr4410 || yy2arr4410 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4367[0] { - yym4369 := z.EncBinary() - _ = yym4369 + if yyq4410[0] { + yym4412 := z.EncBinary() + _ = yym4412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54215,23 +54826,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4367[0] { + if yyq4410[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4370 := z.EncBinary() - _ = yym4370 + yym4413 := z.EncBinary() + _ = yym4413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4367 || yy2arr4367 { + if yyr4410 || yy2arr4410 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4367[1] { - yym4372 := z.EncBinary() - _ = yym4372 + if yyq4410[1] { + yym4415 := z.EncBinary() + _ = yym4415 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54240,39 +54851,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4367[1] { + if yyq4410[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4373 := z.EncBinary() - _ = yym4373 + yym4416 := z.EncBinary() + _ = yym4416 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4367 || yy2arr4367 { + if yyr4410 || yy2arr4410 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4367[2] { - yy4375 := &x.ObjectMeta - yy4375.CodecEncodeSelf(e) + if yyq4410[2] { + yy4418 := &x.ObjectMeta + yy4418.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4367[2] { + if yyq4410[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4376 := &x.ObjectMeta - yy4376.CodecEncodeSelf(e) + yy4419 := &x.ObjectMeta + yy4419.CodecEncodeSelf(e) } } - if yyr4367 || yy2arr4367 { + if yyr4410 || yy2arr4410 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4378 := z.EncBinary() - _ = yym4378 + yym4421 := z.EncBinary() + _ = yym4421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -54281,20 +54892,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4379 := z.EncBinary() - _ = yym4379 + yym4422 := z.EncBinary() + _ = yym4422 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4367 || yy2arr4367 { + if yyr4410 || yy2arr4410 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4381 := z.EncBinary() - _ = yym4381 + yym4424 := z.EncBinary() + _ = yym4424 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -54307,15 +54918,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4382 := z.EncBinary() - _ = yym4382 + yym4425 := z.EncBinary() + _ = yym4425 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4367 || yy2arr4367 { + if yyr4410 || yy2arr4410 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54328,25 +54939,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4383 := z.DecBinary() - _ = yym4383 + yym4426 := z.DecBinary() + _ = yym4426 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4384 := r.ContainerType() - if yyct4384 == codecSelferValueTypeMap1234 { - yyl4384 := r.ReadMapStart() - if yyl4384 == 0 { + yyct4427 := r.ContainerType() + if yyct4427 == codecSelferValueTypeMap1234 { + yyl4427 := r.ReadMapStart() + if yyl4427 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4384, d) + x.codecDecodeSelfFromMap(yyl4427, d) } - } else if yyct4384 == codecSelferValueTypeArray1234 { - yyl4384 := r.ReadArrayStart() - if yyl4384 == 0 { + } else if yyct4427 == codecSelferValueTypeArray1234 { + yyl4427 := r.ReadArrayStart() + if yyl4427 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4384, d) + x.codecDecodeSelfFromArray(yyl4427, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54358,12 +54969,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4385Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4385Slc - var yyhl4385 bool = l >= 0 - for yyj4385 := 0; ; yyj4385++ { - if yyhl4385 { - if yyj4385 >= l { + var yys4428Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4428Slc + var yyhl4428 bool = l >= 0 + for yyj4428 := 0; ; yyj4428++ { + if yyhl4428 { + if yyj4428 >= l { break } } else { @@ -54372,10 +54983,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4385Slc = r.DecodeBytes(yys4385Slc, true, true) - yys4385 := string(yys4385Slc) + yys4428Slc = r.DecodeBytes(yys4428Slc, true, true) + yys4428 := string(yys4428Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4385 { + switch yys4428 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54392,8 +55003,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4388 := &x.ObjectMeta - yyv4388.CodecDecodeSelf(d) + yyv4431 := &x.ObjectMeta + yyv4431.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -54405,18 +55016,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4390 := &x.Data - yym4391 := z.DecBinary() - _ = yym4391 + yyv4433 := &x.Data + yym4434 := z.DecBinary() + _ = yym4434 if false { } else { - *yyv4390 = r.DecodeBytes(*(*[]byte)(yyv4390), false, false) + *yyv4433 = r.DecodeBytes(*(*[]byte)(yyv4433), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4385) - } // end switch yys4385 - } // end for yyj4385 + z.DecStructFieldNotFound(-1, yys4428) + } // end switch yys4428 + } // end for yyj4428 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54424,16 +55035,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4392 int - var yyb4392 bool - var yyhl4392 bool = l >= 0 - yyj4392++ - if yyhl4392 { - yyb4392 = yyj4392 > l + var yyj4435 int + var yyb4435 bool + var yyhl4435 bool = l >= 0 + yyj4435++ + if yyhl4435 { + yyb4435 = yyj4435 > l } else { - yyb4392 = r.CheckBreak() + yyb4435 = r.CheckBreak() } - if yyb4392 { + if yyb4435 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54443,13 +55054,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4392++ - if yyhl4392 { - yyb4392 = yyj4392 > l + yyj4435++ + if yyhl4435 { + yyb4435 = yyj4435 > l } else { - yyb4392 = r.CheckBreak() + yyb4435 = r.CheckBreak() } - if yyb4392 { + if yyb4435 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54459,13 +55070,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4392++ - if yyhl4392 { - yyb4392 = yyj4392 > l + yyj4435++ + if yyhl4435 { + yyb4435 = yyj4435 > l } else { - yyb4392 = r.CheckBreak() + yyb4435 = r.CheckBreak() } - if yyb4392 { + if yyb4435 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54473,16 +55084,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4395 := &x.ObjectMeta - yyv4395.CodecDecodeSelf(d) + yyv4438 := &x.ObjectMeta + yyv4438.CodecDecodeSelf(d) } - yyj4392++ - if yyhl4392 { - yyb4392 = yyj4392 > l + yyj4435++ + if yyhl4435 { + yyb4435 = yyj4435 > l } else { - yyb4392 = r.CheckBreak() + yyb4435 = r.CheckBreak() } - if yyb4392 { + if yyb4435 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54492,13 +55103,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4392++ - if yyhl4392 { - yyb4392 = yyj4392 > l + yyj4435++ + if yyhl4435 { + yyb4435 = yyj4435 > l } else { - yyb4392 = r.CheckBreak() + yyb4435 = r.CheckBreak() } - if yyb4392 { + if yyb4435 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54506,26 +55117,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4397 := &x.Data - yym4398 := z.DecBinary() - _ = yym4398 + yyv4440 := &x.Data + yym4441 := z.DecBinary() + _ = yym4441 if false { } else { - *yyv4397 = r.DecodeBytes(*(*[]byte)(yyv4397), false, false) + *yyv4440 = r.DecodeBytes(*(*[]byte)(yyv4440), false, false) } } for { - yyj4392++ - if yyhl4392 { - yyb4392 = yyj4392 > l + yyj4435++ + if yyhl4435 { + yyb4435 = yyj4435 > l } else { - yyb4392 = r.CheckBreak() + yyb4435 = r.CheckBreak() } - if yyb4392 { + if yyb4435 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4392-1, "") + z.DecStructFieldNotFound(yyj4435-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54535,10 +55146,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4399 := range v { + for _, yyv4442 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4400 := &yyv4399 - yy4400.CodecEncodeSelf(e) + yy4443 := &yyv4442 + yy4443.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54548,83 +55159,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4401 := *v - yyh4401, yyl4401 := z.DecSliceHelperStart() - var yyc4401 bool - if yyl4401 == 0 { - if yyv4401 == nil { - yyv4401 = []OwnerReference{} - yyc4401 = true - } else if len(yyv4401) != 0 { - yyv4401 = yyv4401[:0] - yyc4401 = true + yyv4444 := *v + yyh4444, yyl4444 := z.DecSliceHelperStart() + var yyc4444 bool + if yyl4444 == 0 { + if yyv4444 == nil { + yyv4444 = []OwnerReference{} + yyc4444 = true + } else if len(yyv4444) != 0 { + yyv4444 = yyv4444[:0] + yyc4444 = true } - } else if yyl4401 > 0 { - var yyrr4401, yyrl4401 int - var yyrt4401 bool - if yyl4401 > cap(yyv4401) { + } else if yyl4444 > 0 { + var yyrr4444, yyrl4444 int + var yyrt4444 bool + if yyl4444 > cap(yyv4444) { - yyrg4401 := len(yyv4401) > 0 - yyv24401 := yyv4401 - yyrl4401, yyrt4401 = z.DecInferLen(yyl4401, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4401 { - if yyrl4401 <= cap(yyv4401) { - yyv4401 = yyv4401[:yyrl4401] + yyrg4444 := len(yyv4444) > 0 + yyv24444 := yyv4444 + yyrl4444, yyrt4444 = z.DecInferLen(yyl4444, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4444 { + if yyrl4444 <= cap(yyv4444) { + yyv4444 = yyv4444[:yyrl4444] } else { - yyv4401 = make([]OwnerReference, yyrl4401) + yyv4444 = make([]OwnerReference, yyrl4444) } } else { - yyv4401 = make([]OwnerReference, yyrl4401) + yyv4444 = make([]OwnerReference, yyrl4444) } - yyc4401 = true - yyrr4401 = len(yyv4401) - if yyrg4401 { - copy(yyv4401, yyv24401) + yyc4444 = true + yyrr4444 = len(yyv4444) + if yyrg4444 { + copy(yyv4444, yyv24444) } - } else if yyl4401 != len(yyv4401) { - yyv4401 = yyv4401[:yyl4401] - yyc4401 = true + } else if yyl4444 != len(yyv4444) { + yyv4444 = yyv4444[:yyl4444] + yyc4444 = true } - yyj4401 := 0 - for ; yyj4401 < yyrr4401; yyj4401++ { - yyh4401.ElemContainerState(yyj4401) + yyj4444 := 0 + for ; yyj4444 < yyrr4444; yyj4444++ { + yyh4444.ElemContainerState(yyj4444) if r.TryDecodeAsNil() { - yyv4401[yyj4401] = OwnerReference{} + yyv4444[yyj4444] = OwnerReference{} } else { - yyv4402 := &yyv4401[yyj4401] - yyv4402.CodecDecodeSelf(d) + yyv4445 := &yyv4444[yyj4444] + yyv4445.CodecDecodeSelf(d) } } - if yyrt4401 { - for ; yyj4401 < yyl4401; yyj4401++ { - yyv4401 = append(yyv4401, OwnerReference{}) - yyh4401.ElemContainerState(yyj4401) + if yyrt4444 { + for ; yyj4444 < yyl4444; yyj4444++ { + yyv4444 = append(yyv4444, OwnerReference{}) + yyh4444.ElemContainerState(yyj4444) if r.TryDecodeAsNil() { - yyv4401[yyj4401] = OwnerReference{} + yyv4444[yyj4444] = OwnerReference{} } else { - yyv4403 := &yyv4401[yyj4401] - yyv4403.CodecDecodeSelf(d) + yyv4446 := &yyv4444[yyj4444] + yyv4446.CodecDecodeSelf(d) } } } } else { - yyj4401 := 0 - for ; !r.CheckBreak(); yyj4401++ { + yyj4444 := 0 + for ; !r.CheckBreak(); yyj4444++ { - if yyj4401 >= len(yyv4401) { - yyv4401 = append(yyv4401, OwnerReference{}) // var yyz4401 OwnerReference - yyc4401 = true + if yyj4444 >= len(yyv4444) { + yyv4444 = append(yyv4444, OwnerReference{}) // var yyz4444 OwnerReference + yyc4444 = true } - yyh4401.ElemContainerState(yyj4401) - if yyj4401 < len(yyv4401) { + yyh4444.ElemContainerState(yyj4444) + if yyj4444 < len(yyv4444) { if r.TryDecodeAsNil() { - yyv4401[yyj4401] = OwnerReference{} + yyv4444[yyj4444] = OwnerReference{} } else { - yyv4404 := &yyv4401[yyj4401] - yyv4404.CodecDecodeSelf(d) + yyv4447 := &yyv4444[yyj4444] + yyv4447.CodecDecodeSelf(d) } } else { @@ -54632,17 +55243,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4401 < len(yyv4401) { - yyv4401 = yyv4401[:yyj4401] - yyc4401 = true - } else if yyj4401 == 0 && yyv4401 == nil { - yyv4401 = []OwnerReference{} - yyc4401 = true + if yyj4444 < len(yyv4444) { + yyv4444 = yyv4444[:yyj4444] + yyc4444 = true + } else if yyj4444 == 0 && yyv4444 == nil { + yyv4444 = []OwnerReference{} + yyc4444 = true } } - yyh4401.End() - if yyc4401 { - *v = yyv4401 + yyh4444.End() + if yyc4444 { + *v = yyv4444 } } @@ -54651,9 +55262,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4405 := range v { + for _, yyv4448 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4405.CodecEncodeSelf(e) + yyv4448.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54663,75 +55274,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4406 := *v - yyh4406, yyl4406 := z.DecSliceHelperStart() - var yyc4406 bool - if yyl4406 == 0 { - if yyv4406 == nil { - yyv4406 = []PersistentVolumeAccessMode{} - yyc4406 = true - } else if len(yyv4406) != 0 { - yyv4406 = yyv4406[:0] - yyc4406 = true + yyv4449 := *v + yyh4449, yyl4449 := z.DecSliceHelperStart() + var yyc4449 bool + if yyl4449 == 0 { + if yyv4449 == nil { + yyv4449 = []PersistentVolumeAccessMode{} + yyc4449 = true + } else if len(yyv4449) != 0 { + yyv4449 = yyv4449[:0] + yyc4449 = true } - } else if yyl4406 > 0 { - var yyrr4406, yyrl4406 int - var yyrt4406 bool - if yyl4406 > cap(yyv4406) { + } else if yyl4449 > 0 { + var yyrr4449, yyrl4449 int + var yyrt4449 bool + if yyl4449 > cap(yyv4449) { - yyrl4406, yyrt4406 = z.DecInferLen(yyl4406, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4406 { - if yyrl4406 <= cap(yyv4406) { - yyv4406 = yyv4406[:yyrl4406] + yyrl4449, yyrt4449 = z.DecInferLen(yyl4449, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4449 { + if yyrl4449 <= cap(yyv4449) { + yyv4449 = yyv4449[:yyrl4449] } else { - yyv4406 = make([]PersistentVolumeAccessMode, yyrl4406) + yyv4449 = make([]PersistentVolumeAccessMode, yyrl4449) } } else { - yyv4406 = make([]PersistentVolumeAccessMode, yyrl4406) + yyv4449 = make([]PersistentVolumeAccessMode, yyrl4449) } - yyc4406 = true - yyrr4406 = len(yyv4406) - } else if yyl4406 != len(yyv4406) { - yyv4406 = yyv4406[:yyl4406] - yyc4406 = true + yyc4449 = true + yyrr4449 = len(yyv4449) + } else if yyl4449 != len(yyv4449) { + yyv4449 = yyv4449[:yyl4449] + yyc4449 = true } - yyj4406 := 0 - for ; yyj4406 < yyrr4406; yyj4406++ { - yyh4406.ElemContainerState(yyj4406) + yyj4449 := 0 + for ; yyj4449 < yyrr4449; yyj4449++ { + yyh4449.ElemContainerState(yyj4449) if r.TryDecodeAsNil() { - yyv4406[yyj4406] = "" + yyv4449[yyj4449] = "" } else { - yyv4406[yyj4406] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4449[yyj4449] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4406 { - for ; yyj4406 < yyl4406; yyj4406++ { - yyv4406 = append(yyv4406, "") - yyh4406.ElemContainerState(yyj4406) + if yyrt4449 { + for ; yyj4449 < yyl4449; yyj4449++ { + yyv4449 = append(yyv4449, "") + yyh4449.ElemContainerState(yyj4449) if r.TryDecodeAsNil() { - yyv4406[yyj4406] = "" + yyv4449[yyj4449] = "" } else { - yyv4406[yyj4406] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4449[yyj4449] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4406 := 0 - for ; !r.CheckBreak(); yyj4406++ { + yyj4449 := 0 + for ; !r.CheckBreak(); yyj4449++ { - if yyj4406 >= len(yyv4406) { - yyv4406 = append(yyv4406, "") // var yyz4406 PersistentVolumeAccessMode - yyc4406 = true + if yyj4449 >= len(yyv4449) { + yyv4449 = append(yyv4449, "") // var yyz4449 PersistentVolumeAccessMode + yyc4449 = true } - yyh4406.ElemContainerState(yyj4406) - if yyj4406 < len(yyv4406) { + yyh4449.ElemContainerState(yyj4449) + if yyj4449 < len(yyv4449) { if r.TryDecodeAsNil() { - yyv4406[yyj4406] = "" + yyv4449[yyj4449] = "" } else { - yyv4406[yyj4406] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4449[yyj4449] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -54739,17 +55350,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4406 < len(yyv4406) { - yyv4406 = yyv4406[:yyj4406] - yyc4406 = true - } else if yyj4406 == 0 && yyv4406 == nil { - yyv4406 = []PersistentVolumeAccessMode{} - yyc4406 = true + if yyj4449 < len(yyv4449) { + yyv4449 = yyv4449[:yyj4449] + yyc4449 = true + } else if yyj4449 == 0 && yyv4449 == nil { + yyv4449 = []PersistentVolumeAccessMode{} + yyc4449 = true } } - yyh4406.End() - if yyc4406 { - *v = yyv4406 + yyh4449.End() + if yyc4449 { + *v = yyv4449 } } @@ -54758,10 +55369,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4410 := range v { + for _, yyv4453 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4411 := &yyv4410 - yy4411.CodecEncodeSelf(e) + yy4454 := &yyv4453 + yy4454.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54771,83 +55382,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4412 := *v - yyh4412, yyl4412 := z.DecSliceHelperStart() - var yyc4412 bool - if yyl4412 == 0 { - if yyv4412 == nil { - yyv4412 = []PersistentVolume{} - yyc4412 = true - } else if len(yyv4412) != 0 { - yyv4412 = yyv4412[:0] - yyc4412 = true + yyv4455 := *v + yyh4455, yyl4455 := z.DecSliceHelperStart() + var yyc4455 bool + if yyl4455 == 0 { + if yyv4455 == nil { + yyv4455 = []PersistentVolume{} + yyc4455 = true + } else if len(yyv4455) != 0 { + yyv4455 = yyv4455[:0] + yyc4455 = true } - } else if yyl4412 > 0 { - var yyrr4412, yyrl4412 int - var yyrt4412 bool - if yyl4412 > cap(yyv4412) { + } else if yyl4455 > 0 { + var yyrr4455, yyrl4455 int + var yyrt4455 bool + if yyl4455 > cap(yyv4455) { - yyrg4412 := len(yyv4412) > 0 - yyv24412 := yyv4412 - yyrl4412, yyrt4412 = z.DecInferLen(yyl4412, z.DecBasicHandle().MaxInitLen, 456) - if yyrt4412 { - if yyrl4412 <= cap(yyv4412) { - yyv4412 = yyv4412[:yyrl4412] + yyrg4455 := len(yyv4455) > 0 + yyv24455 := yyv4455 + yyrl4455, yyrt4455 = z.DecInferLen(yyl4455, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4455 { + if yyrl4455 <= cap(yyv4455) { + yyv4455 = yyv4455[:yyrl4455] } else { - yyv4412 = make([]PersistentVolume, yyrl4412) + yyv4455 = make([]PersistentVolume, yyrl4455) } } else { - yyv4412 = make([]PersistentVolume, yyrl4412) + yyv4455 = make([]PersistentVolume, yyrl4455) } - yyc4412 = true - yyrr4412 = len(yyv4412) - if yyrg4412 { - copy(yyv4412, yyv24412) + yyc4455 = true + yyrr4455 = len(yyv4455) + if yyrg4455 { + copy(yyv4455, yyv24455) } - } else if yyl4412 != len(yyv4412) { - yyv4412 = yyv4412[:yyl4412] - yyc4412 = true + } else if yyl4455 != len(yyv4455) { + yyv4455 = yyv4455[:yyl4455] + yyc4455 = true } - yyj4412 := 0 - for ; yyj4412 < yyrr4412; yyj4412++ { - yyh4412.ElemContainerState(yyj4412) + yyj4455 := 0 + for ; yyj4455 < yyrr4455; yyj4455++ { + yyh4455.ElemContainerState(yyj4455) if r.TryDecodeAsNil() { - yyv4412[yyj4412] = PersistentVolume{} + yyv4455[yyj4455] = PersistentVolume{} } else { - yyv4413 := &yyv4412[yyj4412] - yyv4413.CodecDecodeSelf(d) + yyv4456 := &yyv4455[yyj4455] + yyv4456.CodecDecodeSelf(d) } } - if yyrt4412 { - for ; yyj4412 < yyl4412; yyj4412++ { - yyv4412 = append(yyv4412, PersistentVolume{}) - yyh4412.ElemContainerState(yyj4412) + if yyrt4455 { + for ; yyj4455 < yyl4455; yyj4455++ { + yyv4455 = append(yyv4455, PersistentVolume{}) + yyh4455.ElemContainerState(yyj4455) if r.TryDecodeAsNil() { - yyv4412[yyj4412] = PersistentVolume{} + yyv4455[yyj4455] = PersistentVolume{} } else { - yyv4414 := &yyv4412[yyj4412] - yyv4414.CodecDecodeSelf(d) + yyv4457 := &yyv4455[yyj4455] + yyv4457.CodecDecodeSelf(d) } } } } else { - yyj4412 := 0 - for ; !r.CheckBreak(); yyj4412++ { + yyj4455 := 0 + for ; !r.CheckBreak(); yyj4455++ { - if yyj4412 >= len(yyv4412) { - yyv4412 = append(yyv4412, PersistentVolume{}) // var yyz4412 PersistentVolume - yyc4412 = true + if yyj4455 >= len(yyv4455) { + yyv4455 = append(yyv4455, PersistentVolume{}) // var yyz4455 PersistentVolume + yyc4455 = true } - yyh4412.ElemContainerState(yyj4412) - if yyj4412 < len(yyv4412) { + yyh4455.ElemContainerState(yyj4455) + if yyj4455 < len(yyv4455) { if r.TryDecodeAsNil() { - yyv4412[yyj4412] = PersistentVolume{} + yyv4455[yyj4455] = PersistentVolume{} } else { - yyv4415 := &yyv4412[yyj4412] - yyv4415.CodecDecodeSelf(d) + yyv4458 := &yyv4455[yyj4455] + yyv4458.CodecDecodeSelf(d) } } else { @@ -54855,17 +55466,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4412 < len(yyv4412) { - yyv4412 = yyv4412[:yyj4412] - yyc4412 = true - } else if yyj4412 == 0 && yyv4412 == nil { - yyv4412 = []PersistentVolume{} - yyc4412 = true + if yyj4455 < len(yyv4455) { + yyv4455 = yyv4455[:yyj4455] + yyc4455 = true + } else if yyj4455 == 0 && yyv4455 == nil { + yyv4455 = []PersistentVolume{} + yyc4455 = true } } - yyh4412.End() - if yyc4412 { - *v = yyv4412 + yyh4455.End() + if yyc4455 { + *v = yyv4455 } } @@ -54874,10 +55485,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4416 := range v { + for _, yyv4459 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4417 := &yyv4416 - yy4417.CodecEncodeSelf(e) + yy4460 := &yyv4459 + yy4460.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54887,83 +55498,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4418 := *v - yyh4418, yyl4418 := z.DecSliceHelperStart() - var yyc4418 bool - if yyl4418 == 0 { - if yyv4418 == nil { - yyv4418 = []PersistentVolumeClaim{} - yyc4418 = true - } else if len(yyv4418) != 0 { - yyv4418 = yyv4418[:0] - yyc4418 = true + yyv4461 := *v + yyh4461, yyl4461 := z.DecSliceHelperStart() + var yyc4461 bool + if yyl4461 == 0 { + if yyv4461 == nil { + yyv4461 = []PersistentVolumeClaim{} + yyc4461 = true + } else if len(yyv4461) != 0 { + yyv4461 = yyv4461[:0] + yyc4461 = true } - } else if yyl4418 > 0 { - var yyrr4418, yyrl4418 int - var yyrt4418 bool - if yyl4418 > cap(yyv4418) { + } else if yyl4461 > 0 { + var yyrr4461, yyrl4461 int + var yyrt4461 bool + if yyl4461 > cap(yyv4461) { - yyrg4418 := len(yyv4418) > 0 - yyv24418 := yyv4418 - yyrl4418, yyrt4418 = z.DecInferLen(yyl4418, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4418 { - if yyrl4418 <= cap(yyv4418) { - yyv4418 = yyv4418[:yyrl4418] + yyrg4461 := len(yyv4461) > 0 + yyv24461 := yyv4461 + yyrl4461, yyrt4461 = z.DecInferLen(yyl4461, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4461 { + if yyrl4461 <= cap(yyv4461) { + yyv4461 = yyv4461[:yyrl4461] } else { - yyv4418 = make([]PersistentVolumeClaim, yyrl4418) + yyv4461 = make([]PersistentVolumeClaim, yyrl4461) } } else { - yyv4418 = make([]PersistentVolumeClaim, yyrl4418) + yyv4461 = make([]PersistentVolumeClaim, yyrl4461) } - yyc4418 = true - yyrr4418 = len(yyv4418) - if yyrg4418 { - copy(yyv4418, yyv24418) + yyc4461 = true + yyrr4461 = len(yyv4461) + if yyrg4461 { + copy(yyv4461, yyv24461) } - } else if yyl4418 != len(yyv4418) { - yyv4418 = yyv4418[:yyl4418] - yyc4418 = true + } else if yyl4461 != len(yyv4461) { + yyv4461 = yyv4461[:yyl4461] + yyc4461 = true } - yyj4418 := 0 - for ; yyj4418 < yyrr4418; yyj4418++ { - yyh4418.ElemContainerState(yyj4418) + yyj4461 := 0 + for ; yyj4461 < yyrr4461; yyj4461++ { + yyh4461.ElemContainerState(yyj4461) if r.TryDecodeAsNil() { - yyv4418[yyj4418] = PersistentVolumeClaim{} + yyv4461[yyj4461] = PersistentVolumeClaim{} } else { - yyv4419 := &yyv4418[yyj4418] - yyv4419.CodecDecodeSelf(d) + yyv4462 := &yyv4461[yyj4461] + yyv4462.CodecDecodeSelf(d) } } - if yyrt4418 { - for ; yyj4418 < yyl4418; yyj4418++ { - yyv4418 = append(yyv4418, PersistentVolumeClaim{}) - yyh4418.ElemContainerState(yyj4418) + if yyrt4461 { + for ; yyj4461 < yyl4461; yyj4461++ { + yyv4461 = append(yyv4461, PersistentVolumeClaim{}) + yyh4461.ElemContainerState(yyj4461) if r.TryDecodeAsNil() { - yyv4418[yyj4418] = PersistentVolumeClaim{} + yyv4461[yyj4461] = PersistentVolumeClaim{} } else { - yyv4420 := &yyv4418[yyj4418] - yyv4420.CodecDecodeSelf(d) + yyv4463 := &yyv4461[yyj4461] + yyv4463.CodecDecodeSelf(d) } } } } else { - yyj4418 := 0 - for ; !r.CheckBreak(); yyj4418++ { + yyj4461 := 0 + for ; !r.CheckBreak(); yyj4461++ { - if yyj4418 >= len(yyv4418) { - yyv4418 = append(yyv4418, PersistentVolumeClaim{}) // var yyz4418 PersistentVolumeClaim - yyc4418 = true + if yyj4461 >= len(yyv4461) { + yyv4461 = append(yyv4461, PersistentVolumeClaim{}) // var yyz4461 PersistentVolumeClaim + yyc4461 = true } - yyh4418.ElemContainerState(yyj4418) - if yyj4418 < len(yyv4418) { + yyh4461.ElemContainerState(yyj4461) + if yyj4461 < len(yyv4461) { if r.TryDecodeAsNil() { - yyv4418[yyj4418] = PersistentVolumeClaim{} + yyv4461[yyj4461] = PersistentVolumeClaim{} } else { - yyv4421 := &yyv4418[yyj4418] - yyv4421.CodecDecodeSelf(d) + yyv4464 := &yyv4461[yyj4461] + yyv4464.CodecDecodeSelf(d) } } else { @@ -54971,17 +55582,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4418 < len(yyv4418) { - yyv4418 = yyv4418[:yyj4418] - yyc4418 = true - } else if yyj4418 == 0 && yyv4418 == nil { - yyv4418 = []PersistentVolumeClaim{} - yyc4418 = true + if yyj4461 < len(yyv4461) { + yyv4461 = yyv4461[:yyj4461] + yyc4461 = true + } else if yyj4461 == 0 && yyv4461 == nil { + yyv4461 = []PersistentVolumeClaim{} + yyc4461 = true } } - yyh4418.End() - if yyc4418 { - *v = yyv4418 + yyh4461.End() + if yyc4461 { + *v = yyv4461 } } @@ -54990,10 +55601,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4422 := range v { + for _, yyv4465 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4423 := &yyv4422 - yy4423.CodecEncodeSelf(e) + yy4466 := &yyv4465 + yy4466.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55003,83 +55614,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4424 := *v - yyh4424, yyl4424 := z.DecSliceHelperStart() - var yyc4424 bool - if yyl4424 == 0 { - if yyv4424 == nil { - yyv4424 = []KeyToPath{} - yyc4424 = true - } else if len(yyv4424) != 0 { - yyv4424 = yyv4424[:0] - yyc4424 = true + yyv4467 := *v + yyh4467, yyl4467 := z.DecSliceHelperStart() + var yyc4467 bool + if yyl4467 == 0 { + if yyv4467 == nil { + yyv4467 = []KeyToPath{} + yyc4467 = true + } else if len(yyv4467) != 0 { + yyv4467 = yyv4467[:0] + yyc4467 = true } - } else if yyl4424 > 0 { - var yyrr4424, yyrl4424 int - var yyrt4424 bool - if yyl4424 > cap(yyv4424) { + } else if yyl4467 > 0 { + var yyrr4467, yyrl4467 int + var yyrt4467 bool + if yyl4467 > cap(yyv4467) { - yyrg4424 := len(yyv4424) > 0 - yyv24424 := yyv4424 - yyrl4424, yyrt4424 = z.DecInferLen(yyl4424, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4424 { - if yyrl4424 <= cap(yyv4424) { - yyv4424 = yyv4424[:yyrl4424] + yyrg4467 := len(yyv4467) > 0 + yyv24467 := yyv4467 + yyrl4467, yyrt4467 = z.DecInferLen(yyl4467, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4467 { + if yyrl4467 <= cap(yyv4467) { + yyv4467 = yyv4467[:yyrl4467] } else { - yyv4424 = make([]KeyToPath, yyrl4424) + yyv4467 = make([]KeyToPath, yyrl4467) } } else { - yyv4424 = make([]KeyToPath, yyrl4424) + yyv4467 = make([]KeyToPath, yyrl4467) } - yyc4424 = true - yyrr4424 = len(yyv4424) - if yyrg4424 { - copy(yyv4424, yyv24424) + yyc4467 = true + yyrr4467 = len(yyv4467) + if yyrg4467 { + copy(yyv4467, yyv24467) } - } else if yyl4424 != len(yyv4424) { - yyv4424 = yyv4424[:yyl4424] - yyc4424 = true + } else if yyl4467 != len(yyv4467) { + yyv4467 = yyv4467[:yyl4467] + yyc4467 = true } - yyj4424 := 0 - for ; yyj4424 < yyrr4424; yyj4424++ { - yyh4424.ElemContainerState(yyj4424) + yyj4467 := 0 + for ; yyj4467 < yyrr4467; yyj4467++ { + yyh4467.ElemContainerState(yyj4467) if r.TryDecodeAsNil() { - yyv4424[yyj4424] = KeyToPath{} + yyv4467[yyj4467] = KeyToPath{} } else { - yyv4425 := &yyv4424[yyj4424] - yyv4425.CodecDecodeSelf(d) + yyv4468 := &yyv4467[yyj4467] + yyv4468.CodecDecodeSelf(d) } } - if yyrt4424 { - for ; yyj4424 < yyl4424; yyj4424++ { - yyv4424 = append(yyv4424, KeyToPath{}) - yyh4424.ElemContainerState(yyj4424) + if yyrt4467 { + for ; yyj4467 < yyl4467; yyj4467++ { + yyv4467 = append(yyv4467, KeyToPath{}) + yyh4467.ElemContainerState(yyj4467) if r.TryDecodeAsNil() { - yyv4424[yyj4424] = KeyToPath{} + yyv4467[yyj4467] = KeyToPath{} } else { - yyv4426 := &yyv4424[yyj4424] - yyv4426.CodecDecodeSelf(d) + yyv4469 := &yyv4467[yyj4467] + yyv4469.CodecDecodeSelf(d) } } } } else { - yyj4424 := 0 - for ; !r.CheckBreak(); yyj4424++ { + yyj4467 := 0 + for ; !r.CheckBreak(); yyj4467++ { - if yyj4424 >= len(yyv4424) { - yyv4424 = append(yyv4424, KeyToPath{}) // var yyz4424 KeyToPath - yyc4424 = true + if yyj4467 >= len(yyv4467) { + yyv4467 = append(yyv4467, KeyToPath{}) // var yyz4467 KeyToPath + yyc4467 = true } - yyh4424.ElemContainerState(yyj4424) - if yyj4424 < len(yyv4424) { + yyh4467.ElemContainerState(yyj4467) + if yyj4467 < len(yyv4467) { if r.TryDecodeAsNil() { - yyv4424[yyj4424] = KeyToPath{} + yyv4467[yyj4467] = KeyToPath{} } else { - yyv4427 := &yyv4424[yyj4424] - yyv4427.CodecDecodeSelf(d) + yyv4470 := &yyv4467[yyj4467] + yyv4470.CodecDecodeSelf(d) } } else { @@ -55087,17 +55698,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4424 < len(yyv4424) { - yyv4424 = yyv4424[:yyj4424] - yyc4424 = true - } else if yyj4424 == 0 && yyv4424 == nil { - yyv4424 = []KeyToPath{} - yyc4424 = true + if yyj4467 < len(yyv4467) { + yyv4467 = yyv4467[:yyj4467] + yyc4467 = true + } else if yyj4467 == 0 && yyv4467 == nil { + yyv4467 = []KeyToPath{} + yyc4467 = true } } - yyh4424.End() - if yyc4424 { - *v = yyv4424 + yyh4467.End() + if yyc4467 { + *v = yyv4467 } } @@ -55106,10 +55717,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4428 := range v { + for _, yyv4471 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4429 := &yyv4428 - yy4429.CodecEncodeSelf(e) + yy4472 := &yyv4471 + yy4472.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55119,83 +55730,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4430 := *v - yyh4430, yyl4430 := z.DecSliceHelperStart() - var yyc4430 bool - if yyl4430 == 0 { - if yyv4430 == nil { - yyv4430 = []DownwardAPIVolumeFile{} - yyc4430 = true - } else if len(yyv4430) != 0 { - yyv4430 = yyv4430[:0] - yyc4430 = true + yyv4473 := *v + yyh4473, yyl4473 := z.DecSliceHelperStart() + var yyc4473 bool + if yyl4473 == 0 { + if yyv4473 == nil { + yyv4473 = []DownwardAPIVolumeFile{} + yyc4473 = true + } else if len(yyv4473) != 0 { + yyv4473 = yyv4473[:0] + yyc4473 = true } - } else if yyl4430 > 0 { - var yyrr4430, yyrl4430 int - var yyrt4430 bool - if yyl4430 > cap(yyv4430) { + } else if yyl4473 > 0 { + var yyrr4473, yyrl4473 int + var yyrt4473 bool + if yyl4473 > cap(yyv4473) { - yyrg4430 := len(yyv4430) > 0 - yyv24430 := yyv4430 - yyrl4430, yyrt4430 = z.DecInferLen(yyl4430, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4430 { - if yyrl4430 <= cap(yyv4430) { - yyv4430 = yyv4430[:yyrl4430] + yyrg4473 := len(yyv4473) > 0 + yyv24473 := yyv4473 + yyrl4473, yyrt4473 = z.DecInferLen(yyl4473, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4473 { + if yyrl4473 <= cap(yyv4473) { + yyv4473 = yyv4473[:yyrl4473] } else { - yyv4430 = make([]DownwardAPIVolumeFile, yyrl4430) + yyv4473 = make([]DownwardAPIVolumeFile, yyrl4473) } } else { - yyv4430 = make([]DownwardAPIVolumeFile, yyrl4430) + yyv4473 = make([]DownwardAPIVolumeFile, yyrl4473) } - yyc4430 = true - yyrr4430 = len(yyv4430) - if yyrg4430 { - copy(yyv4430, yyv24430) + yyc4473 = true + yyrr4473 = len(yyv4473) + if yyrg4473 { + copy(yyv4473, yyv24473) } - } else if yyl4430 != len(yyv4430) { - yyv4430 = yyv4430[:yyl4430] - yyc4430 = true + } else if yyl4473 != len(yyv4473) { + yyv4473 = yyv4473[:yyl4473] + yyc4473 = true } - yyj4430 := 0 - for ; yyj4430 < yyrr4430; yyj4430++ { - yyh4430.ElemContainerState(yyj4430) + yyj4473 := 0 + for ; yyj4473 < yyrr4473; yyj4473++ { + yyh4473.ElemContainerState(yyj4473) if r.TryDecodeAsNil() { - yyv4430[yyj4430] = DownwardAPIVolumeFile{} + yyv4473[yyj4473] = DownwardAPIVolumeFile{} } else { - yyv4431 := &yyv4430[yyj4430] - yyv4431.CodecDecodeSelf(d) + yyv4474 := &yyv4473[yyj4473] + yyv4474.CodecDecodeSelf(d) } } - if yyrt4430 { - for ; yyj4430 < yyl4430; yyj4430++ { - yyv4430 = append(yyv4430, DownwardAPIVolumeFile{}) - yyh4430.ElemContainerState(yyj4430) + if yyrt4473 { + for ; yyj4473 < yyl4473; yyj4473++ { + yyv4473 = append(yyv4473, DownwardAPIVolumeFile{}) + yyh4473.ElemContainerState(yyj4473) if r.TryDecodeAsNil() { - yyv4430[yyj4430] = DownwardAPIVolumeFile{} + yyv4473[yyj4473] = DownwardAPIVolumeFile{} } else { - yyv4432 := &yyv4430[yyj4430] - yyv4432.CodecDecodeSelf(d) + yyv4475 := &yyv4473[yyj4473] + yyv4475.CodecDecodeSelf(d) } } } } else { - yyj4430 := 0 - for ; !r.CheckBreak(); yyj4430++ { + yyj4473 := 0 + for ; !r.CheckBreak(); yyj4473++ { - if yyj4430 >= len(yyv4430) { - yyv4430 = append(yyv4430, DownwardAPIVolumeFile{}) // var yyz4430 DownwardAPIVolumeFile - yyc4430 = true + if yyj4473 >= len(yyv4473) { + yyv4473 = append(yyv4473, DownwardAPIVolumeFile{}) // var yyz4473 DownwardAPIVolumeFile + yyc4473 = true } - yyh4430.ElemContainerState(yyj4430) - if yyj4430 < len(yyv4430) { + yyh4473.ElemContainerState(yyj4473) + if yyj4473 < len(yyv4473) { if r.TryDecodeAsNil() { - yyv4430[yyj4430] = DownwardAPIVolumeFile{} + yyv4473[yyj4473] = DownwardAPIVolumeFile{} } else { - yyv4433 := &yyv4430[yyj4430] - yyv4433.CodecDecodeSelf(d) + yyv4476 := &yyv4473[yyj4473] + yyv4476.CodecDecodeSelf(d) } } else { @@ -55203,17 +55814,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4430 < len(yyv4430) { - yyv4430 = yyv4430[:yyj4430] - yyc4430 = true - } else if yyj4430 == 0 && yyv4430 == nil { - yyv4430 = []DownwardAPIVolumeFile{} - yyc4430 = true + if yyj4473 < len(yyv4473) { + yyv4473 = yyv4473[:yyj4473] + yyc4473 = true + } else if yyj4473 == 0 && yyv4473 == nil { + yyv4473 = []DownwardAPIVolumeFile{} + yyc4473 = true } } - yyh4430.End() - if yyc4430 { - *v = yyv4430 + yyh4473.End() + if yyc4473 { + *v = yyv4473 } } @@ -55222,10 +55833,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4434 := range v { + for _, yyv4477 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4435 := &yyv4434 - yy4435.CodecEncodeSelf(e) + yy4478 := &yyv4477 + yy4478.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55235,83 +55846,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4436 := *v - yyh4436, yyl4436 := z.DecSliceHelperStart() - var yyc4436 bool - if yyl4436 == 0 { - if yyv4436 == nil { - yyv4436 = []HTTPHeader{} - yyc4436 = true - } else if len(yyv4436) != 0 { - yyv4436 = yyv4436[:0] - yyc4436 = true + yyv4479 := *v + yyh4479, yyl4479 := z.DecSliceHelperStart() + var yyc4479 bool + if yyl4479 == 0 { + if yyv4479 == nil { + yyv4479 = []HTTPHeader{} + yyc4479 = true + } else if len(yyv4479) != 0 { + yyv4479 = yyv4479[:0] + yyc4479 = true } - } else if yyl4436 > 0 { - var yyrr4436, yyrl4436 int - var yyrt4436 bool - if yyl4436 > cap(yyv4436) { + } else if yyl4479 > 0 { + var yyrr4479, yyrl4479 int + var yyrt4479 bool + if yyl4479 > cap(yyv4479) { - yyrg4436 := len(yyv4436) > 0 - yyv24436 := yyv4436 - yyrl4436, yyrt4436 = z.DecInferLen(yyl4436, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4436 { - if yyrl4436 <= cap(yyv4436) { - yyv4436 = yyv4436[:yyrl4436] + yyrg4479 := len(yyv4479) > 0 + yyv24479 := yyv4479 + yyrl4479, yyrt4479 = z.DecInferLen(yyl4479, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4479 { + if yyrl4479 <= cap(yyv4479) { + yyv4479 = yyv4479[:yyrl4479] } else { - yyv4436 = make([]HTTPHeader, yyrl4436) + yyv4479 = make([]HTTPHeader, yyrl4479) } } else { - yyv4436 = make([]HTTPHeader, yyrl4436) + yyv4479 = make([]HTTPHeader, yyrl4479) } - yyc4436 = true - yyrr4436 = len(yyv4436) - if yyrg4436 { - copy(yyv4436, yyv24436) + yyc4479 = true + yyrr4479 = len(yyv4479) + if yyrg4479 { + copy(yyv4479, yyv24479) } - } else if yyl4436 != len(yyv4436) { - yyv4436 = yyv4436[:yyl4436] - yyc4436 = true + } else if yyl4479 != len(yyv4479) { + yyv4479 = yyv4479[:yyl4479] + yyc4479 = true } - yyj4436 := 0 - for ; yyj4436 < yyrr4436; yyj4436++ { - yyh4436.ElemContainerState(yyj4436) + yyj4479 := 0 + for ; yyj4479 < yyrr4479; yyj4479++ { + yyh4479.ElemContainerState(yyj4479) if r.TryDecodeAsNil() { - yyv4436[yyj4436] = HTTPHeader{} + yyv4479[yyj4479] = HTTPHeader{} } else { - yyv4437 := &yyv4436[yyj4436] - yyv4437.CodecDecodeSelf(d) + yyv4480 := &yyv4479[yyj4479] + yyv4480.CodecDecodeSelf(d) } } - if yyrt4436 { - for ; yyj4436 < yyl4436; yyj4436++ { - yyv4436 = append(yyv4436, HTTPHeader{}) - yyh4436.ElemContainerState(yyj4436) + if yyrt4479 { + for ; yyj4479 < yyl4479; yyj4479++ { + yyv4479 = append(yyv4479, HTTPHeader{}) + yyh4479.ElemContainerState(yyj4479) if r.TryDecodeAsNil() { - yyv4436[yyj4436] = HTTPHeader{} + yyv4479[yyj4479] = HTTPHeader{} } else { - yyv4438 := &yyv4436[yyj4436] - yyv4438.CodecDecodeSelf(d) + yyv4481 := &yyv4479[yyj4479] + yyv4481.CodecDecodeSelf(d) } } } } else { - yyj4436 := 0 - for ; !r.CheckBreak(); yyj4436++ { + yyj4479 := 0 + for ; !r.CheckBreak(); yyj4479++ { - if yyj4436 >= len(yyv4436) { - yyv4436 = append(yyv4436, HTTPHeader{}) // var yyz4436 HTTPHeader - yyc4436 = true + if yyj4479 >= len(yyv4479) { + yyv4479 = append(yyv4479, HTTPHeader{}) // var yyz4479 HTTPHeader + yyc4479 = true } - yyh4436.ElemContainerState(yyj4436) - if yyj4436 < len(yyv4436) { + yyh4479.ElemContainerState(yyj4479) + if yyj4479 < len(yyv4479) { if r.TryDecodeAsNil() { - yyv4436[yyj4436] = HTTPHeader{} + yyv4479[yyj4479] = HTTPHeader{} } else { - yyv4439 := &yyv4436[yyj4436] - yyv4439.CodecDecodeSelf(d) + yyv4482 := &yyv4479[yyj4479] + yyv4482.CodecDecodeSelf(d) } } else { @@ -55319,17 +55930,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4436 < len(yyv4436) { - yyv4436 = yyv4436[:yyj4436] - yyc4436 = true - } else if yyj4436 == 0 && yyv4436 == nil { - yyv4436 = []HTTPHeader{} - yyc4436 = true + if yyj4479 < len(yyv4479) { + yyv4479 = yyv4479[:yyj4479] + yyc4479 = true + } else if yyj4479 == 0 && yyv4479 == nil { + yyv4479 = []HTTPHeader{} + yyc4479 = true } } - yyh4436.End() - if yyc4436 { - *v = yyv4436 + yyh4479.End() + if yyc4479 { + *v = yyv4479 } } @@ -55338,9 +55949,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4440 := range v { + for _, yyv4483 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4440.CodecEncodeSelf(e) + yyv4483.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55350,75 +55961,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4441 := *v - yyh4441, yyl4441 := z.DecSliceHelperStart() - var yyc4441 bool - if yyl4441 == 0 { - if yyv4441 == nil { - yyv4441 = []Capability{} - yyc4441 = true - } else if len(yyv4441) != 0 { - yyv4441 = yyv4441[:0] - yyc4441 = true + yyv4484 := *v + yyh4484, yyl4484 := z.DecSliceHelperStart() + var yyc4484 bool + if yyl4484 == 0 { + if yyv4484 == nil { + yyv4484 = []Capability{} + yyc4484 = true + } else if len(yyv4484) != 0 { + yyv4484 = yyv4484[:0] + yyc4484 = true } - } else if yyl4441 > 0 { - var yyrr4441, yyrl4441 int - var yyrt4441 bool - if yyl4441 > cap(yyv4441) { + } else if yyl4484 > 0 { + var yyrr4484, yyrl4484 int + var yyrt4484 bool + if yyl4484 > cap(yyv4484) { - yyrl4441, yyrt4441 = z.DecInferLen(yyl4441, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4441 { - if yyrl4441 <= cap(yyv4441) { - yyv4441 = yyv4441[:yyrl4441] + yyrl4484, yyrt4484 = z.DecInferLen(yyl4484, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4484 { + if yyrl4484 <= cap(yyv4484) { + yyv4484 = yyv4484[:yyrl4484] } else { - yyv4441 = make([]Capability, yyrl4441) + yyv4484 = make([]Capability, yyrl4484) } } else { - yyv4441 = make([]Capability, yyrl4441) + yyv4484 = make([]Capability, yyrl4484) } - yyc4441 = true - yyrr4441 = len(yyv4441) - } else if yyl4441 != len(yyv4441) { - yyv4441 = yyv4441[:yyl4441] - yyc4441 = true + yyc4484 = true + yyrr4484 = len(yyv4484) + } else if yyl4484 != len(yyv4484) { + yyv4484 = yyv4484[:yyl4484] + yyc4484 = true } - yyj4441 := 0 - for ; yyj4441 < yyrr4441; yyj4441++ { - yyh4441.ElemContainerState(yyj4441) + yyj4484 := 0 + for ; yyj4484 < yyrr4484; yyj4484++ { + yyh4484.ElemContainerState(yyj4484) if r.TryDecodeAsNil() { - yyv4441[yyj4441] = "" + yyv4484[yyj4484] = "" } else { - yyv4441[yyj4441] = Capability(r.DecodeString()) + yyv4484[yyj4484] = Capability(r.DecodeString()) } } - if yyrt4441 { - for ; yyj4441 < yyl4441; yyj4441++ { - yyv4441 = append(yyv4441, "") - yyh4441.ElemContainerState(yyj4441) + if yyrt4484 { + for ; yyj4484 < yyl4484; yyj4484++ { + yyv4484 = append(yyv4484, "") + yyh4484.ElemContainerState(yyj4484) if r.TryDecodeAsNil() { - yyv4441[yyj4441] = "" + yyv4484[yyj4484] = "" } else { - yyv4441[yyj4441] = Capability(r.DecodeString()) + yyv4484[yyj4484] = Capability(r.DecodeString()) } } } } else { - yyj4441 := 0 - for ; !r.CheckBreak(); yyj4441++ { + yyj4484 := 0 + for ; !r.CheckBreak(); yyj4484++ { - if yyj4441 >= len(yyv4441) { - yyv4441 = append(yyv4441, "") // var yyz4441 Capability - yyc4441 = true + if yyj4484 >= len(yyv4484) { + yyv4484 = append(yyv4484, "") // var yyz4484 Capability + yyc4484 = true } - yyh4441.ElemContainerState(yyj4441) - if yyj4441 < len(yyv4441) { + yyh4484.ElemContainerState(yyj4484) + if yyj4484 < len(yyv4484) { if r.TryDecodeAsNil() { - yyv4441[yyj4441] = "" + yyv4484[yyj4484] = "" } else { - yyv4441[yyj4441] = Capability(r.DecodeString()) + yyv4484[yyj4484] = Capability(r.DecodeString()) } } else { @@ -55426,17 +56037,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4441 < len(yyv4441) { - yyv4441 = yyv4441[:yyj4441] - yyc4441 = true - } else if yyj4441 == 0 && yyv4441 == nil { - yyv4441 = []Capability{} - yyc4441 = true + if yyj4484 < len(yyv4484) { + yyv4484 = yyv4484[:yyj4484] + yyc4484 = true + } else if yyj4484 == 0 && yyv4484 == nil { + yyv4484 = []Capability{} + yyc4484 = true } } - yyh4441.End() - if yyc4441 { - *v = yyv4441 + yyh4484.End() + if yyc4484 { + *v = yyv4484 } } @@ -55445,10 +56056,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4445 := range v { + for _, yyv4488 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4446 := &yyv4445 - yy4446.CodecEncodeSelf(e) + yy4489 := &yyv4488 + yy4489.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55458,83 +56069,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4447 := *v - yyh4447, yyl4447 := z.DecSliceHelperStart() - var yyc4447 bool - if yyl4447 == 0 { - if yyv4447 == nil { - yyv4447 = []ContainerPort{} - yyc4447 = true - } else if len(yyv4447) != 0 { - yyv4447 = yyv4447[:0] - yyc4447 = true + yyv4490 := *v + yyh4490, yyl4490 := z.DecSliceHelperStart() + var yyc4490 bool + if yyl4490 == 0 { + if yyv4490 == nil { + yyv4490 = []ContainerPort{} + yyc4490 = true + } else if len(yyv4490) != 0 { + yyv4490 = yyv4490[:0] + yyc4490 = true } - } else if yyl4447 > 0 { - var yyrr4447, yyrl4447 int - var yyrt4447 bool - if yyl4447 > cap(yyv4447) { + } else if yyl4490 > 0 { + var yyrr4490, yyrl4490 int + var yyrt4490 bool + if yyl4490 > cap(yyv4490) { - yyrg4447 := len(yyv4447) > 0 - yyv24447 := yyv4447 - yyrl4447, yyrt4447 = z.DecInferLen(yyl4447, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4447 { - if yyrl4447 <= cap(yyv4447) { - yyv4447 = yyv4447[:yyrl4447] + yyrg4490 := len(yyv4490) > 0 + yyv24490 := yyv4490 + yyrl4490, yyrt4490 = z.DecInferLen(yyl4490, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4490 { + if yyrl4490 <= cap(yyv4490) { + yyv4490 = yyv4490[:yyrl4490] } else { - yyv4447 = make([]ContainerPort, yyrl4447) + yyv4490 = make([]ContainerPort, yyrl4490) } } else { - yyv4447 = make([]ContainerPort, yyrl4447) + yyv4490 = make([]ContainerPort, yyrl4490) } - yyc4447 = true - yyrr4447 = len(yyv4447) - if yyrg4447 { - copy(yyv4447, yyv24447) + yyc4490 = true + yyrr4490 = len(yyv4490) + if yyrg4490 { + copy(yyv4490, yyv24490) } - } else if yyl4447 != len(yyv4447) { - yyv4447 = yyv4447[:yyl4447] - yyc4447 = true + } else if yyl4490 != len(yyv4490) { + yyv4490 = yyv4490[:yyl4490] + yyc4490 = true } - yyj4447 := 0 - for ; yyj4447 < yyrr4447; yyj4447++ { - yyh4447.ElemContainerState(yyj4447) + yyj4490 := 0 + for ; yyj4490 < yyrr4490; yyj4490++ { + yyh4490.ElemContainerState(yyj4490) if r.TryDecodeAsNil() { - yyv4447[yyj4447] = ContainerPort{} + yyv4490[yyj4490] = ContainerPort{} } else { - yyv4448 := &yyv4447[yyj4447] - yyv4448.CodecDecodeSelf(d) + yyv4491 := &yyv4490[yyj4490] + yyv4491.CodecDecodeSelf(d) } } - if yyrt4447 { - for ; yyj4447 < yyl4447; yyj4447++ { - yyv4447 = append(yyv4447, ContainerPort{}) - yyh4447.ElemContainerState(yyj4447) + if yyrt4490 { + for ; yyj4490 < yyl4490; yyj4490++ { + yyv4490 = append(yyv4490, ContainerPort{}) + yyh4490.ElemContainerState(yyj4490) if r.TryDecodeAsNil() { - yyv4447[yyj4447] = ContainerPort{} + yyv4490[yyj4490] = ContainerPort{} } else { - yyv4449 := &yyv4447[yyj4447] - yyv4449.CodecDecodeSelf(d) + yyv4492 := &yyv4490[yyj4490] + yyv4492.CodecDecodeSelf(d) } } } } else { - yyj4447 := 0 - for ; !r.CheckBreak(); yyj4447++ { + yyj4490 := 0 + for ; !r.CheckBreak(); yyj4490++ { - if yyj4447 >= len(yyv4447) { - yyv4447 = append(yyv4447, ContainerPort{}) // var yyz4447 ContainerPort - yyc4447 = true + if yyj4490 >= len(yyv4490) { + yyv4490 = append(yyv4490, ContainerPort{}) // var yyz4490 ContainerPort + yyc4490 = true } - yyh4447.ElemContainerState(yyj4447) - if yyj4447 < len(yyv4447) { + yyh4490.ElemContainerState(yyj4490) + if yyj4490 < len(yyv4490) { if r.TryDecodeAsNil() { - yyv4447[yyj4447] = ContainerPort{} + yyv4490[yyj4490] = ContainerPort{} } else { - yyv4450 := &yyv4447[yyj4447] - yyv4450.CodecDecodeSelf(d) + yyv4493 := &yyv4490[yyj4490] + yyv4493.CodecDecodeSelf(d) } } else { @@ -55542,17 +56153,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4447 < len(yyv4447) { - yyv4447 = yyv4447[:yyj4447] - yyc4447 = true - } else if yyj4447 == 0 && yyv4447 == nil { - yyv4447 = []ContainerPort{} - yyc4447 = true + if yyj4490 < len(yyv4490) { + yyv4490 = yyv4490[:yyj4490] + yyc4490 = true + } else if yyj4490 == 0 && yyv4490 == nil { + yyv4490 = []ContainerPort{} + yyc4490 = true } } - yyh4447.End() - if yyc4447 { - *v = yyv4447 + yyh4490.End() + if yyc4490 { + *v = yyv4490 } } @@ -55561,10 +56172,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4451 := range v { + for _, yyv4494 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4452 := &yyv4451 - yy4452.CodecEncodeSelf(e) + yy4495 := &yyv4494 + yy4495.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55574,83 +56185,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4453 := *v - yyh4453, yyl4453 := z.DecSliceHelperStart() - var yyc4453 bool - if yyl4453 == 0 { - if yyv4453 == nil { - yyv4453 = []EnvVar{} - yyc4453 = true - } else if len(yyv4453) != 0 { - yyv4453 = yyv4453[:0] - yyc4453 = true + yyv4496 := *v + yyh4496, yyl4496 := z.DecSliceHelperStart() + var yyc4496 bool + if yyl4496 == 0 { + if yyv4496 == nil { + yyv4496 = []EnvVar{} + yyc4496 = true + } else if len(yyv4496) != 0 { + yyv4496 = yyv4496[:0] + yyc4496 = true } - } else if yyl4453 > 0 { - var yyrr4453, yyrl4453 int - var yyrt4453 bool - if yyl4453 > cap(yyv4453) { + } else if yyl4496 > 0 { + var yyrr4496, yyrl4496 int + var yyrt4496 bool + if yyl4496 > cap(yyv4496) { - yyrg4453 := len(yyv4453) > 0 - yyv24453 := yyv4453 - yyrl4453, yyrt4453 = z.DecInferLen(yyl4453, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4453 { - if yyrl4453 <= cap(yyv4453) { - yyv4453 = yyv4453[:yyrl4453] + yyrg4496 := len(yyv4496) > 0 + yyv24496 := yyv4496 + yyrl4496, yyrt4496 = z.DecInferLen(yyl4496, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4496 { + if yyrl4496 <= cap(yyv4496) { + yyv4496 = yyv4496[:yyrl4496] } else { - yyv4453 = make([]EnvVar, yyrl4453) + yyv4496 = make([]EnvVar, yyrl4496) } } else { - yyv4453 = make([]EnvVar, yyrl4453) + yyv4496 = make([]EnvVar, yyrl4496) } - yyc4453 = true - yyrr4453 = len(yyv4453) - if yyrg4453 { - copy(yyv4453, yyv24453) + yyc4496 = true + yyrr4496 = len(yyv4496) + if yyrg4496 { + copy(yyv4496, yyv24496) } - } else if yyl4453 != len(yyv4453) { - yyv4453 = yyv4453[:yyl4453] - yyc4453 = true + } else if yyl4496 != len(yyv4496) { + yyv4496 = yyv4496[:yyl4496] + yyc4496 = true } - yyj4453 := 0 - for ; yyj4453 < yyrr4453; yyj4453++ { - yyh4453.ElemContainerState(yyj4453) + yyj4496 := 0 + for ; yyj4496 < yyrr4496; yyj4496++ { + yyh4496.ElemContainerState(yyj4496) if r.TryDecodeAsNil() { - yyv4453[yyj4453] = EnvVar{} + yyv4496[yyj4496] = EnvVar{} } else { - yyv4454 := &yyv4453[yyj4453] - yyv4454.CodecDecodeSelf(d) + yyv4497 := &yyv4496[yyj4496] + yyv4497.CodecDecodeSelf(d) } } - if yyrt4453 { - for ; yyj4453 < yyl4453; yyj4453++ { - yyv4453 = append(yyv4453, EnvVar{}) - yyh4453.ElemContainerState(yyj4453) + if yyrt4496 { + for ; yyj4496 < yyl4496; yyj4496++ { + yyv4496 = append(yyv4496, EnvVar{}) + yyh4496.ElemContainerState(yyj4496) if r.TryDecodeAsNil() { - yyv4453[yyj4453] = EnvVar{} + yyv4496[yyj4496] = EnvVar{} } else { - yyv4455 := &yyv4453[yyj4453] - yyv4455.CodecDecodeSelf(d) + yyv4498 := &yyv4496[yyj4496] + yyv4498.CodecDecodeSelf(d) } } } } else { - yyj4453 := 0 - for ; !r.CheckBreak(); yyj4453++ { + yyj4496 := 0 + for ; !r.CheckBreak(); yyj4496++ { - if yyj4453 >= len(yyv4453) { - yyv4453 = append(yyv4453, EnvVar{}) // var yyz4453 EnvVar - yyc4453 = true + if yyj4496 >= len(yyv4496) { + yyv4496 = append(yyv4496, EnvVar{}) // var yyz4496 EnvVar + yyc4496 = true } - yyh4453.ElemContainerState(yyj4453) - if yyj4453 < len(yyv4453) { + yyh4496.ElemContainerState(yyj4496) + if yyj4496 < len(yyv4496) { if r.TryDecodeAsNil() { - yyv4453[yyj4453] = EnvVar{} + yyv4496[yyj4496] = EnvVar{} } else { - yyv4456 := &yyv4453[yyj4453] - yyv4456.CodecDecodeSelf(d) + yyv4499 := &yyv4496[yyj4496] + yyv4499.CodecDecodeSelf(d) } } else { @@ -55658,17 +56269,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4453 < len(yyv4453) { - yyv4453 = yyv4453[:yyj4453] - yyc4453 = true - } else if yyj4453 == 0 && yyv4453 == nil { - yyv4453 = []EnvVar{} - yyc4453 = true + if yyj4496 < len(yyv4496) { + yyv4496 = yyv4496[:yyj4496] + yyc4496 = true + } else if yyj4496 == 0 && yyv4496 == nil { + yyv4496 = []EnvVar{} + yyc4496 = true } } - yyh4453.End() - if yyc4453 { - *v = yyv4453 + yyh4496.End() + if yyc4496 { + *v = yyv4496 } } @@ -55677,10 +56288,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4457 := range v { + for _, yyv4500 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4458 := &yyv4457 - yy4458.CodecEncodeSelf(e) + yy4501 := &yyv4500 + yy4501.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55690,83 +56301,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4459 := *v - yyh4459, yyl4459 := z.DecSliceHelperStart() - var yyc4459 bool - if yyl4459 == 0 { - if yyv4459 == nil { - yyv4459 = []VolumeMount{} - yyc4459 = true - } else if len(yyv4459) != 0 { - yyv4459 = yyv4459[:0] - yyc4459 = true + yyv4502 := *v + yyh4502, yyl4502 := z.DecSliceHelperStart() + var yyc4502 bool + if yyl4502 == 0 { + if yyv4502 == nil { + yyv4502 = []VolumeMount{} + yyc4502 = true + } else if len(yyv4502) != 0 { + yyv4502 = yyv4502[:0] + yyc4502 = true } - } else if yyl4459 > 0 { - var yyrr4459, yyrl4459 int - var yyrt4459 bool - if yyl4459 > cap(yyv4459) { + } else if yyl4502 > 0 { + var yyrr4502, yyrl4502 int + var yyrt4502 bool + if yyl4502 > cap(yyv4502) { - yyrg4459 := len(yyv4459) > 0 - yyv24459 := yyv4459 - yyrl4459, yyrt4459 = z.DecInferLen(yyl4459, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4459 { - if yyrl4459 <= cap(yyv4459) { - yyv4459 = yyv4459[:yyrl4459] + yyrg4502 := len(yyv4502) > 0 + yyv24502 := yyv4502 + yyrl4502, yyrt4502 = z.DecInferLen(yyl4502, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4502 { + if yyrl4502 <= cap(yyv4502) { + yyv4502 = yyv4502[:yyrl4502] } else { - yyv4459 = make([]VolumeMount, yyrl4459) + yyv4502 = make([]VolumeMount, yyrl4502) } } else { - yyv4459 = make([]VolumeMount, yyrl4459) + yyv4502 = make([]VolumeMount, yyrl4502) } - yyc4459 = true - yyrr4459 = len(yyv4459) - if yyrg4459 { - copy(yyv4459, yyv24459) + yyc4502 = true + yyrr4502 = len(yyv4502) + if yyrg4502 { + copy(yyv4502, yyv24502) } - } else if yyl4459 != len(yyv4459) { - yyv4459 = yyv4459[:yyl4459] - yyc4459 = true + } else if yyl4502 != len(yyv4502) { + yyv4502 = yyv4502[:yyl4502] + yyc4502 = true } - yyj4459 := 0 - for ; yyj4459 < yyrr4459; yyj4459++ { - yyh4459.ElemContainerState(yyj4459) + yyj4502 := 0 + for ; yyj4502 < yyrr4502; yyj4502++ { + yyh4502.ElemContainerState(yyj4502) if r.TryDecodeAsNil() { - yyv4459[yyj4459] = VolumeMount{} + yyv4502[yyj4502] = VolumeMount{} } else { - yyv4460 := &yyv4459[yyj4459] - yyv4460.CodecDecodeSelf(d) + yyv4503 := &yyv4502[yyj4502] + yyv4503.CodecDecodeSelf(d) } } - if yyrt4459 { - for ; yyj4459 < yyl4459; yyj4459++ { - yyv4459 = append(yyv4459, VolumeMount{}) - yyh4459.ElemContainerState(yyj4459) + if yyrt4502 { + for ; yyj4502 < yyl4502; yyj4502++ { + yyv4502 = append(yyv4502, VolumeMount{}) + yyh4502.ElemContainerState(yyj4502) if r.TryDecodeAsNil() { - yyv4459[yyj4459] = VolumeMount{} + yyv4502[yyj4502] = VolumeMount{} } else { - yyv4461 := &yyv4459[yyj4459] - yyv4461.CodecDecodeSelf(d) + yyv4504 := &yyv4502[yyj4502] + yyv4504.CodecDecodeSelf(d) } } } } else { - yyj4459 := 0 - for ; !r.CheckBreak(); yyj4459++ { + yyj4502 := 0 + for ; !r.CheckBreak(); yyj4502++ { - if yyj4459 >= len(yyv4459) { - yyv4459 = append(yyv4459, VolumeMount{}) // var yyz4459 VolumeMount - yyc4459 = true + if yyj4502 >= len(yyv4502) { + yyv4502 = append(yyv4502, VolumeMount{}) // var yyz4502 VolumeMount + yyc4502 = true } - yyh4459.ElemContainerState(yyj4459) - if yyj4459 < len(yyv4459) { + yyh4502.ElemContainerState(yyj4502) + if yyj4502 < len(yyv4502) { if r.TryDecodeAsNil() { - yyv4459[yyj4459] = VolumeMount{} + yyv4502[yyj4502] = VolumeMount{} } else { - yyv4462 := &yyv4459[yyj4459] - yyv4462.CodecDecodeSelf(d) + yyv4505 := &yyv4502[yyj4502] + yyv4505.CodecDecodeSelf(d) } } else { @@ -55774,17 +56385,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4459 < len(yyv4459) { - yyv4459 = yyv4459[:yyj4459] - yyc4459 = true - } else if yyj4459 == 0 && yyv4459 == nil { - yyv4459 = []VolumeMount{} - yyc4459 = true + if yyj4502 < len(yyv4502) { + yyv4502 = yyv4502[:yyj4502] + yyc4502 = true + } else if yyj4502 == 0 && yyv4502 == nil { + yyv4502 = []VolumeMount{} + yyc4502 = true } } - yyh4459.End() - if yyc4459 { - *v = yyv4459 + yyh4502.End() + if yyc4502 { + *v = yyv4502 } } @@ -55793,10 +56404,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4463 := range v { + for _, yyv4506 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4464 := &yyv4463 - yy4464.CodecEncodeSelf(e) + yy4507 := &yyv4506 + yy4507.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55806,83 +56417,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4465 := *v - yyh4465, yyl4465 := z.DecSliceHelperStart() - var yyc4465 bool - if yyl4465 == 0 { - if yyv4465 == nil { - yyv4465 = []Pod{} - yyc4465 = true - } else if len(yyv4465) != 0 { - yyv4465 = yyv4465[:0] - yyc4465 = true + yyv4508 := *v + yyh4508, yyl4508 := z.DecSliceHelperStart() + var yyc4508 bool + if yyl4508 == 0 { + if yyv4508 == nil { + yyv4508 = []Pod{} + yyc4508 = true + } else if len(yyv4508) != 0 { + yyv4508 = yyv4508[:0] + yyc4508 = true } - } else if yyl4465 > 0 { - var yyrr4465, yyrl4465 int - var yyrt4465 bool - if yyl4465 > cap(yyv4465) { + } else if yyl4508 > 0 { + var yyrr4508, yyrl4508 int + var yyrt4508 bool + if yyl4508 > cap(yyv4508) { - yyrg4465 := len(yyv4465) > 0 - yyv24465 := yyv4465 - yyrl4465, yyrt4465 = z.DecInferLen(yyl4465, z.DecBasicHandle().MaxInitLen, 624) - if yyrt4465 { - if yyrl4465 <= cap(yyv4465) { - yyv4465 = yyv4465[:yyrl4465] + yyrg4508 := len(yyv4508) > 0 + yyv24508 := yyv4508 + yyrl4508, yyrt4508 = z.DecInferLen(yyl4508, z.DecBasicHandle().MaxInitLen, 624) + if yyrt4508 { + if yyrl4508 <= cap(yyv4508) { + yyv4508 = yyv4508[:yyrl4508] } else { - yyv4465 = make([]Pod, yyrl4465) + yyv4508 = make([]Pod, yyrl4508) } } else { - yyv4465 = make([]Pod, yyrl4465) + yyv4508 = make([]Pod, yyrl4508) } - yyc4465 = true - yyrr4465 = len(yyv4465) - if yyrg4465 { - copy(yyv4465, yyv24465) + yyc4508 = true + yyrr4508 = len(yyv4508) + if yyrg4508 { + copy(yyv4508, yyv24508) } - } else if yyl4465 != len(yyv4465) { - yyv4465 = yyv4465[:yyl4465] - yyc4465 = true + } else if yyl4508 != len(yyv4508) { + yyv4508 = yyv4508[:yyl4508] + yyc4508 = true } - yyj4465 := 0 - for ; yyj4465 < yyrr4465; yyj4465++ { - yyh4465.ElemContainerState(yyj4465) + yyj4508 := 0 + for ; yyj4508 < yyrr4508; yyj4508++ { + yyh4508.ElemContainerState(yyj4508) if r.TryDecodeAsNil() { - yyv4465[yyj4465] = Pod{} + yyv4508[yyj4508] = Pod{} } else { - yyv4466 := &yyv4465[yyj4465] - yyv4466.CodecDecodeSelf(d) + yyv4509 := &yyv4508[yyj4508] + yyv4509.CodecDecodeSelf(d) } } - if yyrt4465 { - for ; yyj4465 < yyl4465; yyj4465++ { - yyv4465 = append(yyv4465, Pod{}) - yyh4465.ElemContainerState(yyj4465) + if yyrt4508 { + for ; yyj4508 < yyl4508; yyj4508++ { + yyv4508 = append(yyv4508, Pod{}) + yyh4508.ElemContainerState(yyj4508) if r.TryDecodeAsNil() { - yyv4465[yyj4465] = Pod{} + yyv4508[yyj4508] = Pod{} } else { - yyv4467 := &yyv4465[yyj4465] - yyv4467.CodecDecodeSelf(d) + yyv4510 := &yyv4508[yyj4508] + yyv4510.CodecDecodeSelf(d) } } } } else { - yyj4465 := 0 - for ; !r.CheckBreak(); yyj4465++ { + yyj4508 := 0 + for ; !r.CheckBreak(); yyj4508++ { - if yyj4465 >= len(yyv4465) { - yyv4465 = append(yyv4465, Pod{}) // var yyz4465 Pod - yyc4465 = true + if yyj4508 >= len(yyv4508) { + yyv4508 = append(yyv4508, Pod{}) // var yyz4508 Pod + yyc4508 = true } - yyh4465.ElemContainerState(yyj4465) - if yyj4465 < len(yyv4465) { + yyh4508.ElemContainerState(yyj4508) + if yyj4508 < len(yyv4508) { if r.TryDecodeAsNil() { - yyv4465[yyj4465] = Pod{} + yyv4508[yyj4508] = Pod{} } else { - yyv4468 := &yyv4465[yyj4465] - yyv4468.CodecDecodeSelf(d) + yyv4511 := &yyv4508[yyj4508] + yyv4511.CodecDecodeSelf(d) } } else { @@ -55890,17 +56501,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4465 < len(yyv4465) { - yyv4465 = yyv4465[:yyj4465] - yyc4465 = true - } else if yyj4465 == 0 && yyv4465 == nil { - yyv4465 = []Pod{} - yyc4465 = true + if yyj4508 < len(yyv4508) { + yyv4508 = yyv4508[:yyj4508] + yyc4508 = true + } else if yyj4508 == 0 && yyv4508 == nil { + yyv4508 = []Pod{} + yyc4508 = true } } - yyh4465.End() - if yyc4465 { - *v = yyv4465 + yyh4508.End() + if yyc4508 { + *v = yyv4508 } } @@ -55909,10 +56520,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4469 := range v { + for _, yyv4512 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4470 := &yyv4469 - yy4470.CodecEncodeSelf(e) + yy4513 := &yyv4512 + yy4513.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55922,83 +56533,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4471 := *v - yyh4471, yyl4471 := z.DecSliceHelperStart() - var yyc4471 bool - if yyl4471 == 0 { - if yyv4471 == nil { - yyv4471 = []NodeSelectorTerm{} - yyc4471 = true - } else if len(yyv4471) != 0 { - yyv4471 = yyv4471[:0] - yyc4471 = true + yyv4514 := *v + yyh4514, yyl4514 := z.DecSliceHelperStart() + var yyc4514 bool + if yyl4514 == 0 { + if yyv4514 == nil { + yyv4514 = []NodeSelectorTerm{} + yyc4514 = true + } else if len(yyv4514) != 0 { + yyv4514 = yyv4514[:0] + yyc4514 = true } - } else if yyl4471 > 0 { - var yyrr4471, yyrl4471 int - var yyrt4471 bool - if yyl4471 > cap(yyv4471) { + } else if yyl4514 > 0 { + var yyrr4514, yyrl4514 int + var yyrt4514 bool + if yyl4514 > cap(yyv4514) { - yyrg4471 := len(yyv4471) > 0 - yyv24471 := yyv4471 - yyrl4471, yyrt4471 = z.DecInferLen(yyl4471, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4471 { - if yyrl4471 <= cap(yyv4471) { - yyv4471 = yyv4471[:yyrl4471] + yyrg4514 := len(yyv4514) > 0 + yyv24514 := yyv4514 + yyrl4514, yyrt4514 = z.DecInferLen(yyl4514, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4514 { + if yyrl4514 <= cap(yyv4514) { + yyv4514 = yyv4514[:yyrl4514] } else { - yyv4471 = make([]NodeSelectorTerm, yyrl4471) + yyv4514 = make([]NodeSelectorTerm, yyrl4514) } } else { - yyv4471 = make([]NodeSelectorTerm, yyrl4471) + yyv4514 = make([]NodeSelectorTerm, yyrl4514) } - yyc4471 = true - yyrr4471 = len(yyv4471) - if yyrg4471 { - copy(yyv4471, yyv24471) + yyc4514 = true + yyrr4514 = len(yyv4514) + if yyrg4514 { + copy(yyv4514, yyv24514) } - } else if yyl4471 != len(yyv4471) { - yyv4471 = yyv4471[:yyl4471] - yyc4471 = true + } else if yyl4514 != len(yyv4514) { + yyv4514 = yyv4514[:yyl4514] + yyc4514 = true } - yyj4471 := 0 - for ; yyj4471 < yyrr4471; yyj4471++ { - yyh4471.ElemContainerState(yyj4471) + yyj4514 := 0 + for ; yyj4514 < yyrr4514; yyj4514++ { + yyh4514.ElemContainerState(yyj4514) if r.TryDecodeAsNil() { - yyv4471[yyj4471] = NodeSelectorTerm{} + yyv4514[yyj4514] = NodeSelectorTerm{} } else { - yyv4472 := &yyv4471[yyj4471] - yyv4472.CodecDecodeSelf(d) + yyv4515 := &yyv4514[yyj4514] + yyv4515.CodecDecodeSelf(d) } } - if yyrt4471 { - for ; yyj4471 < yyl4471; yyj4471++ { - yyv4471 = append(yyv4471, NodeSelectorTerm{}) - yyh4471.ElemContainerState(yyj4471) + if yyrt4514 { + for ; yyj4514 < yyl4514; yyj4514++ { + yyv4514 = append(yyv4514, NodeSelectorTerm{}) + yyh4514.ElemContainerState(yyj4514) if r.TryDecodeAsNil() { - yyv4471[yyj4471] = NodeSelectorTerm{} + yyv4514[yyj4514] = NodeSelectorTerm{} } else { - yyv4473 := &yyv4471[yyj4471] - yyv4473.CodecDecodeSelf(d) + yyv4516 := &yyv4514[yyj4514] + yyv4516.CodecDecodeSelf(d) } } } } else { - yyj4471 := 0 - for ; !r.CheckBreak(); yyj4471++ { + yyj4514 := 0 + for ; !r.CheckBreak(); yyj4514++ { - if yyj4471 >= len(yyv4471) { - yyv4471 = append(yyv4471, NodeSelectorTerm{}) // var yyz4471 NodeSelectorTerm - yyc4471 = true + if yyj4514 >= len(yyv4514) { + yyv4514 = append(yyv4514, NodeSelectorTerm{}) // var yyz4514 NodeSelectorTerm + yyc4514 = true } - yyh4471.ElemContainerState(yyj4471) - if yyj4471 < len(yyv4471) { + yyh4514.ElemContainerState(yyj4514) + if yyj4514 < len(yyv4514) { if r.TryDecodeAsNil() { - yyv4471[yyj4471] = NodeSelectorTerm{} + yyv4514[yyj4514] = NodeSelectorTerm{} } else { - yyv4474 := &yyv4471[yyj4471] - yyv4474.CodecDecodeSelf(d) + yyv4517 := &yyv4514[yyj4514] + yyv4517.CodecDecodeSelf(d) } } else { @@ -56006,17 +56617,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4471 < len(yyv4471) { - yyv4471 = yyv4471[:yyj4471] - yyc4471 = true - } else if yyj4471 == 0 && yyv4471 == nil { - yyv4471 = []NodeSelectorTerm{} - yyc4471 = true + if yyj4514 < len(yyv4514) { + yyv4514 = yyv4514[:yyj4514] + yyc4514 = true + } else if yyj4514 == 0 && yyv4514 == nil { + yyv4514 = []NodeSelectorTerm{} + yyc4514 = true } } - yyh4471.End() - if yyc4471 { - *v = yyv4471 + yyh4514.End() + if yyc4514 { + *v = yyv4514 } } @@ -56025,10 +56636,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4475 := range v { + for _, yyv4518 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4476 := &yyv4475 - yy4476.CodecEncodeSelf(e) + yy4519 := &yyv4518 + yy4519.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56038,83 +56649,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4477 := *v - yyh4477, yyl4477 := z.DecSliceHelperStart() - var yyc4477 bool - if yyl4477 == 0 { - if yyv4477 == nil { - yyv4477 = []NodeSelectorRequirement{} - yyc4477 = true - } else if len(yyv4477) != 0 { - yyv4477 = yyv4477[:0] - yyc4477 = true + yyv4520 := *v + yyh4520, yyl4520 := z.DecSliceHelperStart() + var yyc4520 bool + if yyl4520 == 0 { + if yyv4520 == nil { + yyv4520 = []NodeSelectorRequirement{} + yyc4520 = true + } else if len(yyv4520) != 0 { + yyv4520 = yyv4520[:0] + yyc4520 = true } - } else if yyl4477 > 0 { - var yyrr4477, yyrl4477 int - var yyrt4477 bool - if yyl4477 > cap(yyv4477) { + } else if yyl4520 > 0 { + var yyrr4520, yyrl4520 int + var yyrt4520 bool + if yyl4520 > cap(yyv4520) { - yyrg4477 := len(yyv4477) > 0 - yyv24477 := yyv4477 - yyrl4477, yyrt4477 = z.DecInferLen(yyl4477, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4477 { - if yyrl4477 <= cap(yyv4477) { - yyv4477 = yyv4477[:yyrl4477] + yyrg4520 := len(yyv4520) > 0 + yyv24520 := yyv4520 + yyrl4520, yyrt4520 = z.DecInferLen(yyl4520, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4520 { + if yyrl4520 <= cap(yyv4520) { + yyv4520 = yyv4520[:yyrl4520] } else { - yyv4477 = make([]NodeSelectorRequirement, yyrl4477) + yyv4520 = make([]NodeSelectorRequirement, yyrl4520) } } else { - yyv4477 = make([]NodeSelectorRequirement, yyrl4477) + yyv4520 = make([]NodeSelectorRequirement, yyrl4520) } - yyc4477 = true - yyrr4477 = len(yyv4477) - if yyrg4477 { - copy(yyv4477, yyv24477) + yyc4520 = true + yyrr4520 = len(yyv4520) + if yyrg4520 { + copy(yyv4520, yyv24520) } - } else if yyl4477 != len(yyv4477) { - yyv4477 = yyv4477[:yyl4477] - yyc4477 = true + } else if yyl4520 != len(yyv4520) { + yyv4520 = yyv4520[:yyl4520] + yyc4520 = true } - yyj4477 := 0 - for ; yyj4477 < yyrr4477; yyj4477++ { - yyh4477.ElemContainerState(yyj4477) + yyj4520 := 0 + for ; yyj4520 < yyrr4520; yyj4520++ { + yyh4520.ElemContainerState(yyj4520) if r.TryDecodeAsNil() { - yyv4477[yyj4477] = NodeSelectorRequirement{} + yyv4520[yyj4520] = NodeSelectorRequirement{} } else { - yyv4478 := &yyv4477[yyj4477] - yyv4478.CodecDecodeSelf(d) + yyv4521 := &yyv4520[yyj4520] + yyv4521.CodecDecodeSelf(d) } } - if yyrt4477 { - for ; yyj4477 < yyl4477; yyj4477++ { - yyv4477 = append(yyv4477, NodeSelectorRequirement{}) - yyh4477.ElemContainerState(yyj4477) + if yyrt4520 { + for ; yyj4520 < yyl4520; yyj4520++ { + yyv4520 = append(yyv4520, NodeSelectorRequirement{}) + yyh4520.ElemContainerState(yyj4520) if r.TryDecodeAsNil() { - yyv4477[yyj4477] = NodeSelectorRequirement{} + yyv4520[yyj4520] = NodeSelectorRequirement{} } else { - yyv4479 := &yyv4477[yyj4477] - yyv4479.CodecDecodeSelf(d) + yyv4522 := &yyv4520[yyj4520] + yyv4522.CodecDecodeSelf(d) } } } } else { - yyj4477 := 0 - for ; !r.CheckBreak(); yyj4477++ { + yyj4520 := 0 + for ; !r.CheckBreak(); yyj4520++ { - if yyj4477 >= len(yyv4477) { - yyv4477 = append(yyv4477, NodeSelectorRequirement{}) // var yyz4477 NodeSelectorRequirement - yyc4477 = true + if yyj4520 >= len(yyv4520) { + yyv4520 = append(yyv4520, NodeSelectorRequirement{}) // var yyz4520 NodeSelectorRequirement + yyc4520 = true } - yyh4477.ElemContainerState(yyj4477) - if yyj4477 < len(yyv4477) { + yyh4520.ElemContainerState(yyj4520) + if yyj4520 < len(yyv4520) { if r.TryDecodeAsNil() { - yyv4477[yyj4477] = NodeSelectorRequirement{} + yyv4520[yyj4520] = NodeSelectorRequirement{} } else { - yyv4480 := &yyv4477[yyj4477] - yyv4480.CodecDecodeSelf(d) + yyv4523 := &yyv4520[yyj4520] + yyv4523.CodecDecodeSelf(d) } } else { @@ -56122,17 +56733,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4477 < len(yyv4477) { - yyv4477 = yyv4477[:yyj4477] - yyc4477 = true - } else if yyj4477 == 0 && yyv4477 == nil { - yyv4477 = []NodeSelectorRequirement{} - yyc4477 = true + if yyj4520 < len(yyv4520) { + yyv4520 = yyv4520[:yyj4520] + yyc4520 = true + } else if yyj4520 == 0 && yyv4520 == nil { + yyv4520 = []NodeSelectorRequirement{} + yyc4520 = true } } - yyh4477.End() - if yyc4477 { - *v = yyv4477 + yyh4520.End() + if yyc4520 { + *v = yyv4520 } } @@ -56141,10 +56752,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4481 := range v { + for _, yyv4524 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4482 := &yyv4481 - yy4482.CodecEncodeSelf(e) + yy4525 := &yyv4524 + yy4525.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56154,83 +56765,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4483 := *v - yyh4483, yyl4483 := z.DecSliceHelperStart() - var yyc4483 bool - if yyl4483 == 0 { - if yyv4483 == nil { - yyv4483 = []PodAffinityTerm{} - yyc4483 = true - } else if len(yyv4483) != 0 { - yyv4483 = yyv4483[:0] - yyc4483 = true + yyv4526 := *v + yyh4526, yyl4526 := z.DecSliceHelperStart() + var yyc4526 bool + if yyl4526 == 0 { + if yyv4526 == nil { + yyv4526 = []PodAffinityTerm{} + yyc4526 = true + } else if len(yyv4526) != 0 { + yyv4526 = yyv4526[:0] + yyc4526 = true } - } else if yyl4483 > 0 { - var yyrr4483, yyrl4483 int - var yyrt4483 bool - if yyl4483 > cap(yyv4483) { + } else if yyl4526 > 0 { + var yyrr4526, yyrl4526 int + var yyrt4526 bool + if yyl4526 > cap(yyv4526) { - yyrg4483 := len(yyv4483) > 0 - yyv24483 := yyv4483 - yyrl4483, yyrt4483 = z.DecInferLen(yyl4483, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4483 { - if yyrl4483 <= cap(yyv4483) { - yyv4483 = yyv4483[:yyrl4483] + yyrg4526 := len(yyv4526) > 0 + yyv24526 := yyv4526 + yyrl4526, yyrt4526 = z.DecInferLen(yyl4526, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4526 { + if yyrl4526 <= cap(yyv4526) { + yyv4526 = yyv4526[:yyrl4526] } else { - yyv4483 = make([]PodAffinityTerm, yyrl4483) + yyv4526 = make([]PodAffinityTerm, yyrl4526) } } else { - yyv4483 = make([]PodAffinityTerm, yyrl4483) + yyv4526 = make([]PodAffinityTerm, yyrl4526) } - yyc4483 = true - yyrr4483 = len(yyv4483) - if yyrg4483 { - copy(yyv4483, yyv24483) + yyc4526 = true + yyrr4526 = len(yyv4526) + if yyrg4526 { + copy(yyv4526, yyv24526) } - } else if yyl4483 != len(yyv4483) { - yyv4483 = yyv4483[:yyl4483] - yyc4483 = true + } else if yyl4526 != len(yyv4526) { + yyv4526 = yyv4526[:yyl4526] + yyc4526 = true } - yyj4483 := 0 - for ; yyj4483 < yyrr4483; yyj4483++ { - yyh4483.ElemContainerState(yyj4483) + yyj4526 := 0 + for ; yyj4526 < yyrr4526; yyj4526++ { + yyh4526.ElemContainerState(yyj4526) if r.TryDecodeAsNil() { - yyv4483[yyj4483] = PodAffinityTerm{} + yyv4526[yyj4526] = PodAffinityTerm{} } else { - yyv4484 := &yyv4483[yyj4483] - yyv4484.CodecDecodeSelf(d) + yyv4527 := &yyv4526[yyj4526] + yyv4527.CodecDecodeSelf(d) } } - if yyrt4483 { - for ; yyj4483 < yyl4483; yyj4483++ { - yyv4483 = append(yyv4483, PodAffinityTerm{}) - yyh4483.ElemContainerState(yyj4483) + if yyrt4526 { + for ; yyj4526 < yyl4526; yyj4526++ { + yyv4526 = append(yyv4526, PodAffinityTerm{}) + yyh4526.ElemContainerState(yyj4526) if r.TryDecodeAsNil() { - yyv4483[yyj4483] = PodAffinityTerm{} + yyv4526[yyj4526] = PodAffinityTerm{} } else { - yyv4485 := &yyv4483[yyj4483] - yyv4485.CodecDecodeSelf(d) + yyv4528 := &yyv4526[yyj4526] + yyv4528.CodecDecodeSelf(d) } } } } else { - yyj4483 := 0 - for ; !r.CheckBreak(); yyj4483++ { + yyj4526 := 0 + for ; !r.CheckBreak(); yyj4526++ { - if yyj4483 >= len(yyv4483) { - yyv4483 = append(yyv4483, PodAffinityTerm{}) // var yyz4483 PodAffinityTerm - yyc4483 = true + if yyj4526 >= len(yyv4526) { + yyv4526 = append(yyv4526, PodAffinityTerm{}) // var yyz4526 PodAffinityTerm + yyc4526 = true } - yyh4483.ElemContainerState(yyj4483) - if yyj4483 < len(yyv4483) { + yyh4526.ElemContainerState(yyj4526) + if yyj4526 < len(yyv4526) { if r.TryDecodeAsNil() { - yyv4483[yyj4483] = PodAffinityTerm{} + yyv4526[yyj4526] = PodAffinityTerm{} } else { - yyv4486 := &yyv4483[yyj4483] - yyv4486.CodecDecodeSelf(d) + yyv4529 := &yyv4526[yyj4526] + yyv4529.CodecDecodeSelf(d) } } else { @@ -56238,17 +56849,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4483 < len(yyv4483) { - yyv4483 = yyv4483[:yyj4483] - yyc4483 = true - } else if yyj4483 == 0 && yyv4483 == nil { - yyv4483 = []PodAffinityTerm{} - yyc4483 = true + if yyj4526 < len(yyv4526) { + yyv4526 = yyv4526[:yyj4526] + yyc4526 = true + } else if yyj4526 == 0 && yyv4526 == nil { + yyv4526 = []PodAffinityTerm{} + yyc4526 = true } } - yyh4483.End() - if yyc4483 { - *v = yyv4483 + yyh4526.End() + if yyc4526 { + *v = yyv4526 } } @@ -56257,10 +56868,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4487 := range v { + for _, yyv4530 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4488 := &yyv4487 - yy4488.CodecEncodeSelf(e) + yy4531 := &yyv4530 + yy4531.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56270,83 +56881,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4489 := *v - yyh4489, yyl4489 := z.DecSliceHelperStart() - var yyc4489 bool - if yyl4489 == 0 { - if yyv4489 == nil { - yyv4489 = []WeightedPodAffinityTerm{} - yyc4489 = true - } else if len(yyv4489) != 0 { - yyv4489 = yyv4489[:0] - yyc4489 = true + yyv4532 := *v + yyh4532, yyl4532 := z.DecSliceHelperStart() + var yyc4532 bool + if yyl4532 == 0 { + if yyv4532 == nil { + yyv4532 = []WeightedPodAffinityTerm{} + yyc4532 = true + } else if len(yyv4532) != 0 { + yyv4532 = yyv4532[:0] + yyc4532 = true } - } else if yyl4489 > 0 { - var yyrr4489, yyrl4489 int - var yyrt4489 bool - if yyl4489 > cap(yyv4489) { + } else if yyl4532 > 0 { + var yyrr4532, yyrl4532 int + var yyrt4532 bool + if yyl4532 > cap(yyv4532) { - yyrg4489 := len(yyv4489) > 0 - yyv24489 := yyv4489 - yyrl4489, yyrt4489 = z.DecInferLen(yyl4489, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4489 { - if yyrl4489 <= cap(yyv4489) { - yyv4489 = yyv4489[:yyrl4489] + yyrg4532 := len(yyv4532) > 0 + yyv24532 := yyv4532 + yyrl4532, yyrt4532 = z.DecInferLen(yyl4532, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4532 { + if yyrl4532 <= cap(yyv4532) { + yyv4532 = yyv4532[:yyrl4532] } else { - yyv4489 = make([]WeightedPodAffinityTerm, yyrl4489) + yyv4532 = make([]WeightedPodAffinityTerm, yyrl4532) } } else { - yyv4489 = make([]WeightedPodAffinityTerm, yyrl4489) + yyv4532 = make([]WeightedPodAffinityTerm, yyrl4532) } - yyc4489 = true - yyrr4489 = len(yyv4489) - if yyrg4489 { - copy(yyv4489, yyv24489) + yyc4532 = true + yyrr4532 = len(yyv4532) + if yyrg4532 { + copy(yyv4532, yyv24532) } - } else if yyl4489 != len(yyv4489) { - yyv4489 = yyv4489[:yyl4489] - yyc4489 = true + } else if yyl4532 != len(yyv4532) { + yyv4532 = yyv4532[:yyl4532] + yyc4532 = true } - yyj4489 := 0 - for ; yyj4489 < yyrr4489; yyj4489++ { - yyh4489.ElemContainerState(yyj4489) + yyj4532 := 0 + for ; yyj4532 < yyrr4532; yyj4532++ { + yyh4532.ElemContainerState(yyj4532) if r.TryDecodeAsNil() { - yyv4489[yyj4489] = WeightedPodAffinityTerm{} + yyv4532[yyj4532] = WeightedPodAffinityTerm{} } else { - yyv4490 := &yyv4489[yyj4489] - yyv4490.CodecDecodeSelf(d) + yyv4533 := &yyv4532[yyj4532] + yyv4533.CodecDecodeSelf(d) } } - if yyrt4489 { - for ; yyj4489 < yyl4489; yyj4489++ { - yyv4489 = append(yyv4489, WeightedPodAffinityTerm{}) - yyh4489.ElemContainerState(yyj4489) + if yyrt4532 { + for ; yyj4532 < yyl4532; yyj4532++ { + yyv4532 = append(yyv4532, WeightedPodAffinityTerm{}) + yyh4532.ElemContainerState(yyj4532) if r.TryDecodeAsNil() { - yyv4489[yyj4489] = WeightedPodAffinityTerm{} + yyv4532[yyj4532] = WeightedPodAffinityTerm{} } else { - yyv4491 := &yyv4489[yyj4489] - yyv4491.CodecDecodeSelf(d) + yyv4534 := &yyv4532[yyj4532] + yyv4534.CodecDecodeSelf(d) } } } } else { - yyj4489 := 0 - for ; !r.CheckBreak(); yyj4489++ { + yyj4532 := 0 + for ; !r.CheckBreak(); yyj4532++ { - if yyj4489 >= len(yyv4489) { - yyv4489 = append(yyv4489, WeightedPodAffinityTerm{}) // var yyz4489 WeightedPodAffinityTerm - yyc4489 = true + if yyj4532 >= len(yyv4532) { + yyv4532 = append(yyv4532, WeightedPodAffinityTerm{}) // var yyz4532 WeightedPodAffinityTerm + yyc4532 = true } - yyh4489.ElemContainerState(yyj4489) - if yyj4489 < len(yyv4489) { + yyh4532.ElemContainerState(yyj4532) + if yyj4532 < len(yyv4532) { if r.TryDecodeAsNil() { - yyv4489[yyj4489] = WeightedPodAffinityTerm{} + yyv4532[yyj4532] = WeightedPodAffinityTerm{} } else { - yyv4492 := &yyv4489[yyj4489] - yyv4492.CodecDecodeSelf(d) + yyv4535 := &yyv4532[yyj4532] + yyv4535.CodecDecodeSelf(d) } } else { @@ -56354,17 +56965,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4489 < len(yyv4489) { - yyv4489 = yyv4489[:yyj4489] - yyc4489 = true - } else if yyj4489 == 0 && yyv4489 == nil { - yyv4489 = []WeightedPodAffinityTerm{} - yyc4489 = true + if yyj4532 < len(yyv4532) { + yyv4532 = yyv4532[:yyj4532] + yyc4532 = true + } else if yyj4532 == 0 && yyv4532 == nil { + yyv4532 = []WeightedPodAffinityTerm{} + yyc4532 = true } } - yyh4489.End() - if yyc4489 { - *v = yyv4489 + yyh4532.End() + if yyc4532 { + *v = yyv4532 } } @@ -56373,10 +56984,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4493 := range v { + for _, yyv4536 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4494 := &yyv4493 - yy4494.CodecEncodeSelf(e) + yy4537 := &yyv4536 + yy4537.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56386,83 +56997,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4495 := *v - yyh4495, yyl4495 := z.DecSliceHelperStart() - var yyc4495 bool - if yyl4495 == 0 { - if yyv4495 == nil { - yyv4495 = []PreferredSchedulingTerm{} - yyc4495 = true - } else if len(yyv4495) != 0 { - yyv4495 = yyv4495[:0] - yyc4495 = true + yyv4538 := *v + yyh4538, yyl4538 := z.DecSliceHelperStart() + var yyc4538 bool + if yyl4538 == 0 { + if yyv4538 == nil { + yyv4538 = []PreferredSchedulingTerm{} + yyc4538 = true + } else if len(yyv4538) != 0 { + yyv4538 = yyv4538[:0] + yyc4538 = true } - } else if yyl4495 > 0 { - var yyrr4495, yyrl4495 int - var yyrt4495 bool - if yyl4495 > cap(yyv4495) { + } else if yyl4538 > 0 { + var yyrr4538, yyrl4538 int + var yyrt4538 bool + if yyl4538 > cap(yyv4538) { - yyrg4495 := len(yyv4495) > 0 - yyv24495 := yyv4495 - yyrl4495, yyrt4495 = z.DecInferLen(yyl4495, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4495 { - if yyrl4495 <= cap(yyv4495) { - yyv4495 = yyv4495[:yyrl4495] + yyrg4538 := len(yyv4538) > 0 + yyv24538 := yyv4538 + yyrl4538, yyrt4538 = z.DecInferLen(yyl4538, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4538 { + if yyrl4538 <= cap(yyv4538) { + yyv4538 = yyv4538[:yyrl4538] } else { - yyv4495 = make([]PreferredSchedulingTerm, yyrl4495) + yyv4538 = make([]PreferredSchedulingTerm, yyrl4538) } } else { - yyv4495 = make([]PreferredSchedulingTerm, yyrl4495) + yyv4538 = make([]PreferredSchedulingTerm, yyrl4538) } - yyc4495 = true - yyrr4495 = len(yyv4495) - if yyrg4495 { - copy(yyv4495, yyv24495) + yyc4538 = true + yyrr4538 = len(yyv4538) + if yyrg4538 { + copy(yyv4538, yyv24538) } - } else if yyl4495 != len(yyv4495) { - yyv4495 = yyv4495[:yyl4495] - yyc4495 = true + } else if yyl4538 != len(yyv4538) { + yyv4538 = yyv4538[:yyl4538] + yyc4538 = true } - yyj4495 := 0 - for ; yyj4495 < yyrr4495; yyj4495++ { - yyh4495.ElemContainerState(yyj4495) + yyj4538 := 0 + for ; yyj4538 < yyrr4538; yyj4538++ { + yyh4538.ElemContainerState(yyj4538) if r.TryDecodeAsNil() { - yyv4495[yyj4495] = PreferredSchedulingTerm{} + yyv4538[yyj4538] = PreferredSchedulingTerm{} } else { - yyv4496 := &yyv4495[yyj4495] - yyv4496.CodecDecodeSelf(d) + yyv4539 := &yyv4538[yyj4538] + yyv4539.CodecDecodeSelf(d) } } - if yyrt4495 { - for ; yyj4495 < yyl4495; yyj4495++ { - yyv4495 = append(yyv4495, PreferredSchedulingTerm{}) - yyh4495.ElemContainerState(yyj4495) + if yyrt4538 { + for ; yyj4538 < yyl4538; yyj4538++ { + yyv4538 = append(yyv4538, PreferredSchedulingTerm{}) + yyh4538.ElemContainerState(yyj4538) if r.TryDecodeAsNil() { - yyv4495[yyj4495] = PreferredSchedulingTerm{} + yyv4538[yyj4538] = PreferredSchedulingTerm{} } else { - yyv4497 := &yyv4495[yyj4495] - yyv4497.CodecDecodeSelf(d) + yyv4540 := &yyv4538[yyj4538] + yyv4540.CodecDecodeSelf(d) } } } } else { - yyj4495 := 0 - for ; !r.CheckBreak(); yyj4495++ { + yyj4538 := 0 + for ; !r.CheckBreak(); yyj4538++ { - if yyj4495 >= len(yyv4495) { - yyv4495 = append(yyv4495, PreferredSchedulingTerm{}) // var yyz4495 PreferredSchedulingTerm - yyc4495 = true + if yyj4538 >= len(yyv4538) { + yyv4538 = append(yyv4538, PreferredSchedulingTerm{}) // var yyz4538 PreferredSchedulingTerm + yyc4538 = true } - yyh4495.ElemContainerState(yyj4495) - if yyj4495 < len(yyv4495) { + yyh4538.ElemContainerState(yyj4538) + if yyj4538 < len(yyv4538) { if r.TryDecodeAsNil() { - yyv4495[yyj4495] = PreferredSchedulingTerm{} + yyv4538[yyj4538] = PreferredSchedulingTerm{} } else { - yyv4498 := &yyv4495[yyj4495] - yyv4498.CodecDecodeSelf(d) + yyv4541 := &yyv4538[yyj4538] + yyv4541.CodecDecodeSelf(d) } } else { @@ -56470,17 +57081,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4495 < len(yyv4495) { - yyv4495 = yyv4495[:yyj4495] - yyc4495 = true - } else if yyj4495 == 0 && yyv4495 == nil { - yyv4495 = []PreferredSchedulingTerm{} - yyc4495 = true + if yyj4538 < len(yyv4538) { + yyv4538 = yyv4538[:yyj4538] + yyc4538 = true + } else if yyj4538 == 0 && yyv4538 == nil { + yyv4538 = []PreferredSchedulingTerm{} + yyc4538 = true } } - yyh4495.End() - if yyc4495 { - *v = yyv4495 + yyh4538.End() + if yyc4538 { + *v = yyv4538 } } @@ -56489,10 +57100,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4499 := range v { + for _, yyv4542 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4500 := &yyv4499 - yy4500.CodecEncodeSelf(e) + yy4543 := &yyv4542 + yy4543.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56502,83 +57113,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4501 := *v - yyh4501, yyl4501 := z.DecSliceHelperStart() - var yyc4501 bool - if yyl4501 == 0 { - if yyv4501 == nil { - yyv4501 = []Volume{} - yyc4501 = true - } else if len(yyv4501) != 0 { - yyv4501 = yyv4501[:0] - yyc4501 = true + yyv4544 := *v + yyh4544, yyl4544 := z.DecSliceHelperStart() + var yyc4544 bool + if yyl4544 == 0 { + if yyv4544 == nil { + yyv4544 = []Volume{} + yyc4544 = true + } else if len(yyv4544) != 0 { + yyv4544 = yyv4544[:0] + yyc4544 = true } - } else if yyl4501 > 0 { - var yyrr4501, yyrl4501 int - var yyrt4501 bool - if yyl4501 > cap(yyv4501) { + } else if yyl4544 > 0 { + var yyrr4544, yyrl4544 int + var yyrt4544 bool + if yyl4544 > cap(yyv4544) { - yyrg4501 := len(yyv4501) > 0 - yyv24501 := yyv4501 - yyrl4501, yyrt4501 = z.DecInferLen(yyl4501, z.DecBasicHandle().MaxInitLen, 176) - if yyrt4501 { - if yyrl4501 <= cap(yyv4501) { - yyv4501 = yyv4501[:yyrl4501] + yyrg4544 := len(yyv4544) > 0 + yyv24544 := yyv4544 + yyrl4544, yyrt4544 = z.DecInferLen(yyl4544, z.DecBasicHandle().MaxInitLen, 184) + if yyrt4544 { + if yyrl4544 <= cap(yyv4544) { + yyv4544 = yyv4544[:yyrl4544] } else { - yyv4501 = make([]Volume, yyrl4501) + yyv4544 = make([]Volume, yyrl4544) } } else { - yyv4501 = make([]Volume, yyrl4501) + yyv4544 = make([]Volume, yyrl4544) } - yyc4501 = true - yyrr4501 = len(yyv4501) - if yyrg4501 { - copy(yyv4501, yyv24501) + yyc4544 = true + yyrr4544 = len(yyv4544) + if yyrg4544 { + copy(yyv4544, yyv24544) } - } else if yyl4501 != len(yyv4501) { - yyv4501 = yyv4501[:yyl4501] - yyc4501 = true + } else if yyl4544 != len(yyv4544) { + yyv4544 = yyv4544[:yyl4544] + yyc4544 = true } - yyj4501 := 0 - for ; yyj4501 < yyrr4501; yyj4501++ { - yyh4501.ElemContainerState(yyj4501) + yyj4544 := 0 + for ; yyj4544 < yyrr4544; yyj4544++ { + yyh4544.ElemContainerState(yyj4544) if r.TryDecodeAsNil() { - yyv4501[yyj4501] = Volume{} + yyv4544[yyj4544] = Volume{} } else { - yyv4502 := &yyv4501[yyj4501] - yyv4502.CodecDecodeSelf(d) + yyv4545 := &yyv4544[yyj4544] + yyv4545.CodecDecodeSelf(d) } } - if yyrt4501 { - for ; yyj4501 < yyl4501; yyj4501++ { - yyv4501 = append(yyv4501, Volume{}) - yyh4501.ElemContainerState(yyj4501) + if yyrt4544 { + for ; yyj4544 < yyl4544; yyj4544++ { + yyv4544 = append(yyv4544, Volume{}) + yyh4544.ElemContainerState(yyj4544) if r.TryDecodeAsNil() { - yyv4501[yyj4501] = Volume{} + yyv4544[yyj4544] = Volume{} } else { - yyv4503 := &yyv4501[yyj4501] - yyv4503.CodecDecodeSelf(d) + yyv4546 := &yyv4544[yyj4544] + yyv4546.CodecDecodeSelf(d) } } } } else { - yyj4501 := 0 - for ; !r.CheckBreak(); yyj4501++ { + yyj4544 := 0 + for ; !r.CheckBreak(); yyj4544++ { - if yyj4501 >= len(yyv4501) { - yyv4501 = append(yyv4501, Volume{}) // var yyz4501 Volume - yyc4501 = true + if yyj4544 >= len(yyv4544) { + yyv4544 = append(yyv4544, Volume{}) // var yyz4544 Volume + yyc4544 = true } - yyh4501.ElemContainerState(yyj4501) - if yyj4501 < len(yyv4501) { + yyh4544.ElemContainerState(yyj4544) + if yyj4544 < len(yyv4544) { if r.TryDecodeAsNil() { - yyv4501[yyj4501] = Volume{} + yyv4544[yyj4544] = Volume{} } else { - yyv4504 := &yyv4501[yyj4501] - yyv4504.CodecDecodeSelf(d) + yyv4547 := &yyv4544[yyj4544] + yyv4547.CodecDecodeSelf(d) } } else { @@ -56586,17 +57197,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4501 < len(yyv4501) { - yyv4501 = yyv4501[:yyj4501] - yyc4501 = true - } else if yyj4501 == 0 && yyv4501 == nil { - yyv4501 = []Volume{} - yyc4501 = true + if yyj4544 < len(yyv4544) { + yyv4544 = yyv4544[:yyj4544] + yyc4544 = true + } else if yyj4544 == 0 && yyv4544 == nil { + yyv4544 = []Volume{} + yyc4544 = true } } - yyh4501.End() - if yyc4501 { - *v = yyv4501 + yyh4544.End() + if yyc4544 { + *v = yyv4544 } } @@ -56605,10 +57216,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4505 := range v { + for _, yyv4548 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4506 := &yyv4505 - yy4506.CodecEncodeSelf(e) + yy4549 := &yyv4548 + yy4549.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56618,83 +57229,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4507 := *v - yyh4507, yyl4507 := z.DecSliceHelperStart() - var yyc4507 bool - if yyl4507 == 0 { - if yyv4507 == nil { - yyv4507 = []Container{} - yyc4507 = true - } else if len(yyv4507) != 0 { - yyv4507 = yyv4507[:0] - yyc4507 = true + yyv4550 := *v + yyh4550, yyl4550 := z.DecSliceHelperStart() + var yyc4550 bool + if yyl4550 == 0 { + if yyv4550 == nil { + yyv4550 = []Container{} + yyc4550 = true + } else if len(yyv4550) != 0 { + yyv4550 = yyv4550[:0] + yyc4550 = true } - } else if yyl4507 > 0 { - var yyrr4507, yyrl4507 int - var yyrt4507 bool - if yyl4507 > cap(yyv4507) { + } else if yyl4550 > 0 { + var yyrr4550, yyrl4550 int + var yyrt4550 bool + if yyl4550 > cap(yyv4550) { - yyrg4507 := len(yyv4507) > 0 - yyv24507 := yyv4507 - yyrl4507, yyrt4507 = z.DecInferLen(yyl4507, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4507 { - if yyrl4507 <= cap(yyv4507) { - yyv4507 = yyv4507[:yyrl4507] + yyrg4550 := len(yyv4550) > 0 + yyv24550 := yyv4550 + yyrl4550, yyrt4550 = z.DecInferLen(yyl4550, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4550 { + if yyrl4550 <= cap(yyv4550) { + yyv4550 = yyv4550[:yyrl4550] } else { - yyv4507 = make([]Container, yyrl4507) + yyv4550 = make([]Container, yyrl4550) } } else { - yyv4507 = make([]Container, yyrl4507) + yyv4550 = make([]Container, yyrl4550) } - yyc4507 = true - yyrr4507 = len(yyv4507) - if yyrg4507 { - copy(yyv4507, yyv24507) + yyc4550 = true + yyrr4550 = len(yyv4550) + if yyrg4550 { + copy(yyv4550, yyv24550) } - } else if yyl4507 != len(yyv4507) { - yyv4507 = yyv4507[:yyl4507] - yyc4507 = true + } else if yyl4550 != len(yyv4550) { + yyv4550 = yyv4550[:yyl4550] + yyc4550 = true } - yyj4507 := 0 - for ; yyj4507 < yyrr4507; yyj4507++ { - yyh4507.ElemContainerState(yyj4507) + yyj4550 := 0 + for ; yyj4550 < yyrr4550; yyj4550++ { + yyh4550.ElemContainerState(yyj4550) if r.TryDecodeAsNil() { - yyv4507[yyj4507] = Container{} + yyv4550[yyj4550] = Container{} } else { - yyv4508 := &yyv4507[yyj4507] - yyv4508.CodecDecodeSelf(d) + yyv4551 := &yyv4550[yyj4550] + yyv4551.CodecDecodeSelf(d) } } - if yyrt4507 { - for ; yyj4507 < yyl4507; yyj4507++ { - yyv4507 = append(yyv4507, Container{}) - yyh4507.ElemContainerState(yyj4507) + if yyrt4550 { + for ; yyj4550 < yyl4550; yyj4550++ { + yyv4550 = append(yyv4550, Container{}) + yyh4550.ElemContainerState(yyj4550) if r.TryDecodeAsNil() { - yyv4507[yyj4507] = Container{} + yyv4550[yyj4550] = Container{} } else { - yyv4509 := &yyv4507[yyj4507] - yyv4509.CodecDecodeSelf(d) + yyv4552 := &yyv4550[yyj4550] + yyv4552.CodecDecodeSelf(d) } } } } else { - yyj4507 := 0 - for ; !r.CheckBreak(); yyj4507++ { + yyj4550 := 0 + for ; !r.CheckBreak(); yyj4550++ { - if yyj4507 >= len(yyv4507) { - yyv4507 = append(yyv4507, Container{}) // var yyz4507 Container - yyc4507 = true + if yyj4550 >= len(yyv4550) { + yyv4550 = append(yyv4550, Container{}) // var yyz4550 Container + yyc4550 = true } - yyh4507.ElemContainerState(yyj4507) - if yyj4507 < len(yyv4507) { + yyh4550.ElemContainerState(yyj4550) + if yyj4550 < len(yyv4550) { if r.TryDecodeAsNil() { - yyv4507[yyj4507] = Container{} + yyv4550[yyj4550] = Container{} } else { - yyv4510 := &yyv4507[yyj4507] - yyv4510.CodecDecodeSelf(d) + yyv4553 := &yyv4550[yyj4550] + yyv4553.CodecDecodeSelf(d) } } else { @@ -56702,17 +57313,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4507 < len(yyv4507) { - yyv4507 = yyv4507[:yyj4507] - yyc4507 = true - } else if yyj4507 == 0 && yyv4507 == nil { - yyv4507 = []Container{} - yyc4507 = true + if yyj4550 < len(yyv4550) { + yyv4550 = yyv4550[:yyj4550] + yyc4550 = true + } else if yyj4550 == 0 && yyv4550 == nil { + yyv4550 = []Container{} + yyc4550 = true } } - yyh4507.End() - if yyc4507 { - *v = yyv4507 + yyh4550.End() + if yyc4550 { + *v = yyv4550 } } @@ -56721,10 +57332,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4511 := range v { + for _, yyv4554 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4512 := &yyv4511 - yy4512.CodecEncodeSelf(e) + yy4555 := &yyv4554 + yy4555.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56734,83 +57345,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4513 := *v - yyh4513, yyl4513 := z.DecSliceHelperStart() - var yyc4513 bool - if yyl4513 == 0 { - if yyv4513 == nil { - yyv4513 = []LocalObjectReference{} - yyc4513 = true - } else if len(yyv4513) != 0 { - yyv4513 = yyv4513[:0] - yyc4513 = true + yyv4556 := *v + yyh4556, yyl4556 := z.DecSliceHelperStart() + var yyc4556 bool + if yyl4556 == 0 { + if yyv4556 == nil { + yyv4556 = []LocalObjectReference{} + yyc4556 = true + } else if len(yyv4556) != 0 { + yyv4556 = yyv4556[:0] + yyc4556 = true } - } else if yyl4513 > 0 { - var yyrr4513, yyrl4513 int - var yyrt4513 bool - if yyl4513 > cap(yyv4513) { + } else if yyl4556 > 0 { + var yyrr4556, yyrl4556 int + var yyrt4556 bool + if yyl4556 > cap(yyv4556) { - yyrg4513 := len(yyv4513) > 0 - yyv24513 := yyv4513 - yyrl4513, yyrt4513 = z.DecInferLen(yyl4513, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4513 { - if yyrl4513 <= cap(yyv4513) { - yyv4513 = yyv4513[:yyrl4513] + yyrg4556 := len(yyv4556) > 0 + yyv24556 := yyv4556 + yyrl4556, yyrt4556 = z.DecInferLen(yyl4556, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4556 { + if yyrl4556 <= cap(yyv4556) { + yyv4556 = yyv4556[:yyrl4556] } else { - yyv4513 = make([]LocalObjectReference, yyrl4513) + yyv4556 = make([]LocalObjectReference, yyrl4556) } } else { - yyv4513 = make([]LocalObjectReference, yyrl4513) + yyv4556 = make([]LocalObjectReference, yyrl4556) } - yyc4513 = true - yyrr4513 = len(yyv4513) - if yyrg4513 { - copy(yyv4513, yyv24513) + yyc4556 = true + yyrr4556 = len(yyv4556) + if yyrg4556 { + copy(yyv4556, yyv24556) } - } else if yyl4513 != len(yyv4513) { - yyv4513 = yyv4513[:yyl4513] - yyc4513 = true + } else if yyl4556 != len(yyv4556) { + yyv4556 = yyv4556[:yyl4556] + yyc4556 = true } - yyj4513 := 0 - for ; yyj4513 < yyrr4513; yyj4513++ { - yyh4513.ElemContainerState(yyj4513) + yyj4556 := 0 + for ; yyj4556 < yyrr4556; yyj4556++ { + yyh4556.ElemContainerState(yyj4556) if r.TryDecodeAsNil() { - yyv4513[yyj4513] = LocalObjectReference{} + yyv4556[yyj4556] = LocalObjectReference{} } else { - yyv4514 := &yyv4513[yyj4513] - yyv4514.CodecDecodeSelf(d) + yyv4557 := &yyv4556[yyj4556] + yyv4557.CodecDecodeSelf(d) } } - if yyrt4513 { - for ; yyj4513 < yyl4513; yyj4513++ { - yyv4513 = append(yyv4513, LocalObjectReference{}) - yyh4513.ElemContainerState(yyj4513) + if yyrt4556 { + for ; yyj4556 < yyl4556; yyj4556++ { + yyv4556 = append(yyv4556, LocalObjectReference{}) + yyh4556.ElemContainerState(yyj4556) if r.TryDecodeAsNil() { - yyv4513[yyj4513] = LocalObjectReference{} + yyv4556[yyj4556] = LocalObjectReference{} } else { - yyv4515 := &yyv4513[yyj4513] - yyv4515.CodecDecodeSelf(d) + yyv4558 := &yyv4556[yyj4556] + yyv4558.CodecDecodeSelf(d) } } } } else { - yyj4513 := 0 - for ; !r.CheckBreak(); yyj4513++ { + yyj4556 := 0 + for ; !r.CheckBreak(); yyj4556++ { - if yyj4513 >= len(yyv4513) { - yyv4513 = append(yyv4513, LocalObjectReference{}) // var yyz4513 LocalObjectReference - yyc4513 = true + if yyj4556 >= len(yyv4556) { + yyv4556 = append(yyv4556, LocalObjectReference{}) // var yyz4556 LocalObjectReference + yyc4556 = true } - yyh4513.ElemContainerState(yyj4513) - if yyj4513 < len(yyv4513) { + yyh4556.ElemContainerState(yyj4556) + if yyj4556 < len(yyv4556) { if r.TryDecodeAsNil() { - yyv4513[yyj4513] = LocalObjectReference{} + yyv4556[yyj4556] = LocalObjectReference{} } else { - yyv4516 := &yyv4513[yyj4513] - yyv4516.CodecDecodeSelf(d) + yyv4559 := &yyv4556[yyj4556] + yyv4559.CodecDecodeSelf(d) } } else { @@ -56818,17 +57429,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4513 < len(yyv4513) { - yyv4513 = yyv4513[:yyj4513] - yyc4513 = true - } else if yyj4513 == 0 && yyv4513 == nil { - yyv4513 = []LocalObjectReference{} - yyc4513 = true + if yyj4556 < len(yyv4556) { + yyv4556 = yyv4556[:yyj4556] + yyc4556 = true + } else if yyj4556 == 0 && yyv4556 == nil { + yyv4556 = []LocalObjectReference{} + yyc4556 = true } } - yyh4513.End() - if yyc4513 { - *v = yyv4513 + yyh4556.End() + if yyc4556 { + *v = yyv4556 } } @@ -56837,10 +57448,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4517 := range v { + for _, yyv4560 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4518 := &yyv4517 - yy4518.CodecEncodeSelf(e) + yy4561 := &yyv4560 + yy4561.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56850,83 +57461,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4519 := *v - yyh4519, yyl4519 := z.DecSliceHelperStart() - var yyc4519 bool - if yyl4519 == 0 { - if yyv4519 == nil { - yyv4519 = []PodCondition{} - yyc4519 = true - } else if len(yyv4519) != 0 { - yyv4519 = yyv4519[:0] - yyc4519 = true + yyv4562 := *v + yyh4562, yyl4562 := z.DecSliceHelperStart() + var yyc4562 bool + if yyl4562 == 0 { + if yyv4562 == nil { + yyv4562 = []PodCondition{} + yyc4562 = true + } else if len(yyv4562) != 0 { + yyv4562 = yyv4562[:0] + yyc4562 = true } - } else if yyl4519 > 0 { - var yyrr4519, yyrl4519 int - var yyrt4519 bool - if yyl4519 > cap(yyv4519) { + } else if yyl4562 > 0 { + var yyrr4562, yyrl4562 int + var yyrt4562 bool + if yyl4562 > cap(yyv4562) { - yyrg4519 := len(yyv4519) > 0 - yyv24519 := yyv4519 - yyrl4519, yyrt4519 = z.DecInferLen(yyl4519, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4519 { - if yyrl4519 <= cap(yyv4519) { - yyv4519 = yyv4519[:yyrl4519] + yyrg4562 := len(yyv4562) > 0 + yyv24562 := yyv4562 + yyrl4562, yyrt4562 = z.DecInferLen(yyl4562, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4562 { + if yyrl4562 <= cap(yyv4562) { + yyv4562 = yyv4562[:yyrl4562] } else { - yyv4519 = make([]PodCondition, yyrl4519) + yyv4562 = make([]PodCondition, yyrl4562) } } else { - yyv4519 = make([]PodCondition, yyrl4519) + yyv4562 = make([]PodCondition, yyrl4562) } - yyc4519 = true - yyrr4519 = len(yyv4519) - if yyrg4519 { - copy(yyv4519, yyv24519) + yyc4562 = true + yyrr4562 = len(yyv4562) + if yyrg4562 { + copy(yyv4562, yyv24562) } - } else if yyl4519 != len(yyv4519) { - yyv4519 = yyv4519[:yyl4519] - yyc4519 = true + } else if yyl4562 != len(yyv4562) { + yyv4562 = yyv4562[:yyl4562] + yyc4562 = true } - yyj4519 := 0 - for ; yyj4519 < yyrr4519; yyj4519++ { - yyh4519.ElemContainerState(yyj4519) + yyj4562 := 0 + for ; yyj4562 < yyrr4562; yyj4562++ { + yyh4562.ElemContainerState(yyj4562) if r.TryDecodeAsNil() { - yyv4519[yyj4519] = PodCondition{} + yyv4562[yyj4562] = PodCondition{} } else { - yyv4520 := &yyv4519[yyj4519] - yyv4520.CodecDecodeSelf(d) + yyv4563 := &yyv4562[yyj4562] + yyv4563.CodecDecodeSelf(d) } } - if yyrt4519 { - for ; yyj4519 < yyl4519; yyj4519++ { - yyv4519 = append(yyv4519, PodCondition{}) - yyh4519.ElemContainerState(yyj4519) + if yyrt4562 { + for ; yyj4562 < yyl4562; yyj4562++ { + yyv4562 = append(yyv4562, PodCondition{}) + yyh4562.ElemContainerState(yyj4562) if r.TryDecodeAsNil() { - yyv4519[yyj4519] = PodCondition{} + yyv4562[yyj4562] = PodCondition{} } else { - yyv4521 := &yyv4519[yyj4519] - yyv4521.CodecDecodeSelf(d) + yyv4564 := &yyv4562[yyj4562] + yyv4564.CodecDecodeSelf(d) } } } } else { - yyj4519 := 0 - for ; !r.CheckBreak(); yyj4519++ { + yyj4562 := 0 + for ; !r.CheckBreak(); yyj4562++ { - if yyj4519 >= len(yyv4519) { - yyv4519 = append(yyv4519, PodCondition{}) // var yyz4519 PodCondition - yyc4519 = true + if yyj4562 >= len(yyv4562) { + yyv4562 = append(yyv4562, PodCondition{}) // var yyz4562 PodCondition + yyc4562 = true } - yyh4519.ElemContainerState(yyj4519) - if yyj4519 < len(yyv4519) { + yyh4562.ElemContainerState(yyj4562) + if yyj4562 < len(yyv4562) { if r.TryDecodeAsNil() { - yyv4519[yyj4519] = PodCondition{} + yyv4562[yyj4562] = PodCondition{} } else { - yyv4522 := &yyv4519[yyj4519] - yyv4522.CodecDecodeSelf(d) + yyv4565 := &yyv4562[yyj4562] + yyv4565.CodecDecodeSelf(d) } } else { @@ -56934,17 +57545,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4519 < len(yyv4519) { - yyv4519 = yyv4519[:yyj4519] - yyc4519 = true - } else if yyj4519 == 0 && yyv4519 == nil { - yyv4519 = []PodCondition{} - yyc4519 = true + if yyj4562 < len(yyv4562) { + yyv4562 = yyv4562[:yyj4562] + yyc4562 = true + } else if yyj4562 == 0 && yyv4562 == nil { + yyv4562 = []PodCondition{} + yyc4562 = true } } - yyh4519.End() - if yyc4519 { - *v = yyv4519 + yyh4562.End() + if yyc4562 { + *v = yyv4562 } } @@ -56953,10 +57564,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4523 := range v { + for _, yyv4566 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4524 := &yyv4523 - yy4524.CodecEncodeSelf(e) + yy4567 := &yyv4566 + yy4567.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56966,83 +57577,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4525 := *v - yyh4525, yyl4525 := z.DecSliceHelperStart() - var yyc4525 bool - if yyl4525 == 0 { - if yyv4525 == nil { - yyv4525 = []ContainerStatus{} - yyc4525 = true - } else if len(yyv4525) != 0 { - yyv4525 = yyv4525[:0] - yyc4525 = true + yyv4568 := *v + yyh4568, yyl4568 := z.DecSliceHelperStart() + var yyc4568 bool + if yyl4568 == 0 { + if yyv4568 == nil { + yyv4568 = []ContainerStatus{} + yyc4568 = true + } else if len(yyv4568) != 0 { + yyv4568 = yyv4568[:0] + yyc4568 = true } - } else if yyl4525 > 0 { - var yyrr4525, yyrl4525 int - var yyrt4525 bool - if yyl4525 > cap(yyv4525) { + } else if yyl4568 > 0 { + var yyrr4568, yyrl4568 int + var yyrt4568 bool + if yyl4568 > cap(yyv4568) { - yyrg4525 := len(yyv4525) > 0 - yyv24525 := yyv4525 - yyrl4525, yyrt4525 = z.DecInferLen(yyl4525, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4525 { - if yyrl4525 <= cap(yyv4525) { - yyv4525 = yyv4525[:yyrl4525] + yyrg4568 := len(yyv4568) > 0 + yyv24568 := yyv4568 + yyrl4568, yyrt4568 = z.DecInferLen(yyl4568, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4568 { + if yyrl4568 <= cap(yyv4568) { + yyv4568 = yyv4568[:yyrl4568] } else { - yyv4525 = make([]ContainerStatus, yyrl4525) + yyv4568 = make([]ContainerStatus, yyrl4568) } } else { - yyv4525 = make([]ContainerStatus, yyrl4525) + yyv4568 = make([]ContainerStatus, yyrl4568) } - yyc4525 = true - yyrr4525 = len(yyv4525) - if yyrg4525 { - copy(yyv4525, yyv24525) + yyc4568 = true + yyrr4568 = len(yyv4568) + if yyrg4568 { + copy(yyv4568, yyv24568) } - } else if yyl4525 != len(yyv4525) { - yyv4525 = yyv4525[:yyl4525] - yyc4525 = true + } else if yyl4568 != len(yyv4568) { + yyv4568 = yyv4568[:yyl4568] + yyc4568 = true } - yyj4525 := 0 - for ; yyj4525 < yyrr4525; yyj4525++ { - yyh4525.ElemContainerState(yyj4525) + yyj4568 := 0 + for ; yyj4568 < yyrr4568; yyj4568++ { + yyh4568.ElemContainerState(yyj4568) if r.TryDecodeAsNil() { - yyv4525[yyj4525] = ContainerStatus{} + yyv4568[yyj4568] = ContainerStatus{} } else { - yyv4526 := &yyv4525[yyj4525] - yyv4526.CodecDecodeSelf(d) + yyv4569 := &yyv4568[yyj4568] + yyv4569.CodecDecodeSelf(d) } } - if yyrt4525 { - for ; yyj4525 < yyl4525; yyj4525++ { - yyv4525 = append(yyv4525, ContainerStatus{}) - yyh4525.ElemContainerState(yyj4525) + if yyrt4568 { + for ; yyj4568 < yyl4568; yyj4568++ { + yyv4568 = append(yyv4568, ContainerStatus{}) + yyh4568.ElemContainerState(yyj4568) if r.TryDecodeAsNil() { - yyv4525[yyj4525] = ContainerStatus{} + yyv4568[yyj4568] = ContainerStatus{} } else { - yyv4527 := &yyv4525[yyj4525] - yyv4527.CodecDecodeSelf(d) + yyv4570 := &yyv4568[yyj4568] + yyv4570.CodecDecodeSelf(d) } } } } else { - yyj4525 := 0 - for ; !r.CheckBreak(); yyj4525++ { + yyj4568 := 0 + for ; !r.CheckBreak(); yyj4568++ { - if yyj4525 >= len(yyv4525) { - yyv4525 = append(yyv4525, ContainerStatus{}) // var yyz4525 ContainerStatus - yyc4525 = true + if yyj4568 >= len(yyv4568) { + yyv4568 = append(yyv4568, ContainerStatus{}) // var yyz4568 ContainerStatus + yyc4568 = true } - yyh4525.ElemContainerState(yyj4525) - if yyj4525 < len(yyv4525) { + yyh4568.ElemContainerState(yyj4568) + if yyj4568 < len(yyv4568) { if r.TryDecodeAsNil() { - yyv4525[yyj4525] = ContainerStatus{} + yyv4568[yyj4568] = ContainerStatus{} } else { - yyv4528 := &yyv4525[yyj4525] - yyv4528.CodecDecodeSelf(d) + yyv4571 := &yyv4568[yyj4568] + yyv4571.CodecDecodeSelf(d) } } else { @@ -57050,17 +57661,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4525 < len(yyv4525) { - yyv4525 = yyv4525[:yyj4525] - yyc4525 = true - } else if yyj4525 == 0 && yyv4525 == nil { - yyv4525 = []ContainerStatus{} - yyc4525 = true + if yyj4568 < len(yyv4568) { + yyv4568 = yyv4568[:yyj4568] + yyc4568 = true + } else if yyj4568 == 0 && yyv4568 == nil { + yyv4568 = []ContainerStatus{} + yyc4568 = true } } - yyh4525.End() - if yyc4525 { - *v = yyv4525 + yyh4568.End() + if yyc4568 { + *v = yyv4568 } } @@ -57069,10 +57680,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4529 := range v { + for _, yyv4572 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4530 := &yyv4529 - yy4530.CodecEncodeSelf(e) + yy4573 := &yyv4572 + yy4573.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57082,83 +57693,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4531 := *v - yyh4531, yyl4531 := z.DecSliceHelperStart() - var yyc4531 bool - if yyl4531 == 0 { - if yyv4531 == nil { - yyv4531 = []PodTemplate{} - yyc4531 = true - } else if len(yyv4531) != 0 { - yyv4531 = yyv4531[:0] - yyc4531 = true + yyv4574 := *v + yyh4574, yyl4574 := z.DecSliceHelperStart() + var yyc4574 bool + if yyl4574 == 0 { + if yyv4574 == nil { + yyv4574 = []PodTemplate{} + yyc4574 = true + } else if len(yyv4574) != 0 { + yyv4574 = yyv4574[:0] + yyc4574 = true } - } else if yyl4531 > 0 { - var yyrr4531, yyrl4531 int - var yyrt4531 bool - if yyl4531 > cap(yyv4531) { + } else if yyl4574 > 0 { + var yyrr4574, yyrl4574 int + var yyrt4574 bool + if yyl4574 > cap(yyv4574) { - yyrg4531 := len(yyv4531) > 0 - yyv24531 := yyv4531 - yyrl4531, yyrt4531 = z.DecInferLen(yyl4531, z.DecBasicHandle().MaxInitLen, 672) - if yyrt4531 { - if yyrl4531 <= cap(yyv4531) { - yyv4531 = yyv4531[:yyrl4531] + yyrg4574 := len(yyv4574) > 0 + yyv24574 := yyv4574 + yyrl4574, yyrt4574 = z.DecInferLen(yyl4574, z.DecBasicHandle().MaxInitLen, 672) + if yyrt4574 { + if yyrl4574 <= cap(yyv4574) { + yyv4574 = yyv4574[:yyrl4574] } else { - yyv4531 = make([]PodTemplate, yyrl4531) + yyv4574 = make([]PodTemplate, yyrl4574) } } else { - yyv4531 = make([]PodTemplate, yyrl4531) + yyv4574 = make([]PodTemplate, yyrl4574) } - yyc4531 = true - yyrr4531 = len(yyv4531) - if yyrg4531 { - copy(yyv4531, yyv24531) + yyc4574 = true + yyrr4574 = len(yyv4574) + if yyrg4574 { + copy(yyv4574, yyv24574) } - } else if yyl4531 != len(yyv4531) { - yyv4531 = yyv4531[:yyl4531] - yyc4531 = true + } else if yyl4574 != len(yyv4574) { + yyv4574 = yyv4574[:yyl4574] + yyc4574 = true } - yyj4531 := 0 - for ; yyj4531 < yyrr4531; yyj4531++ { - yyh4531.ElemContainerState(yyj4531) + yyj4574 := 0 + for ; yyj4574 < yyrr4574; yyj4574++ { + yyh4574.ElemContainerState(yyj4574) if r.TryDecodeAsNil() { - yyv4531[yyj4531] = PodTemplate{} + yyv4574[yyj4574] = PodTemplate{} } else { - yyv4532 := &yyv4531[yyj4531] - yyv4532.CodecDecodeSelf(d) + yyv4575 := &yyv4574[yyj4574] + yyv4575.CodecDecodeSelf(d) } } - if yyrt4531 { - for ; yyj4531 < yyl4531; yyj4531++ { - yyv4531 = append(yyv4531, PodTemplate{}) - yyh4531.ElemContainerState(yyj4531) + if yyrt4574 { + for ; yyj4574 < yyl4574; yyj4574++ { + yyv4574 = append(yyv4574, PodTemplate{}) + yyh4574.ElemContainerState(yyj4574) if r.TryDecodeAsNil() { - yyv4531[yyj4531] = PodTemplate{} + yyv4574[yyj4574] = PodTemplate{} } else { - yyv4533 := &yyv4531[yyj4531] - yyv4533.CodecDecodeSelf(d) + yyv4576 := &yyv4574[yyj4574] + yyv4576.CodecDecodeSelf(d) } } } } else { - yyj4531 := 0 - for ; !r.CheckBreak(); yyj4531++ { + yyj4574 := 0 + for ; !r.CheckBreak(); yyj4574++ { - if yyj4531 >= len(yyv4531) { - yyv4531 = append(yyv4531, PodTemplate{}) // var yyz4531 PodTemplate - yyc4531 = true + if yyj4574 >= len(yyv4574) { + yyv4574 = append(yyv4574, PodTemplate{}) // var yyz4574 PodTemplate + yyc4574 = true } - yyh4531.ElemContainerState(yyj4531) - if yyj4531 < len(yyv4531) { + yyh4574.ElemContainerState(yyj4574) + if yyj4574 < len(yyv4574) { if r.TryDecodeAsNil() { - yyv4531[yyj4531] = PodTemplate{} + yyv4574[yyj4574] = PodTemplate{} } else { - yyv4534 := &yyv4531[yyj4531] - yyv4534.CodecDecodeSelf(d) + yyv4577 := &yyv4574[yyj4574] + yyv4577.CodecDecodeSelf(d) } } else { @@ -57166,17 +57777,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4531 < len(yyv4531) { - yyv4531 = yyv4531[:yyj4531] - yyc4531 = true - } else if yyj4531 == 0 && yyv4531 == nil { - yyv4531 = []PodTemplate{} - yyc4531 = true + if yyj4574 < len(yyv4574) { + yyv4574 = yyv4574[:yyj4574] + yyc4574 = true + } else if yyj4574 == 0 && yyv4574 == nil { + yyv4574 = []PodTemplate{} + yyc4574 = true } } - yyh4531.End() - if yyc4531 { - *v = yyv4531 + yyh4574.End() + if yyc4574 { + *v = yyv4574 } } @@ -57185,10 +57796,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4535 := range v { + for _, yyv4578 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4536 := &yyv4535 - yy4536.CodecEncodeSelf(e) + yy4579 := &yyv4578 + yy4579.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57198,83 +57809,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4537 := *v - yyh4537, yyl4537 := z.DecSliceHelperStart() - var yyc4537 bool - if yyl4537 == 0 { - if yyv4537 == nil { - yyv4537 = []ReplicationController{} - yyc4537 = true - } else if len(yyv4537) != 0 { - yyv4537 = yyv4537[:0] - yyc4537 = true + yyv4580 := *v + yyh4580, yyl4580 := z.DecSliceHelperStart() + var yyc4580 bool + if yyl4580 == 0 { + if yyv4580 == nil { + yyv4580 = []ReplicationController{} + yyc4580 = true + } else if len(yyv4580) != 0 { + yyv4580 = yyv4580[:0] + yyc4580 = true } - } else if yyl4537 > 0 { - var yyrr4537, yyrl4537 int - var yyrt4537 bool - if yyl4537 > cap(yyv4537) { + } else if yyl4580 > 0 { + var yyrr4580, yyrl4580 int + var yyrt4580 bool + if yyl4580 > cap(yyv4580) { - yyrg4537 := len(yyv4537) > 0 - yyv24537 := yyv4537 - yyrl4537, yyrt4537 = z.DecInferLen(yyl4537, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4537 { - if yyrl4537 <= cap(yyv4537) { - yyv4537 = yyv4537[:yyrl4537] + yyrg4580 := len(yyv4580) > 0 + yyv24580 := yyv4580 + yyrl4580, yyrt4580 = z.DecInferLen(yyl4580, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4580 { + if yyrl4580 <= cap(yyv4580) { + yyv4580 = yyv4580[:yyrl4580] } else { - yyv4537 = make([]ReplicationController, yyrl4537) + yyv4580 = make([]ReplicationController, yyrl4580) } } else { - yyv4537 = make([]ReplicationController, yyrl4537) + yyv4580 = make([]ReplicationController, yyrl4580) } - yyc4537 = true - yyrr4537 = len(yyv4537) - if yyrg4537 { - copy(yyv4537, yyv24537) + yyc4580 = true + yyrr4580 = len(yyv4580) + if yyrg4580 { + copy(yyv4580, yyv24580) } - } else if yyl4537 != len(yyv4537) { - yyv4537 = yyv4537[:yyl4537] - yyc4537 = true + } else if yyl4580 != len(yyv4580) { + yyv4580 = yyv4580[:yyl4580] + yyc4580 = true } - yyj4537 := 0 - for ; yyj4537 < yyrr4537; yyj4537++ { - yyh4537.ElemContainerState(yyj4537) + yyj4580 := 0 + for ; yyj4580 < yyrr4580; yyj4580++ { + yyh4580.ElemContainerState(yyj4580) if r.TryDecodeAsNil() { - yyv4537[yyj4537] = ReplicationController{} + yyv4580[yyj4580] = ReplicationController{} } else { - yyv4538 := &yyv4537[yyj4537] - yyv4538.CodecDecodeSelf(d) + yyv4581 := &yyv4580[yyj4580] + yyv4581.CodecDecodeSelf(d) } } - if yyrt4537 { - for ; yyj4537 < yyl4537; yyj4537++ { - yyv4537 = append(yyv4537, ReplicationController{}) - yyh4537.ElemContainerState(yyj4537) + if yyrt4580 { + for ; yyj4580 < yyl4580; yyj4580++ { + yyv4580 = append(yyv4580, ReplicationController{}) + yyh4580.ElemContainerState(yyj4580) if r.TryDecodeAsNil() { - yyv4537[yyj4537] = ReplicationController{} + yyv4580[yyj4580] = ReplicationController{} } else { - yyv4539 := &yyv4537[yyj4537] - yyv4539.CodecDecodeSelf(d) + yyv4582 := &yyv4580[yyj4580] + yyv4582.CodecDecodeSelf(d) } } } } else { - yyj4537 := 0 - for ; !r.CheckBreak(); yyj4537++ { + yyj4580 := 0 + for ; !r.CheckBreak(); yyj4580++ { - if yyj4537 >= len(yyv4537) { - yyv4537 = append(yyv4537, ReplicationController{}) // var yyz4537 ReplicationController - yyc4537 = true + if yyj4580 >= len(yyv4580) { + yyv4580 = append(yyv4580, ReplicationController{}) // var yyz4580 ReplicationController + yyc4580 = true } - yyh4537.ElemContainerState(yyj4537) - if yyj4537 < len(yyv4537) { + yyh4580.ElemContainerState(yyj4580) + if yyj4580 < len(yyv4580) { if r.TryDecodeAsNil() { - yyv4537[yyj4537] = ReplicationController{} + yyv4580[yyj4580] = ReplicationController{} } else { - yyv4540 := &yyv4537[yyj4537] - yyv4540.CodecDecodeSelf(d) + yyv4583 := &yyv4580[yyj4580] + yyv4583.CodecDecodeSelf(d) } } else { @@ -57282,17 +57893,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4537 < len(yyv4537) { - yyv4537 = yyv4537[:yyj4537] - yyc4537 = true - } else if yyj4537 == 0 && yyv4537 == nil { - yyv4537 = []ReplicationController{} - yyc4537 = true + if yyj4580 < len(yyv4580) { + yyv4580 = yyv4580[:yyj4580] + yyc4580 = true + } else if yyj4580 == 0 && yyv4580 == nil { + yyv4580 = []ReplicationController{} + yyc4580 = true } } - yyh4537.End() - if yyc4537 { - *v = yyv4537 + yyh4580.End() + if yyc4580 { + *v = yyv4580 } } @@ -57301,10 +57912,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4541 := range v { + for _, yyv4584 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4542 := &yyv4541 - yy4542.CodecEncodeSelf(e) + yy4585 := &yyv4584 + yy4585.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57314,83 +57925,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4543 := *v - yyh4543, yyl4543 := z.DecSliceHelperStart() - var yyc4543 bool - if yyl4543 == 0 { - if yyv4543 == nil { - yyv4543 = []Service{} - yyc4543 = true - } else if len(yyv4543) != 0 { - yyv4543 = yyv4543[:0] - yyc4543 = true + yyv4586 := *v + yyh4586, yyl4586 := z.DecSliceHelperStart() + var yyc4586 bool + if yyl4586 == 0 { + if yyv4586 == nil { + yyv4586 = []Service{} + yyc4586 = true + } else if len(yyv4586) != 0 { + yyv4586 = yyv4586[:0] + yyc4586 = true } - } else if yyl4543 > 0 { - var yyrr4543, yyrl4543 int - var yyrt4543 bool - if yyl4543 > cap(yyv4543) { + } else if yyl4586 > 0 { + var yyrr4586, yyrl4586 int + var yyrt4586 bool + if yyl4586 > cap(yyv4586) { - yyrg4543 := len(yyv4543) > 0 - yyv24543 := yyv4543 - yyrl4543, yyrt4543 = z.DecInferLen(yyl4543, z.DecBasicHandle().MaxInitLen, 408) - if yyrt4543 { - if yyrl4543 <= cap(yyv4543) { - yyv4543 = yyv4543[:yyrl4543] + yyrg4586 := len(yyv4586) > 0 + yyv24586 := yyv4586 + yyrl4586, yyrt4586 = z.DecInferLen(yyl4586, z.DecBasicHandle().MaxInitLen, 408) + if yyrt4586 { + if yyrl4586 <= cap(yyv4586) { + yyv4586 = yyv4586[:yyrl4586] } else { - yyv4543 = make([]Service, yyrl4543) + yyv4586 = make([]Service, yyrl4586) } } else { - yyv4543 = make([]Service, yyrl4543) + yyv4586 = make([]Service, yyrl4586) } - yyc4543 = true - yyrr4543 = len(yyv4543) - if yyrg4543 { - copy(yyv4543, yyv24543) + yyc4586 = true + yyrr4586 = len(yyv4586) + if yyrg4586 { + copy(yyv4586, yyv24586) } - } else if yyl4543 != len(yyv4543) { - yyv4543 = yyv4543[:yyl4543] - yyc4543 = true + } else if yyl4586 != len(yyv4586) { + yyv4586 = yyv4586[:yyl4586] + yyc4586 = true } - yyj4543 := 0 - for ; yyj4543 < yyrr4543; yyj4543++ { - yyh4543.ElemContainerState(yyj4543) + yyj4586 := 0 + for ; yyj4586 < yyrr4586; yyj4586++ { + yyh4586.ElemContainerState(yyj4586) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = Service{} + yyv4586[yyj4586] = Service{} } else { - yyv4544 := &yyv4543[yyj4543] - yyv4544.CodecDecodeSelf(d) + yyv4587 := &yyv4586[yyj4586] + yyv4587.CodecDecodeSelf(d) } } - if yyrt4543 { - for ; yyj4543 < yyl4543; yyj4543++ { - yyv4543 = append(yyv4543, Service{}) - yyh4543.ElemContainerState(yyj4543) + if yyrt4586 { + for ; yyj4586 < yyl4586; yyj4586++ { + yyv4586 = append(yyv4586, Service{}) + yyh4586.ElemContainerState(yyj4586) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = Service{} + yyv4586[yyj4586] = Service{} } else { - yyv4545 := &yyv4543[yyj4543] - yyv4545.CodecDecodeSelf(d) + yyv4588 := &yyv4586[yyj4586] + yyv4588.CodecDecodeSelf(d) } } } } else { - yyj4543 := 0 - for ; !r.CheckBreak(); yyj4543++ { + yyj4586 := 0 + for ; !r.CheckBreak(); yyj4586++ { - if yyj4543 >= len(yyv4543) { - yyv4543 = append(yyv4543, Service{}) // var yyz4543 Service - yyc4543 = true + if yyj4586 >= len(yyv4586) { + yyv4586 = append(yyv4586, Service{}) // var yyz4586 Service + yyc4586 = true } - yyh4543.ElemContainerState(yyj4543) - if yyj4543 < len(yyv4543) { + yyh4586.ElemContainerState(yyj4586) + if yyj4586 < len(yyv4586) { if r.TryDecodeAsNil() { - yyv4543[yyj4543] = Service{} + yyv4586[yyj4586] = Service{} } else { - yyv4546 := &yyv4543[yyj4543] - yyv4546.CodecDecodeSelf(d) + yyv4589 := &yyv4586[yyj4586] + yyv4589.CodecDecodeSelf(d) } } else { @@ -57398,17 +58009,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4543 < len(yyv4543) { - yyv4543 = yyv4543[:yyj4543] - yyc4543 = true - } else if yyj4543 == 0 && yyv4543 == nil { - yyv4543 = []Service{} - yyc4543 = true + if yyj4586 < len(yyv4586) { + yyv4586 = yyv4586[:yyj4586] + yyc4586 = true + } else if yyj4586 == 0 && yyv4586 == nil { + yyv4586 = []Service{} + yyc4586 = true } } - yyh4543.End() - if yyc4543 { - *v = yyv4543 + yyh4586.End() + if yyc4586 { + *v = yyv4586 } } @@ -57417,10 +58028,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4547 := range v { + for _, yyv4590 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4548 := &yyv4547 - yy4548.CodecEncodeSelf(e) + yy4591 := &yyv4590 + yy4591.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57430,83 +58041,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4549 := *v - yyh4549, yyl4549 := z.DecSliceHelperStart() - var yyc4549 bool - if yyl4549 == 0 { - if yyv4549 == nil { - yyv4549 = []LoadBalancerIngress{} - yyc4549 = true - } else if len(yyv4549) != 0 { - yyv4549 = yyv4549[:0] - yyc4549 = true + yyv4592 := *v + yyh4592, yyl4592 := z.DecSliceHelperStart() + var yyc4592 bool + if yyl4592 == 0 { + if yyv4592 == nil { + yyv4592 = []LoadBalancerIngress{} + yyc4592 = true + } else if len(yyv4592) != 0 { + yyv4592 = yyv4592[:0] + yyc4592 = true } - } else if yyl4549 > 0 { - var yyrr4549, yyrl4549 int - var yyrt4549 bool - if yyl4549 > cap(yyv4549) { + } else if yyl4592 > 0 { + var yyrr4592, yyrl4592 int + var yyrt4592 bool + if yyl4592 > cap(yyv4592) { - yyrg4549 := len(yyv4549) > 0 - yyv24549 := yyv4549 - yyrl4549, yyrt4549 = z.DecInferLen(yyl4549, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4549 { - if yyrl4549 <= cap(yyv4549) { - yyv4549 = yyv4549[:yyrl4549] + yyrg4592 := len(yyv4592) > 0 + yyv24592 := yyv4592 + yyrl4592, yyrt4592 = z.DecInferLen(yyl4592, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4592 { + if yyrl4592 <= cap(yyv4592) { + yyv4592 = yyv4592[:yyrl4592] } else { - yyv4549 = make([]LoadBalancerIngress, yyrl4549) + yyv4592 = make([]LoadBalancerIngress, yyrl4592) } } else { - yyv4549 = make([]LoadBalancerIngress, yyrl4549) + yyv4592 = make([]LoadBalancerIngress, yyrl4592) } - yyc4549 = true - yyrr4549 = len(yyv4549) - if yyrg4549 { - copy(yyv4549, yyv24549) + yyc4592 = true + yyrr4592 = len(yyv4592) + if yyrg4592 { + copy(yyv4592, yyv24592) } - } else if yyl4549 != len(yyv4549) { - yyv4549 = yyv4549[:yyl4549] - yyc4549 = true + } else if yyl4592 != len(yyv4592) { + yyv4592 = yyv4592[:yyl4592] + yyc4592 = true } - yyj4549 := 0 - for ; yyj4549 < yyrr4549; yyj4549++ { - yyh4549.ElemContainerState(yyj4549) + yyj4592 := 0 + for ; yyj4592 < yyrr4592; yyj4592++ { + yyh4592.ElemContainerState(yyj4592) if r.TryDecodeAsNil() { - yyv4549[yyj4549] = LoadBalancerIngress{} + yyv4592[yyj4592] = LoadBalancerIngress{} } else { - yyv4550 := &yyv4549[yyj4549] - yyv4550.CodecDecodeSelf(d) + yyv4593 := &yyv4592[yyj4592] + yyv4593.CodecDecodeSelf(d) } } - if yyrt4549 { - for ; yyj4549 < yyl4549; yyj4549++ { - yyv4549 = append(yyv4549, LoadBalancerIngress{}) - yyh4549.ElemContainerState(yyj4549) + if yyrt4592 { + for ; yyj4592 < yyl4592; yyj4592++ { + yyv4592 = append(yyv4592, LoadBalancerIngress{}) + yyh4592.ElemContainerState(yyj4592) if r.TryDecodeAsNil() { - yyv4549[yyj4549] = LoadBalancerIngress{} + yyv4592[yyj4592] = LoadBalancerIngress{} } else { - yyv4551 := &yyv4549[yyj4549] - yyv4551.CodecDecodeSelf(d) + yyv4594 := &yyv4592[yyj4592] + yyv4594.CodecDecodeSelf(d) } } } } else { - yyj4549 := 0 - for ; !r.CheckBreak(); yyj4549++ { + yyj4592 := 0 + for ; !r.CheckBreak(); yyj4592++ { - if yyj4549 >= len(yyv4549) { - yyv4549 = append(yyv4549, LoadBalancerIngress{}) // var yyz4549 LoadBalancerIngress - yyc4549 = true + if yyj4592 >= len(yyv4592) { + yyv4592 = append(yyv4592, LoadBalancerIngress{}) // var yyz4592 LoadBalancerIngress + yyc4592 = true } - yyh4549.ElemContainerState(yyj4549) - if yyj4549 < len(yyv4549) { + yyh4592.ElemContainerState(yyj4592) + if yyj4592 < len(yyv4592) { if r.TryDecodeAsNil() { - yyv4549[yyj4549] = LoadBalancerIngress{} + yyv4592[yyj4592] = LoadBalancerIngress{} } else { - yyv4552 := &yyv4549[yyj4549] - yyv4552.CodecDecodeSelf(d) + yyv4595 := &yyv4592[yyj4592] + yyv4595.CodecDecodeSelf(d) } } else { @@ -57514,17 +58125,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4549 < len(yyv4549) { - yyv4549 = yyv4549[:yyj4549] - yyc4549 = true - } else if yyj4549 == 0 && yyv4549 == nil { - yyv4549 = []LoadBalancerIngress{} - yyc4549 = true + if yyj4592 < len(yyv4592) { + yyv4592 = yyv4592[:yyj4592] + yyc4592 = true + } else if yyj4592 == 0 && yyv4592 == nil { + yyv4592 = []LoadBalancerIngress{} + yyc4592 = true } } - yyh4549.End() - if yyc4549 { - *v = yyv4549 + yyh4592.End() + if yyc4592 { + *v = yyv4592 } } @@ -57533,10 +58144,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4553 := range v { + for _, yyv4596 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4554 := &yyv4553 - yy4554.CodecEncodeSelf(e) + yy4597 := &yyv4596 + yy4597.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57546,83 +58157,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4555 := *v - yyh4555, yyl4555 := z.DecSliceHelperStart() - var yyc4555 bool - if yyl4555 == 0 { - if yyv4555 == nil { - yyv4555 = []ServicePort{} - yyc4555 = true - } else if len(yyv4555) != 0 { - yyv4555 = yyv4555[:0] - yyc4555 = true + yyv4598 := *v + yyh4598, yyl4598 := z.DecSliceHelperStart() + var yyc4598 bool + if yyl4598 == 0 { + if yyv4598 == nil { + yyv4598 = []ServicePort{} + yyc4598 = true + } else if len(yyv4598) != 0 { + yyv4598 = yyv4598[:0] + yyc4598 = true } - } else if yyl4555 > 0 { - var yyrr4555, yyrl4555 int - var yyrt4555 bool - if yyl4555 > cap(yyv4555) { + } else if yyl4598 > 0 { + var yyrr4598, yyrl4598 int + var yyrt4598 bool + if yyl4598 > cap(yyv4598) { - yyrg4555 := len(yyv4555) > 0 - yyv24555 := yyv4555 - yyrl4555, yyrt4555 = z.DecInferLen(yyl4555, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4555 { - if yyrl4555 <= cap(yyv4555) { - yyv4555 = yyv4555[:yyrl4555] + yyrg4598 := len(yyv4598) > 0 + yyv24598 := yyv4598 + yyrl4598, yyrt4598 = z.DecInferLen(yyl4598, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4598 { + if yyrl4598 <= cap(yyv4598) { + yyv4598 = yyv4598[:yyrl4598] } else { - yyv4555 = make([]ServicePort, yyrl4555) + yyv4598 = make([]ServicePort, yyrl4598) } } else { - yyv4555 = make([]ServicePort, yyrl4555) + yyv4598 = make([]ServicePort, yyrl4598) } - yyc4555 = true - yyrr4555 = len(yyv4555) - if yyrg4555 { - copy(yyv4555, yyv24555) + yyc4598 = true + yyrr4598 = len(yyv4598) + if yyrg4598 { + copy(yyv4598, yyv24598) } - } else if yyl4555 != len(yyv4555) { - yyv4555 = yyv4555[:yyl4555] - yyc4555 = true + } else if yyl4598 != len(yyv4598) { + yyv4598 = yyv4598[:yyl4598] + yyc4598 = true } - yyj4555 := 0 - for ; yyj4555 < yyrr4555; yyj4555++ { - yyh4555.ElemContainerState(yyj4555) + yyj4598 := 0 + for ; yyj4598 < yyrr4598; yyj4598++ { + yyh4598.ElemContainerState(yyj4598) if r.TryDecodeAsNil() { - yyv4555[yyj4555] = ServicePort{} + yyv4598[yyj4598] = ServicePort{} } else { - yyv4556 := &yyv4555[yyj4555] - yyv4556.CodecDecodeSelf(d) + yyv4599 := &yyv4598[yyj4598] + yyv4599.CodecDecodeSelf(d) } } - if yyrt4555 { - for ; yyj4555 < yyl4555; yyj4555++ { - yyv4555 = append(yyv4555, ServicePort{}) - yyh4555.ElemContainerState(yyj4555) + if yyrt4598 { + for ; yyj4598 < yyl4598; yyj4598++ { + yyv4598 = append(yyv4598, ServicePort{}) + yyh4598.ElemContainerState(yyj4598) if r.TryDecodeAsNil() { - yyv4555[yyj4555] = ServicePort{} + yyv4598[yyj4598] = ServicePort{} } else { - yyv4557 := &yyv4555[yyj4555] - yyv4557.CodecDecodeSelf(d) + yyv4600 := &yyv4598[yyj4598] + yyv4600.CodecDecodeSelf(d) } } } } else { - yyj4555 := 0 - for ; !r.CheckBreak(); yyj4555++ { + yyj4598 := 0 + for ; !r.CheckBreak(); yyj4598++ { - if yyj4555 >= len(yyv4555) { - yyv4555 = append(yyv4555, ServicePort{}) // var yyz4555 ServicePort - yyc4555 = true + if yyj4598 >= len(yyv4598) { + yyv4598 = append(yyv4598, ServicePort{}) // var yyz4598 ServicePort + yyc4598 = true } - yyh4555.ElemContainerState(yyj4555) - if yyj4555 < len(yyv4555) { + yyh4598.ElemContainerState(yyj4598) + if yyj4598 < len(yyv4598) { if r.TryDecodeAsNil() { - yyv4555[yyj4555] = ServicePort{} + yyv4598[yyj4598] = ServicePort{} } else { - yyv4558 := &yyv4555[yyj4555] - yyv4558.CodecDecodeSelf(d) + yyv4601 := &yyv4598[yyj4598] + yyv4601.CodecDecodeSelf(d) } } else { @@ -57630,17 +58241,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4555 < len(yyv4555) { - yyv4555 = yyv4555[:yyj4555] - yyc4555 = true - } else if yyj4555 == 0 && yyv4555 == nil { - yyv4555 = []ServicePort{} - yyc4555 = true + if yyj4598 < len(yyv4598) { + yyv4598 = yyv4598[:yyj4598] + yyc4598 = true + } else if yyj4598 == 0 && yyv4598 == nil { + yyv4598 = []ServicePort{} + yyc4598 = true } } - yyh4555.End() - if yyc4555 { - *v = yyv4555 + yyh4598.End() + if yyc4598 { + *v = yyv4598 } } @@ -57649,10 +58260,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4559 := range v { + for _, yyv4602 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4560 := &yyv4559 - yy4560.CodecEncodeSelf(e) + yy4603 := &yyv4602 + yy4603.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57662,83 +58273,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4561 := *v - yyh4561, yyl4561 := z.DecSliceHelperStart() - var yyc4561 bool - if yyl4561 == 0 { - if yyv4561 == nil { - yyv4561 = []ObjectReference{} - yyc4561 = true - } else if len(yyv4561) != 0 { - yyv4561 = yyv4561[:0] - yyc4561 = true + yyv4604 := *v + yyh4604, yyl4604 := z.DecSliceHelperStart() + var yyc4604 bool + if yyl4604 == 0 { + if yyv4604 == nil { + yyv4604 = []ObjectReference{} + yyc4604 = true + } else if len(yyv4604) != 0 { + yyv4604 = yyv4604[:0] + yyc4604 = true } - } else if yyl4561 > 0 { - var yyrr4561, yyrl4561 int - var yyrt4561 bool - if yyl4561 > cap(yyv4561) { + } else if yyl4604 > 0 { + var yyrr4604, yyrl4604 int + var yyrt4604 bool + if yyl4604 > cap(yyv4604) { - yyrg4561 := len(yyv4561) > 0 - yyv24561 := yyv4561 - yyrl4561, yyrt4561 = z.DecInferLen(yyl4561, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4561 { - if yyrl4561 <= cap(yyv4561) { - yyv4561 = yyv4561[:yyrl4561] + yyrg4604 := len(yyv4604) > 0 + yyv24604 := yyv4604 + yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4604 { + if yyrl4604 <= cap(yyv4604) { + yyv4604 = yyv4604[:yyrl4604] } else { - yyv4561 = make([]ObjectReference, yyrl4561) + yyv4604 = make([]ObjectReference, yyrl4604) } } else { - yyv4561 = make([]ObjectReference, yyrl4561) + yyv4604 = make([]ObjectReference, yyrl4604) } - yyc4561 = true - yyrr4561 = len(yyv4561) - if yyrg4561 { - copy(yyv4561, yyv24561) + yyc4604 = true + yyrr4604 = len(yyv4604) + if yyrg4604 { + copy(yyv4604, yyv24604) } - } else if yyl4561 != len(yyv4561) { - yyv4561 = yyv4561[:yyl4561] - yyc4561 = true + } else if yyl4604 != len(yyv4604) { + yyv4604 = yyv4604[:yyl4604] + yyc4604 = true } - yyj4561 := 0 - for ; yyj4561 < yyrr4561; yyj4561++ { - yyh4561.ElemContainerState(yyj4561) + yyj4604 := 0 + for ; yyj4604 < yyrr4604; yyj4604++ { + yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4561[yyj4561] = ObjectReference{} + yyv4604[yyj4604] = ObjectReference{} } else { - yyv4562 := &yyv4561[yyj4561] - yyv4562.CodecDecodeSelf(d) + yyv4605 := &yyv4604[yyj4604] + yyv4605.CodecDecodeSelf(d) } } - if yyrt4561 { - for ; yyj4561 < yyl4561; yyj4561++ { - yyv4561 = append(yyv4561, ObjectReference{}) - yyh4561.ElemContainerState(yyj4561) + if yyrt4604 { + for ; yyj4604 < yyl4604; yyj4604++ { + yyv4604 = append(yyv4604, ObjectReference{}) + yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4561[yyj4561] = ObjectReference{} + yyv4604[yyj4604] = ObjectReference{} } else { - yyv4563 := &yyv4561[yyj4561] - yyv4563.CodecDecodeSelf(d) + yyv4606 := &yyv4604[yyj4604] + yyv4606.CodecDecodeSelf(d) } } } } else { - yyj4561 := 0 - for ; !r.CheckBreak(); yyj4561++ { + yyj4604 := 0 + for ; !r.CheckBreak(); yyj4604++ { - if yyj4561 >= len(yyv4561) { - yyv4561 = append(yyv4561, ObjectReference{}) // var yyz4561 ObjectReference - yyc4561 = true + if yyj4604 >= len(yyv4604) { + yyv4604 = append(yyv4604, ObjectReference{}) // var yyz4604 ObjectReference + yyc4604 = true } - yyh4561.ElemContainerState(yyj4561) - if yyj4561 < len(yyv4561) { + yyh4604.ElemContainerState(yyj4604) + if yyj4604 < len(yyv4604) { if r.TryDecodeAsNil() { - yyv4561[yyj4561] = ObjectReference{} + yyv4604[yyj4604] = ObjectReference{} } else { - yyv4564 := &yyv4561[yyj4561] - yyv4564.CodecDecodeSelf(d) + yyv4607 := &yyv4604[yyj4604] + yyv4607.CodecDecodeSelf(d) } } else { @@ -57746,17 +58357,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4561 < len(yyv4561) { - yyv4561 = yyv4561[:yyj4561] - yyc4561 = true - } else if yyj4561 == 0 && yyv4561 == nil { - yyv4561 = []ObjectReference{} - yyc4561 = true + if yyj4604 < len(yyv4604) { + yyv4604 = yyv4604[:yyj4604] + yyc4604 = true + } else if yyj4604 == 0 && yyv4604 == nil { + yyv4604 = []ObjectReference{} + yyc4604 = true } } - yyh4561.End() - if yyc4561 { - *v = yyv4561 + yyh4604.End() + if yyc4604 { + *v = yyv4604 } } @@ -57765,10 +58376,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4565 := range v { + for _, yyv4608 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4566 := &yyv4565 - yy4566.CodecEncodeSelf(e) + yy4609 := &yyv4608 + yy4609.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57778,83 +58389,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4567 := *v - yyh4567, yyl4567 := z.DecSliceHelperStart() - var yyc4567 bool - if yyl4567 == 0 { - if yyv4567 == nil { - yyv4567 = []ServiceAccount{} - yyc4567 = true - } else if len(yyv4567) != 0 { - yyv4567 = yyv4567[:0] - yyc4567 = true + yyv4610 := *v + yyh4610, yyl4610 := z.DecSliceHelperStart() + var yyc4610 bool + if yyl4610 == 0 { + if yyv4610 == nil { + yyv4610 = []ServiceAccount{} + yyc4610 = true + } else if len(yyv4610) != 0 { + yyv4610 = yyv4610[:0] + yyc4610 = true } - } else if yyl4567 > 0 { - var yyrr4567, yyrl4567 int - var yyrt4567 bool - if yyl4567 > cap(yyv4567) { + } else if yyl4610 > 0 { + var yyrr4610, yyrl4610 int + var yyrt4610 bool + if yyl4610 > cap(yyv4610) { - yyrg4567 := len(yyv4567) > 0 - yyv24567 := yyv4567 - yyrl4567, yyrt4567 = z.DecInferLen(yyl4567, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4567 { - if yyrl4567 <= cap(yyv4567) { - yyv4567 = yyv4567[:yyrl4567] + yyrg4610 := len(yyv4610) > 0 + yyv24610 := yyv4610 + yyrl4610, yyrt4610 = z.DecInferLen(yyl4610, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4610 { + if yyrl4610 <= cap(yyv4610) { + yyv4610 = yyv4610[:yyrl4610] } else { - yyv4567 = make([]ServiceAccount, yyrl4567) + yyv4610 = make([]ServiceAccount, yyrl4610) } } else { - yyv4567 = make([]ServiceAccount, yyrl4567) + yyv4610 = make([]ServiceAccount, yyrl4610) } - yyc4567 = true - yyrr4567 = len(yyv4567) - if yyrg4567 { - copy(yyv4567, yyv24567) + yyc4610 = true + yyrr4610 = len(yyv4610) + if yyrg4610 { + copy(yyv4610, yyv24610) } - } else if yyl4567 != len(yyv4567) { - yyv4567 = yyv4567[:yyl4567] - yyc4567 = true + } else if yyl4610 != len(yyv4610) { + yyv4610 = yyv4610[:yyl4610] + yyc4610 = true } - yyj4567 := 0 - for ; yyj4567 < yyrr4567; yyj4567++ { - yyh4567.ElemContainerState(yyj4567) + yyj4610 := 0 + for ; yyj4610 < yyrr4610; yyj4610++ { + yyh4610.ElemContainerState(yyj4610) if r.TryDecodeAsNil() { - yyv4567[yyj4567] = ServiceAccount{} + yyv4610[yyj4610] = ServiceAccount{} } else { - yyv4568 := &yyv4567[yyj4567] - yyv4568.CodecDecodeSelf(d) + yyv4611 := &yyv4610[yyj4610] + yyv4611.CodecDecodeSelf(d) } } - if yyrt4567 { - for ; yyj4567 < yyl4567; yyj4567++ { - yyv4567 = append(yyv4567, ServiceAccount{}) - yyh4567.ElemContainerState(yyj4567) + if yyrt4610 { + for ; yyj4610 < yyl4610; yyj4610++ { + yyv4610 = append(yyv4610, ServiceAccount{}) + yyh4610.ElemContainerState(yyj4610) if r.TryDecodeAsNil() { - yyv4567[yyj4567] = ServiceAccount{} + yyv4610[yyj4610] = ServiceAccount{} } else { - yyv4569 := &yyv4567[yyj4567] - yyv4569.CodecDecodeSelf(d) + yyv4612 := &yyv4610[yyj4610] + yyv4612.CodecDecodeSelf(d) } } } } else { - yyj4567 := 0 - for ; !r.CheckBreak(); yyj4567++ { + yyj4610 := 0 + for ; !r.CheckBreak(); yyj4610++ { - if yyj4567 >= len(yyv4567) { - yyv4567 = append(yyv4567, ServiceAccount{}) // var yyz4567 ServiceAccount - yyc4567 = true + if yyj4610 >= len(yyv4610) { + yyv4610 = append(yyv4610, ServiceAccount{}) // var yyz4610 ServiceAccount + yyc4610 = true } - yyh4567.ElemContainerState(yyj4567) - if yyj4567 < len(yyv4567) { + yyh4610.ElemContainerState(yyj4610) + if yyj4610 < len(yyv4610) { if r.TryDecodeAsNil() { - yyv4567[yyj4567] = ServiceAccount{} + yyv4610[yyj4610] = ServiceAccount{} } else { - yyv4570 := &yyv4567[yyj4567] - yyv4570.CodecDecodeSelf(d) + yyv4613 := &yyv4610[yyj4610] + yyv4613.CodecDecodeSelf(d) } } else { @@ -57862,17 +58473,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4567 < len(yyv4567) { - yyv4567 = yyv4567[:yyj4567] - yyc4567 = true - } else if yyj4567 == 0 && yyv4567 == nil { - yyv4567 = []ServiceAccount{} - yyc4567 = true + if yyj4610 < len(yyv4610) { + yyv4610 = yyv4610[:yyj4610] + yyc4610 = true + } else if yyj4610 == 0 && yyv4610 == nil { + yyv4610 = []ServiceAccount{} + yyc4610 = true } } - yyh4567.End() - if yyc4567 { - *v = yyv4567 + yyh4610.End() + if yyc4610 { + *v = yyv4610 } } @@ -57881,10 +58492,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4571 := range v { + for _, yyv4614 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4572 := &yyv4571 - yy4572.CodecEncodeSelf(e) + yy4615 := &yyv4614 + yy4615.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57894,83 +58505,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4573 := *v - yyh4573, yyl4573 := z.DecSliceHelperStart() - var yyc4573 bool - if yyl4573 == 0 { - if yyv4573 == nil { - yyv4573 = []EndpointSubset{} - yyc4573 = true - } else if len(yyv4573) != 0 { - yyv4573 = yyv4573[:0] - yyc4573 = true + yyv4616 := *v + yyh4616, yyl4616 := z.DecSliceHelperStart() + var yyc4616 bool + if yyl4616 == 0 { + if yyv4616 == nil { + yyv4616 = []EndpointSubset{} + yyc4616 = true + } else if len(yyv4616) != 0 { + yyv4616 = yyv4616[:0] + yyc4616 = true } - } else if yyl4573 > 0 { - var yyrr4573, yyrl4573 int - var yyrt4573 bool - if yyl4573 > cap(yyv4573) { + } else if yyl4616 > 0 { + var yyrr4616, yyrl4616 int + var yyrt4616 bool + if yyl4616 > cap(yyv4616) { - yyrg4573 := len(yyv4573) > 0 - yyv24573 := yyv4573 - yyrl4573, yyrt4573 = z.DecInferLen(yyl4573, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4573 { - if yyrl4573 <= cap(yyv4573) { - yyv4573 = yyv4573[:yyrl4573] + yyrg4616 := len(yyv4616) > 0 + yyv24616 := yyv4616 + yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4616 { + if yyrl4616 <= cap(yyv4616) { + yyv4616 = yyv4616[:yyrl4616] } else { - yyv4573 = make([]EndpointSubset, yyrl4573) + yyv4616 = make([]EndpointSubset, yyrl4616) } } else { - yyv4573 = make([]EndpointSubset, yyrl4573) + yyv4616 = make([]EndpointSubset, yyrl4616) } - yyc4573 = true - yyrr4573 = len(yyv4573) - if yyrg4573 { - copy(yyv4573, yyv24573) + yyc4616 = true + yyrr4616 = len(yyv4616) + if yyrg4616 { + copy(yyv4616, yyv24616) } - } else if yyl4573 != len(yyv4573) { - yyv4573 = yyv4573[:yyl4573] - yyc4573 = true + } else if yyl4616 != len(yyv4616) { + yyv4616 = yyv4616[:yyl4616] + yyc4616 = true } - yyj4573 := 0 - for ; yyj4573 < yyrr4573; yyj4573++ { - yyh4573.ElemContainerState(yyj4573) + yyj4616 := 0 + for ; yyj4616 < yyrr4616; yyj4616++ { + yyh4616.ElemContainerState(yyj4616) if r.TryDecodeAsNil() { - yyv4573[yyj4573] = EndpointSubset{} + yyv4616[yyj4616] = EndpointSubset{} } else { - yyv4574 := &yyv4573[yyj4573] - yyv4574.CodecDecodeSelf(d) + yyv4617 := &yyv4616[yyj4616] + yyv4617.CodecDecodeSelf(d) } } - if yyrt4573 { - for ; yyj4573 < yyl4573; yyj4573++ { - yyv4573 = append(yyv4573, EndpointSubset{}) - yyh4573.ElemContainerState(yyj4573) + if yyrt4616 { + for ; yyj4616 < yyl4616; yyj4616++ { + yyv4616 = append(yyv4616, EndpointSubset{}) + yyh4616.ElemContainerState(yyj4616) if r.TryDecodeAsNil() { - yyv4573[yyj4573] = EndpointSubset{} + yyv4616[yyj4616] = EndpointSubset{} } else { - yyv4575 := &yyv4573[yyj4573] - yyv4575.CodecDecodeSelf(d) + yyv4618 := &yyv4616[yyj4616] + yyv4618.CodecDecodeSelf(d) } } } } else { - yyj4573 := 0 - for ; !r.CheckBreak(); yyj4573++ { + yyj4616 := 0 + for ; !r.CheckBreak(); yyj4616++ { - if yyj4573 >= len(yyv4573) { - yyv4573 = append(yyv4573, EndpointSubset{}) // var yyz4573 EndpointSubset - yyc4573 = true + if yyj4616 >= len(yyv4616) { + yyv4616 = append(yyv4616, EndpointSubset{}) // var yyz4616 EndpointSubset + yyc4616 = true } - yyh4573.ElemContainerState(yyj4573) - if yyj4573 < len(yyv4573) { + yyh4616.ElemContainerState(yyj4616) + if yyj4616 < len(yyv4616) { if r.TryDecodeAsNil() { - yyv4573[yyj4573] = EndpointSubset{} + yyv4616[yyj4616] = EndpointSubset{} } else { - yyv4576 := &yyv4573[yyj4573] - yyv4576.CodecDecodeSelf(d) + yyv4619 := &yyv4616[yyj4616] + yyv4619.CodecDecodeSelf(d) } } else { @@ -57978,17 +58589,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4573 < len(yyv4573) { - yyv4573 = yyv4573[:yyj4573] - yyc4573 = true - } else if yyj4573 == 0 && yyv4573 == nil { - yyv4573 = []EndpointSubset{} - yyc4573 = true + if yyj4616 < len(yyv4616) { + yyv4616 = yyv4616[:yyj4616] + yyc4616 = true + } else if yyj4616 == 0 && yyv4616 == nil { + yyv4616 = []EndpointSubset{} + yyc4616 = true } } - yyh4573.End() - if yyc4573 { - *v = yyv4573 + yyh4616.End() + if yyc4616 { + *v = yyv4616 } } @@ -57997,10 +58608,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4577 := range v { + for _, yyv4620 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4578 := &yyv4577 - yy4578.CodecEncodeSelf(e) + yy4621 := &yyv4620 + yy4621.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58010,83 +58621,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4579 := *v - yyh4579, yyl4579 := z.DecSliceHelperStart() - var yyc4579 bool - if yyl4579 == 0 { - if yyv4579 == nil { - yyv4579 = []EndpointAddress{} - yyc4579 = true - } else if len(yyv4579) != 0 { - yyv4579 = yyv4579[:0] - yyc4579 = true + yyv4622 := *v + yyh4622, yyl4622 := z.DecSliceHelperStart() + var yyc4622 bool + if yyl4622 == 0 { + if yyv4622 == nil { + yyv4622 = []EndpointAddress{} + yyc4622 = true + } else if len(yyv4622) != 0 { + yyv4622 = yyv4622[:0] + yyc4622 = true } - } else if yyl4579 > 0 { - var yyrr4579, yyrl4579 int - var yyrt4579 bool - if yyl4579 > cap(yyv4579) { + } else if yyl4622 > 0 { + var yyrr4622, yyrl4622 int + var yyrt4622 bool + if yyl4622 > cap(yyv4622) { - yyrg4579 := len(yyv4579) > 0 - yyv24579 := yyv4579 - yyrl4579, yyrt4579 = z.DecInferLen(yyl4579, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4579 { - if yyrl4579 <= cap(yyv4579) { - yyv4579 = yyv4579[:yyrl4579] + yyrg4622 := len(yyv4622) > 0 + yyv24622 := yyv4622 + yyrl4622, yyrt4622 = z.DecInferLen(yyl4622, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4622 { + if yyrl4622 <= cap(yyv4622) { + yyv4622 = yyv4622[:yyrl4622] } else { - yyv4579 = make([]EndpointAddress, yyrl4579) + yyv4622 = make([]EndpointAddress, yyrl4622) } } else { - yyv4579 = make([]EndpointAddress, yyrl4579) + yyv4622 = make([]EndpointAddress, yyrl4622) } - yyc4579 = true - yyrr4579 = len(yyv4579) - if yyrg4579 { - copy(yyv4579, yyv24579) + yyc4622 = true + yyrr4622 = len(yyv4622) + if yyrg4622 { + copy(yyv4622, yyv24622) } - } else if yyl4579 != len(yyv4579) { - yyv4579 = yyv4579[:yyl4579] - yyc4579 = true + } else if yyl4622 != len(yyv4622) { + yyv4622 = yyv4622[:yyl4622] + yyc4622 = true } - yyj4579 := 0 - for ; yyj4579 < yyrr4579; yyj4579++ { - yyh4579.ElemContainerState(yyj4579) + yyj4622 := 0 + for ; yyj4622 < yyrr4622; yyj4622++ { + yyh4622.ElemContainerState(yyj4622) if r.TryDecodeAsNil() { - yyv4579[yyj4579] = EndpointAddress{} + yyv4622[yyj4622] = EndpointAddress{} } else { - yyv4580 := &yyv4579[yyj4579] - yyv4580.CodecDecodeSelf(d) + yyv4623 := &yyv4622[yyj4622] + yyv4623.CodecDecodeSelf(d) } } - if yyrt4579 { - for ; yyj4579 < yyl4579; yyj4579++ { - yyv4579 = append(yyv4579, EndpointAddress{}) - yyh4579.ElemContainerState(yyj4579) + if yyrt4622 { + for ; yyj4622 < yyl4622; yyj4622++ { + yyv4622 = append(yyv4622, EndpointAddress{}) + yyh4622.ElemContainerState(yyj4622) if r.TryDecodeAsNil() { - yyv4579[yyj4579] = EndpointAddress{} + yyv4622[yyj4622] = EndpointAddress{} } else { - yyv4581 := &yyv4579[yyj4579] - yyv4581.CodecDecodeSelf(d) + yyv4624 := &yyv4622[yyj4622] + yyv4624.CodecDecodeSelf(d) } } } } else { - yyj4579 := 0 - for ; !r.CheckBreak(); yyj4579++ { + yyj4622 := 0 + for ; !r.CheckBreak(); yyj4622++ { - if yyj4579 >= len(yyv4579) { - yyv4579 = append(yyv4579, EndpointAddress{}) // var yyz4579 EndpointAddress - yyc4579 = true + if yyj4622 >= len(yyv4622) { + yyv4622 = append(yyv4622, EndpointAddress{}) // var yyz4622 EndpointAddress + yyc4622 = true } - yyh4579.ElemContainerState(yyj4579) - if yyj4579 < len(yyv4579) { + yyh4622.ElemContainerState(yyj4622) + if yyj4622 < len(yyv4622) { if r.TryDecodeAsNil() { - yyv4579[yyj4579] = EndpointAddress{} + yyv4622[yyj4622] = EndpointAddress{} } else { - yyv4582 := &yyv4579[yyj4579] - yyv4582.CodecDecodeSelf(d) + yyv4625 := &yyv4622[yyj4622] + yyv4625.CodecDecodeSelf(d) } } else { @@ -58094,17 +58705,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4579 < len(yyv4579) { - yyv4579 = yyv4579[:yyj4579] - yyc4579 = true - } else if yyj4579 == 0 && yyv4579 == nil { - yyv4579 = []EndpointAddress{} - yyc4579 = true + if yyj4622 < len(yyv4622) { + yyv4622 = yyv4622[:yyj4622] + yyc4622 = true + } else if yyj4622 == 0 && yyv4622 == nil { + yyv4622 = []EndpointAddress{} + yyc4622 = true } } - yyh4579.End() - if yyc4579 { - *v = yyv4579 + yyh4622.End() + if yyc4622 { + *v = yyv4622 } } @@ -58113,10 +58724,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4583 := range v { + for _, yyv4626 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4584 := &yyv4583 - yy4584.CodecEncodeSelf(e) + yy4627 := &yyv4626 + yy4627.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58126,83 +58737,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4585 := *v - yyh4585, yyl4585 := z.DecSliceHelperStart() - var yyc4585 bool - if yyl4585 == 0 { - if yyv4585 == nil { - yyv4585 = []EndpointPort{} - yyc4585 = true - } else if len(yyv4585) != 0 { - yyv4585 = yyv4585[:0] - yyc4585 = true + yyv4628 := *v + yyh4628, yyl4628 := z.DecSliceHelperStart() + var yyc4628 bool + if yyl4628 == 0 { + if yyv4628 == nil { + yyv4628 = []EndpointPort{} + yyc4628 = true + } else if len(yyv4628) != 0 { + yyv4628 = yyv4628[:0] + yyc4628 = true } - } else if yyl4585 > 0 { - var yyrr4585, yyrl4585 int - var yyrt4585 bool - if yyl4585 > cap(yyv4585) { + } else if yyl4628 > 0 { + var yyrr4628, yyrl4628 int + var yyrt4628 bool + if yyl4628 > cap(yyv4628) { - yyrg4585 := len(yyv4585) > 0 - yyv24585 := yyv4585 - yyrl4585, yyrt4585 = z.DecInferLen(yyl4585, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4585 { - if yyrl4585 <= cap(yyv4585) { - yyv4585 = yyv4585[:yyrl4585] + yyrg4628 := len(yyv4628) > 0 + yyv24628 := yyv4628 + yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4628 { + if yyrl4628 <= cap(yyv4628) { + yyv4628 = yyv4628[:yyrl4628] } else { - yyv4585 = make([]EndpointPort, yyrl4585) + yyv4628 = make([]EndpointPort, yyrl4628) } } else { - yyv4585 = make([]EndpointPort, yyrl4585) + yyv4628 = make([]EndpointPort, yyrl4628) } - yyc4585 = true - yyrr4585 = len(yyv4585) - if yyrg4585 { - copy(yyv4585, yyv24585) + yyc4628 = true + yyrr4628 = len(yyv4628) + if yyrg4628 { + copy(yyv4628, yyv24628) } - } else if yyl4585 != len(yyv4585) { - yyv4585 = yyv4585[:yyl4585] - yyc4585 = true + } else if yyl4628 != len(yyv4628) { + yyv4628 = yyv4628[:yyl4628] + yyc4628 = true } - yyj4585 := 0 - for ; yyj4585 < yyrr4585; yyj4585++ { - yyh4585.ElemContainerState(yyj4585) + yyj4628 := 0 + for ; yyj4628 < yyrr4628; yyj4628++ { + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4585[yyj4585] = EndpointPort{} + yyv4628[yyj4628] = EndpointPort{} } else { - yyv4586 := &yyv4585[yyj4585] - yyv4586.CodecDecodeSelf(d) + yyv4629 := &yyv4628[yyj4628] + yyv4629.CodecDecodeSelf(d) } } - if yyrt4585 { - for ; yyj4585 < yyl4585; yyj4585++ { - yyv4585 = append(yyv4585, EndpointPort{}) - yyh4585.ElemContainerState(yyj4585) + if yyrt4628 { + for ; yyj4628 < yyl4628; yyj4628++ { + yyv4628 = append(yyv4628, EndpointPort{}) + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4585[yyj4585] = EndpointPort{} + yyv4628[yyj4628] = EndpointPort{} } else { - yyv4587 := &yyv4585[yyj4585] - yyv4587.CodecDecodeSelf(d) + yyv4630 := &yyv4628[yyj4628] + yyv4630.CodecDecodeSelf(d) } } } } else { - yyj4585 := 0 - for ; !r.CheckBreak(); yyj4585++ { + yyj4628 := 0 + for ; !r.CheckBreak(); yyj4628++ { - if yyj4585 >= len(yyv4585) { - yyv4585 = append(yyv4585, EndpointPort{}) // var yyz4585 EndpointPort - yyc4585 = true + if yyj4628 >= len(yyv4628) { + yyv4628 = append(yyv4628, EndpointPort{}) // var yyz4628 EndpointPort + yyc4628 = true } - yyh4585.ElemContainerState(yyj4585) - if yyj4585 < len(yyv4585) { + yyh4628.ElemContainerState(yyj4628) + if yyj4628 < len(yyv4628) { if r.TryDecodeAsNil() { - yyv4585[yyj4585] = EndpointPort{} + yyv4628[yyj4628] = EndpointPort{} } else { - yyv4588 := &yyv4585[yyj4585] - yyv4588.CodecDecodeSelf(d) + yyv4631 := &yyv4628[yyj4628] + yyv4631.CodecDecodeSelf(d) } } else { @@ -58210,17 +58821,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4585 < len(yyv4585) { - yyv4585 = yyv4585[:yyj4585] - yyc4585 = true - } else if yyj4585 == 0 && yyv4585 == nil { - yyv4585 = []EndpointPort{} - yyc4585 = true + if yyj4628 < len(yyv4628) { + yyv4628 = yyv4628[:yyj4628] + yyc4628 = true + } else if yyj4628 == 0 && yyv4628 == nil { + yyv4628 = []EndpointPort{} + yyc4628 = true } } - yyh4585.End() - if yyc4585 { - *v = yyv4585 + yyh4628.End() + if yyc4628 { + *v = yyv4628 } } @@ -58229,10 +58840,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4589 := range v { + for _, yyv4632 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4590 := &yyv4589 - yy4590.CodecEncodeSelf(e) + yy4633 := &yyv4632 + yy4633.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58242,83 +58853,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4591 := *v - yyh4591, yyl4591 := z.DecSliceHelperStart() - var yyc4591 bool - if yyl4591 == 0 { - if yyv4591 == nil { - yyv4591 = []Endpoints{} - yyc4591 = true - } else if len(yyv4591) != 0 { - yyv4591 = yyv4591[:0] - yyc4591 = true + yyv4634 := *v + yyh4634, yyl4634 := z.DecSliceHelperStart() + var yyc4634 bool + if yyl4634 == 0 { + if yyv4634 == nil { + yyv4634 = []Endpoints{} + yyc4634 = true + } else if len(yyv4634) != 0 { + yyv4634 = yyv4634[:0] + yyc4634 = true } - } else if yyl4591 > 0 { - var yyrr4591, yyrl4591 int - var yyrt4591 bool - if yyl4591 > cap(yyv4591) { + } else if yyl4634 > 0 { + var yyrr4634, yyrl4634 int + var yyrt4634 bool + if yyl4634 > cap(yyv4634) { - yyrg4591 := len(yyv4591) > 0 - yyv24591 := yyv4591 - yyrl4591, yyrt4591 = z.DecInferLen(yyl4591, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4591 { - if yyrl4591 <= cap(yyv4591) { - yyv4591 = yyv4591[:yyrl4591] + yyrg4634 := len(yyv4634) > 0 + yyv24634 := yyv4634 + yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4634 { + if yyrl4634 <= cap(yyv4634) { + yyv4634 = yyv4634[:yyrl4634] } else { - yyv4591 = make([]Endpoints, yyrl4591) + yyv4634 = make([]Endpoints, yyrl4634) } } else { - yyv4591 = make([]Endpoints, yyrl4591) + yyv4634 = make([]Endpoints, yyrl4634) } - yyc4591 = true - yyrr4591 = len(yyv4591) - if yyrg4591 { - copy(yyv4591, yyv24591) + yyc4634 = true + yyrr4634 = len(yyv4634) + if yyrg4634 { + copy(yyv4634, yyv24634) } - } else if yyl4591 != len(yyv4591) { - yyv4591 = yyv4591[:yyl4591] - yyc4591 = true + } else if yyl4634 != len(yyv4634) { + yyv4634 = yyv4634[:yyl4634] + yyc4634 = true } - yyj4591 := 0 - for ; yyj4591 < yyrr4591; yyj4591++ { - yyh4591.ElemContainerState(yyj4591) + yyj4634 := 0 + for ; yyj4634 < yyrr4634; yyj4634++ { + yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4591[yyj4591] = Endpoints{} + yyv4634[yyj4634] = Endpoints{} } else { - yyv4592 := &yyv4591[yyj4591] - yyv4592.CodecDecodeSelf(d) + yyv4635 := &yyv4634[yyj4634] + yyv4635.CodecDecodeSelf(d) } } - if yyrt4591 { - for ; yyj4591 < yyl4591; yyj4591++ { - yyv4591 = append(yyv4591, Endpoints{}) - yyh4591.ElemContainerState(yyj4591) + if yyrt4634 { + for ; yyj4634 < yyl4634; yyj4634++ { + yyv4634 = append(yyv4634, Endpoints{}) + yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4591[yyj4591] = Endpoints{} + yyv4634[yyj4634] = Endpoints{} } else { - yyv4593 := &yyv4591[yyj4591] - yyv4593.CodecDecodeSelf(d) + yyv4636 := &yyv4634[yyj4634] + yyv4636.CodecDecodeSelf(d) } } } } else { - yyj4591 := 0 - for ; !r.CheckBreak(); yyj4591++ { + yyj4634 := 0 + for ; !r.CheckBreak(); yyj4634++ { - if yyj4591 >= len(yyv4591) { - yyv4591 = append(yyv4591, Endpoints{}) // var yyz4591 Endpoints - yyc4591 = true + if yyj4634 >= len(yyv4634) { + yyv4634 = append(yyv4634, Endpoints{}) // var yyz4634 Endpoints + yyc4634 = true } - yyh4591.ElemContainerState(yyj4591) - if yyj4591 < len(yyv4591) { + yyh4634.ElemContainerState(yyj4634) + if yyj4634 < len(yyv4634) { if r.TryDecodeAsNil() { - yyv4591[yyj4591] = Endpoints{} + yyv4634[yyj4634] = Endpoints{} } else { - yyv4594 := &yyv4591[yyj4591] - yyv4594.CodecDecodeSelf(d) + yyv4637 := &yyv4634[yyj4634] + yyv4637.CodecDecodeSelf(d) } } else { @@ -58326,17 +58937,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4591 < len(yyv4591) { - yyv4591 = yyv4591[:yyj4591] - yyc4591 = true - } else if yyj4591 == 0 && yyv4591 == nil { - yyv4591 = []Endpoints{} - yyc4591 = true + if yyj4634 < len(yyv4634) { + yyv4634 = yyv4634[:yyj4634] + yyc4634 = true + } else if yyj4634 == 0 && yyv4634 == nil { + yyv4634 = []Endpoints{} + yyc4634 = true } } - yyh4591.End() - if yyc4591 { - *v = yyv4591 + yyh4634.End() + if yyc4634 { + *v = yyv4634 } } @@ -58345,10 +58956,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4595 := range v { + for _, yyv4638 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4596 := &yyv4595 - yy4596.CodecEncodeSelf(e) + yy4639 := &yyv4638 + yy4639.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58358,83 +58969,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4597 := *v - yyh4597, yyl4597 := z.DecSliceHelperStart() - var yyc4597 bool - if yyl4597 == 0 { - if yyv4597 == nil { - yyv4597 = []NodeCondition{} - yyc4597 = true - } else if len(yyv4597) != 0 { - yyv4597 = yyv4597[:0] - yyc4597 = true + yyv4640 := *v + yyh4640, yyl4640 := z.DecSliceHelperStart() + var yyc4640 bool + if yyl4640 == 0 { + if yyv4640 == nil { + yyv4640 = []NodeCondition{} + yyc4640 = true + } else if len(yyv4640) != 0 { + yyv4640 = yyv4640[:0] + yyc4640 = true } - } else if yyl4597 > 0 { - var yyrr4597, yyrl4597 int - var yyrt4597 bool - if yyl4597 > cap(yyv4597) { + } else if yyl4640 > 0 { + var yyrr4640, yyrl4640 int + var yyrt4640 bool + if yyl4640 > cap(yyv4640) { - yyrg4597 := len(yyv4597) > 0 - yyv24597 := yyv4597 - yyrl4597, yyrt4597 = z.DecInferLen(yyl4597, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4597 { - if yyrl4597 <= cap(yyv4597) { - yyv4597 = yyv4597[:yyrl4597] + yyrg4640 := len(yyv4640) > 0 + yyv24640 := yyv4640 + yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4640 { + if yyrl4640 <= cap(yyv4640) { + yyv4640 = yyv4640[:yyrl4640] } else { - yyv4597 = make([]NodeCondition, yyrl4597) + yyv4640 = make([]NodeCondition, yyrl4640) } } else { - yyv4597 = make([]NodeCondition, yyrl4597) + yyv4640 = make([]NodeCondition, yyrl4640) } - yyc4597 = true - yyrr4597 = len(yyv4597) - if yyrg4597 { - copy(yyv4597, yyv24597) + yyc4640 = true + yyrr4640 = len(yyv4640) + if yyrg4640 { + copy(yyv4640, yyv24640) } - } else if yyl4597 != len(yyv4597) { - yyv4597 = yyv4597[:yyl4597] - yyc4597 = true + } else if yyl4640 != len(yyv4640) { + yyv4640 = yyv4640[:yyl4640] + yyc4640 = true } - yyj4597 := 0 - for ; yyj4597 < yyrr4597; yyj4597++ { - yyh4597.ElemContainerState(yyj4597) + yyj4640 := 0 + for ; yyj4640 < yyrr4640; yyj4640++ { + yyh4640.ElemContainerState(yyj4640) if r.TryDecodeAsNil() { - yyv4597[yyj4597] = NodeCondition{} + yyv4640[yyj4640] = NodeCondition{} } else { - yyv4598 := &yyv4597[yyj4597] - yyv4598.CodecDecodeSelf(d) + yyv4641 := &yyv4640[yyj4640] + yyv4641.CodecDecodeSelf(d) } } - if yyrt4597 { - for ; yyj4597 < yyl4597; yyj4597++ { - yyv4597 = append(yyv4597, NodeCondition{}) - yyh4597.ElemContainerState(yyj4597) + if yyrt4640 { + for ; yyj4640 < yyl4640; yyj4640++ { + yyv4640 = append(yyv4640, NodeCondition{}) + yyh4640.ElemContainerState(yyj4640) if r.TryDecodeAsNil() { - yyv4597[yyj4597] = NodeCondition{} + yyv4640[yyj4640] = NodeCondition{} } else { - yyv4599 := &yyv4597[yyj4597] - yyv4599.CodecDecodeSelf(d) + yyv4642 := &yyv4640[yyj4640] + yyv4642.CodecDecodeSelf(d) } } } } else { - yyj4597 := 0 - for ; !r.CheckBreak(); yyj4597++ { + yyj4640 := 0 + for ; !r.CheckBreak(); yyj4640++ { - if yyj4597 >= len(yyv4597) { - yyv4597 = append(yyv4597, NodeCondition{}) // var yyz4597 NodeCondition - yyc4597 = true + if yyj4640 >= len(yyv4640) { + yyv4640 = append(yyv4640, NodeCondition{}) // var yyz4640 NodeCondition + yyc4640 = true } - yyh4597.ElemContainerState(yyj4597) - if yyj4597 < len(yyv4597) { + yyh4640.ElemContainerState(yyj4640) + if yyj4640 < len(yyv4640) { if r.TryDecodeAsNil() { - yyv4597[yyj4597] = NodeCondition{} + yyv4640[yyj4640] = NodeCondition{} } else { - yyv4600 := &yyv4597[yyj4597] - yyv4600.CodecDecodeSelf(d) + yyv4643 := &yyv4640[yyj4640] + yyv4643.CodecDecodeSelf(d) } } else { @@ -58442,17 +59053,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4597 < len(yyv4597) { - yyv4597 = yyv4597[:yyj4597] - yyc4597 = true - } else if yyj4597 == 0 && yyv4597 == nil { - yyv4597 = []NodeCondition{} - yyc4597 = true + if yyj4640 < len(yyv4640) { + yyv4640 = yyv4640[:yyj4640] + yyc4640 = true + } else if yyj4640 == 0 && yyv4640 == nil { + yyv4640 = []NodeCondition{} + yyc4640 = true } } - yyh4597.End() - if yyc4597 { - *v = yyv4597 + yyh4640.End() + if yyc4640 { + *v = yyv4640 } } @@ -58461,10 +59072,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4601 := range v { + for _, yyv4644 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4602 := &yyv4601 - yy4602.CodecEncodeSelf(e) + yy4645 := &yyv4644 + yy4645.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58474,83 +59085,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4603 := *v - yyh4603, yyl4603 := z.DecSliceHelperStart() - var yyc4603 bool - if yyl4603 == 0 { - if yyv4603 == nil { - yyv4603 = []NodeAddress{} - yyc4603 = true - } else if len(yyv4603) != 0 { - yyv4603 = yyv4603[:0] - yyc4603 = true + yyv4646 := *v + yyh4646, yyl4646 := z.DecSliceHelperStart() + var yyc4646 bool + if yyl4646 == 0 { + if yyv4646 == nil { + yyv4646 = []NodeAddress{} + yyc4646 = true + } else if len(yyv4646) != 0 { + yyv4646 = yyv4646[:0] + yyc4646 = true } - } else if yyl4603 > 0 { - var yyrr4603, yyrl4603 int - var yyrt4603 bool - if yyl4603 > cap(yyv4603) { + } else if yyl4646 > 0 { + var yyrr4646, yyrl4646 int + var yyrt4646 bool + if yyl4646 > cap(yyv4646) { - yyrg4603 := len(yyv4603) > 0 - yyv24603 := yyv4603 - yyrl4603, yyrt4603 = z.DecInferLen(yyl4603, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4603 { - if yyrl4603 <= cap(yyv4603) { - yyv4603 = yyv4603[:yyrl4603] + yyrg4646 := len(yyv4646) > 0 + yyv24646 := yyv4646 + yyrl4646, yyrt4646 = z.DecInferLen(yyl4646, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4646 { + if yyrl4646 <= cap(yyv4646) { + yyv4646 = yyv4646[:yyrl4646] } else { - yyv4603 = make([]NodeAddress, yyrl4603) + yyv4646 = make([]NodeAddress, yyrl4646) } } else { - yyv4603 = make([]NodeAddress, yyrl4603) + yyv4646 = make([]NodeAddress, yyrl4646) } - yyc4603 = true - yyrr4603 = len(yyv4603) - if yyrg4603 { - copy(yyv4603, yyv24603) + yyc4646 = true + yyrr4646 = len(yyv4646) + if yyrg4646 { + copy(yyv4646, yyv24646) } - } else if yyl4603 != len(yyv4603) { - yyv4603 = yyv4603[:yyl4603] - yyc4603 = true + } else if yyl4646 != len(yyv4646) { + yyv4646 = yyv4646[:yyl4646] + yyc4646 = true } - yyj4603 := 0 - for ; yyj4603 < yyrr4603; yyj4603++ { - yyh4603.ElemContainerState(yyj4603) + yyj4646 := 0 + for ; yyj4646 < yyrr4646; yyj4646++ { + yyh4646.ElemContainerState(yyj4646) if r.TryDecodeAsNil() { - yyv4603[yyj4603] = NodeAddress{} + yyv4646[yyj4646] = NodeAddress{} } else { - yyv4604 := &yyv4603[yyj4603] - yyv4604.CodecDecodeSelf(d) + yyv4647 := &yyv4646[yyj4646] + yyv4647.CodecDecodeSelf(d) } } - if yyrt4603 { - for ; yyj4603 < yyl4603; yyj4603++ { - yyv4603 = append(yyv4603, NodeAddress{}) - yyh4603.ElemContainerState(yyj4603) + if yyrt4646 { + for ; yyj4646 < yyl4646; yyj4646++ { + yyv4646 = append(yyv4646, NodeAddress{}) + yyh4646.ElemContainerState(yyj4646) if r.TryDecodeAsNil() { - yyv4603[yyj4603] = NodeAddress{} + yyv4646[yyj4646] = NodeAddress{} } else { - yyv4605 := &yyv4603[yyj4603] - yyv4605.CodecDecodeSelf(d) + yyv4648 := &yyv4646[yyj4646] + yyv4648.CodecDecodeSelf(d) } } } } else { - yyj4603 := 0 - for ; !r.CheckBreak(); yyj4603++ { + yyj4646 := 0 + for ; !r.CheckBreak(); yyj4646++ { - if yyj4603 >= len(yyv4603) { - yyv4603 = append(yyv4603, NodeAddress{}) // var yyz4603 NodeAddress - yyc4603 = true + if yyj4646 >= len(yyv4646) { + yyv4646 = append(yyv4646, NodeAddress{}) // var yyz4646 NodeAddress + yyc4646 = true } - yyh4603.ElemContainerState(yyj4603) - if yyj4603 < len(yyv4603) { + yyh4646.ElemContainerState(yyj4646) + if yyj4646 < len(yyv4646) { if r.TryDecodeAsNil() { - yyv4603[yyj4603] = NodeAddress{} + yyv4646[yyj4646] = NodeAddress{} } else { - yyv4606 := &yyv4603[yyj4603] - yyv4606.CodecDecodeSelf(d) + yyv4649 := &yyv4646[yyj4646] + yyv4649.CodecDecodeSelf(d) } } else { @@ -58558,17 +59169,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4603 < len(yyv4603) { - yyv4603 = yyv4603[:yyj4603] - yyc4603 = true - } else if yyj4603 == 0 && yyv4603 == nil { - yyv4603 = []NodeAddress{} - yyc4603 = true + if yyj4646 < len(yyv4646) { + yyv4646 = yyv4646[:yyj4646] + yyc4646 = true + } else if yyj4646 == 0 && yyv4646 == nil { + yyv4646 = []NodeAddress{} + yyc4646 = true } } - yyh4603.End() - if yyc4603 { - *v = yyv4603 + yyh4646.End() + if yyc4646 { + *v = yyv4646 } } @@ -58577,10 +59188,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4607 := range v { + for _, yyv4650 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4608 := &yyv4607 - yy4608.CodecEncodeSelf(e) + yy4651 := &yyv4650 + yy4651.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58590,83 +59201,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4609 := *v - yyh4609, yyl4609 := z.DecSliceHelperStart() - var yyc4609 bool - if yyl4609 == 0 { - if yyv4609 == nil { - yyv4609 = []ContainerImage{} - yyc4609 = true - } else if len(yyv4609) != 0 { - yyv4609 = yyv4609[:0] - yyc4609 = true + yyv4652 := *v + yyh4652, yyl4652 := z.DecSliceHelperStart() + var yyc4652 bool + if yyl4652 == 0 { + if yyv4652 == nil { + yyv4652 = []ContainerImage{} + yyc4652 = true + } else if len(yyv4652) != 0 { + yyv4652 = yyv4652[:0] + yyc4652 = true } - } else if yyl4609 > 0 { - var yyrr4609, yyrl4609 int - var yyrt4609 bool - if yyl4609 > cap(yyv4609) { + } else if yyl4652 > 0 { + var yyrr4652, yyrl4652 int + var yyrt4652 bool + if yyl4652 > cap(yyv4652) { - yyrg4609 := len(yyv4609) > 0 - yyv24609 := yyv4609 - yyrl4609, yyrt4609 = z.DecInferLen(yyl4609, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4609 { - if yyrl4609 <= cap(yyv4609) { - yyv4609 = yyv4609[:yyrl4609] + yyrg4652 := len(yyv4652) > 0 + yyv24652 := yyv4652 + yyrl4652, yyrt4652 = z.DecInferLen(yyl4652, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4652 { + if yyrl4652 <= cap(yyv4652) { + yyv4652 = yyv4652[:yyrl4652] } else { - yyv4609 = make([]ContainerImage, yyrl4609) + yyv4652 = make([]ContainerImage, yyrl4652) } } else { - yyv4609 = make([]ContainerImage, yyrl4609) + yyv4652 = make([]ContainerImage, yyrl4652) } - yyc4609 = true - yyrr4609 = len(yyv4609) - if yyrg4609 { - copy(yyv4609, yyv24609) + yyc4652 = true + yyrr4652 = len(yyv4652) + if yyrg4652 { + copy(yyv4652, yyv24652) } - } else if yyl4609 != len(yyv4609) { - yyv4609 = yyv4609[:yyl4609] - yyc4609 = true + } else if yyl4652 != len(yyv4652) { + yyv4652 = yyv4652[:yyl4652] + yyc4652 = true } - yyj4609 := 0 - for ; yyj4609 < yyrr4609; yyj4609++ { - yyh4609.ElemContainerState(yyj4609) + yyj4652 := 0 + for ; yyj4652 < yyrr4652; yyj4652++ { + yyh4652.ElemContainerState(yyj4652) if r.TryDecodeAsNil() { - yyv4609[yyj4609] = ContainerImage{} + yyv4652[yyj4652] = ContainerImage{} } else { - yyv4610 := &yyv4609[yyj4609] - yyv4610.CodecDecodeSelf(d) + yyv4653 := &yyv4652[yyj4652] + yyv4653.CodecDecodeSelf(d) } } - if yyrt4609 { - for ; yyj4609 < yyl4609; yyj4609++ { - yyv4609 = append(yyv4609, ContainerImage{}) - yyh4609.ElemContainerState(yyj4609) + if yyrt4652 { + for ; yyj4652 < yyl4652; yyj4652++ { + yyv4652 = append(yyv4652, ContainerImage{}) + yyh4652.ElemContainerState(yyj4652) if r.TryDecodeAsNil() { - yyv4609[yyj4609] = ContainerImage{} + yyv4652[yyj4652] = ContainerImage{} } else { - yyv4611 := &yyv4609[yyj4609] - yyv4611.CodecDecodeSelf(d) + yyv4654 := &yyv4652[yyj4652] + yyv4654.CodecDecodeSelf(d) } } } } else { - yyj4609 := 0 - for ; !r.CheckBreak(); yyj4609++ { + yyj4652 := 0 + for ; !r.CheckBreak(); yyj4652++ { - if yyj4609 >= len(yyv4609) { - yyv4609 = append(yyv4609, ContainerImage{}) // var yyz4609 ContainerImage - yyc4609 = true + if yyj4652 >= len(yyv4652) { + yyv4652 = append(yyv4652, ContainerImage{}) // var yyz4652 ContainerImage + yyc4652 = true } - yyh4609.ElemContainerState(yyj4609) - if yyj4609 < len(yyv4609) { + yyh4652.ElemContainerState(yyj4652) + if yyj4652 < len(yyv4652) { if r.TryDecodeAsNil() { - yyv4609[yyj4609] = ContainerImage{} + yyv4652[yyj4652] = ContainerImage{} } else { - yyv4612 := &yyv4609[yyj4609] - yyv4612.CodecDecodeSelf(d) + yyv4655 := &yyv4652[yyj4652] + yyv4655.CodecDecodeSelf(d) } } else { @@ -58674,17 +59285,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4609 < len(yyv4609) { - yyv4609 = yyv4609[:yyj4609] - yyc4609 = true - } else if yyj4609 == 0 && yyv4609 == nil { - yyv4609 = []ContainerImage{} - yyc4609 = true + if yyj4652 < len(yyv4652) { + yyv4652 = yyv4652[:yyj4652] + yyc4652 = true + } else if yyj4652 == 0 && yyv4652 == nil { + yyv4652 = []ContainerImage{} + yyc4652 = true } } - yyh4609.End() - if yyc4609 { - *v = yyv4609 + yyh4652.End() + if yyc4652 { + *v = yyv4652 } } @@ -58693,9 +59304,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4613 := range v { + for _, yyv4656 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4613.CodecEncodeSelf(e) + yyv4656.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58705,75 +59316,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4614 := *v - yyh4614, yyl4614 := z.DecSliceHelperStart() - var yyc4614 bool - if yyl4614 == 0 { - if yyv4614 == nil { - yyv4614 = []UniqueVolumeName{} - yyc4614 = true - } else if len(yyv4614) != 0 { - yyv4614 = yyv4614[:0] - yyc4614 = true + yyv4657 := *v + yyh4657, yyl4657 := z.DecSliceHelperStart() + var yyc4657 bool + if yyl4657 == 0 { + if yyv4657 == nil { + yyv4657 = []UniqueVolumeName{} + yyc4657 = true + } else if len(yyv4657) != 0 { + yyv4657 = yyv4657[:0] + yyc4657 = true } - } else if yyl4614 > 0 { - var yyrr4614, yyrl4614 int - var yyrt4614 bool - if yyl4614 > cap(yyv4614) { + } else if yyl4657 > 0 { + var yyrr4657, yyrl4657 int + var yyrt4657 bool + if yyl4657 > cap(yyv4657) { - yyrl4614, yyrt4614 = z.DecInferLen(yyl4614, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4614 { - if yyrl4614 <= cap(yyv4614) { - yyv4614 = yyv4614[:yyrl4614] + yyrl4657, yyrt4657 = z.DecInferLen(yyl4657, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4657 { + if yyrl4657 <= cap(yyv4657) { + yyv4657 = yyv4657[:yyrl4657] } else { - yyv4614 = make([]UniqueVolumeName, yyrl4614) + yyv4657 = make([]UniqueVolumeName, yyrl4657) } } else { - yyv4614 = make([]UniqueVolumeName, yyrl4614) + yyv4657 = make([]UniqueVolumeName, yyrl4657) } - yyc4614 = true - yyrr4614 = len(yyv4614) - } else if yyl4614 != len(yyv4614) { - yyv4614 = yyv4614[:yyl4614] - yyc4614 = true + yyc4657 = true + yyrr4657 = len(yyv4657) + } else if yyl4657 != len(yyv4657) { + yyv4657 = yyv4657[:yyl4657] + yyc4657 = true } - yyj4614 := 0 - for ; yyj4614 < yyrr4614; yyj4614++ { - yyh4614.ElemContainerState(yyj4614) + yyj4657 := 0 + for ; yyj4657 < yyrr4657; yyj4657++ { + yyh4657.ElemContainerState(yyj4657) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = "" + yyv4657[yyj4657] = "" } else { - yyv4614[yyj4614] = UniqueVolumeName(r.DecodeString()) + yyv4657[yyj4657] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4614 { - for ; yyj4614 < yyl4614; yyj4614++ { - yyv4614 = append(yyv4614, "") - yyh4614.ElemContainerState(yyj4614) + if yyrt4657 { + for ; yyj4657 < yyl4657; yyj4657++ { + yyv4657 = append(yyv4657, "") + yyh4657.ElemContainerState(yyj4657) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = "" + yyv4657[yyj4657] = "" } else { - yyv4614[yyj4614] = UniqueVolumeName(r.DecodeString()) + yyv4657[yyj4657] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4614 := 0 - for ; !r.CheckBreak(); yyj4614++ { + yyj4657 := 0 + for ; !r.CheckBreak(); yyj4657++ { - if yyj4614 >= len(yyv4614) { - yyv4614 = append(yyv4614, "") // var yyz4614 UniqueVolumeName - yyc4614 = true + if yyj4657 >= len(yyv4657) { + yyv4657 = append(yyv4657, "") // var yyz4657 UniqueVolumeName + yyc4657 = true } - yyh4614.ElemContainerState(yyj4614) - if yyj4614 < len(yyv4614) { + yyh4657.ElemContainerState(yyj4657) + if yyj4657 < len(yyv4657) { if r.TryDecodeAsNil() { - yyv4614[yyj4614] = "" + yyv4657[yyj4657] = "" } else { - yyv4614[yyj4614] = UniqueVolumeName(r.DecodeString()) + yyv4657[yyj4657] = UniqueVolumeName(r.DecodeString()) } } else { @@ -58781,17 +59392,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4614 < len(yyv4614) { - yyv4614 = yyv4614[:yyj4614] - yyc4614 = true - } else if yyj4614 == 0 && yyv4614 == nil { - yyv4614 = []UniqueVolumeName{} - yyc4614 = true + if yyj4657 < len(yyv4657) { + yyv4657 = yyv4657[:yyj4657] + yyc4657 = true + } else if yyj4657 == 0 && yyv4657 == nil { + yyv4657 = []UniqueVolumeName{} + yyc4657 = true } } - yyh4614.End() - if yyc4614 { - *v = yyv4614 + yyh4657.End() + if yyc4657 { + *v = yyv4657 } } @@ -58800,10 +59411,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4618 := range v { + for _, yyv4661 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4619 := &yyv4618 - yy4619.CodecEncodeSelf(e) + yy4662 := &yyv4661 + yy4662.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58813,83 +59424,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4620 := *v - yyh4620, yyl4620 := z.DecSliceHelperStart() - var yyc4620 bool - if yyl4620 == 0 { - if yyv4620 == nil { - yyv4620 = []AttachedVolume{} - yyc4620 = true - } else if len(yyv4620) != 0 { - yyv4620 = yyv4620[:0] - yyc4620 = true + yyv4663 := *v + yyh4663, yyl4663 := z.DecSliceHelperStart() + var yyc4663 bool + if yyl4663 == 0 { + if yyv4663 == nil { + yyv4663 = []AttachedVolume{} + yyc4663 = true + } else if len(yyv4663) != 0 { + yyv4663 = yyv4663[:0] + yyc4663 = true } - } else if yyl4620 > 0 { - var yyrr4620, yyrl4620 int - var yyrt4620 bool - if yyl4620 > cap(yyv4620) { + } else if yyl4663 > 0 { + var yyrr4663, yyrl4663 int + var yyrt4663 bool + if yyl4663 > cap(yyv4663) { - yyrg4620 := len(yyv4620) > 0 - yyv24620 := yyv4620 - yyrl4620, yyrt4620 = z.DecInferLen(yyl4620, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4620 { - if yyrl4620 <= cap(yyv4620) { - yyv4620 = yyv4620[:yyrl4620] + yyrg4663 := len(yyv4663) > 0 + yyv24663 := yyv4663 + yyrl4663, yyrt4663 = z.DecInferLen(yyl4663, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4663 { + if yyrl4663 <= cap(yyv4663) { + yyv4663 = yyv4663[:yyrl4663] } else { - yyv4620 = make([]AttachedVolume, yyrl4620) + yyv4663 = make([]AttachedVolume, yyrl4663) } } else { - yyv4620 = make([]AttachedVolume, yyrl4620) + yyv4663 = make([]AttachedVolume, yyrl4663) } - yyc4620 = true - yyrr4620 = len(yyv4620) - if yyrg4620 { - copy(yyv4620, yyv24620) + yyc4663 = true + yyrr4663 = len(yyv4663) + if yyrg4663 { + copy(yyv4663, yyv24663) } - } else if yyl4620 != len(yyv4620) { - yyv4620 = yyv4620[:yyl4620] - yyc4620 = true + } else if yyl4663 != len(yyv4663) { + yyv4663 = yyv4663[:yyl4663] + yyc4663 = true } - yyj4620 := 0 - for ; yyj4620 < yyrr4620; yyj4620++ { - yyh4620.ElemContainerState(yyj4620) + yyj4663 := 0 + for ; yyj4663 < yyrr4663; yyj4663++ { + yyh4663.ElemContainerState(yyj4663) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = AttachedVolume{} + yyv4663[yyj4663] = AttachedVolume{} } else { - yyv4621 := &yyv4620[yyj4620] - yyv4621.CodecDecodeSelf(d) + yyv4664 := &yyv4663[yyj4663] + yyv4664.CodecDecodeSelf(d) } } - if yyrt4620 { - for ; yyj4620 < yyl4620; yyj4620++ { - yyv4620 = append(yyv4620, AttachedVolume{}) - yyh4620.ElemContainerState(yyj4620) + if yyrt4663 { + for ; yyj4663 < yyl4663; yyj4663++ { + yyv4663 = append(yyv4663, AttachedVolume{}) + yyh4663.ElemContainerState(yyj4663) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = AttachedVolume{} + yyv4663[yyj4663] = AttachedVolume{} } else { - yyv4622 := &yyv4620[yyj4620] - yyv4622.CodecDecodeSelf(d) + yyv4665 := &yyv4663[yyj4663] + yyv4665.CodecDecodeSelf(d) } } } } else { - yyj4620 := 0 - for ; !r.CheckBreak(); yyj4620++ { + yyj4663 := 0 + for ; !r.CheckBreak(); yyj4663++ { - if yyj4620 >= len(yyv4620) { - yyv4620 = append(yyv4620, AttachedVolume{}) // var yyz4620 AttachedVolume - yyc4620 = true + if yyj4663 >= len(yyv4663) { + yyv4663 = append(yyv4663, AttachedVolume{}) // var yyz4663 AttachedVolume + yyc4663 = true } - yyh4620.ElemContainerState(yyj4620) - if yyj4620 < len(yyv4620) { + yyh4663.ElemContainerState(yyj4663) + if yyj4663 < len(yyv4663) { if r.TryDecodeAsNil() { - yyv4620[yyj4620] = AttachedVolume{} + yyv4663[yyj4663] = AttachedVolume{} } else { - yyv4623 := &yyv4620[yyj4620] - yyv4623.CodecDecodeSelf(d) + yyv4666 := &yyv4663[yyj4663] + yyv4666.CodecDecodeSelf(d) } } else { @@ -58897,17 +59508,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4620 < len(yyv4620) { - yyv4620 = yyv4620[:yyj4620] - yyc4620 = true - } else if yyj4620 == 0 && yyv4620 == nil { - yyv4620 = []AttachedVolume{} - yyc4620 = true + if yyj4663 < len(yyv4663) { + yyv4663 = yyv4663[:yyj4663] + yyc4663 = true + } else if yyj4663 == 0 && yyv4663 == nil { + yyv4663 = []AttachedVolume{} + yyc4663 = true } } - yyh4620.End() - if yyc4620 { - *v = yyv4620 + yyh4663.End() + if yyc4663 { + *v = yyv4663 } } @@ -58916,10 +59527,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4624 := range v { + for _, yyv4667 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4625 := &yyv4624 - yy4625.CodecEncodeSelf(e) + yy4668 := &yyv4667 + yy4668.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58929,83 +59540,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4626 := *v - yyh4626, yyl4626 := z.DecSliceHelperStart() - var yyc4626 bool - if yyl4626 == 0 { - if yyv4626 == nil { - yyv4626 = []PreferAvoidPodsEntry{} - yyc4626 = true - } else if len(yyv4626) != 0 { - yyv4626 = yyv4626[:0] - yyc4626 = true + yyv4669 := *v + yyh4669, yyl4669 := z.DecSliceHelperStart() + var yyc4669 bool + if yyl4669 == 0 { + if yyv4669 == nil { + yyv4669 = []PreferAvoidPodsEntry{} + yyc4669 = true + } else if len(yyv4669) != 0 { + yyv4669 = yyv4669[:0] + yyc4669 = true } - } else if yyl4626 > 0 { - var yyrr4626, yyrl4626 int - var yyrt4626 bool - if yyl4626 > cap(yyv4626) { + } else if yyl4669 > 0 { + var yyrr4669, yyrl4669 int + var yyrt4669 bool + if yyl4669 > cap(yyv4669) { - yyrg4626 := len(yyv4626) > 0 - yyv24626 := yyv4626 - yyrl4626, yyrt4626 = z.DecInferLen(yyl4626, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4626 { - if yyrl4626 <= cap(yyv4626) { - yyv4626 = yyv4626[:yyrl4626] + yyrg4669 := len(yyv4669) > 0 + yyv24669 := yyv4669 + yyrl4669, yyrt4669 = z.DecInferLen(yyl4669, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4669 { + if yyrl4669 <= cap(yyv4669) { + yyv4669 = yyv4669[:yyrl4669] } else { - yyv4626 = make([]PreferAvoidPodsEntry, yyrl4626) + yyv4669 = make([]PreferAvoidPodsEntry, yyrl4669) } } else { - yyv4626 = make([]PreferAvoidPodsEntry, yyrl4626) + yyv4669 = make([]PreferAvoidPodsEntry, yyrl4669) } - yyc4626 = true - yyrr4626 = len(yyv4626) - if yyrg4626 { - copy(yyv4626, yyv24626) + yyc4669 = true + yyrr4669 = len(yyv4669) + if yyrg4669 { + copy(yyv4669, yyv24669) } - } else if yyl4626 != len(yyv4626) { - yyv4626 = yyv4626[:yyl4626] - yyc4626 = true + } else if yyl4669 != len(yyv4669) { + yyv4669 = yyv4669[:yyl4669] + yyc4669 = true } - yyj4626 := 0 - for ; yyj4626 < yyrr4626; yyj4626++ { - yyh4626.ElemContainerState(yyj4626) + yyj4669 := 0 + for ; yyj4669 < yyrr4669; yyj4669++ { + yyh4669.ElemContainerState(yyj4669) if r.TryDecodeAsNil() { - yyv4626[yyj4626] = PreferAvoidPodsEntry{} + yyv4669[yyj4669] = PreferAvoidPodsEntry{} } else { - yyv4627 := &yyv4626[yyj4626] - yyv4627.CodecDecodeSelf(d) + yyv4670 := &yyv4669[yyj4669] + yyv4670.CodecDecodeSelf(d) } } - if yyrt4626 { - for ; yyj4626 < yyl4626; yyj4626++ { - yyv4626 = append(yyv4626, PreferAvoidPodsEntry{}) - yyh4626.ElemContainerState(yyj4626) + if yyrt4669 { + for ; yyj4669 < yyl4669; yyj4669++ { + yyv4669 = append(yyv4669, PreferAvoidPodsEntry{}) + yyh4669.ElemContainerState(yyj4669) if r.TryDecodeAsNil() { - yyv4626[yyj4626] = PreferAvoidPodsEntry{} + yyv4669[yyj4669] = PreferAvoidPodsEntry{} } else { - yyv4628 := &yyv4626[yyj4626] - yyv4628.CodecDecodeSelf(d) + yyv4671 := &yyv4669[yyj4669] + yyv4671.CodecDecodeSelf(d) } } } } else { - yyj4626 := 0 - for ; !r.CheckBreak(); yyj4626++ { + yyj4669 := 0 + for ; !r.CheckBreak(); yyj4669++ { - if yyj4626 >= len(yyv4626) { - yyv4626 = append(yyv4626, PreferAvoidPodsEntry{}) // var yyz4626 PreferAvoidPodsEntry - yyc4626 = true + if yyj4669 >= len(yyv4669) { + yyv4669 = append(yyv4669, PreferAvoidPodsEntry{}) // var yyz4669 PreferAvoidPodsEntry + yyc4669 = true } - yyh4626.ElemContainerState(yyj4626) - if yyj4626 < len(yyv4626) { + yyh4669.ElemContainerState(yyj4669) + if yyj4669 < len(yyv4669) { if r.TryDecodeAsNil() { - yyv4626[yyj4626] = PreferAvoidPodsEntry{} + yyv4669[yyj4669] = PreferAvoidPodsEntry{} } else { - yyv4629 := &yyv4626[yyj4626] - yyv4629.CodecDecodeSelf(d) + yyv4672 := &yyv4669[yyj4669] + yyv4672.CodecDecodeSelf(d) } } else { @@ -59013,17 +59624,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4626 < len(yyv4626) { - yyv4626 = yyv4626[:yyj4626] - yyc4626 = true - } else if yyj4626 == 0 && yyv4626 == nil { - yyv4626 = []PreferAvoidPodsEntry{} - yyc4626 = true + if yyj4669 < len(yyv4669) { + yyv4669 = yyv4669[:yyj4669] + yyc4669 = true + } else if yyj4669 == 0 && yyv4669 == nil { + yyv4669 = []PreferAvoidPodsEntry{} + yyc4669 = true } } - yyh4626.End() - if yyc4626 { - *v = yyv4626 + yyh4669.End() + if yyc4669 { + *v = yyv4669 } } @@ -59032,19 +59643,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4630, yyv4630 := range v { + for yyk4673, yyv4673 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4630.CodecEncodeSelf(e) + yyk4673.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4631 := &yyv4630 - yym4632 := z.EncBinary() - _ = yym4632 + yy4674 := &yyv4673 + yym4675 := z.EncBinary() + _ = yym4675 if false { - } else if z.HasExtensions() && z.EncExt(yy4631) { - } else if !yym4632 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4631) + } else if z.HasExtensions() && z.EncExt(yy4674) { + } else if !yym4675 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4674) } else { - z.EncFallback(yy4631) + z.EncFallback(yy4674) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -59055,86 +59666,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4633 := *v - yyl4633 := r.ReadMapStart() - yybh4633 := z.DecBasicHandle() - if yyv4633 == nil { - yyrl4633, _ := z.DecInferLen(yyl4633, yybh4633.MaxInitLen, 72) - yyv4633 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4633) - *v = yyv4633 + yyv4676 := *v + yyl4676 := r.ReadMapStart() + yybh4676 := z.DecBasicHandle() + if yyv4676 == nil { + yyrl4676, _ := z.DecInferLen(yyl4676, yybh4676.MaxInitLen, 72) + yyv4676 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4676) + *v = yyv4676 } - var yymk4633 ResourceName - var yymv4633 pkg3_resource.Quantity - var yymg4633 bool - if yybh4633.MapValueReset { - yymg4633 = true + var yymk4676 ResourceName + var yymv4676 pkg3_resource.Quantity + var yymg4676 bool + if yybh4676.MapValueReset { + yymg4676 = true } - if yyl4633 > 0 { - for yyj4633 := 0; yyj4633 < yyl4633; yyj4633++ { + if yyl4676 > 0 { + for yyj4676 := 0; yyj4676 < yyl4676; yyj4676++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4633 = "" + yymk4676 = "" } else { - yymk4633 = ResourceName(r.DecodeString()) + yymk4676 = ResourceName(r.DecodeString()) } - if yymg4633 { - yymv4633 = yyv4633[yymk4633] + if yymg4676 { + yymv4676 = yyv4676[yymk4676] } else { - yymv4633 = pkg3_resource.Quantity{} + yymv4676 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4633 = pkg3_resource.Quantity{} + yymv4676 = pkg3_resource.Quantity{} } else { - yyv4635 := &yymv4633 - yym4636 := z.DecBinary() - _ = yym4636 + yyv4678 := &yymv4676 + yym4679 := z.DecBinary() + _ = yym4679 if false { - } else if z.HasExtensions() && z.DecExt(yyv4635) { - } else if !yym4636 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4635) + } else if z.HasExtensions() && z.DecExt(yyv4678) { + } else if !yym4679 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4678) } else { - z.DecFallback(yyv4635, false) + z.DecFallback(yyv4678, false) } } - if yyv4633 != nil { - yyv4633[yymk4633] = yymv4633 + if yyv4676 != nil { + yyv4676[yymk4676] = yymv4676 } } - } else if yyl4633 < 0 { - for yyj4633 := 0; !r.CheckBreak(); yyj4633++ { + } else if yyl4676 < 0 { + for yyj4676 := 0; !r.CheckBreak(); yyj4676++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4633 = "" + yymk4676 = "" } else { - yymk4633 = ResourceName(r.DecodeString()) + yymk4676 = ResourceName(r.DecodeString()) } - if yymg4633 { - yymv4633 = yyv4633[yymk4633] + if yymg4676 { + yymv4676 = yyv4676[yymk4676] } else { - yymv4633 = pkg3_resource.Quantity{} + yymv4676 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4633 = pkg3_resource.Quantity{} + yymv4676 = pkg3_resource.Quantity{} } else { - yyv4638 := &yymv4633 - yym4639 := z.DecBinary() - _ = yym4639 + yyv4681 := &yymv4676 + yym4682 := z.DecBinary() + _ = yym4682 if false { - } else if z.HasExtensions() && z.DecExt(yyv4638) { - } else if !yym4639 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4638) + } else if z.HasExtensions() && z.DecExt(yyv4681) { + } else if !yym4682 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4681) } else { - z.DecFallback(yyv4638, false) + z.DecFallback(yyv4681, false) } } - if yyv4633 != nil { - yyv4633[yymk4633] = yymv4633 + if yyv4676 != nil { + yyv4676[yymk4676] = yymv4676 } } } // else len==0: TODO: Should we clear map entries? @@ -59146,10 +59757,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4640 := range v { + for _, yyv4683 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4641 := &yyv4640 - yy4641.CodecEncodeSelf(e) + yy4684 := &yyv4683 + yy4684.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59159,83 +59770,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4642 := *v - yyh4642, yyl4642 := z.DecSliceHelperStart() - var yyc4642 bool - if yyl4642 == 0 { - if yyv4642 == nil { - yyv4642 = []Node{} - yyc4642 = true - } else if len(yyv4642) != 0 { - yyv4642 = yyv4642[:0] - yyc4642 = true + yyv4685 := *v + yyh4685, yyl4685 := z.DecSliceHelperStart() + var yyc4685 bool + if yyl4685 == 0 { + if yyv4685 == nil { + yyv4685 = []Node{} + yyc4685 = true + } else if len(yyv4685) != 0 { + yyv4685 = yyv4685[:0] + yyc4685 = true } - } else if yyl4642 > 0 { - var yyrr4642, yyrl4642 int - var yyrt4642 bool - if yyl4642 > cap(yyv4642) { + } else if yyl4685 > 0 { + var yyrr4685, yyrl4685 int + var yyrt4685 bool + if yyl4685 > cap(yyv4685) { - yyrg4642 := len(yyv4642) > 0 - yyv24642 := yyv4642 - yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4642 { - if yyrl4642 <= cap(yyv4642) { - yyv4642 = yyv4642[:yyrl4642] + yyrg4685 := len(yyv4685) > 0 + yyv24685 := yyv4685 + yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 616) + if yyrt4685 { + if yyrl4685 <= cap(yyv4685) { + yyv4685 = yyv4685[:yyrl4685] } else { - yyv4642 = make([]Node, yyrl4642) + yyv4685 = make([]Node, yyrl4685) } } else { - yyv4642 = make([]Node, yyrl4642) + yyv4685 = make([]Node, yyrl4685) } - yyc4642 = true - yyrr4642 = len(yyv4642) - if yyrg4642 { - copy(yyv4642, yyv24642) + yyc4685 = true + yyrr4685 = len(yyv4685) + if yyrg4685 { + copy(yyv4685, yyv24685) } - } else if yyl4642 != len(yyv4642) { - yyv4642 = yyv4642[:yyl4642] - yyc4642 = true + } else if yyl4685 != len(yyv4685) { + yyv4685 = yyv4685[:yyl4685] + yyc4685 = true } - yyj4642 := 0 - for ; yyj4642 < yyrr4642; yyj4642++ { - yyh4642.ElemContainerState(yyj4642) + yyj4685 := 0 + for ; yyj4685 < yyrr4685; yyj4685++ { + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4642[yyj4642] = Node{} + yyv4685[yyj4685] = Node{} } else { - yyv4643 := &yyv4642[yyj4642] - yyv4643.CodecDecodeSelf(d) + yyv4686 := &yyv4685[yyj4685] + yyv4686.CodecDecodeSelf(d) } } - if yyrt4642 { - for ; yyj4642 < yyl4642; yyj4642++ { - yyv4642 = append(yyv4642, Node{}) - yyh4642.ElemContainerState(yyj4642) + if yyrt4685 { + for ; yyj4685 < yyl4685; yyj4685++ { + yyv4685 = append(yyv4685, Node{}) + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4642[yyj4642] = Node{} + yyv4685[yyj4685] = Node{} } else { - yyv4644 := &yyv4642[yyj4642] - yyv4644.CodecDecodeSelf(d) + yyv4687 := &yyv4685[yyj4685] + yyv4687.CodecDecodeSelf(d) } } } } else { - yyj4642 := 0 - for ; !r.CheckBreak(); yyj4642++ { + yyj4685 := 0 + for ; !r.CheckBreak(); yyj4685++ { - if yyj4642 >= len(yyv4642) { - yyv4642 = append(yyv4642, Node{}) // var yyz4642 Node - yyc4642 = true + if yyj4685 >= len(yyv4685) { + yyv4685 = append(yyv4685, Node{}) // var yyz4685 Node + yyc4685 = true } - yyh4642.ElemContainerState(yyj4642) - if yyj4642 < len(yyv4642) { + yyh4685.ElemContainerState(yyj4685) + if yyj4685 < len(yyv4685) { if r.TryDecodeAsNil() { - yyv4642[yyj4642] = Node{} + yyv4685[yyj4685] = Node{} } else { - yyv4645 := &yyv4642[yyj4642] - yyv4645.CodecDecodeSelf(d) + yyv4688 := &yyv4685[yyj4685] + yyv4688.CodecDecodeSelf(d) } } else { @@ -59243,17 +59854,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4642 < len(yyv4642) { - yyv4642 = yyv4642[:yyj4642] - yyc4642 = true - } else if yyj4642 == 0 && yyv4642 == nil { - yyv4642 = []Node{} - yyc4642 = true + if yyj4685 < len(yyv4685) { + yyv4685 = yyv4685[:yyj4685] + yyc4685 = true + } else if yyj4685 == 0 && yyv4685 == nil { + yyv4685 = []Node{} + yyc4685 = true } } - yyh4642.End() - if yyc4642 { - *v = yyv4642 + yyh4685.End() + if yyc4685 { + *v = yyv4685 } } @@ -59262,9 +59873,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4646 := range v { + for _, yyv4689 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4646.CodecEncodeSelf(e) + yyv4689.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59274,75 +59885,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4647 := *v - yyh4647, yyl4647 := z.DecSliceHelperStart() - var yyc4647 bool - if yyl4647 == 0 { - if yyv4647 == nil { - yyv4647 = []FinalizerName{} - yyc4647 = true - } else if len(yyv4647) != 0 { - yyv4647 = yyv4647[:0] - yyc4647 = true + yyv4690 := *v + yyh4690, yyl4690 := z.DecSliceHelperStart() + var yyc4690 bool + if yyl4690 == 0 { + if yyv4690 == nil { + yyv4690 = []FinalizerName{} + yyc4690 = true + } else if len(yyv4690) != 0 { + yyv4690 = yyv4690[:0] + yyc4690 = true } - } else if yyl4647 > 0 { - var yyrr4647, yyrl4647 int - var yyrt4647 bool - if yyl4647 > cap(yyv4647) { + } else if yyl4690 > 0 { + var yyrr4690, yyrl4690 int + var yyrt4690 bool + if yyl4690 > cap(yyv4690) { - yyrl4647, yyrt4647 = z.DecInferLen(yyl4647, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4647 { - if yyrl4647 <= cap(yyv4647) { - yyv4647 = yyv4647[:yyrl4647] + yyrl4690, yyrt4690 = z.DecInferLen(yyl4690, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4690 { + if yyrl4690 <= cap(yyv4690) { + yyv4690 = yyv4690[:yyrl4690] } else { - yyv4647 = make([]FinalizerName, yyrl4647) + yyv4690 = make([]FinalizerName, yyrl4690) } } else { - yyv4647 = make([]FinalizerName, yyrl4647) + yyv4690 = make([]FinalizerName, yyrl4690) } - yyc4647 = true - yyrr4647 = len(yyv4647) - } else if yyl4647 != len(yyv4647) { - yyv4647 = yyv4647[:yyl4647] - yyc4647 = true + yyc4690 = true + yyrr4690 = len(yyv4690) + } else if yyl4690 != len(yyv4690) { + yyv4690 = yyv4690[:yyl4690] + yyc4690 = true } - yyj4647 := 0 - for ; yyj4647 < yyrr4647; yyj4647++ { - yyh4647.ElemContainerState(yyj4647) + yyj4690 := 0 + for ; yyj4690 < yyrr4690; yyj4690++ { + yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4647[yyj4647] = "" + yyv4690[yyj4690] = "" } else { - yyv4647[yyj4647] = FinalizerName(r.DecodeString()) + yyv4690[yyj4690] = FinalizerName(r.DecodeString()) } } - if yyrt4647 { - for ; yyj4647 < yyl4647; yyj4647++ { - yyv4647 = append(yyv4647, "") - yyh4647.ElemContainerState(yyj4647) + if yyrt4690 { + for ; yyj4690 < yyl4690; yyj4690++ { + yyv4690 = append(yyv4690, "") + yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4647[yyj4647] = "" + yyv4690[yyj4690] = "" } else { - yyv4647[yyj4647] = FinalizerName(r.DecodeString()) + yyv4690[yyj4690] = FinalizerName(r.DecodeString()) } } } } else { - yyj4647 := 0 - for ; !r.CheckBreak(); yyj4647++ { + yyj4690 := 0 + for ; !r.CheckBreak(); yyj4690++ { - if yyj4647 >= len(yyv4647) { - yyv4647 = append(yyv4647, "") // var yyz4647 FinalizerName - yyc4647 = true + if yyj4690 >= len(yyv4690) { + yyv4690 = append(yyv4690, "") // var yyz4690 FinalizerName + yyc4690 = true } - yyh4647.ElemContainerState(yyj4647) - if yyj4647 < len(yyv4647) { + yyh4690.ElemContainerState(yyj4690) + if yyj4690 < len(yyv4690) { if r.TryDecodeAsNil() { - yyv4647[yyj4647] = "" + yyv4690[yyj4690] = "" } else { - yyv4647[yyj4647] = FinalizerName(r.DecodeString()) + yyv4690[yyj4690] = FinalizerName(r.DecodeString()) } } else { @@ -59350,17 +59961,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4647 < len(yyv4647) { - yyv4647 = yyv4647[:yyj4647] - yyc4647 = true - } else if yyj4647 == 0 && yyv4647 == nil { - yyv4647 = []FinalizerName{} - yyc4647 = true + if yyj4690 < len(yyv4690) { + yyv4690 = yyv4690[:yyj4690] + yyc4690 = true + } else if yyj4690 == 0 && yyv4690 == nil { + yyv4690 = []FinalizerName{} + yyc4690 = true } } - yyh4647.End() - if yyc4647 { - *v = yyv4647 + yyh4690.End() + if yyc4690 { + *v = yyv4690 } } @@ -59369,10 +59980,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4651 := range v { + for _, yyv4694 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4652 := &yyv4651 - yy4652.CodecEncodeSelf(e) + yy4695 := &yyv4694 + yy4695.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59382,83 +59993,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4653 := *v - yyh4653, yyl4653 := z.DecSliceHelperStart() - var yyc4653 bool - if yyl4653 == 0 { - if yyv4653 == nil { - yyv4653 = []Namespace{} - yyc4653 = true - } else if len(yyv4653) != 0 { - yyv4653 = yyv4653[:0] - yyc4653 = true + yyv4696 := *v + yyh4696, yyl4696 := z.DecSliceHelperStart() + var yyc4696 bool + if yyl4696 == 0 { + if yyv4696 == nil { + yyv4696 = []Namespace{} + yyc4696 = true + } else if len(yyv4696) != 0 { + yyv4696 = yyv4696[:0] + yyc4696 = true } - } else if yyl4653 > 0 { - var yyrr4653, yyrl4653 int - var yyrt4653 bool - if yyl4653 > cap(yyv4653) { + } else if yyl4696 > 0 { + var yyrr4696, yyrl4696 int + var yyrt4696 bool + if yyl4696 > cap(yyv4696) { - yyrg4653 := len(yyv4653) > 0 - yyv24653 := yyv4653 - yyrl4653, yyrt4653 = z.DecInferLen(yyl4653, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4653 { - if yyrl4653 <= cap(yyv4653) { - yyv4653 = yyv4653[:yyrl4653] + yyrg4696 := len(yyv4696) > 0 + yyv24696 := yyv4696 + yyrl4696, yyrt4696 = z.DecInferLen(yyl4696, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4696 { + if yyrl4696 <= cap(yyv4696) { + yyv4696 = yyv4696[:yyrl4696] } else { - yyv4653 = make([]Namespace, yyrl4653) + yyv4696 = make([]Namespace, yyrl4696) } } else { - yyv4653 = make([]Namespace, yyrl4653) + yyv4696 = make([]Namespace, yyrl4696) } - yyc4653 = true - yyrr4653 = len(yyv4653) - if yyrg4653 { - copy(yyv4653, yyv24653) + yyc4696 = true + yyrr4696 = len(yyv4696) + if yyrg4696 { + copy(yyv4696, yyv24696) } - } else if yyl4653 != len(yyv4653) { - yyv4653 = yyv4653[:yyl4653] - yyc4653 = true + } else if yyl4696 != len(yyv4696) { + yyv4696 = yyv4696[:yyl4696] + yyc4696 = true } - yyj4653 := 0 - for ; yyj4653 < yyrr4653; yyj4653++ { - yyh4653.ElemContainerState(yyj4653) + yyj4696 := 0 + for ; yyj4696 < yyrr4696; yyj4696++ { + yyh4696.ElemContainerState(yyj4696) if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Namespace{} + yyv4696[yyj4696] = Namespace{} } else { - yyv4654 := &yyv4653[yyj4653] - yyv4654.CodecDecodeSelf(d) + yyv4697 := &yyv4696[yyj4696] + yyv4697.CodecDecodeSelf(d) } } - if yyrt4653 { - for ; yyj4653 < yyl4653; yyj4653++ { - yyv4653 = append(yyv4653, Namespace{}) - yyh4653.ElemContainerState(yyj4653) + if yyrt4696 { + for ; yyj4696 < yyl4696; yyj4696++ { + yyv4696 = append(yyv4696, Namespace{}) + yyh4696.ElemContainerState(yyj4696) if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Namespace{} + yyv4696[yyj4696] = Namespace{} } else { - yyv4655 := &yyv4653[yyj4653] - yyv4655.CodecDecodeSelf(d) + yyv4698 := &yyv4696[yyj4696] + yyv4698.CodecDecodeSelf(d) } } } } else { - yyj4653 := 0 - for ; !r.CheckBreak(); yyj4653++ { + yyj4696 := 0 + for ; !r.CheckBreak(); yyj4696++ { - if yyj4653 >= len(yyv4653) { - yyv4653 = append(yyv4653, Namespace{}) // var yyz4653 Namespace - yyc4653 = true + if yyj4696 >= len(yyv4696) { + yyv4696 = append(yyv4696, Namespace{}) // var yyz4696 Namespace + yyc4696 = true } - yyh4653.ElemContainerState(yyj4653) - if yyj4653 < len(yyv4653) { + yyh4696.ElemContainerState(yyj4696) + if yyj4696 < len(yyv4696) { if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Namespace{} + yyv4696[yyj4696] = Namespace{} } else { - yyv4656 := &yyv4653[yyj4653] - yyv4656.CodecDecodeSelf(d) + yyv4699 := &yyv4696[yyj4696] + yyv4699.CodecDecodeSelf(d) } } else { @@ -59466,17 +60077,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4653 < len(yyv4653) { - yyv4653 = yyv4653[:yyj4653] - yyc4653 = true - } else if yyj4653 == 0 && yyv4653 == nil { - yyv4653 = []Namespace{} - yyc4653 = true + if yyj4696 < len(yyv4696) { + yyv4696 = yyv4696[:yyj4696] + yyc4696 = true + } else if yyj4696 == 0 && yyv4696 == nil { + yyv4696 = []Namespace{} + yyc4696 = true } } - yyh4653.End() - if yyc4653 { - *v = yyv4653 + yyh4696.End() + if yyc4696 { + *v = yyv4696 } } @@ -59485,10 +60096,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4657 := range v { + for _, yyv4700 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4658 := &yyv4657 - yy4658.CodecEncodeSelf(e) + yy4701 := &yyv4700 + yy4701.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59498,83 +60109,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4659 := *v - yyh4659, yyl4659 := z.DecSliceHelperStart() - var yyc4659 bool - if yyl4659 == 0 { - if yyv4659 == nil { - yyv4659 = []Event{} - yyc4659 = true - } else if len(yyv4659) != 0 { - yyv4659 = yyv4659[:0] - yyc4659 = true + yyv4702 := *v + yyh4702, yyl4702 := z.DecSliceHelperStart() + var yyc4702 bool + if yyl4702 == 0 { + if yyv4702 == nil { + yyv4702 = []Event{} + yyc4702 = true + } else if len(yyv4702) != 0 { + yyv4702 = yyv4702[:0] + yyc4702 = true } - } else if yyl4659 > 0 { - var yyrr4659, yyrl4659 int - var yyrt4659 bool - if yyl4659 > cap(yyv4659) { + } else if yyl4702 > 0 { + var yyrr4702, yyrl4702 int + var yyrt4702 bool + if yyl4702 > cap(yyv4702) { - yyrg4659 := len(yyv4659) > 0 - yyv24659 := yyv4659 - yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4659 { - if yyrl4659 <= cap(yyv4659) { - yyv4659 = yyv4659[:yyrl4659] + yyrg4702 := len(yyv4702) > 0 + yyv24702 := yyv4702 + yyrl4702, yyrt4702 = z.DecInferLen(yyl4702, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4702 { + if yyrl4702 <= cap(yyv4702) { + yyv4702 = yyv4702[:yyrl4702] } else { - yyv4659 = make([]Event, yyrl4659) + yyv4702 = make([]Event, yyrl4702) } } else { - yyv4659 = make([]Event, yyrl4659) + yyv4702 = make([]Event, yyrl4702) } - yyc4659 = true - yyrr4659 = len(yyv4659) - if yyrg4659 { - copy(yyv4659, yyv24659) + yyc4702 = true + yyrr4702 = len(yyv4702) + if yyrg4702 { + copy(yyv4702, yyv24702) } - } else if yyl4659 != len(yyv4659) { - yyv4659 = yyv4659[:yyl4659] - yyc4659 = true + } else if yyl4702 != len(yyv4702) { + yyv4702 = yyv4702[:yyl4702] + yyc4702 = true } - yyj4659 := 0 - for ; yyj4659 < yyrr4659; yyj4659++ { - yyh4659.ElemContainerState(yyj4659) + yyj4702 := 0 + for ; yyj4702 < yyrr4702; yyj4702++ { + yyh4702.ElemContainerState(yyj4702) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = Event{} + yyv4702[yyj4702] = Event{} } else { - yyv4660 := &yyv4659[yyj4659] - yyv4660.CodecDecodeSelf(d) + yyv4703 := &yyv4702[yyj4702] + yyv4703.CodecDecodeSelf(d) } } - if yyrt4659 { - for ; yyj4659 < yyl4659; yyj4659++ { - yyv4659 = append(yyv4659, Event{}) - yyh4659.ElemContainerState(yyj4659) + if yyrt4702 { + for ; yyj4702 < yyl4702; yyj4702++ { + yyv4702 = append(yyv4702, Event{}) + yyh4702.ElemContainerState(yyj4702) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = Event{} + yyv4702[yyj4702] = Event{} } else { - yyv4661 := &yyv4659[yyj4659] - yyv4661.CodecDecodeSelf(d) + yyv4704 := &yyv4702[yyj4702] + yyv4704.CodecDecodeSelf(d) } } } } else { - yyj4659 := 0 - for ; !r.CheckBreak(); yyj4659++ { + yyj4702 := 0 + for ; !r.CheckBreak(); yyj4702++ { - if yyj4659 >= len(yyv4659) { - yyv4659 = append(yyv4659, Event{}) // var yyz4659 Event - yyc4659 = true + if yyj4702 >= len(yyv4702) { + yyv4702 = append(yyv4702, Event{}) // var yyz4702 Event + yyc4702 = true } - yyh4659.ElemContainerState(yyj4659) - if yyj4659 < len(yyv4659) { + yyh4702.ElemContainerState(yyj4702) + if yyj4702 < len(yyv4702) { if r.TryDecodeAsNil() { - yyv4659[yyj4659] = Event{} + yyv4702[yyj4702] = Event{} } else { - yyv4662 := &yyv4659[yyj4659] - yyv4662.CodecDecodeSelf(d) + yyv4705 := &yyv4702[yyj4702] + yyv4705.CodecDecodeSelf(d) } } else { @@ -59582,17 +60193,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4659 < len(yyv4659) { - yyv4659 = yyv4659[:yyj4659] - yyc4659 = true - } else if yyj4659 == 0 && yyv4659 == nil { - yyv4659 = []Event{} - yyc4659 = true + if yyj4702 < len(yyv4702) { + yyv4702 = yyv4702[:yyj4702] + yyc4702 = true + } else if yyj4702 == 0 && yyv4702 == nil { + yyv4702 = []Event{} + yyc4702 = true } } - yyh4659.End() - if yyc4659 { - *v = yyv4659 + yyh4702.End() + if yyc4702 { + *v = yyv4702 } } @@ -59601,17 +60212,17 @@ func (x codecSelfer1234) encSliceruntime_Object(v []pkg7_runtime.Object, e *code z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4663 := range v { + for _, yyv4706 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4663 == nil { + if yyv4706 == nil { r.EncodeNil() } else { - yym4664 := z.EncBinary() - _ = yym4664 + yym4707 := z.EncBinary() + _ = yym4707 if false { - } else if z.HasExtensions() && z.EncExt(yyv4663) { + } else if z.HasExtensions() && z.EncExt(yyv4706) { } else { - z.EncFallback(yyv4663) + z.EncFallback(yyv4706) } } } @@ -59623,74 +60234,74 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4665 := *v - yyh4665, yyl4665 := z.DecSliceHelperStart() - var yyc4665 bool - if yyl4665 == 0 { - if yyv4665 == nil { - yyv4665 = []pkg7_runtime.Object{} - yyc4665 = true - } else if len(yyv4665) != 0 { - yyv4665 = yyv4665[:0] - yyc4665 = true + yyv4708 := *v + yyh4708, yyl4708 := z.DecSliceHelperStart() + var yyc4708 bool + if yyl4708 == 0 { + if yyv4708 == nil { + yyv4708 = []pkg7_runtime.Object{} + yyc4708 = true + } else if len(yyv4708) != 0 { + yyv4708 = yyv4708[:0] + yyc4708 = true } - } else if yyl4665 > 0 { - var yyrr4665, yyrl4665 int - var yyrt4665 bool - if yyl4665 > cap(yyv4665) { + } else if yyl4708 > 0 { + var yyrr4708, yyrl4708 int + var yyrt4708 bool + if yyl4708 > cap(yyv4708) { - yyrg4665 := len(yyv4665) > 0 - yyv24665 := yyv4665 - yyrl4665, yyrt4665 = z.DecInferLen(yyl4665, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4665 { - if yyrl4665 <= cap(yyv4665) { - yyv4665 = yyv4665[:yyrl4665] + yyrg4708 := len(yyv4708) > 0 + yyv24708 := yyv4708 + yyrl4708, yyrt4708 = z.DecInferLen(yyl4708, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4708 { + if yyrl4708 <= cap(yyv4708) { + yyv4708 = yyv4708[:yyrl4708] } else { - yyv4665 = make([]pkg7_runtime.Object, yyrl4665) + yyv4708 = make([]pkg7_runtime.Object, yyrl4708) } } else { - yyv4665 = make([]pkg7_runtime.Object, yyrl4665) + yyv4708 = make([]pkg7_runtime.Object, yyrl4708) } - yyc4665 = true - yyrr4665 = len(yyv4665) - if yyrg4665 { - copy(yyv4665, yyv24665) + yyc4708 = true + yyrr4708 = len(yyv4708) + if yyrg4708 { + copy(yyv4708, yyv24708) } - } else if yyl4665 != len(yyv4665) { - yyv4665 = yyv4665[:yyl4665] - yyc4665 = true + } else if yyl4708 != len(yyv4708) { + yyv4708 = yyv4708[:yyl4708] + yyc4708 = true } - yyj4665 := 0 - for ; yyj4665 < yyrr4665; yyj4665++ { - yyh4665.ElemContainerState(yyj4665) + yyj4708 := 0 + for ; yyj4708 < yyrr4708; yyj4708++ { + yyh4708.ElemContainerState(yyj4708) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = nil + yyv4708[yyj4708] = nil } else { - yyv4666 := &yyv4665[yyj4665] - yym4667 := z.DecBinary() - _ = yym4667 + yyv4709 := &yyv4708[yyj4708] + yym4710 := z.DecBinary() + _ = yym4710 if false { - } else if z.HasExtensions() && z.DecExt(yyv4666) { + } else if z.HasExtensions() && z.DecExt(yyv4709) { } else { - z.DecFallback(yyv4666, true) + z.DecFallback(yyv4709, true) } } } - if yyrt4665 { - for ; yyj4665 < yyl4665; yyj4665++ { - yyv4665 = append(yyv4665, nil) - yyh4665.ElemContainerState(yyj4665) + if yyrt4708 { + for ; yyj4708 < yyl4708; yyj4708++ { + yyv4708 = append(yyv4708, nil) + yyh4708.ElemContainerState(yyj4708) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = nil + yyv4708[yyj4708] = nil } else { - yyv4668 := &yyv4665[yyj4665] - yym4669 := z.DecBinary() - _ = yym4669 + yyv4711 := &yyv4708[yyj4708] + yym4712 := z.DecBinary() + _ = yym4712 if false { - } else if z.HasExtensions() && z.DecExt(yyv4668) { + } else if z.HasExtensions() && z.DecExt(yyv4711) { } else { - z.DecFallback(yyv4668, true) + z.DecFallback(yyv4711, true) } } @@ -59698,25 +60309,25 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } else { - yyj4665 := 0 - for ; !r.CheckBreak(); yyj4665++ { + yyj4708 := 0 + for ; !r.CheckBreak(); yyj4708++ { - if yyj4665 >= len(yyv4665) { - yyv4665 = append(yyv4665, nil) // var yyz4665 pkg7_runtime.Object - yyc4665 = true + if yyj4708 >= len(yyv4708) { + yyv4708 = append(yyv4708, nil) // var yyz4708 pkg7_runtime.Object + yyc4708 = true } - yyh4665.ElemContainerState(yyj4665) - if yyj4665 < len(yyv4665) { + yyh4708.ElemContainerState(yyj4708) + if yyj4708 < len(yyv4708) { if r.TryDecodeAsNil() { - yyv4665[yyj4665] = nil + yyv4708[yyj4708] = nil } else { - yyv4670 := &yyv4665[yyj4665] - yym4671 := z.DecBinary() - _ = yym4671 + yyv4713 := &yyv4708[yyj4708] + yym4714 := z.DecBinary() + _ = yym4714 if false { - } else if z.HasExtensions() && z.DecExt(yyv4670) { + } else if z.HasExtensions() && z.DecExt(yyv4713) { } else { - z.DecFallback(yyv4670, true) + z.DecFallback(yyv4713, true) } } @@ -59725,17 +60336,17 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } - if yyj4665 < len(yyv4665) { - yyv4665 = yyv4665[:yyj4665] - yyc4665 = true - } else if yyj4665 == 0 && yyv4665 == nil { - yyv4665 = []pkg7_runtime.Object{} - yyc4665 = true + if yyj4708 < len(yyv4708) { + yyv4708 = yyv4708[:yyj4708] + yyc4708 = true + } else if yyj4708 == 0 && yyv4708 == nil { + yyv4708 = []pkg7_runtime.Object{} + yyc4708 = true } } - yyh4665.End() - if yyc4665 { - *v = yyv4665 + yyh4708.End() + if yyc4708 { + *v = yyv4708 } } @@ -59744,10 +60355,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4672 := range v { + for _, yyv4715 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4673 := &yyv4672 - yy4673.CodecEncodeSelf(e) + yy4716 := &yyv4715 + yy4716.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59757,83 +60368,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4674 := *v - yyh4674, yyl4674 := z.DecSliceHelperStart() - var yyc4674 bool - if yyl4674 == 0 { - if yyv4674 == nil { - yyv4674 = []LimitRangeItem{} - yyc4674 = true - } else if len(yyv4674) != 0 { - yyv4674 = yyv4674[:0] - yyc4674 = true + yyv4717 := *v + yyh4717, yyl4717 := z.DecSliceHelperStart() + var yyc4717 bool + if yyl4717 == 0 { + if yyv4717 == nil { + yyv4717 = []LimitRangeItem{} + yyc4717 = true + } else if len(yyv4717) != 0 { + yyv4717 = yyv4717[:0] + yyc4717 = true } - } else if yyl4674 > 0 { - var yyrr4674, yyrl4674 int - var yyrt4674 bool - if yyl4674 > cap(yyv4674) { + } else if yyl4717 > 0 { + var yyrr4717, yyrl4717 int + var yyrt4717 bool + if yyl4717 > cap(yyv4717) { - yyrg4674 := len(yyv4674) > 0 - yyv24674 := yyv4674 - yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4674 { - if yyrl4674 <= cap(yyv4674) { - yyv4674 = yyv4674[:yyrl4674] + yyrg4717 := len(yyv4717) > 0 + yyv24717 := yyv4717 + yyrl4717, yyrt4717 = z.DecInferLen(yyl4717, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4717 { + if yyrl4717 <= cap(yyv4717) { + yyv4717 = yyv4717[:yyrl4717] } else { - yyv4674 = make([]LimitRangeItem, yyrl4674) + yyv4717 = make([]LimitRangeItem, yyrl4717) } } else { - yyv4674 = make([]LimitRangeItem, yyrl4674) + yyv4717 = make([]LimitRangeItem, yyrl4717) } - yyc4674 = true - yyrr4674 = len(yyv4674) - if yyrg4674 { - copy(yyv4674, yyv24674) + yyc4717 = true + yyrr4717 = len(yyv4717) + if yyrg4717 { + copy(yyv4717, yyv24717) } - } else if yyl4674 != len(yyv4674) { - yyv4674 = yyv4674[:yyl4674] - yyc4674 = true + } else if yyl4717 != len(yyv4717) { + yyv4717 = yyv4717[:yyl4717] + yyc4717 = true } - yyj4674 := 0 - for ; yyj4674 < yyrr4674; yyj4674++ { - yyh4674.ElemContainerState(yyj4674) + yyj4717 := 0 + for ; yyj4717 < yyrr4717; yyj4717++ { + yyh4717.ElemContainerState(yyj4717) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = LimitRangeItem{} + yyv4717[yyj4717] = LimitRangeItem{} } else { - yyv4675 := &yyv4674[yyj4674] - yyv4675.CodecDecodeSelf(d) + yyv4718 := &yyv4717[yyj4717] + yyv4718.CodecDecodeSelf(d) } } - if yyrt4674 { - for ; yyj4674 < yyl4674; yyj4674++ { - yyv4674 = append(yyv4674, LimitRangeItem{}) - yyh4674.ElemContainerState(yyj4674) + if yyrt4717 { + for ; yyj4717 < yyl4717; yyj4717++ { + yyv4717 = append(yyv4717, LimitRangeItem{}) + yyh4717.ElemContainerState(yyj4717) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = LimitRangeItem{} + yyv4717[yyj4717] = LimitRangeItem{} } else { - yyv4676 := &yyv4674[yyj4674] - yyv4676.CodecDecodeSelf(d) + yyv4719 := &yyv4717[yyj4717] + yyv4719.CodecDecodeSelf(d) } } } } else { - yyj4674 := 0 - for ; !r.CheckBreak(); yyj4674++ { + yyj4717 := 0 + for ; !r.CheckBreak(); yyj4717++ { - if yyj4674 >= len(yyv4674) { - yyv4674 = append(yyv4674, LimitRangeItem{}) // var yyz4674 LimitRangeItem - yyc4674 = true + if yyj4717 >= len(yyv4717) { + yyv4717 = append(yyv4717, LimitRangeItem{}) // var yyz4717 LimitRangeItem + yyc4717 = true } - yyh4674.ElemContainerState(yyj4674) - if yyj4674 < len(yyv4674) { + yyh4717.ElemContainerState(yyj4717) + if yyj4717 < len(yyv4717) { if r.TryDecodeAsNil() { - yyv4674[yyj4674] = LimitRangeItem{} + yyv4717[yyj4717] = LimitRangeItem{} } else { - yyv4677 := &yyv4674[yyj4674] - yyv4677.CodecDecodeSelf(d) + yyv4720 := &yyv4717[yyj4717] + yyv4720.CodecDecodeSelf(d) } } else { @@ -59841,17 +60452,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4674 < len(yyv4674) { - yyv4674 = yyv4674[:yyj4674] - yyc4674 = true - } else if yyj4674 == 0 && yyv4674 == nil { - yyv4674 = []LimitRangeItem{} - yyc4674 = true + if yyj4717 < len(yyv4717) { + yyv4717 = yyv4717[:yyj4717] + yyc4717 = true + } else if yyj4717 == 0 && yyv4717 == nil { + yyv4717 = []LimitRangeItem{} + yyc4717 = true } } - yyh4674.End() - if yyc4674 { - *v = yyv4674 + yyh4717.End() + if yyc4717 { + *v = yyv4717 } } @@ -59860,10 +60471,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4678 := range v { + for _, yyv4721 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4679 := &yyv4678 - yy4679.CodecEncodeSelf(e) + yy4722 := &yyv4721 + yy4722.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59873,83 +60484,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4680 := *v - yyh4680, yyl4680 := z.DecSliceHelperStart() - var yyc4680 bool - if yyl4680 == 0 { - if yyv4680 == nil { - yyv4680 = []LimitRange{} - yyc4680 = true - } else if len(yyv4680) != 0 { - yyv4680 = yyv4680[:0] - yyc4680 = true + yyv4723 := *v + yyh4723, yyl4723 := z.DecSliceHelperStart() + var yyc4723 bool + if yyl4723 == 0 { + if yyv4723 == nil { + yyv4723 = []LimitRange{} + yyc4723 = true + } else if len(yyv4723) != 0 { + yyv4723 = yyv4723[:0] + yyc4723 = true } - } else if yyl4680 > 0 { - var yyrr4680, yyrl4680 int - var yyrt4680 bool - if yyl4680 > cap(yyv4680) { + } else if yyl4723 > 0 { + var yyrr4723, yyrl4723 int + var yyrt4723 bool + if yyl4723 > cap(yyv4723) { - yyrg4680 := len(yyv4680) > 0 - yyv24680 := yyv4680 - yyrl4680, yyrt4680 = z.DecInferLen(yyl4680, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4680 { - if yyrl4680 <= cap(yyv4680) { - yyv4680 = yyv4680[:yyrl4680] + yyrg4723 := len(yyv4723) > 0 + yyv24723 := yyv4723 + yyrl4723, yyrt4723 = z.DecInferLen(yyl4723, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4723 { + if yyrl4723 <= cap(yyv4723) { + yyv4723 = yyv4723[:yyrl4723] } else { - yyv4680 = make([]LimitRange, yyrl4680) + yyv4723 = make([]LimitRange, yyrl4723) } } else { - yyv4680 = make([]LimitRange, yyrl4680) + yyv4723 = make([]LimitRange, yyrl4723) } - yyc4680 = true - yyrr4680 = len(yyv4680) - if yyrg4680 { - copy(yyv4680, yyv24680) + yyc4723 = true + yyrr4723 = len(yyv4723) + if yyrg4723 { + copy(yyv4723, yyv24723) } - } else if yyl4680 != len(yyv4680) { - yyv4680 = yyv4680[:yyl4680] - yyc4680 = true + } else if yyl4723 != len(yyv4723) { + yyv4723 = yyv4723[:yyl4723] + yyc4723 = true } - yyj4680 := 0 - for ; yyj4680 < yyrr4680; yyj4680++ { - yyh4680.ElemContainerState(yyj4680) + yyj4723 := 0 + for ; yyj4723 < yyrr4723; yyj4723++ { + yyh4723.ElemContainerState(yyj4723) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = LimitRange{} + yyv4723[yyj4723] = LimitRange{} } else { - yyv4681 := &yyv4680[yyj4680] - yyv4681.CodecDecodeSelf(d) + yyv4724 := &yyv4723[yyj4723] + yyv4724.CodecDecodeSelf(d) } } - if yyrt4680 { - for ; yyj4680 < yyl4680; yyj4680++ { - yyv4680 = append(yyv4680, LimitRange{}) - yyh4680.ElemContainerState(yyj4680) + if yyrt4723 { + for ; yyj4723 < yyl4723; yyj4723++ { + yyv4723 = append(yyv4723, LimitRange{}) + yyh4723.ElemContainerState(yyj4723) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = LimitRange{} + yyv4723[yyj4723] = LimitRange{} } else { - yyv4682 := &yyv4680[yyj4680] - yyv4682.CodecDecodeSelf(d) + yyv4725 := &yyv4723[yyj4723] + yyv4725.CodecDecodeSelf(d) } } } } else { - yyj4680 := 0 - for ; !r.CheckBreak(); yyj4680++ { + yyj4723 := 0 + for ; !r.CheckBreak(); yyj4723++ { - if yyj4680 >= len(yyv4680) { - yyv4680 = append(yyv4680, LimitRange{}) // var yyz4680 LimitRange - yyc4680 = true + if yyj4723 >= len(yyv4723) { + yyv4723 = append(yyv4723, LimitRange{}) // var yyz4723 LimitRange + yyc4723 = true } - yyh4680.ElemContainerState(yyj4680) - if yyj4680 < len(yyv4680) { + yyh4723.ElemContainerState(yyj4723) + if yyj4723 < len(yyv4723) { if r.TryDecodeAsNil() { - yyv4680[yyj4680] = LimitRange{} + yyv4723[yyj4723] = LimitRange{} } else { - yyv4683 := &yyv4680[yyj4680] - yyv4683.CodecDecodeSelf(d) + yyv4726 := &yyv4723[yyj4723] + yyv4726.CodecDecodeSelf(d) } } else { @@ -59957,17 +60568,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4680 < len(yyv4680) { - yyv4680 = yyv4680[:yyj4680] - yyc4680 = true - } else if yyj4680 == 0 && yyv4680 == nil { - yyv4680 = []LimitRange{} - yyc4680 = true + if yyj4723 < len(yyv4723) { + yyv4723 = yyv4723[:yyj4723] + yyc4723 = true + } else if yyj4723 == 0 && yyv4723 == nil { + yyv4723 = []LimitRange{} + yyc4723 = true } } - yyh4680.End() - if yyc4680 { - *v = yyv4680 + yyh4723.End() + if yyc4723 { + *v = yyv4723 } } @@ -59976,9 +60587,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4684 := range v { + for _, yyv4727 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4684.CodecEncodeSelf(e) + yyv4727.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59988,75 +60599,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4685 := *v - yyh4685, yyl4685 := z.DecSliceHelperStart() - var yyc4685 bool - if yyl4685 == 0 { - if yyv4685 == nil { - yyv4685 = []ResourceQuotaScope{} - yyc4685 = true - } else if len(yyv4685) != 0 { - yyv4685 = yyv4685[:0] - yyc4685 = true + yyv4728 := *v + yyh4728, yyl4728 := z.DecSliceHelperStart() + var yyc4728 bool + if yyl4728 == 0 { + if yyv4728 == nil { + yyv4728 = []ResourceQuotaScope{} + yyc4728 = true + } else if len(yyv4728) != 0 { + yyv4728 = yyv4728[:0] + yyc4728 = true } - } else if yyl4685 > 0 { - var yyrr4685, yyrl4685 int - var yyrt4685 bool - if yyl4685 > cap(yyv4685) { + } else if yyl4728 > 0 { + var yyrr4728, yyrl4728 int + var yyrt4728 bool + if yyl4728 > cap(yyv4728) { - yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4685 { - if yyrl4685 <= cap(yyv4685) { - yyv4685 = yyv4685[:yyrl4685] + yyrl4728, yyrt4728 = z.DecInferLen(yyl4728, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4728 { + if yyrl4728 <= cap(yyv4728) { + yyv4728 = yyv4728[:yyrl4728] } else { - yyv4685 = make([]ResourceQuotaScope, yyrl4685) + yyv4728 = make([]ResourceQuotaScope, yyrl4728) } } else { - yyv4685 = make([]ResourceQuotaScope, yyrl4685) + yyv4728 = make([]ResourceQuotaScope, yyrl4728) } - yyc4685 = true - yyrr4685 = len(yyv4685) - } else if yyl4685 != len(yyv4685) { - yyv4685 = yyv4685[:yyl4685] - yyc4685 = true + yyc4728 = true + yyrr4728 = len(yyv4728) + } else if yyl4728 != len(yyv4728) { + yyv4728 = yyv4728[:yyl4728] + yyc4728 = true } - yyj4685 := 0 - for ; yyj4685 < yyrr4685; yyj4685++ { - yyh4685.ElemContainerState(yyj4685) + yyj4728 := 0 + for ; yyj4728 < yyrr4728; yyj4728++ { + yyh4728.ElemContainerState(yyj4728) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = "" + yyv4728[yyj4728] = "" } else { - yyv4685[yyj4685] = ResourceQuotaScope(r.DecodeString()) + yyv4728[yyj4728] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4685 { - for ; yyj4685 < yyl4685; yyj4685++ { - yyv4685 = append(yyv4685, "") - yyh4685.ElemContainerState(yyj4685) + if yyrt4728 { + for ; yyj4728 < yyl4728; yyj4728++ { + yyv4728 = append(yyv4728, "") + yyh4728.ElemContainerState(yyj4728) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = "" + yyv4728[yyj4728] = "" } else { - yyv4685[yyj4685] = ResourceQuotaScope(r.DecodeString()) + yyv4728[yyj4728] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4685 := 0 - for ; !r.CheckBreak(); yyj4685++ { + yyj4728 := 0 + for ; !r.CheckBreak(); yyj4728++ { - if yyj4685 >= len(yyv4685) { - yyv4685 = append(yyv4685, "") // var yyz4685 ResourceQuotaScope - yyc4685 = true + if yyj4728 >= len(yyv4728) { + yyv4728 = append(yyv4728, "") // var yyz4728 ResourceQuotaScope + yyc4728 = true } - yyh4685.ElemContainerState(yyj4685) - if yyj4685 < len(yyv4685) { + yyh4728.ElemContainerState(yyj4728) + if yyj4728 < len(yyv4728) { if r.TryDecodeAsNil() { - yyv4685[yyj4685] = "" + yyv4728[yyj4728] = "" } else { - yyv4685[yyj4685] = ResourceQuotaScope(r.DecodeString()) + yyv4728[yyj4728] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -60064,17 +60675,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4685 < len(yyv4685) { - yyv4685 = yyv4685[:yyj4685] - yyc4685 = true - } else if yyj4685 == 0 && yyv4685 == nil { - yyv4685 = []ResourceQuotaScope{} - yyc4685 = true + if yyj4728 < len(yyv4728) { + yyv4728 = yyv4728[:yyj4728] + yyc4728 = true + } else if yyj4728 == 0 && yyv4728 == nil { + yyv4728 = []ResourceQuotaScope{} + yyc4728 = true } } - yyh4685.End() - if yyc4685 { - *v = yyv4685 + yyh4728.End() + if yyc4728 { + *v = yyv4728 } } @@ -60083,10 +60694,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4689 := range v { + for _, yyv4732 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4690 := &yyv4689 - yy4690.CodecEncodeSelf(e) + yy4733 := &yyv4732 + yy4733.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60096,83 +60707,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4691 := *v - yyh4691, yyl4691 := z.DecSliceHelperStart() - var yyc4691 bool - if yyl4691 == 0 { - if yyv4691 == nil { - yyv4691 = []ResourceQuota{} - yyc4691 = true - } else if len(yyv4691) != 0 { - yyv4691 = yyv4691[:0] - yyc4691 = true + yyv4734 := *v + yyh4734, yyl4734 := z.DecSliceHelperStart() + var yyc4734 bool + if yyl4734 == 0 { + if yyv4734 == nil { + yyv4734 = []ResourceQuota{} + yyc4734 = true + } else if len(yyv4734) != 0 { + yyv4734 = yyv4734[:0] + yyc4734 = true } - } else if yyl4691 > 0 { - var yyrr4691, yyrl4691 int - var yyrt4691 bool - if yyl4691 > cap(yyv4691) { + } else if yyl4734 > 0 { + var yyrr4734, yyrl4734 int + var yyrt4734 bool + if yyl4734 > cap(yyv4734) { - yyrg4691 := len(yyv4691) > 0 - yyv24691 := yyv4691 - yyrl4691, yyrt4691 = z.DecInferLen(yyl4691, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4691 { - if yyrl4691 <= cap(yyv4691) { - yyv4691 = yyv4691[:yyrl4691] + yyrg4734 := len(yyv4734) > 0 + yyv24734 := yyv4734 + yyrl4734, yyrt4734 = z.DecInferLen(yyl4734, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4734 { + if yyrl4734 <= cap(yyv4734) { + yyv4734 = yyv4734[:yyrl4734] } else { - yyv4691 = make([]ResourceQuota, yyrl4691) + yyv4734 = make([]ResourceQuota, yyrl4734) } } else { - yyv4691 = make([]ResourceQuota, yyrl4691) + yyv4734 = make([]ResourceQuota, yyrl4734) } - yyc4691 = true - yyrr4691 = len(yyv4691) - if yyrg4691 { - copy(yyv4691, yyv24691) + yyc4734 = true + yyrr4734 = len(yyv4734) + if yyrg4734 { + copy(yyv4734, yyv24734) } - } else if yyl4691 != len(yyv4691) { - yyv4691 = yyv4691[:yyl4691] - yyc4691 = true + } else if yyl4734 != len(yyv4734) { + yyv4734 = yyv4734[:yyl4734] + yyc4734 = true } - yyj4691 := 0 - for ; yyj4691 < yyrr4691; yyj4691++ { - yyh4691.ElemContainerState(yyj4691) + yyj4734 := 0 + for ; yyj4734 < yyrr4734; yyj4734++ { + yyh4734.ElemContainerState(yyj4734) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = ResourceQuota{} + yyv4734[yyj4734] = ResourceQuota{} } else { - yyv4692 := &yyv4691[yyj4691] - yyv4692.CodecDecodeSelf(d) + yyv4735 := &yyv4734[yyj4734] + yyv4735.CodecDecodeSelf(d) } } - if yyrt4691 { - for ; yyj4691 < yyl4691; yyj4691++ { - yyv4691 = append(yyv4691, ResourceQuota{}) - yyh4691.ElemContainerState(yyj4691) + if yyrt4734 { + for ; yyj4734 < yyl4734; yyj4734++ { + yyv4734 = append(yyv4734, ResourceQuota{}) + yyh4734.ElemContainerState(yyj4734) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = ResourceQuota{} + yyv4734[yyj4734] = ResourceQuota{} } else { - yyv4693 := &yyv4691[yyj4691] - yyv4693.CodecDecodeSelf(d) + yyv4736 := &yyv4734[yyj4734] + yyv4736.CodecDecodeSelf(d) } } } } else { - yyj4691 := 0 - for ; !r.CheckBreak(); yyj4691++ { + yyj4734 := 0 + for ; !r.CheckBreak(); yyj4734++ { - if yyj4691 >= len(yyv4691) { - yyv4691 = append(yyv4691, ResourceQuota{}) // var yyz4691 ResourceQuota - yyc4691 = true + if yyj4734 >= len(yyv4734) { + yyv4734 = append(yyv4734, ResourceQuota{}) // var yyz4734 ResourceQuota + yyc4734 = true } - yyh4691.ElemContainerState(yyj4691) - if yyj4691 < len(yyv4691) { + yyh4734.ElemContainerState(yyj4734) + if yyj4734 < len(yyv4734) { if r.TryDecodeAsNil() { - yyv4691[yyj4691] = ResourceQuota{} + yyv4734[yyj4734] = ResourceQuota{} } else { - yyv4694 := &yyv4691[yyj4691] - yyv4694.CodecDecodeSelf(d) + yyv4737 := &yyv4734[yyj4734] + yyv4737.CodecDecodeSelf(d) } } else { @@ -60180,17 +60791,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4691 < len(yyv4691) { - yyv4691 = yyv4691[:yyj4691] - yyc4691 = true - } else if yyj4691 == 0 && yyv4691 == nil { - yyv4691 = []ResourceQuota{} - yyc4691 = true + if yyj4734 < len(yyv4734) { + yyv4734 = yyv4734[:yyj4734] + yyc4734 = true + } else if yyj4734 == 0 && yyv4734 == nil { + yyv4734 = []ResourceQuota{} + yyc4734 = true } } - yyh4691.End() - if yyc4691 { - *v = yyv4691 + yyh4734.End() + if yyc4734 { + *v = yyv4734 } } @@ -60199,23 +60810,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4695, yyv4695 := range v { + for yyk4738, yyv4738 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4696 := z.EncBinary() - _ = yym4696 + yym4739 := z.EncBinary() + _ = yym4739 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4695)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4738)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4695 == nil { + if yyv4738 == nil { r.EncodeNil() } else { - yym4697 := z.EncBinary() - _ = yym4697 + yym4740 := z.EncBinary() + _ = yym4740 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4695)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4738)) } } } @@ -60227,80 +60838,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4698 := *v - yyl4698 := r.ReadMapStart() - yybh4698 := z.DecBasicHandle() - if yyv4698 == nil { - yyrl4698, _ := z.DecInferLen(yyl4698, yybh4698.MaxInitLen, 40) - yyv4698 = make(map[string][]uint8, yyrl4698) - *v = yyv4698 + yyv4741 := *v + yyl4741 := r.ReadMapStart() + yybh4741 := z.DecBasicHandle() + if yyv4741 == nil { + yyrl4741, _ := z.DecInferLen(yyl4741, yybh4741.MaxInitLen, 40) + yyv4741 = make(map[string][]uint8, yyrl4741) + *v = yyv4741 } - var yymk4698 string - var yymv4698 []uint8 - var yymg4698 bool - if yybh4698.MapValueReset { - yymg4698 = true + var yymk4741 string + var yymv4741 []uint8 + var yymg4741 bool + if yybh4741.MapValueReset { + yymg4741 = true } - if yyl4698 > 0 { - for yyj4698 := 0; yyj4698 < yyl4698; yyj4698++ { + if yyl4741 > 0 { + for yyj4741 := 0; yyj4741 < yyl4741; yyj4741++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4698 = "" + yymk4741 = "" } else { - yymk4698 = string(r.DecodeString()) + yymk4741 = string(r.DecodeString()) } - if yymg4698 { - yymv4698 = yyv4698[yymk4698] + if yymg4741 { + yymv4741 = yyv4741[yymk4741] } else { - yymv4698 = nil + yymv4741 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4698 = nil + yymv4741 = nil } else { - yyv4700 := &yymv4698 - yym4701 := z.DecBinary() - _ = yym4701 + yyv4743 := &yymv4741 + yym4744 := z.DecBinary() + _ = yym4744 if false { } else { - *yyv4700 = r.DecodeBytes(*(*[]byte)(yyv4700), false, false) + *yyv4743 = r.DecodeBytes(*(*[]byte)(yyv4743), false, false) } } - if yyv4698 != nil { - yyv4698[yymk4698] = yymv4698 + if yyv4741 != nil { + yyv4741[yymk4741] = yymv4741 } } - } else if yyl4698 < 0 { - for yyj4698 := 0; !r.CheckBreak(); yyj4698++ { + } else if yyl4741 < 0 { + for yyj4741 := 0; !r.CheckBreak(); yyj4741++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4698 = "" + yymk4741 = "" } else { - yymk4698 = string(r.DecodeString()) + yymk4741 = string(r.DecodeString()) } - if yymg4698 { - yymv4698 = yyv4698[yymk4698] + if yymg4741 { + yymv4741 = yyv4741[yymk4741] } else { - yymv4698 = nil + yymv4741 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4698 = nil + yymv4741 = nil } else { - yyv4703 := &yymv4698 - yym4704 := z.DecBinary() - _ = yym4704 + yyv4746 := &yymv4741 + yym4747 := z.DecBinary() + _ = yym4747 if false { } else { - *yyv4703 = r.DecodeBytes(*(*[]byte)(yyv4703), false, false) + *yyv4746 = r.DecodeBytes(*(*[]byte)(yyv4746), false, false) } } - if yyv4698 != nil { - yyv4698[yymk4698] = yymv4698 + if yyv4741 != nil { + yyv4741[yymk4741] = yymv4741 } } } // else len==0: TODO: Should we clear map entries? @@ -60312,10 +60923,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4705 := range v { + for _, yyv4748 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4706 := &yyv4705 - yy4706.CodecEncodeSelf(e) + yy4749 := &yyv4748 + yy4749.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60325,83 +60936,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4707 := *v - yyh4707, yyl4707 := z.DecSliceHelperStart() - var yyc4707 bool - if yyl4707 == 0 { - if yyv4707 == nil { - yyv4707 = []Secret{} - yyc4707 = true - } else if len(yyv4707) != 0 { - yyv4707 = yyv4707[:0] - yyc4707 = true + yyv4750 := *v + yyh4750, yyl4750 := z.DecSliceHelperStart() + var yyc4750 bool + if yyl4750 == 0 { + if yyv4750 == nil { + yyv4750 = []Secret{} + yyc4750 = true + } else if len(yyv4750) != 0 { + yyv4750 = yyv4750[:0] + yyc4750 = true } - } else if yyl4707 > 0 { - var yyrr4707, yyrl4707 int - var yyrt4707 bool - if yyl4707 > cap(yyv4707) { + } else if yyl4750 > 0 { + var yyrr4750, yyrl4750 int + var yyrt4750 bool + if yyl4750 > cap(yyv4750) { - yyrg4707 := len(yyv4707) > 0 - yyv24707 := yyv4707 - yyrl4707, yyrt4707 = z.DecInferLen(yyl4707, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4707 { - if yyrl4707 <= cap(yyv4707) { - yyv4707 = yyv4707[:yyrl4707] + yyrg4750 := len(yyv4750) > 0 + yyv24750 := yyv4750 + yyrl4750, yyrt4750 = z.DecInferLen(yyl4750, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4750 { + if yyrl4750 <= cap(yyv4750) { + yyv4750 = yyv4750[:yyrl4750] } else { - yyv4707 = make([]Secret, yyrl4707) + yyv4750 = make([]Secret, yyrl4750) } } else { - yyv4707 = make([]Secret, yyrl4707) + yyv4750 = make([]Secret, yyrl4750) } - yyc4707 = true - yyrr4707 = len(yyv4707) - if yyrg4707 { - copy(yyv4707, yyv24707) + yyc4750 = true + yyrr4750 = len(yyv4750) + if yyrg4750 { + copy(yyv4750, yyv24750) } - } else if yyl4707 != len(yyv4707) { - yyv4707 = yyv4707[:yyl4707] - yyc4707 = true + } else if yyl4750 != len(yyv4750) { + yyv4750 = yyv4750[:yyl4750] + yyc4750 = true } - yyj4707 := 0 - for ; yyj4707 < yyrr4707; yyj4707++ { - yyh4707.ElemContainerState(yyj4707) + yyj4750 := 0 + for ; yyj4750 < yyrr4750; yyj4750++ { + yyh4750.ElemContainerState(yyj4750) if r.TryDecodeAsNil() { - yyv4707[yyj4707] = Secret{} + yyv4750[yyj4750] = Secret{} } else { - yyv4708 := &yyv4707[yyj4707] - yyv4708.CodecDecodeSelf(d) + yyv4751 := &yyv4750[yyj4750] + yyv4751.CodecDecodeSelf(d) } } - if yyrt4707 { - for ; yyj4707 < yyl4707; yyj4707++ { - yyv4707 = append(yyv4707, Secret{}) - yyh4707.ElemContainerState(yyj4707) + if yyrt4750 { + for ; yyj4750 < yyl4750; yyj4750++ { + yyv4750 = append(yyv4750, Secret{}) + yyh4750.ElemContainerState(yyj4750) if r.TryDecodeAsNil() { - yyv4707[yyj4707] = Secret{} + yyv4750[yyj4750] = Secret{} } else { - yyv4709 := &yyv4707[yyj4707] - yyv4709.CodecDecodeSelf(d) + yyv4752 := &yyv4750[yyj4750] + yyv4752.CodecDecodeSelf(d) } } } } else { - yyj4707 := 0 - for ; !r.CheckBreak(); yyj4707++ { + yyj4750 := 0 + for ; !r.CheckBreak(); yyj4750++ { - if yyj4707 >= len(yyv4707) { - yyv4707 = append(yyv4707, Secret{}) // var yyz4707 Secret - yyc4707 = true + if yyj4750 >= len(yyv4750) { + yyv4750 = append(yyv4750, Secret{}) // var yyz4750 Secret + yyc4750 = true } - yyh4707.ElemContainerState(yyj4707) - if yyj4707 < len(yyv4707) { + yyh4750.ElemContainerState(yyj4750) + if yyj4750 < len(yyv4750) { if r.TryDecodeAsNil() { - yyv4707[yyj4707] = Secret{} + yyv4750[yyj4750] = Secret{} } else { - yyv4710 := &yyv4707[yyj4707] - yyv4710.CodecDecodeSelf(d) + yyv4753 := &yyv4750[yyj4750] + yyv4753.CodecDecodeSelf(d) } } else { @@ -60409,17 +61020,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4707 < len(yyv4707) { - yyv4707 = yyv4707[:yyj4707] - yyc4707 = true - } else if yyj4707 == 0 && yyv4707 == nil { - yyv4707 = []Secret{} - yyc4707 = true + if yyj4750 < len(yyv4750) { + yyv4750 = yyv4750[:yyj4750] + yyc4750 = true + } else if yyj4750 == 0 && yyv4750 == nil { + yyv4750 = []Secret{} + yyc4750 = true } } - yyh4707.End() - if yyc4707 { - *v = yyv4707 + yyh4750.End() + if yyc4750 { + *v = yyv4750 } } @@ -60428,10 +61039,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4711 := range v { + for _, yyv4754 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4712 := &yyv4711 - yy4712.CodecEncodeSelf(e) + yy4755 := &yyv4754 + yy4755.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60441,83 +61052,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4713 := *v - yyh4713, yyl4713 := z.DecSliceHelperStart() - var yyc4713 bool - if yyl4713 == 0 { - if yyv4713 == nil { - yyv4713 = []ConfigMap{} - yyc4713 = true - } else if len(yyv4713) != 0 { - yyv4713 = yyv4713[:0] - yyc4713 = true + yyv4756 := *v + yyh4756, yyl4756 := z.DecSliceHelperStart() + var yyc4756 bool + if yyl4756 == 0 { + if yyv4756 == nil { + yyv4756 = []ConfigMap{} + yyc4756 = true + } else if len(yyv4756) != 0 { + yyv4756 = yyv4756[:0] + yyc4756 = true } - } else if yyl4713 > 0 { - var yyrr4713, yyrl4713 int - var yyrt4713 bool - if yyl4713 > cap(yyv4713) { + } else if yyl4756 > 0 { + var yyrr4756, yyrl4756 int + var yyrt4756 bool + if yyl4756 > cap(yyv4756) { - yyrg4713 := len(yyv4713) > 0 - yyv24713 := yyv4713 - yyrl4713, yyrt4713 = z.DecInferLen(yyl4713, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4713 { - if yyrl4713 <= cap(yyv4713) { - yyv4713 = yyv4713[:yyrl4713] + yyrg4756 := len(yyv4756) > 0 + yyv24756 := yyv4756 + yyrl4756, yyrt4756 = z.DecInferLen(yyl4756, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4756 { + if yyrl4756 <= cap(yyv4756) { + yyv4756 = yyv4756[:yyrl4756] } else { - yyv4713 = make([]ConfigMap, yyrl4713) + yyv4756 = make([]ConfigMap, yyrl4756) } } else { - yyv4713 = make([]ConfigMap, yyrl4713) + yyv4756 = make([]ConfigMap, yyrl4756) } - yyc4713 = true - yyrr4713 = len(yyv4713) - if yyrg4713 { - copy(yyv4713, yyv24713) + yyc4756 = true + yyrr4756 = len(yyv4756) + if yyrg4756 { + copy(yyv4756, yyv24756) } - } else if yyl4713 != len(yyv4713) { - yyv4713 = yyv4713[:yyl4713] - yyc4713 = true + } else if yyl4756 != len(yyv4756) { + yyv4756 = yyv4756[:yyl4756] + yyc4756 = true } - yyj4713 := 0 - for ; yyj4713 < yyrr4713; yyj4713++ { - yyh4713.ElemContainerState(yyj4713) + yyj4756 := 0 + for ; yyj4756 < yyrr4756; yyj4756++ { + yyh4756.ElemContainerState(yyj4756) if r.TryDecodeAsNil() { - yyv4713[yyj4713] = ConfigMap{} + yyv4756[yyj4756] = ConfigMap{} } else { - yyv4714 := &yyv4713[yyj4713] - yyv4714.CodecDecodeSelf(d) + yyv4757 := &yyv4756[yyj4756] + yyv4757.CodecDecodeSelf(d) } } - if yyrt4713 { - for ; yyj4713 < yyl4713; yyj4713++ { - yyv4713 = append(yyv4713, ConfigMap{}) - yyh4713.ElemContainerState(yyj4713) + if yyrt4756 { + for ; yyj4756 < yyl4756; yyj4756++ { + yyv4756 = append(yyv4756, ConfigMap{}) + yyh4756.ElemContainerState(yyj4756) if r.TryDecodeAsNil() { - yyv4713[yyj4713] = ConfigMap{} + yyv4756[yyj4756] = ConfigMap{} } else { - yyv4715 := &yyv4713[yyj4713] - yyv4715.CodecDecodeSelf(d) + yyv4758 := &yyv4756[yyj4756] + yyv4758.CodecDecodeSelf(d) } } } } else { - yyj4713 := 0 - for ; !r.CheckBreak(); yyj4713++ { + yyj4756 := 0 + for ; !r.CheckBreak(); yyj4756++ { - if yyj4713 >= len(yyv4713) { - yyv4713 = append(yyv4713, ConfigMap{}) // var yyz4713 ConfigMap - yyc4713 = true + if yyj4756 >= len(yyv4756) { + yyv4756 = append(yyv4756, ConfigMap{}) // var yyz4756 ConfigMap + yyc4756 = true } - yyh4713.ElemContainerState(yyj4713) - if yyj4713 < len(yyv4713) { + yyh4756.ElemContainerState(yyj4756) + if yyj4756 < len(yyv4756) { if r.TryDecodeAsNil() { - yyv4713[yyj4713] = ConfigMap{} + yyv4756[yyj4756] = ConfigMap{} } else { - yyv4716 := &yyv4713[yyj4713] - yyv4716.CodecDecodeSelf(d) + yyv4759 := &yyv4756[yyj4756] + yyv4759.CodecDecodeSelf(d) } } else { @@ -60525,17 +61136,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4713 < len(yyv4713) { - yyv4713 = yyv4713[:yyj4713] - yyc4713 = true - } else if yyj4713 == 0 && yyv4713 == nil { - yyv4713 = []ConfigMap{} - yyc4713 = true + if yyj4756 < len(yyv4756) { + yyv4756 = yyv4756[:yyj4756] + yyc4756 = true + } else if yyj4756 == 0 && yyv4756 == nil { + yyv4756 = []ConfigMap{} + yyc4756 = true } } - yyh4713.End() - if yyc4713 { - *v = yyv4713 + yyh4756.End() + if yyc4756 { + *v = yyv4756 } } @@ -60544,10 +61155,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4717 := range v { + for _, yyv4760 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4718 := &yyv4717 - yy4718.CodecEncodeSelf(e) + yy4761 := &yyv4760 + yy4761.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60557,83 +61168,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4719 := *v - yyh4719, yyl4719 := z.DecSliceHelperStart() - var yyc4719 bool - if yyl4719 == 0 { - if yyv4719 == nil { - yyv4719 = []ComponentCondition{} - yyc4719 = true - } else if len(yyv4719) != 0 { - yyv4719 = yyv4719[:0] - yyc4719 = true + yyv4762 := *v + yyh4762, yyl4762 := z.DecSliceHelperStart() + var yyc4762 bool + if yyl4762 == 0 { + if yyv4762 == nil { + yyv4762 = []ComponentCondition{} + yyc4762 = true + } else if len(yyv4762) != 0 { + yyv4762 = yyv4762[:0] + yyc4762 = true } - } else if yyl4719 > 0 { - var yyrr4719, yyrl4719 int - var yyrt4719 bool - if yyl4719 > cap(yyv4719) { + } else if yyl4762 > 0 { + var yyrr4762, yyrl4762 int + var yyrt4762 bool + if yyl4762 > cap(yyv4762) { - yyrg4719 := len(yyv4719) > 0 - yyv24719 := yyv4719 - yyrl4719, yyrt4719 = z.DecInferLen(yyl4719, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4719 { - if yyrl4719 <= cap(yyv4719) { - yyv4719 = yyv4719[:yyrl4719] + yyrg4762 := len(yyv4762) > 0 + yyv24762 := yyv4762 + yyrl4762, yyrt4762 = z.DecInferLen(yyl4762, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4762 { + if yyrl4762 <= cap(yyv4762) { + yyv4762 = yyv4762[:yyrl4762] } else { - yyv4719 = make([]ComponentCondition, yyrl4719) + yyv4762 = make([]ComponentCondition, yyrl4762) } } else { - yyv4719 = make([]ComponentCondition, yyrl4719) + yyv4762 = make([]ComponentCondition, yyrl4762) } - yyc4719 = true - yyrr4719 = len(yyv4719) - if yyrg4719 { - copy(yyv4719, yyv24719) + yyc4762 = true + yyrr4762 = len(yyv4762) + if yyrg4762 { + copy(yyv4762, yyv24762) } - } else if yyl4719 != len(yyv4719) { - yyv4719 = yyv4719[:yyl4719] - yyc4719 = true + } else if yyl4762 != len(yyv4762) { + yyv4762 = yyv4762[:yyl4762] + yyc4762 = true } - yyj4719 := 0 - for ; yyj4719 < yyrr4719; yyj4719++ { - yyh4719.ElemContainerState(yyj4719) + yyj4762 := 0 + for ; yyj4762 < yyrr4762; yyj4762++ { + yyh4762.ElemContainerState(yyj4762) if r.TryDecodeAsNil() { - yyv4719[yyj4719] = ComponentCondition{} + yyv4762[yyj4762] = ComponentCondition{} } else { - yyv4720 := &yyv4719[yyj4719] - yyv4720.CodecDecodeSelf(d) + yyv4763 := &yyv4762[yyj4762] + yyv4763.CodecDecodeSelf(d) } } - if yyrt4719 { - for ; yyj4719 < yyl4719; yyj4719++ { - yyv4719 = append(yyv4719, ComponentCondition{}) - yyh4719.ElemContainerState(yyj4719) + if yyrt4762 { + for ; yyj4762 < yyl4762; yyj4762++ { + yyv4762 = append(yyv4762, ComponentCondition{}) + yyh4762.ElemContainerState(yyj4762) if r.TryDecodeAsNil() { - yyv4719[yyj4719] = ComponentCondition{} + yyv4762[yyj4762] = ComponentCondition{} } else { - yyv4721 := &yyv4719[yyj4719] - yyv4721.CodecDecodeSelf(d) + yyv4764 := &yyv4762[yyj4762] + yyv4764.CodecDecodeSelf(d) } } } } else { - yyj4719 := 0 - for ; !r.CheckBreak(); yyj4719++ { + yyj4762 := 0 + for ; !r.CheckBreak(); yyj4762++ { - if yyj4719 >= len(yyv4719) { - yyv4719 = append(yyv4719, ComponentCondition{}) // var yyz4719 ComponentCondition - yyc4719 = true + if yyj4762 >= len(yyv4762) { + yyv4762 = append(yyv4762, ComponentCondition{}) // var yyz4762 ComponentCondition + yyc4762 = true } - yyh4719.ElemContainerState(yyj4719) - if yyj4719 < len(yyv4719) { + yyh4762.ElemContainerState(yyj4762) + if yyj4762 < len(yyv4762) { if r.TryDecodeAsNil() { - yyv4719[yyj4719] = ComponentCondition{} + yyv4762[yyj4762] = ComponentCondition{} } else { - yyv4722 := &yyv4719[yyj4719] - yyv4722.CodecDecodeSelf(d) + yyv4765 := &yyv4762[yyj4762] + yyv4765.CodecDecodeSelf(d) } } else { @@ -60641,17 +61252,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4719 < len(yyv4719) { - yyv4719 = yyv4719[:yyj4719] - yyc4719 = true - } else if yyj4719 == 0 && yyv4719 == nil { - yyv4719 = []ComponentCondition{} - yyc4719 = true + if yyj4762 < len(yyv4762) { + yyv4762 = yyv4762[:yyj4762] + yyc4762 = true + } else if yyj4762 == 0 && yyv4762 == nil { + yyv4762 = []ComponentCondition{} + yyc4762 = true } } - yyh4719.End() - if yyc4719 { - *v = yyv4719 + yyh4762.End() + if yyc4762 { + *v = yyv4762 } } @@ -60660,10 +61271,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4723 := range v { + for _, yyv4766 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4724 := &yyv4723 - yy4724.CodecEncodeSelf(e) + yy4767 := &yyv4766 + yy4767.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60673,83 +61284,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4725 := *v - yyh4725, yyl4725 := z.DecSliceHelperStart() - var yyc4725 bool - if yyl4725 == 0 { - if yyv4725 == nil { - yyv4725 = []ComponentStatus{} - yyc4725 = true - } else if len(yyv4725) != 0 { - yyv4725 = yyv4725[:0] - yyc4725 = true + yyv4768 := *v + yyh4768, yyl4768 := z.DecSliceHelperStart() + var yyc4768 bool + if yyl4768 == 0 { + if yyv4768 == nil { + yyv4768 = []ComponentStatus{} + yyc4768 = true + } else if len(yyv4768) != 0 { + yyv4768 = yyv4768[:0] + yyc4768 = true } - } else if yyl4725 > 0 { - var yyrr4725, yyrl4725 int - var yyrt4725 bool - if yyl4725 > cap(yyv4725) { + } else if yyl4768 > 0 { + var yyrr4768, yyrl4768 int + var yyrt4768 bool + if yyl4768 > cap(yyv4768) { - yyrg4725 := len(yyv4725) > 0 - yyv24725 := yyv4725 - yyrl4725, yyrt4725 = z.DecInferLen(yyl4725, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4725 { - if yyrl4725 <= cap(yyv4725) { - yyv4725 = yyv4725[:yyrl4725] + yyrg4768 := len(yyv4768) > 0 + yyv24768 := yyv4768 + yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4768 { + if yyrl4768 <= cap(yyv4768) { + yyv4768 = yyv4768[:yyrl4768] } else { - yyv4725 = make([]ComponentStatus, yyrl4725) + yyv4768 = make([]ComponentStatus, yyrl4768) } } else { - yyv4725 = make([]ComponentStatus, yyrl4725) + yyv4768 = make([]ComponentStatus, yyrl4768) } - yyc4725 = true - yyrr4725 = len(yyv4725) - if yyrg4725 { - copy(yyv4725, yyv24725) + yyc4768 = true + yyrr4768 = len(yyv4768) + if yyrg4768 { + copy(yyv4768, yyv24768) } - } else if yyl4725 != len(yyv4725) { - yyv4725 = yyv4725[:yyl4725] - yyc4725 = true + } else if yyl4768 != len(yyv4768) { + yyv4768 = yyv4768[:yyl4768] + yyc4768 = true } - yyj4725 := 0 - for ; yyj4725 < yyrr4725; yyj4725++ { - yyh4725.ElemContainerState(yyj4725) + yyj4768 := 0 + for ; yyj4768 < yyrr4768; yyj4768++ { + yyh4768.ElemContainerState(yyj4768) if r.TryDecodeAsNil() { - yyv4725[yyj4725] = ComponentStatus{} + yyv4768[yyj4768] = ComponentStatus{} } else { - yyv4726 := &yyv4725[yyj4725] - yyv4726.CodecDecodeSelf(d) + yyv4769 := &yyv4768[yyj4768] + yyv4769.CodecDecodeSelf(d) } } - if yyrt4725 { - for ; yyj4725 < yyl4725; yyj4725++ { - yyv4725 = append(yyv4725, ComponentStatus{}) - yyh4725.ElemContainerState(yyj4725) + if yyrt4768 { + for ; yyj4768 < yyl4768; yyj4768++ { + yyv4768 = append(yyv4768, ComponentStatus{}) + yyh4768.ElemContainerState(yyj4768) if r.TryDecodeAsNil() { - yyv4725[yyj4725] = ComponentStatus{} + yyv4768[yyj4768] = ComponentStatus{} } else { - yyv4727 := &yyv4725[yyj4725] - yyv4727.CodecDecodeSelf(d) + yyv4770 := &yyv4768[yyj4768] + yyv4770.CodecDecodeSelf(d) } } } } else { - yyj4725 := 0 - for ; !r.CheckBreak(); yyj4725++ { + yyj4768 := 0 + for ; !r.CheckBreak(); yyj4768++ { - if yyj4725 >= len(yyv4725) { - yyv4725 = append(yyv4725, ComponentStatus{}) // var yyz4725 ComponentStatus - yyc4725 = true + if yyj4768 >= len(yyv4768) { + yyv4768 = append(yyv4768, ComponentStatus{}) // var yyz4768 ComponentStatus + yyc4768 = true } - yyh4725.ElemContainerState(yyj4725) - if yyj4725 < len(yyv4725) { + yyh4768.ElemContainerState(yyj4768) + if yyj4768 < len(yyv4768) { if r.TryDecodeAsNil() { - yyv4725[yyj4725] = ComponentStatus{} + yyv4768[yyj4768] = ComponentStatus{} } else { - yyv4728 := &yyv4725[yyj4725] - yyv4728.CodecDecodeSelf(d) + yyv4771 := &yyv4768[yyj4768] + yyv4771.CodecDecodeSelf(d) } } else { @@ -60757,16 +61368,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4725 < len(yyv4725) { - yyv4725 = yyv4725[:yyj4725] - yyc4725 = true - } else if yyj4725 == 0 && yyv4725 == nil { - yyv4725 = []ComponentStatus{} - yyc4725 = true + if yyj4768 < len(yyv4768) { + yyv4768 = yyv4768[:yyj4768] + yyc4768 = true + } else if yyj4768 == 0 && yyv4768 == nil { + yyv4768 = []ComponentStatus{} + yyc4768 = true } } - yyh4725.End() - if yyc4725 { - *v = yyv4725 + yyh4768.End() + if yyc4768 { + *v = yyv4768 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index f45a90d4b2a89..c391b0825c0cf 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -209,6 +209,10 @@ type VolumeSource struct { PersistentVolumeClaim *PersistentVolumeClaimVolumeSource `json:"persistentVolumeClaim,omitempty"` // RBD represents a Rados Block Device mount on the host that shares a pod's lifetime RBD *RBDVolumeSource `json:"rbd,omitempty"` + + // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty"` + // FlexVolume represents a generic volume resource that is // provisioned/attached using a exec based plugin. This is an alpha feature and may change in future. FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty"` @@ -254,6 +258,8 @@ type PersistentVolumeSource struct { NFS *NFSVolumeSource `json:"nfs,omitempty"` // RBD represents a Rados Block Device mount on the host that shares a pod's lifetime RBD *RBDVolumeSource `json:"rbd,omitempty"` + // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty"` // ISCSIVolumeSource represents an ISCSI resource that is attached to a // kubelet's host machine and then exposed to the pod. ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty"` @@ -628,6 +634,30 @@ type NFSVolumeSource struct { ReadOnly bool `json:"readOnly,omitempty"` } +// Represents a Quobyte mount that lasts the lifetime of a pod. +// Quobyte volumes do not support ownership management or SELinux relabeling. +type QuobyteVolumeSource struct { + // Registry represents a single or multiple Quobyte Registry services + // specified as a string as host:port pair (multiple entries are separated with commas) + // which acts as the central registry for volumes + Registry string `json:"registry"` + + // Volume is a string that references an already created Quobyte volume by name. + Volume string `json:"volume"` + + // Defaults to false (read/write). ReadOnly here will force + // the Quobyte to be mounted with read-only permissions + ReadOnly bool `json:"readOnly,omitempty"` + + // User to map volume access to + // Defaults to the root user + User string `json:"user,omitempty"` + + // Group to map volume access to + // Default is no group + Group string `json:"group,omitempty"` +} + // Represents a Glusterfs mount that lasts the lifetime of a pod. // Glusterfs volumes do not support ownership management or SELinux relabeling. type GlusterfsVolumeSource struct { diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index e70f73cb417ae..dc17aa0b7730b 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -142,6 +142,7 @@ limitations under the License. PreferAvoidPodsEntry PreferredSchedulingTerm Probe + QuobyteVolumeSource RBDVolumeSource RangeAllocation ReplicationController @@ -693,154 +694,158 @@ func (m *Probe) Reset() { *m = Probe{} } func (*Probe) ProtoMessage() {} func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{116} } +func (m *QuobyteVolumeSource) Reset() { *m = QuobyteVolumeSource{} } +func (*QuobyteVolumeSource) ProtoMessage() {} +func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } + func (m *RBDVolumeSource) Reset() { *m = RBDVolumeSource{} } func (*RBDVolumeSource) ProtoMessage() {} -func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } +func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{118} } func (m *RangeAllocation) Reset() { *m = RangeAllocation{} } func (*RangeAllocation) ProtoMessage() {} -func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{118} } +func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } func (m *ReplicationController) Reset() { *m = ReplicationController{} } func (*ReplicationController) ProtoMessage() {} -func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } +func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } func (m *ReplicationControllerList) Reset() { *m = ReplicationControllerList{} } func (*ReplicationControllerList) ProtoMessage() {} func (*ReplicationControllerList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{120} + return fileDescriptorGenerated, []int{121} } func (m *ReplicationControllerSpec) Reset() { *m = ReplicationControllerSpec{} } func (*ReplicationControllerSpec) ProtoMessage() {} func (*ReplicationControllerSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{121} + return fileDescriptorGenerated, []int{122} } func (m *ReplicationControllerStatus) Reset() { *m = ReplicationControllerStatus{} } func (*ReplicationControllerStatus) ProtoMessage() {} func (*ReplicationControllerStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{122} + return fileDescriptorGenerated, []int{123} } func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} } func (*ResourceFieldSelector) ProtoMessage() {} -func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{123} } +func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{124} } func (m *ResourceQuota) Reset() { *m = ResourceQuota{} } func (*ResourceQuota) ProtoMessage() {} -func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{124} } +func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{125} } func (m *ResourceQuotaList) Reset() { *m = ResourceQuotaList{} } func (*ResourceQuotaList) ProtoMessage() {} -func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{125} } +func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } func (m *ResourceQuotaSpec) Reset() { *m = ResourceQuotaSpec{} } func (*ResourceQuotaSpec) ProtoMessage() {} -func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } +func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } func (m *ResourceQuotaStatus) Reset() { *m = ResourceQuotaStatus{} } func (*ResourceQuotaStatus) ProtoMessage() {} -func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } +func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } func (m *ResourceRequirements) Reset() { *m = ResourceRequirements{} } func (*ResourceRequirements) ProtoMessage() {} -func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } +func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } func (m *SELinuxOptions) Reset() { *m = SELinuxOptions{} } func (*SELinuxOptions) ProtoMessage() {} -func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } +func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } func (m *Secret) Reset() { *m = Secret{} } func (*Secret) ProtoMessage() {} -func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } +func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} } func (*SecretKeySelector) ProtoMessage() {} -func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } +func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } func (m *SecretList) Reset() { *m = SecretList{} } func (*SecretList) ProtoMessage() {} -func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } +func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } func (m *SecretVolumeSource) Reset() { *m = SecretVolumeSource{} } func (*SecretVolumeSource) ProtoMessage() {} -func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } +func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } func (m *SecurityContext) Reset() { *m = SecurityContext{} } func (*SecurityContext) ProtoMessage() {} -func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } +func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } func (m *SerializedReference) Reset() { *m = SerializedReference{} } func (*SerializedReference) ProtoMessage() {} -func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } +func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } func (m *Service) Reset() { *m = Service{} } func (*Service) ProtoMessage() {} -func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } +func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } func (m *ServiceAccount) Reset() { *m = ServiceAccount{} } func (*ServiceAccount) ProtoMessage() {} -func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } +func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } func (m *ServiceAccountList) Reset() { *m = ServiceAccountList{} } func (*ServiceAccountList) ProtoMessage() {} -func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } +func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } func (m *ServiceList) Reset() { *m = ServiceList{} } func (*ServiceList) ProtoMessage() {} -func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } +func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } func (m *ServicePort) Reset() { *m = ServicePort{} } func (*ServicePort) ProtoMessage() {} -func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } +func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } func (m *ServiceProxyOptions) Reset() { *m = ServiceProxyOptions{} } func (*ServiceProxyOptions) ProtoMessage() {} -func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } +func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } func (m *ServiceSpec) Reset() { *m = ServiceSpec{} } func (*ServiceSpec) ProtoMessage() {} -func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } +func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } func (m *ServiceStatus) Reset() { *m = ServiceStatus{} } func (*ServiceStatus) ProtoMessage() {} -func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } +func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} } func (*TCPSocketAction) ProtoMessage() {} -func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } +func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } func (m *Taint) Reset() { *m = Taint{} } func (*Taint) ProtoMessage() {} -func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } +func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } func (m *Toleration) Reset() { *m = Toleration{} } func (*Toleration) ProtoMessage() {} -func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } +func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } func (m *Volume) Reset() { *m = Volume{} } func (*Volume) ProtoMessage() {} -func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } +func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } func (m *VolumeMount) Reset() { *m = VolumeMount{} } func (*VolumeMount) ProtoMessage() {} -func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } +func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } func (m *VolumeSource) Reset() { *m = VolumeSource{} } func (*VolumeSource) ProtoMessage() {} -func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } +func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} } func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {} func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{150} + return fileDescriptorGenerated, []int{151} } func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } func (*WeightedPodAffinityTerm) ProtoMessage() {} func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{151} + return fileDescriptorGenerated, []int{152} } func init() { @@ -961,6 +966,7 @@ func init() { proto.RegisterType((*PreferAvoidPodsEntry)(nil), "k8s.io.kubernetes.pkg.api.v1.PreferAvoidPodsEntry") proto.RegisterType((*PreferredSchedulingTerm)(nil), "k8s.io.kubernetes.pkg.api.v1.PreferredSchedulingTerm") proto.RegisterType((*Probe)(nil), "k8s.io.kubernetes.pkg.api.v1.Probe") + proto.RegisterType((*QuobyteVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.QuobyteVolumeSource") proto.RegisterType((*RBDVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.RBDVolumeSource") proto.RegisterType((*RangeAllocation)(nil), "k8s.io.kubernetes.pkg.api.v1.RangeAllocation") proto.RegisterType((*ReplicationController)(nil), "k8s.io.kubernetes.pkg.api.v1.ReplicationController") @@ -5095,6 +5101,16 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { } i += n101 } + if m.Quobyte != nil { + data[i] = 0x7a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) + n102, err := m.Quobyte.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n102 + } return i, nil } @@ -5128,21 +5144,21 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n102, err := (&v).MarshalTo(data[i:]) + n103, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n102 + i += n103 } } data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeSource.Size())) - n103, err := m.PersistentVolumeSource.MarshalTo(data[i:]) + n104, err := m.PersistentVolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n103 + i += n104 if len(m.AccessModes) > 0 { for _, s := range m.AccessModes { data[i] = 0x1a @@ -5162,11 +5178,11 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.ClaimRef.Size())) - n104, err := m.ClaimRef.MarshalTo(data[i:]) + n105, err := m.ClaimRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n104 + i += n105 } data[i] = 0x2a i++ @@ -5223,27 +5239,27 @@ func (m *Pod) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n105, err := m.ObjectMeta.MarshalTo(data[i:]) + n106, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n105 + i += n106 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n106, err := m.Spec.MarshalTo(data[i:]) + n107, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n106 + i += n107 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n107, err := m.Status.MarshalTo(data[i:]) + n108, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n107 + i += n108 return i, nil } @@ -5308,11 +5324,11 @@ func (m *PodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LabelSelector.Size())) - n108, err := m.LabelSelector.MarshalTo(data[i:]) + n109, err := m.LabelSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n108 + i += n109 } if len(m.Namespaces) > 0 { for _, s := range m.Namespaces { @@ -5458,19 +5474,19 @@ func (m *PodCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n109, err := m.LastProbeTime.MarshalTo(data[i:]) + n110, err := m.LastProbeTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n109 + i += n110 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n110, err := m.LastTransitionTime.MarshalTo(data[i:]) + n111, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n110 + i += n111 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -5569,11 +5585,11 @@ func (m *PodList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n111, err := m.ListMeta.MarshalTo(data[i:]) + n112, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n111 + i += n112 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5633,11 +5649,11 @@ func (m *PodLogOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.SinceTime.Size())) - n112, err := m.SinceTime.MarshalTo(data[i:]) + n113, err := m.SinceTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n112 + i += n113 } data[i] = 0x30 i++ @@ -5701,11 +5717,11 @@ func (m *PodSecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n113, err := m.SELinuxOptions.MarshalTo(data[i:]) + n114, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n113 + i += n114 } if m.RunAsUser != nil { data[i] = 0x10 @@ -5756,11 +5772,11 @@ func (m *PodSignature) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodController.Size())) - n114, err := m.PodController.MarshalTo(data[i:]) + n115, err := m.PodController.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n114 + i += n115 } return i, nil } @@ -5879,11 +5895,11 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.SecurityContext.Size())) - n115, err := m.SecurityContext.MarshalTo(data[i:]) + n116, err := m.SecurityContext.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n115 + i += n116 } if len(m.ImagePullSecrets) > 0 { for _, msg := range m.ImagePullSecrets { @@ -5963,11 +5979,11 @@ func (m *PodStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n116, err := m.StartTime.MarshalTo(data[i:]) + n117, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n116 + i += n117 } if len(m.ContainerStatuses) > 0 { for _, msg := range m.ContainerStatuses { @@ -6002,19 +6018,19 @@ func (m *PodStatusResult) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n117, err := m.ObjectMeta.MarshalTo(data[i:]) + n118, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n117 + i += n118 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n118, err := m.Status.MarshalTo(data[i:]) + n119, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n118 + i += n119 return i, nil } @@ -6036,19 +6052,19 @@ func (m *PodTemplate) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n119, err := m.ObjectMeta.MarshalTo(data[i:]) + n120, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n119 + i += n120 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n120, err := m.Template.MarshalTo(data[i:]) + n121, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n120 + i += n121 return i, nil } @@ -6070,11 +6086,11 @@ func (m *PodTemplateList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n121, err := m.ListMeta.MarshalTo(data[i:]) + n122, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n121 + i += n122 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6108,19 +6124,19 @@ func (m *PodTemplateSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n122, err := m.ObjectMeta.MarshalTo(data[i:]) + n123, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n122 + i += n123 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n123, err := m.Spec.MarshalTo(data[i:]) + n124, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n123 + i += n124 return i, nil } @@ -6166,19 +6182,19 @@ func (m *PreferAvoidPodsEntry) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSignature.Size())) - n124, err := m.PodSignature.MarshalTo(data[i:]) + n125, err := m.PodSignature.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n124 + i += n125 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) - n125, err := m.EvictionTime.MarshalTo(data[i:]) + n126, err := m.EvictionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n125 + i += n126 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6211,11 +6227,11 @@ func (m *PreferredSchedulingTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preference.Size())) - n126, err := m.Preference.MarshalTo(data[i:]) + n127, err := m.Preference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n126 + i += n127 return i, nil } @@ -6237,11 +6253,11 @@ func (m *Probe) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Handler.Size())) - n127, err := m.Handler.MarshalTo(data[i:]) + n128, err := m.Handler.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n127 + i += n128 data[i] = 0x10 i++ i = encodeVarintGenerated(data, i, uint64(m.InitialDelaySeconds)) @@ -6260,6 +6276,48 @@ func (m *Probe) MarshalTo(data []byte) (int, error) { return i, nil } +func (m *QuobyteVolumeSource) Marshal() (data []byte, err error) { + size := m.Size() + data = make([]byte, size) + n, err := m.MarshalTo(data) + if err != nil { + return nil, err + } + return data[:n], nil +} + +func (m *QuobyteVolumeSource) MarshalTo(data []byte) (int, error) { + var i int + _ = i + var l int + _ = l + data[i] = 0xa + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Registry))) + i += copy(data[i:], m.Registry) + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Volume))) + i += copy(data[i:], m.Volume) + data[i] = 0x18 + i++ + if m.ReadOnly { + data[i] = 1 + } else { + data[i] = 0 + } + i++ + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.User))) + i += copy(data[i:], m.User) + data[i] = 0x2a + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Group))) + i += copy(data[i:], m.Group) + return i, nil +} + func (m *RBDVolumeSource) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -6314,11 +6372,11 @@ func (m *RBDVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n128, err := m.SecretRef.MarshalTo(data[i:]) + n129, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n128 + i += n129 } data[i] = 0x40 i++ @@ -6349,11 +6407,11 @@ func (m *RangeAllocation) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n129, err := m.ObjectMeta.MarshalTo(data[i:]) + n130, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n129 + i += n130 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Range))) @@ -6385,27 +6443,27 @@ func (m *ReplicationController) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n130, err := m.ObjectMeta.MarshalTo(data[i:]) + n131, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n130 + i += n131 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n131, err := m.Spec.MarshalTo(data[i:]) + n132, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n131 + i += n132 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n132, err := m.Status.MarshalTo(data[i:]) + n133, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n132 + i += n133 return i, nil } @@ -6427,11 +6485,11 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n133, err := m.ListMeta.MarshalTo(data[i:]) + n134, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n133 + i += n134 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6488,11 +6546,11 @@ func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n134, err := m.Template.MarshalTo(data[i:]) + n135, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n134 + i += n135 } return i, nil } @@ -6550,11 +6608,11 @@ func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Divisor.Size())) - n135, err := m.Divisor.MarshalTo(data[i:]) + n136, err := m.Divisor.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n135 + i += n136 return i, nil } @@ -6576,27 +6634,27 @@ func (m *ResourceQuota) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n136, err := m.ObjectMeta.MarshalTo(data[i:]) + n137, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n136 + i += n137 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n137, err := m.Spec.MarshalTo(data[i:]) + n138, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n137 + i += n138 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n138, err := m.Status.MarshalTo(data[i:]) + n139, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n138 + i += n139 return i, nil } @@ -6618,11 +6676,11 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n139, err := m.ListMeta.MarshalTo(data[i:]) + n140, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n139 + i += n140 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6668,11 +6726,11 @@ func (m *ResourceQuotaSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n140, err := (&v).MarshalTo(data[i:]) + n141, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n140 + i += n141 } } if len(m.Scopes) > 0 { @@ -6723,11 +6781,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n141, err := (&v).MarshalTo(data[i:]) + n142, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n141 + i += n142 } } if len(m.Used) > 0 { @@ -6745,11 +6803,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n142, err := (&v).MarshalTo(data[i:]) + n143, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n142 + i += n143 } } return i, nil @@ -6785,11 +6843,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n143, err := (&v).MarshalTo(data[i:]) + n144, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n143 + i += n144 } } if len(m.Requests) > 0 { @@ -6807,11 +6865,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n144, err := (&v).MarshalTo(data[i:]) + n145, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n144 + i += n145 } } return i, nil @@ -6869,11 +6927,11 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n145, err := m.ObjectMeta.MarshalTo(data[i:]) + n146, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n145 + i += n146 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -6933,11 +6991,11 @@ func (m *SecretKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n146, err := m.LocalObjectReference.MarshalTo(data[i:]) + n147, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n146 + i += n147 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -6963,11 +7021,11 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n147, err := m.ListMeta.MarshalTo(data[i:]) + n148, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n147 + i += n148 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7041,11 +7099,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Capabilities.Size())) - n148, err := m.Capabilities.MarshalTo(data[i:]) + n149, err := m.Capabilities.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n148 + i += n149 } if m.Privileged != nil { data[i] = 0x10 @@ -7061,11 +7119,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n149, err := m.SELinuxOptions.MarshalTo(data[i:]) + n150, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n149 + i += n150 } if m.RunAsUser != nil { data[i] = 0x20 @@ -7113,11 +7171,11 @@ func (m *SerializedReference) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Reference.Size())) - n150, err := m.Reference.MarshalTo(data[i:]) + n151, err := m.Reference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n150 + i += n151 return i, nil } @@ -7139,27 +7197,27 @@ func (m *Service) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n151, err := m.ObjectMeta.MarshalTo(data[i:]) + n152, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n151 + i += n152 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n152, err := m.Spec.MarshalTo(data[i:]) + n153, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n152 + i += n153 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n153, err := m.Status.MarshalTo(data[i:]) + n154, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n153 + i += n154 return i, nil } @@ -7181,11 +7239,11 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n154, err := m.ObjectMeta.MarshalTo(data[i:]) + n155, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n154 + i += n155 if len(m.Secrets) > 0 { for _, msg := range m.Secrets { data[i] = 0x12 @@ -7231,11 +7289,11 @@ func (m *ServiceAccountList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n155, err := m.ListMeta.MarshalTo(data[i:]) + n156, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n155 + i += n156 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7269,11 +7327,11 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n156, err := m.ListMeta.MarshalTo(data[i:]) + n157, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n156 + i += n157 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7318,11 +7376,11 @@ func (m *ServicePort) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetPort.Size())) - n157, err := m.TargetPort.MarshalTo(data[i:]) + n158, err := m.TargetPort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n157 + i += n158 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.NodePort)) @@ -7477,11 +7535,11 @@ func (m *ServiceStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n158, err := m.LoadBalancer.MarshalTo(data[i:]) + n159, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n158 + i += n159 return i, nil } @@ -7503,11 +7561,11 @@ func (m *TCPSocketAction) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n159, err := m.Port.MarshalTo(data[i:]) + n160, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n159 + i += n160 return i, nil } @@ -7597,11 +7655,11 @@ func (m *Volume) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.VolumeSource.Size())) - n160, err := m.VolumeSource.MarshalTo(data[i:]) + n161, err := m.VolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n160 + i += n161 return i, nil } @@ -7662,151 +7720,151 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n161, err := m.HostPath.MarshalTo(data[i:]) + n162, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n161 + i += n162 } if m.EmptyDir != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) - n162, err := m.EmptyDir.MarshalTo(data[i:]) + n163, err := m.EmptyDir.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n162 + i += n163 } if m.GCEPersistentDisk != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n163, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + n164, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n163 + i += n164 } if m.AWSElasticBlockStore != nil { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n164, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + n165, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n164 + i += n165 } if m.GitRepo != nil { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) - n165, err := m.GitRepo.MarshalTo(data[i:]) + n166, err := m.GitRepo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n165 + i += n166 } if m.Secret != nil { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) - n166, err := m.Secret.MarshalTo(data[i:]) + n167, err := m.Secret.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n166 + i += n167 } if m.NFS != nil { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n167, err := m.NFS.MarshalTo(data[i:]) + n168, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n167 + i += n168 } if m.ISCSI != nil { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n168, err := m.ISCSI.MarshalTo(data[i:]) + n169, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n168 + i += n169 } if m.Glusterfs != nil { data[i] = 0x4a i++ i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n169, err := m.Glusterfs.MarshalTo(data[i:]) + n170, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n169 + i += n170 } if m.PersistentVolumeClaim != nil { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) - n170, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) + n171, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n170 + i += n171 } if m.RBD != nil { data[i] = 0x5a i++ i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n171, err := m.RBD.MarshalTo(data[i:]) + n172, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n171 + i += n172 } if m.FlexVolume != nil { data[i] = 0x62 i++ i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n172, err := m.FlexVolume.MarshalTo(data[i:]) + n173, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n172 + i += n173 } if m.Cinder != nil { data[i] = 0x6a i++ i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n173, err := m.Cinder.MarshalTo(data[i:]) + n174, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n173 + i += n174 } if m.CephFS != nil { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n174, err := m.CephFS.MarshalTo(data[i:]) + n175, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n174 + i += n175 } if m.Flocker != nil { data[i] = 0x7a i++ i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n175, err := m.Flocker.MarshalTo(data[i:]) + n176, err := m.Flocker.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n175 + i += n176 } if m.DownwardAPI != nil { data[i] = 0x82 @@ -7814,11 +7872,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.DownwardAPI.Size())) - n176, err := m.DownwardAPI.MarshalTo(data[i:]) + n177, err := m.DownwardAPI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n176 + i += n177 } if m.FC != nil { data[i] = 0x8a @@ -7826,11 +7884,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n177, err := m.FC.MarshalTo(data[i:]) + n178, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n177 + i += n178 } if m.AzureFile != nil { data[i] = 0x92 @@ -7838,11 +7896,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n178, err := m.AzureFile.MarshalTo(data[i:]) + n179, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n178 + i += n179 } if m.ConfigMap != nil { data[i] = 0x9a @@ -7850,11 +7908,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMap.Size())) - n179, err := m.ConfigMap.MarshalTo(data[i:]) + n180, err := m.ConfigMap.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n179 + i += n180 } if m.VsphereVolume != nil { data[i] = 0xa2 @@ -7862,11 +7920,23 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n180, err := m.VsphereVolume.MarshalTo(data[i:]) + n181, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n180 + i += n181 + } + if m.Quobyte != nil { + data[i] = 0xaa + i++ + data[i] = 0x1 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) + n182, err := m.Quobyte.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n182 } return i, nil } @@ -7918,11 +7988,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PodAffinityTerm.Size())) - n181, err := m.PodAffinityTerm.MarshalTo(data[i:]) + n183, err := m.PodAffinityTerm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n181 + i += n183 return i, nil } @@ -9474,6 +9544,10 @@ func (m *PersistentVolumeSource) Size() (n int) { l = m.VsphereVolume.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.Quobyte != nil { + l = m.Quobyte.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -9893,6 +9967,21 @@ func (m *Probe) Size() (n int) { return n } +func (m *QuobyteVolumeSource) Size() (n int) { + var l int + _ = l + l = len(m.Registry) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Volume) + n += 1 + l + sovGenerated(uint64(l)) + n += 2 + l = len(m.User) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Group) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *RBDVolumeSource) Size() (n int) { var l int _ = l @@ -10488,6 +10577,10 @@ func (m *VolumeSource) Size() (n int) { l = m.VsphereVolume.Size() n += 2 + l + sovGenerated(uint64(l)) } + if m.Quobyte != nil { + l = m.Quobyte.Size() + n += 2 + l + sovGenerated(uint64(l)) + } return n } @@ -11794,6 +11887,7 @@ func (this *PersistentVolumeSource) String() string { `FlexVolume:` + strings.Replace(fmt.Sprintf("%v", this.FlexVolume), "FlexVolumeSource", "FlexVolumeSource", 1) + `,`, `AzureFile:` + strings.Replace(fmt.Sprintf("%v", this.AzureFile), "AzureFileVolumeSource", "AzureFileVolumeSource", 1) + `,`, `VsphereVolume:` + strings.Replace(fmt.Sprintf("%v", this.VsphereVolume), "VsphereVirtualDiskVolumeSource", "VsphereVirtualDiskVolumeSource", 1) + `,`, + `Quobyte:` + strings.Replace(fmt.Sprintf("%v", this.Quobyte), "QuobyteVolumeSource", "QuobyteVolumeSource", 1) + `,`, `}`, }, "") return s @@ -12132,6 +12226,20 @@ func (this *Probe) String() string { }, "") return s } +func (this *QuobyteVolumeSource) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&QuobyteVolumeSource{`, + `Registry:` + fmt.Sprintf("%v", this.Registry) + `,`, + `Volume:` + fmt.Sprintf("%v", this.Volume) + `,`, + `ReadOnly:` + fmt.Sprintf("%v", this.ReadOnly) + `,`, + `User:` + fmt.Sprintf("%v", this.User) + `,`, + `Group:` + fmt.Sprintf("%v", this.Group) + `,`, + `}`, + }, "") + return s +} func (this *RBDVolumeSource) String() string { if this == nil { return "nil" @@ -12633,6 +12741,7 @@ func (this *VolumeSource) String() string { `AzureFile:` + strings.Replace(fmt.Sprintf("%v", this.AzureFile), "AzureFileVolumeSource", "AzureFileVolumeSource", 1) + `,`, `ConfigMap:` + strings.Replace(fmt.Sprintf("%v", this.ConfigMap), "ConfigMapVolumeSource", "ConfigMapVolumeSource", 1) + `,`, `VsphereVolume:` + strings.Replace(fmt.Sprintf("%v", this.VsphereVolume), "VsphereVirtualDiskVolumeSource", "VsphereVirtualDiskVolumeSource", 1) + `,`, + `Quobyte:` + strings.Replace(fmt.Sprintf("%v", this.Quobyte), "QuobyteVolumeSource", "QuobyteVolumeSource", 1) + `,`, `}`, }, "") return s @@ -27440,6 +27549,39 @@ func (m *PersistentVolumeSource) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 15: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Quobyte", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Quobyte == nil { + m.Quobyte = &QuobyteVolumeSource{} + } + if err := m.Quobyte.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -31475,6 +31617,192 @@ func (m *Probe) Unmarshal(data []byte) error { } return nil } +func (m *QuobyteVolumeSource) Unmarshal(data []byte) error { + l := len(data) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QuobyteVolumeSource: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QuobyteVolumeSource: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Registry", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Registry = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Volume", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Volume = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ReadOnly", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.ReadOnly = bool(v != 0) + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field User", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.User = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Group", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Group = string(data[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(data[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *RBDVolumeSource) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -37311,6 +37639,39 @@ func (m *VolumeSource) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 21: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Quobyte", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Quobyte == nil { + m.Quobyte = &QuobyteVolumeSource{} + } + if err := m.Quobyte.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -37645,16 +38006,16 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 9516 bytes of a gzipped FileDescriptorProto + // 9596 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xc7, 0x75, 0x98, 0x66, 0x66, 0xbf, 0xa6, 0xf6, 0xf3, 0xfa, 0xee, 0xc8, 0xe5, 0x4a, 0xfc, 0x6a, 0x91, 0x14, 0x79, 0xe4, 0xed, 0xf1, 0x8e, 0xa4, 0x49, 0x4a, 0x8a, 0xc4, 0xdd, 0x9d, 0xdd, 0xbb, 0xf5, 0xed, 0xdd, 0x0d, 0xdf, 0x2c, 0xef, 0x24, 0x8b, 0x91, 0xd9, 0x3b, 0xd3, 0xbb, 0xdb, 0xba, 0xd9, - 0xe9, 0x61, 0x77, 0xcf, 0xde, 0x2d, 0x15, 0x03, 0x8e, 0xe1, 0x38, 0x08, 0x62, 0x38, 0xfa, 0x11, - 0x23, 0x01, 0x92, 0x20, 0x4e, 0x80, 0x04, 0x49, 0x8c, 0x38, 0x96, 0xa3, 0xd8, 0x54, 0x62, 0x18, - 0x01, 0xe2, 0x08, 0xca, 0x87, 0x03, 0x09, 0x48, 0x62, 0xc3, 0x06, 0x94, 0xc8, 0x46, 0x10, 0xe4, + 0xe9, 0x61, 0x77, 0xcf, 0xde, 0x2d, 0x15, 0x03, 0x8e, 0xe1, 0x38, 0x08, 0x62, 0x38, 0x42, 0x10, + 0x23, 0x01, 0x92, 0x20, 0x4e, 0x80, 0x04, 0x49, 0x8c, 0xd8, 0x96, 0xa3, 0xd8, 0x52, 0x62, 0x18, + 0x01, 0xe2, 0x08, 0xca, 0x87, 0x03, 0x0a, 0x08, 0x62, 0xc3, 0x06, 0x14, 0xcb, 0x46, 0x10, 0xe4, 0x5f, 0x80, 0xfc, 0x0a, 0x61, 0x24, 0xa9, 0x57, 0xdf, 0xd5, 0xd3, 0xb3, 0xdd, 0xb3, 0xbc, 0xd9, - 0x9c, 0x05, 0xff, 0x58, 0x60, 0xe7, 0xd5, 0xab, 0x57, 0x1f, 0xfd, 0xea, 0xd5, 0x7b, 0xaf, 0x5e, + 0x9c, 0x0d, 0xff, 0x58, 0x60, 0xa7, 0xde, 0xab, 0x57, 0x1f, 0xfd, 0xea, 0xd5, 0x7b, 0xaf, 0x5e, 0xbd, 0x22, 0x2f, 0xdd, 0x7d, 0x23, 0x5e, 0x0e, 0xc2, 0x4b, 0x77, 0x7b, 0x3b, 0x7e, 0xd4, 0xf1, 0x13, 0x3f, 0xbe, 0xd4, 0xbd, 0xbb, 0x77, 0xc9, 0xeb, 0x06, 0x97, 0x0e, 0x2f, 0x5f, 0xda, 0xf3, 0x3b, 0x7e, 0xe4, 0x25, 0x7e, 0x6b, 0xb9, 0x1b, 0x85, 0x49, 0xe8, 0x7c, 0x8a, 0x63, 0x2f, 0x6b, @@ -37663,582 +38024,587 @@ var fileDescriptorGenerated = []byte{ 0xc5, 0x7e, 0xb0, 0xff, 0x38, 0xb1, 0xa5, 0x2b, 0x83, 0x9b, 0x8e, 0xfc, 0x38, 0xec, 0x45, 0x4d, 0x3f, 0xdd, 0x81, 0xa5, 0xd7, 0x06, 0xd7, 0xe9, 0x75, 0x0e, 0xfd, 0x28, 0x0e, 0xc2, 0x8e, 0xdf, 0xea, 0xab, 0x76, 0x31, 0xbb, 0x5a, 0xd4, 0xeb, 0x24, 0xc1, 0x41, 0x7f, 0x2b, 0x97, 0xb3, 0xd1, - 0x7b, 0x49, 0xd0, 0xbe, 0x14, 0x74, 0x92, 0x38, 0x89, 0xd2, 0x55, 0xdc, 0xdf, 0x2d, 0x91, 0xa7, + 0x7b, 0x49, 0xd0, 0xbe, 0x14, 0x74, 0x92, 0x38, 0x89, 0xd2, 0x55, 0xdc, 0xdf, 0x29, 0x91, 0xa7, 0x56, 0xee, 0x34, 0xd6, 0xdb, 0x5e, 0x9c, 0x04, 0xcd, 0xd5, 0x76, 0xd8, 0xbc, 0xdb, 0x48, 0xc2, 0xc8, 0xbf, 0x1d, 0xb6, 0x7b, 0x07, 0x7e, 0x83, 0x8d, 0xc6, 0x79, 0x89, 0x4c, 0x1d, 0xb2, 0xdf, - 0x9b, 0xb5, 0xc5, 0xd2, 0x53, 0xa5, 0xe7, 0xab, 0xab, 0x0b, 0xdf, 0xfd, 0xc1, 0x93, 0x9f, 0xf8, - 0xc3, 0x1f, 0x3c, 0x39, 0x75, 0x5b, 0xc0, 0x41, 0x61, 0x38, 0xcf, 0x91, 0x89, 0xdd, 0x78, 0xfb, - 0xa8, 0xeb, 0x2f, 0x96, 0x19, 0xee, 0x9c, 0xc0, 0x9d, 0xd8, 0x68, 0x20, 0x14, 0x44, 0xa9, 0x73, - 0x89, 0x54, 0xbb, 0x5e, 0x94, 0x04, 0x09, 0x1d, 0xfb, 0x62, 0x85, 0xa2, 0x8e, 0xaf, 0x9e, 0x11, - 0xa8, 0xd5, 0xba, 0x2c, 0x00, 0x8d, 0x83, 0xdd, 0x88, 0x7c, 0xaf, 0x75, 0xab, 0xd3, 0x3e, 0x5a, - 0x1c, 0xa3, 0xf8, 0x53, 0xba, 0x1b, 0x20, 0xe0, 0xa0, 0x30, 0xdc, 0x0f, 0xcb, 0x64, 0x6a, 0x65, - 0x77, 0x37, 0xe8, 0x04, 0xc9, 0x91, 0xf3, 0x1e, 0x99, 0xe9, 0x84, 0x2d, 0x5f, 0xfe, 0x66, 0xa3, - 0x98, 0xbe, 0x72, 0x61, 0xf9, 0x38, 0xbe, 0x58, 0xbe, 0x69, 0xd4, 0x58, 0x5d, 0xa0, 0xcd, 0xcc, - 0x98, 0x10, 0xb0, 0x28, 0x3a, 0xef, 0x92, 0xe9, 0x6e, 0xd8, 0x52, 0x0d, 0x94, 0x59, 0x03, 0x2f, - 0x1c, 0xdf, 0x40, 0x5d, 0x57, 0x58, 0x9d, 0xa7, 0xf4, 0xa7, 0x0d, 0x00, 0x98, 0xe4, 0x9c, 0x36, - 0x99, 0xc7, 0x9f, 0xf4, 0xb3, 0xab, 0x16, 0x2a, 0xac, 0x85, 0x8b, 0xf9, 0x2d, 0x18, 0x95, 0x56, - 0xcf, 0xd2, 0x56, 0xe6, 0x53, 0x40, 0x48, 0x93, 0x76, 0x3f, 0x20, 0x73, 0x2b, 0x49, 0xe2, 0x35, - 0xf7, 0xfd, 0x16, 0xff, 0xbe, 0xce, 0xab, 0x64, 0xac, 0xe3, 0x1d, 0xf8, 0xe2, 0xeb, 0x3f, 0x25, - 0xa6, 0x7d, 0xec, 0x26, 0x85, 0x7d, 0xf4, 0x83, 0x27, 0x17, 0xde, 0xe9, 0x04, 0xef, 0xf7, 0x04, - 0xcf, 0x20, 0x0c, 0x18, 0xb6, 0x73, 0x85, 0x90, 0x96, 0x7f, 0x18, 0x34, 0xfd, 0xba, 0x97, 0xec, - 0x0b, 0x6e, 0x70, 0x44, 0x5d, 0x52, 0x53, 0x25, 0x60, 0x60, 0xb9, 0x3f, 0x53, 0x22, 0xd5, 0x95, - 0xc3, 0x30, 0x68, 0xd1, 0x5e, 0xc6, 0x4e, 0x8f, 0x8e, 0x3b, 0xf2, 0x77, 0xfd, 0x48, 0x81, 0x68, - 0x17, 0x2a, 0x74, 0xdc, 0x57, 0x72, 0xc6, 0x6d, 0x57, 0x5a, 0xef, 0x24, 0xd1, 0xd1, 0xea, 0xa3, - 0xa2, 0xe9, 0xf9, 0x54, 0x29, 0xa4, 0xdb, 0x70, 0xff, 0x51, 0x89, 0x9c, 0x5f, 0xf9, 0xa0, 0x17, - 0xf9, 0x1b, 0x41, 0xdb, 0x5e, 0x0a, 0x74, 0x48, 0xb1, 0xdf, 0x8c, 0xfc, 0xe4, 0xa6, 0x9e, 0x0e, - 0x35, 0xa4, 0x86, 0x2a, 0x01, 0x03, 0x0b, 0x19, 0x3d, 0xde, 0xf7, 0x22, 0x36, 0x33, 0x62, 0x16, - 0x14, 0xa3, 0x37, 0x64, 0x01, 0x68, 0x1c, 0x8b, 0xd1, 0x2b, 0xb9, 0x8c, 0xfe, 0xcf, 0x4b, 0x64, - 0x72, 0x35, 0xe8, 0xb4, 0x82, 0xce, 0x9e, 0xf3, 0x25, 0x32, 0x75, 0xe0, 0x27, 0x5e, 0xcb, 0x4b, - 0x3c, 0xc1, 0xe3, 0xcf, 0x1f, 0x3f, 0x51, 0xb7, 0x76, 0xbe, 0xe6, 0x37, 0x93, 0x1b, 0xb4, 0x8e, - 0x1e, 0x86, 0x86, 0x81, 0xa2, 0xe6, 0xbc, 0x43, 0x26, 0x12, 0x2f, 0xda, 0xf3, 0x13, 0xc1, 0xda, - 0x17, 0x8b, 0xd0, 0x05, 0x9c, 0x56, 0xbf, 0xd3, 0xf4, 0xb5, 0x10, 0xd8, 0x66, 0x44, 0x40, 0x10, - 0x73, 0x9b, 0x64, 0x66, 0xcd, 0xeb, 0x7a, 0x3b, 0x41, 0x9b, 0xae, 0x71, 0x3f, 0x76, 0x3e, 0x43, - 0x2a, 0x5e, 0xab, 0xc5, 0x3e, 0x72, 0x75, 0xf5, 0x3c, 0xad, 0x50, 0x59, 0x69, 0xb5, 0x28, 0x8b, - 0x11, 0x85, 0x75, 0x04, 0x88, 0xe1, 0x5c, 0x20, 0x63, 0xad, 0x28, 0xec, 0xd2, 0xde, 0x20, 0xe6, - 0x23, 0xc8, 0x8d, 0x35, 0xfa, 0x3b, 0x85, 0xca, 0x70, 0xdc, 0x7f, 0x5d, 0x26, 0xce, 0x9a, 0xdf, - 0xdd, 0xdf, 0x68, 0x58, 0xdf, 0xf2, 0x79, 0x3a, 0x59, 0x21, 0x65, 0xf8, 0x30, 0x8a, 0x45, 0x83, - 0x33, 0x38, 0xc5, 0x37, 0x04, 0x0c, 0x54, 0xa9, 0xf3, 0x14, 0x19, 0xeb, 0x6a, 0x16, 0x9e, 0x91, - 0xec, 0xcf, 0x98, 0x97, 0x95, 0x20, 0x46, 0x2f, 0xf6, 0x23, 0xf6, 0xb9, 0x0c, 0x8c, 0x77, 0x28, - 0x0c, 0x58, 0x89, 0xe6, 0x1c, 0xe4, 0x29, 0x26, 0xbf, 0xfa, 0x38, 0x07, 0x4b, 0xc0, 0xc0, 0x72, - 0x7e, 0x92, 0x72, 0x0e, 0xfb, 0x45, 0x27, 0x72, 0x71, 0x9c, 0xcd, 0x7b, 0x0e, 0xe3, 0x6f, 0x85, - 0x4d, 0xaf, 0x9d, 0x9e, 0xfc, 0x59, 0xc6, 0x69, 0x92, 0x10, 0x68, 0x9a, 0x16, 0xa7, 0x4d, 0xe4, - 0x72, 0xda, 0x5f, 0x2f, 0xd1, 0x79, 0xa4, 0x9c, 0xe6, 0x47, 0xa7, 0xb0, 0x3d, 0x0c, 0xb7, 0x08, - 0xfe, 0x00, 0xbb, 0x16, 0x1e, 0x74, 0xe9, 0x36, 0xda, 0x49, 0xd6, 0x42, 0xba, 0x1a, 0xd8, 0x96, - 0xf1, 0x59, 0x32, 0x96, 0x60, 0x53, 0xbc, 0x5b, 0xcf, 0xc9, 0xcf, 0x82, 0x0d, 0x50, 0x4e, 0x79, - 0xa4, 0xbf, 0x06, 0xeb, 0x02, 0xab, 0xe3, 0xbc, 0x49, 0x26, 0xe2, 0xc4, 0x4b, 0x7a, 0xb1, 0xe8, - 0xe8, 0xd3, 0xb2, 0xa3, 0x0d, 0x06, 0xa5, 0xf5, 0xe7, 0x55, 0x35, 0x0e, 0x02, 0x51, 0xc1, 0x79, - 0x81, 0x4c, 0x1e, 0xf8, 0x71, 0xec, 0xed, 0xf9, 0x82, 0x21, 0xe6, 0x45, 0xdd, 0xc9, 0x1b, 0x1c, - 0x0c, 0xb2, 0xdc, 0xf9, 0x34, 0x19, 0xf7, 0xa3, 0x28, 0x8c, 0x04, 0x47, 0xcc, 0x0a, 0xc4, 0xf1, - 0x75, 0x04, 0x02, 0x2f, 0x73, 0xbf, 0x5f, 0x22, 0xf3, 0xaa, 0xaf, 0xbc, 0xad, 0x11, 0x2e, 0xf5, - 0x16, 0x21, 0x4d, 0x39, 0xb0, 0x98, 0x2d, 0xb0, 0xe9, 0x2b, 0x2f, 0x1f, 0x4f, 0xbb, 0x7f, 0x22, - 0x75, 0x1b, 0x0a, 0x14, 0x83, 0x41, 0xd7, 0xfd, 0x6e, 0x89, 0x9c, 0x4d, 0x8d, 0x69, 0x2b, 0x88, - 0x13, 0xe7, 0xcf, 0xf6, 0x8d, 0xeb, 0xd2, 0x31, 0x6d, 0x1b, 0xda, 0xd3, 0x32, 0x56, 0x67, 0xc3, - 0x53, 0x8c, 0x22, 0x21, 0xc6, 0xe0, 0x80, 0x8c, 0x07, 0x89, 0x7f, 0x20, 0xc7, 0x75, 0xb1, 0xe0, - 0xb8, 0x78, 0x07, 0xf5, 0xe7, 0xd9, 0x44, 0x1a, 0xc0, 0x49, 0xb9, 0xff, 0x8b, 0xee, 0x59, 0x74, - 0x94, 0xbb, 0xc1, 0xde, 0x0d, 0xaf, 0x3b, 0xc2, 0x0f, 0xd3, 0xa0, 0x32, 0x0f, 0xa9, 0xf2, 0xae, - 0x5f, 0xce, 0xeb, 0xba, 0xe8, 0xd0, 0x72, 0x8d, 0xd6, 0xe1, 0x3b, 0xa0, 0x92, 0x4b, 0x08, 0x02, - 0x46, 0x6c, 0xe9, 0x75, 0x52, 0x55, 0x08, 0xce, 0x02, 0xa9, 0xdc, 0xf5, 0xb9, 0x7a, 0x54, 0x05, - 0xfc, 0xd7, 0x39, 0x47, 0xc6, 0x0f, 0xbd, 0x76, 0x4f, 0xac, 0x56, 0xe0, 0x3f, 0x3e, 0x5b, 0x7e, - 0xa3, 0xe4, 0xfe, 0x66, 0x89, 0x9c, 0x53, 0x8d, 0x5c, 0xf7, 0x8f, 0x1a, 0x7e, 0x9b, 0x76, 0x39, - 0x8c, 0x9c, 0x9f, 0xa5, 0x05, 0xed, 0x0c, 0x39, 0x24, 0x66, 0xe3, 0x24, 0x12, 0xec, 0x53, 0xa2, - 0xe3, 0xe7, 0xb2, 0x4a, 0x21, 0xb3, 0x35, 0xe7, 0x71, 0x3e, 0x16, 0xbe, 0x78, 0xa7, 0x05, 0x81, - 0x0a, 0xed, 0x28, 0x1b, 0x18, 0x76, 0x7f, 0x56, 0x75, 0xff, 0x34, 0x38, 0x6f, 0xcb, 0xe6, 0xbc, - 0xcf, 0x14, 0xfc, 0x7c, 0x03, 0x78, 0xee, 0x6f, 0x97, 0xc9, 0x79, 0x85, 0x63, 0x89, 0xe3, 0x87, - 0x64, 0xfa, 0x87, 0x1b, 0x2e, 0xfd, 0x2c, 0xdb, 0x21, 0xee, 0xa7, 0xd9, 0xc3, 0x75, 0x2e, 0x93, - 0xe9, 0x96, 0xbf, 0xeb, 0xf5, 0xda, 0xc9, 0x0d, 0xaa, 0x75, 0x0b, 0x73, 0x81, 0xe9, 0xcc, 0x35, - 0x0d, 0x06, 0x13, 0xc7, 0xfd, 0x9d, 0x2a, 0x5b, 0x95, 0x89, 0x17, 0x50, 0x93, 0x07, 0x37, 0x68, - 0x43, 0x83, 0x9d, 0x31, 0x35, 0x58, 0xa1, 0xad, 0x52, 0x49, 0x1c, 0x1c, 0xa0, 0xc8, 0x2e, 0xdb, - 0x92, 0x78, 0x13, 0x81, 0xc0, 0xcb, 0x9c, 0x67, 0xc9, 0x24, 0x35, 0x13, 0x0f, 0xbc, 0x4e, 0x8b, - 0xf6, 0x01, 0x55, 0x86, 0x69, 0x94, 0xea, 0x6b, 0x1c, 0x04, 0xb2, 0xcc, 0xf9, 0x14, 0x19, 0xa3, - 0xfa, 0x4d, 0x4c, 0x85, 0x3a, 0xe2, 0x4c, 0x61, 0x4b, 0x2b, 0xf4, 0x37, 0x30, 0x28, 0xaa, 0x02, - 0xf7, 0xc2, 0xe8, 0x2e, 0x55, 0xd8, 0x6a, 0x41, 0xc4, 0xf6, 0x75, 0x43, 0x15, 0xb8, 0xa3, 0x4a, - 0xc0, 0xc0, 0x72, 0xea, 0x64, 0xbc, 0x1b, 0x46, 0x49, 0x4c, 0xb7, 0x69, 0x9c, 0xce, 0x17, 0x73, - 0xb9, 0x87, 0x8f, 0xbb, 0x4e, 0xeb, 0xe8, 0xa1, 0xe0, 0x2f, 0x3a, 0xa5, 0x8c, 0x90, 0xb3, 0x46, - 0x2a, 0x7e, 0xe7, 0x70, 0x71, 0x92, 0xd1, 0x7b, 0xe6, 0x78, 0x7a, 0xeb, 0x9d, 0xc3, 0xdb, 0x5e, - 0xa4, 0x57, 0x11, 0xfd, 0x0d, 0x58, 0xdb, 0x69, 0x92, 0xaa, 0x34, 0x7a, 0xe3, 0xc5, 0xa9, 0x22, - 0x0c, 0x06, 0x02, 0x1d, 0xfc, 0xf7, 0x7b, 0x41, 0xe4, 0x1f, 0x50, 0xe1, 0x1a, 0x6b, 0x7d, 0x58, - 0x96, 0xc6, 0xa0, 0xe9, 0xd2, 0x46, 0x66, 0xb8, 0xfa, 0x70, 0x23, 0xa4, 0x96, 0x6f, 0xbc, 0x58, - 0x65, 0x5d, 0xce, 0x31, 0xae, 0x6e, 0xeb, 0x1a, 0xab, 0xe7, 0x04, 0xf9, 0x19, 0x03, 0x18, 0x83, - 0x45, 0x94, 0x1a, 0x70, 0xb3, 0xed, 0xe0, 0x90, 0x9a, 0xc7, 0x71, 0x5c, 0x8f, 0xc2, 0x1d, 0x7f, - 0x91, 0xb0, 0xd1, 0x7c, 0x3a, 0xcf, 0xd0, 0xa0, 0xa8, 0xab, 0x67, 0x28, 0xed, 0xd9, 0x2d, 0xb3, - 0x36, 0xd8, 0xc4, 0xa8, 0x26, 0x37, 0x87, 0xba, 0x4a, 0xa0, 0xc9, 0x4f, 0x17, 0x27, 0xef, 0x50, - 0xf2, 0x73, 0x60, 0x55, 0x87, 0x14, 0x39, 0x67, 0x9b, 0x54, 0xdb, 0xc1, 0xae, 0xdf, 0x3c, 0x6a, - 0x52, 0xed, 0x72, 0x86, 0xd1, 0xce, 0x59, 0x72, 0x5b, 0x12, 0x9d, 0xeb, 0x87, 0xea, 0x27, 0x68, - 0x42, 0xce, 0x6d, 0xf2, 0x48, 0xe2, 0x47, 0x07, 0x41, 0xc7, 0xc3, 0x4d, 0x5b, 0x28, 0x2f, 0xcc, - 0x9a, 0x9b, 0x65, 0x5c, 0xfb, 0x84, 0x98, 0xd8, 0x47, 0xb6, 0x33, 0xb1, 0x60, 0x40, 0x6d, 0xe7, - 0x16, 0x99, 0x67, 0xeb, 0xa9, 0xde, 0x6b, 0xb7, 0xeb, 0x61, 0x3b, 0x68, 0x1e, 0x2d, 0xce, 0x31, - 0x82, 0xcf, 0x4a, 0x1b, 0x6d, 0xd3, 0x2e, 0x46, 0xbd, 0x5e, 0xff, 0x82, 0x74, 0x6d, 0x34, 0x90, - 0xa9, 0x56, 0xdb, 0x8b, 0xa8, 0xd2, 0x8f, 0xbc, 0xef, 0xdf, 0x4f, 0x16, 0xe7, 0x8b, 0xd8, 0x29, - 0x0d, 0xbb, 0x12, 0x37, 0x90, 0x53, 0x40, 0x48, 0x93, 0x46, 0x51, 0x11, 0x27, 0x74, 0xf6, 0x17, - 0x17, 0x98, 0x62, 0xaa, 0xd6, 0x57, 0x03, 0x81, 0xc0, 0xcb, 0x98, 0xd9, 0x87, 0xff, 0xdc, 0x42, - 0xd9, 0x7b, 0x86, 0x21, 0x6a, 0xb3, 0x4f, 0x16, 0x80, 0xc6, 0xc1, 0x0d, 0x2b, 0xa1, 0x86, 0xbd, - 0xc3, 0x50, 0xd5, 0x52, 0xdb, 0xde, 0xfe, 0x32, 0x20, 0xdc, 0xdd, 0x21, 0x73, 0x6a, 0x59, 0xb3, - 0xd9, 0x71, 0x9e, 0x24, 0xe3, 0x28, 0xb9, 0xa4, 0xf5, 0x52, 0xc5, 0x2e, 0xa0, 0x40, 0xa3, 0x4b, - 0x9c, 0xc1, 0x59, 0x17, 0x82, 0x0f, 0xfc, 0xd5, 0x23, 0x3a, 0x6a, 0x26, 0xd6, 0x2a, 0x46, 0x17, - 0x64, 0x01, 0x68, 0x1c, 0xf7, 0xff, 0xf0, 0x4d, 0x51, 0xcb, 0x8e, 0x02, 0x72, 0x93, 0x2a, 0xea, - 0xfb, 0x61, 0x9c, 0x20, 0x36, 0x6b, 0x63, 0x5c, 0xef, 0x82, 0xd7, 0x04, 0x1c, 0x14, 0x86, 0xf3, - 0x39, 0x32, 0xdb, 0x34, 0x1b, 0x10, 0xa2, 0xfc, 0xbc, 0xa8, 0x62, 0xb7, 0x0e, 0x36, 0xae, 0xf3, - 0x06, 0x99, 0x62, 0x6e, 0xab, 0x66, 0xd8, 0x16, 0xfa, 0xb2, 0xdc, 0x99, 0xa6, 0xea, 0x02, 0xfe, - 0x91, 0xf1, 0x3f, 0x28, 0x6c, 0xb4, 0x3a, 0xb0, 0x0b, 0x9b, 0x75, 0x21, 0x6e, 0x95, 0xd5, 0x71, - 0x8d, 0x41, 0x41, 0x94, 0xba, 0xbf, 0x5a, 0x36, 0x66, 0x19, 0x95, 0x3e, 0xdf, 0xf9, 0x09, 0x32, - 0x79, 0xcf, 0xa3, 0x4a, 0x6b, 0x67, 0x4f, 0xec, 0xa0, 0xaf, 0x14, 0x94, 0xbd, 0xac, 0xfa, 0x1d, - 0x5e, 0x95, 0xef, 0x13, 0xe2, 0x07, 0x48, 0x82, 0x48, 0x3b, 0xea, 0x75, 0x3a, 0x48, 0xbb, 0x3c, - 0x3c, 0x6d, 0xe0, 0x55, 0x39, 0x6d, 0xf1, 0x03, 0x24, 0x41, 0x67, 0x97, 0x10, 0xb9, 0xfa, 0xfc, - 0x96, 0x70, 0x17, 0xfd, 0xd8, 0x30, 0xe4, 0xb7, 0x55, 0xed, 0xd5, 0x39, 0xdc, 0x99, 0xf4, 0x6f, - 0x30, 0x28, 0xbb, 0x3d, 0xa6, 0x88, 0xf4, 0x77, 0x8b, 0x4a, 0x54, 0xca, 0xdc, 0x5e, 0x44, 0x71, - 0x56, 0x12, 0x31, 0x75, 0x2f, 0x16, 0x54, 0xa8, 0xb6, 0x83, 0x03, 0xdf, 0x5c, 0x2d, 0x82, 0x0a, - 0x68, 0x82, 0xee, 0xb7, 0x2b, 0x64, 0x71, 0x50, 0x7f, 0x91, 0x27, 0xfd, 0xfb, 0x01, 0xb5, 0x46, - 0x5a, 0x9c, 0x73, 0x0d, 0x9e, 0x5c, 0x17, 0x70, 0x50, 0x18, 0xc8, 0x1c, 0x71, 0xb0, 0xd7, 0xf1, - 0xda, 0x82, 0x7f, 0x15, 0x73, 0x34, 0x18, 0x14, 0x44, 0x29, 0xe2, 0x51, 0xa9, 0x1b, 0x0b, 0x77, - 0xa5, 0xc1, 0x44, 0xc0, 0xa0, 0x20, 0x4a, 0x4d, 0xf3, 0x6f, 0x2c, 0xc7, 0xfc, 0xb3, 0xe6, 0x68, - 0xfc, 0x01, 0xcf, 0x11, 0xdd, 0x75, 0x08, 0xba, 0xf4, 0xe2, 0x7d, 0x46, 0x7e, 0x62, 0x78, 0xf2, - 0x4a, 0x2b, 0xd9, 0x50, 0x64, 0xc0, 0x20, 0xe9, 0xbc, 0x46, 0xa6, 0xd5, 0x0a, 0xa5, 0xd6, 0xff, - 0x24, 0x1b, 0xed, 0x59, 0x51, 0x69, 0x5a, 0x8b, 0xab, 0x1a, 0x98, 0x78, 0xee, 0xd7, 0xd2, 0x2c, - 0x23, 0x16, 0x86, 0x31, 0xc3, 0xa5, 0xa2, 0x33, 0x5c, 0x3e, 0x7e, 0x86, 0xdd, 0xff, 0x5c, 0x41, - 0xdb, 0xd9, 0x68, 0xac, 0x17, 0x17, 0x10, 0x6a, 0x6f, 0xa3, 0x84, 0xa7, 0x1d, 0x13, 0xcb, 0xf2, - 0xa5, 0x61, 0xd6, 0x8d, 0xb9, 0x1f, 0xe0, 0x72, 0xe0, 0x94, 0x9c, 0x7d, 0xba, 0x43, 0x7b, 0x31, - 0xb3, 0x24, 0x7d, 0xb1, 0x1c, 0x87, 0x23, 0xab, 0xb5, 0x70, 0x4a, 0xc6, 0xd8, 0x70, 0x79, 0x2b, - 0x9a, 0x38, 0x6e, 0x4f, 0xa8, 0x1d, 0x48, 0x2f, 0xb9, 0xea, 0x0e, 0xaa, 0x10, 0x47, 0xc0, 0xcb, - 0xa8, 0x2c, 0x9d, 0xa1, 0x1a, 0x16, 0xb2, 0xca, 0x1a, 0x2a, 0x40, 0x8c, 0xf9, 0xc6, 0xb5, 0xa6, - 0x04, 0x46, 0x19, 0x58, 0x98, 0x5a, 0x51, 0x9e, 0x38, 0x46, 0x51, 0xa6, 0x5f, 0x88, 0xfd, 0xa3, - 0xb8, 0x42, 0x7d, 0xa1, 0x4d, 0x0e, 0x06, 0x59, 0x9e, 0x66, 0xa2, 0xa9, 0x82, 0x4c, 0x74, 0x81, - 0xcc, 0xd5, 0x3c, 0xff, 0x20, 0xec, 0xac, 0x77, 0x5a, 0xdd, 0x30, 0xa0, 0x1d, 0x5b, 0x24, 0x63, - 0x6c, 0x4b, 0xe1, 0x2b, 0x7e, 0x0c, 0x29, 0xc0, 0x18, 0x2a, 0xbb, 0xee, 0xff, 0xa5, 0xfb, 0x5a, - 0x8d, 0xda, 0xa7, 0x89, 0x7f, 0xab, 0xcb, 0xdc, 0x0f, 0xce, 0x06, 0x71, 0xf6, 0x22, 0xaf, 0xe9, - 0xd7, 0xfd, 0x28, 0x08, 0x5b, 0x74, 0xc7, 0x0f, 0x3b, 0xcc, 0xb9, 0x8c, 0x7b, 0x24, 0x7a, 0x13, - 0x9d, 0xab, 0x7d, 0xa5, 0x90, 0x51, 0xc3, 0x69, 0x91, 0xd9, 0x6e, 0xe4, 0x5b, 0xfe, 0x92, 0x52, - 0xbe, 0x7e, 0x5e, 0x37, 0xab, 0x70, 0xf5, 0xd1, 0x02, 0x81, 0x4d, 0xd4, 0x79, 0x8b, 0x2c, 0x84, - 0x51, 0x77, 0xdf, 0xeb, 0xd4, 0xfc, 0xae, 0xdf, 0x69, 0xa1, 0xce, 0x2c, 0x9c, 0x62, 0xe7, 0x68, - 0xdd, 0x85, 0x5b, 0xa9, 0x32, 0xe8, 0xc3, 0x76, 0x7f, 0x99, 0xda, 0x8b, 0xb5, 0xf0, 0x5e, 0xe7, - 0x9e, 0x17, 0xb5, 0x56, 0xea, 0x9b, 0x5c, 0x11, 0x66, 0x4e, 0x46, 0xe9, 0xdc, 0x2c, 0x0d, 0x74, - 0x6e, 0x7e, 0x85, 0x4c, 0xed, 0x06, 0x7e, 0xbb, 0x85, 0x5e, 0x48, 0x3e, 0xbc, 0xcb, 0x45, 0x3c, - 0x1a, 0x1b, 0x58, 0x47, 0x7a, 0x05, 0xb8, 0x6f, 0x75, 0x43, 0x90, 0x01, 0x45, 0xd0, 0xe9, 0x91, - 0x05, 0xa9, 0xe9, 0xcb, 0x52, 0xb1, 0x3a, 0x5e, 0x29, 0x66, 0x48, 0xd8, 0xcd, 0xb0, 0xf9, 0x80, - 0x14, 0x41, 0xe8, 0x6b, 0x02, 0x2d, 0xb4, 0x03, 0xdc, 0x1d, 0xc6, 0x18, 0xaf, 0x30, 0x0b, 0x8d, - 0x99, 0x90, 0x0c, 0xea, 0xfe, 0xfd, 0x12, 0x79, 0xb4, 0x6f, 0xb6, 0x84, 0x7d, 0xfd, 0x25, 0x69, - 0xd8, 0xf2, 0x93, 0x88, 0x9c, 0x5e, 0x66, 0xce, 0x79, 0x31, 0x23, 0xb7, 0x5c, 0xc0, 0xc8, 0xbd, - 0x45, 0xce, 0xad, 0x1f, 0x74, 0x93, 0x23, 0x6a, 0x22, 0x5a, 0x9d, 0x7c, 0x9d, 0x4c, 0x1c, 0xf8, - 0xad, 0xa0, 0x77, 0x20, 0x3e, 0xeb, 0x93, 0x52, 0x90, 0xde, 0x60, 0x50, 0xaa, 0x25, 0xcd, 0xe2, - 0x39, 0x1f, 0x5d, 0x80, 0x1c, 0x00, 0x02, 0xdd, 0xfd, 0x61, 0x89, 0xcc, 0xcb, 0x05, 0xb5, 0xd2, - 0x6a, 0xd1, 0x79, 0x8b, 0x9d, 0x25, 0x52, 0x0e, 0xba, 0x82, 0x10, 0x11, 0x84, 0xca, 0x54, 0x69, - 0xa2, 0x50, 0xaa, 0xc1, 0x54, 0xb9, 0x2b, 0x5f, 0x33, 0xc7, 0x90, 0x47, 0x03, 0xcc, 0xfa, 0xd8, - 0x96, 0x34, 0x40, 0x93, 0x93, 0x9a, 0x25, 0x13, 0xd5, 0x15, 0xdb, 0xb1, 0x7c, 0x4d, 0xc0, 0x41, - 0x61, 0xa0, 0x3b, 0x1f, 0x4f, 0xe4, 0xd8, 0x29, 0x0b, 0xdf, 0x76, 0x19, 0xcb, 0xdd, 0x14, 0x30, - 0x50, 0xa5, 0xee, 0xcf, 0x97, 0xc8, 0x8c, 0x1c, 0x63, 0x41, 0x25, 0x17, 0x17, 0x89, 0x56, 0x70, - 0xf5, 0x22, 0x41, 0x25, 0x95, 0x95, 0x58, 0xba, 0x69, 0x65, 0x18, 0xdd, 0xd4, 0xfd, 0x36, 0xd5, - 0x39, 0x65, 0x77, 0x1a, 0xbd, 0x9d, 0xd8, 0x4f, 0x9c, 0xaf, 0x92, 0xaa, 0xc7, 0x27, 0xdf, 0x97, - 0x7c, 0x76, 0x31, 0xcf, 0x42, 0xb7, 0xbe, 0x99, 0x56, 0x0c, 0x56, 0x24, 0x1d, 0xd0, 0x24, 0x9d, - 0x43, 0x72, 0xa6, 0x13, 0x26, 0x6c, 0x3f, 0x50, 0xe5, 0xc5, 0x3c, 0xa2, 0xe9, 0x76, 0x1e, 0x13, - 0xed, 0x9c, 0xb9, 0x99, 0xa6, 0x07, 0xfd, 0x4d, 0x50, 0xbb, 0x4f, 0x78, 0x31, 0x2a, 0xac, 0xad, - 0x0b, 0xc5, 0xda, 0x1a, 0xec, 0xc4, 0x70, 0x7f, 0xab, 0x44, 0xaa, 0x12, 0x6d, 0x94, 0x3e, 0xf1, - 0x3b, 0x64, 0x32, 0x66, 0x9f, 0x46, 0x4e, 0xd3, 0x4b, 0xc5, 0xba, 0xce, 0xbf, 0xa7, 0xde, 0xfc, - 0xf8, 0xef, 0x18, 0x24, 0x35, 0xe6, 0x86, 0x54, 0x03, 0x78, 0xf8, 0xdc, 0x90, 0xaa, 0x6b, 0x03, - 0xdc, 0x90, 0xff, 0xa0, 0x44, 0x26, 0xb8, 0x73, 0xa8, 0x98, 0x87, 0xcd, 0xf0, 0x25, 0x6b, 0x8a, - 0xb7, 0x11, 0x28, 0x5c, 0xcb, 0x74, 0xa6, 0xab, 0xec, 0x9f, 0x8d, 0x28, 0x3c, 0x10, 0x1b, 0xc1, - 0x85, 0x22, 0xce, 0x29, 0x2e, 0xf8, 0xb8, 0x34, 0xb9, 0x2d, 0x09, 0x80, 0xa6, 0xe5, 0xfe, 0x66, - 0x05, 0x57, 0xbd, 0x46, 0xb5, 0xb6, 0xb5, 0xd2, 0x69, 0x6c, 0x6b, 0xe5, 0xd1, 0x6f, 0x6b, 0xef, - 0x93, 0xf9, 0xa6, 0xe1, 0x93, 0xd7, 0x9b, 0xe9, 0x95, 0x82, 0xee, 0x66, 0xc3, 0x91, 0xcf, 0x9d, - 0x21, 0x6b, 0x36, 0x39, 0x48, 0xd3, 0x77, 0x7c, 0x32, 0xc3, 0x0f, 0x14, 0x45, 0x7b, 0x63, 0xb9, - 0x3c, 0xcb, 0xfd, 0x2e, 0xbc, 0x86, 0x6a, 0x8c, 0x05, 0x58, 0x34, 0x0c, 0x42, 0x60, 0x91, 0x75, - 0xff, 0xea, 0x38, 0x19, 0x5f, 0x3f, 0xa4, 0xba, 0xcc, 0x08, 0x57, 0xf9, 0x01, 0x99, 0x0b, 0x3a, - 0x87, 0x61, 0xfb, 0xd0, 0x6f, 0xf1, 0xf2, 0x93, 0xed, 0x68, 0x8f, 0x88, 0x46, 0xe6, 0x36, 0x2d, - 0x62, 0x90, 0x22, 0x3e, 0x0a, 0x7b, 0xf2, 0x6d, 0x6a, 0xca, 0x32, 0x8e, 0x10, 0xc6, 0x64, 0x8e, - 0x93, 0x94, 0x4d, 0xa8, 0x58, 0x39, 0xda, 0xea, 0xe5, 0xfe, 0x59, 0x41, 0xc8, 0xb9, 0x4b, 0xe6, - 0x76, 0x83, 0x88, 0x5a, 0x1c, 0xd4, 0x20, 0xa4, 0x56, 0xc0, 0x41, 0xf7, 0x24, 0x86, 0xa4, 0x9a, - 0x92, 0x0d, 0x8b, 0x14, 0xa4, 0x48, 0x53, 0x23, 0x69, 0x16, 0xed, 0x18, 0xdd, 0xd6, 0xe4, 0xf0, - 0x6d, 0x29, 0x5f, 0xd2, 0x96, 0x49, 0x09, 0x6c, 0xc2, 0x28, 0x8c, 0x9a, 0xcc, 0xf0, 0x99, 0x62, - 0x5b, 0xba, 0x12, 0x46, 0xdc, 0xe2, 0xe1, 0x65, 0x28, 0xd3, 0xd8, 0xf9, 0x71, 0xd5, 0x96, 0x69, - 0xfa, 0x94, 0xd8, 0xfd, 0x16, 0x6e, 0x40, 0x38, 0x8b, 0xa7, 0x21, 0xbb, 0xaf, 0xd9, 0xb2, 0xfb, - 0xd3, 0x05, 0x3e, 0xee, 0x00, 0xb9, 0xfd, 0x1e, 0x99, 0x36, 0xbe, 0x3d, 0x3a, 0x0a, 0x9b, 0xf2, - 0xa8, 0x53, 0x08, 0x70, 0xa5, 0x40, 0xa8, 0x33, 0x50, 0xd0, 0x38, 0x38, 0x31, 0xa8, 0x78, 0xa5, - 0x23, 0x22, 0x50, 0x2d, 0x03, 0x56, 0xe2, 0xbe, 0x42, 0xc8, 0xfa, 0x7d, 0xbf, 0xb9, 0xd2, 0x64, - 0x07, 0xf1, 0xc6, 0xb9, 0x49, 0x69, 0xf0, 0xb9, 0x89, 0xfb, 0x2e, 0xdd, 0x0c, 0xef, 0xe3, 0xce, - 0x2e, 0xcd, 0x34, 0xba, 0x44, 0x7c, 0x06, 0x60, 0xbd, 0x9a, 0xd2, 0x4c, 0xca, 0xd1, 0x40, 0x94, - 0xb2, 0x63, 0xf4, 0xfb, 0x9e, 0x58, 0xb0, 0x86, 0xc9, 0xbb, 0x8e, 0x40, 0xe0, 0x65, 0xee, 0x37, - 0x4b, 0x64, 0x6e, 0x63, 0xcd, 0xd2, 0x93, 0x97, 0x09, 0xe1, 0xfa, 0xe6, 0x9d, 0x3b, 0x37, 0xa5, - 0x1f, 0x95, 0x3b, 0xbb, 0x14, 0x14, 0x0c, 0x0c, 0xe7, 0x31, 0x52, 0x69, 0xf7, 0x3a, 0x42, 0x0d, - 0x9c, 0x44, 0xff, 0xec, 0x56, 0xaf, 0x03, 0x08, 0x33, 0x02, 0x1b, 0x2a, 0x85, 0x03, 0x1b, 0xf2, - 0xc3, 0xd8, 0x7e, 0xb1, 0x42, 0x16, 0x36, 0xda, 0xfe, 0x7d, 0xab, 0xd7, 0xb4, 0xa9, 0x56, 0x14, - 0x50, 0xe6, 0x49, 0xbb, 0x49, 0x6a, 0x0c, 0x0a, 0xa2, 0xb4, 0x70, 0xac, 0x85, 0x15, 0x67, 0x52, - 0x19, 0x71, 0x9c, 0x49, 0xee, 0x98, 0x9d, 0x5d, 0x32, 0x19, 0xf2, 0xef, 0x4f, 0xa5, 0x18, 0x32, - 0xfa, 0xe7, 0x8e, 0xef, 0x4c, 0x7a, 0x7e, 0x96, 0x05, 0xf7, 0xf0, 0x43, 0x6f, 0x25, 0x2c, 0x05, - 0x14, 0x24, 0xf1, 0xa5, 0xcf, 0x92, 0x19, 0x13, 0x73, 0xa8, 0xd3, 0xef, 0x2d, 0x72, 0x76, 0x03, - 0xa3, 0x25, 0x53, 0xb1, 0x30, 0xaf, 0x51, 0x13, 0x8e, 0xae, 0xd4, 0xd8, 0x0a, 0x10, 0x53, 0xbe, - 0x8c, 0x9a, 0x2e, 0x02, 0x13, 0xcf, 0xfd, 0x0f, 0x25, 0xf2, 0xf8, 0xd5, 0xb5, 0xf5, 0x3a, 0x8a, - 0x83, 0x38, 0xa1, 0x0b, 0xac, 0x16, 0xc4, 0x77, 0xd3, 0x9f, 0xbc, 0xdb, 0x32, 0x68, 0xaa, 0x4f, - 0x59, 0xaf, 0x31, 0x72, 0xa2, 0xf4, 0x61, 0x89, 0xbe, 0xa4, 0x7a, 0xe1, 0xd9, 0xab, 0x01, 0xfd, - 0xf6, 0xdd, 0x30, 0x1d, 0x3f, 0x17, 0x51, 0x58, 0x8c, 0x71, 0x55, 0x47, 0xe9, 0xf8, 0x39, 0x50, - 0x25, 0x60, 0x60, 0xf1, 0x96, 0x0f, 0x03, 0x14, 0x94, 0x62, 0x50, 0x46, 0xcb, 0x1c, 0x0e, 0x0a, - 0x03, 0x07, 0xd6, 0x0a, 0x22, 0xa6, 0x53, 0x1c, 0x89, 0x95, 0xa8, 0x06, 0x56, 0x93, 0x05, 0xa0, - 0x71, 0xdc, 0xbf, 0x59, 0x22, 0xe7, 0xaf, 0xb6, 0x7b, 0x74, 0xda, 0xa3, 0xdd, 0xd8, 0xea, 0xec, - 0x2b, 0xa4, 0xea, 0x4b, 0xfd, 0x57, 0xf4, 0x55, 0xed, 0x2d, 0x4a, 0x31, 0xe6, 0xc1, 0x7b, 0x0a, - 0xaf, 0x40, 0xac, 0xd8, 0x70, 0x91, 0x4d, 0xff, 0xa2, 0x4c, 0x66, 0xaf, 0x6d, 0x6f, 0xd7, 0xaf, - 0xfa, 0x89, 0x90, 0xa5, 0xf9, 0x0e, 0x9b, 0xba, 0x61, 0xad, 0x4e, 0x5f, 0x59, 0x1e, 0xb0, 0x7a, - 0x30, 0x2e, 0x78, 0x99, 0xc7, 0x05, 0x2f, 0x6f, 0x76, 0x92, 0x5b, 0x51, 0x23, 0x89, 0xf0, 0x38, - 0x21, 0xcb, 0xba, 0x95, 0xf2, 0xbe, 0x32, 0x48, 0xde, 0xd3, 0xc9, 0x9a, 0x88, 0x9b, 0xfb, 0xbe, - 0x32, 0xbe, 0x3f, 0xa9, 0xd4, 0x09, 0x06, 0xa5, 0xb6, 0x6f, 0xf5, 0x1d, 0xd8, 0xe4, 0x3f, 0x40, - 0xa0, 0x52, 0xc1, 0x33, 0xbd, 0x9f, 0x24, 0xdd, 0x6b, 0x74, 0xb0, 0x94, 0xf5, 0xc5, 0x6a, 0xcf, - 0xd1, 0xe6, 0x70, 0x32, 0x78, 0x05, 0xbd, 0xb0, 0x34, 0x2c, 0x06, 0x93, 0xa2, 0xdb, 0x20, 0x44, - 0x97, 0x3d, 0x20, 0x13, 0xc5, 0xfd, 0xf3, 0x65, 0x32, 0x79, 0x8d, 0x6e, 0x57, 0x6d, 0x4a, 0x72, - 0x83, 0x8c, 0xf9, 0x74, 0x9b, 0x2b, 0xa6, 0x88, 0xea, 0x0d, 0x91, 0x7b, 0x9c, 0xf0, 0x37, 0xb0, - 0xfa, 0x0e, 0x90, 0x49, 0xec, 0xf7, 0x55, 0x15, 0x60, 0xf9, 0x62, 0xfe, 0x2c, 0x28, 0x96, 0xe0, - 0xbb, 0xa9, 0x00, 0x81, 0x24, 0xc4, 0x7c, 0x33, 0xcd, 0x6e, 0x03, 0xa5, 0x54, 0x52, 0x2c, 0x5e, - 0x78, 0x7b, 0xad, 0xce, 0xd1, 0x05, 0x5d, 0xee, 0x9b, 0x91, 0x40, 0xd0, 0xe4, 0xdc, 0x37, 0xc8, - 0x39, 0x76, 0xba, 0x47, 0xd9, 0xcd, 0x5a, 0x33, 0xb9, 0xcc, 0xe9, 0xfe, 0x9d, 0x32, 0x39, 0xb3, - 0xd9, 0x58, 0x6b, 0xd8, 0x5e, 0xb5, 0x37, 0xc8, 0x0c, 0xdf, 0x66, 0x91, 0xe9, 0xbc, 0xb6, 0xa8, - 0xaf, 0xdc, 0xd1, 0xdb, 0x46, 0x19, 0x58, 0x98, 0x78, 0x6c, 0x1a, 0xbc, 0xdf, 0x49, 0xc7, 0xf9, - 0x6c, 0xbe, 0x7d, 0x13, 0x10, 0x8e, 0xc5, 0xb8, 0x63, 0x73, 0x11, 0xa7, 0x8a, 0xd5, 0xae, 0xfd, - 0x05, 0xaa, 0xf2, 0xc7, 0xcd, 0x38, 0xa0, 0x0b, 0x80, 0xae, 0x7f, 0xaf, 0x29, 0xd9, 0x57, 0xeb, - 0xf0, 0xd8, 0x55, 0x55, 0x0a, 0x29, 0x6c, 0x43, 0xde, 0x8e, 0x17, 0xde, 0xf5, 0xf3, 0x23, 0x2d, - 0xbf, 0x46, 0xaa, 0x2a, 0x22, 0x46, 0x06, 0x32, 0x95, 0xb2, 0x03, 0x99, 0x0a, 0x08, 0x1c, 0xe9, - 0xeb, 0xac, 0x64, 0xfa, 0x3a, 0xff, 0x31, 0xd5, 0x60, 0xd5, 0xe1, 0x3f, 0xe5, 0xc3, 0x2a, 0x15, - 0xbc, 0x09, 0x3b, 0x4e, 0x12, 0x4c, 0xfd, 0x6c, 0x0e, 0x27, 0xf2, 0x95, 0xc0, 0x79, 0xa5, 0x2e, - 0xeb, 0x82, 0x26, 0xe3, 0x6c, 0x91, 0xc9, 0x6e, 0xe4, 0x37, 0x12, 0x16, 0xae, 0x3b, 0x04, 0x45, - 0xc6, 0xd5, 0x75, 0x5e, 0x13, 0x24, 0x09, 0xf7, 0xd7, 0x4b, 0x84, 0x6c, 0x05, 0x07, 0x74, 0x73, - 0xf1, 0x3a, 0x7b, 0xfe, 0x08, 0xad, 0xc1, 0x9b, 0x64, 0x2c, 0xee, 0xd2, 0xa5, 0x5d, 0xe8, 0x08, - 0x48, 0xf7, 0xa8, 0x41, 0xeb, 0xe8, 0xcf, 0x80, 0xbf, 0x80, 0xd1, 0x71, 0x7f, 0x85, 0x90, 0x39, - 0x8d, 0x86, 0xea, 0xb8, 0x73, 0xd1, 0x8a, 0x4f, 0x7d, 0x2c, 0x15, 0x9f, 0x5a, 0x65, 0xd8, 0x46, - 0x48, 0x6a, 0x42, 0x2a, 0x07, 0xde, 0x7d, 0xa1, 0xfd, 0xbf, 0x56, 0xb4, 0x43, 0xd8, 0xd2, 0xf2, - 0x0d, 0xef, 0x3e, 0x57, 0x87, 0x5e, 0x94, 0x0c, 0x44, 0x21, 0x1f, 0xf1, 0x83, 0x1e, 0xb6, 0x02, - 0xd1, 0xdc, 0xf8, 0x99, 0xff, 0xa2, 0x7f, 0x33, 0xa1, 0x88, 0xcd, 0xb1, 0x56, 0x83, 0x8e, 0x70, - 0xd9, 0x0d, 0xd9, 0x6a, 0xd0, 0x49, 0xb7, 0x1a, 0x74, 0x0a, 0xb4, 0x1a, 0x74, 0x30, 0x8c, 0x6d, - 0x52, 0x78, 0xba, 0x59, 0x18, 0xd5, 0xf4, 0x95, 0x37, 0x87, 0x6a, 0x5a, 0xb8, 0xcc, 0x79, 0xf3, - 0x97, 0xa4, 0x0e, 0x28, 0xa0, 0xb9, 0x5d, 0x90, 0x4d, 0x3b, 0xbf, 0x44, 0x6d, 0x06, 0xf1, 0x3f, - 0x46, 0x2c, 0x51, 0xe3, 0x51, 0xec, 0x52, 0x6f, 0x9d, 0xa4, 0x37, 0x82, 0x04, 0xef, 0xd4, 0x8f, - 0x49, 0x11, 0x63, 0x17, 0xe6, 0xf6, 0x2d, 0xd5, 0x1f, 0xe7, 0xc3, 0x12, 0x39, 0x47, 0xbf, 0x13, - 0x6f, 0x91, 0xc3, 0x00, 0x0f, 0x06, 0x45, 0xa8, 0xd8, 0xc6, 0xb0, 0x7c, 0xd2, 0x47, 0x88, 0x77, - 0xf7, 0xf3, 0xf2, 0xf8, 0x31, 0x0b, 0x25, 0xb7, 0xd3, 0x99, 0x3d, 0x5c, 0x6a, 0x91, 0x29, 0xc9, - 0x98, 0x19, 0xda, 0xf7, 0xaa, 0xb9, 0x19, 0x1f, 0xbf, 0x02, 0xa5, 0x23, 0x6c, 0xf9, 0xed, 0x9e, - 0xd7, 0x49, 0x30, 0xf4, 0x5f, 0xeb, 0xea, 0xac, 0x15, 0xc1, 0x88, 0x23, 0x6c, 0x65, 0x9f, 0xcc, - 0x98, 0x3c, 0x37, 0xc2, 0x96, 0x42, 0x72, 0x36, 0x83, 0x9f, 0x46, 0xd8, 0x60, 0x8f, 0x3c, 0x36, - 0x90, 0x2f, 0x46, 0xd7, 0x2c, 0x3a, 0xf7, 0x0d, 0x81, 0x79, 0x1a, 0x0e, 0x96, 0x1b, 0xb6, 0x83, - 0xe5, 0xf9, 0xa2, 0x4b, 0x67, 0x80, 0x97, 0x65, 0xd7, 0xec, 0x3f, 0xee, 0x04, 0xce, 0x36, 0x99, - 0x68, 0x23, 0x44, 0x9e, 0xea, 0xbc, 0x34, 0xcc, 0xe2, 0xd4, 0xca, 0x05, 0x83, 0xc7, 0x20, 0x68, - 0xb9, 0xbf, 0x51, 0x22, 0x63, 0xa7, 0x31, 0x3d, 0x75, 0x7b, 0x7a, 0x06, 0xa9, 0xa8, 0xe2, 0x7e, - 0xe2, 0x32, 0x78, 0xf7, 0xd6, 0xef, 0x53, 0x6b, 0x36, 0x66, 0xaa, 0x64, 0xe6, 0x0c, 0xfd, 0x72, - 0x99, 0x4c, 0x63, 0x43, 0xd2, 0xdf, 0xf3, 0x39, 0xf4, 0xff, 0xed, 0xf8, 0x6d, 0xe9, 0x16, 0x4e, - 0x9b, 0x5d, 0x5b, 0x66, 0x21, 0xd8, 0xb8, 0x58, 0x79, 0xd7, 0xf4, 0x9a, 0x0b, 0x95, 0x48, 0x55, - 0xb6, 0x5c, 0xea, 0x60, 0xe3, 0xa2, 0xe6, 0x7f, 0xcf, 0x4b, 0x9a, 0xfb, 0xc2, 0x24, 0x53, 0xdd, - 0xbd, 0x83, 0x40, 0xe0, 0x65, 0xce, 0x0a, 0x99, 0x97, 0x1c, 0x7b, 0x9b, 0x4f, 0x9d, 0x50, 0x17, - 0xd5, 0xdd, 0x32, 0xb0, 0x8b, 0x21, 0x8d, 0xef, 0x7c, 0x96, 0xcc, 0xe1, 0xe4, 0x84, 0xbd, 0x44, - 0x06, 0x1d, 0x8c, 0xb3, 0xa0, 0x03, 0x16, 0xe4, 0xb9, 0x6d, 0x95, 0x40, 0x0a, 0xd3, 0xfd, 0x49, - 0x72, 0x76, 0x2b, 0xf4, 0x5a, 0xab, 0x5e, 0xdb, 0xeb, 0x34, 0xfd, 0x68, 0xb3, 0xb3, 0x97, 0x7b, - 0x3e, 0x6b, 0x9e, 0xa1, 0x96, 0xf3, 0xce, 0x50, 0xdd, 0x88, 0x38, 0x66, 0x03, 0x22, 0x5c, 0xe6, - 0x5d, 0x32, 0x19, 0xf0, 0xa6, 0x04, 0xd7, 0x5e, 0xce, 0x73, 0x0e, 0xf5, 0xf5, 0xd1, 0x08, 0xff, - 0xe0, 0x00, 0x90, 0x24, 0xd1, 0x92, 0xc8, 0xf2, 0x26, 0xe5, 0x1b, 0x6b, 0xee, 0x5f, 0x2a, 0x91, - 0xf9, 0x9b, 0xa9, 0x4b, 0x5d, 0x18, 0xcb, 0xe5, 0x47, 0x19, 0xae, 0xb1, 0x06, 0x83, 0x82, 0x28, - 0x7d, 0xe0, 0x66, 0xfa, 0x5f, 0x2e, 0x93, 0x2a, 0x8b, 0xbd, 0xec, 0x7a, 0xcd, 0x51, 0x2a, 0xa5, - 0x37, 0x2c, 0xa5, 0x34, 0xc7, 0x48, 0x54, 0x1d, 0x1a, 0xa4, 0x93, 0xe2, 0xb5, 0x3e, 0x71, 0xc9, - 0xa9, 0x90, 0x7d, 0xa8, 0x09, 0xf2, 0xfb, 0x30, 0x73, 0xf6, 0x9d, 0x28, 0x79, 0x01, 0x8a, 0x9d, - 0x6a, 0x2a, 0xdc, 0x87, 0xef, 0x54, 0x53, 0x75, 0x6d, 0x80, 0x54, 0xaa, 0x1b, 0xbd, 0x67, 0x62, - 0xfb, 0x8b, 0x2c, 0x90, 0xce, 0x6b, 0x07, 0x1f, 0xf8, 0xea, 0xb2, 0xe0, 0x93, 0x22, 0x2e, 0x4e, - 0x40, 0x3f, 0x62, 0x02, 0x46, 0xfc, 0xe2, 0x77, 0x40, 0x75, 0x15, 0xf7, 0x1a, 0xe5, 0x54, 0x7b, - 0xee, 0x9c, 0xd7, 0xc8, 0x78, 0x77, 0xdf, 0x8b, 0xfd, 0x54, 0x84, 0xc6, 0x78, 0x1d, 0x81, 0x94, - 0xda, 0x9c, 0xaa, 0xc0, 0x20, 0xc0, 0xb1, 0xdd, 0x3f, 0xa6, 0xb2, 0x1e, 0x63, 0x1a, 0x46, 0xc8, - 0x63, 0xd7, 0x2c, 0x1e, 0x7b, 0x2e, 0xff, 0x96, 0xf4, 0x40, 0xf6, 0xaa, 0xa7, 0xd8, 0xeb, 0xf9, - 0x02, 0xb4, 0x8e, 0xe7, 0xac, 0x03, 0x32, 0xcd, 0x6e, 0x61, 0x8b, 0xd0, 0x94, 0x57, 0x2c, 0x03, - 0xea, 0xc9, 0x94, 0x01, 0x35, 0x6f, 0xa0, 0x1a, 0x66, 0xd4, 0x0b, 0x64, 0x52, 0x84, 0x42, 0xa4, - 0xa3, 0x07, 0x05, 0x2e, 0xc8, 0x72, 0xf7, 0xd7, 0x2a, 0xc4, 0xba, 0xf5, 0xed, 0x7c, 0xa7, 0x44, - 0xa8, 0xd2, 0xc2, 0xae, 0x2e, 0xb4, 0x6a, 0x3d, 0xf4, 0x97, 0xa1, 0x4b, 0xab, 0xd5, 0x6b, 0xd3, - 0xff, 0x36, 0xf7, 0x3a, 0xa1, 0x02, 0xa3, 0x6f, 0xa7, 0xc7, 0xbc, 0xab, 0x85, 0x2f, 0x9b, 0xab, - 0xb3, 0xd0, 0x2b, 0xb4, 0x2f, 0xcb, 0x30, 0x54, 0x2b, 0x30, 0x64, 0xaf, 0x9c, 0xdf, 0x2b, 0x91, - 0x4b, 0xfc, 0xde, 0x73, 0xf1, 0x91, 0x14, 0x32, 0x3c, 0xeb, 0x92, 0xa8, 0x26, 0x87, 0xc1, 0x8a, - 0xab, 0xaf, 0x8b, 0x49, 0xbe, 0x54, 0x1f, 0xae, 0x55, 0x18, 0xb6, 0x9b, 0xee, 0xbf, 0xaa, 0xd0, - 0xf5, 0x4b, 0xe7, 0x53, 0xdf, 0x03, 0x7d, 0xcd, 0x62, 0x93, 0xa7, 0x53, 0x6c, 0x72, 0xc6, 0x42, - 0x7e, 0x30, 0x57, 0x40, 0x13, 0x72, 0x06, 0xcf, 0x1b, 0xaf, 0xf9, 0x5e, 0x94, 0xec, 0xf8, 0x1e, - 0x3b, 0x78, 0x14, 0x8b, 0x60, 0xa8, 0xc3, 0x4c, 0x15, 0x5f, 0xb3, 0x95, 0xa6, 0x06, 0xfd, 0x0d, - 0x38, 0xf7, 0x88, 0xc3, 0x4e, 0x39, 0x23, 0x8f, 0x2a, 0x5d, 0x6c, 0x30, 0x81, 0x70, 0xc8, 0x0e, - 0xd9, 0xec, 0x92, 0x68, 0xd6, 0xd9, 0xea, 0x23, 0x07, 0x19, 0x4d, 0x18, 0x47, 0xd9, 0xe3, 0x45, - 0x8f, 0xb2, 0x27, 0x72, 0x02, 0x77, 0x7f, 0xae, 0x44, 0xce, 0xe2, 0x87, 0xb1, 0x83, 0x3c, 0x63, - 0x27, 0x24, 0xf3, 0x38, 0x82, 0xb6, 0x9f, 0x48, 0x98, 0x58, 0x61, 0x39, 0xba, 0xb4, 0x4d, 0x47, - 0x6b, 0x6c, 0xd7, 0x6d, 0x62, 0x90, 0xa6, 0xee, 0xfe, 0x5a, 0x89, 0xb0, 0x28, 0xb2, 0xd3, 0xd8, - 0xc7, 0xae, 0xda, 0xfb, 0x98, 0x9b, 0x2f, 0x34, 0x06, 0x6c, 0x61, 0xaf, 0x92, 0x05, 0x2c, 0xad, - 0x47, 0xe1, 0xfd, 0x23, 0xa9, 0x5c, 0xe7, 0xfb, 0x66, 0xff, 0x62, 0x89, 0x8b, 0x3b, 0xa5, 0x15, - 0xdf, 0xc3, 0x40, 0x31, 0xfd, 0x1b, 0x17, 0xb2, 0x54, 0x02, 0x97, 0x8b, 0x0b, 0x34, 0xb6, 0xfe, - 0x8d, 0x48, 0xb1, 0x14, 0x41, 0xe8, 0x6f, 0xc3, 0xfd, 0xbb, 0x25, 0xf2, 0xa8, 0x89, 0x68, 0x5c, - 0x17, 0xcb, 0x73, 0x88, 0xd6, 0xc8, 0x54, 0xd8, 0xc5, 0x2c, 0x27, 0xca, 0x02, 0x78, 0x5e, 0xce, - 0xf8, 0x2d, 0x01, 0xa7, 0x2b, 0xf7, 0x9c, 0x49, 0x5d, 0xc2, 0x41, 0xd5, 0x74, 0x5c, 0x32, 0xc1, - 0x2c, 0xd1, 0x58, 0x5c, 0xf4, 0x23, 0xc8, 0xcd, 0xec, 0x18, 0x80, 0x2e, 0x72, 0x5e, 0xe2, 0xfe, - 0x95, 0x12, 0x9f, 0x65, 0xb3, 0xeb, 0xce, 0xd7, 0xc9, 0xc2, 0x01, 0x1a, 0x0b, 0xeb, 0xf7, 0xbb, - 0xb8, 0x85, 0xb0, 0x63, 0xcc, 0x52, 0x11, 0xc1, 0x39, 0x60, 0xb8, 0xab, 0x8b, 0xa2, 0xf7, 0x0b, - 0x37, 0x52, 0x64, 0xa1, 0xaf, 0x21, 0xf7, 0xf7, 0x05, 0xaf, 0x32, 0xad, 0x85, 0x2e, 0xb6, 0x6e, - 0xd8, 0x5a, 0xdb, 0xac, 0x81, 0x98, 0x2b, 0xb5, 0xd8, 0xea, 0x1c, 0x0c, 0xb2, 0x1c, 0xcf, 0xe5, - 0x7c, 0x6a, 0xaa, 0x45, 0x54, 0x61, 0xd9, 0xac, 0xa5, 0x53, 0x75, 0xac, 0xab, 0x12, 0x30, 0xb0, - 0xb0, 0x4e, 0x37, 0x0a, 0x0f, 0x83, 0x16, 0x0b, 0xdb, 0xae, 0xd8, 0x75, 0xea, 0xaa, 0x04, 0x0c, - 0x2c, 0x34, 0xd1, 0x7a, 0x9d, 0x98, 0x0b, 0x70, 0x6f, 0x47, 0x24, 0x42, 0x98, 0xd2, 0x26, 0xda, - 0x3b, 0x66, 0x21, 0xd8, 0xb8, 0xee, 0xf7, 0xab, 0x84, 0x68, 0x15, 0x01, 0x3d, 0x84, 0x53, 0x4d, - 0x8f, 0x2a, 0x48, 0x3c, 0xa3, 0x4b, 0x25, 0xff, 0x7e, 0x8b, 0xae, 0xbc, 0xbc, 0x26, 0x2a, 0x72, - 0xdf, 0xd6, 0xcb, 0x92, 0x41, 0x24, 0x38, 0xd7, 0x9f, 0xa5, 0x5a, 0x76, 0xbe, 0x51, 0x22, 0xd3, - 0x5e, 0x1b, 0xef, 0xc0, 0x26, 0x6c, 0x44, 0xe5, 0x22, 0xce, 0x4a, 0xa3, 0x27, 0x2b, 0xba, 0x2e, - 0xef, 0xcc, 0x2b, 0xf2, 0x54, 0xcb, 0x28, 0xc9, 0xed, 0x8f, 0xd9, 0x05, 0xe7, 0x65, 0xa9, 0x5a, - 0xf2, 0x8f, 0xb2, 0x94, 0x56, 0x2d, 0xab, 0x4c, 0x34, 0x18, 0x5a, 0x25, 0xde, 0x14, 0x31, 0x62, - 0xd8, 0xc7, 0x8a, 0xdc, 0x31, 0xb5, 0x36, 0xcd, 0xbc, 0xeb, 0xfe, 0x78, 0x16, 0xa5, 0x23, 0x5a, - 0xc7, 0x8b, 0x5c, 0xe0, 0x34, 0x74, 0xb7, 0x9c, 0x68, 0xd6, 0x84, 0xcc, 0xb7, 0xec, 0x4d, 0x42, - 0x84, 0x28, 0x5d, 0xce, 0x6f, 0x21, 0xb5, 0xbb, 0xe8, 0x6d, 0x21, 0x55, 0x00, 0xe9, 0x26, 0xe8, - 0x88, 0x58, 0x44, 0xf1, 0x66, 0x67, 0x37, 0x14, 0x51, 0x4a, 0x2f, 0x15, 0xf8, 0xe6, 0x47, 0x31, - 0x15, 0xcf, 0x58, 0x47, 0x6f, 0x03, 0x37, 0x05, 0x15, 0x50, 0xf4, 0xd0, 0x4d, 0xc4, 0x6e, 0x47, - 0xe0, 0x9d, 0xda, 0xca, 0x10, 0x17, 0x45, 0xd8, 0xdd, 0x0a, 0xbd, 0xf9, 0xb2, 0x9f, 0x54, 0x5c, - 0x71, 0x5a, 0x54, 0xaf, 0x17, 0x57, 0x5e, 0xe3, 0xcd, 0xce, 0x3b, 0xb1, 0xcf, 0xee, 0xd1, 0x56, - 0x57, 0x9f, 0xd1, 0x17, 0x63, 0x39, 0x3c, 0x33, 0xa3, 0x8f, 0x55, 0x13, 0xf7, 0x60, 0xf1, 0x5b, - 0x26, 0x0a, 0x5a, 0x24, 0x45, 0x3a, 0x6a, 0xa7, 0x15, 0xd2, 0x93, 0x7d, 0xdb, 0x26, 0x06, 0x69, - 0xea, 0x4b, 0x01, 0x99, 0xb5, 0x56, 0xec, 0x08, 0x9d, 0x9d, 0x6d, 0xb2, 0x90, 0x5e, 0x92, 0x23, - 0xf4, 0x71, 0xfe, 0xd1, 0x18, 0x99, 0xb3, 0x19, 0x03, 0x23, 0x18, 0x0e, 0xe8, 0xa8, 0xe9, 0xf7, - 0x54, 0x09, 0x55, 0x14, 0xff, 0xdf, 0x90, 0x05, 0xa0, 0x71, 0x58, 0x6a, 0x19, 0x56, 0xfd, 0x9d, - 0x77, 0xfa, 0x85, 0x77, 0x43, 0x95, 0x80, 0x81, 0x85, 0x0a, 0xdb, 0x4e, 0x18, 0x26, 0x4a, 0x70, - 0x2b, 0x9e, 0x59, 0x65, 0x50, 0x10, 0xa5, 0x28, 0xb0, 0xef, 0xe2, 0x80, 0xda, 0xb6, 0xbf, 0x4b, - 0x09, 0xec, 0xeb, 0x66, 0x21, 0xd8, 0xb8, 0xb8, 0x01, 0x85, 0x31, 0x63, 0x42, 0xa1, 0x16, 0xea, - 0x58, 0x9c, 0x06, 0xbf, 0x2d, 0x24, 0xcb, 0x9d, 0x2f, 0x93, 0x47, 0xd5, 0xe5, 0x1e, 0xe0, 0xfe, - 0x43, 0xd9, 0xe2, 0x84, 0x65, 0xdb, 0x3d, 0xba, 0x96, 0x8d, 0x06, 0x83, 0xea, 0xe3, 0x11, 0xaf, - 0x50, 0xe9, 0x24, 0xc5, 0x49, 0xfb, 0x88, 0xf7, 0xba, 0x55, 0x0a, 0x29, 0x6c, 0xaa, 0x4f, 0x2c, - 0x20, 0x84, 0xa9, 0x52, 0x92, 0x02, 0xbf, 0xa4, 0xa4, 0x76, 0xe6, 0xeb, 0xa9, 0x72, 0xe8, 0xab, - 0x81, 0xae, 0x43, 0xae, 0x5b, 0xa0, 0x05, 0xc3, 0xbe, 0x83, 0x88, 0x2a, 0x54, 0x8b, 0xe0, 0x96, - 0x5d, 0x0c, 0x69, 0x7c, 0x3c, 0x23, 0xf7, 0x22, 0xfa, 0xd1, 0x13, 0xaa, 0x22, 0xf4, 0x22, 0x7e, - 0x43, 0xdd, 0x38, 0x23, 0x5f, 0x31, 0xca, 0xc0, 0xc2, 0x74, 0x3f, 0x20, 0x67, 0x33, 0x82, 0x97, - 0x91, 0x71, 0x28, 0x83, 0xca, 0x31, 0xa5, 0xa2, 0x71, 0xf0, 0xc6, 0x8a, 0x18, 0x8d, 0x81, 0x85, - 0xdc, 0xc9, 0x1c, 0xa7, 0x46, 0x4e, 0x2f, 0xc5, 0x9d, 0x1b, 0xb2, 0x00, 0x34, 0x8e, 0xfb, 0x2d, - 0xba, 0x6b, 0x6b, 0x37, 0x43, 0x81, 0x18, 0x0c, 0x3a, 0x4c, 0x99, 0xa6, 0xce, 0x48, 0x99, 0xa5, - 0x86, 0x79, 0xd5, 0x28, 0x03, 0x0b, 0x13, 0xfb, 0xd6, 0x91, 0x4e, 0x93, 0x74, 0xec, 0x8f, 0xf2, - 0xa6, 0x80, 0xc6, 0x41, 0x1f, 0x5f, 0xec, 0xb7, 0x77, 0xb7, 0x82, 0xce, 0x5d, 0xc1, 0xd8, 0x4a, - 0x2a, 0x37, 0x04, 0x1c, 0x14, 0x86, 0xf3, 0x16, 0xa9, 0xf4, 0x82, 0x96, 0x60, 0xe5, 0x65, 0xa9, - 0x77, 0xd2, 0xd5, 0x44, 0x25, 0xe6, 0x93, 0xd9, 0xb9, 0xf7, 0xd0, 0x8c, 0x8c, 0x97, 0x71, 0xf1, - 0x61, 0xd5, 0x2c, 0xff, 0xf1, 0xc4, 0x90, 0xfe, 0x63, 0xfa, 0xcd, 0xc4, 0x98, 0x25, 0x27, 0x57, - 0xf4, 0x37, 0xbb, 0xaa, 0x4a, 0xc0, 0xc0, 0x42, 0x63, 0xb4, 0x49, 0x0d, 0x30, 0x69, 0xad, 0xf1, - 0xc8, 0xda, 0xa9, 0x8f, 0x61, 0x8c, 0xae, 0xa5, 0xa9, 0x41, 0x7f, 0x03, 0x4e, 0x97, 0x9c, 0x69, - 0xe1, 0x3a, 0xb2, 0x5a, 0xad, 0x9e, 0x20, 0x9e, 0x17, 0x5b, 0xac, 0xa5, 0x29, 0x41, 0x3f, 0x71, - 0xe7, 0xab, 0x64, 0x49, 0x02, 0xfb, 0xaf, 0xef, 0xb1, 0xe5, 0x52, 0x59, 0x7d, 0x82, 0x52, 0x5b, - 0xaa, 0x0d, 0xc4, 0x82, 0x63, 0x28, 0x38, 0xef, 0x92, 0x09, 0x76, 0xe2, 0x10, 0x2f, 0x4e, 0xb3, - 0xdd, 0xee, 0xd5, 0xa2, 0x0e, 0xb7, 0x65, 0x76, 0x6e, 0x21, 0x02, 0x12, 0xf5, 0x29, 0x0e, 0x03, - 0x82, 0xa0, 0x49, 0xe7, 0x6b, 0xda, 0xeb, 0x74, 0xc2, 0xc4, 0xe3, 0x4a, 0xd8, 0x4c, 0x11, 0x3d, - 0xd2, 0x68, 0x62, 0x45, 0xd7, 0xe5, 0xed, 0xa8, 0xe8, 0x28, 0xa3, 0x04, 0xcc, 0x26, 0x70, 0x1b, - 0x0f, 0xef, 0xa1, 0xc0, 0x94, 0x4e, 0xf7, 0x78, 0x71, 0xb6, 0xc8, 0x36, 0x7e, 0xcb, 0xaa, 0x64, - 0x48, 0x30, 0x9b, 0x18, 0xa4, 0xa9, 0x63, 0xb8, 0xad, 0xe1, 0x47, 0x9d, 0xd3, 0xe1, 0xb6, 0xda, - 0x8f, 0x6a, 0xba, 0x4d, 0x97, 0xde, 0x24, 0xd3, 0xc6, 0xcc, 0x0d, 0x13, 0xa0, 0xb9, 0xf4, 0x05, - 0xba, 0x8d, 0xa7, 0x66, 0x64, 0xa8, 0x00, 0xcf, 0xff, 0x59, 0x26, 0xf3, 0x19, 0x47, 0x12, 0x77, - 0x03, 0x16, 0xc2, 0x6c, 0xc9, 0xae, 0xeb, 0x14, 0x06, 0xac, 0xc4, 0x96, 0x40, 0xe5, 0x02, 0x12, - 0x48, 0x8a, 0xc3, 0xca, 0x40, 0x71, 0x28, 0xa4, 0xce, 0xd8, 0xc9, 0xa5, 0x8e, 0x2d, 0xe6, 0xc7, - 0x0b, 0x89, 0xf9, 0x07, 0x20, 0xa9, 0xac, 0x9d, 0x62, 0xb2, 0xc0, 0x4e, 0xf1, 0x51, 0x89, 0xcc, - 0xd9, 0x2c, 0x54, 0x60, 0xc6, 0x1f, 0xd6, 0x09, 0x5c, 0x66, 0x16, 0x55, 0x12, 0x85, 0xed, 0xb6, - 0x1f, 0x89, 0x90, 0xaf, 0x39, 0x61, 0x20, 0x09, 0x28, 0x18, 0x18, 0xee, 0x2f, 0x95, 0xc9, 0x82, - 0x8e, 0xff, 0x15, 0x79, 0x37, 0x47, 0xe7, 0xe3, 0xdf, 0xb6, 0x7c, 0xfc, 0x79, 0xe9, 0x34, 0x53, - 0xfd, 0x1a, 0xe8, 0xef, 0x7f, 0x37, 0xe5, 0xef, 0x7f, 0x75, 0x48, 0xba, 0xc7, 0xfb, 0xfe, 0xff, - 0x49, 0x99, 0x9c, 0x4f, 0x57, 0x59, 0x6b, 0x7b, 0xc1, 0xc1, 0x08, 0xe7, 0xe9, 0xcb, 0xd6, 0x3c, - 0xbd, 0x3e, 0xdc, 0x78, 0x58, 0xe7, 0x06, 0x4e, 0x96, 0x97, 0x9a, 0xac, 0x37, 0x4f, 0x42, 0xfc, - 0xf8, 0x19, 0xfb, 0x8f, 0x25, 0xf2, 0x58, 0x66, 0xbd, 0xd3, 0xf0, 0x65, 0x7e, 0xc9, 0xf6, 0x65, - 0xbe, 0x72, 0x82, 0xe1, 0x0d, 0x70, 0x6e, 0xfe, 0xb7, 0xf2, 0x80, 0x61, 0x31, 0xb7, 0xd7, 0x2d, - 0xba, 0x8f, 0x36, 0xe9, 0x6e, 0x13, 0x63, 0x90, 0xa3, 0x3c, 0xad, 0xbb, 0xc8, 0x36, 0x42, 0x0d, - 0xa6, 0x6b, 0x7f, 0x29, 0x4d, 0x42, 0x17, 0x83, 0x49, 0xc1, 0x4e, 0x72, 0x55, 0x1e, 0x51, 0x92, - 0x2b, 0x2a, 0x63, 0x0e, 0x95, 0xb9, 0x9d, 0xf6, 0xa6, 0x19, 0x86, 0xb8, 0x81, 0x45, 0xf5, 0x1d, - 0x54, 0x4e, 0x79, 0xac, 0xc3, 0x58, 0xee, 0x82, 0xb3, 0x3e, 0xa0, 0x19, 0x38, 0xc1, 0x2f, 0x31, - 0x2a, 0xd7, 0xa3, 0xa2, 0xe9, 0x7e, 0xab, 0x42, 0x3e, 0x79, 0x0c, 0xdb, 0xd1, 0x4d, 0xc2, 0x3a, - 0xc2, 0x7c, 0x31, 0xed, 0x67, 0x5a, 0xca, 0xac, 0x6c, 0x39, 0x9e, 0x52, 0x1f, 0xab, 0xfc, 0xb1, - 0x3f, 0xd6, 0x2f, 0x9a, 0x5e, 0x41, 0x1e, 0xb3, 0x78, 0xf5, 0xc4, 0x0b, 0xeb, 0xc1, 0xb9, 0x09, - 0x4f, 0xd1, 0x83, 0x81, 0x39, 0x94, 0x9f, 0xce, 0x1c, 0x94, 0x15, 0x29, 0x81, 0x77, 0xbe, 0x10, - 0x68, 0x5c, 0x2a, 0xd1, 0x77, 0xbe, 0x64, 0x01, 0x68, 0x1c, 0x2b, 0x20, 0xa2, 0x9c, 0x1b, 0x10, - 0xf1, 0x6f, 0x4b, 0xe4, 0x5c, 0xba, 0x13, 0xa7, 0x21, 0x75, 0x1a, 0xb6, 0xd4, 0x59, 0x1e, 0xee, - 0xdb, 0x0f, 0x10, 0x38, 0xff, 0x89, 0x90, 0x47, 0xfa, 0x36, 0x2b, 0x3e, 0x8d, 0x3f, 0x5d, 0x22, - 0x67, 0xf6, 0x98, 0xa1, 0x60, 0x5c, 0xdd, 0x11, 0x03, 0xcb, 0xb9, 0xb7, 0x74, 0xec, 0x8d, 0x1f, - 0x6e, 0xf6, 0xf4, 0xa1, 0x40, 0x7f, 0x63, 0xce, 0xcf, 0xd3, 0xa9, 0xf6, 0xee, 0xc5, 0x7d, 0x49, - 0xdc, 0x05, 0x1f, 0x7d, 0x21, 0xc7, 0x27, 0x97, 0x93, 0xfe, 0x7d, 0x75, 0x11, 0x83, 0x3e, 0xb3, - 0xb0, 0x20, 0xb3, 0x55, 0xaa, 0x04, 0xf0, 0x74, 0x5f, 0xa8, 0xf6, 0x15, 0xba, 0x4c, 0x96, 0x75, - 0x91, 0x80, 0xcb, 0x24, 0x59, 0x02, 0x8a, 0xa2, 0xf3, 0x1e, 0xa9, 0xee, 0xc9, 0xdb, 0x3a, 0x42, - 0xe8, 0xe5, 0xec, 0x2c, 0x99, 0x97, 0x7b, 0x78, 0xb8, 0xba, 0x2a, 0x02, 0x4d, 0xd4, 0xb9, 0x46, - 0x2a, 0x9d, 0xdd, 0x58, 0x5c, 0xa0, 0xcd, 0x0b, 0x88, 0xb1, 0xc3, 0x8f, 0xf8, 0x95, 0x40, 0x0a, - 0x04, 0x24, 0x81, 0x94, 0xa2, 0x9d, 0x96, 0x70, 0x46, 0xe7, 0x50, 0x82, 0xd5, 0x5a, 0x3f, 0x25, - 0x0a, 0x04, 0x24, 0xc1, 0x22, 0xef, 0xf0, 0xe2, 0x81, 0xf0, 0x34, 0xe7, 0xdc, 0xae, 0xee, 0xbb, - 0x5e, 0xc1, 0x73, 0xc3, 0x31, 0x30, 0x70, 0x42, 0xe8, 0x62, 0x6e, 0xb2, 0x5c, 0xce, 0xc2, 0x11, - 0x90, 0x97, 0xe1, 0xb7, 0x2f, 0xef, 0x33, 0x3f, 0x11, 0xe3, 0x70, 0x10, 0xb4, 0x18, 0x55, 0xbf, - 0xbb, 0xbf, 0x1b, 0x0b, 0x43, 0x3f, 0x8f, 0x6a, 0x5f, 0x56, 0x6e, 0x41, 0x95, 0xc1, 0x41, 0xd0, - 0x72, 0x6a, 0xa4, 0xbc, 0xdb, 0x14, 0x09, 0x19, 0x73, 0x4c, 0x53, 0xfb, 0x7e, 0xe7, 0xea, 0x04, - 0x86, 0xc2, 0x6d, 0xac, 0x01, 0xad, 0x4f, 0xf5, 0x91, 0xc9, 0x5d, 0x7e, 0x65, 0x4f, 0x24, 0x5f, - 0xbc, 0x9c, 0x77, 0xad, 0xb0, 0xef, 0x7e, 0x1f, 0xbf, 0x92, 0x20, 0x0a, 0x40, 0x92, 0xa3, 0xfb, - 0x30, 0xd9, 0x55, 0x77, 0x10, 0x45, 0xf6, 0xc5, 0xe5, 0xe1, 0xee, 0x2c, 0x0a, 0x33, 0x58, 0x41, - 0xc1, 0xa0, 0x88, 0x3c, 0xef, 0xc9, 0x74, 0xf4, 0x2c, 0xf3, 0x62, 0x2e, 0xcf, 0x67, 0x66, 0xaf, - 0xe7, 0x3c, 0xaf, 0x8a, 0x40, 0x13, 0x75, 0x7a, 0x64, 0xf6, 0x30, 0xee, 0xee, 0xfb, 0x72, 0xe9, - 0xb3, 0x74, 0x8c, 0xd3, 0x57, 0x3e, 0x9f, 0x93, 0x63, 0x53, 0x54, 0x09, 0xa2, 0xa4, 0xe7, 0xb5, - 0xfb, 0x24, 0x18, 0xcb, 0x6b, 0x74, 0xdb, 0x24, 0x0b, 0x76, 0x2b, 0xee, 0xef, 0x8f, 0xf7, 0x6f, - 0x12, 0x4c, 0x87, 0xfb, 0x85, 0xfe, 0xb3, 0xbd, 0xb7, 0x86, 0xb7, 0x51, 0x1e, 0xe0, 0x29, 0x1f, - 0x95, 0xb1, 0x8f, 0x74, 0x33, 0x77, 0x00, 0x21, 0x65, 0x87, 0x35, 0x75, 0xf8, 0x14, 0xa9, 0x04, - 0x9a, 0xd9, 0xe5, 0x30, 0xa0, 0xcd, 0xb4, 0xda, 0x54, 0xf9, 0xd8, 0x6a, 0xd3, 0x1d, 0x3a, 0xdf, - 0xb8, 0xd3, 0xeb, 0x0c, 0x0e, 0x43, 0x26, 0x3d, 0x60, 0xf2, 0x7a, 0x4d, 0x90, 0x00, 0x45, 0x0c, - 0x27, 0xee, 0xf1, 0xf4, 0x20, 0xc0, 0x67, 0xc5, 0x22, 0xf3, 0x27, 0xb7, 0xa7, 0x37, 0xc4, 0x4c, - 0x3c, 0x5e, 0x3f, 0x0e, 0xf9, 0xa3, 0x3c, 0x04, 0x38, 0xbe, 0xb1, 0xd3, 0x54, 0xc3, 0xfe, 0x61, - 0x29, 0x43, 0x69, 0xe0, 0x8a, 0xf3, 0xe7, 0x6d, 0xc5, 0xf9, 0xb9, 0xb4, 0xe2, 0xdc, 0x67, 0xe6, - 0x5a, 0x3a, 0x73, 0xf1, 0xec, 0x77, 0x45, 0x53, 0x4c, 0xb8, 0xff, 0xbb, 0x44, 0x2a, 0xf5, 0xb0, - 0x35, 0x42, 0x43, 0xfa, 0xaa, 0x65, 0x48, 0x3f, 0x9b, 0xfb, 0x6e, 0xc9, 0x40, 0xb3, 0xf9, 0x56, - 0xca, 0x6c, 0xfe, 0x4c, 0x3e, 0xa9, 0xe3, 0x8d, 0xe4, 0x0f, 0x2b, 0xc4, 0x7c, 0x79, 0xc5, 0xf9, - 0x9d, 0x93, 0x84, 0xf8, 0x55, 0x8a, 0x3d, 0xc6, 0x22, 0xda, 0x60, 0x01, 0x31, 0xf2, 0xfe, 0xcf, - 0x9f, 0xd8, 0x48, 0xbf, 0x3b, 0x7e, 0xb0, 0xb7, 0x9f, 0xf8, 0xad, 0xf4, 0xc0, 0x4e, 0x2f, 0xd2, - 0xef, 0xbf, 0x97, 0xc8, 0x7c, 0xaa, 0x75, 0xe7, 0x20, 0xeb, 0x0a, 0xc1, 0x49, 0x2d, 0xe3, 0x33, - 0xb9, 0x97, 0x0e, 0x96, 0x09, 0x51, 0xde, 0x5c, 0x69, 0xbf, 0xb2, 0xbd, 0x5c, 0xb9, 0x7b, 0x63, - 0x30, 0x30, 0x30, 0x43, 0x40, 0x12, 0x76, 0xc3, 0x76, 0xb8, 0x77, 0x74, 0xdd, 0x97, 0x37, 0xd4, - 0x95, 0xab, 0x7e, 0x5b, 0x17, 0x81, 0x89, 0x87, 0xd9, 0x8b, 0xd2, 0x0f, 0xf7, 0xfc, 0x29, 0xa3, - 0xfe, 0xc9, 0x61, 0xd4, 0xdf, 0x2d, 0x91, 0x05, 0x6c, 0x9d, 0xc5, 0x33, 0xc8, 0x78, 0x3c, 0x95, - 0x46, 0xba, 0x74, 0x4c, 0x1a, 0x69, 0xbc, 0xd0, 0x90, 0xb4, 0xc2, 0x9e, 0x4c, 0x6d, 0x62, 0x48, - 0x31, 0x84, 0x82, 0x28, 0x15, 0x78, 0xb4, 0x4f, 0xe2, 0xb2, 0x82, 0x89, 0x47, 0xa1, 0x20, 0x4a, - 0x65, 0x96, 0xe9, 0xb1, 0xec, 0x2c, 0xd3, 0x3c, 0x13, 0x8c, 0x38, 0x47, 0x17, 0x3b, 0xb3, 0x91, - 0x09, 0x46, 0x1e, 0xb0, 0x6b, 0x1c, 0xf7, 0x9f, 0x55, 0xc8, 0x0c, 0x86, 0x93, 0xa9, 0x58, 0xdb, - 0x57, 0xad, 0x58, 0xdb, 0xa7, 0x52, 0xb1, 0xb6, 0x0b, 0x26, 0xee, 0x83, 0x09, 0xb5, 0x15, 0x39, - 0x83, 0x58, 0x1e, 0xf4, 0x93, 0x86, 0xd9, 0x5a, 0x39, 0x83, 0x14, 0x25, 0xb0, 0x09, 0xff, 0x48, - 0x85, 0xd7, 0xfe, 0x71, 0x89, 0xcc, 0xd1, 0x6f, 0x81, 0x2c, 0xfa, 0xa3, 0xc4, 0x8f, 0x66, 0xa6, - 0xa1, 0x89, 0x63, 0x32, 0x0d, 0xfd, 0x6a, 0x89, 0x60, 0x14, 0xe4, 0x69, 0x78, 0xa4, 0x36, 0x6c, - 0x8f, 0xd4, 0xd3, 0xb9, 0xc2, 0x77, 0x80, 0x13, 0xea, 0x37, 0x2a, 0x64, 0x16, 0xbb, 0x1c, 0xee, - 0xc9, 0x0f, 0x66, 0x4d, 0x4e, 0xa9, 0xc0, 0xe4, 0x60, 0xb6, 0x82, 0xb0, 0xdd, 0x0e, 0xef, 0xa5, - 0x3f, 0xde, 0x06, 0x83, 0x82, 0x28, 0x45, 0x57, 0x5f, 0x17, 0x33, 0xaa, 0x84, 0xbd, 0x38, 0x7d, - 0xf7, 0xa9, 0x2e, 0xe0, 0xa0, 0x30, 0xe8, 0x8a, 0x9f, 0x89, 0x03, 0x6a, 0x03, 0xc8, 0x83, 0xf6, - 0x31, 0x76, 0xd0, 0xce, 0x13, 0xba, 0x19, 0x70, 0xb0, 0xb0, 0xa8, 0xaa, 0x59, 0x65, 0xbf, 0xd9, - 0x1a, 0x3a, 0x41, 0xea, 0x6b, 0x9e, 0x6d, 0x48, 0x52, 0x00, 0x4d, 0x0c, 0x5d, 0xe9, 0x89, 0x8c, - 0x09, 0x88, 0xc5, 0xd1, 0x9b, 0x52, 0x4e, 0x55, 0xb4, 0x00, 0x26, 0x76, 0x52, 0xff, 0x3b, 0x2f, - 0x62, 0x1e, 0xd3, 0xa0, 0xbd, 0x85, 0x4f, 0x2a, 0x88, 0xa8, 0x0a, 0x91, 0x98, 0x54, 0x00, 0x41, - 0x97, 0xe3, 0x9e, 0xcf, 0x6e, 0x5e, 0xf2, 0xc4, 0xfa, 0x53, 0x0c, 0x9b, 0xed, 0xf9, 0x5b, 0x0a, - 0x0a, 0x06, 0x86, 0xfb, 0x0a, 0xdb, 0xbb, 0x87, 0x8c, 0xc5, 0xfe, 0x5e, 0x99, 0x38, 0x75, 0x16, - 0x7b, 0x60, 0xbd, 0x3d, 0xb0, 0x4f, 0xe6, 0x62, 0x6a, 0xac, 0x76, 0x7a, 0xf7, 0x05, 0xa9, 0x62, - 0xd1, 0xef, 0x8d, 0x75, 0xb3, 0x0e, 0xbf, 0x6d, 0x68, 0xc3, 0x20, 0x45, 0x17, 0xa7, 0x24, 0xea, - 0x75, 0x56, 0x62, 0x7c, 0xc4, 0x4c, 0xbc, 0x1e, 0xc0, 0xa6, 0x04, 0x24, 0x10, 0x74, 0x39, 0xf2, - 0x00, 0xfb, 0x71, 0x93, 0x4a, 0xa3, 0x30, 0x4c, 0x24, 0xd7, 0xb0, 0x54, 0xd2, 0x06, 0x1c, 0x2c, - 0x2c, 0xcc, 0xc2, 0x1c, 0xf7, 0xba, 0xdd, 0x36, 0x3b, 0x21, 0xf1, 0xda, 0x57, 0xa3, 0xb0, 0xd7, - 0xe5, 0xe1, 0xa7, 0x22, 0x0b, 0x73, 0xa3, 0xaf, 0x14, 0x32, 0x6a, 0xe0, 0xa2, 0xdf, 0x8d, 0xd9, - 0xff, 0xe2, 0x36, 0x25, 0xf7, 0xd3, 0x34, 0x18, 0x08, 0x64, 0x99, 0xdb, 0x63, 0x5b, 0x15, 0xcb, - 0xea, 0x8e, 0x61, 0x51, 0x8e, 0x4f, 0x66, 0xbb, 0x6c, 0x3b, 0x92, 0xc7, 0xb4, 0x85, 0xa6, 0x32, - 0x15, 0xfd, 0xc0, 0xb3, 0x37, 0x9b, 0x64, 0xc0, 0xa6, 0xea, 0xfe, 0x7b, 0xc2, 0x64, 0x8d, 0x38, - 0x9c, 0x9a, 0x14, 0xb1, 0x8d, 0x42, 0x17, 0x7b, 0xa6, 0xc8, 0x33, 0x26, 0x5a, 0x8e, 0x8b, 0x48, - 0x49, 0x90, 0x54, 0x9c, 0xaf, 0xf0, 0x73, 0x66, 0xb6, 0xbe, 0x8b, 0xbf, 0x2d, 0xc4, 0xf1, 0xad, - 0xa8, 0x5d, 0x41, 0x02, 0x0c, 0x72, 0xce, 0x16, 0x99, 0x15, 0xa9, 0xbf, 0x85, 0xad, 0x5e, 0xb1, - 0xec, 0xd5, 0x59, 0x30, 0x0b, 0x3f, 0x4a, 0x03, 0xc0, 0xae, 0xec, 0xec, 0x91, 0xc7, 0x8d, 0xf7, - 0x40, 0x32, 0x22, 0x74, 0xb8, 0xe0, 0x78, 0x1a, 0xbd, 0x00, 0xdb, 0xc7, 0x21, 0xc2, 0xf1, 0x74, - 0xe8, 0x24, 0x9f, 0xf7, 0x9a, 0x49, 0x70, 0xe8, 0xd7, 0x7c, 0xaf, 0x45, 0xb5, 0x32, 0xdf, 0xbe, - 0x6a, 0xfb, 0x18, 0x6d, 0xe0, 0xfc, 0x4a, 0x16, 0x02, 0x64, 0xd7, 0xa3, 0xf6, 0x7a, 0xb5, 0xd5, - 0x89, 0xc5, 0x1c, 0x4c, 0x58, 0x4f, 0x9f, 0x54, 0x6b, 0x37, 0x1b, 0x6a, 0xfc, 0xfa, 0x07, 0xe8, - 0x0a, 0xce, 0xfb, 0xfc, 0xf5, 0x51, 0x65, 0x90, 0xf0, 0x27, 0x77, 0x5e, 0x2f, 0x64, 0x02, 0x5b, - 0xb7, 0x02, 0xb8, 0x1b, 0x4b, 0x45, 0xc2, 0x59, 0x17, 0x06, 0xac, 0x26, 0x9c, 0x1f, 0xa7, 0x0b, - 0xcb, 0x8f, 0xf0, 0x55, 0xcd, 0x95, 0x26, 0x4b, 0x65, 0xc8, 0x4e, 0x79, 0xa6, 0xac, 0x70, 0x70, - 0xa7, 0xd1, 0x87, 0x01, 0x19, 0xb5, 0x9c, 0x6b, 0x28, 0x71, 0x4c, 0xa8, 0x08, 0x5c, 0x94, 0xaa, - 0xdd, 0x62, 0xcd, 0xc7, 0x6c, 0xe5, 0xf8, 0xf0, 0x82, 0x4d, 0x11, 0x52, 0xf5, 0x70, 0x5b, 0x51, - 0x29, 0x9a, 0x89, 0x1d, 0x6e, 0xd7, 0x9f, 0xa6, 0x19, 0x2d, 0x25, 0xf4, 0xfa, 0xdf, 0xf4, 0x13, - 0x7c, 0x07, 0x89, 0xf9, 0x6c, 0xa7, 0x8c, 0x94, 0x4f, 0xba, 0x08, 0x4c, 0x3c, 0xd4, 0x81, 0xd8, - 0x61, 0xc1, 0x66, 0x8d, 0x79, 0x62, 0xa7, 0xf4, 0xda, 0xb9, 0xc6, 0xc1, 0x20, 0xcb, 0x25, 0xea, - 0x66, 0x7d, 0x8d, 0x79, 0x55, 0x53, 0xa8, 0x14, 0x0c, 0xb2, 0x1c, 0x43, 0xa5, 0xd2, 0x0f, 0xcc, - 0xcc, 0x15, 0xf1, 0x70, 0xf7, 0x4b, 0xf0, 0x82, 0x6f, 0xcc, 0xdc, 0x27, 0x0b, 0xea, 0x91, 0x1b, - 0x9e, 0x53, 0x2f, 0x5e, 0x9c, 0x2f, 0xf2, 0xf6, 0x69, 0x66, 0x6a, 0x3e, 0x15, 0xa9, 0xba, 0x99, - 0xa2, 0x09, 0x7d, 0xad, 0x58, 0x57, 0xc6, 0x17, 0x72, 0xd3, 0x6e, 0xe3, 0x1b, 0x33, 0xbd, 0x9d, - 0x56, 0x78, 0x40, 0x45, 0x06, 0x7b, 0xe6, 0xc6, 0x7c, 0xdd, 0x54, 0x16, 0x80, 0xc6, 0x59, 0xfa, - 0x22, 0x39, 0xd3, 0xc7, 0xd3, 0x43, 0x45, 0x66, 0xfd, 0xc2, 0x18, 0xa9, 0x2a, 0xaf, 0x0e, 0x6d, - 0xdf, 0x72, 0xa5, 0x3d, 0x96, 0x76, 0xa5, 0x4d, 0xe1, 0xce, 0x6b, 0x7a, 0xcf, 0xbe, 0x9a, 0xf1, - 0xbc, 0xe1, 0x85, 0xdc, 0x8f, 0x58, 0xfc, 0xa6, 0xc3, 0x10, 0x8f, 0x3f, 0x6a, 0xb5, 0x7e, 0xec, - 0x58, 0xb5, 0xbe, 0xe0, 0xeb, 0x35, 0xa8, 0xc0, 0xd3, 0x9d, 0x87, 0xa2, 0xa5, 0x5e, 0x66, 0xa8, - 0x23, 0x10, 0x78, 0x19, 0xd3, 0xbb, 0x50, 0x28, 0x33, 0xbd, 0x6b, 0xf2, 0xa4, 0x7a, 0x97, 0xa4, - 0x00, 0x9a, 0x18, 0x66, 0x15, 0x6f, 0xda, 0x2f, 0x6d, 0xa8, 0x0b, 0x0c, 0x17, 0x87, 0x78, 0xe9, - 0xa2, 0x67, 0x64, 0x15, 0x5f, 0x4b, 0xd3, 0x83, 0xfe, 0x26, 0xf0, 0xb6, 0xf9, 0xbc, 0x62, 0x08, - 0xba, 0x03, 0x61, 0xde, 0x9e, 0xd1, 0x39, 0x32, 0x6f, 0x59, 0x96, 0xea, 0x03, 0xf0, 0x3f, 0xfe, - 0x76, 0x89, 0xf9, 0x1f, 0xb7, 0xfd, 0x83, 0x6e, 0x1b, 0x9f, 0xef, 0x18, 0x5d, 0xd7, 0xbf, 0x42, - 0xa6, 0x12, 0xd1, 0x4a, 0xb1, 0xcc, 0xc6, 0x46, 0xb7, 0x98, 0x3f, 0x56, 0x09, 0x02, 0x09, 0x05, - 0x45, 0xd0, 0xfd, 0x97, 0xfc, 0x2b, 0xc8, 0x92, 0xd3, 0xb0, 0xac, 0x6e, 0xda, 0x96, 0xd5, 0x0b, - 0x85, 0x07, 0x33, 0xc0, 0xc2, 0xfa, 0x96, 0x3d, 0x04, 0xa6, 0xb0, 0x3d, 0xfc, 0x1e, 0x71, 0xf7, - 0x06, 0xb1, 0x5f, 0x0f, 0xa1, 0xea, 0x0a, 0x8b, 0x78, 0xe4, 0x12, 0xf1, 0xc2, 0x90, 0xd1, 0x8e, - 0xee, 0xaf, 0x97, 0xc9, 0xb9, 0xac, 0x07, 0xb4, 0x9d, 0x16, 0x99, 0xe9, 0x1a, 0xea, 0x73, 0xb1, - 0x8b, 0xed, 0xa6, 0xc2, 0xad, 0x55, 0x17, 0x13, 0x0a, 0x16, 0x55, 0xcc, 0x27, 0x8e, 0xcf, 0x81, - 0x2b, 0xf7, 0x4a, 0x79, 0x78, 0x11, 0xa5, 0x9a, 0x59, 0x37, 0x08, 0x81, 0x45, 0x76, 0x04, 0xc9, - 0xb7, 0xdd, 0xbf, 0x57, 0x22, 0x8f, 0x0e, 0xb8, 0xfd, 0x8e, 0xcd, 0xdd, 0x63, 0x5e, 0x48, 0xf1, - 0x3a, 0x8d, 0x6a, 0x8e, 0xfb, 0x26, 0x41, 0x94, 0x3a, 0x3b, 0x78, 0xa9, 0x52, 0x3d, 0xd9, 0x59, - 0x2e, 0x72, 0x94, 0xdc, 0x77, 0xd3, 0xd6, 0xb8, 0x84, 0xa9, 0x1e, 0xe9, 0x34, 0xa8, 0xba, 0xdf, - 0xac, 0x90, 0x71, 0xfe, 0x6a, 0x60, 0x9d, 0x2a, 0x40, 0x3c, 0xd9, 0xde, 0x70, 0xb9, 0xfe, 0xb4, - 0x9e, 0xc4, 0x01, 0x20, 0xc9, 0x38, 0x37, 0xc8, 0x59, 0xf4, 0xaf, 0x06, 0x5e, 0xbb, 0xe6, 0xb7, - 0xbd, 0x23, 0xa9, 0x78, 0xf3, 0x84, 0xc9, 0x32, 0x27, 0xe8, 0xd9, 0xcd, 0x7e, 0x14, 0xc8, 0xaa, - 0x87, 0x77, 0x77, 0x52, 0xd9, 0x72, 0x78, 0x12, 0x43, 0x75, 0x77, 0xe7, 0xf8, 0x8c, 0x39, 0x78, - 0x7d, 0xa9, 0xdb, 0x67, 0x62, 0x18, 0xcf, 0xcd, 0xd9, 0x66, 0x85, 0x8d, 0x8b, 0x17, 0x7f, 0xe2, - 0x1e, 0x3b, 0x23, 0xdd, 0xde, 0xa7, 0x96, 0xcc, 0x7e, 0xd8, 0x6e, 0x89, 0x67, 0x92, 0x94, 0x3a, - 0xd5, 0x48, 0x95, 0x43, 0x5f, 0x0d, 0xa4, 0xb2, 0xeb, 0x05, 0x6d, 0xca, 0xda, 0x9a, 0xca, 0x84, - 0x4d, 0x65, 0x23, 0x55, 0x0e, 0x7d, 0x35, 0x30, 0x0f, 0xf4, 0x7c, 0x2a, 0x44, 0x04, 0x15, 0xb5, - 0xd4, 0x03, 0xe6, 0xcc, 0xde, 0xc6, 0xe0, 0x89, 0x8c, 0x47, 0xcc, 0x9f, 0xb3, 0xdf, 0x37, 0xd5, - 0xb1, 0x5b, 0xab, 0x35, 0xeb, 0xe5, 0xa6, 0xa2, 0x79, 0xac, 0x3f, 0x8d, 0x49, 0x66, 0xd5, 0x43, - 0x7c, 0x8a, 0x23, 0x28, 0xb9, 0x3a, 0x05, 0x03, 0x2b, 0xa4, 0x86, 0x39, 0x7f, 0x17, 0x3d, 0xe5, - 0xb9, 0x03, 0xaf, 0x15, 0xc6, 0xc6, 0xe3, 0xe8, 0x74, 0x91, 0x51, 0x9d, 0x0f, 0x5d, 0xe6, 0x69, - 0xbf, 0xe5, 0x75, 0x0e, 0x06, 0x59, 0x6e, 0xe7, 0xaa, 0x9e, 0x1c, 0x71, 0xae, 0xea, 0xa9, 0xdc, - 0x30, 0xb7, 0x5f, 0xa1, 0x5b, 0x06, 0x4b, 0xd0, 0x25, 0xee, 0x0c, 0xa2, 0x07, 0x7c, 0x74, 0x5b, - 0x06, 0xbe, 0xec, 0x85, 0x8d, 0xa5, 0xd3, 0xd3, 0xb2, 0x1e, 0x00, 0x2f, 0xc3, 0x74, 0x9f, 0xac, - 0x69, 0xfc, 0x7c, 0x33, 0x3c, 0xdd, 0xa7, 0x7e, 0xef, 0x99, 0x05, 0x51, 0x83, 0xdf, 0xa5, 0x86, - 0x29, 0xeb, 0xac, 0x76, 0x53, 0x3c, 0x2c, 0x41, 0xd4, 0x99, 0x9d, 0x7b, 0x50, 0x41, 0xd4, 0xd9, - 0xc4, 0xf3, 0x83, 0xa8, 0x33, 0xeb, 0x3d, 0x7c, 0x41, 0xd4, 0x99, 0xdd, 0x1c, 0xa0, 0xec, 0x7c, - 0xaf, 0x3c, 0x60, 0x58, 0x4c, 0xed, 0x79, 0x1e, 0x57, 0x01, 0x2b, 0x8c, 0xc5, 0x8e, 0x35, 0xc3, - 0x57, 0x00, 0x87, 0x81, 0x2a, 0x75, 0x62, 0x23, 0x08, 0x99, 0x77, 0x72, 0xfd, 0x84, 0x1f, 0x78, - 0xd9, 0xf6, 0x73, 0x98, 0x57, 0xf1, 0x52, 0x91, 0xc9, 0x18, 0xae, 0xa2, 0x34, 0xd9, 0xca, 0x49, - 0x34, 0xd9, 0x99, 0x6c, 0x2d, 0x76, 0x89, 0x6e, 0x18, 0x27, 0xb7, 0x4c, 0xff, 0x47, 0x89, 0x7c, - 0xf2, 0x18, 0x0e, 0xe3, 0xa2, 0xc5, 0x9a, 0x54, 0x43, 0xb4, 0xf4, 0x4d, 0x6c, 0x9d, 0x9c, 0xdb, - 0xa5, 0x66, 0xf9, 0x11, 0x3b, 0x7e, 0xf6, 0x5b, 0x12, 0x43, 0xec, 0xa5, 0xea, 0x35, 0xc0, 0x8d, - 0x0c, 0x1c, 0xc8, 0xac, 0x89, 0x5e, 0xa1, 0x70, 0x87, 0x25, 0x40, 0x6b, 0xe9, 0x9b, 0x82, 0x6c, - 0xfe, 0x2a, 0xda, 0x2b, 0x74, 0xab, 0x0f, 0x03, 0x32, 0x6a, 0xb9, 0x7f, 0x50, 0x42, 0x39, 0x92, - 0xf1, 0x56, 0x8d, 0xf5, 0xc4, 0xab, 0x11, 0x5c, 0xdc, 0xff, 0xc4, 0x2b, 0xf3, 0xf7, 0xd8, 0xb8, - 0x7c, 0x8a, 0x62, 0x1d, 0x58, 0x65, 0x25, 0x7b, 0x17, 0x41, 0xf5, 0x0a, 0x03, 0x9f, 0x65, 0x6a, - 0x05, 0x87, 0x41, 0x1c, 0x46, 0x05, 0x5e, 0x54, 0xec, 0x0b, 0xd6, 0xd1, 0xbb, 0x4c, 0x8d, 0x13, - 0x01, 0x49, 0xcd, 0xfd, 0x6b, 0x65, 0x32, 0x2b, 0xdb, 0x7b, 0xbb, 0x17, 0xb2, 0x85, 0x38, 0x2a, - 0xe9, 0xf8, 0xb6, 0x25, 0x1d, 0x2f, 0x15, 0xbb, 0x59, 0xc0, 0x3a, 0x35, 0x50, 0x2a, 0x7e, 0x39, - 0x25, 0x15, 0x2f, 0x0f, 0x43, 0x34, 0xd7, 0x5a, 0x3d, 0x63, 0xe1, 0x3f, 0x44, 0x89, 0x27, 0xb3, - 0x86, 0x33, 0x40, 0xfa, 0x7d, 0xb3, 0x9c, 0x1a, 0x06, 0x93, 0x7a, 0x5f, 0x27, 0x63, 0xfb, 0x5e, - 0xd4, 0x12, 0xae, 0xf9, 0x37, 0x87, 0xfc, 0x14, 0x54, 0x3d, 0x8e, 0x5a, 0x5c, 0x76, 0xbd, 0xa4, - 0x32, 0xe4, 0x53, 0x50, 0x6e, 0x98, 0x21, 0x6b, 0xd4, 0x79, 0x03, 0x33, 0xe8, 0x87, 0x5d, 0x15, - 0x45, 0xf2, 0x14, 0xcf, 0x9e, 0x8f, 0x10, 0x4a, 0xc1, 0xb1, 0x9b, 0x43, 0x30, 0x08, 0xfc, 0x25, - 0x9f, 0x54, 0x55, 0xd3, 0x23, 0x0c, 0x68, 0xfb, 0x61, 0x85, 0x9c, 0xcd, 0x60, 0x15, 0xe7, 0xa7, - 0xac, 0x59, 0xfb, 0xdc, 0xd0, 0xbc, 0xf6, 0x31, 0xe7, 0xed, 0xa7, 0x98, 0x8e, 0xd9, 0x12, 0xbc, - 0x71, 0x82, 0xe6, 0xa9, 0x22, 0x9a, 0x6e, 0x1e, 0x41, 0xf9, 0xcd, 0x63, 0xb3, 0xa7, 0x34, 0xf9, - 0xd8, 0x8c, 0xea, 0xe7, 0x08, 0xbf, 0xf1, 0xcf, 0x8e, 0x91, 0x73, 0x59, 0xb7, 0x97, 0x9c, 0x9f, - 0x2b, 0xa5, 0x52, 0xd7, 0x7e, 0x61, 0xf8, 0x2b, 0x50, 0x3c, 0x9f, 0xad, 0xb8, 0x9e, 0xbc, 0x6c, - 0x27, 0xb3, 0xcd, 0x9d, 0x6d, 0xd1, 0x3a, 0x0b, 0x0d, 0x8e, 0x78, 0x16, 0x62, 0x29, 0x0f, 0xde, - 0x3a, 0x41, 0x57, 0x44, 0x22, 0xe3, 0x38, 0x15, 0x1a, 0x2c, 0xc1, 0xf9, 0xa1, 0xc1, 0xb2, 0x0f, - 0x4b, 0x7b, 0x98, 0xc2, 0x56, 0x8d, 0x6b, 0x84, 0x2c, 0x10, 0xe0, 0x9e, 0x64, 0xf4, 0x7a, 0x84, - 0x6c, 0xf0, 0x37, 0x4a, 0x24, 0x75, 0x3c, 0x8c, 0x27, 0xd6, 0xcc, 0x94, 0x4b, 0x9d, 0x58, 0x1b, - 0x56, 0x1c, 0xc5, 0xa0, 0xea, 0x8e, 0x9f, 0xce, 0xa9, 0x0a, 0x14, 0x06, 0xac, 0x44, 0xbd, 0xa7, - 0x55, 0x19, 0xf4, 0x9e, 0x16, 0x5a, 0x38, 0x6d, 0xff, 0xd0, 0x97, 0x66, 0xa5, 0x12, 0xde, 0x5b, - 0x08, 0x04, 0x5e, 0xe6, 0x7e, 0xa7, 0x42, 0x26, 0xb8, 0xed, 0x36, 0xc2, 0x6d, 0xb9, 0x2e, 0xcc, - 0xa8, 0x42, 0xf7, 0x88, 0x78, 0x6f, 0x96, 0xd1, 0xce, 0xe2, 0x0c, 0xa5, 0xc6, 0xa6, 0x4d, 0x2f, - 0x67, 0xd9, 0x1a, 0xfd, 0x52, 0x2a, 0x32, 0x8a, 0x70, 0x1a, 0xc6, 0x5c, 0xec, 0x13, 0x12, 0xb3, - 0x27, 0x59, 0x90, 0x86, 0x48, 0xca, 0xf4, 0x6a, 0xa1, 0x7e, 0x34, 0x54, 0x35, 0xde, 0x1b, 0x9d, - 0x0d, 0x46, 0x15, 0x80, 0x41, 0x7b, 0xe9, 0x75, 0x52, 0x55, 0xc8, 0x79, 0x1a, 0xef, 0x8c, 0xc9, - 0x92, 0x7f, 0x86, 0xcc, 0xa7, 0xda, 0x1a, 0x4a, 0x61, 0xfe, 0x36, 0x55, 0x26, 0xfa, 0x9e, 0x02, - 0xc4, 0xc4, 0x5e, 0xe7, 0xda, 0x19, 0x46, 0xbb, 0xf8, 0xc0, 0x27, 0x31, 0xf7, 0xf5, 0xdb, 0xd9, - 0x19, 0xa5, 0x90, 0xd9, 0x9a, 0x4c, 0x33, 0x57, 0xce, 0x4e, 0x33, 0xc7, 0xde, 0xa1, 0xe0, 0x7d, - 0x3f, 0x0d, 0x0d, 0x68, 0xd3, 0xd6, 0x80, 0x9e, 0x29, 0xc2, 0x06, 0x03, 0x54, 0x9f, 0x7f, 0x53, - 0x22, 0x0e, 0x47, 0x48, 0x3f, 0xcd, 0xc4, 0x9d, 0x20, 0x86, 0xce, 0xae, 0xf9, 0x46, 0x95, 0x80, - 0x81, 0x35, 0x64, 0xda, 0x5d, 0xf5, 0xa4, 0x49, 0xb1, 0xf7, 0x8f, 0x2b, 0x05, 0xde, 0x3f, 0xfe, - 0xed, 0x0a, 0x49, 0x1f, 0xa5, 0x3a, 0xef, 0x91, 0x19, 0xbc, 0xb6, 0xb1, 0x13, 0xb4, 0x83, 0x24, - 0xf0, 0xe3, 0x62, 0x6e, 0xea, 0x35, 0xa3, 0x86, 0x70, 0xa3, 0x19, 0x10, 0xb0, 0x28, 0x62, 0xfc, - 0x4f, 0x37, 0xa2, 0x96, 0x42, 0xdb, 0xdf, 0x63, 0x7a, 0x87, 0xba, 0xdb, 0x5f, 0x57, 0x50, 0x30, - 0x30, 0x32, 0x62, 0x76, 0x2a, 0xa7, 0x11, 0xb3, 0x33, 0x36, 0x64, 0xcc, 0xce, 0x78, 0xa1, 0x98, - 0x1d, 0x20, 0x8f, 0x48, 0xef, 0x17, 0xfe, 0xc6, 0xeb, 0x43, 0x3c, 0xaf, 0x94, 0x88, 0xb4, 0x5a, - 0xc2, 0xeb, 0x2c, 0x90, 0x89, 0x01, 0x03, 0x6a, 0xba, 0x3d, 0x72, 0xb6, 0xe1, 0x47, 0x01, 0x4b, - 0xfb, 0xd1, 0xd2, 0x2b, 0xf0, 0xab, 0x78, 0xf1, 0xda, 0x5e, 0xfc, 0x43, 0xde, 0x4a, 0x31, 0xee, - 0x5c, 0xcb, 0xc5, 0xae, 0x49, 0xba, 0x7f, 0xa1, 0x4c, 0x26, 0x45, 0xc8, 0xc2, 0x08, 0x37, 0x92, - 0xeb, 0x96, 0x7d, 0xf7, 0x42, 0xde, 0xca, 0x65, 0xdd, 0x19, 0x68, 0xd9, 0x35, 0x52, 0x96, 0xdd, - 0x8b, 0xc5, 0xc8, 0x1d, 0x6f, 0xd3, 0xfd, 0x56, 0x99, 0xee, 0xf6, 0x76, 0xa8, 0xc6, 0xe8, 0xa6, - 0xe3, 0x4b, 0x64, 0x32, 0x16, 0xf1, 0x0c, 0x85, 0x5e, 0x9c, 0x4e, 0x7f, 0x52, 0xfd, 0x96, 0xb2, - 0x88, 0x60, 0x90, 0xe4, 0x32, 0x43, 0x26, 0x2a, 0xa7, 0x11, 0x32, 0xe1, 0x7e, 0x87, 0x89, 0x54, - 0x73, 0x02, 0x4f, 0x63, 0x4f, 0x78, 0xdb, 0x96, 0xbe, 0x2f, 0x15, 0x62, 0x05, 0xd1, 0xbf, 0x01, - 0x7b, 0xc3, 0x87, 0x25, 0x32, 0x2d, 0x10, 0x4f, 0x63, 0x04, 0x3f, 0x6e, 0x8f, 0xe0, 0xd9, 0x42, - 0x23, 0x18, 0xd0, 0xf5, 0xbf, 0x55, 0x56, 0x5d, 0x2f, 0xf8, 0xa8, 0xbb, 0xf9, 0x64, 0x7b, 0x79, - 0x98, 0x27, 0xdb, 0xd5, 0x73, 0xf0, 0x95, 0x81, 0xcf, 0xc1, 0xef, 0xc8, 0x87, 0x45, 0x11, 0x26, - 0x42, 0xc4, 0x87, 0x7d, 0x88, 0x4f, 0xc7, 0xac, 0x2a, 0x4a, 0x60, 0x50, 0x95, 0xe1, 0x54, 0xac, - 0x85, 0x71, 0xdb, 0x9d, 0x78, 0x53, 0xc0, 0x41, 0x61, 0xb8, 0xaf, 0x33, 0x19, 0xcb, 0xa6, 0x67, - 0xb8, 0x40, 0xd4, 0xef, 0x8f, 0xab, 0x89, 0x65, 0x4e, 0x92, 0x9b, 0xf2, 0x11, 0xf7, 0x52, 0x91, - 0x53, 0x77, 0xe3, 0x93, 0x64, 0xbf, 0xe1, 0xee, 0xf8, 0x7d, 0x0e, 0xe4, 0xd7, 0x0b, 0xcb, 0xc8, - 0x21, 0x5c, 0xc6, 0x2c, 0xdf, 0x01, 0xbb, 0xe3, 0xbd, 0x59, 0x4f, 0x27, 0x87, 0x5b, 0x93, 0x05, - 0xa0, 0x71, 0x68, 0x05, 0xae, 0xae, 0xdb, 0xef, 0x19, 0x4a, 0x75, 0x5d, 0x4e, 0x89, 0xa1, 0xaf, - 0x53, 0xfd, 0x45, 0xa5, 0xc7, 0xad, 0xf3, 0x2c, 0xa7, 0x55, 0xae, 0xbf, 0xac, 0x6b, 0x30, 0x98, - 0x38, 0x54, 0xad, 0x3b, 0xdb, 0x52, 0xd1, 0x73, 0xf5, 0xde, 0x4e, 0x3b, 0x68, 0x62, 0x55, 0x1e, - 0xb9, 0xfe, 0x28, 0x1e, 0x95, 0xd6, 0xfa, 0x8b, 0x21, 0xab, 0x8e, 0xb3, 0x8d, 0x11, 0x6a, 0x2c, - 0x0d, 0xb0, 0xbc, 0xe3, 0x22, 0x92, 0x2e, 0x5d, 0x90, 0x19, 0x9b, 0x1a, 0x76, 0xf1, 0x47, 0x0c, - 0xc4, 0x85, 0x82, 0x00, 0x41, 0x9a, 0x04, 0x1e, 0xc0, 0xb6, 0xcd, 0xe7, 0x3c, 0xea, 0x22, 0x88, - 0x50, 0x1d, 0xc0, 0x5a, 0x8f, 0x7d, 0xd4, 0x21, 0x85, 0x4d, 0xa5, 0xfd, 0xa2, 0x09, 0x11, 0xd7, - 0x5a, 0xf1, 0x9c, 0x2a, 0x16, 0xf9, 0x47, 0x3f, 0x85, 0x21, 0x84, 0x5b, 0x03, 0x70, 0x60, 0x60, - 0xed, 0x8f, 0xe7, 0xa9, 0xff, 0x3a, 0x56, 0x36, 0xb6, 0x46, 0xe7, 0x6b, 0x64, 0xc6, 0x6c, 0x49, - 0x08, 0xbb, 0x97, 0x8b, 0x3f, 0x74, 0x22, 0xb6, 0x58, 0x15, 0x7a, 0x60, 0x96, 0x81, 0x45, 0xdb, - 0x6d, 0x92, 0xf9, 0xd4, 0x43, 0x8b, 0xea, 0xc5, 0xce, 0xd2, 0x83, 0x7a, 0xb1, 0x13, 0x93, 0x80, - 0x8c, 0x6f, 0x7b, 0x41, 0x7e, 0xba, 0xec, 0x42, 0xaf, 0xf2, 0xbf, 0x46, 0x26, 0xfc, 0xdd, 0x5d, - 0x7c, 0x11, 0x9d, 0xaf, 0x9c, 0xc7, 0xd5, 0x3b, 0xcc, 0x0c, 0x8a, 0xeb, 0x81, 0x35, 0xc6, 0x7f, - 0x82, 0x40, 0x76, 0xff, 0x1d, 0xb5, 0x91, 0xb6, 0xa9, 0xe1, 0x2f, 0xf2, 0x10, 0xe6, 0xf4, 0x64, - 0xb5, 0x2f, 0x71, 0xf7, 0x73, 0x19, 0x89, 0xbb, 0x1d, 0x4d, 0x30, 0x23, 0x6d, 0xb7, 0x1a, 0x4d, - 0xa5, 0xd0, 0x68, 0xc6, 0x86, 0x19, 0xcd, 0x37, 0x4a, 0x64, 0x42, 0xdc, 0xc8, 0xcf, 0xdf, 0x5c, - 0x5a, 0x32, 0xd9, 0xae, 0x75, 0x4b, 0xfc, 0x42, 0x91, 0x68, 0x6f, 0x71, 0x37, 0x5c, 0xb1, 0x92, - 0x75, 0x23, 0xdc, 0xa2, 0x8a, 0x06, 0xf4, 0x34, 0x2f, 0xbe, 0x21, 0x1f, 0x2c, 0xcf, 0xe9, 0xd7, - 0x50, 0x59, 0x5c, 0x58, 0x2e, 0x5a, 0x24, 0xac, 0x92, 0x79, 0x98, 0xb9, 0x68, 0x65, 0x01, 0x68, - 0x1c, 0x3c, 0xc9, 0x8f, 0x7b, 0x3b, 0x0c, 0x3d, 0x15, 0x18, 0xd0, 0xe0, 0x60, 0x90, 0xe5, 0xee, - 0x87, 0xf3, 0xc4, 0x1a, 0x9a, 0x95, 0x38, 0xa4, 0xf4, 0xc0, 0x13, 0x87, 0x50, 0xea, 0xfe, 0x41, - 0x37, 0x39, 0xaa, 0x05, 0x51, 0xb1, 0x24, 0x4e, 0xeb, 0x02, 0xbb, 0x9f, 0xba, 0x2c, 0x01, 0x45, - 0x71, 0x40, 0x1a, 0x98, 0xca, 0x43, 0x91, 0x06, 0x66, 0xec, 0xff, 0x4b, 0x1a, 0x18, 0xaa, 0xe7, - 0xef, 0xf1, 0x17, 0xa0, 0xc5, 0xed, 0x9e, 0x9c, 0x43, 0xa8, 0x8c, 0xe7, 0xa2, 0xf9, 0x35, 0x0e, - 0x51, 0x00, 0x92, 0x1c, 0x26, 0x19, 0xe1, 0x2a, 0xbf, 0xc8, 0xac, 0xf2, 0x72, 0x11, 0x67, 0x48, - 0x7f, 0x92, 0x11, 0x11, 0xfd, 0x21, 0x68, 0xc9, 0xb4, 0x2f, 0x93, 0x1f, 0x3f, 0xed, 0x8b, 0x4a, - 0xd6, 0x32, 0xf5, 0xa0, 0x92, 0xb5, 0x58, 0x49, 0x6f, 0xaa, 0xa3, 0x48, 0x7a, 0x43, 0x65, 0xdb, - 0xf9, 0x6e, 0x56, 0xce, 0x28, 0x91, 0x76, 0xe5, 0x8b, 0x27, 0xc8, 0xa1, 0x65, 0x35, 0xcd, 0x2e, - 0x5d, 0x64, 0xa2, 0x41, 0x76, 0xc3, 0x32, 0x7b, 0xce, 0xf4, 0xc7, 0xcf, 0x9e, 0x33, 0xea, 0xfc, - 0x2c, 0x3a, 0x97, 0xce, 0xec, 0x48, 0x72, 0xe9, 0xcc, 0x3d, 0xc0, 0x5c, 0x3a, 0x46, 0x16, 0x9c, - 0xf9, 0x07, 0x9b, 0x05, 0x67, 0x9f, 0x4c, 0xb7, 0xc2, 0x7b, 0x9d, 0x7b, 0x5e, 0xd4, 0x5a, 0xa9, - 0x6f, 0xb2, 0xab, 0x03, 0xb9, 0x37, 0xb3, 0x6b, 0xba, 0x82, 0xd5, 0x02, 0xf7, 0xfa, 0xe9, 0x42, - 0x30, 0x49, 0x8b, 0x7c, 0x40, 0x67, 0x3e, 0x66, 0x3e, 0x20, 0x2b, 0xab, 0x8e, 0x33, 0x8a, 0xac, - 0x3a, 0xef, 0xb1, 0xfb, 0x99, 0xbb, 0xc1, 0xde, 0x0d, 0xaf, 0xbb, 0x78, 0xb6, 0x48, 0x0b, 0x6b, - 0x12, 0xbd, 0xbf, 0x05, 0x55, 0x04, 0x9a, 0x68, 0x7f, 0xde, 0x9e, 0x73, 0xa7, 0x92, 0xb7, 0xe7, - 0xcf, 0x91, 0x27, 0x8e, 0xa7, 0xa1, 0xd3, 0x19, 0xd6, 0xb5, 0x71, 0x99, 0x4a, 0x67, 0xc8, 0xf6, - 0x67, 0x03, 0xcb, 0x88, 0x3c, 0x2c, 0x1f, 0x17, 0x79, 0xe8, 0xfe, 0xd3, 0x12, 0x79, 0x74, 0xc0, - 0x95, 0xfe, 0xc2, 0x71, 0xb6, 0x5d, 0x32, 0xdf, 0xb5, 0xab, 0x16, 0x8e, 0x88, 0xb7, 0x52, 0x08, - 0xa8, 0x74, 0xb8, 0xa9, 0x02, 0x48, 0x93, 0x5f, 0x7d, 0xe6, 0xbb, 0x3f, 0x7c, 0xe2, 0x13, 0xdf, - 0xa3, 0x7f, 0xbf, 0x47, 0xff, 0x7e, 0xfa, 0x0f, 0x9f, 0x28, 0x7d, 0x97, 0xfe, 0x7d, 0x8f, 0xfe, - 0xfd, 0x57, 0xfa, 0xf7, 0x8d, 0x3f, 0x7a, 0xe2, 0x13, 0x3f, 0x51, 0x3e, 0xbc, 0xfc, 0xff, 0x02, - 0x00, 0x00, 0xff, 0xff, 0xa1, 0x99, 0x68, 0x3b, 0xd9, 0xac, 0x00, 0x00, + 0x9b, 0xb5, 0xc5, 0xd2, 0x53, 0xa5, 0xe7, 0xab, 0xab, 0x0b, 0xdf, 0xfb, 0xc1, 0x93, 0x9f, 0xf8, + 0xc3, 0x1f, 0x3c, 0x39, 0x75, 0x5b, 0x94, 0x83, 0xc2, 0x70, 0x9e, 0x23, 0x13, 0xbb, 0xf1, 0xf6, + 0x51, 0xd7, 0x5f, 0x2c, 0x33, 0xdc, 0x39, 0x81, 0x3b, 0xb1, 0xd1, 0xc0, 0x52, 0x10, 0x50, 0xe7, + 0x12, 0xa9, 0x76, 0xbd, 0x28, 0x09, 0x12, 0x3a, 0xf6, 0xc5, 0x0a, 0x45, 0x1d, 0x5f, 0x3d, 0x23, + 0x50, 0xab, 0x75, 0x09, 0x00, 0x8d, 0x83, 0xdd, 0x88, 0x7c, 0xaf, 0x75, 0xab, 0xd3, 0x3e, 0x5a, + 0x1c, 0xa3, 0xf8, 0x53, 0xba, 0x1b, 0x20, 0xca, 0x41, 0x61, 0xb8, 0xdf, 0x2e, 0x93, 0xa9, 0x95, + 0xdd, 0xdd, 0xa0, 0x13, 0x24, 0x47, 0xce, 0x7b, 0x64, 0xa6, 0x13, 0xb6, 0x7c, 0xf9, 0x9b, 0x8d, + 0x62, 0xfa, 0xca, 0x85, 0xe5, 0xe3, 0xf8, 0x62, 0xf9, 0xa6, 0x51, 0x63, 0x75, 0x81, 0x36, 0x33, + 0x63, 0x96, 0x80, 0x45, 0xd1, 0x79, 0x97, 0x4c, 0x77, 0xc3, 0x96, 0x6a, 0xa0, 0xcc, 0x1a, 0x78, + 0xe1, 0xf8, 0x06, 0xea, 0xba, 0xc2, 0xea, 0x3c, 0xa5, 0x3f, 0x6d, 0x14, 0x80, 0x49, 0xce, 0x69, + 0x93, 0x79, 0xfc, 0x49, 0x3f, 0xbb, 0x6a, 0xa1, 0xc2, 0x5a, 0xb8, 0x98, 0xdf, 0x82, 0x51, 0x69, + 0xf5, 0x2c, 0x6d, 0x65, 0x3e, 0x55, 0x08, 0x69, 0xd2, 0xee, 0x07, 0x64, 0x6e, 0x25, 0x49, 0xbc, + 0xe6, 0xbe, 0xdf, 0xe2, 0xdf, 0xd7, 0x79, 0x95, 0x8c, 0x75, 0xbc, 0x03, 0x5f, 0x7c, 0xfd, 0xa7, + 0xc4, 0xb4, 0x8f, 0xdd, 0xa4, 0x65, 0x1f, 0xfd, 0xe0, 0xc9, 0x85, 0x77, 0x3a, 0xc1, 0xfb, 0x3d, + 0xc1, 0x33, 0x58, 0x06, 0x0c, 0xdb, 0xb9, 0x42, 0x48, 0xcb, 0x3f, 0x0c, 0x9a, 0x7e, 0xdd, 0x4b, + 0xf6, 0x05, 0x37, 0x38, 0xa2, 0x2e, 0xa9, 0x29, 0x08, 0x18, 0x58, 0xee, 0x4f, 0x95, 0x48, 0x75, + 0xe5, 0x30, 0x0c, 0x5a, 0xb4, 0x97, 0xb1, 0xd3, 0xa3, 0xe3, 0x8e, 0xfc, 0x5d, 0x3f, 0x52, 0x45, + 0xb4, 0x0b, 0x15, 0x3a, 0xee, 0x2b, 0x39, 0xe3, 0xb6, 0x2b, 0xad, 0x77, 0x92, 0xe8, 0x68, 0xf5, + 0x51, 0xd1, 0xf4, 0x7c, 0x0a, 0x0a, 0xe9, 0x36, 0xdc, 0x7f, 0x5a, 0x22, 0xe7, 0x57, 0x3e, 0xe8, + 0x45, 0xfe, 0x46, 0xd0, 0xb6, 0x97, 0x02, 0x1d, 0x52, 0xec, 0x37, 0x23, 0x3f, 0xb9, 0xa9, 0xa7, + 0x43, 0x0d, 0xa9, 0xa1, 0x20, 0x60, 0x60, 0x21, 0xa3, 0xc7, 0xfb, 0x5e, 0xc4, 0x66, 0x46, 0xcc, + 0x82, 0x62, 0xf4, 0x86, 0x04, 0x80, 0xc6, 0xb1, 0x18, 0xbd, 0x92, 0xcb, 0xe8, 0xff, 0xb2, 0x44, + 0x26, 0x57, 0x83, 0x4e, 0x2b, 0xe8, 0xec, 0x39, 0x5f, 0x22, 0x53, 0x07, 0x7e, 0xe2, 0xb5, 0xbc, + 0xc4, 0x13, 0x3c, 0xfe, 0xfc, 0xf1, 0x13, 0x75, 0x6b, 0xe7, 0x6b, 0x7e, 0x33, 0xb9, 0x41, 0xeb, + 0xe8, 0x61, 0xe8, 0x32, 0x50, 0xd4, 0x9c, 0x77, 0xc8, 0x44, 0xe2, 0x45, 0x7b, 0x7e, 0x22, 0x58, + 0xfb, 0x62, 0x11, 0xba, 0x80, 0xd3, 0xea, 0x77, 0x9a, 0xbe, 0x16, 0x02, 0xdb, 0x8c, 0x08, 0x08, + 0x62, 0x6e, 0x93, 0xcc, 0xac, 0x79, 0x5d, 0x6f, 0x27, 0x68, 0xd3, 0x35, 0xee, 0xc7, 0xce, 0x67, + 0x48, 0xc5, 0x6b, 0xb5, 0xd8, 0x47, 0xae, 0xae, 0x9e, 0xa7, 0x15, 0x2a, 0x2b, 0xad, 0x16, 0x65, + 0x31, 0xa2, 0xb0, 0x8e, 0x00, 0x31, 0x9c, 0x0b, 0x64, 0xac, 0x15, 0x85, 0x5d, 0xda, 0x1b, 0xc4, + 0x7c, 0x04, 0xb9, 0xb1, 0x46, 0x7f, 0xa7, 0x50, 0x19, 0x8e, 0xfb, 0x6f, 0xcb, 0xc4, 0x59, 0xf3, + 0xbb, 0xfb, 0x1b, 0x0d, 0xeb, 0x5b, 0x3e, 0x4f, 0x27, 0x2b, 0xa4, 0x0c, 0x1f, 0x46, 0xb1, 0x68, + 0x70, 0x06, 0xa7, 0xf8, 0x86, 0x28, 0x03, 0x05, 0x75, 0x9e, 0x22, 0x63, 0x5d, 0xcd, 0xc2, 0x33, + 0x92, 0xfd, 0x19, 0xf3, 0x32, 0x08, 0x62, 0xf4, 0x62, 0x3f, 0x62, 0x9f, 0xcb, 0xc0, 0x78, 0x87, + 0x96, 0x01, 0x83, 0x68, 0xce, 0x41, 0x9e, 0x62, 0xf2, 0xab, 0x8f, 0x73, 0x10, 0x02, 0x06, 0x96, + 0xf3, 0xe3, 0x94, 0x73, 0xd8, 0x2f, 0x3a, 0x91, 0x8b, 0xe3, 0x6c, 0xde, 0x73, 0x18, 0x7f, 0x2b, + 0x6c, 0x7a, 0xed, 0xf4, 0xe4, 0xcf, 0x32, 0x4e, 0x93, 0x84, 0x40, 0xd3, 0xb4, 0x38, 0x6d, 0x22, + 0x97, 0xd3, 0xfe, 0x56, 0x89, 0xce, 0x23, 0xe5, 0x34, 0x3f, 0x3a, 0x85, 0xed, 0x61, 0xb8, 0x45, + 0xf0, 0xfb, 0xd8, 0xb5, 0xf0, 0xa0, 0x4b, 0xb7, 0xd1, 0x4e, 0xb2, 0x16, 0xd2, 0xd5, 0xc0, 0xb6, + 0x8c, 0xcf, 0x92, 0xb1, 0x04, 0x9b, 0xe2, 0xdd, 0x7a, 0x4e, 0x7e, 0x16, 0x6c, 0x80, 0x72, 0xca, + 0x23, 0xfd, 0x35, 0x58, 0x17, 0x58, 0x1d, 0xe7, 0x4d, 0x32, 0x11, 0x27, 0x5e, 0xd2, 0x8b, 0x45, + 0x47, 0x9f, 0x96, 0x1d, 0x6d, 0xb0, 0x52, 0x5a, 0x7f, 0x5e, 0x55, 0xe3, 0x45, 0x20, 0x2a, 0x38, + 0x2f, 0x90, 0xc9, 0x03, 0x3f, 0x8e, 0xbd, 0x3d, 0x5f, 0x30, 0xc4, 0xbc, 0xa8, 0x3b, 0x79, 0x83, + 0x17, 0x83, 0x84, 0x3b, 0x9f, 0x26, 0xe3, 0x7e, 0x14, 0x85, 0x91, 0xe0, 0x88, 0x59, 0x81, 0x38, + 0xbe, 0x8e, 0x85, 0xc0, 0x61, 0xee, 0xf7, 0x4b, 0x64, 0x5e, 0xf5, 0x95, 0xb7, 0x35, 0xc2, 0xa5, + 0xde, 0x22, 0xa4, 0x29, 0x07, 0x16, 0xb3, 0x05, 0x36, 0x7d, 0xe5, 0xe5, 0xe3, 0x69, 0xf7, 0x4f, + 0xa4, 0x6e, 0x43, 0x15, 0xc5, 0x60, 0xd0, 0x75, 0xbf, 0x57, 0x22, 0x67, 0x53, 0x63, 0xda, 0x0a, + 0xe2, 0xc4, 0xf9, 0xf3, 0x7d, 0xe3, 0xba, 0x74, 0x4c, 0xdb, 0x86, 0xf6, 0xb4, 0x8c, 0xd5, 0xd9, + 0xf0, 0x14, 0xa3, 0xc8, 0x12, 0x63, 0x70, 0x40, 0xc6, 0x83, 0xc4, 0x3f, 0x90, 0xe3, 0xba, 0x58, + 0x70, 0x5c, 0xbc, 0x83, 0xfa, 0xf3, 0x6c, 0x22, 0x0d, 0xe0, 0xa4, 0xdc, 0xff, 0x45, 0xf7, 0x2c, + 0x3a, 0xca, 0xdd, 0x60, 0xef, 0x86, 0xd7, 0x1d, 0xe1, 0x87, 0x69, 0x50, 0x99, 0x87, 0x54, 0x79, + 0xd7, 0x2f, 0xe7, 0x75, 0x5d, 0x74, 0x68, 0xb9, 0x46, 0xeb, 0xf0, 0x1d, 0x50, 0xc9, 0x25, 0x2c, + 0x02, 0x46, 0x6c, 0xe9, 0x75, 0x52, 0x55, 0x08, 0xce, 0x02, 0xa9, 0xdc, 0xf5, 0xb9, 0x7a, 0x54, + 0x05, 0xfc, 0xd7, 0x39, 0x47, 0xc6, 0x0f, 0xbd, 0x76, 0x4f, 0xac, 0x56, 0xe0, 0x3f, 0x3e, 0x5b, + 0x7e, 0xa3, 0xe4, 0xfe, 0x46, 0x89, 0x9c, 0x53, 0x8d, 0x5c, 0xf7, 0x8f, 0x1a, 0x7e, 0x9b, 0x76, + 0x39, 0x8c, 0x9c, 0x9f, 0xa6, 0x80, 0x76, 0x86, 0x1c, 0x12, 0xb3, 0x71, 0x12, 0x09, 0xf6, 0x29, + 0xd1, 0xf1, 0x73, 0x59, 0x50, 0xc8, 0x6c, 0xcd, 0x79, 0x9c, 0x8f, 0x85, 0x2f, 0xde, 0x69, 0x41, + 0xa0, 0x42, 0x3b, 0xca, 0x06, 0x86, 0xdd, 0x9f, 0x55, 0xdd, 0x3f, 0x0d, 0xce, 0xdb, 0xb2, 0x39, + 0xef, 0x33, 0x05, 0x3f, 0xdf, 0x00, 0x9e, 0xfb, 0x7b, 0x65, 0x72, 0x5e, 0xe1, 0x58, 0xe2, 0xf8, + 0x21, 0x99, 0xfe, 0xe1, 0x86, 0x4b, 0x3f, 0xcb, 0x76, 0x88, 0xfb, 0x69, 0xf6, 0x70, 0x9d, 0xcb, + 0x64, 0xba, 0xe5, 0xef, 0x7a, 0xbd, 0x76, 0x72, 0x83, 0x6a, 0xdd, 0xc2, 0x5c, 0x60, 0x3a, 0x73, + 0x4d, 0x17, 0x83, 0x89, 0xe3, 0xfe, 0x76, 0x95, 0xad, 0xca, 0xc4, 0x0b, 0xa8, 0xc9, 0x83, 0x1b, + 0xb4, 0xa1, 0xc1, 0xce, 0x98, 0x1a, 0xac, 0xd0, 0x56, 0xa9, 0x24, 0x0e, 0x0e, 0x50, 0x64, 0x97, + 0x6d, 0x49, 0xbc, 0x89, 0x85, 0xc0, 0x61, 0xce, 0xb3, 0x64, 0x92, 0x9a, 0x89, 0x07, 0x5e, 0xa7, + 0x45, 0xfb, 0x80, 0x2a, 0xc3, 0x34, 0x4a, 0xf5, 0x35, 0x5e, 0x04, 0x12, 0xe6, 0x7c, 0x8a, 0x8c, + 0x51, 0xfd, 0x26, 0xa6, 0x42, 0x1d, 0x71, 0xa6, 0xb0, 0xa5, 0x15, 0xfa, 0x1b, 0x58, 0x29, 0xaa, + 0x02, 0xf7, 0xc2, 0xe8, 0x2e, 0x55, 0xd8, 0x6a, 0x41, 0xc4, 0xf6, 0x75, 0x43, 0x15, 0xb8, 0xa3, + 0x20, 0x60, 0x60, 0x39, 0x75, 0x32, 0xde, 0x0d, 0xa3, 0x24, 0xa6, 0xdb, 0x34, 0x4e, 0xe7, 0x8b, + 0xb9, 0xdc, 0xc3, 0xc7, 0x5d, 0xa7, 0x75, 0xf4, 0x50, 0xf0, 0x17, 0x9d, 0x52, 0x46, 0xc8, 0x59, + 0x23, 0x15, 0xbf, 0x73, 0xb8, 0x38, 0xc9, 0xe8, 0x3d, 0x73, 0x3c, 0xbd, 0xf5, 0xce, 0xe1, 0x6d, + 0x2f, 0xd2, 0xab, 0x88, 0xfe, 0x06, 0xac, 0xed, 0x34, 0x49, 0x55, 0x1a, 0xbd, 0xf1, 0xe2, 0x54, + 0x11, 0x06, 0x03, 0x81, 0x0e, 0xfe, 0xfb, 0xbd, 0x20, 0xf2, 0x0f, 0xa8, 0x70, 0x8d, 0xb5, 0x3e, + 0x2c, 0xa1, 0x31, 0x68, 0xba, 0xb4, 0x91, 0x19, 0xae, 0x3e, 0xdc, 0x08, 0xa9, 0xe5, 0x1b, 0x2f, + 0x56, 0x59, 0x97, 0x73, 0x8c, 0xab, 0xdb, 0xba, 0xc6, 0xea, 0x39, 0x41, 0x7e, 0xc6, 0x28, 0x8c, + 0xc1, 0x22, 0x4a, 0x0d, 0xb8, 0xd9, 0x76, 0x70, 0x48, 0xcd, 0xe3, 0x38, 0xae, 0x47, 0xe1, 0x8e, + 0xbf, 0x48, 0xd8, 0x68, 0x3e, 0x9d, 0x67, 0x68, 0x50, 0xd4, 0xd5, 0x33, 0x94, 0xf6, 0xec, 0x96, + 0x59, 0x1b, 0x6c, 0x62, 0x54, 0x93, 0x9b, 0x43, 0x5d, 0x25, 0xd0, 0xe4, 0xa7, 0x8b, 0x93, 0x77, + 0x28, 0xf9, 0x39, 0xb0, 0xaa, 0x43, 0x8a, 0x9c, 0xb3, 0x4d, 0xaa, 0xed, 0x60, 0xd7, 0x6f, 0x1e, + 0x35, 0xa9, 0x76, 0x39, 0xc3, 0x68, 0xe7, 0x2c, 0xb9, 0x2d, 0x89, 0xce, 0xf5, 0x43, 0xf5, 0x13, + 0x34, 0x21, 0xe7, 0x36, 0x79, 0x24, 0xf1, 0xa3, 0x83, 0xa0, 0xe3, 0xe1, 0xa6, 0x2d, 0x94, 0x17, + 0x66, 0xcd, 0xcd, 0x32, 0xae, 0x7d, 0x42, 0x4c, 0xec, 0x23, 0xdb, 0x99, 0x58, 0x30, 0xa0, 0xb6, + 0x73, 0x8b, 0xcc, 0xb3, 0xf5, 0x54, 0xef, 0xb5, 0xdb, 0xf5, 0xb0, 0x1d, 0x34, 0x8f, 0x16, 0xe7, + 0x18, 0xc1, 0x67, 0xa5, 0x8d, 0xb6, 0x69, 0x83, 0x51, 0xaf, 0xd7, 0xbf, 0x20, 0x5d, 0x1b, 0x0d, + 0x64, 0xaa, 0xd5, 0xf6, 0x22, 0xaa, 0xf4, 0x23, 0xef, 0xfb, 0xf7, 0x93, 0xc5, 0xf9, 0x22, 0x76, + 0x4a, 0xc3, 0xae, 0xc4, 0x0d, 0xe4, 0x54, 0x21, 0xa4, 0x49, 0xa3, 0xa8, 0x88, 0x13, 0x3a, 0xfb, + 0x8b, 0x0b, 0x4c, 0x31, 0x55, 0xeb, 0xab, 0x81, 0x85, 0xc0, 0x61, 0xcc, 0xec, 0xc3, 0x7f, 0x6e, + 0xa1, 0xec, 0x3d, 0xc3, 0x10, 0xb5, 0xd9, 0x27, 0x01, 0xa0, 0x71, 0x70, 0xc3, 0x4a, 0xa8, 0x61, + 0xef, 0x30, 0x54, 0xb5, 0xd4, 0xb6, 0xb7, 0xbf, 0x0c, 0x58, 0xee, 0xee, 0x90, 0x39, 0xb5, 0xac, + 0xd9, 0xec, 0x38, 0x4f, 0x92, 0x71, 0x94, 0x5c, 0xd2, 0x7a, 0xa9, 0x62, 0x17, 0x50, 0xa0, 0xd1, + 0x25, 0xce, 0xca, 0x59, 0x17, 0x82, 0x0f, 0xfc, 0xd5, 0x23, 0x3a, 0x6a, 0x26, 0xd6, 0x2a, 0x46, + 0x17, 0x24, 0x00, 0x34, 0x8e, 0xfb, 0x7f, 0xf8, 0xa6, 0xa8, 0x65, 0x47, 0x01, 0xb9, 0x49, 0x15, + 0xf5, 0xfd, 0x30, 0x4e, 0x10, 0x9b, 0xb5, 0x31, 0xae, 0x77, 0xc1, 0x6b, 0xa2, 0x1c, 0x14, 0x86, + 0xf3, 0x39, 0x32, 0xdb, 0x34, 0x1b, 0x10, 0xa2, 0xfc, 0xbc, 0xa8, 0x62, 0xb7, 0x0e, 0x36, 0xae, + 0xf3, 0x06, 0x99, 0x62, 0x6e, 0xab, 0x66, 0xd8, 0x16, 0xfa, 0xb2, 0xdc, 0x99, 0xa6, 0xea, 0xa2, + 0xfc, 0x23, 0xe3, 0x7f, 0x50, 0xd8, 0x68, 0x75, 0x60, 0x17, 0x36, 0xeb, 0x42, 0xdc, 0x2a, 0xab, + 0xe3, 0x1a, 0x2b, 0x05, 0x01, 0x75, 0x7f, 0xa5, 0x6c, 0xcc, 0x32, 0x2a, 0x7d, 0xbe, 0xf3, 0x63, + 0x64, 0xf2, 0x9e, 0x47, 0x95, 0xd6, 0xce, 0x9e, 0xd8, 0x41, 0x5f, 0x29, 0x28, 0x7b, 0x59, 0xf5, + 0x3b, 0xbc, 0x2a, 0xdf, 0x27, 0xc4, 0x0f, 0x90, 0x04, 0x91, 0x76, 0xd4, 0xeb, 0x74, 0x90, 0x76, + 0x79, 0x78, 0xda, 0xc0, 0xab, 0x72, 0xda, 0xe2, 0x07, 0x48, 0x82, 0xce, 0x2e, 0x21, 0x72, 0xf5, + 0xf9, 0x2d, 0xe1, 0x2e, 0xfa, 0x91, 0x61, 0xc8, 0x6f, 0xab, 0xda, 0xab, 0x73, 0xb8, 0x33, 0xe9, + 0xdf, 0x60, 0x50, 0x76, 0x7b, 0x4c, 0x11, 0xe9, 0xef, 0x16, 0x95, 0xa8, 0x94, 0xb9, 0xbd, 0x88, + 0xe2, 0xac, 0x24, 0x62, 0xea, 0x5e, 0x2c, 0xa8, 0x50, 0x6d, 0x07, 0x07, 0xbe, 0xb9, 0x5a, 0x04, + 0x15, 0xd0, 0x04, 0xdd, 0xef, 0x54, 0xc8, 0xe2, 0xa0, 0xfe, 0x22, 0x4f, 0xfa, 0xf7, 0x03, 0x6a, + 0x8d, 0xb4, 0x38, 0xe7, 0x1a, 0x3c, 0xb9, 0x2e, 0xca, 0x41, 0x61, 0x20, 0x73, 0xc4, 0xc1, 0x5e, + 0xc7, 0x6b, 0x0b, 0xfe, 0x55, 0xcc, 0xd1, 0x60, 0xa5, 0x20, 0xa0, 0x88, 0x47, 0xa5, 0x6e, 0x2c, + 0xdc, 0x95, 0x06, 0x13, 0x01, 0x2b, 0x05, 0x01, 0x35, 0xcd, 0xbf, 0xb1, 0x1c, 0xf3, 0xcf, 0x9a, + 0xa3, 0xf1, 0x07, 0x3c, 0x47, 0x74, 0xd7, 0x21, 0xe8, 0xd2, 0x8b, 0xf7, 0x19, 0xf9, 0x89, 0xe1, + 0xc9, 0x2b, 0xad, 0x64, 0x43, 0x91, 0x01, 0x83, 0xa4, 0xf3, 0x1a, 0x99, 0x56, 0x2b, 0x94, 0x5a, + 0xff, 0x93, 0x6c, 0xb4, 0x67, 0x45, 0xa5, 0x69, 0x2d, 0xae, 0x6a, 0x60, 0xe2, 0xb9, 0x5f, 0x4b, + 0xb3, 0x8c, 0x58, 0x18, 0xc6, 0x0c, 0x97, 0x8a, 0xce, 0x70, 0xf9, 0xf8, 0x19, 0x76, 0xff, 0x4b, + 0x05, 0x6d, 0x67, 0xa3, 0xb1, 0x5e, 0x5c, 0x40, 0xa8, 0xbd, 0x8d, 0x12, 0x9e, 0x76, 0x4c, 0x2c, + 0xcb, 0x97, 0x86, 0x59, 0x37, 0xe6, 0x7e, 0x80, 0xcb, 0x81, 0x53, 0x72, 0xf6, 0xe9, 0x0e, 0xed, + 0xc5, 0xcc, 0x92, 0xf4, 0xc5, 0x72, 0x1c, 0x8e, 0xac, 0xd6, 0xc2, 0x29, 0x19, 0x63, 0xc3, 0xe5, + 0xad, 0x68, 0xe2, 0xb8, 0x3d, 0xa1, 0x76, 0x20, 0xbd, 0xe4, 0xaa, 0x3b, 0xa8, 0x42, 0x1c, 0x01, + 0x87, 0x51, 0x59, 0x3a, 0x43, 0x35, 0x2c, 0x64, 0x95, 0x35, 0x54, 0x80, 0x18, 0xf3, 0x8d, 0x6b, + 0x4d, 0x09, 0x0c, 0x18, 0x58, 0x98, 0x5a, 0x51, 0x9e, 0x38, 0x46, 0x51, 0xa6, 0x5f, 0x88, 0xfd, + 0xa3, 0xb8, 0x42, 0x7d, 0xa1, 0x4d, 0x5e, 0x0c, 0x12, 0x9e, 0x66, 0xa2, 0xa9, 0x82, 0x4c, 0x74, + 0x81, 0xcc, 0xd5, 0x3c, 0xff, 0x20, 0xec, 0xac, 0x77, 0x5a, 0xdd, 0x30, 0xa0, 0x1d, 0x5b, 0x24, + 0x63, 0x6c, 0x4b, 0xe1, 0x2b, 0x7e, 0x0c, 0x29, 0xc0, 0x18, 0x2a, 0xbb, 0xee, 0xff, 0xa5, 0xfb, + 0x5a, 0x8d, 0xda, 0xa7, 0x89, 0x7f, 0xab, 0xcb, 0xdc, 0x0f, 0xce, 0x06, 0x71, 0xf6, 0x22, 0xaf, + 0xe9, 0xd7, 0xfd, 0x28, 0x08, 0x5b, 0x74, 0xc7, 0x0f, 0x3b, 0xcc, 0xb9, 0x8c, 0x7b, 0x24, 0x7a, + 0x13, 0x9d, 0xab, 0x7d, 0x50, 0xc8, 0xa8, 0xe1, 0xb4, 0xc8, 0x6c, 0x37, 0xf2, 0x2d, 0x7f, 0x49, + 0x29, 0x5f, 0x3f, 0xaf, 0x9b, 0x55, 0xb8, 0xfa, 0x68, 0x15, 0x81, 0x4d, 0xd4, 0x79, 0x8b, 0x2c, + 0x84, 0x51, 0x77, 0xdf, 0xeb, 0xd4, 0xfc, 0xae, 0xdf, 0x69, 0xa1, 0xce, 0x2c, 0x9c, 0x62, 0xe7, + 0x68, 0xdd, 0x85, 0x5b, 0x29, 0x18, 0xf4, 0x61, 0xbb, 0xbf, 0x48, 0xed, 0xc5, 0x5a, 0x78, 0xaf, + 0x73, 0xcf, 0x8b, 0x5a, 0x2b, 0xf5, 0x4d, 0xae, 0x08, 0x33, 0x27, 0xa3, 0x74, 0x6e, 0x96, 0x06, + 0x3a, 0x37, 0xbf, 0x42, 0xa6, 0x76, 0x03, 0xbf, 0xdd, 0x42, 0x2f, 0x24, 0x1f, 0xde, 0xe5, 0x22, + 0x1e, 0x8d, 0x0d, 0xac, 0x23, 0xbd, 0x02, 0xdc, 0xb7, 0xba, 0x21, 0xc8, 0x80, 0x22, 0xe8, 0xf4, + 0xc8, 0x82, 0xd4, 0xf4, 0x25, 0x54, 0xac, 0x8e, 0x57, 0x8a, 0x19, 0x12, 0x76, 0x33, 0x6c, 0x3e, + 0x20, 0x45, 0x10, 0xfa, 0x9a, 0x40, 0x0b, 0xed, 0x00, 0x77, 0x87, 0x31, 0xc6, 0x2b, 0xcc, 0x42, + 0x63, 0x26, 0x24, 0x2b, 0x75, 0xff, 0x51, 0x89, 0x3c, 0xda, 0x37, 0x5b, 0xc2, 0xbe, 0xfe, 0x92, + 0x34, 0x6c, 0xf9, 0x49, 0x44, 0x4e, 0x2f, 0x33, 0xe7, 0xbc, 0x98, 0x91, 0x5b, 0x2e, 0x60, 0xe4, + 0xde, 0x22, 0xe7, 0xd6, 0x0f, 0xba, 0xc9, 0x11, 0x35, 0x11, 0xad, 0x4e, 0xbe, 0x4e, 0x26, 0x0e, + 0xfc, 0x56, 0xd0, 0x3b, 0x10, 0x9f, 0xf5, 0x49, 0x29, 0x48, 0x6f, 0xb0, 0x52, 0xaa, 0x25, 0xcd, + 0xe2, 0x39, 0x1f, 0x5d, 0x80, 0xbc, 0x00, 0x04, 0xba, 0xfb, 0xc3, 0x12, 0x99, 0x97, 0x0b, 0x6a, + 0xa5, 0xd5, 0xa2, 0xf3, 0x16, 0x3b, 0x4b, 0xa4, 0x1c, 0x74, 0x05, 0x21, 0x22, 0x08, 0x95, 0xa9, + 0xd2, 0x44, 0x4b, 0xa9, 0x06, 0x53, 0xe5, 0xae, 0x7c, 0xcd, 0x1c, 0x43, 0x1e, 0x0d, 0x30, 0xeb, + 0x63, 0x5b, 0xd2, 0x00, 0x4d, 0x4e, 0x6a, 0x96, 0x4c, 0x54, 0x57, 0x6c, 0xc7, 0xf2, 0x35, 0x51, + 0x0e, 0x0a, 0x03, 0xdd, 0xf9, 0x78, 0x22, 0xc7, 0x4e, 0x59, 0xf8, 0xb6, 0xcb, 0x58, 0xee, 0xa6, + 0x28, 0x03, 0x05, 0x75, 0x7f, 0xb6, 0x44, 0x66, 0xe4, 0x18, 0x0b, 0x2a, 0xb9, 0xb8, 0x48, 0xb4, + 0x82, 0xab, 0x17, 0x09, 0x2a, 0xa9, 0x0c, 0x62, 0xe9, 0xa6, 0x95, 0x61, 0x74, 0x53, 0xf7, 0x3b, + 0x54, 0xe7, 0x94, 0xdd, 0x69, 0xf4, 0x76, 0x62, 0x3f, 0x71, 0xbe, 0x4a, 0xaa, 0x1e, 0x9f, 0x7c, + 0x5f, 0xf2, 0xd9, 0xc5, 0x3c, 0x0b, 0xdd, 0xfa, 0x66, 0x5a, 0x31, 0x58, 0x91, 0x74, 0x40, 0x93, + 0x74, 0x0e, 0xc9, 0x99, 0x4e, 0x98, 0xb0, 0xfd, 0x40, 0xc1, 0x8b, 0x79, 0x44, 0xd3, 0xed, 0x3c, + 0x26, 0xda, 0x39, 0x73, 0x33, 0x4d, 0x0f, 0xfa, 0x9b, 0xa0, 0x76, 0x9f, 0xf0, 0x62, 0x54, 0x58, + 0x5b, 0x17, 0x8a, 0xb5, 0x35, 0xd8, 0x89, 0xe1, 0xfe, 0x66, 0x89, 0x54, 0x25, 0xda, 0x28, 0x7d, + 0xe2, 0x77, 0xc8, 0x64, 0xcc, 0x3e, 0x8d, 0x9c, 0xa6, 0x97, 0x8a, 0x75, 0x9d, 0x7f, 0x4f, 0xbd, + 0xf9, 0xf1, 0xdf, 0x31, 0x48, 0x6a, 0xcc, 0x0d, 0xa9, 0x06, 0xf0, 0xf0, 0xb9, 0x21, 0x55, 0xd7, + 0x06, 0xb8, 0x21, 0xff, 0x71, 0x89, 0x4c, 0x70, 0xe7, 0x50, 0x31, 0x0f, 0x9b, 0xe1, 0x4b, 0xd6, + 0x14, 0x6f, 0x63, 0xa1, 0x70, 0x2d, 0xd3, 0x99, 0xae, 0xb2, 0x7f, 0x36, 0xa2, 0xf0, 0x40, 0x6c, + 0x04, 0x17, 0x8a, 0x38, 0xa7, 0xb8, 0xe0, 0xe3, 0xd2, 0xe4, 0xb6, 0x24, 0x00, 0x9a, 0x96, 0xfb, + 0x1b, 0x15, 0x5c, 0xf5, 0x1a, 0xd5, 0xda, 0xd6, 0x4a, 0xa7, 0xb1, 0xad, 0x95, 0x47, 0xbf, 0xad, + 0xbd, 0x4f, 0xe6, 0x9b, 0x86, 0x4f, 0x5e, 0x6f, 0xa6, 0x57, 0x0a, 0xba, 0x9b, 0x0d, 0x47, 0x3e, + 0x77, 0x86, 0xac, 0xd9, 0xe4, 0x20, 0x4d, 0xdf, 0xf1, 0xc9, 0x0c, 0x3f, 0x50, 0x14, 0xed, 0x8d, + 0xe5, 0xf2, 0x2c, 0xf7, 0xbb, 0xf0, 0x1a, 0xaa, 0x31, 0x16, 0x60, 0xd1, 0x30, 0x08, 0x81, 0x45, + 0xd6, 0xfd, 0x1b, 0xe3, 0x64, 0x7c, 0xfd, 0x90, 0xea, 0x32, 0x23, 0x5c, 0xe5, 0x07, 0x64, 0x2e, + 0xe8, 0x1c, 0x86, 0xed, 0x43, 0xbf, 0xc5, 0xe1, 0x27, 0xdb, 0xd1, 0x1e, 0x11, 0x8d, 0xcc, 0x6d, + 0x5a, 0xc4, 0x20, 0x45, 0x7c, 0x14, 0xf6, 0xe4, 0xdb, 0xd4, 0x94, 0x65, 0x1c, 0x21, 0x8c, 0xc9, + 0x1c, 0x27, 0x29, 0x9b, 0x50, 0xb1, 0x72, 0xb4, 0xd5, 0xcb, 0xfd, 0xb3, 0x82, 0x90, 0x73, 0x97, + 0xcc, 0xed, 0x06, 0x11, 0xb5, 0x38, 0xa8, 0x41, 0x48, 0xad, 0x80, 0x83, 0xee, 0x49, 0x0c, 0x49, + 0x35, 0x25, 0x1b, 0x16, 0x29, 0x48, 0x91, 0xa6, 0x46, 0xd2, 0x2c, 0xda, 0x31, 0xba, 0xad, 0xc9, + 0xe1, 0xdb, 0x52, 0xbe, 0xa4, 0x2d, 0x93, 0x12, 0xd8, 0x84, 0x51, 0x18, 0x35, 0x99, 0xe1, 0x33, + 0xc5, 0xb6, 0x74, 0x25, 0x8c, 0xb8, 0xc5, 0xc3, 0x61, 0x28, 0xd3, 0xd8, 0xf9, 0x71, 0xd5, 0x96, + 0x69, 0xfa, 0x94, 0xd8, 0xfd, 0x16, 0x6e, 0x40, 0x38, 0x8b, 0xa7, 0x21, 0xbb, 0xaf, 0xd9, 0xb2, + 0xfb, 0xd3, 0x05, 0x3e, 0xee, 0x00, 0xb9, 0xfd, 0x1e, 0x99, 0x36, 0xbe, 0x3d, 0x3a, 0x0a, 0x9b, + 0xf2, 0xa8, 0x53, 0x08, 0x70, 0xa5, 0x40, 0xa8, 0x33, 0x50, 0xd0, 0x38, 0x38, 0x31, 0xa8, 0x78, + 0xa5, 0x23, 0x22, 0x50, 0x2d, 0x03, 0x06, 0x71, 0x5f, 0x21, 0x64, 0xfd, 0xbe, 0xdf, 0x5c, 0x69, + 0xb2, 0x83, 0x78, 0xe3, 0xdc, 0xa4, 0x34, 0xf8, 0xdc, 0xc4, 0x7d, 0x97, 0x6e, 0x86, 0xf7, 0x71, + 0x67, 0x97, 0x66, 0x1a, 0x5d, 0x22, 0x3e, 0x2b, 0x60, 0xbd, 0x9a, 0xd2, 0x4c, 0xca, 0xd1, 0x40, + 0x40, 0xd9, 0x31, 0xfa, 0x7d, 0x4f, 0x2c, 0x58, 0xc3, 0xe4, 0x5d, 0xc7, 0x42, 0xe0, 0x30, 0xf7, + 0x9b, 0x25, 0x32, 0xb7, 0xb1, 0x66, 0xe9, 0xc9, 0xcb, 0x84, 0x70, 0x7d, 0xf3, 0xce, 0x9d, 0x9b, + 0xd2, 0x8f, 0xca, 0x9d, 0x5d, 0xaa, 0x14, 0x0c, 0x0c, 0xe7, 0x31, 0x52, 0x69, 0xf7, 0x3a, 0x42, + 0x0d, 0x9c, 0x44, 0xff, 0xec, 0x56, 0xaf, 0x03, 0x58, 0x66, 0x04, 0x36, 0x54, 0x0a, 0x07, 0x36, + 0xe4, 0x87, 0xb1, 0xfd, 0x7c, 0x85, 0x2c, 0x6c, 0xb4, 0xfd, 0xfb, 0x56, 0xaf, 0x69, 0x53, 0xad, + 0x28, 0xa0, 0xcc, 0x93, 0x76, 0x93, 0xd4, 0x58, 0x29, 0x08, 0x68, 0xe1, 0x58, 0x0b, 0x2b, 0xce, + 0xa4, 0x32, 0xe2, 0x38, 0x93, 0xdc, 0x31, 0x3b, 0xbb, 0x64, 0x32, 0xe4, 0xdf, 0x9f, 0x4a, 0x31, + 0x64, 0xf4, 0xcf, 0x1d, 0xdf, 0x99, 0xf4, 0xfc, 0x2c, 0x0b, 0xee, 0xe1, 0x87, 0xde, 0x4a, 0x58, + 0x8a, 0x52, 0x90, 0xc4, 0x97, 0x3e, 0x4b, 0x66, 0x4c, 0xcc, 0xa1, 0x4e, 0xbf, 0xb7, 0xc8, 0xd9, + 0x0d, 0x8c, 0x96, 0x4c, 0xc5, 0xc2, 0xbc, 0x46, 0x4d, 0x38, 0xba, 0x52, 0x63, 0x2b, 0x40, 0x4c, + 0xf9, 0x32, 0x6a, 0x1a, 0x04, 0x26, 0x9e, 0xfb, 0x9f, 0x4a, 0xe4, 0xf1, 0xab, 0x6b, 0xeb, 0x75, + 0x14, 0x07, 0x71, 0x42, 0x17, 0x58, 0x2d, 0x88, 0xef, 0xa6, 0x3f, 0x79, 0xb7, 0x65, 0xd0, 0x54, + 0x9f, 0xb2, 0x5e, 0x63, 0xe4, 0x04, 0xf4, 0x61, 0x89, 0xbe, 0xa4, 0x7a, 0xe1, 0xd9, 0xab, 0x01, + 0xfd, 0xf6, 0xdd, 0x30, 0x1d, 0x3f, 0x17, 0xd1, 0xb2, 0x18, 0xe3, 0xaa, 0x8e, 0xd2, 0xf1, 0x73, + 0xa0, 0x20, 0x60, 0x60, 0xf1, 0x96, 0x0f, 0x03, 0x14, 0x94, 0x62, 0x50, 0x46, 0xcb, 0xbc, 0x1c, + 0x14, 0x06, 0x0e, 0xac, 0x15, 0x44, 0x4c, 0xa7, 0x38, 0x12, 0x2b, 0x51, 0x0d, 0xac, 0x26, 0x01, + 0xa0, 0x71, 0xdc, 0xbf, 0x53, 0x22, 0xe7, 0xaf, 0xb6, 0x7b, 0x74, 0xda, 0xa3, 0xdd, 0xd8, 0xea, + 0xec, 0x2b, 0xa4, 0xea, 0x4b, 0xfd, 0x57, 0xf4, 0x55, 0xed, 0x2d, 0x4a, 0x31, 0xe6, 0xc1, 0x7b, + 0x0a, 0xaf, 0x40, 0xac, 0xd8, 0x70, 0x91, 0x4d, 0xff, 0xaa, 0x4c, 0x66, 0xaf, 0x6d, 0x6f, 0xd7, + 0xaf, 0xfa, 0x89, 0x90, 0xa5, 0xf9, 0x0e, 0x9b, 0xba, 0x61, 0xad, 0x4e, 0x5f, 0x59, 0x1e, 0xb0, + 0x7a, 0x30, 0x2e, 0x78, 0x99, 0xc7, 0x05, 0x2f, 0x6f, 0x76, 0x92, 0x5b, 0x51, 0x23, 0x89, 0xf0, + 0x38, 0x21, 0xcb, 0xba, 0x95, 0xf2, 0xbe, 0x32, 0x48, 0xde, 0xd3, 0xc9, 0x9a, 0x88, 0x9b, 0xfb, + 0xbe, 0x32, 0xbe, 0x3f, 0xa9, 0xd4, 0x09, 0x56, 0x4a, 0x6d, 0xdf, 0xea, 0x3b, 0xb0, 0xc9, 0x7f, + 0x80, 0x40, 0xa5, 0x82, 0x67, 0x7a, 0x3f, 0x49, 0xba, 0xd7, 0xe8, 0x60, 0x29, 0xeb, 0x8b, 0xd5, + 0x9e, 0xa3, 0xcd, 0xe1, 0x64, 0xf0, 0x0a, 0x7a, 0x61, 0xe9, 0xb2, 0x18, 0x4c, 0x8a, 0x6e, 0x83, + 0x10, 0x0d, 0x7b, 0x40, 0x26, 0x8a, 0xfb, 0x17, 0xcb, 0x64, 0xf2, 0x1a, 0xdd, 0xae, 0xda, 0x94, + 0xe4, 0x06, 0x19, 0xf3, 0xe9, 0x36, 0x57, 0x4c, 0x11, 0xd5, 0x1b, 0x22, 0xf7, 0x38, 0xe1, 0x6f, + 0x60, 0xf5, 0x1d, 0x20, 0x93, 0xd8, 0xef, 0xab, 0x2a, 0xc0, 0xf2, 0xc5, 0xfc, 0x59, 0x50, 0x2c, + 0xc1, 0x77, 0x53, 0x51, 0x04, 0x92, 0x10, 0xf3, 0xcd, 0x34, 0xbb, 0x0d, 0x94, 0x52, 0x49, 0xb1, + 0x78, 0xe1, 0xed, 0xb5, 0x3a, 0x47, 0x17, 0x74, 0xb9, 0x6f, 0x46, 0x16, 0x82, 0x26, 0xe7, 0xbe, + 0x41, 0xce, 0xb1, 0xd3, 0x3d, 0xca, 0x6e, 0xd6, 0x9a, 0xc9, 0x65, 0x4e, 0xf7, 0xef, 0x97, 0xc9, + 0x99, 0xcd, 0xc6, 0x5a, 0xc3, 0xf6, 0xaa, 0xbd, 0x41, 0x66, 0xf8, 0x36, 0x8b, 0x4c, 0xe7, 0xb5, + 0x45, 0x7d, 0xe5, 0x8e, 0xde, 0x36, 0x60, 0x60, 0x61, 0xe2, 0xb1, 0x69, 0xf0, 0x7e, 0x27, 0x1d, + 0xe7, 0xb3, 0xf9, 0xf6, 0x4d, 0xc0, 0x72, 0x04, 0xe3, 0x8e, 0xcd, 0x45, 0x9c, 0x02, 0xab, 0x5d, + 0xfb, 0x0b, 0x54, 0xe5, 0x8f, 0x9b, 0x71, 0x40, 0x17, 0x00, 0x5d, 0xff, 0x5e, 0x53, 0xb2, 0xaf, + 0xd6, 0xe1, 0xb1, 0xab, 0x0a, 0x0a, 0x29, 0x6c, 0x43, 0xde, 0x8e, 0x17, 0xde, 0xf5, 0xf3, 0x23, + 0x2d, 0xbf, 0x46, 0xaa, 0x2a, 0x22, 0x46, 0x06, 0x32, 0x95, 0xb2, 0x03, 0x99, 0x0a, 0x08, 0x1c, + 0xe9, 0xeb, 0xac, 0x64, 0xfa, 0x3a, 0xff, 0x19, 0xd5, 0x60, 0xd5, 0xe1, 0x3f, 0xe5, 0xc3, 0x2a, + 0x15, 0xbc, 0x09, 0x3b, 0x4e, 0x12, 0x4c, 0xfd, 0x6c, 0x0e, 0x27, 0xf2, 0x95, 0xc0, 0x79, 0xa5, + 0x2e, 0xeb, 0x82, 0x26, 0xe3, 0x6c, 0x91, 0xc9, 0x6e, 0xe4, 0x37, 0x12, 0x16, 0xae, 0x3b, 0x04, + 0x45, 0xc6, 0xd5, 0x75, 0x5e, 0x13, 0x24, 0x09, 0xf7, 0xd7, 0x4a, 0x84, 0x6c, 0x05, 0x07, 0x74, + 0x73, 0xf1, 0x3a, 0x7b, 0xfe, 0x08, 0xad, 0xc1, 0x9b, 0x64, 0x2c, 0xee, 0xd2, 0xa5, 0x5d, 0xe8, + 0x08, 0x48, 0xf7, 0xa8, 0x41, 0xeb, 0xe8, 0xcf, 0x80, 0xbf, 0x80, 0xd1, 0x71, 0x7f, 0x89, 0x90, + 0x39, 0x8d, 0x86, 0xea, 0xb8, 0x73, 0xd1, 0x8a, 0x4f, 0x7d, 0x2c, 0x15, 0x9f, 0x5a, 0x65, 0xd8, + 0x46, 0x48, 0x6a, 0x42, 0x2a, 0x07, 0xde, 0x7d, 0xa1, 0xfd, 0xbf, 0x56, 0xb4, 0x43, 0xd8, 0xd2, + 0xf2, 0x0d, 0xef, 0x3e, 0x57, 0x87, 0x5e, 0x94, 0x0c, 0x44, 0x4b, 0x3e, 0xe2, 0x07, 0x3d, 0x6c, + 0x05, 0xa2, 0xb9, 0xf1, 0x53, 0xff, 0x55, 0xff, 0x66, 0x42, 0x11, 0x9b, 0x63, 0xad, 0x06, 0x1d, + 0xe1, 0xb2, 0x1b, 0xb2, 0xd5, 0xa0, 0x93, 0x6e, 0x35, 0xe8, 0x14, 0x68, 0x35, 0xe8, 0x60, 0x18, + 0xdb, 0xa4, 0xf0, 0x74, 0xb3, 0x30, 0xaa, 0xe9, 0x2b, 0x6f, 0x0e, 0xd5, 0xb4, 0x70, 0x99, 0xf3, + 0xe6, 0x2f, 0x49, 0x1d, 0x50, 0x94, 0xe6, 0x76, 0x41, 0x36, 0xed, 0xfc, 0x02, 0xb5, 0x19, 0xc4, + 0xff, 0x18, 0xb1, 0x44, 0x8d, 0x47, 0xb1, 0x4b, 0xbd, 0x75, 0x92, 0xde, 0x08, 0x12, 0xbc, 0x53, + 0x3f, 0x22, 0x45, 0x8c, 0x0d, 0xcc, 0xed, 0x5b, 0xaa, 0x3f, 0xce, 0xb7, 0x4b, 0xe4, 0x1c, 0xfd, + 0x4e, 0xbc, 0x45, 0x5e, 0x06, 0x78, 0x30, 0x28, 0x42, 0xc5, 0x36, 0x86, 0xe5, 0x93, 0x3e, 0x42, + 0xbc, 0xbb, 0x9f, 0x97, 0xc7, 0x8f, 0x59, 0x28, 0xb9, 0x9d, 0xce, 0xec, 0xe1, 0x52, 0x8b, 0x4c, + 0x49, 0xc6, 0xcc, 0xd0, 0xbe, 0x57, 0xcd, 0xcd, 0xf8, 0xf8, 0x15, 0x28, 0x1d, 0x61, 0xcb, 0x6f, + 0xf7, 0xbc, 0x4e, 0x82, 0xa1, 0xff, 0x5a, 0x57, 0x67, 0xad, 0x08, 0x46, 0x1c, 0x61, 0x2b, 0xfb, + 0x64, 0xc6, 0xe4, 0xb9, 0x11, 0xb6, 0x14, 0x92, 0xb3, 0x19, 0xfc, 0x34, 0xc2, 0x06, 0x7b, 0xe4, + 0xb1, 0x81, 0x7c, 0x31, 0xba, 0x66, 0xd1, 0xb9, 0x6f, 0x08, 0xcc, 0xd3, 0x70, 0xb0, 0xdc, 0xb0, + 0x1d, 0x2c, 0xcf, 0x17, 0x5d, 0x3a, 0x03, 0xbc, 0x2c, 0xbb, 0x66, 0xff, 0x71, 0x27, 0x70, 0xb6, + 0xc9, 0x44, 0x1b, 0x4b, 0xe4, 0xa9, 0xce, 0x4b, 0xc3, 0x2c, 0x4e, 0xad, 0x5c, 0xb0, 0xf2, 0x18, + 0x04, 0x2d, 0xf7, 0xd7, 0x4b, 0x64, 0xec, 0x34, 0xa6, 0xa7, 0x6e, 0x4f, 0xcf, 0x20, 0x15, 0x55, + 0xdc, 0x4f, 0x5c, 0x06, 0xef, 0xde, 0xfa, 0x7d, 0x6a, 0xcd, 0xc6, 0x4c, 0x95, 0xcc, 0x9c, 0xa1, + 0x5f, 0x2c, 0x93, 0x69, 0x6c, 0x48, 0xfa, 0x7b, 0x3e, 0x87, 0xfe, 0xbf, 0x1d, 0xbf, 0x2d, 0xdd, + 0xc2, 0x69, 0xb3, 0x6b, 0xcb, 0x04, 0x82, 0x8d, 0x8b, 0x95, 0x77, 0x4d, 0xaf, 0xb9, 0x50, 0x89, + 0x54, 0x65, 0xcb, 0xa5, 0x0e, 0x36, 0x2e, 0x6a, 0xfe, 0xf7, 0xbc, 0xa4, 0xb9, 0x2f, 0x4c, 0x32, + 0xd5, 0xdd, 0x3b, 0x58, 0x08, 0x1c, 0xe6, 0xac, 0x90, 0x79, 0xc9, 0xb1, 0xb7, 0xf9, 0xd4, 0x09, + 0x75, 0x51, 0xdd, 0x2d, 0x03, 0x1b, 0x0c, 0x69, 0x7c, 0xe7, 0xb3, 0x64, 0x0e, 0x27, 0x27, 0xec, + 0x25, 0x32, 0xe8, 0x60, 0x9c, 0x05, 0x1d, 0xb0, 0x20, 0xcf, 0x6d, 0x0b, 0x02, 0x29, 0x4c, 0xf7, + 0xc7, 0xc9, 0xd9, 0xad, 0xd0, 0x6b, 0xad, 0x7a, 0x6d, 0xaf, 0xd3, 0xf4, 0xa3, 0xcd, 0xce, 0x5e, + 0xee, 0xf9, 0xac, 0x79, 0x86, 0x5a, 0xce, 0x3b, 0x43, 0x75, 0x23, 0xe2, 0x98, 0x0d, 0x88, 0x70, + 0x99, 0x77, 0xc9, 0x64, 0xc0, 0x9b, 0x12, 0x5c, 0x7b, 0x39, 0xcf, 0x39, 0xd4, 0xd7, 0x47, 0x23, + 0xfc, 0x83, 0x17, 0x80, 0x24, 0x89, 0x96, 0x44, 0x96, 0x37, 0x29, 0xdf, 0x58, 0x73, 0xff, 0x4a, + 0x89, 0xcc, 0xdf, 0x4c, 0x5d, 0xea, 0xc2, 0x58, 0x2e, 0x3f, 0xca, 0x70, 0x8d, 0x35, 0x58, 0x29, + 0x08, 0xe8, 0x03, 0x37, 0xd3, 0xff, 0x6a, 0x99, 0x54, 0x59, 0xec, 0x65, 0xd7, 0x6b, 0x8e, 0x52, + 0x29, 0xbd, 0x61, 0x29, 0xa5, 0x39, 0x46, 0xa2, 0xea, 0xd0, 0x20, 0x9d, 0x14, 0xaf, 0xf5, 0x89, + 0x4b, 0x4e, 0x85, 0xec, 0x43, 0x4d, 0x90, 0xdf, 0x87, 0x99, 0xb3, 0xef, 0x44, 0xc9, 0x0b, 0x50, + 0xec, 0x54, 0x53, 0xe1, 0x3e, 0x7c, 0xa7, 0x9a, 0xaa, 0x6b, 0x03, 0xa4, 0x52, 0xdd, 0xe8, 0x3d, + 0x13, 0xdb, 0x5f, 0x64, 0x81, 0x74, 0x5e, 0x3b, 0xf8, 0xc0, 0x57, 0x97, 0x05, 0x9f, 0x14, 0x71, + 0x71, 0xa2, 0xf4, 0x23, 0x26, 0x60, 0xc4, 0x2f, 0x7e, 0x07, 0x54, 0x57, 0x71, 0xaf, 0x51, 0x4e, + 0xb5, 0xe7, 0xce, 0x79, 0x8d, 0x8c, 0x77, 0xf7, 0xbd, 0xd8, 0x4f, 0x45, 0x68, 0x8c, 0xd7, 0xb1, + 0x90, 0x52, 0x9b, 0x53, 0x15, 0x58, 0x09, 0x70, 0x6c, 0xf7, 0x8f, 0xa9, 0xac, 0xc7, 0x98, 0x86, + 0x11, 0xf2, 0xd8, 0x35, 0x8b, 0xc7, 0x9e, 0xcb, 0xbf, 0x25, 0x3d, 0x90, 0xbd, 0xea, 0x29, 0xf6, + 0x7a, 0xbe, 0x00, 0xad, 0xe3, 0x39, 0xeb, 0x80, 0x4c, 0xb3, 0x5b, 0xd8, 0x22, 0x34, 0xe5, 0x15, + 0xcb, 0x80, 0x7a, 0x32, 0x65, 0x40, 0xcd, 0x1b, 0xa8, 0x86, 0x19, 0xf5, 0x02, 0x99, 0x14, 0xa1, + 0x10, 0xe9, 0xe8, 0x41, 0x81, 0x0b, 0x12, 0xee, 0xfe, 0x6a, 0x85, 0x58, 0xb7, 0xbe, 0x9d, 0xef, + 0x96, 0x08, 0x55, 0x5a, 0xd8, 0xd5, 0x85, 0x56, 0xad, 0x87, 0xfe, 0x32, 0x74, 0x69, 0xb5, 0x7a, + 0x6d, 0xfa, 0xdf, 0xe6, 0x5e, 0x27, 0x54, 0xc5, 0xe8, 0xdb, 0xe9, 0x31, 0xef, 0x6a, 0xe1, 0xcb, + 0xe6, 0xea, 0x2c, 0xf4, 0x0a, 0xed, 0xcb, 0x32, 0x0c, 0xd5, 0x0a, 0x0c, 0xd9, 0x2b, 0xe7, 0x77, + 0x4b, 0xe4, 0x12, 0xbf, 0xf7, 0x5c, 0x7c, 0x24, 0x85, 0x0c, 0xcf, 0xba, 0x24, 0xaa, 0xc9, 0x61, + 0xb0, 0xe2, 0xea, 0xeb, 0x62, 0x92, 0x2f, 0xd5, 0x87, 0x6b, 0x15, 0x86, 0xed, 0xa6, 0xfb, 0x6f, + 0x2a, 0x74, 0xfd, 0xd2, 0xf9, 0xd4, 0xf7, 0x40, 0x5f, 0xb3, 0xd8, 0xe4, 0xe9, 0x14, 0x9b, 0x9c, + 0xb1, 0x90, 0x1f, 0xcc, 0x15, 0xd0, 0x84, 0x9c, 0xc1, 0xf3, 0xc6, 0x6b, 0xbe, 0x17, 0x25, 0x3b, + 0xbe, 0xc7, 0x0e, 0x1e, 0xc5, 0x22, 0x18, 0xea, 0x30, 0x53, 0xc5, 0xd7, 0x6c, 0xa5, 0xa9, 0x41, + 0x7f, 0x03, 0xce, 0x3d, 0xe2, 0xb0, 0x53, 0xce, 0xc8, 0xa3, 0x4a, 0x17, 0x1b, 0x4c, 0x20, 0x1c, + 0xb2, 0x43, 0x36, 0xbb, 0x24, 0x9a, 0x75, 0xb6, 0xfa, 0xc8, 0x41, 0x46, 0x13, 0xc6, 0x51, 0xf6, + 0x78, 0xd1, 0xa3, 0xec, 0x89, 0x9c, 0xc0, 0xdd, 0x9f, 0x29, 0x91, 0xb3, 0xf8, 0x61, 0xec, 0x20, + 0xcf, 0xd8, 0x09, 0xc9, 0x3c, 0x8e, 0xa0, 0xed, 0x27, 0xb2, 0x4c, 0xac, 0xb0, 0x1c, 0x5d, 0xda, + 0xa6, 0xa3, 0x35, 0xb6, 0xeb, 0x36, 0x31, 0x48, 0x53, 0x77, 0x7f, 0xb5, 0x44, 0x58, 0x14, 0xd9, + 0x69, 0xec, 0x63, 0x57, 0xed, 0x7d, 0xcc, 0xcd, 0x17, 0x1a, 0x03, 0xb6, 0xb0, 0x57, 0xc9, 0x02, + 0x42, 0xeb, 0x51, 0x78, 0xff, 0x48, 0x2a, 0xd7, 0xf9, 0xbe, 0xd9, 0xbf, 0x5c, 0xe2, 0xe2, 0x4e, + 0x69, 0xc5, 0xf7, 0x30, 0x50, 0x4c, 0xff, 0xc6, 0x85, 0x2c, 0x95, 0xc0, 0xe5, 0xe2, 0x02, 0x8d, + 0xad, 0x7f, 0x23, 0x52, 0x2c, 0x45, 0x10, 0xfa, 0xdb, 0x70, 0xff, 0x41, 0x89, 0x3c, 0x6a, 0x22, + 0x1a, 0xd7, 0xc5, 0xf2, 0x1c, 0xa2, 0x35, 0x32, 0x15, 0x76, 0x31, 0xcb, 0x89, 0xb2, 0x00, 0x9e, + 0x97, 0x33, 0x7e, 0x4b, 0x94, 0xd3, 0x95, 0x7b, 0xce, 0xa4, 0x2e, 0xcb, 0x41, 0xd5, 0x74, 0x5c, + 0x32, 0xc1, 0x2c, 0xd1, 0x58, 0x5c, 0xf4, 0x23, 0xc8, 0xcd, 0xec, 0x18, 0x80, 0x2e, 0x72, 0x0e, + 0x71, 0xff, 0x5a, 0x89, 0xcf, 0xb2, 0xd9, 0x75, 0xe7, 0xeb, 0x64, 0xe1, 0x00, 0x8d, 0x85, 0xf5, + 0xfb, 0x5d, 0xdc, 0x42, 0xd8, 0x31, 0x66, 0xa9, 0x88, 0xe0, 0x1c, 0x30, 0xdc, 0xd5, 0x45, 0xd1, + 0xfb, 0x85, 0x1b, 0x29, 0xb2, 0xd0, 0xd7, 0x90, 0xfb, 0x7b, 0x82, 0x57, 0x99, 0xd6, 0x42, 0x17, + 0x5b, 0x37, 0x6c, 0xad, 0x6d, 0xd6, 0x40, 0xcc, 0x95, 0x5a, 0x6c, 0x75, 0x5e, 0x0c, 0x12, 0x8e, + 0xe7, 0x72, 0x3e, 0x35, 0xd5, 0x22, 0xaa, 0xb0, 0x6c, 0xd6, 0xd2, 0xa9, 0x3a, 0xd6, 0x15, 0x04, + 0x0c, 0x2c, 0xac, 0xd3, 0x8d, 0xc2, 0xc3, 0xa0, 0xc5, 0xc2, 0xb6, 0x2b, 0x76, 0x9d, 0xba, 0x82, + 0x80, 0x81, 0x85, 0x26, 0x5a, 0xaf, 0x13, 0x73, 0x01, 0xee, 0xed, 0x88, 0x44, 0x08, 0x53, 0xda, + 0x44, 0x7b, 0xc7, 0x04, 0x82, 0x8d, 0xeb, 0x7e, 0xbf, 0x4a, 0x88, 0x56, 0x11, 0xd0, 0x43, 0x38, + 0xd5, 0xf4, 0xa8, 0x82, 0xc4, 0x33, 0xba, 0x54, 0xf2, 0xef, 0xb7, 0xe8, 0xca, 0xcb, 0x6b, 0xa2, + 0x22, 0xf7, 0x6d, 0xbd, 0x2c, 0x19, 0x44, 0x16, 0xe7, 0xfa, 0xb3, 0x54, 0xcb, 0xce, 0x37, 0x4a, + 0x64, 0xda, 0x6b, 0xe3, 0x1d, 0xd8, 0x84, 0x8d, 0xa8, 0x5c, 0xc4, 0x59, 0x69, 0xf4, 0x64, 0x45, + 0xd7, 0xe5, 0x9d, 0x79, 0x45, 0x9e, 0x6a, 0x19, 0x90, 0xdc, 0xfe, 0x98, 0x5d, 0x70, 0x5e, 0x96, + 0xaa, 0x25, 0xff, 0x28, 0x4b, 0x69, 0xd5, 0xb2, 0xca, 0x44, 0x83, 0xa1, 0x55, 0xe2, 0x4d, 0x11, + 0x23, 0x86, 0x7d, 0xac, 0xc8, 0x1d, 0x53, 0x6b, 0xd3, 0xcc, 0xbb, 0xee, 0x8f, 0x67, 0x51, 0x3a, + 0xa2, 0x75, 0xbc, 0xc8, 0x05, 0x4e, 0x43, 0x77, 0xcb, 0x89, 0x66, 0x4d, 0xc8, 0x7c, 0xcb, 0xde, + 0x24, 0x44, 0x88, 0xd2, 0xe5, 0xfc, 0x16, 0x52, 0xbb, 0x8b, 0xde, 0x16, 0x52, 0x00, 0x48, 0x37, + 0x41, 0x47, 0xc4, 0x22, 0x8a, 0x37, 0x3b, 0xbb, 0xa1, 0x88, 0x52, 0x7a, 0xa9, 0xc0, 0x37, 0x3f, + 0x8a, 0xa9, 0x78, 0xc6, 0x3a, 0x7a, 0x1b, 0xb8, 0x29, 0xa8, 0x80, 0xa2, 0x87, 0x6e, 0x22, 0x76, + 0x3b, 0x02, 0xef, 0xd4, 0x56, 0x86, 0xb8, 0x28, 0xc2, 0xee, 0x56, 0xe8, 0xcd, 0x97, 0xfd, 0xa4, + 0xe2, 0x8a, 0xd3, 0xa2, 0x7a, 0xbd, 0xb8, 0xf2, 0x1a, 0x6f, 0x76, 0xde, 0x89, 0x7d, 0x76, 0x8f, + 0xb6, 0xba, 0xfa, 0x8c, 0xbe, 0x18, 0xcb, 0xcb, 0x33, 0x33, 0xfa, 0x58, 0x35, 0x71, 0x0f, 0x16, + 0xbf, 0x65, 0xa2, 0xa0, 0x45, 0x52, 0xa4, 0xa3, 0x76, 0x5a, 0x21, 0x3d, 0xd9, 0xb7, 0x6d, 0x62, + 0x90, 0xa6, 0xbe, 0x14, 0x90, 0x59, 0x6b, 0xc5, 0x8e, 0xd0, 0xd9, 0xd9, 0x26, 0x0b, 0xe9, 0x25, + 0x39, 0x42, 0x1f, 0xe7, 0x1f, 0x8d, 0x91, 0x39, 0x9b, 0x31, 0x30, 0x82, 0xe1, 0x80, 0x8e, 0x9a, + 0x7e, 0x4f, 0x95, 0x50, 0x45, 0xf1, 0xff, 0x0d, 0x09, 0x00, 0x8d, 0xc3, 0x52, 0xcb, 0xb0, 0xea, + 0xef, 0xbc, 0xd3, 0x2f, 0xbc, 0x1b, 0x0a, 0x02, 0x06, 0x16, 0x2a, 0x6c, 0x3b, 0x61, 0x98, 0x28, + 0xc1, 0xad, 0x78, 0x66, 0x95, 0x95, 0x82, 0x80, 0xa2, 0xc0, 0xbe, 0x8b, 0x03, 0x6a, 0xdb, 0xfe, + 0x2e, 0x25, 0xb0, 0xaf, 0x9b, 0x40, 0xb0, 0x71, 0x71, 0x03, 0x0a, 0x63, 0xc6, 0x84, 0x42, 0x2d, + 0xd4, 0xb1, 0x38, 0x0d, 0x7e, 0x5b, 0x48, 0xc2, 0x9d, 0x2f, 0x93, 0x47, 0xd5, 0xe5, 0x1e, 0xe0, + 0xfe, 0x43, 0xd9, 0xe2, 0x84, 0x65, 0xdb, 0x3d, 0xba, 0x96, 0x8d, 0x06, 0x83, 0xea, 0xe3, 0x11, + 0xaf, 0x50, 0xe9, 0x24, 0xc5, 0x49, 0xfb, 0x88, 0xf7, 0xba, 0x05, 0x85, 0x14, 0x36, 0xd5, 0x27, + 0x16, 0xb0, 0x84, 0xa9, 0x52, 0x92, 0x02, 0xbf, 0xa4, 0xa4, 0x76, 0xe6, 0xeb, 0x29, 0x38, 0xf4, + 0xd5, 0x40, 0xd7, 0x21, 0xd7, 0x2d, 0xd0, 0x82, 0x61, 0xdf, 0x41, 0x44, 0x15, 0xaa, 0x45, 0x70, + 0xcb, 0x06, 0x43, 0x1a, 0x1f, 0xcf, 0xc8, 0xbd, 0x88, 0x7e, 0xf4, 0x84, 0xaa, 0x08, 0xbd, 0x88, + 0xdf, 0x50, 0x37, 0xce, 0xc8, 0x57, 0x0c, 0x18, 0x58, 0x98, 0xee, 0x07, 0xe4, 0x6c, 0x46, 0xf0, + 0x32, 0x32, 0x0e, 0x65, 0x50, 0x39, 0xa6, 0x54, 0x34, 0x0e, 0xde, 0x58, 0x11, 0xa3, 0x31, 0xb0, + 0x90, 0x3b, 0x99, 0xe3, 0xd4, 0xc8, 0xe9, 0xa5, 0xb8, 0x73, 0x43, 0x02, 0x40, 0xe3, 0xb8, 0xdf, + 0xa2, 0xbb, 0xb6, 0x76, 0x33, 0x14, 0x88, 0xc1, 0xa0, 0xc3, 0x94, 0x69, 0xea, 0x8c, 0x94, 0x59, + 0x6a, 0x98, 0x57, 0x0d, 0x18, 0x58, 0x98, 0xd8, 0xb7, 0x8e, 0x74, 0x9a, 0xa4, 0x63, 0x7f, 0x94, + 0x37, 0x05, 0x34, 0x0e, 0xfa, 0xf8, 0x62, 0xbf, 0xbd, 0xbb, 0x15, 0x74, 0xee, 0x0a, 0xc6, 0x56, + 0x52, 0xb9, 0x21, 0xca, 0x41, 0x61, 0x38, 0x6f, 0x91, 0x4a, 0x2f, 0x68, 0x09, 0x56, 0x5e, 0x96, + 0x7a, 0x27, 0x5d, 0x4d, 0x54, 0x62, 0x3e, 0x99, 0x9d, 0x7b, 0x0f, 0xcd, 0xc8, 0x78, 0x19, 0x17, + 0x1f, 0x56, 0xcd, 0xf2, 0x1f, 0x4f, 0x0c, 0xe9, 0x3f, 0xa6, 0xdf, 0x4c, 0x8c, 0x59, 0x72, 0x72, + 0x45, 0x7f, 0xb3, 0xab, 0x0a, 0x02, 0x06, 0x16, 0x1a, 0xa3, 0x4d, 0x6a, 0x80, 0x49, 0x6b, 0x8d, + 0x47, 0xd6, 0x4e, 0x7d, 0x0c, 0x63, 0x74, 0x2d, 0x4d, 0x0d, 0xfa, 0x1b, 0x70, 0xba, 0xe4, 0x4c, + 0x0b, 0xd7, 0x91, 0xd5, 0x6a, 0xf5, 0x04, 0xf1, 0xbc, 0xd8, 0x62, 0x2d, 0x4d, 0x09, 0xfa, 0x89, + 0x3b, 0x5f, 0x25, 0x4b, 0xb2, 0xb0, 0xff, 0xfa, 0x1e, 0x5b, 0x2e, 0x95, 0xd5, 0x27, 0x28, 0xb5, + 0xa5, 0xda, 0x40, 0x2c, 0x38, 0x86, 0x82, 0xf3, 0x2e, 0x99, 0x60, 0x27, 0x0e, 0xf1, 0xe2, 0x34, + 0xdb, 0xed, 0x5e, 0x2d, 0xea, 0x70, 0x5b, 0x66, 0xe7, 0x16, 0x22, 0x20, 0x51, 0x9f, 0xe2, 0xb0, + 0x42, 0x10, 0x34, 0xe9, 0x7c, 0x4d, 0x7b, 0x9d, 0x4e, 0x98, 0x78, 0x5c, 0x09, 0x9b, 0x29, 0xa2, + 0x47, 0x1a, 0x4d, 0xac, 0xe8, 0xba, 0xbc, 0x1d, 0x15, 0x1d, 0x65, 0x40, 0xc0, 0x6c, 0x02, 0xb7, + 0xf1, 0xf0, 0x1e, 0x0a, 0x4c, 0xe9, 0x74, 0x8f, 0x17, 0x67, 0x8b, 0x6c, 0xe3, 0xb7, 0xac, 0x4a, + 0x86, 0x04, 0xb3, 0x89, 0x41, 0x9a, 0x3a, 0x86, 0xdb, 0x1a, 0x7e, 0xd4, 0x39, 0x1d, 0x6e, 0xab, + 0xfd, 0xa8, 0xa6, 0xdb, 0x74, 0xe9, 0x4d, 0x32, 0x6d, 0xcc, 0xdc, 0x30, 0x01, 0x9a, 0x4b, 0x5f, + 0xa0, 0xdb, 0x78, 0x6a, 0x46, 0x86, 0x0a, 0xf0, 0xfc, 0x9f, 0x65, 0x32, 0x9f, 0x71, 0x24, 0x71, + 0x37, 0x60, 0x21, 0xcc, 0x96, 0xec, 0xba, 0x4e, 0xcb, 0x80, 0x41, 0x6c, 0x09, 0x54, 0x2e, 0x20, + 0x81, 0xa4, 0x38, 0xac, 0x0c, 0x14, 0x87, 0x42, 0xea, 0x8c, 0x9d, 0x5c, 0xea, 0xd8, 0x62, 0x7e, + 0xbc, 0x90, 0x98, 0x7f, 0x00, 0x92, 0xca, 0xda, 0x29, 0x26, 0x0b, 0xec, 0x14, 0x1f, 0x95, 0xc8, + 0x9c, 0xcd, 0x42, 0x05, 0x66, 0xfc, 0x61, 0x9d, 0xc0, 0x65, 0x66, 0x51, 0x25, 0x51, 0xd8, 0x6e, + 0xfb, 0x91, 0x08, 0xf9, 0x9a, 0x13, 0x06, 0x92, 0x28, 0x05, 0x03, 0xc3, 0xfd, 0x85, 0x32, 0x59, + 0xd0, 0xf1, 0xbf, 0x22, 0xef, 0xe6, 0xe8, 0x7c, 0xfc, 0xdb, 0x96, 0x8f, 0x3f, 0x2f, 0x9d, 0x66, + 0xaa, 0x5f, 0x03, 0xfd, 0xfd, 0xef, 0xa6, 0xfc, 0xfd, 0xaf, 0x0e, 0x49, 0xf7, 0x78, 0xdf, 0xff, + 0x2f, 0x97, 0xc9, 0xf9, 0x74, 0x95, 0xb5, 0xb6, 0x17, 0x1c, 0x8c, 0x70, 0x9e, 0xbe, 0x6c, 0xcd, + 0xd3, 0xeb, 0xc3, 0x8d, 0x87, 0x75, 0x6e, 0xe0, 0x64, 0x79, 0xa9, 0xc9, 0x7a, 0xf3, 0x24, 0xc4, + 0x8f, 0x9f, 0xb1, 0xff, 0x5c, 0x22, 0x8f, 0x65, 0xd6, 0x3b, 0x0d, 0x5f, 0xe6, 0x97, 0x6c, 0x5f, + 0xe6, 0x2b, 0x27, 0x18, 0xde, 0x00, 0xe7, 0xe6, 0x7f, 0x2b, 0x0f, 0x18, 0x16, 0x73, 0x7b, 0xdd, + 0xa2, 0xfb, 0x68, 0x93, 0xee, 0x36, 0x31, 0x06, 0x39, 0xca, 0xd3, 0xba, 0x8b, 0x6c, 0x23, 0xd4, + 0xc5, 0x74, 0xed, 0x2f, 0xa5, 0x49, 0x68, 0x30, 0x98, 0x14, 0xec, 0x24, 0x57, 0xe5, 0x11, 0x25, + 0xb9, 0xa2, 0x32, 0xe6, 0x50, 0x99, 0xdb, 0x69, 0x6f, 0x9a, 0x61, 0x88, 0x1b, 0x58, 0x54, 0xdf, + 0x41, 0xe5, 0x94, 0xc7, 0x3a, 0x8c, 0xe5, 0x2e, 0x38, 0xeb, 0x03, 0x9a, 0x81, 0x13, 0xfc, 0x12, + 0xa3, 0x72, 0x3d, 0x2a, 0x9a, 0xee, 0xb7, 0x2a, 0xe4, 0x93, 0xc7, 0xb0, 0x1d, 0xdd, 0x24, 0xac, + 0x23, 0xcc, 0x17, 0xd3, 0x7e, 0xa6, 0xa5, 0xcc, 0xca, 0x96, 0xe3, 0x29, 0xf5, 0xb1, 0xca, 0x1f, + 0xfb, 0x63, 0xfd, 0xbc, 0xe9, 0x15, 0xe4, 0x31, 0x8b, 0x57, 0x4f, 0xbc, 0xb0, 0x1e, 0x9c, 0x9b, + 0xf0, 0x14, 0x3d, 0x18, 0x98, 0x43, 0xf9, 0xe9, 0xcc, 0x41, 0x59, 0x91, 0x12, 0x78, 0xe7, 0x0b, + 0x0b, 0x8d, 0x4b, 0x25, 0xfa, 0xce, 0x97, 0x04, 0x80, 0xc6, 0xb1, 0x02, 0x22, 0xca, 0xb9, 0x01, + 0x11, 0xff, 0xbe, 0x44, 0xce, 0xa5, 0x3b, 0x71, 0x1a, 0x52, 0xa7, 0x61, 0x4b, 0x9d, 0xe5, 0xe1, + 0xbe, 0xfd, 0x00, 0x81, 0xf3, 0xcb, 0xd3, 0xe4, 0x91, 0xbe, 0xcd, 0x8a, 0x4f, 0xe3, 0x4f, 0x96, + 0xc8, 0x99, 0x3d, 0x66, 0x28, 0x18, 0x57, 0x77, 0xc4, 0xc0, 0x72, 0xee, 0x2d, 0x1d, 0x7b, 0xe3, + 0x87, 0x9b, 0x3d, 0x7d, 0x28, 0xd0, 0xdf, 0x98, 0xf3, 0xb3, 0x74, 0xaa, 0xbd, 0x7b, 0x71, 0x5f, + 0x12, 0x77, 0xc1, 0x47, 0x5f, 0xc8, 0xf1, 0xc9, 0xe5, 0xa4, 0x7f, 0x5f, 0x5d, 0xc4, 0xa0, 0xcf, + 0x2c, 0x2c, 0xc8, 0x6c, 0x95, 0x2a, 0x01, 0x3c, 0xdd, 0x17, 0xaa, 0x7d, 0x85, 0x2e, 0x93, 0x65, + 0x5d, 0x24, 0xe0, 0x32, 0x49, 0x42, 0x40, 0x51, 0x74, 0xde, 0x23, 0xd5, 0x3d, 0x79, 0x5b, 0x47, + 0x08, 0xbd, 0x9c, 0x9d, 0x25, 0xf3, 0x72, 0x0f, 0x0f, 0x57, 0x57, 0x20, 0xd0, 0x44, 0x9d, 0x6b, + 0xa4, 0xd2, 0xd9, 0x8d, 0xc5, 0x05, 0xda, 0xbc, 0x80, 0x18, 0x3b, 0xfc, 0x88, 0x5f, 0x09, 0xa4, + 0x85, 0x80, 0x24, 0x90, 0x52, 0xb4, 0xd3, 0x12, 0xce, 0xe8, 0x1c, 0x4a, 0xb0, 0x5a, 0xeb, 0xa7, + 0x44, 0x0b, 0x01, 0x49, 0xb0, 0xc8, 0x3b, 0xbc, 0x78, 0x20, 0x3c, 0xcd, 0x39, 0xb7, 0xab, 0xfb, + 0xae, 0x57, 0xf0, 0xdc, 0x70, 0xac, 0x18, 0x38, 0x21, 0x74, 0x31, 0x37, 0x59, 0x2e, 0x67, 0xe1, + 0x08, 0xc8, 0xcb, 0xf0, 0xdb, 0x97, 0xf7, 0x99, 0x9f, 0x88, 0xf1, 0x72, 0x10, 0xb4, 0x18, 0x55, + 0xbf, 0xbb, 0xbf, 0x1b, 0x0b, 0x43, 0x3f, 0x8f, 0x6a, 0x5f, 0x56, 0x6e, 0x41, 0x95, 0x95, 0x83, + 0xa0, 0xe5, 0xd4, 0x48, 0x79, 0xb7, 0x29, 0x12, 0x32, 0xe6, 0x98, 0xa6, 0xf6, 0xfd, 0xce, 0xd5, + 0x09, 0x0c, 0x85, 0xdb, 0x58, 0x03, 0x5a, 0x9f, 0xea, 0x23, 0x93, 0xbb, 0xfc, 0xca, 0x9e, 0x48, + 0xbe, 0x78, 0x39, 0xef, 0x5a, 0x61, 0xdf, 0xfd, 0x3e, 0x7e, 0x25, 0x41, 0x00, 0x40, 0x92, 0xa3, + 0xfb, 0x30, 0xd9, 0x55, 0x77, 0x10, 0x45, 0xf6, 0xc5, 0xe5, 0xe1, 0xee, 0x2c, 0x0a, 0x33, 0x58, + 0x95, 0x82, 0x41, 0x11, 0x79, 0xde, 0x93, 0xe9, 0xe8, 0x59, 0xe6, 0xc5, 0x5c, 0x9e, 0xcf, 0xcc, + 0x5e, 0xcf, 0x79, 0x5e, 0x81, 0x40, 0x13, 0x75, 0x7a, 0x64, 0xf6, 0x30, 0xee, 0xee, 0xfb, 0x72, + 0xe9, 0xb3, 0x74, 0x8c, 0xd3, 0x57, 0x3e, 0x9f, 0x93, 0x63, 0x53, 0x54, 0x09, 0xa2, 0xa4, 0xe7, + 0xb5, 0xfb, 0x24, 0x18, 0xcb, 0x6b, 0x74, 0xdb, 0x24, 0x0b, 0x76, 0x2b, 0xf8, 0x49, 0xde, 0xef, + 0x85, 0x3b, 0x47, 0x89, 0x2f, 0xd2, 0x35, 0xe6, 0x7c, 0x92, 0xb7, 0x39, 0x72, 0xff, 0x27, 0x11, + 0x00, 0x90, 0xe4, 0xdc, 0xdf, 0x1b, 0xef, 0xdf, 0x7e, 0x98, 0x76, 0xf8, 0x73, 0xfd, 0xa7, 0x86, + 0x6f, 0x0d, 0x6f, 0xfd, 0x3c, 0xc0, 0xf3, 0x43, 0x2a, 0xbd, 0x1f, 0xe9, 0x66, 0xee, 0x2d, 0x42, + 0x7e, 0x0f, 0x6b, 0x44, 0xf1, 0x69, 0x51, 0xa9, 0x39, 0xb3, 0xe1, 0x30, 0xa0, 0xcd, 0xb4, 0x42, + 0x56, 0xf9, 0xd8, 0x0a, 0xd9, 0x1d, 0x3a, 0xdf, 0xa8, 0x43, 0xe8, 0xdc, 0x10, 0x43, 0xa6, 0x53, + 0x60, 0x3b, 0xc1, 0x9a, 0x20, 0x01, 0x8a, 0x18, 0x4e, 0xdc, 0xe3, 0xe9, 0x41, 0x80, 0xcf, 0xc0, + 0x22, 0xa7, 0x28, 0xb7, 0xd4, 0x37, 0xc4, 0x4c, 0x3c, 0x5e, 0x3f, 0x0e, 0xf9, 0xa3, 0x3c, 0x04, + 0x38, 0xbe, 0xb1, 0xd3, 0x54, 0xf0, 0xfe, 0x49, 0x29, 0x43, 0x1d, 0xe1, 0x2a, 0xf9, 0xe7, 0x6d, + 0x95, 0xfc, 0xb9, 0xb4, 0x4a, 0xde, 0x67, 0x40, 0x5b, 0xda, 0x78, 0xf1, 0xbc, 0x7a, 0x45, 0x93, + 0x57, 0xb8, 0xff, 0xbb, 0x44, 0x2a, 0xf5, 0xb0, 0x35, 0x42, 0x13, 0xfd, 0xaa, 0x65, 0xa2, 0x3f, + 0x9b, 0xfb, 0x22, 0xca, 0x40, 0x83, 0xfc, 0x56, 0xca, 0x20, 0xff, 0x4c, 0x3e, 0xa9, 0xe3, 0xcd, + 0xef, 0x6f, 0x57, 0x88, 0xf9, 0xa6, 0x8b, 0xf3, 0xdb, 0x27, 0x09, 0x1e, 0xac, 0x14, 0x7b, 0xe6, + 0x45, 0xb4, 0xc1, 0x42, 0x6d, 0xe4, 0xcd, 0xa2, 0x3f, 0xb1, 0x31, 0x84, 0x77, 0xfc, 0x60, 0x6f, + 0x3f, 0xf1, 0x5b, 0xe9, 0x81, 0x9d, 0x5e, 0x0c, 0xe1, 0x7f, 0x2f, 0x91, 0xf9, 0x54, 0xeb, 0xce, + 0x41, 0xd6, 0xe5, 0x84, 0x93, 0xda, 0xdc, 0x67, 0x72, 0xaf, 0x33, 0x2c, 0x13, 0xa2, 0xfc, 0xc4, + 0xd2, 0x32, 0x66, 0x5a, 0x82, 0x72, 0x24, 0xc7, 0x60, 0x60, 0x60, 0xee, 0x81, 0x24, 0xec, 0x86, + 0xed, 0x70, 0xef, 0xe8, 0xba, 0x2f, 0xef, 0xbe, 0xab, 0x43, 0x80, 0x6d, 0x0d, 0x02, 0x13, 0x0f, + 0xf3, 0x22, 0xa5, 0x9f, 0x04, 0xfa, 0x33, 0x46, 0xfd, 0x93, 0xc3, 0xa8, 0xbf, 0x53, 0x22, 0x0b, + 0xd8, 0x3a, 0x8b, 0x94, 0x90, 0x91, 0x7e, 0x2a, 0x41, 0x75, 0xe9, 0x98, 0x04, 0xd5, 0x78, 0x55, + 0x22, 0x69, 0x85, 0x3d, 0x99, 0x34, 0xc5, 0x90, 0x62, 0x58, 0x0a, 0x02, 0x2a, 0xf0, 0x68, 0x9f, + 0xc4, 0x35, 0x08, 0x13, 0x8f, 0x96, 0x82, 0x80, 0xca, 0xfc, 0xd5, 0x63, 0xd9, 0xf9, 0xab, 0x79, + 0x8e, 0x19, 0x71, 0x42, 0x2f, 0x76, 0x66, 0x23, 0xc7, 0x8c, 0x3c, 0xba, 0xd7, 0x38, 0xee, 0xbf, + 0xa8, 0x90, 0x19, 0x0c, 0x54, 0x53, 0x51, 0xbc, 0xaf, 0x5a, 0x51, 0xbc, 0x4f, 0xa5, 0xa2, 0x78, + 0x17, 0x4c, 0xdc, 0x07, 0x13, 0xc4, 0x2b, 0xb2, 0x11, 0xb1, 0x0c, 0xeb, 0x27, 0x0d, 0xe0, 0xb5, + 0xb2, 0x11, 0x29, 0x4a, 0x60, 0x13, 0xfe, 0x53, 0x15, 0xb8, 0xfb, 0xc7, 0x25, 0x32, 0x47, 0xbf, + 0x05, 0xb2, 0xe8, 0x9f, 0x26, 0x7e, 0x34, 0x73, 0x18, 0x4d, 0x1c, 0x93, 0xc3, 0xe8, 0x57, 0x4a, + 0x04, 0xe3, 0x2b, 0x4f, 0xc3, 0xd7, 0xb5, 0x61, 0xfb, 0xba, 0x9e, 0xce, 0x15, 0xbe, 0x03, 0xdc, + 0x5b, 0xbf, 0x5e, 0x21, 0xb3, 0xd8, 0xe5, 0x70, 0x4f, 0x7e, 0x30, 0x6b, 0x72, 0x4a, 0x05, 0x26, + 0x07, 0xf3, 0x20, 0x84, 0xed, 0x76, 0x78, 0x2f, 0xfd, 0xf1, 0x36, 0x58, 0x29, 0x08, 0x28, 0x3a, + 0x11, 0xbb, 0x98, 0xab, 0x25, 0xec, 0xc5, 0xe9, 0x5b, 0x55, 0x75, 0x51, 0x0e, 0x0a, 0x83, 0xae, + 0xf8, 0x99, 0x38, 0xa0, 0x36, 0x80, 0x3c, 0xc2, 0x1f, 0x63, 0x47, 0xf8, 0x3c, 0x55, 0x9c, 0x51, + 0x0e, 0x16, 0x16, 0x55, 0x35, 0xab, 0xec, 0x37, 0x5b, 0x43, 0x27, 0x48, 0xaa, 0xcd, 0xf3, 0x18, + 0x49, 0x0a, 0xa0, 0x89, 0xa1, 0x93, 0x3e, 0x91, 0xd1, 0x06, 0xb1, 0x38, 0xd4, 0x53, 0xca, 0xa9, + 0x8a, 0x43, 0xc0, 0x94, 0x51, 0xea, 0x7f, 0xe7, 0x45, 0xcc, 0x90, 0x1a, 0xb4, 0xb7, 0xf0, 0xb1, + 0x06, 0x11, 0xaf, 0x21, 0x52, 0x9e, 0x8a, 0x42, 0xd0, 0x70, 0xdc, 0xf3, 0xd9, 0x9d, 0x4e, 0x9e, + 0xb2, 0x7f, 0x8a, 0x61, 0xb3, 0x3d, 0x7f, 0x4b, 0x95, 0x82, 0x81, 0xe1, 0xbe, 0xc2, 0xf6, 0xee, + 0x21, 0xa3, 0xbc, 0x3f, 0x2c, 0x13, 0xa7, 0xce, 0xa2, 0x1a, 0xac, 0x57, 0x0d, 0xf6, 0xc9, 0x5c, + 0x4c, 0x8d, 0xd5, 0x4e, 0xef, 0xbe, 0x20, 0x55, 0x2c, 0xae, 0xbe, 0xb1, 0x6e, 0xd6, 0xe1, 0xf7, + 0x18, 0xed, 0x32, 0x48, 0xd1, 0xc5, 0x29, 0x89, 0x7a, 0x9d, 0x95, 0x18, 0x9f, 0x47, 0x13, 0xef, + 0x12, 0xb0, 0x29, 0x01, 0x59, 0x08, 0x1a, 0x8e, 0x3c, 0xc0, 0x7e, 0xdc, 0xa4, 0xd2, 0x28, 0x0c, + 0x13, 0xc9, 0x35, 0x2c, 0x49, 0xb5, 0x51, 0x0e, 0x16, 0x16, 0xe6, 0x77, 0x8e, 0x7b, 0xdd, 0x6e, + 0x9b, 0x9d, 0xbd, 0x78, 0xed, 0xab, 0x51, 0xd8, 0xeb, 0xf2, 0xc0, 0x56, 0x91, 0xdf, 0xb9, 0xd1, + 0x07, 0x85, 0x8c, 0x1a, 0xb8, 0xe8, 0x77, 0x63, 0xf6, 0xbf, 0xb8, 0xa7, 0xc9, 0x3d, 0x40, 0x0d, + 0x56, 0x04, 0x12, 0xe6, 0xf6, 0xd8, 0x56, 0xc5, 0xf2, 0xc5, 0x63, 0xc0, 0x95, 0xe3, 0x93, 0xd9, + 0x2e, 0xdb, 0x8e, 0xe4, 0x01, 0x70, 0xa1, 0xa9, 0x4c, 0xc5, 0x55, 0xf0, 0xbc, 0xd0, 0x26, 0x19, + 0xb0, 0xa9, 0xba, 0xff, 0x91, 0x30, 0x59, 0x23, 0x8e, 0xbd, 0x26, 0x45, 0xd4, 0xa4, 0xd0, 0xc5, + 0x9e, 0x29, 0xf2, 0x40, 0x8a, 0x96, 0xe3, 0x22, 0x06, 0x13, 0x24, 0x15, 0xe7, 0x2b, 0xfc, 0x04, + 0x9b, 0xad, 0xef, 0xe2, 0xaf, 0x16, 0x71, 0x7c, 0x2b, 0x1e, 0x58, 0x90, 0x00, 0x83, 0x9c, 0xb3, + 0x45, 0x66, 0x45, 0x52, 0x71, 0x61, 0xab, 0x57, 0x2c, 0x7b, 0x75, 0x16, 0x4c, 0xe0, 0x47, 0xe9, + 0x02, 0xb0, 0x2b, 0x3b, 0x7b, 0xe4, 0x71, 0xe3, 0xa5, 0x91, 0x8c, 0xd8, 0x1f, 0x2e, 0x38, 0x9e, + 0x46, 0x2f, 0xc0, 0xf6, 0x71, 0x88, 0x70, 0x3c, 0x1d, 0x3a, 0xc9, 0xe7, 0xbd, 0x66, 0x12, 0x1c, + 0xfa, 0x35, 0xdf, 0x6b, 0x51, 0xad, 0xcc, 0xb7, 0x2f, 0xf1, 0x3e, 0x46, 0x1b, 0x38, 0xbf, 0x92, + 0x85, 0x00, 0xd9, 0xf5, 0xa8, 0xbd, 0x5e, 0x6d, 0x75, 0x62, 0x31, 0x07, 0x13, 0xd6, 0xa3, 0x2a, + 0xd5, 0xda, 0xcd, 0x86, 0x1a, 0xbf, 0xfe, 0x01, 0xba, 0x82, 0xf3, 0x3e, 0x7f, 0xd7, 0x54, 0x19, + 0x24, 0xfc, 0x31, 0x9f, 0xd7, 0x0b, 0x99, 0xc0, 0xd6, 0x7d, 0x03, 0xee, 0xc6, 0x52, 0x31, 0x76, + 0xd6, 0x55, 0x04, 0xab, 0x09, 0xe7, 0x47, 0xe9, 0xc2, 0xf2, 0x23, 0x7c, 0xaf, 0x73, 0xa5, 0xc9, + 0x92, 0x24, 0xb2, 0xf3, 0xa3, 0x29, 0x2b, 0xd0, 0xdc, 0x69, 0xf4, 0x61, 0x40, 0x46, 0x2d, 0xe7, + 0x1a, 0x4a, 0x1c, 0xb3, 0x54, 0x84, 0x44, 0x4a, 0xd5, 0x6e, 0xb1, 0xe6, 0x63, 0x1e, 0x74, 0x7c, + 0xd2, 0xc1, 0xa6, 0x08, 0xa9, 0x7a, 0xb8, 0xad, 0xa8, 0xe4, 0xcf, 0xc4, 0x0e, 0xe4, 0xeb, 0x4f, + 0x00, 0x8d, 0x96, 0x12, 0x9e, 0x27, 0xdc, 0xf4, 0x13, 0x7c, 0x61, 0x89, 0x79, 0x83, 0xa7, 0x8c, + 0x64, 0x52, 0x1a, 0x04, 0x26, 0x1e, 0xea, 0x40, 0xec, 0x18, 0x62, 0xb3, 0xc6, 0x7c, 0xbc, 0x53, + 0x7a, 0xed, 0x5c, 0xe3, 0xc5, 0x20, 0xe1, 0x12, 0x75, 0xb3, 0xbe, 0xc6, 0xfc, 0xb5, 0x29, 0x54, + 0x5a, 0x0c, 0x12, 0x8e, 0x41, 0x58, 0xe9, 0xa7, 0x6b, 0xe6, 0x8a, 0xf8, 0xce, 0xfb, 0x25, 0x78, + 0xc1, 0xd7, 0x6b, 0xee, 0x93, 0x05, 0xf5, 0x7c, 0x0e, 0xcf, 0xd6, 0x17, 0x2f, 0xce, 0x17, 0x79, + 0x55, 0x35, 0x33, 0xe9, 0x9f, 0x8a, 0x81, 0xdd, 0x4c, 0xd1, 0x84, 0xbe, 0x56, 0xac, 0xcb, 0xe8, + 0x0b, 0xb9, 0x09, 0xbd, 0xf1, 0xf5, 0x9a, 0xde, 0x4e, 0x2b, 0x3c, 0xa0, 0x22, 0x83, 0x3d, 0xa0, + 0x63, 0xbe, 0x9b, 0x2a, 0x01, 0xa0, 0x71, 0x96, 0xbe, 0x48, 0xce, 0xf4, 0xf1, 0xf4, 0x50, 0x31, + 0x5f, 0x3f, 0x37, 0x46, 0xaa, 0xca, 0xab, 0x43, 0xdb, 0xb7, 0x5c, 0x69, 0x8f, 0xa5, 0x5d, 0x69, + 0x53, 0xb8, 0xf3, 0x9a, 0xde, 0xb3, 0xaf, 0x66, 0x3c, 0x9c, 0x78, 0x21, 0xf7, 0x23, 0x16, 0xbf, + 0x43, 0x31, 0xc4, 0xb3, 0x92, 0x5a, 0xad, 0x1f, 0x3b, 0x56, 0xad, 0x2f, 0xf8, 0x2e, 0x0e, 0x2a, + 0xf0, 0x74, 0xe7, 0xa1, 0x68, 0xa9, 0x37, 0x1f, 0xea, 0x58, 0x08, 0x1c, 0xc6, 0xf4, 0x2e, 0x14, + 0xca, 0x4c, 0xef, 0x9a, 0x3c, 0xa9, 0xde, 0x25, 0x29, 0x80, 0x26, 0x86, 0xf9, 0xca, 0x9b, 0xf6, + 0x1b, 0x1e, 0xea, 0x6a, 0xc4, 0xc5, 0x21, 0xde, 0xd0, 0xe8, 0x19, 0xf9, 0xca, 0xd7, 0xd2, 0xf4, + 0xa0, 0xbf, 0x09, 0xbc, 0xc7, 0x3e, 0xaf, 0x18, 0x82, 0xee, 0x40, 0x98, 0x11, 0x68, 0x74, 0x8e, + 0xcc, 0x5b, 0x96, 0xa5, 0xfa, 0x00, 0xfc, 0x8f, 0xbf, 0x55, 0x62, 0xfe, 0xc7, 0x6d, 0xff, 0xa0, + 0xdb, 0xc6, 0x87, 0x41, 0x46, 0xd7, 0xf5, 0xaf, 0x90, 0xa9, 0x44, 0xb4, 0x52, 0x2c, 0x67, 0xb2, + 0xd1, 0x2d, 0xe6, 0x8f, 0x55, 0x82, 0x40, 0x96, 0x82, 0x22, 0xe8, 0xfe, 0x6b, 0xfe, 0x15, 0x24, + 0xe4, 0x34, 0x2c, 0xab, 0x9b, 0xb6, 0x65, 0xf5, 0x42, 0xe1, 0xc1, 0x0c, 0xb0, 0xb0, 0xbe, 0x65, + 0x0f, 0x81, 0x29, 0x6c, 0x0f, 0xbf, 0x47, 0xdc, 0xbd, 0x41, 0xec, 0x77, 0x49, 0xa8, 0xba, 0xc2, + 0x62, 0x29, 0xb9, 0x44, 0xbc, 0x30, 0x64, 0x1c, 0xa5, 0xfb, 0x6b, 0x65, 0x72, 0x2e, 0xeb, 0x69, + 0x6e, 0xa7, 0x45, 0x66, 0xba, 0x86, 0xfa, 0x5c, 0xec, 0xca, 0xbc, 0xa9, 0x70, 0x6b, 0xd5, 0xc5, + 0x2c, 0x05, 0x8b, 0x2a, 0x66, 0x2a, 0xc7, 0x87, 0xc6, 0x95, 0x7b, 0xa5, 0x3c, 0xbc, 0x88, 0x52, + 0xcd, 0xac, 0x1b, 0x84, 0xc0, 0x22, 0x3b, 0x82, 0xb4, 0xde, 0xee, 0x3f, 0x2c, 0x91, 0x47, 0x07, + 0xdc, 0xab, 0xc7, 0xe6, 0xee, 0x31, 0x2f, 0xa4, 0x78, 0xf7, 0x46, 0x35, 0xc7, 0x7d, 0x93, 0x20, + 0xa0, 0xce, 0x0e, 0x5e, 0xd7, 0x54, 0x8f, 0x81, 0x96, 0x8b, 0x1c, 0x52, 0xf7, 0xdd, 0xe1, 0x35, + 0xae, 0x77, 0xaa, 0xe7, 0x3f, 0x0d, 0xaa, 0xee, 0x37, 0x2b, 0x64, 0x9c, 0xbf, 0x47, 0x58, 0xa7, + 0x0a, 0x10, 0x4f, 0xe3, 0x37, 0x5c, 0x16, 0x41, 0xad, 0x27, 0xf1, 0x02, 0x90, 0x64, 0x9c, 0x1b, + 0xe4, 0x2c, 0xfa, 0x57, 0x03, 0xaf, 0x5d, 0xf3, 0xdb, 0xde, 0x91, 0x54, 0xbc, 0x79, 0x2a, 0x66, + 0x99, 0x6d, 0xf4, 0xec, 0x66, 0x3f, 0x0a, 0x64, 0xd5, 0xc3, 0x5b, 0x41, 0xa9, 0x3c, 0x3c, 0x3c, + 0x3d, 0xa2, 0xba, 0x15, 0x74, 0x7c, 0x2e, 0x1e, 0xbc, 0x18, 0xd5, 0xed, 0x33, 0x31, 0x8c, 0x87, + 0xec, 0x6c, 0xb3, 0xc2, 0xc6, 0xc5, 0x2b, 0x45, 0x71, 0x8f, 0x9d, 0x91, 0x6e, 0xef, 0x53, 0x4b, + 0x66, 0x3f, 0x6c, 0xb7, 0xc4, 0x03, 0x4c, 0x4a, 0x9d, 0x6a, 0xa4, 0xe0, 0xd0, 0x57, 0x03, 0xa9, + 0xec, 0x7a, 0x41, 0x9b, 0xb2, 0xb6, 0xa6, 0x32, 0x61, 0x53, 0xd9, 0x48, 0xc1, 0xa1, 0xaf, 0x86, + 0xfb, 0x07, 0x25, 0x72, 0x36, 0xe3, 0x5c, 0x9d, 0x87, 0x7b, 0xed, 0x51, 0xd1, 0xa8, 0x12, 0xf5, + 0x1a, 0xe1, 0x5e, 0xbc, 0x1c, 0x14, 0x06, 0x72, 0x21, 0xb7, 0x1b, 0xd3, 0x79, 0x87, 0xc5, 0x51, + 0xa9, 0x80, 0x0e, 0x97, 0x55, 0x47, 0x3d, 0xab, 0x3e, 0x36, 0xf0, 0x59, 0x75, 0xaa, 0x98, 0xec, + 0x29, 0xeb, 0xdc, 0x50, 0x4c, 0xb8, 0x7d, 0xce, 0x61, 0x98, 0x44, 0x7b, 0x3e, 0x15, 0x5f, 0x83, + 0x1d, 0x49, 0xbd, 0xfe, 0xce, 0x5c, 0x0a, 0x18, 0x79, 0x92, 0xf1, 0x02, 0xfc, 0x73, 0xf6, 0xe3, + 0xb0, 0xba, 0xcf, 0xab, 0x35, 0xeb, 0xd9, 0xab, 0xa2, 0x49, 0xc0, 0x3f, 0x8d, 0x19, 0x7a, 0xd5, + 0x2b, 0x86, 0x8a, 0xe9, 0x29, 0xb9, 0x3a, 0x2d, 0x06, 0x06, 0x74, 0x9e, 0x15, 0xa3, 0x4f, 0x39, + 0x27, 0xc1, 0x6b, 0x85, 0xb1, 0x31, 0x05, 0x54, 0x8e, 0x50, 0xb5, 0x16, 0x4f, 0x05, 0xd2, 0xae, + 0xd9, 0xeb, 0xbc, 0x18, 0x24, 0xdc, 0x4e, 0xf4, 0x3d, 0x39, 0xe2, 0x44, 0xdf, 0x53, 0xb9, 0x31, + 0x82, 0xbf, 0x44, 0x77, 0x45, 0x96, 0xdd, 0x4c, 0x5c, 0xb8, 0x44, 0x27, 0xff, 0xe8, 0x76, 0x45, + 0x7c, 0x16, 0x0d, 0x1b, 0x4b, 0xe7, 0xf6, 0x65, 0x3d, 0x00, 0x0e, 0xc3, 0x5c, 0xa9, 0xac, 0x69, + 0xfc, 0x7c, 0x33, 0x3c, 0x57, 0xaa, 0x7e, 0x2c, 0x9b, 0x45, 0xa0, 0x83, 0xdf, 0xa5, 0xb6, 0x37, + 0xeb, 0xac, 0xf6, 0xc4, 0x3c, 0x2c, 0x11, 0xe8, 0x99, 0x9d, 0x7b, 0x50, 0x11, 0xe8, 0xd9, 0xc4, + 0xf3, 0x23, 0xd0, 0x33, 0xeb, 0x3d, 0x7c, 0x11, 0xe8, 0x99, 0xdd, 0x1c, 0xa0, 0xcf, 0x7d, 0x58, + 0x1e, 0x30, 0x2c, 0xa6, 0xd9, 0x3d, 0x8f, 0xab, 0x80, 0x01, 0x63, 0xb1, 0x29, 0xcf, 0xf0, 0x15, + 0xc0, 0xcb, 0x40, 0x41, 0x9d, 0xd8, 0x88, 0xe0, 0xe6, 0x9d, 0x5c, 0x3f, 0xe1, 0x07, 0x5e, 0xb6, + 0x5d, 0x39, 0xe6, 0x3d, 0xc6, 0x54, 0x58, 0x37, 0x46, 0xe4, 0x28, 0x65, 0xbd, 0x72, 0x12, 0x65, + 0x7d, 0x26, 0x5b, 0x51, 0x5f, 0xa2, 0x7b, 0xe2, 0xc9, 0x8d, 0xef, 0xff, 0x51, 0x22, 0x9f, 0x3c, + 0x86, 0xc3, 0xb8, 0x68, 0xb1, 0x26, 0xd5, 0x10, 0x2d, 0x7d, 0x13, 0x5b, 0x27, 0xe7, 0x76, 0x7b, + 0xed, 0xf6, 0x11, 0x3b, 0x61, 0xf7, 0x5b, 0x12, 0x43, 0xa8, 0x0b, 0xea, 0x29, 0xc5, 0x8d, 0x0c, + 0x1c, 0xc8, 0xac, 0x89, 0x8e, 0xaf, 0x70, 0x87, 0x65, 0x8f, 0x6b, 0xe9, 0x6b, 0x96, 0x6c, 0xfe, + 0x2a, 0xda, 0xf1, 0x75, 0xab, 0x0f, 0x03, 0x32, 0x6a, 0xb9, 0xbf, 0x5f, 0x42, 0x39, 0x92, 0xf1, + 0xd0, 0x8f, 0xf5, 0x3e, 0xae, 0x11, 0x99, 0xdd, 0xff, 0x3e, 0x2e, 0x73, 0x69, 0xd9, 0xb8, 0x7c, + 0x8a, 0x62, 0x1d, 0x3b, 0x66, 0x6d, 0xd9, 0xe2, 0x46, 0x82, 0xc2, 0xc0, 0x37, 0xad, 0x5a, 0xc1, + 0x61, 0x10, 0x87, 0x51, 0x81, 0xe7, 0x28, 0xfb, 0xe2, 0x91, 0xf4, 0x2e, 0x53, 0xe3, 0x44, 0x40, + 0x52, 0x73, 0xff, 0x66, 0x99, 0xcc, 0xca, 0xf6, 0xa8, 0x66, 0xc1, 0x16, 0xe2, 0xa8, 0xa4, 0xe3, + 0xdb, 0x96, 0x74, 0xbc, 0x54, 0xec, 0x5a, 0x06, 0xeb, 0xd4, 0x40, 0xa9, 0xf8, 0xe5, 0x94, 0x54, + 0xbc, 0x3c, 0x0c, 0xd1, 0x5c, 0x83, 0xfc, 0x8c, 0x85, 0xff, 0x10, 0x65, 0xed, 0xcc, 0x1a, 0xce, + 0x00, 0xe9, 0xf7, 0xcd, 0x72, 0x6a, 0x18, 0x4c, 0xea, 0x7d, 0x9d, 0x8c, 0xed, 0x7b, 0x51, 0x4b, + 0x9c, 0x3e, 0xbc, 0x39, 0xe4, 0xa7, 0xa0, 0x16, 0x40, 0xd4, 0xe2, 0xb2, 0xeb, 0x25, 0xf5, 0xbc, + 0x00, 0x2d, 0xca, 0x8d, 0xa4, 0x64, 0x8d, 0x3a, 0x6f, 0xe0, 0xf3, 0x03, 0x61, 0x57, 0x05, 0xca, + 0x3c, 0xc5, 0x9f, 0x1e, 0xc0, 0x12, 0x4a, 0xc1, 0xb1, 0x9b, 0xc3, 0x62, 0x10, 0xf8, 0x4b, 0x3e, + 0xa9, 0xaa, 0xa6, 0x47, 0x18, 0xb3, 0xf7, 0xc3, 0x0a, 0x39, 0x9b, 0xc1, 0x2a, 0xce, 0x4f, 0x58, + 0xb3, 0xf6, 0xb9, 0xa1, 0x79, 0xed, 0x63, 0xce, 0xdb, 0x4f, 0x30, 0x1d, 0xb3, 0x25, 0x78, 0xe3, + 0x04, 0xcd, 0x53, 0x45, 0x34, 0xdd, 0x3c, 0x16, 0xe5, 0x37, 0x8f, 0xcd, 0x9e, 0xd2, 0xe4, 0x63, + 0x33, 0xaa, 0x9f, 0x23, 0xfc, 0xc6, 0x3f, 0x3d, 0x46, 0xce, 0x65, 0x5d, 0xfd, 0x72, 0x7e, 0xa6, + 0x94, 0xca, 0xfb, 0xfb, 0x85, 0xe1, 0xef, 0x8f, 0xf1, 0x64, 0xc0, 0xe2, 0x6e, 0xf7, 0xb2, 0x9d, + 0x09, 0x38, 0x77, 0xb6, 0x45, 0xeb, 0x2c, 0xfa, 0x39, 0xe2, 0x29, 0x9c, 0xa5, 0x3c, 0x78, 0xeb, + 0x04, 0x5d, 0x11, 0x59, 0xa0, 0xe3, 0x54, 0xf4, 0xb3, 0x2c, 0xce, 0x8f, 0x7e, 0x96, 0x7d, 0x58, + 0xda, 0xc3, 0xfc, 0xbf, 0x6a, 0x5c, 0x23, 0x64, 0x81, 0x00, 0xf7, 0x24, 0xa3, 0xd7, 0x23, 0x64, + 0x83, 0xbf, 0x5d, 0x22, 0xa9, 0x13, 0x70, 0x65, 0xc8, 0x96, 0x06, 0x1a, 0xb2, 0x14, 0x83, 0xaa, + 0x3b, 0x7e, 0x3a, 0x21, 0x2d, 0xd0, 0x32, 0x60, 0x10, 0xf5, 0x18, 0x59, 0x65, 0xd0, 0x63, 0x64, + 0x68, 0xe1, 0xb4, 0xfd, 0x43, 0x5f, 0x9a, 0x95, 0x4a, 0x78, 0x6f, 0x61, 0x21, 0x70, 0x98, 0xfb, + 0xdd, 0x0a, 0x99, 0xe0, 0xb6, 0xdb, 0x08, 0xb7, 0xe5, 0xba, 0x30, 0xa3, 0x0a, 0x5d, 0xc2, 0xe2, + 0xbd, 0x59, 0x46, 0x3b, 0x8b, 0x33, 0x94, 0x1a, 0x9b, 0x36, 0xbd, 0x9c, 0x65, 0x6b, 0xf4, 0x4b, + 0xa9, 0xe0, 0x2f, 0xc2, 0x69, 0x18, 0x73, 0xb1, 0x4f, 0x48, 0xcc, 0xde, 0xb3, 0x41, 0x1a, 0x22, + 0xa3, 0xd5, 0xab, 0x85, 0xfa, 0xd1, 0x50, 0xd5, 0x78, 0x6f, 0x74, 0x2a, 0x1d, 0x05, 0x00, 0x83, + 0xf6, 0xd2, 0xeb, 0xa4, 0xaa, 0x90, 0xf3, 0x34, 0xde, 0x19, 0x93, 0x25, 0xff, 0x1c, 0x99, 0x4f, + 0xb5, 0x35, 0x94, 0xc2, 0xfc, 0x1d, 0xaa, 0x4c, 0xf4, 0xbd, 0xa3, 0x88, 0x59, 0xd1, 0xce, 0xb5, + 0x33, 0x8c, 0x76, 0xf1, 0x81, 0x4f, 0x62, 0xee, 0xeb, 0x87, 0xc7, 0x33, 0xa0, 0x90, 0xd9, 0x9a, + 0xcc, 0xd1, 0x57, 0xce, 0xce, 0xd1, 0xc7, 0x1e, 0xf1, 0xe0, 0x7d, 0x3f, 0x0d, 0x0d, 0x68, 0xd3, + 0xd6, 0x80, 0x9e, 0x29, 0xc2, 0x06, 0x03, 0x54, 0x9f, 0x7f, 0x57, 0x22, 0x0e, 0x47, 0x48, 0xbf, + 0x6b, 0xc5, 0x9d, 0x20, 0x86, 0xce, 0xae, 0xf9, 0x46, 0x41, 0xc0, 0xc0, 0x1a, 0x32, 0x67, 0xb1, + 0x7a, 0x0f, 0xa6, 0xd8, 0xe3, 0xd1, 0x95, 0x02, 0x8f, 0x47, 0xff, 0x56, 0x85, 0xa4, 0x4f, 0x8b, + 0x9d, 0xf7, 0xc8, 0x0c, 0xde, 0x4c, 0xd9, 0x09, 0xda, 0x41, 0x12, 0xf8, 0x71, 0x31, 0x4f, 0xfc, + 0x9a, 0x51, 0x43, 0xb8, 0xd1, 0x8c, 0x12, 0xb0, 0x28, 0x62, 0x88, 0x53, 0x37, 0xa2, 0x96, 0x42, + 0xdb, 0xdf, 0x63, 0x7a, 0x87, 0x4a, 0x8c, 0x50, 0x57, 0xa5, 0x60, 0x60, 0x64, 0x84, 0x25, 0x55, + 0x4e, 0x23, 0x2c, 0x69, 0x6c, 0xc8, 0xb0, 0xa4, 0xf1, 0x42, 0x61, 0x49, 0x40, 0x1e, 0x91, 0xde, + 0x2f, 0xfc, 0x8d, 0x77, 0xaf, 0x78, 0x52, 0x2e, 0x11, 0x4c, 0xb6, 0x84, 0x37, 0x76, 0x20, 0x13, + 0x03, 0x06, 0xd4, 0x74, 0x7b, 0xe4, 0x6c, 0xc3, 0x8f, 0x02, 0x96, 0x33, 0xa5, 0xa5, 0x57, 0xe0, + 0x57, 0xf1, 0xd6, 0xba, 0xbd, 0xf8, 0x87, 0xbc, 0x78, 0x63, 0x5c, 0x58, 0x97, 0x8b, 0x5d, 0x93, + 0x74, 0xff, 0x52, 0x99, 0x4c, 0x8a, 0xa8, 0x8c, 0x11, 0x6e, 0x24, 0xd7, 0x2d, 0xfb, 0xee, 0x85, + 0xbc, 0x95, 0xcb, 0xba, 0x33, 0xd0, 0xb2, 0x6b, 0xa4, 0x2c, 0xbb, 0x17, 0x8b, 0x91, 0x3b, 0xde, + 0xa6, 0xfb, 0xcd, 0x32, 0xdd, 0xed, 0xed, 0x68, 0x94, 0xd1, 0x4d, 0xc7, 0x97, 0xc8, 0x64, 0x2c, + 0x42, 0x36, 0x0a, 0x3d, 0xd7, 0x9d, 0xfe, 0xa4, 0xfa, 0x21, 0x6a, 0x11, 0xa4, 0x21, 0xc9, 0x65, + 0x46, 0x85, 0x54, 0x4e, 0x23, 0x2a, 0xc4, 0xfd, 0x2e, 0x13, 0xa9, 0xe6, 0x04, 0x9e, 0xc6, 0x9e, + 0xf0, 0xb6, 0x2d, 0x7d, 0x5f, 0x2a, 0xc4, 0x0a, 0xa2, 0x7f, 0x03, 0xf6, 0x86, 0x6f, 0x97, 0xc8, + 0xb4, 0x40, 0x3c, 0x8d, 0x11, 0xfc, 0xa8, 0x3d, 0x82, 0x67, 0x0b, 0x8d, 0x60, 0x40, 0xd7, 0xff, + 0x6e, 0x59, 0x75, 0xbd, 0xe0, 0x8b, 0xf8, 0xe6, 0x7b, 0xf7, 0xe5, 0x61, 0xde, 0xbb, 0x57, 0x6f, + 0xe9, 0x57, 0x06, 0xbe, 0xa5, 0xbf, 0x23, 0x5f, 0x65, 0xc5, 0x32, 0x11, 0x05, 0x3f, 0xec, 0x2b, + 0x86, 0x3a, 0x2c, 0x57, 0x51, 0x02, 0x83, 0xaa, 0x8c, 0x18, 0x63, 0x2d, 0x8c, 0xdb, 0xee, 0xc4, + 0x9b, 0xa2, 0x1c, 0x14, 0x86, 0xfb, 0x3a, 0x93, 0xb1, 0x6c, 0x7a, 0x86, 0x8b, 0xb5, 0xfd, 0xfe, + 0xb8, 0x9a, 0x58, 0xe6, 0x24, 0xb9, 0x29, 0x5f, 0xc0, 0x2f, 0x15, 0x09, 0x2c, 0x30, 0x3e, 0x49, + 0xf6, 0x03, 0xf8, 0x8e, 0xdf, 0xe7, 0x40, 0x7e, 0xbd, 0xb0, 0x8c, 0x1c, 0xc2, 0x65, 0xcc, 0x92, + 0x45, 0xb0, 0x0b, 0xf2, 0x9b, 0xf5, 0x74, 0x66, 0xbd, 0x35, 0x09, 0x00, 0x8d, 0x43, 0x2b, 0x70, + 0x75, 0xdd, 0x7e, 0x0c, 0x52, 0xaa, 0xeb, 0x72, 0x4a, 0x0c, 0x7d, 0x9d, 0xea, 0x2f, 0x2a, 0xb7, + 0x70, 0x9d, 0xa7, 0x88, 0xad, 0x72, 0xfd, 0x65, 0x5d, 0x17, 0x83, 0x89, 0x43, 0xd5, 0xba, 0xb3, + 0x2d, 0x15, 0x20, 0x58, 0xef, 0xed, 0xb4, 0x83, 0x26, 0x56, 0xe5, 0xc1, 0xf9, 0x8f, 0xe2, 0x69, + 0x70, 0xad, 0x1f, 0x0c, 0x59, 0x75, 0x9c, 0x6d, 0x0c, 0xc2, 0x63, 0x39, 0x94, 0xe5, 0x35, 0x1e, + 0x91, 0xb1, 0xea, 0x82, 0x4c, 0x77, 0xd5, 0xb0, 0xc1, 0x1f, 0xb1, 0x22, 0x2e, 0x14, 0x44, 0x11, + 0xa4, 0x49, 0xe0, 0x19, 0x73, 0xdb, 0x7c, 0x0b, 0xa5, 0x2e, 0xe2, 0x24, 0xd5, 0x19, 0xb3, 0xf5, + 0x52, 0x4a, 0x1d, 0x52, 0xd8, 0x54, 0xda, 0x2f, 0x9a, 0x25, 0xe2, 0xe6, 0x2e, 0x9e, 0x53, 0xc5, + 0x22, 0x79, 0xeb, 0xa7, 0x30, 0x4a, 0x72, 0x6b, 0x00, 0x0e, 0x0c, 0xac, 0xfd, 0xf1, 0x3c, 0xf5, + 0x5f, 0xc7, 0xca, 0xc6, 0xd6, 0xe8, 0x7c, 0x8d, 0xcc, 0x98, 0x2d, 0x09, 0x61, 0xf7, 0x72, 0xf1, + 0x57, 0x62, 0xc4, 0x16, 0xab, 0xa2, 0x2b, 0x4c, 0x18, 0x58, 0xb4, 0xdd, 0x26, 0x99, 0x4f, 0xbd, + 0x52, 0xa9, 0x9e, 0x3b, 0x2d, 0x3d, 0xa8, 0xe7, 0x4e, 0x31, 0x83, 0xca, 0xf8, 0xb6, 0x17, 0xe4, + 0xe7, 0x1a, 0x2f, 0xf2, 0x5e, 0xa8, 0xf3, 0x1a, 0x99, 0xf0, 0x77, 0x77, 0xf1, 0x39, 0x79, 0xbe, + 0x72, 0x1e, 0x57, 0x8f, 0x58, 0xb3, 0x52, 0x5c, 0x0f, 0xac, 0x31, 0xfe, 0x13, 0x04, 0xb2, 0xfb, + 0x1f, 0xa8, 0x8d, 0xb4, 0x4d, 0x0d, 0x7f, 0x91, 0xc4, 0x31, 0xa7, 0x27, 0xab, 0x7d, 0x59, 0xcf, + 0x9f, 0xcb, 0xc8, 0x7a, 0xee, 0x68, 0x82, 0x19, 0x39, 0xcf, 0xd5, 0x68, 0x2a, 0x85, 0x46, 0x33, + 0x36, 0xcc, 0x68, 0xbe, 0x51, 0x22, 0x22, 0x16, 0xa0, 0xc0, 0xe6, 0xd2, 0x92, 0x99, 0x8a, 0xad, + 0x8b, 0xf0, 0x17, 0x8a, 0x04, 0xb4, 0x8b, 0xeb, 0xef, 0x8a, 0x95, 0xac, 0x4b, 0xef, 0x16, 0x55, + 0x34, 0xa0, 0xa7, 0x39, 0xf8, 0x86, 0x7c, 0xed, 0x3d, 0xa7, 0x5f, 0x43, 0xa5, 0xc0, 0x61, 0x89, + 0x7c, 0x91, 0xb0, 0xca, 0x84, 0x62, 0x26, 0xf2, 0x95, 0x00, 0xd0, 0x38, 0x78, 0x92, 0x1f, 0xf7, + 0x76, 0x18, 0x7a, 0x2a, 0x30, 0xa0, 0xc1, 0x8b, 0x41, 0xc2, 0xdd, 0xbf, 0xbe, 0x40, 0xac, 0xa1, + 0x59, 0x59, 0x57, 0x4a, 0x0f, 0x3c, 0xeb, 0x0a, 0xa5, 0xee, 0x1f, 0x74, 0x93, 0xa3, 0x5a, 0x10, + 0x15, 0xcb, 0x80, 0xb5, 0x2e, 0xb0, 0xfb, 0xa9, 0x4b, 0x08, 0x28, 0x8a, 0x03, 0x72, 0xe8, 0x54, + 0x1e, 0x8a, 0x1c, 0x3a, 0x63, 0xff, 0x5f, 0x72, 0xe8, 0x50, 0x3d, 0x7f, 0x8f, 0x3f, 0x9f, 0x2d, + 0x2e, 0x30, 0xe5, 0x1c, 0x42, 0x65, 0xbc, 0xb5, 0xcd, 0x6f, 0xaa, 0x08, 0x00, 0x48, 0x72, 0x98, + 0xa1, 0x85, 0xab, 0xfc, 0x22, 0x2d, 0xcd, 0xcb, 0x45, 0x9c, 0x21, 0xfd, 0x19, 0x5a, 0x44, 0xf4, + 0x87, 0xa0, 0x25, 0x73, 0xe6, 0x4c, 0x7e, 0xfc, 0x9c, 0x39, 0x2a, 0xd3, 0xcd, 0xd4, 0x83, 0xca, + 0x74, 0x63, 0x65, 0x0c, 0xaa, 0x8e, 0x22, 0x63, 0x10, 0x95, 0x6d, 0xe7, 0xbb, 0x59, 0x09, 0xb7, + 0x44, 0xce, 0x9a, 0x2f, 0x9e, 0x20, 0x01, 0x99, 0xd5, 0x34, 0xbb, 0x57, 0x92, 0x89, 0x06, 0xd9, + 0x0d, 0xcb, 0xd4, 0x43, 0xd3, 0x1f, 0x3f, 0xf5, 0xd0, 0xa8, 0x93, 0xdb, 0xe8, 0x44, 0x44, 0xb3, + 0x23, 0x49, 0x44, 0x34, 0xf7, 0x00, 0x13, 0x11, 0x19, 0x29, 0x84, 0xe6, 0x1f, 0x6c, 0x0a, 0xa1, + 0x7d, 0x32, 0xdd, 0x0a, 0xef, 0x75, 0xee, 0x79, 0x51, 0x6b, 0xa5, 0xbe, 0xc9, 0x6e, 0x47, 0xe4, + 0x5e, 0x3e, 0xaf, 0xe9, 0x0a, 0x56, 0x0b, 0xdc, 0xeb, 0xa7, 0x81, 0x60, 0x92, 0x16, 0xc9, 0x94, + 0xce, 0x7c, 0xcc, 0x64, 0x4a, 0x56, 0x4a, 0x22, 0x67, 0x14, 0x29, 0x89, 0xde, 0x63, 0x57, 0x50, + 0x77, 0x83, 0xbd, 0x1b, 0x5e, 0x77, 0xf1, 0x6c, 0x91, 0x16, 0xd6, 0x24, 0x7a, 0x7f, 0x0b, 0x0a, + 0x04, 0x9a, 0x68, 0x7f, 0xd2, 0xa3, 0x73, 0xa7, 0x9d, 0xf4, 0xe8, 0xfc, 0x83, 0x4d, 0x7a, 0xf4, + 0x17, 0xc8, 0x13, 0xc7, 0xf7, 0x4e, 0x67, 0x99, 0xac, 0x6b, 0xb3, 0x35, 0x95, 0x65, 0x92, 0xed, + 0xfc, 0x06, 0x96, 0x11, 0xd3, 0x58, 0x3e, 0x2e, 0xa6, 0xd1, 0xfd, 0xe7, 0x25, 0xf2, 0xe8, 0x80, + 0x7c, 0x08, 0x85, 0x83, 0x94, 0xbb, 0x64, 0xbe, 0x6b, 0x57, 0x2d, 0x7c, 0x9d, 0xc0, 0xca, 0xbf, + 0xa0, 0xb2, 0x14, 0xa7, 0x00, 0x90, 0x26, 0xbf, 0xfa, 0xcc, 0xf7, 0x7e, 0xf8, 0xc4, 0x27, 0x3e, + 0xa4, 0x7f, 0xbf, 0x4b, 0xff, 0x7e, 0xf2, 0x0f, 0x9f, 0x28, 0x7d, 0x8f, 0xfe, 0x7d, 0x48, 0xff, + 0xfe, 0x80, 0xfe, 0x7d, 0xe3, 0x8f, 0x9e, 0xf8, 0xc4, 0x8f, 0x95, 0x0f, 0x2f, 0xff, 0xbf, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x9f, 0xc1, 0xf6, 0x8b, 0x70, 0xae, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 719af7c0aa2fa..8053e852bb2c1 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -1748,6 +1748,9 @@ message PersistentVolumeSource { // VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine optional VsphereVirtualDiskVolumeSource vsphereVolume = 14; + + // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + optional QuobyteVolumeSource quobyte = 15; } // PersistentVolumeSpec is the specification of a persistent volume. @@ -2317,6 +2320,30 @@ message Probe { optional int32 failureThreshold = 6; } +// Represents a Quobyte mount that lasts the lifetime of a pod. +// Quobyte volumes do not support ownership management or SELinux relabeling. +message QuobyteVolumeSource { + // Registry represents a single or multiple Quobyte Registry services + // specified as a string as host:port pair (multiple entries are separated with commas) + // which acts as the central registry for volumes + optional string registry = 1; + + // Volume is a string that references an already created Quobyte volume by name. + optional string volume = 2; + + // ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. + // Defaults to false. + optional bool readOnly = 3; + + // User to map volume access to + // Defaults to serivceaccount user + optional string user = 4; + + // Group to map volume access to + // Default is no group + optional string group = 5; +} + // Represents a Rados Block Device mount that lasts the lifetime of a pod. // RBD volumes support ownership management and SELinux relabeling. message RBDVolumeSource { @@ -2977,6 +3004,9 @@ message VolumeSource { // VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine optional VsphereVirtualDiskVolumeSource vsphereVolume = 20; + + // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + optional QuobyteVolumeSource quobyte = 21; } // Represents a vSphere volume resource. diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 8f6824e05eb3b..3020269e4aa15 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -1076,7 +1076,7 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep96 := !z.EncBinary() yy2arr96 := z.EncBasicHandle().StructToArray - var yyq96 [21]bool + var yyq96 [22]bool _, _, _ = yysep96, yyq96, yy2arr96 const yyr96 bool = false yyq96[1] = x.VolumeSource.HostPath != nil && x.HostPath != nil @@ -1099,9 +1099,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { yyq96[18] = x.VolumeSource.AzureFile != nil && x.AzureFile != nil yyq96[19] = x.VolumeSource.ConfigMap != nil && x.ConfigMap != nil yyq96[20] = x.VolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq96[21] = x.VolumeSource.Quobyte != nil && x.Quobyte != nil var yynn96 int if yyr96 || yy2arr96 { - r.EncodeArrayStart(21) + r.EncodeArrayStart(22) } else { yynn96 = 1 for _, b := range yyq96 { @@ -1871,6 +1872,43 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } } } + var yyn120 bool + if x.VolumeSource.Quobyte == nil { + yyn120 = true + goto LABEL120 + } + LABEL120: + if yyr96 || yy2arr96 { + if yyn120 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq96[21] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq96[21] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn120 { + r.EncodeNil() + } else { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + } if yyr96 || yy2arr96 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -1884,25 +1922,25 @@ func (x *Volume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym120 := z.DecBinary() - _ = yym120 + yym121 := z.DecBinary() + _ = yym121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct121 := r.ContainerType() - if yyct121 == codecSelferValueTypeMap1234 { - yyl121 := r.ReadMapStart() - if yyl121 == 0 { + yyct122 := r.ContainerType() + if yyct122 == codecSelferValueTypeMap1234 { + yyl122 := r.ReadMapStart() + if yyl122 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl121, d) + x.codecDecodeSelfFromMap(yyl122, d) } - } else if yyct121 == codecSelferValueTypeArray1234 { - yyl121 := r.ReadArrayStart() - if yyl121 == 0 { + } else if yyct122 == codecSelferValueTypeArray1234 { + yyl122 := r.ReadArrayStart() + if yyl122 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl121, d) + x.codecDecodeSelfFromArray(yyl122, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -1914,12 +1952,12 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys122Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys122Slc - var yyhl122 bool = l >= 0 - for yyj122 := 0; ; yyj122++ { - if yyhl122 { - if yyj122 >= l { + var yys123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys123Slc + var yyhl123 bool = l >= 0 + for yyj123 := 0; ; yyj123++ { + if yyhl123 { + if yyj123 >= l { break } } else { @@ -1928,10 +1966,10 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys122Slc = r.DecodeBytes(yys122Slc, true, true) - yys122 := string(yys122Slc) + yys123Slc = r.DecodeBytes(yys123Slc, true, true) + yys123 := string(yys123Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys122 { + switch yys123 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -2218,10 +2256,24 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } + case "quobyte": + if x.VolumeSource.Quobyte == nil { + x.VolumeSource.Quobyte = new(QuobyteVolumeSource) + } + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys122) - } // end switch yys122 - } // end for yyj122 + z.DecStructFieldNotFound(-1, yys123) + } // end switch yys123 + } // end for yyj123 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -2229,16 +2281,16 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj144 int - var yyb144 bool - var yyhl144 bool = l >= 0 - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + var yyj146 int + var yyb146 bool + var yyhl146 bool = l >= 0 + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2251,13 +2303,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.HostPath == nil { x.VolumeSource.HostPath = new(HostPathVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2275,13 +2327,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.EmptyDir == nil { x.VolumeSource.EmptyDir = new(EmptyDirVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2299,13 +2351,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GCEPersistentDisk == nil { x.VolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2323,13 +2375,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AWSElasticBlockStore == nil { x.VolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2347,13 +2399,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GitRepo == nil { x.VolumeSource.GitRepo = new(GitRepoVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2371,13 +2423,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Secret == nil { x.VolumeSource.Secret = new(SecretVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2395,13 +2447,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.NFS == nil { x.VolumeSource.NFS = new(NFSVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2419,13 +2471,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ISCSI == nil { x.VolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2443,13 +2495,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Glusterfs == nil { x.VolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2467,13 +2519,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.PersistentVolumeClaim == nil { x.VolumeSource.PersistentVolumeClaim = new(PersistentVolumeClaimVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2491,13 +2543,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.RBD == nil { x.VolumeSource.RBD = new(RBDVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2515,13 +2567,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FlexVolume == nil { x.VolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2539,13 +2591,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Cinder == nil { x.VolumeSource.Cinder = new(CinderVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2563,13 +2615,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.CephFS == nil { x.VolumeSource.CephFS = new(CephFSVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2587,13 +2639,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Flocker == nil { x.VolumeSource.Flocker = new(FlockerVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2611,13 +2663,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.DownwardAPI == nil { x.VolumeSource.DownwardAPI = new(DownwardAPIVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2635,13 +2687,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FC == nil { x.VolumeSource.FC = new(FCVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2659,13 +2711,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AzureFile == nil { x.VolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2683,13 +2735,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ConfigMap == nil { x.VolumeSource.ConfigMap = new(ConfigMapVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2707,13 +2759,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.VsphereVolume == nil { x.VolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2728,18 +2780,42 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } + if x.VolumeSource.Quobyte == nil { + x.VolumeSource.Quobyte = new(QuobyteVolumeSource) + } + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l + } else { + yyb146 = r.CheckBreak() + } + if yyb146 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } for { - yyj144++ - if yyhl144 { - yyb144 = yyj144 > l + yyj146++ + if yyhl146 { + yyb146 = yyj146 > l } else { - yyb144 = r.CheckBreak() + yyb146 = r.CheckBreak() } - if yyb144 { + if yyb146 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj144-1, "") + z.DecStructFieldNotFound(yyj146-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -2751,52 +2827,53 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym166 := z.EncBinary() - _ = yym166 + yym169 := z.EncBinary() + _ = yym169 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep167 := !z.EncBinary() - yy2arr167 := z.EncBasicHandle().StructToArray - var yyq167 [20]bool - _, _, _ = yysep167, yyq167, yy2arr167 - const yyr167 bool = false - yyq167[0] = x.HostPath != nil - yyq167[1] = x.EmptyDir != nil - yyq167[2] = x.GCEPersistentDisk != nil - yyq167[3] = x.AWSElasticBlockStore != nil - yyq167[4] = x.GitRepo != nil - yyq167[5] = x.Secret != nil - yyq167[6] = x.NFS != nil - yyq167[7] = x.ISCSI != nil - yyq167[8] = x.Glusterfs != nil - yyq167[9] = x.PersistentVolumeClaim != nil - yyq167[10] = x.RBD != nil - yyq167[11] = x.FlexVolume != nil - yyq167[12] = x.Cinder != nil - yyq167[13] = x.CephFS != nil - yyq167[14] = x.Flocker != nil - yyq167[15] = x.DownwardAPI != nil - yyq167[16] = x.FC != nil - yyq167[17] = x.AzureFile != nil - yyq167[18] = x.ConfigMap != nil - yyq167[19] = x.VsphereVolume != nil - var yynn167 int - if yyr167 || yy2arr167 { - r.EncodeArrayStart(20) - } else { - yynn167 = 0 - for _, b := range yyq167 { + yysep170 := !z.EncBinary() + yy2arr170 := z.EncBasicHandle().StructToArray + var yyq170 [21]bool + _, _, _ = yysep170, yyq170, yy2arr170 + const yyr170 bool = false + yyq170[0] = x.HostPath != nil + yyq170[1] = x.EmptyDir != nil + yyq170[2] = x.GCEPersistentDisk != nil + yyq170[3] = x.AWSElasticBlockStore != nil + yyq170[4] = x.GitRepo != nil + yyq170[5] = x.Secret != nil + yyq170[6] = x.NFS != nil + yyq170[7] = x.ISCSI != nil + yyq170[8] = x.Glusterfs != nil + yyq170[9] = x.PersistentVolumeClaim != nil + yyq170[10] = x.RBD != nil + yyq170[11] = x.FlexVolume != nil + yyq170[12] = x.Cinder != nil + yyq170[13] = x.CephFS != nil + yyq170[14] = x.Flocker != nil + yyq170[15] = x.DownwardAPI != nil + yyq170[16] = x.FC != nil + yyq170[17] = x.AzureFile != nil + yyq170[18] = x.ConfigMap != nil + yyq170[19] = x.VsphereVolume != nil + yyq170[20] = x.Quobyte != nil + var yynn170 int + if yyr170 || yy2arr170 { + r.EncodeArrayStart(21) + } else { + yynn170 = 0 + for _, b := range yyq170 { if b { - yynn167++ + yynn170++ } } - r.EncodeMapStart(yynn167) - yynn167 = 0 + r.EncodeMapStart(yynn170) + yynn170 = 0 } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[0] { + if yyq170[0] { if x.HostPath == nil { r.EncodeNil() } else { @@ -2806,7 +2883,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[0] { + if yyq170[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2817,9 +2894,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[1] { + if yyq170[1] { if x.EmptyDir == nil { r.EncodeNil() } else { @@ -2829,7 +2906,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[1] { + if yyq170[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("emptyDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2840,9 +2917,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[2] { + if yyq170[2] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -2852,7 +2929,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[2] { + if yyq170[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2863,9 +2940,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[3] { + if yyq170[3] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -2875,7 +2952,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[3] { + if yyq170[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2886,9 +2963,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[4] { + if yyq170[4] { if x.GitRepo == nil { r.EncodeNil() } else { @@ -2898,7 +2975,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[4] { + if yyq170[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gitRepo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2909,9 +2986,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[5] { + if yyq170[5] { if x.Secret == nil { r.EncodeNil() } else { @@ -2921,7 +2998,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[5] { + if yyq170[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secret")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2932,9 +3009,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[6] { + if yyq170[6] { if x.NFS == nil { r.EncodeNil() } else { @@ -2944,7 +3021,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[6] { + if yyq170[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2955,9 +3032,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[7] { + if yyq170[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -2967,7 +3044,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[7] { + if yyq170[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2978,9 +3055,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[8] { + if yyq170[8] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -2990,7 +3067,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[8] { + if yyq170[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3001,9 +3078,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[9] { + if yyq170[9] { if x.PersistentVolumeClaim == nil { r.EncodeNil() } else { @@ -3013,7 +3090,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[9] { + if yyq170[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeClaim")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3024,9 +3101,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[10] { + if yyq170[10] { if x.RBD == nil { r.EncodeNil() } else { @@ -3036,7 +3113,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[10] { + if yyq170[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3047,9 +3124,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[11] { + if yyq170[11] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -3059,7 +3136,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[11] { + if yyq170[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3070,9 +3147,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[12] { + if yyq170[12] { if x.Cinder == nil { r.EncodeNil() } else { @@ -3082,7 +3159,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[12] { + if yyq170[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3093,9 +3170,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[13] { + if yyq170[13] { if x.CephFS == nil { r.EncodeNil() } else { @@ -3105,7 +3182,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[13] { + if yyq170[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3116,9 +3193,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[14] { + if yyq170[14] { if x.Flocker == nil { r.EncodeNil() } else { @@ -3128,7 +3205,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[14] { + if yyq170[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3139,9 +3216,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[15] { + if yyq170[15] { if x.DownwardAPI == nil { r.EncodeNil() } else { @@ -3151,7 +3228,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[15] { + if yyq170[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("downwardAPI")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3162,9 +3239,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[16] { + if yyq170[16] { if x.FC == nil { r.EncodeNil() } else { @@ -3174,7 +3251,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[16] { + if yyq170[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3185,9 +3262,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[17] { + if yyq170[17] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -3197,7 +3274,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[17] { + if yyq170[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3208,9 +3285,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[18] { + if yyq170[18] { if x.ConfigMap == nil { r.EncodeNil() } else { @@ -3220,7 +3297,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[18] { + if yyq170[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMap")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3231,9 +3308,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq167[19] { + if yyq170[19] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -3243,7 +3320,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq167[19] { + if yyq170[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3254,7 +3331,30 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr167 || yy2arr167 { + if yyr170 || yy2arr170 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq170[20] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq170[20] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + if yyr170 || yy2arr170 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -3267,25 +3367,25 @@ func (x *VolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym188 := z.DecBinary() - _ = yym188 + yym192 := z.DecBinary() + _ = yym192 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct189 := r.ContainerType() - if yyct189 == codecSelferValueTypeMap1234 { - yyl189 := r.ReadMapStart() - if yyl189 == 0 { + yyct193 := r.ContainerType() + if yyct193 == codecSelferValueTypeMap1234 { + yyl193 := r.ReadMapStart() + if yyl193 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl189, d) + x.codecDecodeSelfFromMap(yyl193, d) } - } else if yyct189 == codecSelferValueTypeArray1234 { - yyl189 := r.ReadArrayStart() - if yyl189 == 0 { + } else if yyct193 == codecSelferValueTypeArray1234 { + yyl193 := r.ReadArrayStart() + if yyl193 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl189, d) + x.codecDecodeSelfFromArray(yyl193, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -3297,12 +3397,12 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys190Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys190Slc - var yyhl190 bool = l >= 0 - for yyj190 := 0; ; yyj190++ { - if yyhl190 { - if yyj190 >= l { + var yys194Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys194Slc + var yyhl194 bool = l >= 0 + for yyj194 := 0; ; yyj194++ { + if yyhl194 { + if yyj194 >= l { break } } else { @@ -3311,10 +3411,10 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys190Slc = r.DecodeBytes(yys190Slc, true, true) - yys190 := string(yys190Slc) + yys194Slc = r.DecodeBytes(yys194Slc, true, true) + yys194 := string(yys194Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys190 { + switch yys194 { case "hostPath": if r.TryDecodeAsNil() { if x.HostPath != nil { @@ -3535,10 +3635,21 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } + case "quobyte": + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys190) - } // end switch yys190 - } // end for yyj190 + z.DecStructFieldNotFound(-1, yys194) + } // end switch yys194 + } // end for yyj194 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -3546,16 +3657,16 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj211 int - var yyb211 bool - var yyhl211 bool = l >= 0 - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + var yyj216 int + var yyb216 bool + var yyhl216 bool = l >= 0 + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3570,13 +3681,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HostPath.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3591,13 +3702,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.EmptyDir.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3612,13 +3723,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3633,13 +3744,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3654,13 +3765,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GitRepo.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3675,13 +3786,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Secret.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3696,13 +3807,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NFS.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3717,13 +3828,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ISCSI.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3738,13 +3849,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Glusterfs.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3759,13 +3870,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PersistentVolumeClaim.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3780,13 +3891,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3801,13 +3912,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FlexVolume.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3822,13 +3933,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Cinder.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3843,13 +3954,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.CephFS.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3864,13 +3975,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Flocker.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3885,13 +3996,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.DownwardAPI.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3906,13 +4017,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FC.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3927,13 +4038,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AzureFile.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3948,13 +4059,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMap.CodecDecodeSelf(d) } - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3969,18 +4080,39 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l + } else { + yyb216 = r.CheckBreak() + } + if yyb216 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } for { - yyj211++ - if yyhl211 { - yyb211 = yyj211 > l + yyj216++ + if yyhl216 { + yyb216 = yyj216 > l } else { - yyb211 = r.CheckBreak() + yyb216 = r.CheckBreak() } - if yyb211 { + if yyb216 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj211-1, "") + z.DecStructFieldNotFound(yyj216-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -3992,34 +4124,34 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym232 := z.EncBinary() - _ = yym232 + yym238 := z.EncBinary() + _ = yym238 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep233 := !z.EncBinary() - yy2arr233 := z.EncBasicHandle().StructToArray - var yyq233 [2]bool - _, _, _ = yysep233, yyq233, yy2arr233 - const yyr233 bool = false - yyq233[1] = x.ReadOnly != false - var yynn233 int - if yyr233 || yy2arr233 { + yysep239 := !z.EncBinary() + yy2arr239 := z.EncBasicHandle().StructToArray + var yyq239 [2]bool + _, _, _ = yysep239, yyq239, yy2arr239 + const yyr239 bool = false + yyq239[1] = x.ReadOnly != false + var yynn239 int + if yyr239 || yy2arr239 { r.EncodeArrayStart(2) } else { - yynn233 = 1 - for _, b := range yyq233 { + yynn239 = 1 + for _, b := range yyq239 { if b { - yynn233++ + yynn239++ } } - r.EncodeMapStart(yynn233) - yynn233 = 0 + r.EncodeMapStart(yynn239) + yynn239 = 0 } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym235 := z.EncBinary() - _ = yym235 + yym241 := z.EncBinary() + _ = yym241 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) @@ -4028,18 +4160,18 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym236 := z.EncBinary() - _ = yym236 + yym242 := z.EncBinary() + _ = yym242 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq233[1] { - yym238 := z.EncBinary() - _ = yym238 + if yyq239[1] { + yym244 := z.EncBinary() + _ = yym244 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -4048,19 +4180,19 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder r.EncodeBool(false) } } else { - if yyq233[1] { + if yyq239[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym239 := z.EncBinary() - _ = yym239 + yym245 := z.EncBinary() + _ = yym245 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr233 || yy2arr233 { + if yyr239 || yy2arr239 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4073,25 +4205,25 @@ func (x *PersistentVolumeClaimVolumeSource) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym240 := z.DecBinary() - _ = yym240 + yym246 := z.DecBinary() + _ = yym246 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct241 := r.ContainerType() - if yyct241 == codecSelferValueTypeMap1234 { - yyl241 := r.ReadMapStart() - if yyl241 == 0 { + yyct247 := r.ContainerType() + if yyct247 == codecSelferValueTypeMap1234 { + yyl247 := r.ReadMapStart() + if yyl247 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl241, d) + x.codecDecodeSelfFromMap(yyl247, d) } - } else if yyct241 == codecSelferValueTypeArray1234 { - yyl241 := r.ReadArrayStart() - if yyl241 == 0 { + } else if yyct247 == codecSelferValueTypeArray1234 { + yyl247 := r.ReadArrayStart() + if yyl247 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl241, d) + x.codecDecodeSelfFromArray(yyl247, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -4103,12 +4235,12 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys242Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys242Slc - var yyhl242 bool = l >= 0 - for yyj242 := 0; ; yyj242++ { - if yyhl242 { - if yyj242 >= l { + var yys248Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys248Slc + var yyhl248 bool = l >= 0 + for yyj248 := 0; ; yyj248++ { + if yyhl248 { + if yyj248 >= l { break } } else { @@ -4117,10 +4249,10 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys242Slc = r.DecodeBytes(yys242Slc, true, true) - yys242 := string(yys242Slc) + yys248Slc = r.DecodeBytes(yys248Slc, true, true) + yys248 := string(yys248Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys242 { + switch yys248 { case "claimName": if r.TryDecodeAsNil() { x.ClaimName = "" @@ -4134,9 +4266,9 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys242) - } // end switch yys242 - } // end for yyj242 + z.DecStructFieldNotFound(-1, yys248) + } // end switch yys248 + } // end for yyj248 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4144,16 +4276,16 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj245 int - var yyb245 bool - var yyhl245 bool = l >= 0 - yyj245++ - if yyhl245 { - yyb245 = yyj245 > l + var yyj251 int + var yyb251 bool + var yyhl251 bool = l >= 0 + yyj251++ + if yyhl251 { + yyb251 = yyj251 > l } else { - yyb245 = r.CheckBreak() + yyb251 = r.CheckBreak() } - if yyb245 { + if yyb251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4163,13 +4295,13 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c } else { x.ClaimName = string(r.DecodeString()) } - yyj245++ - if yyhl245 { - yyb245 = yyj245 > l + yyj251++ + if yyhl251 { + yyb251 = yyj251 > l } else { - yyb245 = r.CheckBreak() + yyb251 = r.CheckBreak() } - if yyb245 { + if yyb251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4180,17 +4312,17 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c x.ReadOnly = bool(r.DecodeBool()) } for { - yyj245++ - if yyhl245 { - yyb245 = yyj245 > l + yyj251++ + if yyhl251 { + yyb251 = yyj251 > l } else { - yyb245 = r.CheckBreak() + yyb251 = r.CheckBreak() } - if yyb245 { + if yyb251 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj245-1, "") + z.DecStructFieldNotFound(yyj251-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -4202,46 +4334,47 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym248 := z.EncBinary() - _ = yym248 + yym254 := z.EncBinary() + _ = yym254 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep249 := !z.EncBinary() - yy2arr249 := z.EncBasicHandle().StructToArray - var yyq249 [14]bool - _, _, _ = yysep249, yyq249, yy2arr249 - const yyr249 bool = false - yyq249[0] = x.GCEPersistentDisk != nil - yyq249[1] = x.AWSElasticBlockStore != nil - yyq249[2] = x.HostPath != nil - yyq249[3] = x.Glusterfs != nil - yyq249[4] = x.NFS != nil - yyq249[5] = x.RBD != nil - yyq249[6] = x.ISCSI != nil - yyq249[7] = x.Cinder != nil - yyq249[8] = x.CephFS != nil - yyq249[9] = x.FC != nil - yyq249[10] = x.Flocker != nil - yyq249[11] = x.FlexVolume != nil - yyq249[12] = x.AzureFile != nil - yyq249[13] = x.VsphereVolume != nil - var yynn249 int - if yyr249 || yy2arr249 { - r.EncodeArrayStart(14) - } else { - yynn249 = 0 - for _, b := range yyq249 { + yysep255 := !z.EncBinary() + yy2arr255 := z.EncBasicHandle().StructToArray + var yyq255 [15]bool + _, _, _ = yysep255, yyq255, yy2arr255 + const yyr255 bool = false + yyq255[0] = x.GCEPersistentDisk != nil + yyq255[1] = x.AWSElasticBlockStore != nil + yyq255[2] = x.HostPath != nil + yyq255[3] = x.Glusterfs != nil + yyq255[4] = x.NFS != nil + yyq255[5] = x.RBD != nil + yyq255[6] = x.ISCSI != nil + yyq255[7] = x.Cinder != nil + yyq255[8] = x.CephFS != nil + yyq255[9] = x.FC != nil + yyq255[10] = x.Flocker != nil + yyq255[11] = x.FlexVolume != nil + yyq255[12] = x.AzureFile != nil + yyq255[13] = x.VsphereVolume != nil + yyq255[14] = x.Quobyte != nil + var yynn255 int + if yyr255 || yy2arr255 { + r.EncodeArrayStart(15) + } else { + yynn255 = 0 + for _, b := range yyq255 { if b { - yynn249++ + yynn255++ } } - r.EncodeMapStart(yynn249) - yynn249 = 0 + r.EncodeMapStart(yynn255) + yynn255 = 0 } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[0] { + if yyq255[0] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -4251,7 +4384,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[0] { + if yyq255[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4262,9 +4395,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[1] { + if yyq255[1] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -4274,7 +4407,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[1] { + if yyq255[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4285,9 +4418,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[2] { + if yyq255[2] { if x.HostPath == nil { r.EncodeNil() } else { @@ -4297,7 +4430,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[2] { + if yyq255[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4308,9 +4441,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[3] { + if yyq255[3] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -4320,7 +4453,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[3] { + if yyq255[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4331,9 +4464,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[4] { + if yyq255[4] { if x.NFS == nil { r.EncodeNil() } else { @@ -4343,7 +4476,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[4] { + if yyq255[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4354,9 +4487,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[5] { + if yyq255[5] { if x.RBD == nil { r.EncodeNil() } else { @@ -4366,7 +4499,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[5] { + if yyq255[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4377,9 +4510,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[6] { + if yyq255[6] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -4389,7 +4522,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[6] { + if yyq255[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4400,9 +4533,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[7] { + if yyq255[7] { if x.Cinder == nil { r.EncodeNil() } else { @@ -4412,7 +4545,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[7] { + if yyq255[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4423,9 +4556,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[8] { + if yyq255[8] { if x.CephFS == nil { r.EncodeNil() } else { @@ -4435,7 +4568,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[8] { + if yyq255[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4446,9 +4579,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[9] { + if yyq255[9] { if x.FC == nil { r.EncodeNil() } else { @@ -4458,7 +4591,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[9] { + if yyq255[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4469,9 +4602,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[10] { + if yyq255[10] { if x.Flocker == nil { r.EncodeNil() } else { @@ -4481,7 +4614,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[10] { + if yyq255[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4492,9 +4625,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[11] { + if yyq255[11] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -4504,7 +4637,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[11] { + if yyq255[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4515,9 +4648,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[12] { + if yyq255[12] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -4527,7 +4660,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[12] { + if yyq255[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4538,9 +4671,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq249[13] { + if yyq255[13] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -4550,7 +4683,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq249[13] { + if yyq255[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4561,7 +4694,30 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr249 || yy2arr249 { + if yyr255 || yy2arr255 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq255[14] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq255[14] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + if yyr255 || yy2arr255 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4574,25 +4730,25 @@ func (x *PersistentVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym264 := z.DecBinary() - _ = yym264 + yym271 := z.DecBinary() + _ = yym271 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct265 := r.ContainerType() - if yyct265 == codecSelferValueTypeMap1234 { - yyl265 := r.ReadMapStart() - if yyl265 == 0 { + yyct272 := r.ContainerType() + if yyct272 == codecSelferValueTypeMap1234 { + yyl272 := r.ReadMapStart() + if yyl272 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl265, d) + x.codecDecodeSelfFromMap(yyl272, d) } - } else if yyct265 == codecSelferValueTypeArray1234 { - yyl265 := r.ReadArrayStart() - if yyl265 == 0 { + } else if yyct272 == codecSelferValueTypeArray1234 { + yyl272 := r.ReadArrayStart() + if yyl272 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl265, d) + x.codecDecodeSelfFromArray(yyl272, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -4604,12 +4760,12 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys266Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys266Slc - var yyhl266 bool = l >= 0 - for yyj266 := 0; ; yyj266++ { - if yyhl266 { - if yyj266 >= l { + var yys273Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys273Slc + var yyhl273 bool = l >= 0 + for yyj273 := 0; ; yyj273++ { + if yyhl273 { + if yyj273 >= l { break } } else { @@ -4618,10 +4774,10 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys266Slc = r.DecodeBytes(yys266Slc, true, true) - yys266 := string(yys266Slc) + yys273Slc = r.DecodeBytes(yys273Slc, true, true) + yys273 := string(yys273Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys266 { + switch yys273 { case "gcePersistentDisk": if r.TryDecodeAsNil() { if x.GCEPersistentDisk != nil { @@ -4776,10 +4932,21 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } x.VsphereVolume.CodecDecodeSelf(d) } + case "quobyte": + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys266) - } // end switch yys266 - } // end for yyj266 + z.DecStructFieldNotFound(-1, yys273) + } // end switch yys273 + } // end for yyj273 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4787,16 +4954,16 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj281 int - var yyb281 bool - var yyhl281 bool = l >= 0 - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + var yyj289 int + var yyb289 bool + var yyhl289 bool = l >= 0 + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4811,13 +4978,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4832,13 +4999,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4853,13 +5020,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.HostPath.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4874,13 +5041,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Glusterfs.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4895,13 +5062,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.NFS.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4916,13 +5083,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.RBD.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4937,13 +5104,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.ISCSI.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4958,13 +5125,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Cinder.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4979,13 +5146,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.CephFS.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5000,13 +5167,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FC.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5021,13 +5188,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Flocker.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5042,13 +5209,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FlexVolume.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5063,13 +5230,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AzureFile.CodecDecodeSelf(d) } - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5084,18 +5251,39 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.VsphereVolume.CodecDecodeSelf(d) } + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l + } else { + yyb289 = r.CheckBreak() + } + if yyb289 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } for { - yyj281++ - if yyhl281 { - yyb281 = yyj281 > l + yyj289++ + if yyhl289 { + yyb289 = yyj289 > l } else { - yyb281 = r.CheckBreak() + yyb289 = r.CheckBreak() } - if yyb281 { + if yyb289 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj281-1, "") + z.DecStructFieldNotFound(yyj289-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5107,39 +5295,39 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym296 := z.EncBinary() - _ = yym296 + yym305 := z.EncBinary() + _ = yym305 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep297 := !z.EncBinary() - yy2arr297 := z.EncBasicHandle().StructToArray - var yyq297 [5]bool - _, _, _ = yysep297, yyq297, yy2arr297 - const yyr297 bool = false - yyq297[0] = x.Kind != "" - yyq297[1] = x.APIVersion != "" - yyq297[2] = true - yyq297[3] = true - yyq297[4] = true - var yynn297 int - if yyr297 || yy2arr297 { + yysep306 := !z.EncBinary() + yy2arr306 := z.EncBasicHandle().StructToArray + var yyq306 [5]bool + _, _, _ = yysep306, yyq306, yy2arr306 + const yyr306 bool = false + yyq306[0] = x.Kind != "" + yyq306[1] = x.APIVersion != "" + yyq306[2] = true + yyq306[3] = true + yyq306[4] = true + var yynn306 int + if yyr306 || yy2arr306 { r.EncodeArrayStart(5) } else { - yynn297 = 0 - for _, b := range yyq297 { + yynn306 = 0 + for _, b := range yyq306 { if b { - yynn297++ + yynn306++ } } - r.EncodeMapStart(yynn297) - yynn297 = 0 + r.EncodeMapStart(yynn306) + yynn306 = 0 } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[0] { - yym299 := z.EncBinary() - _ = yym299 + if yyq306[0] { + yym308 := z.EncBinary() + _ = yym308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -5148,23 +5336,23 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq297[0] { + if yyq306[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym300 := z.EncBinary() - _ = yym300 + yym309 := z.EncBinary() + _ = yym309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[1] { - yym302 := z.EncBinary() - _ = yym302 + if yyq306[1] { + yym311 := z.EncBinary() + _ = yym311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -5173,70 +5361,70 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq297[1] { + if yyq306[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym303 := z.EncBinary() - _ = yym303 + yym312 := z.EncBinary() + _ = yym312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[2] { - yy305 := &x.ObjectMeta - yy305.CodecEncodeSelf(e) + if yyq306[2] { + yy314 := &x.ObjectMeta + yy314.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq297[2] { + if yyq306[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy306 := &x.ObjectMeta - yy306.CodecEncodeSelf(e) + yy315 := &x.ObjectMeta + yy315.CodecEncodeSelf(e) } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[3] { - yy308 := &x.Spec - yy308.CodecEncodeSelf(e) + if yyq306[3] { + yy317 := &x.Spec + yy317.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq297[3] { + if yyq306[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy309 := &x.Spec - yy309.CodecEncodeSelf(e) + yy318 := &x.Spec + yy318.CodecEncodeSelf(e) } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq297[4] { - yy311 := &x.Status - yy311.CodecEncodeSelf(e) + if yyq306[4] { + yy320 := &x.Status + yy320.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq297[4] { + if yyq306[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy312 := &x.Status - yy312.CodecEncodeSelf(e) + yy321 := &x.Status + yy321.CodecEncodeSelf(e) } } - if yyr297 || yy2arr297 { + if yyr306 || yy2arr306 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -5249,25 +5437,25 @@ func (x *PersistentVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym313 := z.DecBinary() - _ = yym313 + yym322 := z.DecBinary() + _ = yym322 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct314 := r.ContainerType() - if yyct314 == codecSelferValueTypeMap1234 { - yyl314 := r.ReadMapStart() - if yyl314 == 0 { + yyct323 := r.ContainerType() + if yyct323 == codecSelferValueTypeMap1234 { + yyl323 := r.ReadMapStart() + if yyl323 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl314, d) + x.codecDecodeSelfFromMap(yyl323, d) } - } else if yyct314 == codecSelferValueTypeArray1234 { - yyl314 := r.ReadArrayStart() - if yyl314 == 0 { + } else if yyct323 == codecSelferValueTypeArray1234 { + yyl323 := r.ReadArrayStart() + if yyl323 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl314, d) + x.codecDecodeSelfFromArray(yyl323, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -5279,12 +5467,12 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys315Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys315Slc - var yyhl315 bool = l >= 0 - for yyj315 := 0; ; yyj315++ { - if yyhl315 { - if yyj315 >= l { + var yys324Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys324Slc + var yyhl324 bool = l >= 0 + for yyj324 := 0; ; yyj324++ { + if yyhl324 { + if yyj324 >= l { break } } else { @@ -5293,10 +5481,10 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys315Slc = r.DecodeBytes(yys315Slc, true, true) - yys315 := string(yys315Slc) + yys324Slc = r.DecodeBytes(yys324Slc, true, true) + yys324 := string(yys324Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys315 { + switch yys324 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -5313,27 +5501,27 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv318 := &x.ObjectMeta - yyv318.CodecDecodeSelf(d) + yyv327 := &x.ObjectMeta + yyv327.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv319 := &x.Spec - yyv319.CodecDecodeSelf(d) + yyv328 := &x.Spec + yyv328.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv320 := &x.Status - yyv320.CodecDecodeSelf(d) + yyv329 := &x.Status + yyv329.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys315) - } // end switch yys315 - } // end for yyj315 + z.DecStructFieldNotFound(-1, yys324) + } // end switch yys324 + } // end for yyj324 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5341,16 +5529,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj321 int - var yyb321 bool - var yyhl321 bool = l >= 0 - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + var yyj330 int + var yyb330 bool + var yyhl330 bool = l >= 0 + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5360,13 +5548,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5376,13 +5564,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5390,16 +5578,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv324 := &x.ObjectMeta - yyv324.CodecDecodeSelf(d) + yyv333 := &x.ObjectMeta + yyv333.CodecDecodeSelf(d) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5407,16 +5595,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv325 := &x.Spec - yyv325.CodecDecodeSelf(d) + yyv334 := &x.Spec + yyv334.CodecDecodeSelf(d) } - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5424,21 +5612,21 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv326 := &x.Status - yyv326.CodecDecodeSelf(d) + yyv335 := &x.Status + yyv335.CodecDecodeSelf(d) } for { - yyj321++ - if yyhl321 { - yyb321 = yyj321 > l + yyj330++ + if yyhl330 { + yyb330 = yyj330 > l } else { - yyb321 = r.CheckBreak() + yyb330 = r.CheckBreak() } - if yyb321 { + if yyb330 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj321-1, "") + z.DecStructFieldNotFound(yyj330-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5450,50 +5638,51 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym327 := z.EncBinary() - _ = yym327 + yym336 := z.EncBinary() + _ = yym336 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep328 := !z.EncBinary() - yy2arr328 := z.EncBasicHandle().StructToArray - var yyq328 [18]bool - _, _, _ = yysep328, yyq328, yy2arr328 - const yyr328 bool = false - yyq328[0] = len(x.Capacity) != 0 - yyq328[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil - yyq328[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil - yyq328[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil - yyq328[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil - yyq328[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil - yyq328[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil - yyq328[7] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil - yyq328[8] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil - yyq328[9] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil - yyq328[10] = x.PersistentVolumeSource.FC != nil && x.FC != nil - yyq328[11] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil - yyq328[12] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil - yyq328[13] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil - yyq328[14] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil - yyq328[15] = len(x.AccessModes) != 0 - yyq328[16] = x.ClaimRef != nil - yyq328[17] = x.PersistentVolumeReclaimPolicy != "" - var yynn328 int - if yyr328 || yy2arr328 { - r.EncodeArrayStart(18) - } else { - yynn328 = 0 - for _, b := range yyq328 { + yysep337 := !z.EncBinary() + yy2arr337 := z.EncBasicHandle().StructToArray + var yyq337 [19]bool + _, _, _ = yysep337, yyq337, yy2arr337 + const yyr337 bool = false + yyq337[0] = len(x.Capacity) != 0 + yyq337[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil + yyq337[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil + yyq337[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil + yyq337[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil + yyq337[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil + yyq337[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil + yyq337[7] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil + yyq337[8] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil + yyq337[9] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil + yyq337[10] = x.PersistentVolumeSource.FC != nil && x.FC != nil + yyq337[11] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil + yyq337[12] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil + yyq337[13] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil + yyq337[14] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq337[15] = x.PersistentVolumeSource.Quobyte != nil && x.Quobyte != nil + yyq337[16] = len(x.AccessModes) != 0 + yyq337[17] = x.ClaimRef != nil + yyq337[18] = x.PersistentVolumeReclaimPolicy != "" + var yynn337 int + if yyr337 || yy2arr337 { + r.EncodeArrayStart(19) + } else { + yynn337 = 0 + for _, b := range yyq337 { if b { - yynn328++ + yynn337++ } } - r.EncodeMapStart(yynn328) - yynn328 = 0 + r.EncodeMapStart(yynn337) + yynn337 = 0 } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[0] { + if yyq337[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -5503,7 +5692,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq328[0] { + if yyq337[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -5514,18 +5703,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn330 bool + var yyn339 bool if x.PersistentVolumeSource.GCEPersistentDisk == nil { - yyn330 = true - goto LABEL330 + yyn339 = true + goto LABEL339 } - LABEL330: - if yyr328 || yy2arr328 { - if yyn330 { + LABEL339: + if yyr337 || yy2arr337 { + if yyn339 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[1] { + if yyq337[1] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -5536,11 +5725,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[1] { + if yyq337[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn330 { + if yyn339 { r.EncodeNil() } else { if x.GCEPersistentDisk == nil { @@ -5551,18 +5740,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn331 bool + var yyn340 bool if x.PersistentVolumeSource.AWSElasticBlockStore == nil { - yyn331 = true - goto LABEL331 + yyn340 = true + goto LABEL340 } - LABEL331: - if yyr328 || yy2arr328 { - if yyn331 { + LABEL340: + if yyr337 || yy2arr337 { + if yyn340 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[2] { + if yyq337[2] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -5573,11 +5762,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[2] { + if yyq337[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn331 { + if yyn340 { r.EncodeNil() } else { if x.AWSElasticBlockStore == nil { @@ -5588,18 +5777,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn332 bool + var yyn341 bool if x.PersistentVolumeSource.HostPath == nil { - yyn332 = true - goto LABEL332 + yyn341 = true + goto LABEL341 } - LABEL332: - if yyr328 || yy2arr328 { - if yyn332 { + LABEL341: + if yyr337 || yy2arr337 { + if yyn341 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[3] { + if yyq337[3] { if x.HostPath == nil { r.EncodeNil() } else { @@ -5610,11 +5799,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[3] { + if yyq337[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn332 { + if yyn341 { r.EncodeNil() } else { if x.HostPath == nil { @@ -5625,18 +5814,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn333 bool + var yyn342 bool if x.PersistentVolumeSource.Glusterfs == nil { - yyn333 = true - goto LABEL333 + yyn342 = true + goto LABEL342 } - LABEL333: - if yyr328 || yy2arr328 { - if yyn333 { + LABEL342: + if yyr337 || yy2arr337 { + if yyn342 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[4] { + if yyq337[4] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -5647,11 +5836,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[4] { + if yyq337[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn333 { + if yyn342 { r.EncodeNil() } else { if x.Glusterfs == nil { @@ -5662,18 +5851,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn334 bool + var yyn343 bool if x.PersistentVolumeSource.NFS == nil { - yyn334 = true - goto LABEL334 + yyn343 = true + goto LABEL343 } - LABEL334: - if yyr328 || yy2arr328 { - if yyn334 { + LABEL343: + if yyr337 || yy2arr337 { + if yyn343 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[5] { + if yyq337[5] { if x.NFS == nil { r.EncodeNil() } else { @@ -5684,11 +5873,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[5] { + if yyq337[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn334 { + if yyn343 { r.EncodeNil() } else { if x.NFS == nil { @@ -5699,18 +5888,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn335 bool + var yyn344 bool if x.PersistentVolumeSource.RBD == nil { - yyn335 = true - goto LABEL335 + yyn344 = true + goto LABEL344 } - LABEL335: - if yyr328 || yy2arr328 { - if yyn335 { + LABEL344: + if yyr337 || yy2arr337 { + if yyn344 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[6] { + if yyq337[6] { if x.RBD == nil { r.EncodeNil() } else { @@ -5721,11 +5910,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[6] { + if yyq337[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn335 { + if yyn344 { r.EncodeNil() } else { if x.RBD == nil { @@ -5736,18 +5925,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn336 bool + var yyn345 bool if x.PersistentVolumeSource.ISCSI == nil { - yyn336 = true - goto LABEL336 + yyn345 = true + goto LABEL345 } - LABEL336: - if yyr328 || yy2arr328 { - if yyn336 { + LABEL345: + if yyr337 || yy2arr337 { + if yyn345 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[7] { + if yyq337[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -5758,11 +5947,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[7] { + if yyq337[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn336 { + if yyn345 { r.EncodeNil() } else { if x.ISCSI == nil { @@ -5773,18 +5962,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn337 bool + var yyn346 bool if x.PersistentVolumeSource.Cinder == nil { - yyn337 = true - goto LABEL337 + yyn346 = true + goto LABEL346 } - LABEL337: - if yyr328 || yy2arr328 { - if yyn337 { + LABEL346: + if yyr337 || yy2arr337 { + if yyn346 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[8] { + if yyq337[8] { if x.Cinder == nil { r.EncodeNil() } else { @@ -5795,11 +5984,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[8] { + if yyq337[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn337 { + if yyn346 { r.EncodeNil() } else { if x.Cinder == nil { @@ -5810,18 +5999,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn338 bool + var yyn347 bool if x.PersistentVolumeSource.CephFS == nil { - yyn338 = true - goto LABEL338 + yyn347 = true + goto LABEL347 } - LABEL338: - if yyr328 || yy2arr328 { - if yyn338 { + LABEL347: + if yyr337 || yy2arr337 { + if yyn347 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[9] { + if yyq337[9] { if x.CephFS == nil { r.EncodeNil() } else { @@ -5832,11 +6021,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[9] { + if yyq337[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn338 { + if yyn347 { r.EncodeNil() } else { if x.CephFS == nil { @@ -5847,18 +6036,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn339 bool + var yyn348 bool if x.PersistentVolumeSource.FC == nil { - yyn339 = true - goto LABEL339 + yyn348 = true + goto LABEL348 } - LABEL339: - if yyr328 || yy2arr328 { - if yyn339 { + LABEL348: + if yyr337 || yy2arr337 { + if yyn348 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[10] { + if yyq337[10] { if x.FC == nil { r.EncodeNil() } else { @@ -5869,11 +6058,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[10] { + if yyq337[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn339 { + if yyn348 { r.EncodeNil() } else { if x.FC == nil { @@ -5884,18 +6073,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn340 bool + var yyn349 bool if x.PersistentVolumeSource.Flocker == nil { - yyn340 = true - goto LABEL340 + yyn349 = true + goto LABEL349 } - LABEL340: - if yyr328 || yy2arr328 { - if yyn340 { + LABEL349: + if yyr337 || yy2arr337 { + if yyn349 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[11] { + if yyq337[11] { if x.Flocker == nil { r.EncodeNil() } else { @@ -5906,11 +6095,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[11] { + if yyq337[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn340 { + if yyn349 { r.EncodeNil() } else { if x.Flocker == nil { @@ -5921,18 +6110,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn341 bool + var yyn350 bool if x.PersistentVolumeSource.FlexVolume == nil { - yyn341 = true - goto LABEL341 + yyn350 = true + goto LABEL350 } - LABEL341: - if yyr328 || yy2arr328 { - if yyn341 { + LABEL350: + if yyr337 || yy2arr337 { + if yyn350 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[12] { + if yyq337[12] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -5943,11 +6132,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[12] { + if yyq337[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn341 { + if yyn350 { r.EncodeNil() } else { if x.FlexVolume == nil { @@ -5958,18 +6147,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn342 bool + var yyn351 bool if x.PersistentVolumeSource.AzureFile == nil { - yyn342 = true - goto LABEL342 + yyn351 = true + goto LABEL351 } - LABEL342: - if yyr328 || yy2arr328 { - if yyn342 { + LABEL351: + if yyr337 || yy2arr337 { + if yyn351 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[13] { + if yyq337[13] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -5980,11 +6169,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[13] { + if yyq337[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn342 { + if yyn351 { r.EncodeNil() } else { if x.AzureFile == nil { @@ -5995,18 +6184,18 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn343 bool + var yyn352 bool if x.PersistentVolumeSource.VsphereVolume == nil { - yyn343 = true - goto LABEL343 + yyn352 = true + goto LABEL352 } - LABEL343: - if yyr328 || yy2arr328 { - if yyn343 { + LABEL352: + if yyr337 || yy2arr337 { + if yyn352 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[14] { + if yyq337[14] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -6017,11 +6206,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq328[14] { + if yyq337[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn343 { + if yyn352 { r.EncodeNil() } else { if x.VsphereVolume == nil { @@ -6032,14 +6221,51 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr328 || yy2arr328 { + var yyn353 bool + if x.PersistentVolumeSource.Quobyte == nil { + yyn353 = true + goto LABEL353 + } + LABEL353: + if yyr337 || yy2arr337 { + if yyn353 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq337[15] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq337[15] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn353 { + r.EncodeNil() + } else { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + } + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[15] { + if yyq337[16] { if x.AccessModes == nil { r.EncodeNil() } else { - yym345 := z.EncBinary() - _ = yym345 + yym355 := z.EncBinary() + _ = yym355 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6049,15 +6275,15 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq328[15] { + if yyq337[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym346 := z.EncBinary() - _ = yym346 + yym356 := z.EncBinary() + _ = yym356 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6065,9 +6291,9 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[16] { + if yyq337[17] { if x.ClaimRef == nil { r.EncodeNil() } else { @@ -6077,7 +6303,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq328[16] { + if yyq337[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -6088,22 +6314,22 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq328[17] { + if yyq337[18] { x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq328[17] { + if yyq337[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeReclaimPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } } - if yyr328 || yy2arr328 { + if yyr337 || yy2arr337 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6116,25 +6342,25 @@ func (x *PersistentVolumeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym349 := z.DecBinary() - _ = yym349 + yym359 := z.DecBinary() + _ = yym359 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct350 := r.ContainerType() - if yyct350 == codecSelferValueTypeMap1234 { - yyl350 := r.ReadMapStart() - if yyl350 == 0 { + yyct360 := r.ContainerType() + if yyct360 == codecSelferValueTypeMap1234 { + yyl360 := r.ReadMapStart() + if yyl360 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl350, d) + x.codecDecodeSelfFromMap(yyl360, d) } - } else if yyct350 == codecSelferValueTypeArray1234 { - yyl350 := r.ReadArrayStart() - if yyl350 == 0 { + } else if yyct360 == codecSelferValueTypeArray1234 { + yyl360 := r.ReadArrayStart() + if yyl360 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl350, d) + x.codecDecodeSelfFromArray(yyl360, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -6146,12 +6372,12 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys351Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys351Slc - var yyhl351 bool = l >= 0 - for yyj351 := 0; ; yyj351++ { - if yyhl351 { - if yyj351 >= l { + var yys361Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys361Slc + var yyhl361 bool = l >= 0 + for yyj361 := 0; ; yyj361++ { + if yyhl361 { + if yyj361 >= l { break } } else { @@ -6160,16 +6386,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys351Slc = r.DecodeBytes(yys351Slc, true, true) - yys351 := string(yys351Slc) + yys361Slc = r.DecodeBytes(yys361Slc, true, true) + yys361 := string(yys361Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys351 { + switch yys361 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv352 := &x.Capacity - yyv352.CodecDecodeSelf(d) + yyv362 := &x.Capacity + yyv362.CodecDecodeSelf(d) } case "gcePersistentDisk": if x.PersistentVolumeSource.GCEPersistentDisk == nil { @@ -6367,16 +6593,30 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } x.VsphereVolume.CodecDecodeSelf(d) } + case "quobyte": + if x.PersistentVolumeSource.Quobyte == nil { + x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource) + } + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv367 := &x.AccessModes - yym368 := z.DecBinary() - _ = yym368 + yyv378 := &x.AccessModes + yym379 := z.DecBinary() + _ = yym379 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv367), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv378), d) } } case "claimRef": @@ -6397,9 +6637,9 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys351) - } // end switch yys351 - } // end for yyj351 + z.DecStructFieldNotFound(-1, yys361) + } // end switch yys361 + } // end for yyj361 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -6407,16 +6647,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj371 int - var yyb371 bool - var yyhl371 bool = l >= 0 - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + var yyj382 int + var yyb382 bool + var yyhl382 bool = l >= 0 + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6424,19 +6664,19 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv372 := &x.Capacity - yyv372.CodecDecodeSelf(d) + yyv383 := &x.Capacity + yyv383.CodecDecodeSelf(d) } if x.PersistentVolumeSource.GCEPersistentDisk == nil { x.PersistentVolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6454,13 +6694,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AWSElasticBlockStore == nil { x.PersistentVolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6478,13 +6718,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.HostPath == nil { x.PersistentVolumeSource.HostPath = new(HostPathVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6502,13 +6742,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Glusterfs == nil { x.PersistentVolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6526,13 +6766,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.NFS == nil { x.PersistentVolumeSource.NFS = new(NFSVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6550,13 +6790,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.RBD == nil { x.PersistentVolumeSource.RBD = new(RBDVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6574,13 +6814,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.ISCSI == nil { x.PersistentVolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6598,13 +6838,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Cinder == nil { x.PersistentVolumeSource.Cinder = new(CinderVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6622,13 +6862,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.CephFS == nil { x.PersistentVolumeSource.CephFS = new(CephFSVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6646,13 +6886,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FC == nil { x.PersistentVolumeSource.FC = new(FCVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6670,13 +6910,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Flocker == nil { x.PersistentVolumeSource.Flocker = new(FlockerVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6694,13 +6934,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FlexVolume == nil { x.PersistentVolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6718,13 +6958,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AzureFile == nil { x.PersistentVolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6742,13 +6982,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.VsphereVolume == nil { x.PersistentVolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6763,13 +7003,37 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.VsphereVolume.CodecDecodeSelf(d) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + if x.PersistentVolumeSource.Quobyte == nil { + x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource) + } + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Quobyte != nil { + x.Quobyte = nil + } + } else { + if x.Quobyte == nil { + x.Quobyte = new(QuobyteVolumeSource) + } + x.Quobyte.CodecDecodeSelf(d) + } + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l + } else { + yyb382 = r.CheckBreak() + } + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6777,21 +7041,21 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv387 := &x.AccessModes - yym388 := z.DecBinary() - _ = yym388 + yyv399 := &x.AccessModes + yym400 := z.DecBinary() + _ = yym400 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv387), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv399), d) } } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6806,13 +7070,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.ClaimRef.CodecDecodeSelf(d) } - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6823,17 +7087,17 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } for { - yyj371++ - if yyhl371 { - yyb371 = yyj371 > l + yyj382++ + if yyhl382 { + yyb382 = yyj382 > l } else { - yyb371 = r.CheckBreak() + yyb382 = r.CheckBreak() } - if yyb371 { + if yyb382 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj371-1, "") + z.DecStructFieldNotFound(yyj382-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -6842,8 +7106,8 @@ func (x PersistentVolumeReclaimPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym391 := z.EncBinary() - _ = yym391 + yym403 := z.EncBinary() + _ = yym403 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -6855,8 +7119,8 @@ func (x *PersistentVolumeReclaimPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym392 := z.DecBinary() - _ = yym392 + yym404 := z.DecBinary() + _ = yym404 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -6871,52 +7135,52 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym393 := z.EncBinary() - _ = yym393 + yym405 := z.EncBinary() + _ = yym405 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep394 := !z.EncBinary() - yy2arr394 := z.EncBasicHandle().StructToArray - var yyq394 [3]bool - _, _, _ = yysep394, yyq394, yy2arr394 - const yyr394 bool = false - yyq394[0] = x.Phase != "" - yyq394[1] = x.Message != "" - yyq394[2] = x.Reason != "" - var yynn394 int - if yyr394 || yy2arr394 { + yysep406 := !z.EncBinary() + yy2arr406 := z.EncBasicHandle().StructToArray + var yyq406 [3]bool + _, _, _ = yysep406, yyq406, yy2arr406 + const yyr406 bool = false + yyq406[0] = x.Phase != "" + yyq406[1] = x.Message != "" + yyq406[2] = x.Reason != "" + var yynn406 int + if yyr406 || yy2arr406 { r.EncodeArrayStart(3) } else { - yynn394 = 0 - for _, b := range yyq394 { + yynn406 = 0 + for _, b := range yyq406 { if b { - yynn394++ + yynn406++ } } - r.EncodeMapStart(yynn394) - yynn394 = 0 + r.EncodeMapStart(yynn406) + yynn406 = 0 } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq394[0] { + if yyq406[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq394[0] { + if yyq406[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq394[1] { - yym397 := z.EncBinary() - _ = yym397 + if yyq406[1] { + yym409 := z.EncBinary() + _ = yym409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -6925,23 +7189,23 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq394[1] { + if yyq406[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym398 := z.EncBinary() - _ = yym398 + yym410 := z.EncBinary() + _ = yym410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq394[2] { - yym400 := z.EncBinary() - _ = yym400 + if yyq406[2] { + yym412 := z.EncBinary() + _ = yym412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -6950,19 +7214,19 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq394[2] { + if yyq406[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym401 := z.EncBinary() - _ = yym401 + yym413 := z.EncBinary() + _ = yym413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr394 || yy2arr394 { + if yyr406 || yy2arr406 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6975,25 +7239,25 @@ func (x *PersistentVolumeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym402 := z.DecBinary() - _ = yym402 + yym414 := z.DecBinary() + _ = yym414 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct403 := r.ContainerType() - if yyct403 == codecSelferValueTypeMap1234 { - yyl403 := r.ReadMapStart() - if yyl403 == 0 { + yyct415 := r.ContainerType() + if yyct415 == codecSelferValueTypeMap1234 { + yyl415 := r.ReadMapStart() + if yyl415 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl403, d) + x.codecDecodeSelfFromMap(yyl415, d) } - } else if yyct403 == codecSelferValueTypeArray1234 { - yyl403 := r.ReadArrayStart() - if yyl403 == 0 { + } else if yyct415 == codecSelferValueTypeArray1234 { + yyl415 := r.ReadArrayStart() + if yyl415 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl403, d) + x.codecDecodeSelfFromArray(yyl415, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7005,12 +7269,12 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys404Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys404Slc - var yyhl404 bool = l >= 0 - for yyj404 := 0; ; yyj404++ { - if yyhl404 { - if yyj404 >= l { + var yys416Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys416Slc + var yyhl416 bool = l >= 0 + for yyj416 := 0; ; yyj416++ { + if yyhl416 { + if yyj416 >= l { break } } else { @@ -7019,10 +7283,10 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys404Slc = r.DecodeBytes(yys404Slc, true, true) - yys404 := string(yys404Slc) + yys416Slc = r.DecodeBytes(yys416Slc, true, true) + yys416 := string(yys416Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys404 { + switch yys416 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -7042,9 +7306,9 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.Reason = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys404) - } // end switch yys404 - } // end for yyj404 + z.DecStructFieldNotFound(-1, yys416) + } // end switch yys416 + } // end for yyj416 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7052,16 +7316,16 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj408 int - var yyb408 bool - var yyhl408 bool = l >= 0 - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + var yyj420 int + var yyb420 bool + var yyhl420 bool = l >= 0 + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7071,13 +7335,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Phase = PersistentVolumePhase(r.DecodeString()) } - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7087,13 +7351,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Message = string(r.DecodeString()) } - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7104,17 +7368,17 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De x.Reason = string(r.DecodeString()) } for { - yyj408++ - if yyhl408 { - yyb408 = yyj408 > l + yyj420++ + if yyhl420 { + yyb420 = yyj420 > l } else { - yyb408 = r.CheckBreak() + yyb420 = r.CheckBreak() } - if yyb408 { + if yyb420 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj408-1, "") + z.DecStructFieldNotFound(yyj420-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7126,37 +7390,37 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym412 := z.EncBinary() - _ = yym412 + yym424 := z.EncBinary() + _ = yym424 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep413 := !z.EncBinary() - yy2arr413 := z.EncBasicHandle().StructToArray - var yyq413 [4]bool - _, _, _ = yysep413, yyq413, yy2arr413 - const yyr413 bool = false - yyq413[0] = x.Kind != "" - yyq413[1] = x.APIVersion != "" - yyq413[2] = true - var yynn413 int - if yyr413 || yy2arr413 { + yysep425 := !z.EncBinary() + yy2arr425 := z.EncBasicHandle().StructToArray + var yyq425 [4]bool + _, _, _ = yysep425, yyq425, yy2arr425 + const yyr425 bool = false + yyq425[0] = x.Kind != "" + yyq425[1] = x.APIVersion != "" + yyq425[2] = true + var yynn425 int + if yyr425 || yy2arr425 { r.EncodeArrayStart(4) } else { - yynn413 = 1 - for _, b := range yyq413 { + yynn425 = 1 + for _, b := range yyq425 { if b { - yynn413++ + yynn425++ } } - r.EncodeMapStart(yynn413) - yynn413 = 0 + r.EncodeMapStart(yynn425) + yynn425 = 0 } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq413[0] { - yym415 := z.EncBinary() - _ = yym415 + if yyq425[0] { + yym427 := z.EncBinary() + _ = yym427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7165,23 +7429,23 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq413[0] { + if yyq425[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym416 := z.EncBinary() - _ = yym416 + yym428 := z.EncBinary() + _ = yym428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq413[1] { - yym418 := z.EncBinary() - _ = yym418 + if yyq425[1] { + yym430 := z.EncBinary() + _ = yym430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7190,54 +7454,54 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq413[1] { + if yyq425[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym419 := z.EncBinary() - _ = yym419 + yym431 := z.EncBinary() + _ = yym431 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq413[2] { - yy421 := &x.ListMeta - yym422 := z.EncBinary() - _ = yym422 + if yyq425[2] { + yy433 := &x.ListMeta + yym434 := z.EncBinary() + _ = yym434 if false { - } else if z.HasExtensions() && z.EncExt(yy421) { + } else if z.HasExtensions() && z.EncExt(yy433) { } else { - z.EncFallback(yy421) + z.EncFallback(yy433) } } else { r.EncodeNil() } } else { - if yyq413[2] { + if yyq425[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy423 := &x.ListMeta - yym424 := z.EncBinary() - _ = yym424 + yy435 := &x.ListMeta + yym436 := z.EncBinary() + _ = yym436 if false { - } else if z.HasExtensions() && z.EncExt(yy423) { + } else if z.HasExtensions() && z.EncExt(yy435) { } else { - z.EncFallback(yy423) + z.EncFallback(yy435) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym426 := z.EncBinary() - _ = yym426 + yym438 := z.EncBinary() + _ = yym438 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) @@ -7250,15 +7514,15 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym427 := z.EncBinary() - _ = yym427 + yym439 := z.EncBinary() + _ = yym439 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) } } } - if yyr413 || yy2arr413 { + if yyr425 || yy2arr425 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7271,25 +7535,25 @@ func (x *PersistentVolumeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym428 := z.DecBinary() - _ = yym428 + yym440 := z.DecBinary() + _ = yym440 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct429 := r.ContainerType() - if yyct429 == codecSelferValueTypeMap1234 { - yyl429 := r.ReadMapStart() - if yyl429 == 0 { + yyct441 := r.ContainerType() + if yyct441 == codecSelferValueTypeMap1234 { + yyl441 := r.ReadMapStart() + if yyl441 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl429, d) + x.codecDecodeSelfFromMap(yyl441, d) } - } else if yyct429 == codecSelferValueTypeArray1234 { - yyl429 := r.ReadArrayStart() - if yyl429 == 0 { + } else if yyct441 == codecSelferValueTypeArray1234 { + yyl441 := r.ReadArrayStart() + if yyl441 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl429, d) + x.codecDecodeSelfFromArray(yyl441, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7301,12 +7565,12 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys430Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys430Slc - var yyhl430 bool = l >= 0 - for yyj430 := 0; ; yyj430++ { - if yyhl430 { - if yyj430 >= l { + var yys442Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys442Slc + var yyhl442 bool = l >= 0 + for yyj442 := 0; ; yyj442++ { + if yyhl442 { + if yyj442 >= l { break } } else { @@ -7315,10 +7579,10 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys430Slc = r.DecodeBytes(yys430Slc, true, true) - yys430 := string(yys430Slc) + yys442Slc = r.DecodeBytes(yys442Slc, true, true) + yys442 := string(yys442Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys430 { + switch yys442 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7335,31 +7599,31 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv433 := &x.ListMeta - yym434 := z.DecBinary() - _ = yym434 + yyv445 := &x.ListMeta + yym446 := z.DecBinary() + _ = yym446 if false { - } else if z.HasExtensions() && z.DecExt(yyv433) { + } else if z.HasExtensions() && z.DecExt(yyv445) { } else { - z.DecFallback(yyv433, false) + z.DecFallback(yyv445, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv435 := &x.Items - yym436 := z.DecBinary() - _ = yym436 + yyv447 := &x.Items + yym448 := z.DecBinary() + _ = yym448 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv435), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv447), d) } } default: - z.DecStructFieldNotFound(-1, yys430) - } // end switch yys430 - } // end for yyj430 + z.DecStructFieldNotFound(-1, yys442) + } // end switch yys442 + } // end for yyj442 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7367,16 +7631,16 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj437 int - var yyb437 bool - var yyhl437 bool = l >= 0 - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + var yyj449 int + var yyb449 bool + var yyhl449 bool = l >= 0 + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7386,13 +7650,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Kind = string(r.DecodeString()) } - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7402,13 +7666,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.APIVersion = string(r.DecodeString()) } - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7416,22 +7680,22 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv440 := &x.ListMeta - yym441 := z.DecBinary() - _ = yym441 + yyv452 := &x.ListMeta + yym453 := z.DecBinary() + _ = yym453 if false { - } else if z.HasExtensions() && z.DecExt(yyv440) { + } else if z.HasExtensions() && z.DecExt(yyv452) { } else { - z.DecFallback(yyv440, false) + z.DecFallback(yyv452, false) } } - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7439,26 +7703,26 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Items = nil } else { - yyv442 := &x.Items - yym443 := z.DecBinary() - _ = yym443 + yyv454 := &x.Items + yym455 := z.DecBinary() + _ = yym455 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv442), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv454), d) } } for { - yyj437++ - if yyhl437 { - yyb437 = yyj437 > l + yyj449++ + if yyhl449 { + yyb449 = yyj449 > l } else { - yyb437 = r.CheckBreak() + yyb449 = r.CheckBreak() } - if yyb437 { + if yyb449 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj437-1, "") + z.DecStructFieldNotFound(yyj449-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7470,39 +7734,39 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym444 := z.EncBinary() - _ = yym444 + yym456 := z.EncBinary() + _ = yym456 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep445 := !z.EncBinary() - yy2arr445 := z.EncBasicHandle().StructToArray - var yyq445 [5]bool - _, _, _ = yysep445, yyq445, yy2arr445 - const yyr445 bool = false - yyq445[0] = x.Kind != "" - yyq445[1] = x.APIVersion != "" - yyq445[2] = true - yyq445[3] = true - yyq445[4] = true - var yynn445 int - if yyr445 || yy2arr445 { + yysep457 := !z.EncBinary() + yy2arr457 := z.EncBasicHandle().StructToArray + var yyq457 [5]bool + _, _, _ = yysep457, yyq457, yy2arr457 + const yyr457 bool = false + yyq457[0] = x.Kind != "" + yyq457[1] = x.APIVersion != "" + yyq457[2] = true + yyq457[3] = true + yyq457[4] = true + var yynn457 int + if yyr457 || yy2arr457 { r.EncodeArrayStart(5) } else { - yynn445 = 0 - for _, b := range yyq445 { + yynn457 = 0 + for _, b := range yyq457 { if b { - yynn445++ + yynn457++ } } - r.EncodeMapStart(yynn445) - yynn445 = 0 + r.EncodeMapStart(yynn457) + yynn457 = 0 } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[0] { - yym447 := z.EncBinary() - _ = yym447 + if yyq457[0] { + yym459 := z.EncBinary() + _ = yym459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7511,23 +7775,23 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq445[0] { + if yyq457[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym448 := z.EncBinary() - _ = yym448 + yym460 := z.EncBinary() + _ = yym460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[1] { - yym450 := z.EncBinary() - _ = yym450 + if yyq457[1] { + yym462 := z.EncBinary() + _ = yym462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7536,70 +7800,70 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq445[1] { + if yyq457[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym451 := z.EncBinary() - _ = yym451 + yym463 := z.EncBinary() + _ = yym463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[2] { - yy453 := &x.ObjectMeta - yy453.CodecEncodeSelf(e) + if yyq457[2] { + yy465 := &x.ObjectMeta + yy465.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq445[2] { + if yyq457[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy454 := &x.ObjectMeta - yy454.CodecEncodeSelf(e) + yy466 := &x.ObjectMeta + yy466.CodecEncodeSelf(e) } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[3] { - yy456 := &x.Spec - yy456.CodecEncodeSelf(e) + if yyq457[3] { + yy468 := &x.Spec + yy468.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq445[3] { + if yyq457[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy457 := &x.Spec - yy457.CodecEncodeSelf(e) + yy469 := &x.Spec + yy469.CodecEncodeSelf(e) } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq445[4] { - yy459 := &x.Status - yy459.CodecEncodeSelf(e) + if yyq457[4] { + yy471 := &x.Status + yy471.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq445[4] { + if yyq457[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy460 := &x.Status - yy460.CodecEncodeSelf(e) + yy472 := &x.Status + yy472.CodecEncodeSelf(e) } } - if yyr445 || yy2arr445 { + if yyr457 || yy2arr457 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7612,25 +7876,25 @@ func (x *PersistentVolumeClaim) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym461 := z.DecBinary() - _ = yym461 + yym473 := z.DecBinary() + _ = yym473 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct462 := r.ContainerType() - if yyct462 == codecSelferValueTypeMap1234 { - yyl462 := r.ReadMapStart() - if yyl462 == 0 { + yyct474 := r.ContainerType() + if yyct474 == codecSelferValueTypeMap1234 { + yyl474 := r.ReadMapStart() + if yyl474 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl462, d) + x.codecDecodeSelfFromMap(yyl474, d) } - } else if yyct462 == codecSelferValueTypeArray1234 { - yyl462 := r.ReadArrayStart() - if yyl462 == 0 { + } else if yyct474 == codecSelferValueTypeArray1234 { + yyl474 := r.ReadArrayStart() + if yyl474 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl462, d) + x.codecDecodeSelfFromArray(yyl474, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7642,12 +7906,12 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys463Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys463Slc - var yyhl463 bool = l >= 0 - for yyj463 := 0; ; yyj463++ { - if yyhl463 { - if yyj463 >= l { + var yys475Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys475Slc + var yyhl475 bool = l >= 0 + for yyj475 := 0; ; yyj475++ { + if yyhl475 { + if yyj475 >= l { break } } else { @@ -7656,10 +7920,10 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys463Slc = r.DecodeBytes(yys463Slc, true, true) - yys463 := string(yys463Slc) + yys475Slc = r.DecodeBytes(yys475Slc, true, true) + yys475 := string(yys475Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys463 { + switch yys475 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7676,27 +7940,27 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv466 := &x.ObjectMeta - yyv466.CodecDecodeSelf(d) + yyv478 := &x.ObjectMeta + yyv478.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv467 := &x.Spec - yyv467.CodecDecodeSelf(d) + yyv479 := &x.Spec + yyv479.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv468 := &x.Status - yyv468.CodecDecodeSelf(d) + yyv480 := &x.Status + yyv480.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys463) - } // end switch yys463 - } // end for yyj463 + z.DecStructFieldNotFound(-1, yys475) + } // end switch yys475 + } // end for yyj475 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7704,16 +7968,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj469 int - var yyb469 bool - var yyhl469 bool = l >= 0 - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + var yyj481 int + var yyb481 bool + var yyhl481 bool = l >= 0 + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7723,13 +7987,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7739,13 +8003,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7753,16 +8017,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv472 := &x.ObjectMeta - yyv472.CodecDecodeSelf(d) + yyv484 := &x.ObjectMeta + yyv484.CodecDecodeSelf(d) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7770,16 +8034,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv473 := &x.Spec - yyv473.CodecDecodeSelf(d) + yyv485 := &x.Spec + yyv485.CodecDecodeSelf(d) } - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7787,21 +8051,21 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv474 := &x.Status - yyv474.CodecDecodeSelf(d) + yyv486 := &x.Status + yyv486.CodecDecodeSelf(d) } for { - yyj469++ - if yyhl469 { - yyb469 = yyj469 > l + yyj481++ + if yyhl481 { + yyb481 = yyj481 > l } else { - yyb469 = r.CheckBreak() + yyb481 = r.CheckBreak() } - if yyb469 { + if yyb481 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj469-1, "") + z.DecStructFieldNotFound(yyj481-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7813,37 +8077,37 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym475 := z.EncBinary() - _ = yym475 + yym487 := z.EncBinary() + _ = yym487 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep476 := !z.EncBinary() - yy2arr476 := z.EncBasicHandle().StructToArray - var yyq476 [4]bool - _, _, _ = yysep476, yyq476, yy2arr476 - const yyr476 bool = false - yyq476[0] = x.Kind != "" - yyq476[1] = x.APIVersion != "" - yyq476[2] = true - var yynn476 int - if yyr476 || yy2arr476 { + yysep488 := !z.EncBinary() + yy2arr488 := z.EncBasicHandle().StructToArray + var yyq488 [4]bool + _, _, _ = yysep488, yyq488, yy2arr488 + const yyr488 bool = false + yyq488[0] = x.Kind != "" + yyq488[1] = x.APIVersion != "" + yyq488[2] = true + var yynn488 int + if yyr488 || yy2arr488 { r.EncodeArrayStart(4) } else { - yynn476 = 1 - for _, b := range yyq476 { + yynn488 = 1 + for _, b := range yyq488 { if b { - yynn476++ + yynn488++ } } - r.EncodeMapStart(yynn476) - yynn476 = 0 + r.EncodeMapStart(yynn488) + yynn488 = 0 } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq476[0] { - yym478 := z.EncBinary() - _ = yym478 + if yyq488[0] { + yym490 := z.EncBinary() + _ = yym490 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7852,23 +8116,23 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq476[0] { + if yyq488[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym479 := z.EncBinary() - _ = yym479 + yym491 := z.EncBinary() + _ = yym491 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq476[1] { - yym481 := z.EncBinary() - _ = yym481 + if yyq488[1] { + yym493 := z.EncBinary() + _ = yym493 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7877,54 +8141,54 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq476[1] { + if yyq488[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym482 := z.EncBinary() - _ = yym482 + yym494 := z.EncBinary() + _ = yym494 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq476[2] { - yy484 := &x.ListMeta - yym485 := z.EncBinary() - _ = yym485 + if yyq488[2] { + yy496 := &x.ListMeta + yym497 := z.EncBinary() + _ = yym497 if false { - } else if z.HasExtensions() && z.EncExt(yy484) { + } else if z.HasExtensions() && z.EncExt(yy496) { } else { - z.EncFallback(yy484) + z.EncFallback(yy496) } } else { r.EncodeNil() } } else { - if yyq476[2] { + if yyq488[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy486 := &x.ListMeta - yym487 := z.EncBinary() - _ = yym487 + yy498 := &x.ListMeta + yym499 := z.EncBinary() + _ = yym499 if false { - } else if z.HasExtensions() && z.EncExt(yy486) { + } else if z.HasExtensions() && z.EncExt(yy498) { } else { - z.EncFallback(yy486) + z.EncFallback(yy498) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym489 := z.EncBinary() - _ = yym489 + yym501 := z.EncBinary() + _ = yym501 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) @@ -7937,15 +8201,15 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym490 := z.EncBinary() - _ = yym490 + yym502 := z.EncBinary() + _ = yym502 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) } } } - if yyr476 || yy2arr476 { + if yyr488 || yy2arr488 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7958,25 +8222,25 @@ func (x *PersistentVolumeClaimList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym491 := z.DecBinary() - _ = yym491 + yym503 := z.DecBinary() + _ = yym503 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct492 := r.ContainerType() - if yyct492 == codecSelferValueTypeMap1234 { - yyl492 := r.ReadMapStart() - if yyl492 == 0 { + yyct504 := r.ContainerType() + if yyct504 == codecSelferValueTypeMap1234 { + yyl504 := r.ReadMapStart() + if yyl504 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl492, d) + x.codecDecodeSelfFromMap(yyl504, d) } - } else if yyct492 == codecSelferValueTypeArray1234 { - yyl492 := r.ReadArrayStart() - if yyl492 == 0 { + } else if yyct504 == codecSelferValueTypeArray1234 { + yyl504 := r.ReadArrayStart() + if yyl504 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl492, d) + x.codecDecodeSelfFromArray(yyl504, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7988,12 +8252,12 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys493Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys493Slc - var yyhl493 bool = l >= 0 - for yyj493 := 0; ; yyj493++ { - if yyhl493 { - if yyj493 >= l { + var yys505Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys505Slc + var yyhl505 bool = l >= 0 + for yyj505 := 0; ; yyj505++ { + if yyhl505 { + if yyj505 >= l { break } } else { @@ -8002,10 +8266,10 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys493Slc = r.DecodeBytes(yys493Slc, true, true) - yys493 := string(yys493Slc) + yys505Slc = r.DecodeBytes(yys505Slc, true, true) + yys505 := string(yys505Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys493 { + switch yys505 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -8022,31 +8286,31 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv496 := &x.ListMeta - yym497 := z.DecBinary() - _ = yym497 + yyv508 := &x.ListMeta + yym509 := z.DecBinary() + _ = yym509 if false { - } else if z.HasExtensions() && z.DecExt(yyv496) { + } else if z.HasExtensions() && z.DecExt(yyv508) { } else { - z.DecFallback(yyv496, false) + z.DecFallback(yyv508, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv498 := &x.Items - yym499 := z.DecBinary() - _ = yym499 + yyv510 := &x.Items + yym511 := z.DecBinary() + _ = yym511 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv498), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv510), d) } } default: - z.DecStructFieldNotFound(-1, yys493) - } // end switch yys493 - } // end for yyj493 + z.DecStructFieldNotFound(-1, yys505) + } // end switch yys505 + } // end for yyj505 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8054,16 +8318,16 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj500 int - var yyb500 bool - var yyhl500 bool = l >= 0 - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + var yyj512 int + var yyb512 bool + var yyhl512 bool = l >= 0 + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8073,13 +8337,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8089,13 +8353,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8103,22 +8367,22 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv503 := &x.ListMeta - yym504 := z.DecBinary() - _ = yym504 + yyv515 := &x.ListMeta + yym516 := z.DecBinary() + _ = yym516 if false { - } else if z.HasExtensions() && z.DecExt(yyv503) { + } else if z.HasExtensions() && z.DecExt(yyv515) { } else { - z.DecFallback(yyv503, false) + z.DecFallback(yyv515, false) } } - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8126,26 +8390,26 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv505 := &x.Items - yym506 := z.DecBinary() - _ = yym506 + yyv517 := &x.Items + yym518 := z.DecBinary() + _ = yym518 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv505), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv517), d) } } for { - yyj500++ - if yyhl500 { - yyb500 = yyj500 > l + yyj512++ + if yyhl512 { + yyb512 = yyj512 > l } else { - yyb500 = r.CheckBreak() + yyb512 = r.CheckBreak() } - if yyb500 { + if yyb512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj500-1, "") + z.DecStructFieldNotFound(yyj512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8157,41 +8421,41 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym507 := z.EncBinary() - _ = yym507 + yym519 := z.EncBinary() + _ = yym519 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep508 := !z.EncBinary() - yy2arr508 := z.EncBasicHandle().StructToArray - var yyq508 [4]bool - _, _, _ = yysep508, yyq508, yy2arr508 - const yyr508 bool = false - yyq508[0] = len(x.AccessModes) != 0 - yyq508[1] = x.Selector != nil - yyq508[2] = true - yyq508[3] = x.VolumeName != "" - var yynn508 int - if yyr508 || yy2arr508 { + yysep520 := !z.EncBinary() + yy2arr520 := z.EncBasicHandle().StructToArray + var yyq520 [4]bool + _, _, _ = yysep520, yyq520, yy2arr520 + const yyr520 bool = false + yyq520[0] = len(x.AccessModes) != 0 + yyq520[1] = x.Selector != nil + yyq520[2] = true + yyq520[3] = x.VolumeName != "" + var yynn520 int + if yyr520 || yy2arr520 { r.EncodeArrayStart(4) } else { - yynn508 = 0 - for _, b := range yyq508 { + yynn520 = 0 + for _, b := range yyq520 { if b { - yynn508++ + yynn520++ } } - r.EncodeMapStart(yynn508) - yynn508 = 0 + r.EncodeMapStart(yynn520) + yynn520 = 0 } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[0] { + if yyq520[0] { if x.AccessModes == nil { r.EncodeNil() } else { - yym510 := z.EncBinary() - _ = yym510 + yym522 := z.EncBinary() + _ = yym522 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8201,15 +8465,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq508[0] { + if yyq520[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym511 := z.EncBinary() - _ = yym511 + yym523 := z.EncBinary() + _ = yym523 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8217,14 +8481,14 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[1] { + if yyq520[1] { if x.Selector == nil { r.EncodeNil() } else { - yym513 := z.EncBinary() - _ = yym513 + yym525 := z.EncBinary() + _ = yym525 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8235,15 +8499,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq508[1] { + if yyq520[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym514 := z.EncBinary() - _ = yym514 + yym526 := z.EncBinary() + _ = yym526 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8252,28 +8516,28 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[2] { - yy516 := &x.Resources - yy516.CodecEncodeSelf(e) + if yyq520[2] { + yy528 := &x.Resources + yy528.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq508[2] { + if yyq520[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy517 := &x.Resources - yy517.CodecEncodeSelf(e) + yy529 := &x.Resources + yy529.CodecEncodeSelf(e) } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq508[3] { - yym519 := z.EncBinary() - _ = yym519 + if yyq520[3] { + yym531 := z.EncBinary() + _ = yym531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) @@ -8282,19 +8546,19 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq508[3] { + if yyq520[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym520 := z.EncBinary() - _ = yym520 + yym532 := z.EncBinary() + _ = yym532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) } } } - if yyr508 || yy2arr508 { + if yyr520 || yy2arr520 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8307,25 +8571,25 @@ func (x *PersistentVolumeClaimSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym521 := z.DecBinary() - _ = yym521 + yym533 := z.DecBinary() + _ = yym533 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct522 := r.ContainerType() - if yyct522 == codecSelferValueTypeMap1234 { - yyl522 := r.ReadMapStart() - if yyl522 == 0 { + yyct534 := r.ContainerType() + if yyct534 == codecSelferValueTypeMap1234 { + yyl534 := r.ReadMapStart() + if yyl534 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl522, d) + x.codecDecodeSelfFromMap(yyl534, d) } - } else if yyct522 == codecSelferValueTypeArray1234 { - yyl522 := r.ReadArrayStart() - if yyl522 == 0 { + } else if yyct534 == codecSelferValueTypeArray1234 { + yyl534 := r.ReadArrayStart() + if yyl534 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl522, d) + x.codecDecodeSelfFromArray(yyl534, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8337,12 +8601,12 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys523Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys523Slc - var yyhl523 bool = l >= 0 - for yyj523 := 0; ; yyj523++ { - if yyhl523 { - if yyj523 >= l { + var yys535Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys535Slc + var yyhl535 bool = l >= 0 + for yyj535 := 0; ; yyj535++ { + if yyhl535 { + if yyj535 >= l { break } } else { @@ -8351,20 +8615,20 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys523Slc = r.DecodeBytes(yys523Slc, true, true) - yys523 := string(yys523Slc) + yys535Slc = r.DecodeBytes(yys535Slc, true, true) + yys535 := string(yys535Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys523 { + switch yys535 { case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv524 := &x.AccessModes - yym525 := z.DecBinary() - _ = yym525 + yyv536 := &x.AccessModes + yym537 := z.DecBinary() + _ = yym537 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv524), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv536), d) } } case "selector": @@ -8376,8 +8640,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym527 := z.DecBinary() - _ = yym527 + yym539 := z.DecBinary() + _ = yym539 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { @@ -8388,8 +8652,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv528 := &x.Resources - yyv528.CodecDecodeSelf(d) + yyv540 := &x.Resources + yyv540.CodecDecodeSelf(d) } case "volumeName": if r.TryDecodeAsNil() { @@ -8398,9 +8662,9 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.VolumeName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys523) - } // end switch yys523 - } // end for yyj523 + z.DecStructFieldNotFound(-1, yys535) + } // end switch yys535 + } // end for yyj535 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8408,16 +8672,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj530 int - var yyb530 bool - var yyhl530 bool = l >= 0 - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + var yyj542 int + var yyb542 bool + var yyhl542 bool = l >= 0 + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8425,21 +8689,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv531 := &x.AccessModes - yym532 := z.DecBinary() - _ = yym532 + yyv543 := &x.AccessModes + yym544 := z.DecBinary() + _ = yym544 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv531), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv543), d) } } - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8452,21 +8716,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym534 := z.DecBinary() - _ = yym534 + yym546 := z.DecBinary() + _ = yym546 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { z.DecFallback(x.Selector, false) } } - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8474,16 +8738,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv535 := &x.Resources - yyv535.CodecDecodeSelf(d) + yyv547 := &x.Resources + yyv547.CodecDecodeSelf(d) } - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8494,17 +8758,17 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.VolumeName = string(r.DecodeString()) } for { - yyj530++ - if yyhl530 { - yyb530 = yyj530 > l + yyj542++ + if yyhl542 { + yyb542 = yyj542 > l } else { - yyb530 = r.CheckBreak() + yyb542 = r.CheckBreak() } - if yyb530 { + if yyb542 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj530-1, "") + z.DecStructFieldNotFound(yyj542-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8516,55 +8780,55 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym537 := z.EncBinary() - _ = yym537 + yym549 := z.EncBinary() + _ = yym549 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep538 := !z.EncBinary() - yy2arr538 := z.EncBasicHandle().StructToArray - var yyq538 [3]bool - _, _, _ = yysep538, yyq538, yy2arr538 - const yyr538 bool = false - yyq538[0] = x.Phase != "" - yyq538[1] = len(x.AccessModes) != 0 - yyq538[2] = len(x.Capacity) != 0 - var yynn538 int - if yyr538 || yy2arr538 { + yysep550 := !z.EncBinary() + yy2arr550 := z.EncBasicHandle().StructToArray + var yyq550 [3]bool + _, _, _ = yysep550, yyq550, yy2arr550 + const yyr550 bool = false + yyq550[0] = x.Phase != "" + yyq550[1] = len(x.AccessModes) != 0 + yyq550[2] = len(x.Capacity) != 0 + var yynn550 int + if yyr550 || yy2arr550 { r.EncodeArrayStart(3) } else { - yynn538 = 0 - for _, b := range yyq538 { + yynn550 = 0 + for _, b := range yyq550 { if b { - yynn538++ + yynn550++ } } - r.EncodeMapStart(yynn538) - yynn538 = 0 + r.EncodeMapStart(yynn550) + yynn550 = 0 } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq538[0] { + if yyq550[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq538[0] { + if yyq550[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq538[1] { + if yyq550[1] { if x.AccessModes == nil { r.EncodeNil() } else { - yym541 := z.EncBinary() - _ = yym541 + yym553 := z.EncBinary() + _ = yym553 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8574,15 +8838,15 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq538[1] { + if yyq550[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym542 := z.EncBinary() - _ = yym542 + yym554 := z.EncBinary() + _ = yym554 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8590,9 +8854,9 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq538[2] { + if yyq550[2] { if x.Capacity == nil { r.EncodeNil() } else { @@ -8602,7 +8866,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq538[2] { + if yyq550[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -8613,7 +8877,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr538 || yy2arr538 { + if yyr550 || yy2arr550 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8626,25 +8890,25 @@ func (x *PersistentVolumeClaimStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym544 := z.DecBinary() - _ = yym544 + yym556 := z.DecBinary() + _ = yym556 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct545 := r.ContainerType() - if yyct545 == codecSelferValueTypeMap1234 { - yyl545 := r.ReadMapStart() - if yyl545 == 0 { + yyct557 := r.ContainerType() + if yyct557 == codecSelferValueTypeMap1234 { + yyl557 := r.ReadMapStart() + if yyl557 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl545, d) + x.codecDecodeSelfFromMap(yyl557, d) } - } else if yyct545 == codecSelferValueTypeArray1234 { - yyl545 := r.ReadArrayStart() - if yyl545 == 0 { + } else if yyct557 == codecSelferValueTypeArray1234 { + yyl557 := r.ReadArrayStart() + if yyl557 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl545, d) + x.codecDecodeSelfFromArray(yyl557, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8656,12 +8920,12 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys546Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys546Slc - var yyhl546 bool = l >= 0 - for yyj546 := 0; ; yyj546++ { - if yyhl546 { - if yyj546 >= l { + var yys558Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys558Slc + var yyhl558 bool = l >= 0 + for yyj558 := 0; ; yyj558++ { + if yyhl558 { + if yyj558 >= l { break } } else { @@ -8670,10 +8934,10 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys546Slc = r.DecodeBytes(yys546Slc, true, true) - yys546 := string(yys546Slc) + yys558Slc = r.DecodeBytes(yys558Slc, true, true) + yys558 := string(yys558Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys546 { + switch yys558 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -8684,25 +8948,25 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv548 := &x.AccessModes - yym549 := z.DecBinary() - _ = yym549 + yyv560 := &x.AccessModes + yym561 := z.DecBinary() + _ = yym561 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv548), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv560), d) } } case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv550 := &x.Capacity - yyv550.CodecDecodeSelf(d) + yyv562 := &x.Capacity + yyv562.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys546) - } // end switch yys546 - } // end for yyj546 + z.DecStructFieldNotFound(-1, yys558) + } // end switch yys558 + } // end for yyj558 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8710,16 +8974,16 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj551 int - var yyb551 bool - var yyhl551 bool = l >= 0 - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + var yyj563 int + var yyb563 bool + var yyhl563 bool = l >= 0 + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8729,13 +8993,13 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Phase = PersistentVolumeClaimPhase(r.DecodeString()) } - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8743,21 +9007,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv553 := &x.AccessModes - yym554 := z.DecBinary() - _ = yym554 + yyv565 := &x.AccessModes + yym566 := z.DecBinary() + _ = yym566 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv553), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv565), d) } } - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8765,21 +9029,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv555 := &x.Capacity - yyv555.CodecDecodeSelf(d) + yyv567 := &x.Capacity + yyv567.CodecDecodeSelf(d) } for { - yyj551++ - if yyhl551 { - yyb551 = yyj551 > l + yyj563++ + if yyhl563 { + yyb563 = yyj563 > l } else { - yyb551 = r.CheckBreak() + yyb563 = r.CheckBreak() } - if yyb551 { + if yyb563 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj551-1, "") + z.DecStructFieldNotFound(yyj563-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8788,8 +9052,8 @@ func (x PersistentVolumeAccessMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym556 := z.EncBinary() - _ = yym556 + yym568 := z.EncBinary() + _ = yym568 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -8801,8 +9065,8 @@ func (x *PersistentVolumeAccessMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym557 := z.DecBinary() - _ = yym557 + yym569 := z.DecBinary() + _ = yym569 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -8814,8 +9078,8 @@ func (x PersistentVolumePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym558 := z.EncBinary() - _ = yym558 + yym570 := z.EncBinary() + _ = yym570 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -8827,8 +9091,8 @@ func (x *PersistentVolumePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym559 := z.DecBinary() - _ = yym559 + yym571 := z.DecBinary() + _ = yym571 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -8840,8 +9104,8 @@ func (x PersistentVolumeClaimPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym560 := z.EncBinary() - _ = yym560 + yym572 := z.EncBinary() + _ = yym572 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -8853,8 +9117,8 @@ func (x *PersistentVolumeClaimPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym561 := z.DecBinary() - _ = yym561 + yym573 := z.DecBinary() + _ = yym573 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -8869,33 +9133,33 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym562 := z.EncBinary() - _ = yym562 + yym574 := z.EncBinary() + _ = yym574 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep563 := !z.EncBinary() - yy2arr563 := z.EncBasicHandle().StructToArray - var yyq563 [1]bool - _, _, _ = yysep563, yyq563, yy2arr563 - const yyr563 bool = false - var yynn563 int - if yyr563 || yy2arr563 { + yysep575 := !z.EncBinary() + yy2arr575 := z.EncBasicHandle().StructToArray + var yyq575 [1]bool + _, _, _ = yysep575, yyq575, yy2arr575 + const yyr575 bool = false + var yynn575 int + if yyr575 || yy2arr575 { r.EncodeArrayStart(1) } else { - yynn563 = 1 - for _, b := range yyq563 { + yynn575 = 1 + for _, b := range yyq575 { if b { - yynn563++ + yynn575++ } } - r.EncodeMapStart(yynn563) - yynn563 = 0 + r.EncodeMapStart(yynn575) + yynn575 = 0 } - if yyr563 || yy2arr563 { + if yyr575 || yy2arr575 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym565 := z.EncBinary() - _ = yym565 + yym577 := z.EncBinary() + _ = yym577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -8904,14 +9168,14 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym566 := z.EncBinary() - _ = yym566 + yym578 := z.EncBinary() + _ = yym578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr563 || yy2arr563 { + if yyr575 || yy2arr575 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8924,25 +9188,25 @@ func (x *HostPathVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym567 := z.DecBinary() - _ = yym567 + yym579 := z.DecBinary() + _ = yym579 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct568 := r.ContainerType() - if yyct568 == codecSelferValueTypeMap1234 { - yyl568 := r.ReadMapStart() - if yyl568 == 0 { + yyct580 := r.ContainerType() + if yyct580 == codecSelferValueTypeMap1234 { + yyl580 := r.ReadMapStart() + if yyl580 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl568, d) + x.codecDecodeSelfFromMap(yyl580, d) } - } else if yyct568 == codecSelferValueTypeArray1234 { - yyl568 := r.ReadArrayStart() - if yyl568 == 0 { + } else if yyct580 == codecSelferValueTypeArray1234 { + yyl580 := r.ReadArrayStart() + if yyl580 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl568, d) + x.codecDecodeSelfFromArray(yyl580, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8954,12 +9218,12 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys569Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys569Slc - var yyhl569 bool = l >= 0 - for yyj569 := 0; ; yyj569++ { - if yyhl569 { - if yyj569 >= l { + var yys581Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys581Slc + var yyhl581 bool = l >= 0 + for yyj581 := 0; ; yyj581++ { + if yyhl581 { + if yyj581 >= l { break } } else { @@ -8968,10 +9232,10 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys569Slc = r.DecodeBytes(yys569Slc, true, true) - yys569 := string(yys569Slc) + yys581Slc = r.DecodeBytes(yys581Slc, true, true) + yys581 := string(yys581Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys569 { + switch yys581 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -8979,9 +9243,9 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys569) - } // end switch yys569 - } // end for yyj569 + z.DecStructFieldNotFound(-1, yys581) + } // end switch yys581 + } // end for yyj581 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8989,16 +9253,16 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj571 int - var yyb571 bool - var yyhl571 bool = l >= 0 - yyj571++ - if yyhl571 { - yyb571 = yyj571 > l + var yyj583 int + var yyb583 bool + var yyhl583 bool = l >= 0 + yyj583++ + if yyhl583 { + yyb583 = yyj583 > l } else { - yyb571 = r.CheckBreak() + yyb583 = r.CheckBreak() } - if yyb571 { + if yyb583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9009,17 +9273,17 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Path = string(r.DecodeString()) } for { - yyj571++ - if yyhl571 { - yyb571 = yyj571 > l + yyj583++ + if yyhl583 { + yyb583 = yyj583 > l } else { - yyb571 = r.CheckBreak() + yyb583 = r.CheckBreak() } - if yyb571 { + if yyb583 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj571-1, "") + z.DecStructFieldNotFound(yyj583-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9031,46 +9295,46 @@ func (x *EmptyDirVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym573 := z.EncBinary() - _ = yym573 + yym585 := z.EncBinary() + _ = yym585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep574 := !z.EncBinary() - yy2arr574 := z.EncBasicHandle().StructToArray - var yyq574 [1]bool - _, _, _ = yysep574, yyq574, yy2arr574 - const yyr574 bool = false - yyq574[0] = x.Medium != "" - var yynn574 int - if yyr574 || yy2arr574 { + yysep586 := !z.EncBinary() + yy2arr586 := z.EncBasicHandle().StructToArray + var yyq586 [1]bool + _, _, _ = yysep586, yyq586, yy2arr586 + const yyr586 bool = false + yyq586[0] = x.Medium != "" + var yynn586 int + if yyr586 || yy2arr586 { r.EncodeArrayStart(1) } else { - yynn574 = 0 - for _, b := range yyq574 { + yynn586 = 0 + for _, b := range yyq586 { if b { - yynn574++ + yynn586++ } } - r.EncodeMapStart(yynn574) - yynn574 = 0 + r.EncodeMapStart(yynn586) + yynn586 = 0 } - if yyr574 || yy2arr574 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq574[0] { + if yyq586[0] { x.Medium.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq574[0] { + if yyq586[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("medium")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Medium.CodecEncodeSelf(e) } } - if yyr574 || yy2arr574 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9083,25 +9347,25 @@ func (x *EmptyDirVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym576 := z.DecBinary() - _ = yym576 + yym588 := z.DecBinary() + _ = yym588 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct577 := r.ContainerType() - if yyct577 == codecSelferValueTypeMap1234 { - yyl577 := r.ReadMapStart() - if yyl577 == 0 { + yyct589 := r.ContainerType() + if yyct589 == codecSelferValueTypeMap1234 { + yyl589 := r.ReadMapStart() + if yyl589 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl577, d) + x.codecDecodeSelfFromMap(yyl589, d) } - } else if yyct577 == codecSelferValueTypeArray1234 { - yyl577 := r.ReadArrayStart() - if yyl577 == 0 { + } else if yyct589 == codecSelferValueTypeArray1234 { + yyl589 := r.ReadArrayStart() + if yyl589 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl577, d) + x.codecDecodeSelfFromArray(yyl589, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9113,12 +9377,12 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys578Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys578Slc - var yyhl578 bool = l >= 0 - for yyj578 := 0; ; yyj578++ { - if yyhl578 { - if yyj578 >= l { + var yys590Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys590Slc + var yyhl590 bool = l >= 0 + for yyj590 := 0; ; yyj590++ { + if yyhl590 { + if yyj590 >= l { break } } else { @@ -9127,10 +9391,10 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys578Slc = r.DecodeBytes(yys578Slc, true, true) - yys578 := string(yys578Slc) + yys590Slc = r.DecodeBytes(yys590Slc, true, true) + yys590 := string(yys590Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys578 { + switch yys590 { case "medium": if r.TryDecodeAsNil() { x.Medium = "" @@ -9138,9 +9402,9 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Medium = StorageMedium(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys578) - } // end switch yys578 - } // end for yyj578 + z.DecStructFieldNotFound(-1, yys590) + } // end switch yys590 + } // end for yyj590 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9148,16 +9412,16 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj580 int - var yyb580 bool - var yyhl580 bool = l >= 0 - yyj580++ - if yyhl580 { - yyb580 = yyj580 > l + var yyj592 int + var yyb592 bool + var yyhl592 bool = l >= 0 + yyj592++ + if yyhl592 { + yyb592 = yyj592 > l } else { - yyb580 = r.CheckBreak() + yyb592 = r.CheckBreak() } - if yyb580 { + if yyb592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9168,17 +9432,17 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Medium = StorageMedium(r.DecodeString()) } for { - yyj580++ - if yyhl580 { - yyb580 = yyj580 > l + yyj592++ + if yyhl592 { + yyb592 = yyj592 > l } else { - yyb580 = r.CheckBreak() + yyb592 = r.CheckBreak() } - if yyb580 { + if yyb592 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj580-1, "") + z.DecStructFieldNotFound(yyj592-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9190,34 +9454,34 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym582 := z.EncBinary() - _ = yym582 + yym594 := z.EncBinary() + _ = yym594 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep583 := !z.EncBinary() - yy2arr583 := z.EncBasicHandle().StructToArray - var yyq583 [3]bool - _, _, _ = yysep583, yyq583, yy2arr583 - const yyr583 bool = false - yyq583[2] = x.ReadOnly != false - var yynn583 int - if yyr583 || yy2arr583 { + yysep595 := !z.EncBinary() + yy2arr595 := z.EncBasicHandle().StructToArray + var yyq595 [3]bool + _, _, _ = yysep595, yyq595, yy2arr595 + const yyr595 bool = false + yyq595[2] = x.ReadOnly != false + var yynn595 int + if yyr595 || yy2arr595 { r.EncodeArrayStart(3) } else { - yynn583 = 2 - for _, b := range yyq583 { + yynn595 = 2 + for _, b := range yyq595 { if b { - yynn583++ + yynn595++ } } - r.EncodeMapStart(yynn583) - yynn583 = 0 + r.EncodeMapStart(yynn595) + yynn595 = 0 } - if yyr583 || yy2arr583 { + if yyr595 || yy2arr595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym585 := z.EncBinary() - _ = yym585 + yym597 := z.EncBinary() + _ = yym597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) @@ -9226,17 +9490,17 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("endpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym586 := z.EncBinary() - _ = yym586 + yym598 := z.EncBinary() + _ = yym598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) } } - if yyr583 || yy2arr583 { + if yyr595 || yy2arr595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym588 := z.EncBinary() - _ = yym588 + yym600 := z.EncBinary() + _ = yym600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -9245,18 +9509,18 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym589 := z.EncBinary() - _ = yym589 + yym601 := z.EncBinary() + _ = yym601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr583 || yy2arr583 { + if yyr595 || yy2arr595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq583[2] { - yym591 := z.EncBinary() - _ = yym591 + if yyq595[2] { + yym603 := z.EncBinary() + _ = yym603 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9265,19 +9529,19 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq583[2] { + if yyq595[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym592 := z.EncBinary() - _ = yym592 + yym604 := z.EncBinary() + _ = yym604 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr583 || yy2arr583 { + if yyr595 || yy2arr595 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9290,25 +9554,25 @@ func (x *GlusterfsVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym593 := z.DecBinary() - _ = yym593 + yym605 := z.DecBinary() + _ = yym605 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct594 := r.ContainerType() - if yyct594 == codecSelferValueTypeMap1234 { - yyl594 := r.ReadMapStart() - if yyl594 == 0 { + yyct606 := r.ContainerType() + if yyct606 == codecSelferValueTypeMap1234 { + yyl606 := r.ReadMapStart() + if yyl606 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl594, d) + x.codecDecodeSelfFromMap(yyl606, d) } - } else if yyct594 == codecSelferValueTypeArray1234 { - yyl594 := r.ReadArrayStart() - if yyl594 == 0 { + } else if yyct606 == codecSelferValueTypeArray1234 { + yyl606 := r.ReadArrayStart() + if yyl606 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl594, d) + x.codecDecodeSelfFromArray(yyl606, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9320,12 +9584,12 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys595Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys595Slc - var yyhl595 bool = l >= 0 - for yyj595 := 0; ; yyj595++ { - if yyhl595 { - if yyj595 >= l { + var yys607Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys607Slc + var yyhl607 bool = l >= 0 + for yyj607 := 0; ; yyj607++ { + if yyhl607 { + if yyj607 >= l { break } } else { @@ -9334,10 +9598,10 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys595Slc = r.DecodeBytes(yys595Slc, true, true) - yys595 := string(yys595Slc) + yys607Slc = r.DecodeBytes(yys607Slc, true, true) + yys607 := string(yys607Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys595 { + switch yys607 { case "endpoints": if r.TryDecodeAsNil() { x.EndpointsName = "" @@ -9357,9 +9621,9 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys595) - } // end switch yys595 - } // end for yyj595 + z.DecStructFieldNotFound(-1, yys607) + } // end switch yys607 + } // end for yyj607 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9367,16 +9631,16 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj599 int - var yyb599 bool - var yyhl599 bool = l >= 0 - yyj599++ - if yyhl599 { - yyb599 = yyj599 > l + var yyj611 int + var yyb611 bool + var yyhl611 bool = l >= 0 + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb599 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb599 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9386,13 +9650,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.EndpointsName = string(r.DecodeString()) } - yyj599++ - if yyhl599 { - yyb599 = yyj599 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb599 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb599 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9402,13 +9666,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj599++ - if yyhl599 { - yyb599 = yyj599 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb599 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb599 { + if yyb611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9419,17 +9683,17 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj599++ - if yyhl599 { - yyb599 = yyj599 > l + yyj611++ + if yyhl611 { + yyb611 = yyj611 > l } else { - yyb599 = r.CheckBreak() + yyb611 = r.CheckBreak() } - if yyb599 { + if yyb611 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj599-1, "") + z.DecStructFieldNotFound(yyj611-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9441,42 +9705,42 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym603 := z.EncBinary() - _ = yym603 + yym615 := z.EncBinary() + _ = yym615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep604 := !z.EncBinary() - yy2arr604 := z.EncBasicHandle().StructToArray - var yyq604 [8]bool - _, _, _ = yysep604, yyq604, yy2arr604 - const yyr604 bool = false - yyq604[2] = x.FSType != "" - yyq604[3] = x.RBDPool != "" - yyq604[4] = x.RadosUser != "" - yyq604[5] = x.Keyring != "" - yyq604[6] = x.SecretRef != nil - yyq604[7] = x.ReadOnly != false - var yynn604 int - if yyr604 || yy2arr604 { + yysep616 := !z.EncBinary() + yy2arr616 := z.EncBasicHandle().StructToArray + var yyq616 [8]bool + _, _, _ = yysep616, yyq616, yy2arr616 + const yyr616 bool = false + yyq616[2] = x.FSType != "" + yyq616[3] = x.RBDPool != "" + yyq616[4] = x.RadosUser != "" + yyq616[5] = x.Keyring != "" + yyq616[6] = x.SecretRef != nil + yyq616[7] = x.ReadOnly != false + var yynn616 int + if yyr616 || yy2arr616 { r.EncodeArrayStart(8) } else { - yynn604 = 2 - for _, b := range yyq604 { + yynn616 = 2 + for _, b := range yyq616 { if b { - yynn604++ + yynn616++ } } - r.EncodeMapStart(yynn604) - yynn604 = 0 + r.EncodeMapStart(yynn616) + yynn616 = 0 } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.CephMonitors == nil { r.EncodeNil() } else { - yym606 := z.EncBinary() - _ = yym606 + yym618 := z.EncBinary() + _ = yym618 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) @@ -9489,18 +9753,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.CephMonitors == nil { r.EncodeNil() } else { - yym607 := z.EncBinary() - _ = yym607 + yym619 := z.EncBinary() + _ = yym619 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym609 := z.EncBinary() - _ = yym609 + yym621 := z.EncBinary() + _ = yym621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) @@ -9509,18 +9773,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym610 := z.EncBinary() - _ = yym610 + yym622 := z.EncBinary() + _ = yym622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[2] { - yym612 := z.EncBinary() - _ = yym612 + if yyq616[2] { + yym624 := z.EncBinary() + _ = yym624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9529,23 +9793,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq604[2] { + if yyq616[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym613 := z.EncBinary() - _ = yym613 + yym625 := z.EncBinary() + _ = yym625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[3] { - yym615 := z.EncBinary() - _ = yym615 + if yyq616[3] { + yym627 := z.EncBinary() + _ = yym627 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) @@ -9554,23 +9818,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq604[3] { + if yyq616[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pool")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym616 := z.EncBinary() - _ = yym616 + yym628 := z.EncBinary() + _ = yym628 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[4] { - yym618 := z.EncBinary() - _ = yym618 + if yyq616[4] { + yym630 := z.EncBinary() + _ = yym630 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) @@ -9579,23 +9843,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq604[4] { + if yyq616[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym619 := z.EncBinary() - _ = yym619 + yym631 := z.EncBinary() + _ = yym631 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[5] { - yym621 := z.EncBinary() - _ = yym621 + if yyq616[5] { + yym633 := z.EncBinary() + _ = yym633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) @@ -9604,21 +9868,21 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq604[5] { + if yyq616[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("keyring")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym622 := z.EncBinary() - _ = yym622 + yym634 := z.EncBinary() + _ = yym634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[6] { + if yyq616[6] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -9628,7 +9892,7 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq604[6] { + if yyq616[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -9639,11 +9903,11 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[7] { - yym625 := z.EncBinary() - _ = yym625 + if yyq616[7] { + yym637 := z.EncBinary() + _ = yym637 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9652,19 +9916,19 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq604[7] { + if yyq616[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym626 := z.EncBinary() - _ = yym626 + yym638 := z.EncBinary() + _ = yym638 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9677,25 +9941,25 @@ func (x *RBDVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym627 := z.DecBinary() - _ = yym627 + yym639 := z.DecBinary() + _ = yym639 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct628 := r.ContainerType() - if yyct628 == codecSelferValueTypeMap1234 { - yyl628 := r.ReadMapStart() - if yyl628 == 0 { + yyct640 := r.ContainerType() + if yyct640 == codecSelferValueTypeMap1234 { + yyl640 := r.ReadMapStart() + if yyl640 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl628, d) + x.codecDecodeSelfFromMap(yyl640, d) } - } else if yyct628 == codecSelferValueTypeArray1234 { - yyl628 := r.ReadArrayStart() - if yyl628 == 0 { + } else if yyct640 == codecSelferValueTypeArray1234 { + yyl640 := r.ReadArrayStart() + if yyl640 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl628, d) + x.codecDecodeSelfFromArray(yyl640, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9707,12 +9971,12 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys629Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys629Slc - var yyhl629 bool = l >= 0 - for yyj629 := 0; ; yyj629++ { - if yyhl629 { - if yyj629 >= l { + var yys641Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys641Slc + var yyhl641 bool = l >= 0 + for yyj641 := 0; ; yyj641++ { + if yyhl641 { + if yyj641 >= l { break } } else { @@ -9721,20 +9985,20 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys629Slc = r.DecodeBytes(yys629Slc, true, true) - yys629 := string(yys629Slc) + yys641Slc = r.DecodeBytes(yys641Slc, true, true) + yys641 := string(yys641Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys629 { + switch yys641 { case "monitors": if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv630 := &x.CephMonitors - yym631 := z.DecBinary() - _ = yym631 + yyv642 := &x.CephMonitors + yym643 := z.DecBinary() + _ = yym643 if false { } else { - z.F.DecSliceStringX(yyv630, false, d) + z.F.DecSliceStringX(yyv642, false, d) } } case "image": @@ -9785,9 +10049,9 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys629) - } // end switch yys629 - } // end for yyj629 + z.DecStructFieldNotFound(-1, yys641) + } // end switch yys641 + } // end for yyj641 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9795,16 +10059,16 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj639 int - var yyb639 bool - var yyhl639 bool = l >= 0 - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + var yyj651 int + var yyb651 bool + var yyhl651 bool = l >= 0 + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9812,21 +10076,21 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv640 := &x.CephMonitors - yym641 := z.DecBinary() - _ = yym641 + yyv652 := &x.CephMonitors + yym653 := z.DecBinary() + _ = yym653 if false { } else { - z.F.DecSliceStringX(yyv640, false, d) + z.F.DecSliceStringX(yyv652, false, d) } } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9836,13 +10100,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDImage = string(r.DecodeString()) } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9852,13 +10116,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9868,13 +10132,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDPool = string(r.DecodeString()) } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9884,13 +10148,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RadosUser = string(r.DecodeString()) } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9900,13 +10164,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Keyring = string(r.DecodeString()) } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9921,13 +10185,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9938,17 +10202,17 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj639++ - if yyhl639 { - yyb639 = yyj639 > l + yyj651++ + if yyhl651 { + yyb651 = yyj651 > l } else { - yyb639 = r.CheckBreak() + yyb651 = r.CheckBreak() } - if yyb639 { + if yyb651 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj639-1, "") + z.DecStructFieldNotFound(yyj651-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9960,35 +10224,35 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym649 := z.EncBinary() - _ = yym649 + yym661 := z.EncBinary() + _ = yym661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep650 := !z.EncBinary() - yy2arr650 := z.EncBasicHandle().StructToArray - var yyq650 [3]bool - _, _, _ = yysep650, yyq650, yy2arr650 - const yyr650 bool = false - yyq650[1] = x.FSType != "" - yyq650[2] = x.ReadOnly != false - var yynn650 int - if yyr650 || yy2arr650 { + yysep662 := !z.EncBinary() + yy2arr662 := z.EncBasicHandle().StructToArray + var yyq662 [3]bool + _, _, _ = yysep662, yyq662, yy2arr662 + const yyr662 bool = false + yyq662[1] = x.FSType != "" + yyq662[2] = x.ReadOnly != false + var yynn662 int + if yyr662 || yy2arr662 { r.EncodeArrayStart(3) } else { - yynn650 = 1 - for _, b := range yyq650 { + yynn662 = 1 + for _, b := range yyq662 { if b { - yynn650++ + yynn662++ } } - r.EncodeMapStart(yynn650) - yynn650 = 0 + r.EncodeMapStart(yynn662) + yynn662 = 0 } - if yyr650 || yy2arr650 { + if yyr662 || yy2arr662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym652 := z.EncBinary() - _ = yym652 + yym664 := z.EncBinary() + _ = yym664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -9997,18 +10261,18 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym653 := z.EncBinary() - _ = yym653 + yym665 := z.EncBinary() + _ = yym665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr650 || yy2arr650 { + if yyr662 || yy2arr662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq650[1] { - yym655 := z.EncBinary() - _ = yym655 + if yyq662[1] { + yym667 := z.EncBinary() + _ = yym667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10017,23 +10281,23 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq650[1] { + if yyq662[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym656 := z.EncBinary() - _ = yym656 + yym668 := z.EncBinary() + _ = yym668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr650 || yy2arr650 { + if yyr662 || yy2arr662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq650[2] { - yym658 := z.EncBinary() - _ = yym658 + if yyq662[2] { + yym670 := z.EncBinary() + _ = yym670 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10042,19 +10306,19 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq650[2] { + if yyq662[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym659 := z.EncBinary() - _ = yym659 + yym671 := z.EncBinary() + _ = yym671 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr650 || yy2arr650 { + if yyr662 || yy2arr662 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10067,25 +10331,25 @@ func (x *CinderVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym660 := z.DecBinary() - _ = yym660 + yym672 := z.DecBinary() + _ = yym672 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct661 := r.ContainerType() - if yyct661 == codecSelferValueTypeMap1234 { - yyl661 := r.ReadMapStart() - if yyl661 == 0 { + yyct673 := r.ContainerType() + if yyct673 == codecSelferValueTypeMap1234 { + yyl673 := r.ReadMapStart() + if yyl673 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl661, d) + x.codecDecodeSelfFromMap(yyl673, d) } - } else if yyct661 == codecSelferValueTypeArray1234 { - yyl661 := r.ReadArrayStart() - if yyl661 == 0 { + } else if yyct673 == codecSelferValueTypeArray1234 { + yyl673 := r.ReadArrayStart() + if yyl673 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl661, d) + x.codecDecodeSelfFromArray(yyl673, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10097,12 +10361,12 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys662Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys662Slc - var yyhl662 bool = l >= 0 - for yyj662 := 0; ; yyj662++ { - if yyhl662 { - if yyj662 >= l { + var yys674Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys674Slc + var yyhl674 bool = l >= 0 + for yyj674 := 0; ; yyj674++ { + if yyhl674 { + if yyj674 >= l { break } } else { @@ -10111,10 +10375,10 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys662Slc = r.DecodeBytes(yys662Slc, true, true) - yys662 := string(yys662Slc) + yys674Slc = r.DecodeBytes(yys674Slc, true, true) + yys674 := string(yys674Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys662 { + switch yys674 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -10134,9 +10398,9 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys662) - } // end switch yys662 - } // end for yyj662 + z.DecStructFieldNotFound(-1, yys674) + } // end switch yys674 + } // end for yyj674 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10144,16 +10408,16 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj666 int - var yyb666 bool - var yyhl666 bool = l >= 0 - yyj666++ - if yyhl666 { - yyb666 = yyj666 > l + var yyj678 int + var yyb678 bool + var yyhl678 bool = l >= 0 + yyj678++ + if yyhl678 { + yyb678 = yyj678 > l } else { - yyb666 = r.CheckBreak() + yyb678 = r.CheckBreak() } - if yyb666 { + if yyb678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10163,13 +10427,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.VolumeID = string(r.DecodeString()) } - yyj666++ - if yyhl666 { - yyb666 = yyj666 > l + yyj678++ + if yyhl678 { + yyb678 = yyj678 > l } else { - yyb666 = r.CheckBreak() + yyb678 = r.CheckBreak() } - if yyb666 { + if yyb678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10179,13 +10443,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.FSType = string(r.DecodeString()) } - yyj666++ - if yyhl666 { - yyb666 = yyj666 > l + yyj678++ + if yyhl678 { + yyb678 = yyj678 > l } else { - yyb666 = r.CheckBreak() + yyb678 = r.CheckBreak() } - if yyb666 { + if yyb678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10196,17 +10460,17 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj666++ - if yyhl666 { - yyb666 = yyj666 > l + yyj678++ + if yyhl678 { + yyb678 = yyj678 > l } else { - yyb666 = r.CheckBreak() + yyb678 = r.CheckBreak() } - if yyb666 { + if yyb678 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj666-1, "") + z.DecStructFieldNotFound(yyj678-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10218,41 +10482,41 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym670 := z.EncBinary() - _ = yym670 + yym682 := z.EncBinary() + _ = yym682 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep671 := !z.EncBinary() - yy2arr671 := z.EncBasicHandle().StructToArray - var yyq671 [6]bool - _, _, _ = yysep671, yyq671, yy2arr671 - const yyr671 bool = false - yyq671[1] = x.Path != "" - yyq671[2] = x.User != "" - yyq671[3] = x.SecretFile != "" - yyq671[4] = x.SecretRef != nil - yyq671[5] = x.ReadOnly != false - var yynn671 int - if yyr671 || yy2arr671 { + yysep683 := !z.EncBinary() + yy2arr683 := z.EncBasicHandle().StructToArray + var yyq683 [6]bool + _, _, _ = yysep683, yyq683, yy2arr683 + const yyr683 bool = false + yyq683[1] = x.Path != "" + yyq683[2] = x.User != "" + yyq683[3] = x.SecretFile != "" + yyq683[4] = x.SecretRef != nil + yyq683[5] = x.ReadOnly != false + var yynn683 int + if yyr683 || yy2arr683 { r.EncodeArrayStart(6) } else { - yynn671 = 1 - for _, b := range yyq671 { + yynn683 = 1 + for _, b := range yyq683 { if b { - yynn671++ + yynn683++ } } - r.EncodeMapStart(yynn671) - yynn671 = 0 + r.EncodeMapStart(yynn683) + yynn683 = 0 } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Monitors == nil { r.EncodeNil() } else { - yym673 := z.EncBinary() - _ = yym673 + yym685 := z.EncBinary() + _ = yym685 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) @@ -10265,19 +10529,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Monitors == nil { r.EncodeNil() } else { - yym674 := z.EncBinary() - _ = yym674 + yym686 := z.EncBinary() + _ = yym686 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) } } } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq671[1] { - yym676 := z.EncBinary() - _ = yym676 + if yyq683[1] { + yym688 := z.EncBinary() + _ = yym688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -10286,23 +10550,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq671[1] { + if yyq683[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym677 := z.EncBinary() - _ = yym677 + yym689 := z.EncBinary() + _ = yym689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq671[2] { - yym679 := z.EncBinary() - _ = yym679 + if yyq683[2] { + yym691 := z.EncBinary() + _ = yym691 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -10311,23 +10575,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq671[2] { + if yyq683[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym680 := z.EncBinary() - _ = yym680 + yym692 := z.EncBinary() + _ = yym692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq671[3] { - yym682 := z.EncBinary() - _ = yym682 + if yyq683[3] { + yym694 := z.EncBinary() + _ = yym694 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) @@ -10336,21 +10600,21 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq671[3] { + if yyq683[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym683 := z.EncBinary() - _ = yym683 + yym695 := z.EncBinary() + _ = yym695 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) } } } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq671[4] { + if yyq683[4] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -10360,7 +10624,7 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq671[4] { + if yyq683[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -10371,11 +10635,11 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq671[5] { - yym686 := z.EncBinary() - _ = yym686 + if yyq683[5] { + yym698 := z.EncBinary() + _ = yym698 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10384,19 +10648,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq671[5] { + if yyq683[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym687 := z.EncBinary() - _ = yym687 + yym699 := z.EncBinary() + _ = yym699 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr671 || yy2arr671 { + if yyr683 || yy2arr683 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10409,25 +10673,25 @@ func (x *CephFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym688 := z.DecBinary() - _ = yym688 + yym700 := z.DecBinary() + _ = yym700 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct689 := r.ContainerType() - if yyct689 == codecSelferValueTypeMap1234 { - yyl689 := r.ReadMapStart() - if yyl689 == 0 { + yyct701 := r.ContainerType() + if yyct701 == codecSelferValueTypeMap1234 { + yyl701 := r.ReadMapStart() + if yyl701 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl689, d) + x.codecDecodeSelfFromMap(yyl701, d) } - } else if yyct689 == codecSelferValueTypeArray1234 { - yyl689 := r.ReadArrayStart() - if yyl689 == 0 { + } else if yyct701 == codecSelferValueTypeArray1234 { + yyl701 := r.ReadArrayStart() + if yyl701 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl689, d) + x.codecDecodeSelfFromArray(yyl701, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10439,12 +10703,12 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys690Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys690Slc - var yyhl690 bool = l >= 0 - for yyj690 := 0; ; yyj690++ { - if yyhl690 { - if yyj690 >= l { + var yys702Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys702Slc + var yyhl702 bool = l >= 0 + for yyj702 := 0; ; yyj702++ { + if yyhl702 { + if yyj702 >= l { break } } else { @@ -10453,20 +10717,20 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys690Slc = r.DecodeBytes(yys690Slc, true, true) - yys690 := string(yys690Slc) + yys702Slc = r.DecodeBytes(yys702Slc, true, true) + yys702 := string(yys702Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys690 { + switch yys702 { case "monitors": if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv691 := &x.Monitors - yym692 := z.DecBinary() - _ = yym692 + yyv703 := &x.Monitors + yym704 := z.DecBinary() + _ = yym704 if false { } else { - z.F.DecSliceStringX(yyv691, false, d) + z.F.DecSliceStringX(yyv703, false, d) } } case "path": @@ -10505,9 +10769,9 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys690) - } // end switch yys690 - } // end for yyj690 + z.DecStructFieldNotFound(-1, yys702) + } // end switch yys702 + } // end for yyj702 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10515,16 +10779,16 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj698 int - var yyb698 bool - var yyhl698 bool = l >= 0 - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + var yyj710 int + var yyb710 bool + var yyhl710 bool = l >= 0 + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10532,21 +10796,21 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv699 := &x.Monitors - yym700 := z.DecBinary() - _ = yym700 + yyv711 := &x.Monitors + yym712 := z.DecBinary() + _ = yym712 if false { } else { - z.F.DecSliceStringX(yyv699, false, d) + z.F.DecSliceStringX(yyv711, false, d) } } - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10556,13 +10820,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Path = string(r.DecodeString()) } - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10572,13 +10836,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.User = string(r.DecodeString()) } - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10588,13 +10852,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretFile = string(r.DecodeString()) } - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10609,13 +10873,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SecretRef.CodecDecodeSelf(d) } - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10626,17 +10890,17 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj698++ - if yyhl698 { - yyb698 = yyj698 > l + yyj710++ + if yyhl710 { + yyb710 = yyj710 > l } else { - yyb698 = r.CheckBreak() + yyb710 = r.CheckBreak() } - if yyb698 { + if yyb710 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj698-1, "") + z.DecStructFieldNotFound(yyj710-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10648,33 +10912,33 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym706 := z.EncBinary() - _ = yym706 + yym718 := z.EncBinary() + _ = yym718 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep707 := !z.EncBinary() - yy2arr707 := z.EncBasicHandle().StructToArray - var yyq707 [1]bool - _, _, _ = yysep707, yyq707, yy2arr707 - const yyr707 bool = false - var yynn707 int - if yyr707 || yy2arr707 { + yysep719 := !z.EncBinary() + yy2arr719 := z.EncBasicHandle().StructToArray + var yyq719 [1]bool + _, _, _ = yysep719, yyq719, yy2arr719 + const yyr719 bool = false + var yynn719 int + if yyr719 || yy2arr719 { r.EncodeArrayStart(1) } else { - yynn707 = 1 - for _, b := range yyq707 { + yynn719 = 1 + for _, b := range yyq719 { if b { - yynn707++ + yynn719++ } } - r.EncodeMapStart(yynn707) - yynn707 = 0 + r.EncodeMapStart(yynn719) + yynn719 = 0 } - if yyr707 || yy2arr707 { + if yyr719 || yy2arr719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym709 := z.EncBinary() - _ = yym709 + yym721 := z.EncBinary() + _ = yym721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) @@ -10683,14 +10947,14 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("datasetName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym710 := z.EncBinary() - _ = yym710 + yym722 := z.EncBinary() + _ = yym722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) } } - if yyr707 || yy2arr707 { + if yyr719 || yy2arr719 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10703,25 +10967,25 @@ func (x *FlockerVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym711 := z.DecBinary() - _ = yym711 + yym723 := z.DecBinary() + _ = yym723 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct712 := r.ContainerType() - if yyct712 == codecSelferValueTypeMap1234 { - yyl712 := r.ReadMapStart() - if yyl712 == 0 { + yyct724 := r.ContainerType() + if yyct724 == codecSelferValueTypeMap1234 { + yyl724 := r.ReadMapStart() + if yyl724 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl712, d) + x.codecDecodeSelfFromMap(yyl724, d) } - } else if yyct712 == codecSelferValueTypeArray1234 { - yyl712 := r.ReadArrayStart() - if yyl712 == 0 { + } else if yyct724 == codecSelferValueTypeArray1234 { + yyl724 := r.ReadArrayStart() + if yyl724 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl712, d) + x.codecDecodeSelfFromArray(yyl724, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10733,12 +10997,12 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys713Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys713Slc - var yyhl713 bool = l >= 0 - for yyj713 := 0; ; yyj713++ { - if yyhl713 { - if yyj713 >= l { + var yys725Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys725Slc + var yyhl725 bool = l >= 0 + for yyj725 := 0; ; yyj725++ { + if yyhl725 { + if yyj725 >= l { break } } else { @@ -10747,10 +11011,10 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys713Slc = r.DecodeBytes(yys713Slc, true, true) - yys713 := string(yys713Slc) + yys725Slc = r.DecodeBytes(yys725Slc, true, true) + yys725 := string(yys725Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys713 { + switch yys725 { case "datasetName": if r.TryDecodeAsNil() { x.DatasetName = "" @@ -10758,9 +11022,9 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.DatasetName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys713) - } // end switch yys713 - } // end for yyj713 + z.DecStructFieldNotFound(-1, yys725) + } // end switch yys725 + } // end for yyj725 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10768,16 +11032,16 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj715 int - var yyb715 bool - var yyhl715 bool = l >= 0 - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + var yyj727 int + var yyb727 bool + var yyhl727 bool = l >= 0 + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10788,17 +11052,17 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.DatasetName = string(r.DecodeString()) } for { - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj715-1, "") + z.DecStructFieldNotFound(yyj727-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10807,8 +11071,8 @@ func (x StorageMedium) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym717 := z.EncBinary() - _ = yym717 + yym729 := z.EncBinary() + _ = yym729 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -10820,8 +11084,8 @@ func (x *StorageMedium) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym718 := z.DecBinary() - _ = yym718 + yym730 := z.DecBinary() + _ = yym730 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -10833,8 +11097,8 @@ func (x Protocol) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym719 := z.EncBinary() - _ = yym719 + yym731 := z.EncBinary() + _ = yym731 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -10846,8 +11110,8 @@ func (x *Protocol) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym720 := z.DecBinary() - _ = yym720 + yym732 := z.DecBinary() + _ = yym732 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -10862,36 +11126,36 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym721 := z.EncBinary() - _ = yym721 + yym733 := z.EncBinary() + _ = yym733 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep722 := !z.EncBinary() - yy2arr722 := z.EncBasicHandle().StructToArray - var yyq722 [4]bool - _, _, _ = yysep722, yyq722, yy2arr722 - const yyr722 bool = false - yyq722[1] = x.FSType != "" - yyq722[2] = x.Partition != 0 - yyq722[3] = x.ReadOnly != false - var yynn722 int - if yyr722 || yy2arr722 { + yysep734 := !z.EncBinary() + yy2arr734 := z.EncBasicHandle().StructToArray + var yyq734 [4]bool + _, _, _ = yysep734, yyq734, yy2arr734 + const yyr734 bool = false + yyq734[1] = x.FSType != "" + yyq734[2] = x.Partition != 0 + yyq734[3] = x.ReadOnly != false + var yynn734 int + if yyr734 || yy2arr734 { r.EncodeArrayStart(4) } else { - yynn722 = 1 - for _, b := range yyq722 { + yynn734 = 1 + for _, b := range yyq734 { if b { - yynn722++ + yynn734++ } } - r.EncodeMapStart(yynn722) - yynn722 = 0 + r.EncodeMapStart(yynn734) + yynn734 = 0 } - if yyr722 || yy2arr722 { + if yyr734 || yy2arr734 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym724 := z.EncBinary() - _ = yym724 + yym736 := z.EncBinary() + _ = yym736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) @@ -10900,18 +11164,18 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pdName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym725 := z.EncBinary() - _ = yym725 + yym737 := z.EncBinary() + _ = yym737 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) } } - if yyr722 || yy2arr722 { + if yyr734 || yy2arr734 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq722[1] { - yym727 := z.EncBinary() - _ = yym727 + if yyq734[1] { + yym739 := z.EncBinary() + _ = yym739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10920,23 +11184,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq722[1] { + if yyq734[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym728 := z.EncBinary() - _ = yym728 + yym740 := z.EncBinary() + _ = yym740 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr722 || yy2arr722 { + if yyr734 || yy2arr734 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq722[2] { - yym730 := z.EncBinary() - _ = yym730 + if yyq734[2] { + yym742 := z.EncBinary() + _ = yym742 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -10945,23 +11209,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq722[2] { + if yyq734[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym731 := z.EncBinary() - _ = yym731 + yym743 := z.EncBinary() + _ = yym743 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr722 || yy2arr722 { + if yyr734 || yy2arr734 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq722[3] { - yym733 := z.EncBinary() - _ = yym733 + if yyq734[3] { + yym745 := z.EncBinary() + _ = yym745 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10970,19 +11234,19 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq722[3] { + if yyq734[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym734 := z.EncBinary() - _ = yym734 + yym746 := z.EncBinary() + _ = yym746 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr722 || yy2arr722 { + if yyr734 || yy2arr734 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10995,25 +11259,25 @@ func (x *GCEPersistentDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym735 := z.DecBinary() - _ = yym735 + yym747 := z.DecBinary() + _ = yym747 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct736 := r.ContainerType() - if yyct736 == codecSelferValueTypeMap1234 { - yyl736 := r.ReadMapStart() - if yyl736 == 0 { + yyct748 := r.ContainerType() + if yyct748 == codecSelferValueTypeMap1234 { + yyl748 := r.ReadMapStart() + if yyl748 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl736, d) + x.codecDecodeSelfFromMap(yyl748, d) } - } else if yyct736 == codecSelferValueTypeArray1234 { - yyl736 := r.ReadArrayStart() - if yyl736 == 0 { + } else if yyct748 == codecSelferValueTypeArray1234 { + yyl748 := r.ReadArrayStart() + if yyl748 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl736, d) + x.codecDecodeSelfFromArray(yyl748, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11025,12 +11289,12 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys737Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys737Slc - var yyhl737 bool = l >= 0 - for yyj737 := 0; ; yyj737++ { - if yyhl737 { - if yyj737 >= l { + var yys749Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys749Slc + var yyhl749 bool = l >= 0 + for yyj749 := 0; ; yyj749++ { + if yyhl749 { + if yyj749 >= l { break } } else { @@ -11039,10 +11303,10 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys737Slc = r.DecodeBytes(yys737Slc, true, true) - yys737 := string(yys737Slc) + yys749Slc = r.DecodeBytes(yys749Slc, true, true) + yys749 := string(yys749Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys737 { + switch yys749 { case "pdName": if r.TryDecodeAsNil() { x.PDName = "" @@ -11068,9 +11332,9 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys737) - } // end switch yys737 - } // end for yyj737 + z.DecStructFieldNotFound(-1, yys749) + } // end switch yys749 + } // end for yyj749 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11078,16 +11342,16 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj742 int - var yyb742 bool - var yyhl742 bool = l >= 0 - yyj742++ - if yyhl742 { - yyb742 = yyj742 > l + var yyj754 int + var yyb754 bool + var yyhl754 bool = l >= 0 + yyj754++ + if yyhl754 { + yyb754 = yyj754 > l } else { - yyb742 = r.CheckBreak() + yyb754 = r.CheckBreak() } - if yyb742 { + if yyb754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11097,13 +11361,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.PDName = string(r.DecodeString()) } - yyj742++ - if yyhl742 { - yyb742 = yyj742 > l + yyj754++ + if yyhl754 { + yyb754 = yyj754 > l } else { - yyb742 = r.CheckBreak() + yyb754 = r.CheckBreak() } - if yyb742 { + if yyb754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11113,13 +11377,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.FSType = string(r.DecodeString()) } - yyj742++ - if yyhl742 { - yyb742 = yyj742 > l + yyj754++ + if yyhl754 { + yyb754 = yyj754 > l } else { - yyb742 = r.CheckBreak() + yyb754 = r.CheckBreak() } - if yyb742 { + if yyb754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11129,13 +11393,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.Partition = int32(r.DecodeInt(32)) } - yyj742++ - if yyhl742 { - yyb742 = yyj742 > l + yyj754++ + if yyhl754 { + yyb754 = yyj754 > l } else { - yyb742 = r.CheckBreak() + yyb754 = r.CheckBreak() } - if yyb742 { + if yyb754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11146,127 +11410,97 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj742++ - if yyhl742 { - yyb742 = yyj742 > l + yyj754++ + if yyhl754 { + yyb754 = yyj754 > l } else { - yyb742 = r.CheckBreak() + yyb754 = r.CheckBreak() } - if yyb742 { + if yyb754 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj742-1, "") + z.DecStructFieldNotFound(yyj754-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym747 := z.EncBinary() - _ = yym747 + yym759 := z.EncBinary() + _ = yym759 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep748 := !z.EncBinary() - yy2arr748 := z.EncBasicHandle().StructToArray - var yyq748 [5]bool - _, _, _ = yysep748, yyq748, yy2arr748 - const yyr748 bool = false - yyq748[1] = x.FSType != "" - yyq748[2] = x.SecretRef != nil - yyq748[3] = x.ReadOnly != false - yyq748[4] = len(x.Options) != 0 - var yynn748 int - if yyr748 || yy2arr748 { + yysep760 := !z.EncBinary() + yy2arr760 := z.EncBasicHandle().StructToArray + var yyq760 [5]bool + _, _, _ = yysep760, yyq760, yy2arr760 + const yyr760 bool = false + yyq760[2] = x.ReadOnly != false + yyq760[3] = x.User != "" + yyq760[4] = x.Group != "" + var yynn760 int + if yyr760 || yy2arr760 { r.EncodeArrayStart(5) } else { - yynn748 = 1 - for _, b := range yyq748 { + yynn760 = 2 + for _, b := range yyq760 { if b { - yynn748++ + yynn760++ } } - r.EncodeMapStart(yynn748) - yynn748 = 0 + r.EncodeMapStart(yynn760) + yynn760 = 0 } - if yyr748 || yy2arr748 { + if yyr760 || yy2arr760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym750 := z.EncBinary() - _ = yym750 + yym762 := z.EncBinary() + _ = yym762 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) + r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("driver")) + r.EncodeString(codecSelferC_UTF81234, string("registry")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym751 := z.EncBinary() - _ = yym751 + yym763 := z.EncBinary() + _ = yym763 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) + r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) } } - if yyr748 || yy2arr748 { + if yyr760 || yy2arr760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq748[1] { - yym753 := z.EncBinary() - _ = yym753 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) - } + yym765 := z.EncBinary() + _ = yym765 + if false { } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) } } else { - if yyq748[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fsType")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym754 := z.EncBinary() - _ = yym754 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) - } - } - } - if yyr748 || yy2arr748 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq748[2] { - if x.SecretRef == nil { - r.EncodeNil() - } else { - x.SecretRef.CodecEncodeSelf(e) - } + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("volume")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym766 := z.EncBinary() + _ = yym766 + if false { } else { - r.EncodeNil() - } - } else { - if yyq748[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("secretRef")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.SecretRef == nil { - r.EncodeNil() - } else { - x.SecretRef.CodecEncodeSelf(e) - } + r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) } } - if yyr748 || yy2arr748 { + if yyr760 || yy2arr760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq748[3] { - yym757 := z.EncBinary() - _ = yym757 + if yyq760[2] { + yym768 := z.EncBinary() + _ = yym768 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11275,26 +11509,403 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq748[3] { + if yyq760[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym758 := z.EncBinary() - _ = yym758 + yym769 := z.EncBinary() + _ = yym769 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr748 || yy2arr748 { + if yyr760 || yy2arr760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq748[4] { + if yyq760[3] { + yym771 := z.EncBinary() + _ = yym771 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.User)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq760[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("user")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym772 := z.EncBinary() + _ = yym772 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.User)) + } + } + } + if yyr760 || yy2arr760 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq760[4] { + yym774 := z.EncBinary() + _ = yym774 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Group)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq760[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("group")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym775 := z.EncBinary() + _ = yym775 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Group)) + } + } + } + if yyr760 || yy2arr760 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *QuobyteVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym776 := z.DecBinary() + _ = yym776 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct777 := r.ContainerType() + if yyct777 == codecSelferValueTypeMap1234 { + yyl777 := r.ReadMapStart() + if yyl777 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl777, d) + } + } else if yyct777 == codecSelferValueTypeArray1234 { + yyl777 := r.ReadArrayStart() + if yyl777 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl777, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys778Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys778Slc + var yyhl778 bool = l >= 0 + for yyj778 := 0; ; yyj778++ { + if yyhl778 { + if yyj778 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys778Slc = r.DecodeBytes(yys778Slc, true, true) + yys778 := string(yys778Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys778 { + case "registry": + if r.TryDecodeAsNil() { + x.Registry = "" + } else { + x.Registry = string(r.DecodeString()) + } + case "volume": + if r.TryDecodeAsNil() { + x.Volume = "" + } else { + x.Volume = string(r.DecodeString()) + } + case "readOnly": + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = bool(r.DecodeBool()) + } + case "user": + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = string(r.DecodeString()) + } + case "group": + if r.TryDecodeAsNil() { + x.Group = "" + } else { + x.Group = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys778) + } // end switch yys778 + } // end for yyj778 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj784 int + var yyb784 bool + var yyhl784 bool = l >= 0 + yyj784++ + if yyhl784 { + yyb784 = yyj784 > l + } else { + yyb784 = r.CheckBreak() + } + if yyb784 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Registry = "" + } else { + x.Registry = string(r.DecodeString()) + } + yyj784++ + if yyhl784 { + yyb784 = yyj784 > l + } else { + yyb784 = r.CheckBreak() + } + if yyb784 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Volume = "" + } else { + x.Volume = string(r.DecodeString()) + } + yyj784++ + if yyhl784 { + yyb784 = yyj784 > l + } else { + yyb784 = r.CheckBreak() + } + if yyb784 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ReadOnly = false + } else { + x.ReadOnly = bool(r.DecodeBool()) + } + yyj784++ + if yyhl784 { + yyb784 = yyj784 > l + } else { + yyb784 = r.CheckBreak() + } + if yyb784 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.User = "" + } else { + x.User = string(r.DecodeString()) + } + yyj784++ + if yyhl784 { + yyb784 = yyj784 > l + } else { + yyb784 = r.CheckBreak() + } + if yyb784 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Group = "" + } else { + x.Group = string(r.DecodeString()) + } + for { + yyj784++ + if yyhl784 { + yyb784 = yyj784 > l + } else { + yyb784 = r.CheckBreak() + } + if yyb784 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj784-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym790 := z.EncBinary() + _ = yym790 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep791 := !z.EncBinary() + yy2arr791 := z.EncBasicHandle().StructToArray + var yyq791 [5]bool + _, _, _ = yysep791, yyq791, yy2arr791 + const yyr791 bool = false + yyq791[1] = x.FSType != "" + yyq791[2] = x.SecretRef != nil + yyq791[3] = x.ReadOnly != false + yyq791[4] = len(x.Options) != 0 + var yynn791 int + if yyr791 || yy2arr791 { + r.EncodeArrayStart(5) + } else { + yynn791 = 1 + for _, b := range yyq791 { + if b { + yynn791++ + } + } + r.EncodeMapStart(yynn791) + yynn791 = 0 + } + if yyr791 || yy2arr791 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym793 := z.EncBinary() + _ = yym793 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("driver")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym794 := z.EncBinary() + _ = yym794 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) + } + } + if yyr791 || yy2arr791 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq791[1] { + yym796 := z.EncBinary() + _ = yym796 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq791[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fsType")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym797 := z.EncBinary() + _ = yym797 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) + } + } + } + if yyr791 || yy2arr791 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq791[2] { + if x.SecretRef == nil { + r.EncodeNil() + } else { + x.SecretRef.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq791[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("secretRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.SecretRef == nil { + r.EncodeNil() + } else { + x.SecretRef.CodecEncodeSelf(e) + } + } + } + if yyr791 || yy2arr791 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq791[3] { + yym800 := z.EncBinary() + _ = yym800 + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq791[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("readOnly")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym801 := z.EncBinary() + _ = yym801 + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } + } + if yyr791 || yy2arr791 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq791[4] { if x.Options == nil { r.EncodeNil() } else { - yym760 := z.EncBinary() - _ = yym760 + yym803 := z.EncBinary() + _ = yym803 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -11304,15 +11915,15 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq748[4] { + if yyq791[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("options")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Options == nil { r.EncodeNil() } else { - yym761 := z.EncBinary() - _ = yym761 + yym804 := z.EncBinary() + _ = yym804 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -11320,7 +11931,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr748 || yy2arr748 { + if yyr791 || yy2arr791 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11333,25 +11944,25 @@ func (x *FlexVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym762 := z.DecBinary() - _ = yym762 + yym805 := z.DecBinary() + _ = yym805 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct763 := r.ContainerType() - if yyct763 == codecSelferValueTypeMap1234 { - yyl763 := r.ReadMapStart() - if yyl763 == 0 { + yyct806 := r.ContainerType() + if yyct806 == codecSelferValueTypeMap1234 { + yyl806 := r.ReadMapStart() + if yyl806 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl763, d) + x.codecDecodeSelfFromMap(yyl806, d) } - } else if yyct763 == codecSelferValueTypeArray1234 { - yyl763 := r.ReadArrayStart() - if yyl763 == 0 { + } else if yyct806 == codecSelferValueTypeArray1234 { + yyl806 := r.ReadArrayStart() + if yyl806 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl763, d) + x.codecDecodeSelfFromArray(yyl806, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11363,12 +11974,12 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys764Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys764Slc - var yyhl764 bool = l >= 0 - for yyj764 := 0; ; yyj764++ { - if yyhl764 { - if yyj764 >= l { + var yys807Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys807Slc + var yyhl807 bool = l >= 0 + for yyj807 := 0; ; yyj807++ { + if yyhl807 { + if yyj807 >= l { break } } else { @@ -11377,10 +11988,10 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys764Slc = r.DecodeBytes(yys764Slc, true, true) - yys764 := string(yys764Slc) + yys807Slc = r.DecodeBytes(yys807Slc, true, true) + yys807 := string(yys807Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys764 { + switch yys807 { case "driver": if r.TryDecodeAsNil() { x.Driver = "" @@ -11414,18 +12025,18 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Options = nil } else { - yyv769 := &x.Options - yym770 := z.DecBinary() - _ = yym770 + yyv812 := &x.Options + yym813 := z.DecBinary() + _ = yym813 if false { } else { - z.F.DecMapStringStringX(yyv769, false, d) + z.F.DecMapStringStringX(yyv812, false, d) } } default: - z.DecStructFieldNotFound(-1, yys764) - } // end switch yys764 - } // end for yyj764 + z.DecStructFieldNotFound(-1, yys807) + } // end switch yys807 + } // end for yyj807 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11433,16 +12044,16 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj771 int - var yyb771 bool - var yyhl771 bool = l >= 0 - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + var yyj814 int + var yyb814 bool + var yyhl814 bool = l >= 0 + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb771 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb771 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11452,13 +12063,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Driver = string(r.DecodeString()) } - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb771 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb771 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11468,13 +12079,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb771 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb771 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11489,13 +12100,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb771 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb771 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11505,13 +12116,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb771 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb771 { + if yyb814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11519,26 +12130,26 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Options = nil } else { - yyv776 := &x.Options - yym777 := z.DecBinary() - _ = yym777 + yyv819 := &x.Options + yym820 := z.DecBinary() + _ = yym820 if false { } else { - z.F.DecMapStringStringX(yyv776, false, d) + z.F.DecMapStringStringX(yyv819, false, d) } } for { - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj814++ + if yyhl814 { + yyb814 = yyj814 > l } else { - yyb771 = r.CheckBreak() + yyb814 = r.CheckBreak() } - if yyb771 { + if yyb814 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj771-1, "") + z.DecStructFieldNotFound(yyj814-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11550,36 +12161,36 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) if x == nil { r.EncodeNil() } else { - yym778 := z.EncBinary() - _ = yym778 + yym821 := z.EncBinary() + _ = yym821 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep779 := !z.EncBinary() - yy2arr779 := z.EncBasicHandle().StructToArray - var yyq779 [4]bool - _, _, _ = yysep779, yyq779, yy2arr779 - const yyr779 bool = false - yyq779[1] = x.FSType != "" - yyq779[2] = x.Partition != 0 - yyq779[3] = x.ReadOnly != false - var yynn779 int - if yyr779 || yy2arr779 { + yysep822 := !z.EncBinary() + yy2arr822 := z.EncBasicHandle().StructToArray + var yyq822 [4]bool + _, _, _ = yysep822, yyq822, yy2arr822 + const yyr822 bool = false + yyq822[1] = x.FSType != "" + yyq822[2] = x.Partition != 0 + yyq822[3] = x.ReadOnly != false + var yynn822 int + if yyr822 || yy2arr822 { r.EncodeArrayStart(4) } else { - yynn779 = 1 - for _, b := range yyq779 { + yynn822 = 1 + for _, b := range yyq822 { if b { - yynn779++ + yynn822++ } } - r.EncodeMapStart(yynn779) - yynn779 = 0 + r.EncodeMapStart(yynn822) + yynn822 = 0 } - if yyr779 || yy2arr779 { + if yyr822 || yy2arr822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym781 := z.EncBinary() - _ = yym781 + yym824 := z.EncBinary() + _ = yym824 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -11588,18 +12199,18 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym782 := z.EncBinary() - _ = yym782 + yym825 := z.EncBinary() + _ = yym825 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr779 || yy2arr779 { + if yyr822 || yy2arr822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq779[1] { - yym784 := z.EncBinary() - _ = yym784 + if yyq822[1] { + yym827 := z.EncBinary() + _ = yym827 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11608,23 +12219,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq779[1] { + if yyq822[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym785 := z.EncBinary() - _ = yym785 + yym828 := z.EncBinary() + _ = yym828 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr779 || yy2arr779 { + if yyr822 || yy2arr822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq779[2] { - yym787 := z.EncBinary() - _ = yym787 + if yyq822[2] { + yym830 := z.EncBinary() + _ = yym830 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -11633,23 +12244,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeInt(0) } } else { - if yyq779[2] { + if yyq822[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym788 := z.EncBinary() - _ = yym788 + yym831 := z.EncBinary() + _ = yym831 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr779 || yy2arr779 { + if yyr822 || yy2arr822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq779[3] { - yym790 := z.EncBinary() - _ = yym790 + if yyq822[3] { + yym833 := z.EncBinary() + _ = yym833 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11658,19 +12269,19 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeBool(false) } } else { - if yyq779[3] { + if yyq822[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym791 := z.EncBinary() - _ = yym791 + yym834 := z.EncBinary() + _ = yym834 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr779 || yy2arr779 { + if yyr822 || yy2arr822 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11683,25 +12294,25 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym792 := z.DecBinary() - _ = yym792 + yym835 := z.DecBinary() + _ = yym835 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct793 := r.ContainerType() - if yyct793 == codecSelferValueTypeMap1234 { - yyl793 := r.ReadMapStart() - if yyl793 == 0 { + yyct836 := r.ContainerType() + if yyct836 == codecSelferValueTypeMap1234 { + yyl836 := r.ReadMapStart() + if yyl836 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl793, d) + x.codecDecodeSelfFromMap(yyl836, d) } - } else if yyct793 == codecSelferValueTypeArray1234 { - yyl793 := r.ReadArrayStart() - if yyl793 == 0 { + } else if yyct836 == codecSelferValueTypeArray1234 { + yyl836 := r.ReadArrayStart() + if yyl836 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl793, d) + x.codecDecodeSelfFromArray(yyl836, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11713,12 +12324,12 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys794Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys794Slc - var yyhl794 bool = l >= 0 - for yyj794 := 0; ; yyj794++ { - if yyhl794 { - if yyj794 >= l { + var yys837Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys837Slc + var yyhl837 bool = l >= 0 + for yyj837 := 0; ; yyj837++ { + if yyhl837 { + if yyj837 >= l { break } } else { @@ -11727,10 +12338,10 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys794Slc = r.DecodeBytes(yys794Slc, true, true) - yys794 := string(yys794Slc) + yys837Slc = r.DecodeBytes(yys837Slc, true, true) + yys837 := string(yys837Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys794 { + switch yys837 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -11756,9 +12367,9 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys794) - } // end switch yys794 - } // end for yyj794 + z.DecStructFieldNotFound(-1, yys837) + } // end switch yys837 + } // end for yyj837 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11766,16 +12377,16 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj799 int - var yyb799 bool - var yyhl799 bool = l >= 0 - yyj799++ - if yyhl799 { - yyb799 = yyj799 > l + var yyj842 int + var yyb842 bool + var yyhl842 bool = l >= 0 + yyj842++ + if yyhl842 { + yyb842 = yyj842 > l } else { - yyb799 = r.CheckBreak() + yyb842 = r.CheckBreak() } - if yyb799 { + if yyb842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11785,13 +12396,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.VolumeID = string(r.DecodeString()) } - yyj799++ - if yyhl799 { - yyb799 = yyj799 > l + yyj842++ + if yyhl842 { + yyb842 = yyj842 > l } else { - yyb799 = r.CheckBreak() + yyb842 = r.CheckBreak() } - if yyb799 { + if yyb842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11801,13 +12412,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.FSType = string(r.DecodeString()) } - yyj799++ - if yyhl799 { - yyb799 = yyj799 > l + yyj842++ + if yyhl842 { + yyb842 = yyj842 > l } else { - yyb799 = r.CheckBreak() + yyb842 = r.CheckBreak() } - if yyb799 { + if yyb842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11817,13 +12428,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.Partition = int32(r.DecodeInt(32)) } - yyj799++ - if yyhl799 { - yyb799 = yyj799 > l + yyj842++ + if yyhl842 { + yyb842 = yyj842 > l } else { - yyb799 = r.CheckBreak() + yyb842 = r.CheckBreak() } - if yyb799 { + if yyb842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11834,17 +12445,17 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co x.ReadOnly = bool(r.DecodeBool()) } for { - yyj799++ - if yyhl799 { - yyb799 = yyj799 > l + yyj842++ + if yyhl842 { + yyb842 = yyj842 > l } else { - yyb799 = r.CheckBreak() + yyb842 = r.CheckBreak() } - if yyb799 { + if yyb842 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj799-1, "") + z.DecStructFieldNotFound(yyj842-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11856,35 +12467,35 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym804 := z.EncBinary() - _ = yym804 + yym847 := z.EncBinary() + _ = yym847 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep805 := !z.EncBinary() - yy2arr805 := z.EncBasicHandle().StructToArray - var yyq805 [3]bool - _, _, _ = yysep805, yyq805, yy2arr805 - const yyr805 bool = false - yyq805[1] = x.Revision != "" - yyq805[2] = x.Directory != "" - var yynn805 int - if yyr805 || yy2arr805 { + yysep848 := !z.EncBinary() + yy2arr848 := z.EncBasicHandle().StructToArray + var yyq848 [3]bool + _, _, _ = yysep848, yyq848, yy2arr848 + const yyr848 bool = false + yyq848[1] = x.Revision != "" + yyq848[2] = x.Directory != "" + var yynn848 int + if yyr848 || yy2arr848 { r.EncodeArrayStart(3) } else { - yynn805 = 1 - for _, b := range yyq805 { + yynn848 = 1 + for _, b := range yyq848 { if b { - yynn805++ + yynn848++ } } - r.EncodeMapStart(yynn805) - yynn805 = 0 + r.EncodeMapStart(yynn848) + yynn848 = 0 } - if yyr805 || yy2arr805 { + if yyr848 || yy2arr848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym807 := z.EncBinary() - _ = yym807 + yym850 := z.EncBinary() + _ = yym850 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) @@ -11893,18 +12504,18 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("repository")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym808 := z.EncBinary() - _ = yym808 + yym851 := z.EncBinary() + _ = yym851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) } } - if yyr805 || yy2arr805 { + if yyr848 || yy2arr848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq805[1] { - yym810 := z.EncBinary() - _ = yym810 + if yyq848[1] { + yym853 := z.EncBinary() + _ = yym853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) @@ -11913,23 +12524,23 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq805[1] { + if yyq848[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("revision")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym811 := z.EncBinary() - _ = yym811 + yym854 := z.EncBinary() + _ = yym854 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) } } } - if yyr805 || yy2arr805 { + if yyr848 || yy2arr848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq805[2] { - yym813 := z.EncBinary() - _ = yym813 + if yyq848[2] { + yym856 := z.EncBinary() + _ = yym856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) @@ -11938,19 +12549,19 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq805[2] { + if yyq848[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("directory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym814 := z.EncBinary() - _ = yym814 + yym857 := z.EncBinary() + _ = yym857 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) } } } - if yyr805 || yy2arr805 { + if yyr848 || yy2arr848 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11963,25 +12574,25 @@ func (x *GitRepoVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym815 := z.DecBinary() - _ = yym815 + yym858 := z.DecBinary() + _ = yym858 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct816 := r.ContainerType() - if yyct816 == codecSelferValueTypeMap1234 { - yyl816 := r.ReadMapStart() - if yyl816 == 0 { + yyct859 := r.ContainerType() + if yyct859 == codecSelferValueTypeMap1234 { + yyl859 := r.ReadMapStart() + if yyl859 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl816, d) + x.codecDecodeSelfFromMap(yyl859, d) } - } else if yyct816 == codecSelferValueTypeArray1234 { - yyl816 := r.ReadArrayStart() - if yyl816 == 0 { + } else if yyct859 == codecSelferValueTypeArray1234 { + yyl859 := r.ReadArrayStart() + if yyl859 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl816, d) + x.codecDecodeSelfFromArray(yyl859, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11993,12 +12604,12 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys817Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys817Slc - var yyhl817 bool = l >= 0 - for yyj817 := 0; ; yyj817++ { - if yyhl817 { - if yyj817 >= l { + var yys860Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys860Slc + var yyhl860 bool = l >= 0 + for yyj860 := 0; ; yyj860++ { + if yyhl860 { + if yyj860 >= l { break } } else { @@ -12007,10 +12618,10 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys817Slc = r.DecodeBytes(yys817Slc, true, true) - yys817 := string(yys817Slc) + yys860Slc = r.DecodeBytes(yys860Slc, true, true) + yys860 := string(yys860Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys817 { + switch yys860 { case "repository": if r.TryDecodeAsNil() { x.Repository = "" @@ -12030,9 +12641,9 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Directory = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys817) - } // end switch yys817 - } // end for yyj817 + z.DecStructFieldNotFound(-1, yys860) + } // end switch yys860 + } // end for yyj860 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12040,16 +12651,16 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj821 int - var yyb821 bool - var yyhl821 bool = l >= 0 - yyj821++ - if yyhl821 { - yyb821 = yyj821 > l + var yyj864 int + var yyb864 bool + var yyhl864 bool = l >= 0 + yyj864++ + if yyhl864 { + yyb864 = yyj864 > l } else { - yyb821 = r.CheckBreak() + yyb864 = r.CheckBreak() } - if yyb821 { + if yyb864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12059,13 +12670,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Repository = string(r.DecodeString()) } - yyj821++ - if yyhl821 { - yyb821 = yyj821 > l + yyj864++ + if yyhl864 { + yyb864 = yyj864 > l } else { - yyb821 = r.CheckBreak() + yyb864 = r.CheckBreak() } - if yyb821 { + if yyb864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12075,13 +12686,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Revision = string(r.DecodeString()) } - yyj821++ - if yyhl821 { - yyb821 = yyj821 > l + yyj864++ + if yyhl864 { + yyb864 = yyj864 > l } else { - yyb821 = r.CheckBreak() + yyb864 = r.CheckBreak() } - if yyb821 { + if yyb864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12092,17 +12703,17 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Directory = string(r.DecodeString()) } for { - yyj821++ - if yyhl821 { - yyb821 = yyj821 > l + yyj864++ + if yyhl864 { + yyb864 = yyj864 > l } else { - yyb821 = r.CheckBreak() + yyb864 = r.CheckBreak() } - if yyb821 { + if yyb864 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj821-1, "") + z.DecStructFieldNotFound(yyj864-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12114,37 +12725,37 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym825 := z.EncBinary() - _ = yym825 + yym868 := z.EncBinary() + _ = yym868 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep826 := !z.EncBinary() - yy2arr826 := z.EncBasicHandle().StructToArray - var yyq826 [3]bool - _, _, _ = yysep826, yyq826, yy2arr826 - const yyr826 bool = false - yyq826[0] = x.SecretName != "" - yyq826[1] = len(x.Items) != 0 - yyq826[2] = x.DefaultMode != nil - var yynn826 int - if yyr826 || yy2arr826 { + yysep869 := !z.EncBinary() + yy2arr869 := z.EncBasicHandle().StructToArray + var yyq869 [3]bool + _, _, _ = yysep869, yyq869, yy2arr869 + const yyr869 bool = false + yyq869[0] = x.SecretName != "" + yyq869[1] = len(x.Items) != 0 + yyq869[2] = x.DefaultMode != nil + var yynn869 int + if yyr869 || yy2arr869 { r.EncodeArrayStart(3) } else { - yynn826 = 0 - for _, b := range yyq826 { + yynn869 = 0 + for _, b := range yyq869 { if b { - yynn826++ + yynn869++ } } - r.EncodeMapStart(yynn826) - yynn826 = 0 + r.EncodeMapStart(yynn869) + yynn869 = 0 } - if yyr826 || yy2arr826 { + if yyr869 || yy2arr869 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq826[0] { - yym828 := z.EncBinary() - _ = yym828 + if yyq869[0] { + yym871 := z.EncBinary() + _ = yym871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -12153,26 +12764,26 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq826[0] { + if yyq869[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym829 := z.EncBinary() - _ = yym829 + yym872 := z.EncBinary() + _ = yym872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } } - if yyr826 || yy2arr826 { + if yyr869 || yy2arr869 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq826[1] { + if yyq869[1] { if x.Items == nil { r.EncodeNil() } else { - yym831 := z.EncBinary() - _ = yym831 + yym874 := z.EncBinary() + _ = yym874 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -12182,15 +12793,15 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq826[1] { + if yyq869[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym832 := z.EncBinary() - _ = yym832 + yym875 := z.EncBinary() + _ = yym875 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -12198,42 +12809,42 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr826 || yy2arr826 { + if yyr869 || yy2arr869 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq826[2] { + if yyq869[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy834 := *x.DefaultMode - yym835 := z.EncBinary() - _ = yym835 + yy877 := *x.DefaultMode + yym878 := z.EncBinary() + _ = yym878 if false { } else { - r.EncodeInt(int64(yy834)) + r.EncodeInt(int64(yy877)) } } } else { r.EncodeNil() } } else { - if yyq826[2] { + if yyq869[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy836 := *x.DefaultMode - yym837 := z.EncBinary() - _ = yym837 + yy879 := *x.DefaultMode + yym880 := z.EncBinary() + _ = yym880 if false { } else { - r.EncodeInt(int64(yy836)) + r.EncodeInt(int64(yy879)) } } } } - if yyr826 || yy2arr826 { + if yyr869 || yy2arr869 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12246,25 +12857,25 @@ func (x *SecretVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym838 := z.DecBinary() - _ = yym838 + yym881 := z.DecBinary() + _ = yym881 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct839 := r.ContainerType() - if yyct839 == codecSelferValueTypeMap1234 { - yyl839 := r.ReadMapStart() - if yyl839 == 0 { + yyct882 := r.ContainerType() + if yyct882 == codecSelferValueTypeMap1234 { + yyl882 := r.ReadMapStart() + if yyl882 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl839, d) + x.codecDecodeSelfFromMap(yyl882, d) } - } else if yyct839 == codecSelferValueTypeArray1234 { - yyl839 := r.ReadArrayStart() - if yyl839 == 0 { + } else if yyct882 == codecSelferValueTypeArray1234 { + yyl882 := r.ReadArrayStart() + if yyl882 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl839, d) + x.codecDecodeSelfFromArray(yyl882, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12276,12 +12887,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys840Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys840Slc - var yyhl840 bool = l >= 0 - for yyj840 := 0; ; yyj840++ { - if yyhl840 { - if yyj840 >= l { + var yys883Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys883Slc + var yyhl883 bool = l >= 0 + for yyj883 := 0; ; yyj883++ { + if yyhl883 { + if yyj883 >= l { break } } else { @@ -12290,10 +12901,10 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys840Slc = r.DecodeBytes(yys840Slc, true, true) - yys840 := string(yys840Slc) + yys883Slc = r.DecodeBytes(yys883Slc, true, true) + yys883 := string(yys883Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys840 { + switch yys883 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -12304,12 +12915,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv842 := &x.Items - yym843 := z.DecBinary() - _ = yym843 + yyv885 := &x.Items + yym886 := z.DecBinary() + _ = yym886 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv842), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv885), d) } } case "defaultMode": @@ -12321,17 +12932,17 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym845 := z.DecBinary() - _ = yym845 + yym888 := z.DecBinary() + _ = yym888 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys840) - } // end switch yys840 - } // end for yyj840 + z.DecStructFieldNotFound(-1, yys883) + } // end switch yys883 + } // end for yyj883 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12339,16 +12950,16 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj846 int - var yyb846 bool - var yyhl846 bool = l >= 0 - yyj846++ - if yyhl846 { - yyb846 = yyj846 > l + var yyj889 int + var yyb889 bool + var yyhl889 bool = l >= 0 + yyj889++ + if yyhl889 { + yyb889 = yyj889 > l } else { - yyb846 = r.CheckBreak() + yyb889 = r.CheckBreak() } - if yyb846 { + if yyb889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12358,13 +12969,13 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretName = string(r.DecodeString()) } - yyj846++ - if yyhl846 { - yyb846 = yyj846 > l + yyj889++ + if yyhl889 { + yyb889 = yyj889 > l } else { - yyb846 = r.CheckBreak() + yyb889 = r.CheckBreak() } - if yyb846 { + if yyb889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12372,21 +12983,21 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv848 := &x.Items - yym849 := z.DecBinary() - _ = yym849 + yyv891 := &x.Items + yym892 := z.DecBinary() + _ = yym892 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv848), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv891), d) } } - yyj846++ - if yyhl846 { - yyb846 = yyj846 > l + yyj889++ + if yyhl889 { + yyb889 = yyj889 > l } else { - yyb846 = r.CheckBreak() + yyb889 = r.CheckBreak() } - if yyb846 { + if yyb889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12399,25 +13010,25 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym851 := z.DecBinary() - _ = yym851 + yym894 := z.DecBinary() + _ = yym894 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj846++ - if yyhl846 { - yyb846 = yyj846 > l + yyj889++ + if yyhl889 { + yyb889 = yyj889 > l } else { - yyb846 = r.CheckBreak() + yyb889 = r.CheckBreak() } - if yyb846 { + if yyb889 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj846-1, "") + z.DecStructFieldNotFound(yyj889-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12429,34 +13040,34 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym852 := z.EncBinary() - _ = yym852 + yym895 := z.EncBinary() + _ = yym895 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep853 := !z.EncBinary() - yy2arr853 := z.EncBasicHandle().StructToArray - var yyq853 [3]bool - _, _, _ = yysep853, yyq853, yy2arr853 - const yyr853 bool = false - yyq853[2] = x.ReadOnly != false - var yynn853 int - if yyr853 || yy2arr853 { + yysep896 := !z.EncBinary() + yy2arr896 := z.EncBasicHandle().StructToArray + var yyq896 [3]bool + _, _, _ = yysep896, yyq896, yy2arr896 + const yyr896 bool = false + yyq896[2] = x.ReadOnly != false + var yynn896 int + if yyr896 || yy2arr896 { r.EncodeArrayStart(3) } else { - yynn853 = 2 - for _, b := range yyq853 { + yynn896 = 2 + for _, b := range yyq896 { if b { - yynn853++ + yynn896++ } } - r.EncodeMapStart(yynn853) - yynn853 = 0 + r.EncodeMapStart(yynn896) + yynn896 = 0 } - if yyr853 || yy2arr853 { + if yyr896 || yy2arr896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym855 := z.EncBinary() - _ = yym855 + yym898 := z.EncBinary() + _ = yym898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) @@ -12465,17 +13076,17 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("server")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym856 := z.EncBinary() - _ = yym856 + yym899 := z.EncBinary() + _ = yym899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) } } - if yyr853 || yy2arr853 { + if yyr896 || yy2arr896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym858 := z.EncBinary() - _ = yym858 + yym901 := z.EncBinary() + _ = yym901 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -12484,18 +13095,18 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym859 := z.EncBinary() - _ = yym859 + yym902 := z.EncBinary() + _ = yym902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr853 || yy2arr853 { + if yyr896 || yy2arr896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq853[2] { - yym861 := z.EncBinary() - _ = yym861 + if yyq896[2] { + yym904 := z.EncBinary() + _ = yym904 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12504,19 +13115,19 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq853[2] { + if yyq896[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym862 := z.EncBinary() - _ = yym862 + yym905 := z.EncBinary() + _ = yym905 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr853 || yy2arr853 { + if yyr896 || yy2arr896 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12529,25 +13140,25 @@ func (x *NFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym863 := z.DecBinary() - _ = yym863 + yym906 := z.DecBinary() + _ = yym906 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct864 := r.ContainerType() - if yyct864 == codecSelferValueTypeMap1234 { - yyl864 := r.ReadMapStart() - if yyl864 == 0 { + yyct907 := r.ContainerType() + if yyct907 == codecSelferValueTypeMap1234 { + yyl907 := r.ReadMapStart() + if yyl907 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl864, d) + x.codecDecodeSelfFromMap(yyl907, d) } - } else if yyct864 == codecSelferValueTypeArray1234 { - yyl864 := r.ReadArrayStart() - if yyl864 == 0 { + } else if yyct907 == codecSelferValueTypeArray1234 { + yyl907 := r.ReadArrayStart() + if yyl907 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl864, d) + x.codecDecodeSelfFromArray(yyl907, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12559,12 +13170,12 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys865Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys865Slc - var yyhl865 bool = l >= 0 - for yyj865 := 0; ; yyj865++ { - if yyhl865 { - if yyj865 >= l { + var yys908Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys908Slc + var yyhl908 bool = l >= 0 + for yyj908 := 0; ; yyj908++ { + if yyhl908 { + if yyj908 >= l { break } } else { @@ -12573,10 +13184,10 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys865Slc = r.DecodeBytes(yys865Slc, true, true) - yys865 := string(yys865Slc) + yys908Slc = r.DecodeBytes(yys908Slc, true, true) + yys908 := string(yys908Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys865 { + switch yys908 { case "server": if r.TryDecodeAsNil() { x.Server = "" @@ -12596,9 +13207,9 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys865) - } // end switch yys865 - } // end for yyj865 + z.DecStructFieldNotFound(-1, yys908) + } // end switch yys908 + } // end for yyj908 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12606,16 +13217,16 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj869 int - var yyb869 bool - var yyhl869 bool = l >= 0 - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + var yyj912 int + var yyb912 bool + var yyhl912 bool = l >= 0 + yyj912++ + if yyhl912 { + yyb912 = yyj912 > l } else { - yyb869 = r.CheckBreak() + yyb912 = r.CheckBreak() } - if yyb869 { + if yyb912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12625,13 +13236,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Server = string(r.DecodeString()) } - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj912++ + if yyhl912 { + yyb912 = yyj912 > l } else { - yyb869 = r.CheckBreak() + yyb912 = r.CheckBreak() } - if yyb869 { + if yyb912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12641,13 +13252,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Path = string(r.DecodeString()) } - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj912++ + if yyhl912 { + yyb912 = yyj912 > l } else { - yyb869 = r.CheckBreak() + yyb912 = r.CheckBreak() } - if yyb869 { + if yyb912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12658,17 +13269,17 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj912++ + if yyhl912 { + yyb912 = yyj912 > l } else { - yyb869 = r.CheckBreak() + yyb912 = r.CheckBreak() } - if yyb869 { + if yyb912 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj869-1, "") + z.DecStructFieldNotFound(yyj912-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12680,36 +13291,36 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym873 := z.EncBinary() - _ = yym873 + yym916 := z.EncBinary() + _ = yym916 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep874 := !z.EncBinary() - yy2arr874 := z.EncBasicHandle().StructToArray - var yyq874 [6]bool - _, _, _ = yysep874, yyq874, yy2arr874 - const yyr874 bool = false - yyq874[3] = x.ISCSIInterface != "" - yyq874[4] = x.FSType != "" - yyq874[5] = x.ReadOnly != false - var yynn874 int - if yyr874 || yy2arr874 { + yysep917 := !z.EncBinary() + yy2arr917 := z.EncBasicHandle().StructToArray + var yyq917 [6]bool + _, _, _ = yysep917, yyq917, yy2arr917 + const yyr917 bool = false + yyq917[3] = x.ISCSIInterface != "" + yyq917[4] = x.FSType != "" + yyq917[5] = x.ReadOnly != false + var yynn917 int + if yyr917 || yy2arr917 { r.EncodeArrayStart(6) } else { - yynn874 = 3 - for _, b := range yyq874 { + yynn917 = 3 + for _, b := range yyq917 { if b { - yynn874++ + yynn917++ } } - r.EncodeMapStart(yynn874) - yynn874 = 0 + r.EncodeMapStart(yynn917) + yynn917 = 0 } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym876 := z.EncBinary() - _ = yym876 + yym919 := z.EncBinary() + _ = yym919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) @@ -12718,17 +13329,17 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPortal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym877 := z.EncBinary() - _ = yym877 + yym920 := z.EncBinary() + _ = yym920 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym879 := z.EncBinary() - _ = yym879 + yym922 := z.EncBinary() + _ = yym922 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) @@ -12737,17 +13348,17 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iqn")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym880 := z.EncBinary() - _ = yym880 + yym923 := z.EncBinary() + _ = yym923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym882 := z.EncBinary() - _ = yym882 + yym925 := z.EncBinary() + _ = yym925 if false { } else { r.EncodeInt(int64(x.Lun)) @@ -12756,18 +13367,18 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lun")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym883 := z.EncBinary() - _ = yym883 + yym926 := z.EncBinary() + _ = yym926 if false { } else { r.EncodeInt(int64(x.Lun)) } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[3] { - yym885 := z.EncBinary() - _ = yym885 + if yyq917[3] { + yym928 := z.EncBinary() + _ = yym928 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) @@ -12776,23 +13387,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq874[3] { + if yyq917[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsiInterface")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym886 := z.EncBinary() - _ = yym886 + yym929 := z.EncBinary() + _ = yym929 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) } } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[4] { - yym888 := z.EncBinary() - _ = yym888 + if yyq917[4] { + yym931 := z.EncBinary() + _ = yym931 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -12801,23 +13412,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq874[4] { + if yyq917[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym889 := z.EncBinary() - _ = yym889 + yym932 := z.EncBinary() + _ = yym932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[5] { - yym891 := z.EncBinary() - _ = yym891 + if yyq917[5] { + yym934 := z.EncBinary() + _ = yym934 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12826,19 +13437,19 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq874[5] { + if yyq917[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym892 := z.EncBinary() - _ = yym892 + yym935 := z.EncBinary() + _ = yym935 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr874 || yy2arr874 { + if yyr917 || yy2arr917 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12851,25 +13462,25 @@ func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym893 := z.DecBinary() - _ = yym893 + yym936 := z.DecBinary() + _ = yym936 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct894 := r.ContainerType() - if yyct894 == codecSelferValueTypeMap1234 { - yyl894 := r.ReadMapStart() - if yyl894 == 0 { + yyct937 := r.ContainerType() + if yyct937 == codecSelferValueTypeMap1234 { + yyl937 := r.ReadMapStart() + if yyl937 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl894, d) + x.codecDecodeSelfFromMap(yyl937, d) } - } else if yyct894 == codecSelferValueTypeArray1234 { - yyl894 := r.ReadArrayStart() - if yyl894 == 0 { + } else if yyct937 == codecSelferValueTypeArray1234 { + yyl937 := r.ReadArrayStart() + if yyl937 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl894, d) + x.codecDecodeSelfFromArray(yyl937, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12881,12 +13492,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys895Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys895Slc - var yyhl895 bool = l >= 0 - for yyj895 := 0; ; yyj895++ { - if yyhl895 { - if yyj895 >= l { + var yys938Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys938Slc + var yyhl938 bool = l >= 0 + for yyj938 := 0; ; yyj938++ { + if yyhl938 { + if yyj938 >= l { break } } else { @@ -12895,10 +13506,10 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys895Slc = r.DecodeBytes(yys895Slc, true, true) - yys895 := string(yys895Slc) + yys938Slc = r.DecodeBytes(yys938Slc, true, true) + yys938 := string(yys938Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys895 { + switch yys938 { case "targetPortal": if r.TryDecodeAsNil() { x.TargetPortal = "" @@ -12936,9 +13547,9 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys895) - } // end switch yys895 - } // end for yyj895 + z.DecStructFieldNotFound(-1, yys938) + } // end switch yys938 + } // end for yyj938 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12946,16 +13557,16 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj902 int - var yyb902 bool - var yyhl902 bool = l >= 0 - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + var yyj945 int + var yyb945 bool + var yyhl945 bool = l >= 0 + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12965,13 +13576,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.TargetPortal = string(r.DecodeString()) } - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12981,13 +13592,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.IQN = string(r.DecodeString()) } - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12997,13 +13608,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Lun = int32(r.DecodeInt(32)) } - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13013,13 +13624,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.ISCSIInterface = string(r.DecodeString()) } - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13029,13 +13640,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.FSType = string(r.DecodeString()) } - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13046,17 +13657,17 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.ReadOnly = bool(r.DecodeBool()) } for { - yyj902++ - if yyhl902 { - yyb902 = yyj902 > l + yyj945++ + if yyhl945 { + yyb945 = yyj945 > l } else { - yyb902 = r.CheckBreak() + yyb945 = r.CheckBreak() } - if yyb902 { + if yyb945 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj902-1, "") + z.DecStructFieldNotFound(yyj945-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13068,38 +13679,38 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym909 := z.EncBinary() - _ = yym909 + yym952 := z.EncBinary() + _ = yym952 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep910 := !z.EncBinary() - yy2arr910 := z.EncBasicHandle().StructToArray - var yyq910 [4]bool - _, _, _ = yysep910, yyq910, yy2arr910 - const yyr910 bool = false - yyq910[2] = x.FSType != "" - yyq910[3] = x.ReadOnly != false - var yynn910 int - if yyr910 || yy2arr910 { + yysep953 := !z.EncBinary() + yy2arr953 := z.EncBasicHandle().StructToArray + var yyq953 [4]bool + _, _, _ = yysep953, yyq953, yy2arr953 + const yyr953 bool = false + yyq953[2] = x.FSType != "" + yyq953[3] = x.ReadOnly != false + var yynn953 int + if yyr953 || yy2arr953 { r.EncodeArrayStart(4) } else { - yynn910 = 2 - for _, b := range yyq910 { + yynn953 = 2 + for _, b := range yyq953 { if b { - yynn910++ + yynn953++ } } - r.EncodeMapStart(yynn910) - yynn910 = 0 + r.EncodeMapStart(yynn953) + yynn953 = 0 } - if yyr910 || yy2arr910 { + if yyr953 || yy2arr953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetWWNs == nil { r.EncodeNil() } else { - yym912 := z.EncBinary() - _ = yym912 + yym955 := z.EncBinary() + _ = yym955 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) @@ -13112,25 +13723,25 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.TargetWWNs == nil { r.EncodeNil() } else { - yym913 := z.EncBinary() - _ = yym913 + yym956 := z.EncBinary() + _ = yym956 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) } } } - if yyr910 || yy2arr910 { + if yyr953 || yy2arr953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Lun == nil { r.EncodeNil() } else { - yy915 := *x.Lun - yym916 := z.EncBinary() - _ = yym916 + yy958 := *x.Lun + yym959 := z.EncBinary() + _ = yym959 if false { } else { - r.EncodeInt(int64(yy915)) + r.EncodeInt(int64(yy958)) } } } else { @@ -13140,20 +13751,20 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Lun == nil { r.EncodeNil() } else { - yy917 := *x.Lun - yym918 := z.EncBinary() - _ = yym918 + yy960 := *x.Lun + yym961 := z.EncBinary() + _ = yym961 if false { } else { - r.EncodeInt(int64(yy917)) + r.EncodeInt(int64(yy960)) } } } - if yyr910 || yy2arr910 { + if yyr953 || yy2arr953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq910[2] { - yym920 := z.EncBinary() - _ = yym920 + if yyq953[2] { + yym963 := z.EncBinary() + _ = yym963 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -13162,23 +13773,23 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq910[2] { + if yyq953[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym921 := z.EncBinary() - _ = yym921 + yym964 := z.EncBinary() + _ = yym964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr910 || yy2arr910 { + if yyr953 || yy2arr953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq910[3] { - yym923 := z.EncBinary() - _ = yym923 + if yyq953[3] { + yym966 := z.EncBinary() + _ = yym966 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13187,19 +13798,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq910[3] { + if yyq953[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym924 := z.EncBinary() - _ = yym924 + yym967 := z.EncBinary() + _ = yym967 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr910 || yy2arr910 { + if yyr953 || yy2arr953 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13212,25 +13823,25 @@ func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym925 := z.DecBinary() - _ = yym925 + yym968 := z.DecBinary() + _ = yym968 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct926 := r.ContainerType() - if yyct926 == codecSelferValueTypeMap1234 { - yyl926 := r.ReadMapStart() - if yyl926 == 0 { + yyct969 := r.ContainerType() + if yyct969 == codecSelferValueTypeMap1234 { + yyl969 := r.ReadMapStart() + if yyl969 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl926, d) + x.codecDecodeSelfFromMap(yyl969, d) } - } else if yyct926 == codecSelferValueTypeArray1234 { - yyl926 := r.ReadArrayStart() - if yyl926 == 0 { + } else if yyct969 == codecSelferValueTypeArray1234 { + yyl969 := r.ReadArrayStart() + if yyl969 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl926, d) + x.codecDecodeSelfFromArray(yyl969, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13242,12 +13853,12 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys927Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys927Slc - var yyhl927 bool = l >= 0 - for yyj927 := 0; ; yyj927++ { - if yyhl927 { - if yyj927 >= l { + var yys970Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys970Slc + var yyhl970 bool = l >= 0 + for yyj970 := 0; ; yyj970++ { + if yyhl970 { + if yyj970 >= l { break } } else { @@ -13256,20 +13867,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys927Slc = r.DecodeBytes(yys927Slc, true, true) - yys927 := string(yys927Slc) + yys970Slc = r.DecodeBytes(yys970Slc, true, true) + yys970 := string(yys970Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys927 { + switch yys970 { case "targetWWNs": if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv928 := &x.TargetWWNs - yym929 := z.DecBinary() - _ = yym929 + yyv971 := &x.TargetWWNs + yym972 := z.DecBinary() + _ = yym972 if false { } else { - z.F.DecSliceStringX(yyv928, false, d) + z.F.DecSliceStringX(yyv971, false, d) } } case "lun": @@ -13281,8 +13892,8 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym931 := z.DecBinary() - _ = yym931 + yym974 := z.DecBinary() + _ = yym974 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) @@ -13301,9 +13912,9 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys927) - } // end switch yys927 - } // end for yyj927 + z.DecStructFieldNotFound(-1, yys970) + } // end switch yys970 + } // end for yyj970 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13311,16 +13922,16 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj934 int - var yyb934 bool - var yyhl934 bool = l >= 0 - yyj934++ - if yyhl934 { - yyb934 = yyj934 > l + var yyj977 int + var yyb977 bool + var yyhl977 bool = l >= 0 + yyj977++ + if yyhl977 { + yyb977 = yyj977 > l } else { - yyb934 = r.CheckBreak() + yyb977 = r.CheckBreak() } - if yyb934 { + if yyb977 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13328,21 +13939,21 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv935 := &x.TargetWWNs - yym936 := z.DecBinary() - _ = yym936 + yyv978 := &x.TargetWWNs + yym979 := z.DecBinary() + _ = yym979 if false { } else { - z.F.DecSliceStringX(yyv935, false, d) + z.F.DecSliceStringX(yyv978, false, d) } } - yyj934++ - if yyhl934 { - yyb934 = yyj934 > l + yyj977++ + if yyhl977 { + yyb977 = yyj977 > l } else { - yyb934 = r.CheckBreak() + yyb977 = r.CheckBreak() } - if yyb934 { + if yyb977 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13355,20 +13966,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym938 := z.DecBinary() - _ = yym938 + yym981 := z.DecBinary() + _ = yym981 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) } } - yyj934++ - if yyhl934 { - yyb934 = yyj934 > l + yyj977++ + if yyhl977 { + yyb977 = yyj977 > l } else { - yyb934 = r.CheckBreak() + yyb977 = r.CheckBreak() } - if yyb934 { + if yyb977 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13378,13 +13989,13 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FSType = string(r.DecodeString()) } - yyj934++ - if yyhl934 { - yyb934 = yyj934 > l + yyj977++ + if yyhl977 { + yyb977 = yyj977 > l } else { - yyb934 = r.CheckBreak() + yyb977 = r.CheckBreak() } - if yyb934 { + if yyb977 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13395,17 +14006,17 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } for { - yyj934++ - if yyhl934 { - yyb934 = yyj934 > l + yyj977++ + if yyhl977 { + yyb977 = yyj977 > l } else { - yyb934 = r.CheckBreak() + yyb977 = r.CheckBreak() } - if yyb934 { + if yyb977 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj934-1, "") + z.DecStructFieldNotFound(yyj977-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13417,34 +14028,34 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym941 := z.EncBinary() - _ = yym941 + yym984 := z.EncBinary() + _ = yym984 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep942 := !z.EncBinary() - yy2arr942 := z.EncBasicHandle().StructToArray - var yyq942 [3]bool - _, _, _ = yysep942, yyq942, yy2arr942 - const yyr942 bool = false - yyq942[2] = x.ReadOnly != false - var yynn942 int - if yyr942 || yy2arr942 { + yysep985 := !z.EncBinary() + yy2arr985 := z.EncBasicHandle().StructToArray + var yyq985 [3]bool + _, _, _ = yysep985, yyq985, yy2arr985 + const yyr985 bool = false + yyq985[2] = x.ReadOnly != false + var yynn985 int + if yyr985 || yy2arr985 { r.EncodeArrayStart(3) } else { - yynn942 = 2 - for _, b := range yyq942 { + yynn985 = 2 + for _, b := range yyq985 { if b { - yynn942++ + yynn985++ } } - r.EncodeMapStart(yynn942) - yynn942 = 0 + r.EncodeMapStart(yynn985) + yynn985 = 0 } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym944 := z.EncBinary() - _ = yym944 + yym987 := z.EncBinary() + _ = yym987 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -13453,17 +14064,17 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym945 := z.EncBinary() - _ = yym945 + yym988 := z.EncBinary() + _ = yym988 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym947 := z.EncBinary() - _ = yym947 + yym990 := z.EncBinary() + _ = yym990 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) @@ -13472,18 +14083,18 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("shareName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym948 := z.EncBinary() - _ = yym948 + yym991 := z.EncBinary() + _ = yym991 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) } } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq942[2] { - yym950 := z.EncBinary() - _ = yym950 + if yyq985[2] { + yym993 := z.EncBinary() + _ = yym993 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13492,19 +14103,19 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq942[2] { + if yyq985[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym951 := z.EncBinary() - _ = yym951 + yym994 := z.EncBinary() + _ = yym994 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr942 || yy2arr942 { + if yyr985 || yy2arr985 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13517,25 +14128,25 @@ func (x *AzureFileVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym952 := z.DecBinary() - _ = yym952 + yym995 := z.DecBinary() + _ = yym995 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct953 := r.ContainerType() - if yyct953 == codecSelferValueTypeMap1234 { - yyl953 := r.ReadMapStart() - if yyl953 == 0 { + yyct996 := r.ContainerType() + if yyct996 == codecSelferValueTypeMap1234 { + yyl996 := r.ReadMapStart() + if yyl996 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl953, d) + x.codecDecodeSelfFromMap(yyl996, d) } - } else if yyct953 == codecSelferValueTypeArray1234 { - yyl953 := r.ReadArrayStart() - if yyl953 == 0 { + } else if yyct996 == codecSelferValueTypeArray1234 { + yyl996 := r.ReadArrayStart() + if yyl996 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl953, d) + x.codecDecodeSelfFromArray(yyl996, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13547,12 +14158,12 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys954Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys954Slc - var yyhl954 bool = l >= 0 - for yyj954 := 0; ; yyj954++ { - if yyhl954 { - if yyj954 >= l { + var yys997Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys997Slc + var yyhl997 bool = l >= 0 + for yyj997 := 0; ; yyj997++ { + if yyhl997 { + if yyj997 >= l { break } } else { @@ -13561,10 +14172,10 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys954Slc = r.DecodeBytes(yys954Slc, true, true) - yys954 := string(yys954Slc) + yys997Slc = r.DecodeBytes(yys997Slc, true, true) + yys997 := string(yys997Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys954 { + switch yys997 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -13584,9 +14195,9 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys954) - } // end switch yys954 - } // end for yyj954 + z.DecStructFieldNotFound(-1, yys997) + } // end switch yys997 + } // end for yyj997 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13594,16 +14205,16 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj958 int - var yyb958 bool - var yyhl958 bool = l >= 0 - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + var yyj1001 int + var yyb1001 bool + var yyhl1001 bool = l >= 0 + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13613,13 +14224,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.SecretName = string(r.DecodeString()) } - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13629,13 +14240,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ShareName = string(r.DecodeString()) } - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13646,17 +14257,17 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj958++ - if yyhl958 { - yyb958 = yyj958 > l + yyj1001++ + if yyhl1001 { + yyb1001 = yyj1001 > l } else { - yyb958 = r.CheckBreak() + yyb1001 = r.CheckBreak() } - if yyb958 { + if yyb1001 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj958-1, "") + z.DecStructFieldNotFound(yyj1001-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13668,34 +14279,34 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym962 := z.EncBinary() - _ = yym962 + yym1005 := z.EncBinary() + _ = yym1005 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep963 := !z.EncBinary() - yy2arr963 := z.EncBasicHandle().StructToArray - var yyq963 [2]bool - _, _, _ = yysep963, yyq963, yy2arr963 - const yyr963 bool = false - yyq963[1] = x.FSType != "" - var yynn963 int - if yyr963 || yy2arr963 { + yysep1006 := !z.EncBinary() + yy2arr1006 := z.EncBasicHandle().StructToArray + var yyq1006 [2]bool + _, _, _ = yysep1006, yyq1006, yy2arr1006 + const yyr1006 bool = false + yyq1006[1] = x.FSType != "" + var yynn1006 int + if yyr1006 || yy2arr1006 { r.EncodeArrayStart(2) } else { - yynn963 = 1 - for _, b := range yyq963 { + yynn1006 = 1 + for _, b := range yyq1006 { if b { - yynn963++ + yynn1006++ } } - r.EncodeMapStart(yynn963) - yynn963 = 0 + r.EncodeMapStart(yynn1006) + yynn1006 = 0 } - if yyr963 || yy2arr963 { + if yyr1006 || yy2arr1006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym965 := z.EncBinary() - _ = yym965 + yym1008 := z.EncBinary() + _ = yym1008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) @@ -13704,18 +14315,18 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym966 := z.EncBinary() - _ = yym966 + yym1009 := z.EncBinary() + _ = yym1009 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) } } - if yyr963 || yy2arr963 { + if yyr1006 || yy2arr1006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq963[1] { - yym968 := z.EncBinary() - _ = yym968 + if yyq1006[1] { + yym1011 := z.EncBinary() + _ = yym1011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -13724,19 +14335,19 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq963[1] { + if yyq1006[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym969 := z.EncBinary() - _ = yym969 + yym1012 := z.EncBinary() + _ = yym1012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr963 || yy2arr963 { + if yyr1006 || yy2arr1006 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13749,25 +14360,25 @@ func (x *VsphereVirtualDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym970 := z.DecBinary() - _ = yym970 + yym1013 := z.DecBinary() + _ = yym1013 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct971 := r.ContainerType() - if yyct971 == codecSelferValueTypeMap1234 { - yyl971 := r.ReadMapStart() - if yyl971 == 0 { + yyct1014 := r.ContainerType() + if yyct1014 == codecSelferValueTypeMap1234 { + yyl1014 := r.ReadMapStart() + if yyl1014 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl971, d) + x.codecDecodeSelfFromMap(yyl1014, d) } - } else if yyct971 == codecSelferValueTypeArray1234 { - yyl971 := r.ReadArrayStart() - if yyl971 == 0 { + } else if yyct1014 == codecSelferValueTypeArray1234 { + yyl1014 := r.ReadArrayStart() + if yyl1014 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl971, d) + x.codecDecodeSelfFromArray(yyl1014, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13779,12 +14390,12 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys972Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys972Slc - var yyhl972 bool = l >= 0 - for yyj972 := 0; ; yyj972++ { - if yyhl972 { - if yyj972 >= l { + var yys1015Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1015Slc + var yyhl1015 bool = l >= 0 + for yyj1015 := 0; ; yyj1015++ { + if yyhl1015 { + if yyj1015 >= l { break } } else { @@ -13793,10 +14404,10 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys972Slc = r.DecodeBytes(yys972Slc, true, true) - yys972 := string(yys972Slc) + yys1015Slc = r.DecodeBytes(yys1015Slc, true, true) + yys1015 := string(yys1015Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys972 { + switch yys1015 { case "volumePath": if r.TryDecodeAsNil() { x.VolumePath = "" @@ -13810,9 +14421,9 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 x.FSType = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys972) - } // end switch yys972 - } // end for yyj972 + z.DecStructFieldNotFound(-1, yys1015) + } // end switch yys1015 + } // end for yyj1015 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13820,16 +14431,16 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj975 int - var yyb975 bool - var yyhl975 bool = l >= 0 - yyj975++ - if yyhl975 { - yyb975 = yyj975 > l + var yyj1018 int + var yyb1018 bool + var yyhl1018 bool = l >= 0 + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb975 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb975 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13839,13 +14450,13 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code } else { x.VolumePath = string(r.DecodeString()) } - yyj975++ - if yyhl975 { - yyb975 = yyj975 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb975 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb975 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13856,17 +14467,17 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code x.FSType = string(r.DecodeString()) } for { - yyj975++ - if yyhl975 { - yyb975 = yyj975 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb975 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb975 { + if yyb1018 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj975-1, "") + z.DecStructFieldNotFound(yyj1018-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13878,37 +14489,37 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym978 := z.EncBinary() - _ = yym978 + yym1021 := z.EncBinary() + _ = yym1021 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep979 := !z.EncBinary() - yy2arr979 := z.EncBasicHandle().StructToArray - var yyq979 [3]bool - _, _, _ = yysep979, yyq979, yy2arr979 - const yyr979 bool = false - yyq979[0] = x.Name != "" - yyq979[1] = len(x.Items) != 0 - yyq979[2] = x.DefaultMode != nil - var yynn979 int - if yyr979 || yy2arr979 { + yysep1022 := !z.EncBinary() + yy2arr1022 := z.EncBasicHandle().StructToArray + var yyq1022 [3]bool + _, _, _ = yysep1022, yyq1022, yy2arr1022 + const yyr1022 bool = false + yyq1022[0] = x.Name != "" + yyq1022[1] = len(x.Items) != 0 + yyq1022[2] = x.DefaultMode != nil + var yynn1022 int + if yyr1022 || yy2arr1022 { r.EncodeArrayStart(3) } else { - yynn979 = 0 - for _, b := range yyq979 { + yynn1022 = 0 + for _, b := range yyq1022 { if b { - yynn979++ + yynn1022++ } } - r.EncodeMapStart(yynn979) - yynn979 = 0 + r.EncodeMapStart(yynn1022) + yynn1022 = 0 } - if yyr979 || yy2arr979 { + if yyr1022 || yy2arr1022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq979[0] { - yym981 := z.EncBinary() - _ = yym981 + if yyq1022[0] { + yym1024 := z.EncBinary() + _ = yym1024 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -13917,26 +14528,26 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq979[0] { + if yyq1022[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym982 := z.EncBinary() - _ = yym982 + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr979 || yy2arr979 { + if yyr1022 || yy2arr1022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq979[1] { + if yyq1022[1] { if x.Items == nil { r.EncodeNil() } else { - yym984 := z.EncBinary() - _ = yym984 + yym1027 := z.EncBinary() + _ = yym1027 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -13946,15 +14557,15 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq979[1] { + if yyq1022[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym985 := z.EncBinary() - _ = yym985 + yym1028 := z.EncBinary() + _ = yym1028 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -13962,42 +14573,42 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr979 || yy2arr979 { + if yyr1022 || yy2arr1022 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq979[2] { + if yyq1022[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy987 := *x.DefaultMode - yym988 := z.EncBinary() - _ = yym988 + yy1030 := *x.DefaultMode + yym1031 := z.EncBinary() + _ = yym1031 if false { } else { - r.EncodeInt(int64(yy987)) + r.EncodeInt(int64(yy1030)) } } } else { r.EncodeNil() } } else { - if yyq979[2] { + if yyq1022[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy989 := *x.DefaultMode - yym990 := z.EncBinary() - _ = yym990 + yy1032 := *x.DefaultMode + yym1033 := z.EncBinary() + _ = yym1033 if false { } else { - r.EncodeInt(int64(yy989)) + r.EncodeInt(int64(yy1032)) } } } } - if yyr979 || yy2arr979 { + if yyr1022 || yy2arr1022 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14010,25 +14621,25 @@ func (x *ConfigMapVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym991 := z.DecBinary() - _ = yym991 + yym1034 := z.DecBinary() + _ = yym1034 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct992 := r.ContainerType() - if yyct992 == codecSelferValueTypeMap1234 { - yyl992 := r.ReadMapStart() - if yyl992 == 0 { + yyct1035 := r.ContainerType() + if yyct1035 == codecSelferValueTypeMap1234 { + yyl1035 := r.ReadMapStart() + if yyl1035 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl992, d) + x.codecDecodeSelfFromMap(yyl1035, d) } - } else if yyct992 == codecSelferValueTypeArray1234 { - yyl992 := r.ReadArrayStart() - if yyl992 == 0 { + } else if yyct1035 == codecSelferValueTypeArray1234 { + yyl1035 := r.ReadArrayStart() + if yyl1035 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl992, d) + x.codecDecodeSelfFromArray(yyl1035, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14040,12 +14651,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys993Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys993Slc - var yyhl993 bool = l >= 0 - for yyj993 := 0; ; yyj993++ { - if yyhl993 { - if yyj993 >= l { + var yys1036Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1036Slc + var yyhl1036 bool = l >= 0 + for yyj1036 := 0; ; yyj1036++ { + if yyhl1036 { + if yyj1036 >= l { break } } else { @@ -14054,10 +14665,10 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys993Slc = r.DecodeBytes(yys993Slc, true, true) - yys993 := string(yys993Slc) + yys1036Slc = r.DecodeBytes(yys1036Slc, true, true) + yys1036 := string(yys1036Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys993 { + switch yys1036 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -14068,12 +14679,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv995 := &x.Items - yym996 := z.DecBinary() - _ = yym996 + yyv1038 := &x.Items + yym1039 := z.DecBinary() + _ = yym1039 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv995), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1038), d) } } case "defaultMode": @@ -14085,17 +14696,17 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym998 := z.DecBinary() - _ = yym998 + yym1041 := z.DecBinary() + _ = yym1041 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys993) - } // end switch yys993 - } // end for yyj993 + z.DecStructFieldNotFound(-1, yys1036) + } // end switch yys1036 + } // end for yyj1036 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14103,16 +14714,16 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj999 int - var yyb999 bool - var yyhl999 bool = l >= 0 - yyj999++ - if yyhl999 { - yyb999 = yyj999 > l + var yyj1042 int + var yyb1042 bool + var yyhl1042 bool = l >= 0 + yyj1042++ + if yyhl1042 { + yyb1042 = yyj1042 > l } else { - yyb999 = r.CheckBreak() + yyb1042 = r.CheckBreak() } - if yyb999 { + if yyb1042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14122,13 +14733,13 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Name = string(r.DecodeString()) } - yyj999++ - if yyhl999 { - yyb999 = yyj999 > l + yyj1042++ + if yyhl1042 { + yyb1042 = yyj1042 > l } else { - yyb999 = r.CheckBreak() + yyb1042 = r.CheckBreak() } - if yyb999 { + if yyb1042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14136,21 +14747,21 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1001 := &x.Items - yym1002 := z.DecBinary() - _ = yym1002 + yyv1044 := &x.Items + yym1045 := z.DecBinary() + _ = yym1045 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1001), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1044), d) } } - yyj999++ - if yyhl999 { - yyb999 = yyj999 > l + yyj1042++ + if yyhl1042 { + yyb1042 = yyj1042 > l } else { - yyb999 = r.CheckBreak() + yyb1042 = r.CheckBreak() } - if yyb999 { + if yyb1042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14163,25 +14774,25 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1004 := z.DecBinary() - _ = yym1004 + yym1047 := z.DecBinary() + _ = yym1047 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj999++ - if yyhl999 { - yyb999 = yyj999 > l + yyj1042++ + if yyhl1042 { + yyb1042 = yyj1042 > l } else { - yyb999 = r.CheckBreak() + yyb1042 = r.CheckBreak() } - if yyb999 { + if yyb1042 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj999-1, "") + z.DecStructFieldNotFound(yyj1042-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14193,34 +14804,34 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1005 := z.EncBinary() - _ = yym1005 + yym1048 := z.EncBinary() + _ = yym1048 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1006 := !z.EncBinary() - yy2arr1006 := z.EncBasicHandle().StructToArray - var yyq1006 [3]bool - _, _, _ = yysep1006, yyq1006, yy2arr1006 - const yyr1006 bool = false - yyq1006[2] = x.Mode != nil - var yynn1006 int - if yyr1006 || yy2arr1006 { + yysep1049 := !z.EncBinary() + yy2arr1049 := z.EncBasicHandle().StructToArray + var yyq1049 [3]bool + _, _, _ = yysep1049, yyq1049, yy2arr1049 + const yyr1049 bool = false + yyq1049[2] = x.Mode != nil + var yynn1049 int + if yyr1049 || yy2arr1049 { r.EncodeArrayStart(3) } else { - yynn1006 = 2 - for _, b := range yyq1006 { + yynn1049 = 2 + for _, b := range yyq1049 { if b { - yynn1006++ + yynn1049++ } } - r.EncodeMapStart(yynn1006) - yynn1006 = 0 + r.EncodeMapStart(yynn1049) + yynn1049 = 0 } - if yyr1006 || yy2arr1006 { + if yyr1049 || yy2arr1049 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1008 := z.EncBinary() - _ = yym1008 + yym1051 := z.EncBinary() + _ = yym1051 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -14229,17 +14840,17 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1009 := z.EncBinary() - _ = yym1009 + yym1052 := z.EncBinary() + _ = yym1052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1006 || yy2arr1006 { + if yyr1049 || yy2arr1049 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1011 := z.EncBinary() - _ = yym1011 + yym1054 := z.EncBinary() + _ = yym1054 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -14248,49 +14859,49 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1012 := z.EncBinary() - _ = yym1012 + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr1006 || yy2arr1006 { + if yyr1049 || yy2arr1049 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1006[2] { + if yyq1049[2] { if x.Mode == nil { r.EncodeNil() } else { - yy1014 := *x.Mode - yym1015 := z.EncBinary() - _ = yym1015 + yy1057 := *x.Mode + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { - r.EncodeInt(int64(yy1014)) + r.EncodeInt(int64(yy1057)) } } } else { r.EncodeNil() } } else { - if yyq1006[2] { + if yyq1049[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy1016 := *x.Mode - yym1017 := z.EncBinary() - _ = yym1017 + yy1059 := *x.Mode + yym1060 := z.EncBinary() + _ = yym1060 if false { } else { - r.EncodeInt(int64(yy1016)) + r.EncodeInt(int64(yy1059)) } } } } - if yyr1006 || yy2arr1006 { + if yyr1049 || yy2arr1049 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14303,25 +14914,25 @@ func (x *KeyToPath) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1018 := z.DecBinary() - _ = yym1018 + yym1061 := z.DecBinary() + _ = yym1061 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1019 := r.ContainerType() - if yyct1019 == codecSelferValueTypeMap1234 { - yyl1019 := r.ReadMapStart() - if yyl1019 == 0 { + yyct1062 := r.ContainerType() + if yyct1062 == codecSelferValueTypeMap1234 { + yyl1062 := r.ReadMapStart() + if yyl1062 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1019, d) + x.codecDecodeSelfFromMap(yyl1062, d) } - } else if yyct1019 == codecSelferValueTypeArray1234 { - yyl1019 := r.ReadArrayStart() - if yyl1019 == 0 { + } else if yyct1062 == codecSelferValueTypeArray1234 { + yyl1062 := r.ReadArrayStart() + if yyl1062 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1019, d) + x.codecDecodeSelfFromArray(yyl1062, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14333,12 +14944,12 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1020Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1020Slc - var yyhl1020 bool = l >= 0 - for yyj1020 := 0; ; yyj1020++ { - if yyhl1020 { - if yyj1020 >= l { + var yys1063Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1063Slc + var yyhl1063 bool = l >= 0 + for yyj1063 := 0; ; yyj1063++ { + if yyhl1063 { + if yyj1063 >= l { break } } else { @@ -14347,10 +14958,10 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1020Slc = r.DecodeBytes(yys1020Slc, true, true) - yys1020 := string(yys1020Slc) + yys1063Slc = r.DecodeBytes(yys1063Slc, true, true) + yys1063 := string(yys1063Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1020 { + switch yys1063 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -14372,17 +14983,17 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1024 := z.DecBinary() - _ = yym1024 + yym1067 := z.DecBinary() + _ = yym1067 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1020) - } // end switch yys1020 - } // end for yyj1020 + z.DecStructFieldNotFound(-1, yys1063) + } // end switch yys1063 + } // end for yyj1063 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14390,16 +15001,16 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1025 int - var yyb1025 bool - var yyhl1025 bool = l >= 0 - yyj1025++ - if yyhl1025 { - yyb1025 = yyj1025 > l + var yyj1068 int + var yyb1068 bool + var yyhl1068 bool = l >= 0 + yyj1068++ + if yyhl1068 { + yyb1068 = yyj1068 > l } else { - yyb1025 = r.CheckBreak() + yyb1068 = r.CheckBreak() } - if yyb1025 { + if yyb1068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14409,13 +15020,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1025++ - if yyhl1025 { - yyb1025 = yyj1025 > l + yyj1068++ + if yyhl1068 { + yyb1068 = yyj1068 > l } else { - yyb1025 = r.CheckBreak() + yyb1068 = r.CheckBreak() } - if yyb1025 { + if yyb1068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14425,13 +15036,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1025++ - if yyhl1025 { - yyb1025 = yyj1025 > l + yyj1068++ + if yyhl1068 { + yyb1068 = yyj1068 > l } else { - yyb1025 = r.CheckBreak() + yyb1068 = r.CheckBreak() } - if yyb1025 { + if yyb1068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14444,25 +15055,25 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1029 := z.DecBinary() - _ = yym1029 + yym1072 := z.DecBinary() + _ = yym1072 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj1025++ - if yyhl1025 { - yyb1025 = yyj1025 > l + yyj1068++ + if yyhl1068 { + yyb1068 = yyj1068 > l } else { - yyb1025 = r.CheckBreak() + yyb1068 = r.CheckBreak() } - if yyb1025 { + if yyb1068 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1025-1, "") + z.DecStructFieldNotFound(yyj1068-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14474,38 +15085,38 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1030 := z.EncBinary() - _ = yym1030 + yym1073 := z.EncBinary() + _ = yym1073 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1031 := !z.EncBinary() - yy2arr1031 := z.EncBasicHandle().StructToArray - var yyq1031 [5]bool - _, _, _ = yysep1031, yyq1031, yy2arr1031 - const yyr1031 bool = false - yyq1031[0] = x.Name != "" - yyq1031[1] = x.HostPort != 0 - yyq1031[3] = x.Protocol != "" - yyq1031[4] = x.HostIP != "" - var yynn1031 int - if yyr1031 || yy2arr1031 { + yysep1074 := !z.EncBinary() + yy2arr1074 := z.EncBasicHandle().StructToArray + var yyq1074 [5]bool + _, _, _ = yysep1074, yyq1074, yy2arr1074 + const yyr1074 bool = false + yyq1074[0] = x.Name != "" + yyq1074[1] = x.HostPort != 0 + yyq1074[3] = x.Protocol != "" + yyq1074[4] = x.HostIP != "" + var yynn1074 int + if yyr1074 || yy2arr1074 { r.EncodeArrayStart(5) } else { - yynn1031 = 1 - for _, b := range yyq1031 { + yynn1074 = 1 + for _, b := range yyq1074 { if b { - yynn1031++ + yynn1074++ } } - r.EncodeMapStart(yynn1031) - yynn1031 = 0 + r.EncodeMapStart(yynn1074) + yynn1074 = 0 } - if yyr1031 || yy2arr1031 { + if yyr1074 || yy2arr1074 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1031[0] { - yym1033 := z.EncBinary() - _ = yym1033 + if yyq1074[0] { + yym1076 := z.EncBinary() + _ = yym1076 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -14514,23 +15125,23 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1031[0] { + if yyq1074[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1034 := z.EncBinary() - _ = yym1034 + yym1077 := z.EncBinary() + _ = yym1077 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1031 || yy2arr1031 { + if yyr1074 || yy2arr1074 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1031[1] { - yym1036 := z.EncBinary() - _ = yym1036 + if yyq1074[1] { + yym1079 := z.EncBinary() + _ = yym1079 if false { } else { r.EncodeInt(int64(x.HostPort)) @@ -14539,22 +15150,22 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1031[1] { + if yyq1074[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1037 := z.EncBinary() - _ = yym1037 + yym1080 := z.EncBinary() + _ = yym1080 if false { } else { r.EncodeInt(int64(x.HostPort)) } } } - if yyr1031 || yy2arr1031 { + if yyr1074 || yy2arr1074 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1039 := z.EncBinary() - _ = yym1039 + yym1082 := z.EncBinary() + _ = yym1082 if false { } else { r.EncodeInt(int64(x.ContainerPort)) @@ -14563,33 +15174,33 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1040 := z.EncBinary() - _ = yym1040 + yym1083 := z.EncBinary() + _ = yym1083 if false { } else { r.EncodeInt(int64(x.ContainerPort)) } } - if yyr1031 || yy2arr1031 { + if yyr1074 || yy2arr1074 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1031[3] { + if yyq1074[3] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1031[3] { + if yyq1074[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr1031 || yy2arr1031 { + if yyr1074 || yy2arr1074 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1031[4] { - yym1043 := z.EncBinary() - _ = yym1043 + if yyq1074[4] { + yym1086 := z.EncBinary() + _ = yym1086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -14598,19 +15209,19 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1031[4] { + if yyq1074[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1044 := z.EncBinary() - _ = yym1044 + yym1087 := z.EncBinary() + _ = yym1087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1031 || yy2arr1031 { + if yyr1074 || yy2arr1074 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14623,25 +15234,25 @@ func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1045 := z.DecBinary() - _ = yym1045 + yym1088 := z.DecBinary() + _ = yym1088 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1046 := r.ContainerType() - if yyct1046 == codecSelferValueTypeMap1234 { - yyl1046 := r.ReadMapStart() - if yyl1046 == 0 { + yyct1089 := r.ContainerType() + if yyct1089 == codecSelferValueTypeMap1234 { + yyl1089 := r.ReadMapStart() + if yyl1089 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1046, d) + x.codecDecodeSelfFromMap(yyl1089, d) } - } else if yyct1046 == codecSelferValueTypeArray1234 { - yyl1046 := r.ReadArrayStart() - if yyl1046 == 0 { + } else if yyct1089 == codecSelferValueTypeArray1234 { + yyl1089 := r.ReadArrayStart() + if yyl1089 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1046, d) + x.codecDecodeSelfFromArray(yyl1089, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14653,12 +15264,12 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1047Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1047Slc - var yyhl1047 bool = l >= 0 - for yyj1047 := 0; ; yyj1047++ { - if yyhl1047 { - if yyj1047 >= l { + var yys1090Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1090Slc + var yyhl1090 bool = l >= 0 + for yyj1090 := 0; ; yyj1090++ { + if yyhl1090 { + if yyj1090 >= l { break } } else { @@ -14667,10 +15278,10 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1047Slc = r.DecodeBytes(yys1047Slc, true, true) - yys1047 := string(yys1047Slc) + yys1090Slc = r.DecodeBytes(yys1090Slc, true, true) + yys1090 := string(yys1090Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1047 { + switch yys1090 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -14702,9 +15313,9 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1047) - } // end switch yys1047 - } // end for yyj1047 + z.DecStructFieldNotFound(-1, yys1090) + } // end switch yys1090 + } // end for yyj1090 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14712,16 +15323,16 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1053 int - var yyb1053 bool - var yyhl1053 bool = l >= 0 - yyj1053++ - if yyhl1053 { - yyb1053 = yyj1053 > l + var yyj1096 int + var yyb1096 bool + var yyhl1096 bool = l >= 0 + yyj1096++ + if yyhl1096 { + yyb1096 = yyj1096 > l } else { - yyb1053 = r.CheckBreak() + yyb1096 = r.CheckBreak() } - if yyb1053 { + if yyb1096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14731,13 +15342,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1053++ - if yyhl1053 { - yyb1053 = yyj1053 > l + yyj1096++ + if yyhl1096 { + yyb1096 = yyj1096 > l } else { - yyb1053 = r.CheckBreak() + yyb1096 = r.CheckBreak() } - if yyb1053 { + if yyb1096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14747,13 +15358,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPort = int32(r.DecodeInt(32)) } - yyj1053++ - if yyhl1053 { - yyb1053 = yyj1053 > l + yyj1096++ + if yyhl1096 { + yyb1096 = yyj1096 > l } else { - yyb1053 = r.CheckBreak() + yyb1096 = r.CheckBreak() } - if yyb1053 { + if yyb1096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14763,13 +15374,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerPort = int32(r.DecodeInt(32)) } - yyj1053++ - if yyhl1053 { - yyb1053 = yyj1053 > l + yyj1096++ + if yyhl1096 { + yyb1096 = yyj1096 > l } else { - yyb1053 = r.CheckBreak() + yyb1096 = r.CheckBreak() } - if yyb1053 { + if yyb1096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14779,13 +15390,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1053++ - if yyhl1053 { - yyb1053 = yyj1053 > l + yyj1096++ + if yyhl1096 { + yyb1096 = yyj1096 > l } else { - yyb1053 = r.CheckBreak() + yyb1096 = r.CheckBreak() } - if yyb1053 { + if yyb1096 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14796,17 +15407,17 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } for { - yyj1053++ - if yyhl1053 { - yyb1053 = yyj1053 > l + yyj1096++ + if yyhl1096 { + yyb1096 = yyj1096 > l } else { - yyb1053 = r.CheckBreak() + yyb1096 = r.CheckBreak() } - if yyb1053 { + if yyb1096 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1053-1, "") + z.DecStructFieldNotFound(yyj1096-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14818,35 +15429,35 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1059 := z.EncBinary() - _ = yym1059 + yym1102 := z.EncBinary() + _ = yym1102 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1060 := !z.EncBinary() - yy2arr1060 := z.EncBasicHandle().StructToArray - var yyq1060 [4]bool - _, _, _ = yysep1060, yyq1060, yy2arr1060 - const yyr1060 bool = false - yyq1060[1] = x.ReadOnly != false - yyq1060[3] = x.SubPath != "" - var yynn1060 int - if yyr1060 || yy2arr1060 { + yysep1103 := !z.EncBinary() + yy2arr1103 := z.EncBasicHandle().StructToArray + var yyq1103 [4]bool + _, _, _ = yysep1103, yyq1103, yy2arr1103 + const yyr1103 bool = false + yyq1103[1] = x.ReadOnly != false + yyq1103[3] = x.SubPath != "" + var yynn1103 int + if yyr1103 || yy2arr1103 { r.EncodeArrayStart(4) } else { - yynn1060 = 2 - for _, b := range yyq1060 { + yynn1103 = 2 + for _, b := range yyq1103 { if b { - yynn1060++ + yynn1103++ } } - r.EncodeMapStart(yynn1060) - yynn1060 = 0 + r.EncodeMapStart(yynn1103) + yynn1103 = 0 } - if yyr1060 || yy2arr1060 { + if yyr1103 || yy2arr1103 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1062 := z.EncBinary() - _ = yym1062 + yym1105 := z.EncBinary() + _ = yym1105 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -14855,18 +15466,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1063 := z.EncBinary() - _ = yym1063 + yym1106 := z.EncBinary() + _ = yym1106 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1060 || yy2arr1060 { + if yyr1103 || yy2arr1103 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1060[1] { - yym1065 := z.EncBinary() - _ = yym1065 + if yyq1103[1] { + yym1108 := z.EncBinary() + _ = yym1108 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -14875,22 +15486,22 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1060[1] { + if yyq1103[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1066 := z.EncBinary() - _ = yym1066 + yym1109 := z.EncBinary() + _ = yym1109 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr1060 || yy2arr1060 { + if yyr1103 || yy2arr1103 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1068 := z.EncBinary() - _ = yym1068 + yym1111 := z.EncBinary() + _ = yym1111 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) @@ -14899,18 +15510,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mountPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1069 := z.EncBinary() - _ = yym1069 + yym1112 := z.EncBinary() + _ = yym1112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) } } - if yyr1060 || yy2arr1060 { + if yyr1103 || yy2arr1103 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1060[3] { - yym1071 := z.EncBinary() - _ = yym1071 + if yyq1103[3] { + yym1114 := z.EncBinary() + _ = yym1114 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) @@ -14919,19 +15530,19 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1060[3] { + if yyq1103[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1072 := z.EncBinary() - _ = yym1072 + yym1115 := z.EncBinary() + _ = yym1115 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) } } } - if yyr1060 || yy2arr1060 { + if yyr1103 || yy2arr1103 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14944,25 +15555,25 @@ func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1073 := z.DecBinary() - _ = yym1073 + yym1116 := z.DecBinary() + _ = yym1116 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1074 := r.ContainerType() - if yyct1074 == codecSelferValueTypeMap1234 { - yyl1074 := r.ReadMapStart() - if yyl1074 == 0 { + yyct1117 := r.ContainerType() + if yyct1117 == codecSelferValueTypeMap1234 { + yyl1117 := r.ReadMapStart() + if yyl1117 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1074, d) + x.codecDecodeSelfFromMap(yyl1117, d) } - } else if yyct1074 == codecSelferValueTypeArray1234 { - yyl1074 := r.ReadArrayStart() - if yyl1074 == 0 { + } else if yyct1117 == codecSelferValueTypeArray1234 { + yyl1117 := r.ReadArrayStart() + if yyl1117 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1074, d) + x.codecDecodeSelfFromArray(yyl1117, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14974,12 +15585,12 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1075Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1075Slc - var yyhl1075 bool = l >= 0 - for yyj1075 := 0; ; yyj1075++ { - if yyhl1075 { - if yyj1075 >= l { + var yys1118Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1118Slc + var yyhl1118 bool = l >= 0 + for yyj1118 := 0; ; yyj1118++ { + if yyhl1118 { + if yyj1118 >= l { break } } else { @@ -14988,10 +15599,10 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1075Slc = r.DecodeBytes(yys1075Slc, true, true) - yys1075 := string(yys1075Slc) + yys1118Slc = r.DecodeBytes(yys1118Slc, true, true) + yys1118 := string(yys1118Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1075 { + switch yys1118 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15017,9 +15628,9 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1075) - } // end switch yys1075 - } // end for yyj1075 + z.DecStructFieldNotFound(-1, yys1118) + } // end switch yys1118 + } // end for yyj1118 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15027,16 +15638,16 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1080 int - var yyb1080 bool - var yyhl1080 bool = l >= 0 - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + var yyj1123 int + var yyb1123 bool + var yyhl1123 bool = l >= 0 + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1080 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1080 { + if yyb1123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15046,13 +15657,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1080 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1080 { + if yyb1123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15062,13 +15673,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1080 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1080 { + if yyb1123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15078,13 +15689,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MountPath = string(r.DecodeString()) } - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1080 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1080 { + if yyb1123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15095,17 +15706,17 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } for { - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1080 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1080 { + if yyb1123 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1080-1, "") + z.DecStructFieldNotFound(yyj1123-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15117,35 +15728,35 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1085 := z.EncBinary() - _ = yym1085 + yym1128 := z.EncBinary() + _ = yym1128 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1086 := !z.EncBinary() - yy2arr1086 := z.EncBasicHandle().StructToArray - var yyq1086 [3]bool - _, _, _ = yysep1086, yyq1086, yy2arr1086 - const yyr1086 bool = false - yyq1086[1] = x.Value != "" - yyq1086[2] = x.ValueFrom != nil - var yynn1086 int - if yyr1086 || yy2arr1086 { + yysep1129 := !z.EncBinary() + yy2arr1129 := z.EncBasicHandle().StructToArray + var yyq1129 [3]bool + _, _, _ = yysep1129, yyq1129, yy2arr1129 + const yyr1129 bool = false + yyq1129[1] = x.Value != "" + yyq1129[2] = x.ValueFrom != nil + var yynn1129 int + if yyr1129 || yy2arr1129 { r.EncodeArrayStart(3) } else { - yynn1086 = 1 - for _, b := range yyq1086 { + yynn1129 = 1 + for _, b := range yyq1129 { if b { - yynn1086++ + yynn1129++ } } - r.EncodeMapStart(yynn1086) - yynn1086 = 0 + r.EncodeMapStart(yynn1129) + yynn1129 = 0 } - if yyr1086 || yy2arr1086 { + if yyr1129 || yy2arr1129 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1088 := z.EncBinary() - _ = yym1088 + yym1131 := z.EncBinary() + _ = yym1131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15154,18 +15765,18 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1089 := z.EncBinary() - _ = yym1089 + yym1132 := z.EncBinary() + _ = yym1132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1086 || yy2arr1086 { + if yyr1129 || yy2arr1129 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1086[1] { - yym1091 := z.EncBinary() - _ = yym1091 + if yyq1129[1] { + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -15174,21 +15785,21 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1086[1] { + if yyq1129[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1092 := z.EncBinary() - _ = yym1092 + yym1135 := z.EncBinary() + _ = yym1135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1086 || yy2arr1086 { + if yyr1129 || yy2arr1129 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1086[2] { + if yyq1129[2] { if x.ValueFrom == nil { r.EncodeNil() } else { @@ -15198,7 +15809,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1086[2] { + if yyq1129[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("valueFrom")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15209,7 +15820,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1086 || yy2arr1086 { + if yyr1129 || yy2arr1129 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15222,25 +15833,25 @@ func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1094 := z.DecBinary() - _ = yym1094 + yym1137 := z.DecBinary() + _ = yym1137 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1095 := r.ContainerType() - if yyct1095 == codecSelferValueTypeMap1234 { - yyl1095 := r.ReadMapStart() - if yyl1095 == 0 { + yyct1138 := r.ContainerType() + if yyct1138 == codecSelferValueTypeMap1234 { + yyl1138 := r.ReadMapStart() + if yyl1138 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1095, d) + x.codecDecodeSelfFromMap(yyl1138, d) } - } else if yyct1095 == codecSelferValueTypeArray1234 { - yyl1095 := r.ReadArrayStart() - if yyl1095 == 0 { + } else if yyct1138 == codecSelferValueTypeArray1234 { + yyl1138 := r.ReadArrayStart() + if yyl1138 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1095, d) + x.codecDecodeSelfFromArray(yyl1138, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15252,12 +15863,12 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1096Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1096Slc - var yyhl1096 bool = l >= 0 - for yyj1096 := 0; ; yyj1096++ { - if yyhl1096 { - if yyj1096 >= l { + var yys1139Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1139Slc + var yyhl1139 bool = l >= 0 + for yyj1139 := 0; ; yyj1139++ { + if yyhl1139 { + if yyj1139 >= l { break } } else { @@ -15266,10 +15877,10 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1096Slc = r.DecodeBytes(yys1096Slc, true, true) - yys1096 := string(yys1096Slc) + yys1139Slc = r.DecodeBytes(yys1139Slc, true, true) + yys1139 := string(yys1139Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1096 { + switch yys1139 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15294,9 +15905,9 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1096) - } // end switch yys1096 - } // end for yyj1096 + z.DecStructFieldNotFound(-1, yys1139) + } // end switch yys1139 + } // end for yyj1139 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15304,16 +15915,16 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1100 int - var yyb1100 bool - var yyhl1100 bool = l >= 0 - yyj1100++ - if yyhl1100 { - yyb1100 = yyj1100 > l + var yyj1143 int + var yyb1143 bool + var yyhl1143 bool = l >= 0 + yyj1143++ + if yyhl1143 { + yyb1143 = yyj1143 > l } else { - yyb1100 = r.CheckBreak() + yyb1143 = r.CheckBreak() } - if yyb1100 { + if yyb1143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15323,13 +15934,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1100++ - if yyhl1100 { - yyb1100 = yyj1100 > l + yyj1143++ + if yyhl1143 { + yyb1143 = yyj1143 > l } else { - yyb1100 = r.CheckBreak() + yyb1143 = r.CheckBreak() } - if yyb1100 { + if yyb1143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15339,13 +15950,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1100++ - if yyhl1100 { - yyb1100 = yyj1100 > l + yyj1143++ + if yyhl1143 { + yyb1143 = yyj1143 > l } else { - yyb1100 = r.CheckBreak() + yyb1143 = r.CheckBreak() } - if yyb1100 { + if yyb1143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15361,17 +15972,17 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } for { - yyj1100++ - if yyhl1100 { - yyb1100 = yyj1100 > l + yyj1143++ + if yyhl1143 { + yyb1143 = yyj1143 > l } else { - yyb1100 = r.CheckBreak() + yyb1143 = r.CheckBreak() } - if yyb1100 { + if yyb1143 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1100-1, "") + z.DecStructFieldNotFound(yyj1143-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15383,36 +15994,36 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1104 := z.EncBinary() - _ = yym1104 + yym1147 := z.EncBinary() + _ = yym1147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1105 := !z.EncBinary() - yy2arr1105 := z.EncBasicHandle().StructToArray - var yyq1105 [4]bool - _, _, _ = yysep1105, yyq1105, yy2arr1105 - const yyr1105 bool = false - yyq1105[0] = x.FieldRef != nil - yyq1105[1] = x.ResourceFieldRef != nil - yyq1105[2] = x.ConfigMapKeyRef != nil - yyq1105[3] = x.SecretKeyRef != nil - var yynn1105 int - if yyr1105 || yy2arr1105 { + yysep1148 := !z.EncBinary() + yy2arr1148 := z.EncBasicHandle().StructToArray + var yyq1148 [4]bool + _, _, _ = yysep1148, yyq1148, yy2arr1148 + const yyr1148 bool = false + yyq1148[0] = x.FieldRef != nil + yyq1148[1] = x.ResourceFieldRef != nil + yyq1148[2] = x.ConfigMapKeyRef != nil + yyq1148[3] = x.SecretKeyRef != nil + var yynn1148 int + if yyr1148 || yy2arr1148 { r.EncodeArrayStart(4) } else { - yynn1105 = 0 - for _, b := range yyq1105 { + yynn1148 = 0 + for _, b := range yyq1148 { if b { - yynn1105++ + yynn1148++ } } - r.EncodeMapStart(yynn1105) - yynn1105 = 0 + r.EncodeMapStart(yynn1148) + yynn1148 = 0 } - if yyr1105 || yy2arr1105 { + if yyr1148 || yy2arr1148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1105[0] { + if yyq1148[0] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -15422,7 +16033,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1105[0] { + if yyq1148[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15433,9 +16044,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1105 || yy2arr1105 { + if yyr1148 || yy2arr1148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1105[1] { + if yyq1148[1] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -15445,7 +16056,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1105[1] { + if yyq1148[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15456,9 +16067,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1105 || yy2arr1105 { + if yyr1148 || yy2arr1148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1105[2] { + if yyq1148[2] { if x.ConfigMapKeyRef == nil { r.EncodeNil() } else { @@ -15468,7 +16079,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1105[2] { + if yyq1148[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMapKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15479,9 +16090,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1105 || yy2arr1105 { + if yyr1148 || yy2arr1148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1105[3] { + if yyq1148[3] { if x.SecretKeyRef == nil { r.EncodeNil() } else { @@ -15491,7 +16102,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1105[3] { + if yyq1148[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15502,7 +16113,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1105 || yy2arr1105 { + if yyr1148 || yy2arr1148 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15515,25 +16126,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1110 := z.DecBinary() - _ = yym1110 + yym1153 := z.DecBinary() + _ = yym1153 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1111 := r.ContainerType() - if yyct1111 == codecSelferValueTypeMap1234 { - yyl1111 := r.ReadMapStart() - if yyl1111 == 0 { + yyct1154 := r.ContainerType() + if yyct1154 == codecSelferValueTypeMap1234 { + yyl1154 := r.ReadMapStart() + if yyl1154 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1111, d) + x.codecDecodeSelfFromMap(yyl1154, d) } - } else if yyct1111 == codecSelferValueTypeArray1234 { - yyl1111 := r.ReadArrayStart() - if yyl1111 == 0 { + } else if yyct1154 == codecSelferValueTypeArray1234 { + yyl1154 := r.ReadArrayStart() + if yyl1154 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1111, d) + x.codecDecodeSelfFromArray(yyl1154, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15545,12 +16156,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1112Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1112Slc - var yyhl1112 bool = l >= 0 - for yyj1112 := 0; ; yyj1112++ { - if yyhl1112 { - if yyj1112 >= l { + var yys1155Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1155Slc + var yyhl1155 bool = l >= 0 + for yyj1155 := 0; ; yyj1155++ { + if yyhl1155 { + if yyj1155 >= l { break } } else { @@ -15559,10 +16170,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1112Slc = r.DecodeBytes(yys1112Slc, true, true) - yys1112 := string(yys1112Slc) + yys1155Slc = r.DecodeBytes(yys1155Slc, true, true) + yys1155 := string(yys1155Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1112 { + switch yys1155 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -15608,9 +16219,9 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1112) - } // end switch yys1112 - } // end for yyj1112 + z.DecStructFieldNotFound(-1, yys1155) + } // end switch yys1155 + } // end for yyj1155 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15618,16 +16229,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1117 int - var yyb1117 bool - var yyhl1117 bool = l >= 0 - yyj1117++ - if yyhl1117 { - yyb1117 = yyj1117 > l + var yyj1160 int + var yyb1160 bool + var yyhl1160 bool = l >= 0 + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1117 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1117 { + if yyb1160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15642,13 +16253,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } - yyj1117++ - if yyhl1117 { - yyb1117 = yyj1117 > l + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1117 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1117 { + if yyb1160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15663,13 +16274,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj1117++ - if yyhl1117 { - yyb1117 = yyj1117 > l + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1117 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1117 { + if yyb1160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15684,13 +16295,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMapKeyRef.CodecDecodeSelf(d) } - yyj1117++ - if yyhl1117 { - yyb1117 = yyj1117 > l + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1117 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1117 { + if yyb1160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15706,17 +16317,17 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } for { - yyj1117++ - if yyhl1117 { - yyb1117 = yyj1117 > l + yyj1160++ + if yyhl1160 { + yyb1160 = yyj1160 > l } else { - yyb1117 = r.CheckBreak() + yyb1160 = r.CheckBreak() } - if yyb1117 { + if yyb1160 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1117-1, "") + z.DecStructFieldNotFound(yyj1160-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15728,35 +16339,35 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1122 := z.EncBinary() - _ = yym1122 + yym1165 := z.EncBinary() + _ = yym1165 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1123 := !z.EncBinary() - yy2arr1123 := z.EncBasicHandle().StructToArray - var yyq1123 [2]bool - _, _, _ = yysep1123, yyq1123, yy2arr1123 - const yyr1123 bool = false - yyq1123[0] = x.APIVersion != "" - var yynn1123 int - if yyr1123 || yy2arr1123 { + yysep1166 := !z.EncBinary() + yy2arr1166 := z.EncBasicHandle().StructToArray + var yyq1166 [2]bool + _, _, _ = yysep1166, yyq1166, yy2arr1166 + const yyr1166 bool = false + yyq1166[0] = x.APIVersion != "" + var yynn1166 int + if yyr1166 || yy2arr1166 { r.EncodeArrayStart(2) } else { - yynn1123 = 1 - for _, b := range yyq1123 { + yynn1166 = 1 + for _, b := range yyq1166 { if b { - yynn1123++ + yynn1166++ } } - r.EncodeMapStart(yynn1123) - yynn1123 = 0 + r.EncodeMapStart(yynn1166) + yynn1166 = 0 } - if yyr1123 || yy2arr1123 { + if yyr1166 || yy2arr1166 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1123[0] { - yym1125 := z.EncBinary() - _ = yym1125 + if yyq1166[0] { + yym1168 := z.EncBinary() + _ = yym1168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -15765,22 +16376,22 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1123[0] { + if yyq1166[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1126 := z.EncBinary() - _ = yym1126 + yym1169 := z.EncBinary() + _ = yym1169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1123 || yy2arr1123 { + if yyr1166 || yy2arr1166 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1128 := z.EncBinary() - _ = yym1128 + yym1171 := z.EncBinary() + _ = yym1171 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -15789,14 +16400,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1129 := z.EncBinary() - _ = yym1129 + yym1172 := z.EncBinary() + _ = yym1172 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr1123 || yy2arr1123 { + if yyr1166 || yy2arr1166 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15809,25 +16420,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1130 := z.DecBinary() - _ = yym1130 + yym1173 := z.DecBinary() + _ = yym1173 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1131 := r.ContainerType() - if yyct1131 == codecSelferValueTypeMap1234 { - yyl1131 := r.ReadMapStart() - if yyl1131 == 0 { + yyct1174 := r.ContainerType() + if yyct1174 == codecSelferValueTypeMap1234 { + yyl1174 := r.ReadMapStart() + if yyl1174 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1131, d) + x.codecDecodeSelfFromMap(yyl1174, d) } - } else if yyct1131 == codecSelferValueTypeArray1234 { - yyl1131 := r.ReadArrayStart() - if yyl1131 == 0 { + } else if yyct1174 == codecSelferValueTypeArray1234 { + yyl1174 := r.ReadArrayStart() + if yyl1174 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1131, d) + x.codecDecodeSelfFromArray(yyl1174, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15839,12 +16450,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1132Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1132Slc - var yyhl1132 bool = l >= 0 - for yyj1132 := 0; ; yyj1132++ { - if yyhl1132 { - if yyj1132 >= l { + var yys1175Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1175Slc + var yyhl1175 bool = l >= 0 + for yyj1175 := 0; ; yyj1175++ { + if yyhl1175 { + if yyj1175 >= l { break } } else { @@ -15853,10 +16464,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1132Slc = r.DecodeBytes(yys1132Slc, true, true) - yys1132 := string(yys1132Slc) + yys1175Slc = r.DecodeBytes(yys1175Slc, true, true) + yys1175 := string(yys1175Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1132 { + switch yys1175 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -15870,9 +16481,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1132) - } // end switch yys1132 - } // end for yyj1132 + z.DecStructFieldNotFound(-1, yys1175) + } // end switch yys1175 + } // end for yyj1175 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15880,16 +16491,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1135 int - var yyb1135 bool - var yyhl1135 bool = l >= 0 - yyj1135++ - if yyhl1135 { - yyb1135 = yyj1135 > l + var yyj1178 int + var yyb1178 bool + var yyhl1178 bool = l >= 0 + yyj1178++ + if yyhl1178 { + yyb1178 = yyj1178 > l } else { - yyb1135 = r.CheckBreak() + yyb1178 = r.CheckBreak() } - if yyb1135 { + if yyb1178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15899,13 +16510,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj1135++ - if yyhl1135 { - yyb1135 = yyj1135 > l + yyj1178++ + if yyhl1178 { + yyb1178 = yyj1178 > l } else { - yyb1135 = r.CheckBreak() + yyb1178 = r.CheckBreak() } - if yyb1135 { + if yyb1178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15916,17 +16527,17 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj1135++ - if yyhl1135 { - yyb1135 = yyj1135 > l + yyj1178++ + if yyhl1178 { + yyb1178 = yyj1178 > l } else { - yyb1135 = r.CheckBreak() + yyb1178 = r.CheckBreak() } - if yyb1135 { + if yyb1178 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1135-1, "") + z.DecStructFieldNotFound(yyj1178-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15938,36 +16549,36 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1138 := z.EncBinary() - _ = yym1138 + yym1181 := z.EncBinary() + _ = yym1181 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1139 := !z.EncBinary() - yy2arr1139 := z.EncBasicHandle().StructToArray - var yyq1139 [3]bool - _, _, _ = yysep1139, yyq1139, yy2arr1139 - const yyr1139 bool = false - yyq1139[0] = x.ContainerName != "" - yyq1139[2] = true - var yynn1139 int - if yyr1139 || yy2arr1139 { + yysep1182 := !z.EncBinary() + yy2arr1182 := z.EncBasicHandle().StructToArray + var yyq1182 [3]bool + _, _, _ = yysep1182, yyq1182, yy2arr1182 + const yyr1182 bool = false + yyq1182[0] = x.ContainerName != "" + yyq1182[2] = true + var yynn1182 int + if yyr1182 || yy2arr1182 { r.EncodeArrayStart(3) } else { - yynn1139 = 1 - for _, b := range yyq1139 { + yynn1182 = 1 + for _, b := range yyq1182 { if b { - yynn1139++ + yynn1182++ } } - r.EncodeMapStart(yynn1139) - yynn1139 = 0 + r.EncodeMapStart(yynn1182) + yynn1182 = 0 } - if yyr1139 || yy2arr1139 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1139[0] { - yym1141 := z.EncBinary() - _ = yym1141 + if yyq1182[0] { + yym1184 := z.EncBinary() + _ = yym1184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) @@ -15976,22 +16587,22 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1139[0] { + if yyq1182[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1142 := z.EncBinary() - _ = yym1142 + yym1185 := z.EncBinary() + _ = yym1185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) } } } - if yyr1139 || yy2arr1139 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1144 := z.EncBinary() - _ = yym1144 + yym1187 := z.EncBinary() + _ = yym1187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) @@ -16000,47 +16611,47 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resource")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1145 := z.EncBinary() - _ = yym1145 + yym1188 := z.EncBinary() + _ = yym1188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) } } - if yyr1139 || yy2arr1139 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1139[2] { - yy1147 := &x.Divisor - yym1148 := z.EncBinary() - _ = yym1148 + if yyq1182[2] { + yy1190 := &x.Divisor + yym1191 := z.EncBinary() + _ = yym1191 if false { - } else if z.HasExtensions() && z.EncExt(yy1147) { - } else if !yym1148 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1147) + } else if z.HasExtensions() && z.EncExt(yy1190) { + } else if !yym1191 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1190) } else { - z.EncFallback(yy1147) + z.EncFallback(yy1190) } } else { r.EncodeNil() } } else { - if yyq1139[2] { + if yyq1182[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("divisor")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1149 := &x.Divisor - yym1150 := z.EncBinary() - _ = yym1150 + yy1192 := &x.Divisor + yym1193 := z.EncBinary() + _ = yym1193 if false { - } else if z.HasExtensions() && z.EncExt(yy1149) { - } else if !yym1150 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1149) + } else if z.HasExtensions() && z.EncExt(yy1192) { + } else if !yym1193 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1192) } else { - z.EncFallback(yy1149) + z.EncFallback(yy1192) } } } - if yyr1139 || yy2arr1139 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16053,25 +16664,25 @@ func (x *ResourceFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1151 := z.DecBinary() - _ = yym1151 + yym1194 := z.DecBinary() + _ = yym1194 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1152 := r.ContainerType() - if yyct1152 == codecSelferValueTypeMap1234 { - yyl1152 := r.ReadMapStart() - if yyl1152 == 0 { + yyct1195 := r.ContainerType() + if yyct1195 == codecSelferValueTypeMap1234 { + yyl1195 := r.ReadMapStart() + if yyl1195 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1152, d) + x.codecDecodeSelfFromMap(yyl1195, d) } - } else if yyct1152 == codecSelferValueTypeArray1234 { - yyl1152 := r.ReadArrayStart() - if yyl1152 == 0 { + } else if yyct1195 == codecSelferValueTypeArray1234 { + yyl1195 := r.ReadArrayStart() + if yyl1195 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1152, d) + x.codecDecodeSelfFromArray(yyl1195, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16083,12 +16694,12 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1153Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1153Slc - var yyhl1153 bool = l >= 0 - for yyj1153 := 0; ; yyj1153++ { - if yyhl1153 { - if yyj1153 >= l { + var yys1196Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1196Slc + var yyhl1196 bool = l >= 0 + for yyj1196 := 0; ; yyj1196++ { + if yyhl1196 { + if yyj1196 >= l { break } } else { @@ -16097,10 +16708,10 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1153Slc = r.DecodeBytes(yys1153Slc, true, true) - yys1153 := string(yys1153Slc) + yys1196Slc = r.DecodeBytes(yys1196Slc, true, true) + yys1196 := string(yys1196Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1153 { + switch yys1196 { case "containerName": if r.TryDecodeAsNil() { x.ContainerName = "" @@ -16117,21 +16728,21 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Divisor = pkg3_resource.Quantity{} } else { - yyv1156 := &x.Divisor - yym1157 := z.DecBinary() - _ = yym1157 + yyv1199 := &x.Divisor + yym1200 := z.DecBinary() + _ = yym1200 if false { - } else if z.HasExtensions() && z.DecExt(yyv1156) { - } else if !yym1157 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1156) + } else if z.HasExtensions() && z.DecExt(yyv1199) { + } else if !yym1200 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1199) } else { - z.DecFallback(yyv1156, false) + z.DecFallback(yyv1199, false) } } default: - z.DecStructFieldNotFound(-1, yys1153) - } // end switch yys1153 - } // end for yyj1153 + z.DecStructFieldNotFound(-1, yys1196) + } // end switch yys1196 + } // end for yyj1196 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16139,16 +16750,16 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1158 int - var yyb1158 bool - var yyhl1158 bool = l >= 0 - yyj1158++ - if yyhl1158 { - yyb1158 = yyj1158 > l + var yyj1201 int + var yyb1201 bool + var yyhl1201 bool = l >= 0 + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1158 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1158 { + if yyb1201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16158,13 +16769,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ContainerName = string(r.DecodeString()) } - yyj1158++ - if yyhl1158 { - yyb1158 = yyj1158 > l + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1158 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1158 { + if yyb1201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16174,13 +16785,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Resource = string(r.DecodeString()) } - yyj1158++ - if yyhl1158 { - yyb1158 = yyj1158 > l + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1158 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1158 { + if yyb1201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16188,29 +16799,29 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Divisor = pkg3_resource.Quantity{} } else { - yyv1161 := &x.Divisor - yym1162 := z.DecBinary() - _ = yym1162 + yyv1204 := &x.Divisor + yym1205 := z.DecBinary() + _ = yym1205 if false { - } else if z.HasExtensions() && z.DecExt(yyv1161) { - } else if !yym1162 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1161) + } else if z.HasExtensions() && z.DecExt(yyv1204) { + } else if !yym1205 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1204) } else { - z.DecFallback(yyv1161, false) + z.DecFallback(yyv1204, false) } } for { - yyj1158++ - if yyhl1158 { - yyb1158 = yyj1158 > l + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1158 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1158 { + if yyb1201 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1158-1, "") + z.DecStructFieldNotFound(yyj1201-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16222,35 +16833,35 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1163 := z.EncBinary() - _ = yym1163 + yym1206 := z.EncBinary() + _ = yym1206 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1164 := !z.EncBinary() - yy2arr1164 := z.EncBasicHandle().StructToArray - var yyq1164 [2]bool - _, _, _ = yysep1164, yyq1164, yy2arr1164 - const yyr1164 bool = false - yyq1164[0] = x.Name != "" - var yynn1164 int - if yyr1164 || yy2arr1164 { + yysep1207 := !z.EncBinary() + yy2arr1207 := z.EncBasicHandle().StructToArray + var yyq1207 [2]bool + _, _, _ = yysep1207, yyq1207, yy2arr1207 + const yyr1207 bool = false + yyq1207[0] = x.Name != "" + var yynn1207 int + if yyr1207 || yy2arr1207 { r.EncodeArrayStart(2) } else { - yynn1164 = 1 - for _, b := range yyq1164 { + yynn1207 = 1 + for _, b := range yyq1207 { if b { - yynn1164++ + yynn1207++ } } - r.EncodeMapStart(yynn1164) - yynn1164 = 0 + r.EncodeMapStart(yynn1207) + yynn1207 = 0 } - if yyr1164 || yy2arr1164 { + if yyr1207 || yy2arr1207 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1164[0] { - yym1166 := z.EncBinary() - _ = yym1166 + if yyq1207[0] { + yym1209 := z.EncBinary() + _ = yym1209 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16259,22 +16870,22 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1164[0] { + if yyq1207[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1167 := z.EncBinary() - _ = yym1167 + yym1210 := z.EncBinary() + _ = yym1210 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1164 || yy2arr1164 { + if yyr1207 || yy2arr1207 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1169 := z.EncBinary() - _ = yym1169 + yym1212 := z.EncBinary() + _ = yym1212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -16283,14 +16894,14 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1170 := z.EncBinary() - _ = yym1170 + yym1213 := z.EncBinary() + _ = yym1213 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1164 || yy2arr1164 { + if yyr1207 || yy2arr1207 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16303,25 +16914,25 @@ func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1171 := z.DecBinary() - _ = yym1171 + yym1214 := z.DecBinary() + _ = yym1214 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1172 := r.ContainerType() - if yyct1172 == codecSelferValueTypeMap1234 { - yyl1172 := r.ReadMapStart() - if yyl1172 == 0 { + yyct1215 := r.ContainerType() + if yyct1215 == codecSelferValueTypeMap1234 { + yyl1215 := r.ReadMapStart() + if yyl1215 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1172, d) + x.codecDecodeSelfFromMap(yyl1215, d) } - } else if yyct1172 == codecSelferValueTypeArray1234 { - yyl1172 := r.ReadArrayStart() - if yyl1172 == 0 { + } else if yyct1215 == codecSelferValueTypeArray1234 { + yyl1215 := r.ReadArrayStart() + if yyl1215 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1172, d) + x.codecDecodeSelfFromArray(yyl1215, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16333,12 +16944,12 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1173Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1173Slc - var yyhl1173 bool = l >= 0 - for yyj1173 := 0; ; yyj1173++ { - if yyhl1173 { - if yyj1173 >= l { + var yys1216Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1216Slc + var yyhl1216 bool = l >= 0 + for yyj1216 := 0; ; yyj1216++ { + if yyhl1216 { + if yyj1216 >= l { break } } else { @@ -16347,10 +16958,10 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1173Slc = r.DecodeBytes(yys1173Slc, true, true) - yys1173 := string(yys1173Slc) + yys1216Slc = r.DecodeBytes(yys1216Slc, true, true) + yys1216 := string(yys1216Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1173 { + switch yys1216 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16364,9 +16975,9 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Key = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1173) - } // end switch yys1173 - } // end for yyj1173 + z.DecStructFieldNotFound(-1, yys1216) + } // end switch yys1216 + } // end for yyj1216 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16374,16 +16985,16 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1176 int - var yyb1176 bool - var yyhl1176 bool = l >= 0 - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + var yyj1219 int + var yyb1219 bool + var yyhl1219 bool = l >= 0 + yyj1219++ + if yyhl1219 { + yyb1219 = yyj1219 > l } else { - yyb1176 = r.CheckBreak() + yyb1219 = r.CheckBreak() } - if yyb1176 { + if yyb1219 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16393,13 +17004,13 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Name = string(r.DecodeString()) } - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + yyj1219++ + if yyhl1219 { + yyb1219 = yyj1219 > l } else { - yyb1176 = r.CheckBreak() + yyb1219 = r.CheckBreak() } - if yyb1176 { + if yyb1219 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16410,17 +17021,17 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Key = string(r.DecodeString()) } for { - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + yyj1219++ + if yyhl1219 { + yyb1219 = yyj1219 > l } else { - yyb1176 = r.CheckBreak() + yyb1219 = r.CheckBreak() } - if yyb1176 { + if yyb1219 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1176-1, "") + z.DecStructFieldNotFound(yyj1219-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16432,35 +17043,35 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1179 := z.EncBinary() - _ = yym1179 + yym1222 := z.EncBinary() + _ = yym1222 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1180 := !z.EncBinary() - yy2arr1180 := z.EncBasicHandle().StructToArray - var yyq1180 [2]bool - _, _, _ = yysep1180, yyq1180, yy2arr1180 - const yyr1180 bool = false - yyq1180[0] = x.Name != "" - var yynn1180 int - if yyr1180 || yy2arr1180 { + yysep1223 := !z.EncBinary() + yy2arr1223 := z.EncBasicHandle().StructToArray + var yyq1223 [2]bool + _, _, _ = yysep1223, yyq1223, yy2arr1223 + const yyr1223 bool = false + yyq1223[0] = x.Name != "" + var yynn1223 int + if yyr1223 || yy2arr1223 { r.EncodeArrayStart(2) } else { - yynn1180 = 1 - for _, b := range yyq1180 { + yynn1223 = 1 + for _, b := range yyq1223 { if b { - yynn1180++ + yynn1223++ } } - r.EncodeMapStart(yynn1180) - yynn1180 = 0 + r.EncodeMapStart(yynn1223) + yynn1223 = 0 } - if yyr1180 || yy2arr1180 { + if yyr1223 || yy2arr1223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1180[0] { - yym1182 := z.EncBinary() - _ = yym1182 + if yyq1223[0] { + yym1225 := z.EncBinary() + _ = yym1225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16469,22 +17080,22 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1180[0] { + if yyq1223[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1183 := z.EncBinary() - _ = yym1183 + yym1226 := z.EncBinary() + _ = yym1226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1180 || yy2arr1180 { + if yyr1223 || yy2arr1223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1185 := z.EncBinary() - _ = yym1185 + yym1228 := z.EncBinary() + _ = yym1228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -16493,14 +17104,14 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1186 := z.EncBinary() - _ = yym1186 + yym1229 := z.EncBinary() + _ = yym1229 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1180 || yy2arr1180 { + if yyr1223 || yy2arr1223 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16513,25 +17124,25 @@ func (x *SecretKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1187 := z.DecBinary() - _ = yym1187 + yym1230 := z.DecBinary() + _ = yym1230 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1188 := r.ContainerType() - if yyct1188 == codecSelferValueTypeMap1234 { - yyl1188 := r.ReadMapStart() - if yyl1188 == 0 { + yyct1231 := r.ContainerType() + if yyct1231 == codecSelferValueTypeMap1234 { + yyl1231 := r.ReadMapStart() + if yyl1231 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1188, d) + x.codecDecodeSelfFromMap(yyl1231, d) } - } else if yyct1188 == codecSelferValueTypeArray1234 { - yyl1188 := r.ReadArrayStart() - if yyl1188 == 0 { + } else if yyct1231 == codecSelferValueTypeArray1234 { + yyl1231 := r.ReadArrayStart() + if yyl1231 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1188, d) + x.codecDecodeSelfFromArray(yyl1231, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16543,12 +17154,12 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1189Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1189Slc - var yyhl1189 bool = l >= 0 - for yyj1189 := 0; ; yyj1189++ { - if yyhl1189 { - if yyj1189 >= l { + var yys1232Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1232Slc + var yyhl1232 bool = l >= 0 + for yyj1232 := 0; ; yyj1232++ { + if yyhl1232 { + if yyj1232 >= l { break } } else { @@ -16557,10 +17168,10 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1189Slc = r.DecodeBytes(yys1189Slc, true, true) - yys1189 := string(yys1189Slc) + yys1232Slc = r.DecodeBytes(yys1232Slc, true, true) + yys1232 := string(yys1232Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1189 { + switch yys1232 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16574,9 +17185,9 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Key = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1189) - } // end switch yys1189 - } // end for yyj1189 + z.DecStructFieldNotFound(-1, yys1232) + } // end switch yys1232 + } // end for yyj1232 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16584,16 +17195,16 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1192 int - var yyb1192 bool - var yyhl1192 bool = l >= 0 - yyj1192++ - if yyhl1192 { - yyb1192 = yyj1192 > l + var yyj1235 int + var yyb1235 bool + var yyhl1235 bool = l >= 0 + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1192 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1192 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16603,13 +17214,13 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Name = string(r.DecodeString()) } - yyj1192++ - if yyhl1192 { - yyb1192 = yyj1192 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1192 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1192 { + if yyb1235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16620,17 +17231,17 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.Key = string(r.DecodeString()) } for { - yyj1192++ - if yyhl1192 { - yyb1192 = yyj1192 > l + yyj1235++ + if yyhl1235 { + yyb1235 = yyj1235 > l } else { - yyb1192 = r.CheckBreak() + yyb1235 = r.CheckBreak() } - if yyb1192 { + if yyb1235 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1192-1, "") + z.DecStructFieldNotFound(yyj1235-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16642,33 +17253,33 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1195 := z.EncBinary() - _ = yym1195 + yym1238 := z.EncBinary() + _ = yym1238 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1196 := !z.EncBinary() - yy2arr1196 := z.EncBasicHandle().StructToArray - var yyq1196 [2]bool - _, _, _ = yysep1196, yyq1196, yy2arr1196 - const yyr1196 bool = false - var yynn1196 int - if yyr1196 || yy2arr1196 { + yysep1239 := !z.EncBinary() + yy2arr1239 := z.EncBasicHandle().StructToArray + var yyq1239 [2]bool + _, _, _ = yysep1239, yyq1239, yy2arr1239 + const yyr1239 bool = false + var yynn1239 int + if yyr1239 || yy2arr1239 { r.EncodeArrayStart(2) } else { - yynn1196 = 2 - for _, b := range yyq1196 { + yynn1239 = 2 + for _, b := range yyq1239 { if b { - yynn1196++ + yynn1239++ } } - r.EncodeMapStart(yynn1196) - yynn1196 = 0 + r.EncodeMapStart(yynn1239) + yynn1239 = 0 } - if yyr1196 || yy2arr1196 { + if yyr1239 || yy2arr1239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1198 := z.EncBinary() - _ = yym1198 + yym1241 := z.EncBinary() + _ = yym1241 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16677,17 +17288,17 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1199 := z.EncBinary() - _ = yym1199 + yym1242 := z.EncBinary() + _ = yym1242 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1196 || yy2arr1196 { + if yyr1239 || yy2arr1239 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1201 := z.EncBinary() - _ = yym1201 + yym1244 := z.EncBinary() + _ = yym1244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -16696,14 +17307,14 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1202 := z.EncBinary() - _ = yym1202 + yym1245 := z.EncBinary() + _ = yym1245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } - if yyr1196 || yy2arr1196 { + if yyr1239 || yy2arr1239 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16716,25 +17327,25 @@ func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1203 := z.DecBinary() - _ = yym1203 + yym1246 := z.DecBinary() + _ = yym1246 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1204 := r.ContainerType() - if yyct1204 == codecSelferValueTypeMap1234 { - yyl1204 := r.ReadMapStart() - if yyl1204 == 0 { + yyct1247 := r.ContainerType() + if yyct1247 == codecSelferValueTypeMap1234 { + yyl1247 := r.ReadMapStart() + if yyl1247 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1204, d) + x.codecDecodeSelfFromMap(yyl1247, d) } - } else if yyct1204 == codecSelferValueTypeArray1234 { - yyl1204 := r.ReadArrayStart() - if yyl1204 == 0 { + } else if yyct1247 == codecSelferValueTypeArray1234 { + yyl1247 := r.ReadArrayStart() + if yyl1247 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1204, d) + x.codecDecodeSelfFromArray(yyl1247, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16746,12 +17357,12 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1205Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1205Slc - var yyhl1205 bool = l >= 0 - for yyj1205 := 0; ; yyj1205++ { - if yyhl1205 { - if yyj1205 >= l { + var yys1248Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1248Slc + var yyhl1248 bool = l >= 0 + for yyj1248 := 0; ; yyj1248++ { + if yyhl1248 { + if yyj1248 >= l { break } } else { @@ -16760,10 +17371,10 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1205Slc = r.DecodeBytes(yys1205Slc, true, true) - yys1205 := string(yys1205Slc) + yys1248Slc = r.DecodeBytes(yys1248Slc, true, true) + yys1248 := string(yys1248Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1205 { + switch yys1248 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16777,9 +17388,9 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1205) - } // end switch yys1205 - } // end for yyj1205 + z.DecStructFieldNotFound(-1, yys1248) + } // end switch yys1248 + } // end for yyj1248 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16787,16 +17398,16 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1208 int - var yyb1208 bool - var yyhl1208 bool = l >= 0 - yyj1208++ - if yyhl1208 { - yyb1208 = yyj1208 > l + var yyj1251 int + var yyb1251 bool + var yyhl1251 bool = l >= 0 + yyj1251++ + if yyhl1251 { + yyb1251 = yyj1251 > l } else { - yyb1208 = r.CheckBreak() + yyb1251 = r.CheckBreak() } - if yyb1208 { + if yyb1251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16806,13 +17417,13 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1208++ - if yyhl1208 { - yyb1208 = yyj1208 > l + yyj1251++ + if yyhl1251 { + yyb1251 = yyj1251 > l } else { - yyb1208 = r.CheckBreak() + yyb1251 = r.CheckBreak() } - if yyb1208 { + if yyb1251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16823,17 +17434,17 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } for { - yyj1208++ - if yyhl1208 { - yyb1208 = yyj1208 > l + yyj1251++ + if yyhl1251 { + yyb1251 = yyj1251 > l } else { - yyb1208 = r.CheckBreak() + yyb1251 = r.CheckBreak() } - if yyb1208 { + if yyb1251 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1208-1, "") + z.DecStructFieldNotFound(yyj1251-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16845,38 +17456,38 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1211 := z.EncBinary() - _ = yym1211 + yym1254 := z.EncBinary() + _ = yym1254 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1212 := !z.EncBinary() - yy2arr1212 := z.EncBasicHandle().StructToArray - var yyq1212 [5]bool - _, _, _ = yysep1212, yyq1212, yy2arr1212 - const yyr1212 bool = false - yyq1212[0] = x.Path != "" - yyq1212[2] = x.Host != "" - yyq1212[3] = x.Scheme != "" - yyq1212[4] = len(x.HTTPHeaders) != 0 - var yynn1212 int - if yyr1212 || yy2arr1212 { + yysep1255 := !z.EncBinary() + yy2arr1255 := z.EncBasicHandle().StructToArray + var yyq1255 [5]bool + _, _, _ = yysep1255, yyq1255, yy2arr1255 + const yyr1255 bool = false + yyq1255[0] = x.Path != "" + yyq1255[2] = x.Host != "" + yyq1255[3] = x.Scheme != "" + yyq1255[4] = len(x.HTTPHeaders) != 0 + var yynn1255 int + if yyr1255 || yy2arr1255 { r.EncodeArrayStart(5) } else { - yynn1212 = 1 - for _, b := range yyq1212 { + yynn1255 = 1 + for _, b := range yyq1255 { if b { - yynn1212++ + yynn1255++ } } - r.EncodeMapStart(yynn1212) - yynn1212 = 0 + r.EncodeMapStart(yynn1255) + yynn1255 = 0 } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1212[0] { - yym1214 := z.EncBinary() - _ = yym1214 + if yyq1255[0] { + yym1257 := z.EncBinary() + _ = yym1257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -16885,50 +17496,50 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1212[0] { + if yyq1255[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1215 := z.EncBinary() - _ = yym1215 + yym1258 := z.EncBinary() + _ = yym1258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1217 := &x.Port - yym1218 := z.EncBinary() - _ = yym1218 + yy1260 := &x.Port + yym1261 := z.EncBinary() + _ = yym1261 if false { - } else if z.HasExtensions() && z.EncExt(yy1217) { - } else if !yym1218 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1217) + } else if z.HasExtensions() && z.EncExt(yy1260) { + } else if !yym1261 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1260) } else { - z.EncFallback(yy1217) + z.EncFallback(yy1260) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1219 := &x.Port - yym1220 := z.EncBinary() - _ = yym1220 + yy1262 := &x.Port + yym1263 := z.EncBinary() + _ = yym1263 if false { - } else if z.HasExtensions() && z.EncExt(yy1219) { - } else if !yym1220 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1219) + } else if z.HasExtensions() && z.EncExt(yy1262) { + } else if !yym1263 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1262) } else { - z.EncFallback(yy1219) + z.EncFallback(yy1262) } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1212[2] { - yym1222 := z.EncBinary() - _ = yym1222 + if yyq1255[2] { + yym1265 := z.EncBinary() + _ = yym1265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -16937,41 +17548,41 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1212[2] { + if yyq1255[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1223 := z.EncBinary() - _ = yym1223 + yym1266 := z.EncBinary() + _ = yym1266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1212[3] { + if yyq1255[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1212[3] { + if yyq1255[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1212[4] { + if yyq1255[4] { if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1226 := z.EncBinary() - _ = yym1226 + yym1269 := z.EncBinary() + _ = yym1269 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -16981,15 +17592,15 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1212[4] { + if yyq1255[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1227 := z.EncBinary() - _ = yym1227 + yym1270 := z.EncBinary() + _ = yym1270 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -16997,7 +17608,7 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1212 || yy2arr1212 { + if yyr1255 || yy2arr1255 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17010,25 +17621,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1228 := z.DecBinary() - _ = yym1228 + yym1271 := z.DecBinary() + _ = yym1271 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1229 := r.ContainerType() - if yyct1229 == codecSelferValueTypeMap1234 { - yyl1229 := r.ReadMapStart() - if yyl1229 == 0 { + yyct1272 := r.ContainerType() + if yyct1272 == codecSelferValueTypeMap1234 { + yyl1272 := r.ReadMapStart() + if yyl1272 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1229, d) + x.codecDecodeSelfFromMap(yyl1272, d) } - } else if yyct1229 == codecSelferValueTypeArray1234 { - yyl1229 := r.ReadArrayStart() - if yyl1229 == 0 { + } else if yyct1272 == codecSelferValueTypeArray1234 { + yyl1272 := r.ReadArrayStart() + if yyl1272 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1229, d) + x.codecDecodeSelfFromArray(yyl1272, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17040,12 +17651,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1230Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1230Slc - var yyhl1230 bool = l >= 0 - for yyj1230 := 0; ; yyj1230++ { - if yyhl1230 { - if yyj1230 >= l { + var yys1273Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1273Slc + var yyhl1273 bool = l >= 0 + for yyj1273 := 0; ; yyj1273++ { + if yyhl1273 { + if yyj1273 >= l { break } } else { @@ -17054,10 +17665,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1230Slc = r.DecodeBytes(yys1230Slc, true, true) - yys1230 := string(yys1230Slc) + yys1273Slc = r.DecodeBytes(yys1273Slc, true, true) + yys1273 := string(yys1273Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1230 { + switch yys1273 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -17068,15 +17679,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1232 := &x.Port - yym1233 := z.DecBinary() - _ = yym1233 + yyv1275 := &x.Port + yym1276 := z.DecBinary() + _ = yym1276 if false { - } else if z.HasExtensions() && z.DecExt(yyv1232) { - } else if !yym1233 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1232) + } else if z.HasExtensions() && z.DecExt(yyv1275) { + } else if !yym1276 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1275) } else { - z.DecFallback(yyv1232, false) + z.DecFallback(yyv1275, false) } } case "host": @@ -17095,18 +17706,18 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1236 := &x.HTTPHeaders - yym1237 := z.DecBinary() - _ = yym1237 + yyv1279 := &x.HTTPHeaders + yym1280 := z.DecBinary() + _ = yym1280 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1236), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1279), d) } } default: - z.DecStructFieldNotFound(-1, yys1230) - } // end switch yys1230 - } // end for yyj1230 + z.DecStructFieldNotFound(-1, yys1273) + } // end switch yys1273 + } // end for yyj1273 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17114,16 +17725,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1238 int - var yyb1238 bool - var yyhl1238 bool = l >= 0 - yyj1238++ - if yyhl1238 { - yyb1238 = yyj1238 > l + var yyj1281 int + var yyb1281 bool + var yyhl1281 bool = l >= 0 + yyj1281++ + if yyhl1281 { + yyb1281 = yyj1281 > l } else { - yyb1238 = r.CheckBreak() + yyb1281 = r.CheckBreak() } - if yyb1238 { + if yyb1281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17133,13 +17744,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1238++ - if yyhl1238 { - yyb1238 = yyj1238 > l + yyj1281++ + if yyhl1281 { + yyb1281 = yyj1281 > l } else { - yyb1238 = r.CheckBreak() + yyb1281 = r.CheckBreak() } - if yyb1238 { + if yyb1281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17147,24 +17758,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1240 := &x.Port - yym1241 := z.DecBinary() - _ = yym1241 + yyv1283 := &x.Port + yym1284 := z.DecBinary() + _ = yym1284 if false { - } else if z.HasExtensions() && z.DecExt(yyv1240) { - } else if !yym1241 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1240) + } else if z.HasExtensions() && z.DecExt(yyv1283) { + } else if !yym1284 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1283) } else { - z.DecFallback(yyv1240, false) + z.DecFallback(yyv1283, false) } } - yyj1238++ - if yyhl1238 { - yyb1238 = yyj1238 > l + yyj1281++ + if yyhl1281 { + yyb1281 = yyj1281 > l } else { - yyb1238 = r.CheckBreak() + yyb1281 = r.CheckBreak() } - if yyb1238 { + if yyb1281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17174,13 +17785,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1238++ - if yyhl1238 { - yyb1238 = yyj1238 > l + yyj1281++ + if yyhl1281 { + yyb1281 = yyj1281 > l } else { - yyb1238 = r.CheckBreak() + yyb1281 = r.CheckBreak() } - if yyb1238 { + if yyb1281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17190,13 +17801,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - yyj1238++ - if yyhl1238 { - yyb1238 = yyj1238 > l + yyj1281++ + if yyhl1281 { + yyb1281 = yyj1281 > l } else { - yyb1238 = r.CheckBreak() + yyb1281 = r.CheckBreak() } - if yyb1238 { + if yyb1281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17204,26 +17815,26 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1244 := &x.HTTPHeaders - yym1245 := z.DecBinary() - _ = yym1245 + yyv1287 := &x.HTTPHeaders + yym1288 := z.DecBinary() + _ = yym1288 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1244), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1287), d) } } for { - yyj1238++ - if yyhl1238 { - yyb1238 = yyj1238 > l + yyj1281++ + if yyhl1281 { + yyb1281 = yyj1281 > l } else { - yyb1238 = r.CheckBreak() + yyb1281 = r.CheckBreak() } - if yyb1238 { + if yyb1281 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1238-1, "") + z.DecStructFieldNotFound(yyj1281-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17232,8 +17843,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1246 := z.EncBinary() - _ = yym1246 + yym1289 := z.EncBinary() + _ = yym1289 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17245,8 +17856,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1247 := z.DecBinary() - _ = yym1247 + yym1290 := z.DecBinary() + _ = yym1290 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17261,57 +17872,57 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1248 := z.EncBinary() - _ = yym1248 + yym1291 := z.EncBinary() + _ = yym1291 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1249 := !z.EncBinary() - yy2arr1249 := z.EncBasicHandle().StructToArray - var yyq1249 [1]bool - _, _, _ = yysep1249, yyq1249, yy2arr1249 - const yyr1249 bool = false - var yynn1249 int - if yyr1249 || yy2arr1249 { + yysep1292 := !z.EncBinary() + yy2arr1292 := z.EncBasicHandle().StructToArray + var yyq1292 [1]bool + _, _, _ = yysep1292, yyq1292, yy2arr1292 + const yyr1292 bool = false + var yynn1292 int + if yyr1292 || yy2arr1292 { r.EncodeArrayStart(1) } else { - yynn1249 = 1 - for _, b := range yyq1249 { + yynn1292 = 1 + for _, b := range yyq1292 { if b { - yynn1249++ + yynn1292++ } } - r.EncodeMapStart(yynn1249) - yynn1249 = 0 + r.EncodeMapStart(yynn1292) + yynn1292 = 0 } - if yyr1249 || yy2arr1249 { + if yyr1292 || yy2arr1292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1251 := &x.Port - yym1252 := z.EncBinary() - _ = yym1252 + yy1294 := &x.Port + yym1295 := z.EncBinary() + _ = yym1295 if false { - } else if z.HasExtensions() && z.EncExt(yy1251) { - } else if !yym1252 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1251) + } else if z.HasExtensions() && z.EncExt(yy1294) { + } else if !yym1295 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1294) } else { - z.EncFallback(yy1251) + z.EncFallback(yy1294) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1253 := &x.Port - yym1254 := z.EncBinary() - _ = yym1254 + yy1296 := &x.Port + yym1297 := z.EncBinary() + _ = yym1297 if false { - } else if z.HasExtensions() && z.EncExt(yy1253) { - } else if !yym1254 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1253) + } else if z.HasExtensions() && z.EncExt(yy1296) { + } else if !yym1297 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1296) } else { - z.EncFallback(yy1253) + z.EncFallback(yy1296) } } - if yyr1249 || yy2arr1249 { + if yyr1292 || yy2arr1292 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17324,25 +17935,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1255 := z.DecBinary() - _ = yym1255 + yym1298 := z.DecBinary() + _ = yym1298 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1256 := r.ContainerType() - if yyct1256 == codecSelferValueTypeMap1234 { - yyl1256 := r.ReadMapStart() - if yyl1256 == 0 { + yyct1299 := r.ContainerType() + if yyct1299 == codecSelferValueTypeMap1234 { + yyl1299 := r.ReadMapStart() + if yyl1299 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1256, d) + x.codecDecodeSelfFromMap(yyl1299, d) } - } else if yyct1256 == codecSelferValueTypeArray1234 { - yyl1256 := r.ReadArrayStart() - if yyl1256 == 0 { + } else if yyct1299 == codecSelferValueTypeArray1234 { + yyl1299 := r.ReadArrayStart() + if yyl1299 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1256, d) + x.codecDecodeSelfFromArray(yyl1299, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17354,12 +17965,12 @@ func (x *TCPSocketAction) 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 yys1300Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1300Slc + var yyhl1300 bool = l >= 0 + for yyj1300 := 0; ; yyj1300++ { + if yyhl1300 { + if yyj1300 >= l { break } } else { @@ -17368,29 +17979,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1257Slc = r.DecodeBytes(yys1257Slc, true, true) - yys1257 := string(yys1257Slc) + yys1300Slc = r.DecodeBytes(yys1300Slc, true, true) + yys1300 := string(yys1300Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1257 { + switch yys1300 { case "port": if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1258 := &x.Port - yym1259 := z.DecBinary() - _ = yym1259 + yyv1301 := &x.Port + yym1302 := z.DecBinary() + _ = yym1302 if false { - } else if z.HasExtensions() && z.DecExt(yyv1258) { - } else if !yym1259 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1258) + } else if z.HasExtensions() && z.DecExt(yyv1301) { + } else if !yym1302 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1301) } else { - z.DecFallback(yyv1258, false) + z.DecFallback(yyv1301, false) } } default: - z.DecStructFieldNotFound(-1, yys1257) - } // end switch yys1257 - } // end for yyj1257 + z.DecStructFieldNotFound(-1, yys1300) + } // end switch yys1300 + } // end for yyj1300 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17398,16 +18009,16 @@ func (x *TCPSocketAction) 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 yyj1303 int + var yyb1303 bool + var yyhl1303 bool = l >= 0 + yyj1303++ + if yyhl1303 { + yyb1303 = yyj1303 > l } else { - yyb1260 = r.CheckBreak() + yyb1303 = r.CheckBreak() } - if yyb1260 { + if yyb1303 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17415,29 +18026,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1261 := &x.Port - yym1262 := z.DecBinary() - _ = yym1262 + yyv1304 := &x.Port + yym1305 := z.DecBinary() + _ = yym1305 if false { - } else if z.HasExtensions() && z.DecExt(yyv1261) { - } else if !yym1262 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1261) + } else if z.HasExtensions() && z.DecExt(yyv1304) { + } else if !yym1305 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1304) } else { - z.DecFallback(yyv1261, false) + z.DecFallback(yyv1304, false) } } for { - yyj1260++ - if yyhl1260 { - yyb1260 = yyj1260 > l + yyj1303++ + if yyhl1303 { + yyb1303 = yyj1303 > l } else { - yyb1260 = r.CheckBreak() + yyb1303 = r.CheckBreak() } - if yyb1260 { + if yyb1303 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1260-1, "") + z.DecStructFieldNotFound(yyj1303-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17449,38 +18060,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1263 := z.EncBinary() - _ = yym1263 + yym1306 := z.EncBinary() + _ = yym1306 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1264 := !z.EncBinary() - yy2arr1264 := z.EncBasicHandle().StructToArray - var yyq1264 [1]bool - _, _, _ = yysep1264, yyq1264, yy2arr1264 - const yyr1264 bool = false - yyq1264[0] = len(x.Command) != 0 - var yynn1264 int - if yyr1264 || yy2arr1264 { + yysep1307 := !z.EncBinary() + yy2arr1307 := z.EncBasicHandle().StructToArray + var yyq1307 [1]bool + _, _, _ = yysep1307, yyq1307, yy2arr1307 + const yyr1307 bool = false + yyq1307[0] = len(x.Command) != 0 + var yynn1307 int + if yyr1307 || yy2arr1307 { r.EncodeArrayStart(1) } else { - yynn1264 = 0 - for _, b := range yyq1264 { + yynn1307 = 0 + for _, b := range yyq1307 { if b { - yynn1264++ + yynn1307++ } } - r.EncodeMapStart(yynn1264) - yynn1264 = 0 + r.EncodeMapStart(yynn1307) + yynn1307 = 0 } - if yyr1264 || yy2arr1264 { + if yyr1307 || yy2arr1307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1264[0] { + if yyq1307[0] { if x.Command == nil { r.EncodeNil() } else { - yym1266 := z.EncBinary() - _ = yym1266 + yym1309 := z.EncBinary() + _ = yym1309 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -17490,15 +18101,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1264[0] { + if yyq1307[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1267 := z.EncBinary() - _ = yym1267 + yym1310 := z.EncBinary() + _ = yym1310 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -17506,7 +18117,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1264 || yy2arr1264 { + if yyr1307 || yy2arr1307 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17519,25 +18130,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1268 := z.DecBinary() - _ = yym1268 + yym1311 := z.DecBinary() + _ = yym1311 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1269 := r.ContainerType() - if yyct1269 == codecSelferValueTypeMap1234 { - yyl1269 := r.ReadMapStart() - if yyl1269 == 0 { + yyct1312 := r.ContainerType() + if yyct1312 == codecSelferValueTypeMap1234 { + yyl1312 := r.ReadMapStart() + if yyl1312 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1269, d) + x.codecDecodeSelfFromMap(yyl1312, d) } - } else if yyct1269 == codecSelferValueTypeArray1234 { - yyl1269 := r.ReadArrayStart() - if yyl1269 == 0 { + } else if yyct1312 == codecSelferValueTypeArray1234 { + yyl1312 := r.ReadArrayStart() + if yyl1312 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1269, d) + x.codecDecodeSelfFromArray(yyl1312, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17549,12 +18160,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1270Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1270Slc - var yyhl1270 bool = l >= 0 - for yyj1270 := 0; ; yyj1270++ { - if yyhl1270 { - if yyj1270 >= 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 { @@ -17563,26 +18174,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1270Slc = r.DecodeBytes(yys1270Slc, true, true) - yys1270 := string(yys1270Slc) + yys1313Slc = r.DecodeBytes(yys1313Slc, true, true) + yys1313 := string(yys1313Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1270 { + switch yys1313 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1271 := &x.Command - yym1272 := z.DecBinary() - _ = yym1272 + yyv1314 := &x.Command + yym1315 := z.DecBinary() + _ = yym1315 if false { } else { - z.F.DecSliceStringX(yyv1271, false, d) + z.F.DecSliceStringX(yyv1314, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1270) - } // end switch yys1270 - } // end for yyj1270 + z.DecStructFieldNotFound(-1, yys1313) + } // end switch yys1313 + } // end for yyj1313 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17590,16 +18201,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1273 int - var yyb1273 bool - var yyhl1273 bool = l >= 0 - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + var yyj1316 int + var yyb1316 bool + var yyhl1316 bool = l >= 0 + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1273 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1273 { + if yyb1316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17607,26 +18218,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1274 := &x.Command - yym1275 := z.DecBinary() - _ = yym1275 + yyv1317 := &x.Command + yym1318 := z.DecBinary() + _ = yym1318 if false { } else { - z.F.DecSliceStringX(yyv1274, false, d) + z.F.DecSliceStringX(yyv1317, false, d) } } for { - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1273 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1273 { + if yyb1316 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1273-1, "") + z.DecStructFieldNotFound(yyj1316-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17638,49 +18249,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1276 := z.EncBinary() - _ = yym1276 + yym1319 := z.EncBinary() + _ = yym1319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1277 := !z.EncBinary() - yy2arr1277 := z.EncBasicHandle().StructToArray - var yyq1277 [8]bool - _, _, _ = yysep1277, yyq1277, yy2arr1277 - const yyr1277 bool = false - yyq1277[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1277[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1277[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1277[3] = x.InitialDelaySeconds != 0 - yyq1277[4] = x.TimeoutSeconds != 0 - yyq1277[5] = x.PeriodSeconds != 0 - yyq1277[6] = x.SuccessThreshold != 0 - yyq1277[7] = x.FailureThreshold != 0 - var yynn1277 int - if yyr1277 || yy2arr1277 { + yysep1320 := !z.EncBinary() + yy2arr1320 := z.EncBasicHandle().StructToArray + var yyq1320 [8]bool + _, _, _ = yysep1320, yyq1320, yy2arr1320 + const yyr1320 bool = false + yyq1320[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1320[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1320[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1320[3] = x.InitialDelaySeconds != 0 + yyq1320[4] = x.TimeoutSeconds != 0 + yyq1320[5] = x.PeriodSeconds != 0 + yyq1320[6] = x.SuccessThreshold != 0 + yyq1320[7] = x.FailureThreshold != 0 + var yynn1320 int + if yyr1320 || yy2arr1320 { r.EncodeArrayStart(8) } else { - yynn1277 = 0 - for _, b := range yyq1277 { + yynn1320 = 0 + for _, b := range yyq1320 { if b { - yynn1277++ + yynn1320++ } } - r.EncodeMapStart(yynn1277) - yynn1277 = 0 + r.EncodeMapStart(yynn1320) + yynn1320 = 0 } - var yyn1278 bool + var yyn1321 bool if x.Handler.Exec == nil { - yyn1278 = true - goto LABEL1278 + yyn1321 = true + goto LABEL1321 } - LABEL1278: - if yyr1277 || yy2arr1277 { - if yyn1278 { + LABEL1321: + if yyr1320 || yy2arr1320 { + if yyn1321 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[0] { + if yyq1320[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -17691,11 +18302,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1277[0] { + if yyq1320[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1278 { + if yyn1321 { r.EncodeNil() } else { if x.Exec == nil { @@ -17706,18 +18317,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1279 bool + var yyn1322 bool if x.Handler.HTTPGet == nil { - yyn1279 = true - goto LABEL1279 + yyn1322 = true + goto LABEL1322 } - LABEL1279: - if yyr1277 || yy2arr1277 { - if yyn1279 { + LABEL1322: + if yyr1320 || yy2arr1320 { + if yyn1322 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[1] { + if yyq1320[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -17728,11 +18339,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1277[1] { + if yyq1320[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1279 { + if yyn1322 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -17743,18 +18354,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1280 bool + var yyn1323 bool if x.Handler.TCPSocket == nil { - yyn1280 = true - goto LABEL1280 + yyn1323 = true + goto LABEL1323 } - LABEL1280: - if yyr1277 || yy2arr1277 { - if yyn1280 { + LABEL1323: + if yyr1320 || yy2arr1320 { + if yyn1323 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[2] { + if yyq1320[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -17765,11 +18376,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1277[2] { + if yyq1320[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1280 { + if yyn1323 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -17780,11 +18391,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1277 || yy2arr1277 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[3] { - yym1282 := z.EncBinary() - _ = yym1282 + if yyq1320[3] { + yym1325 := z.EncBinary() + _ = yym1325 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -17793,23 +18404,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1277[3] { + if yyq1320[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1283 := z.EncBinary() - _ = yym1283 + yym1326 := z.EncBinary() + _ = yym1326 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1277 || yy2arr1277 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[4] { - yym1285 := z.EncBinary() - _ = yym1285 + if yyq1320[4] { + yym1328 := z.EncBinary() + _ = yym1328 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -17818,23 +18429,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1277[4] { + if yyq1320[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1286 := z.EncBinary() - _ = yym1286 + yym1329 := z.EncBinary() + _ = yym1329 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1277 || yy2arr1277 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[5] { - yym1288 := z.EncBinary() - _ = yym1288 + if yyq1320[5] { + yym1331 := z.EncBinary() + _ = yym1331 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -17843,23 +18454,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1277[5] { + if yyq1320[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1289 := z.EncBinary() - _ = yym1289 + yym1332 := z.EncBinary() + _ = yym1332 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1277 || yy2arr1277 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[6] { - yym1291 := z.EncBinary() - _ = yym1291 + if yyq1320[6] { + yym1334 := z.EncBinary() + _ = yym1334 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -17868,23 +18479,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1277[6] { + if yyq1320[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1292 := z.EncBinary() - _ = yym1292 + yym1335 := z.EncBinary() + _ = yym1335 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1277 || yy2arr1277 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1277[7] { - yym1294 := z.EncBinary() - _ = yym1294 + if yyq1320[7] { + yym1337 := z.EncBinary() + _ = yym1337 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -17893,19 +18504,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1277[7] { + if yyq1320[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1295 := z.EncBinary() - _ = yym1295 + yym1338 := z.EncBinary() + _ = yym1338 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1277 || yy2arr1277 { + if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17918,25 +18529,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1296 := z.DecBinary() - _ = yym1296 + yym1339 := z.DecBinary() + _ = yym1339 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1297 := r.ContainerType() - if yyct1297 == codecSelferValueTypeMap1234 { - yyl1297 := r.ReadMapStart() - if yyl1297 == 0 { + yyct1340 := r.ContainerType() + if yyct1340 == codecSelferValueTypeMap1234 { + yyl1340 := r.ReadMapStart() + if yyl1340 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1297, d) + x.codecDecodeSelfFromMap(yyl1340, d) } - } else if yyct1297 == codecSelferValueTypeArray1234 { - yyl1297 := r.ReadArrayStart() - if yyl1297 == 0 { + } else if yyct1340 == codecSelferValueTypeArray1234 { + yyl1340 := r.ReadArrayStart() + if yyl1340 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1297, d) + x.codecDecodeSelfFromArray(yyl1340, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17948,12 +18559,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1298Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1298Slc - var yyhl1298 bool = l >= 0 - for yyj1298 := 0; ; yyj1298++ { - if yyhl1298 { - if yyj1298 >= l { + var yys1341Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1341Slc + var yyhl1341 bool = l >= 0 + for yyj1341 := 0; ; yyj1341++ { + if yyhl1341 { + if yyj1341 >= l { break } } else { @@ -17962,10 +18573,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1298Slc = r.DecodeBytes(yys1298Slc, true, true) - yys1298 := string(yys1298Slc) + yys1341Slc = r.DecodeBytes(yys1341Slc, true, true) + yys1341 := string(yys1341Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1298 { + switch yys1341 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -18039,9 +18650,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1298) - } // end switch yys1298 - } // end for yyj1298 + z.DecStructFieldNotFound(-1, yys1341) + } // end switch yys1341 + } // end for yyj1341 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18049,19 +18660,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1307 int - var yyb1307 bool - var yyhl1307 bool = l >= 0 + var yyj1350 int + var yyb1350 bool + var yyhl1350 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18079,13 +18690,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18103,13 +18714,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18124,13 +18735,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18140,13 +18751,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18156,13 +18767,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18172,13 +18783,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18188,13 +18799,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18205,17 +18816,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1307++ - if yyhl1307 { - yyb1307 = yyj1307 > l + yyj1350++ + if yyhl1350 { + yyb1350 = yyj1350 > l } else { - yyb1307 = r.CheckBreak() + yyb1350 = r.CheckBreak() } - if yyb1307 { + if yyb1350 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1307-1, "") + z.DecStructFieldNotFound(yyj1350-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18224,8 +18835,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1316 := z.EncBinary() - _ = yym1316 + yym1359 := z.EncBinary() + _ = yym1359 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18237,8 +18848,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1317 := z.DecBinary() - _ = yym1317 + yym1360 := z.DecBinary() + _ = yym1360 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18250,8 +18861,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1318 := z.EncBinary() - _ = yym1318 + yym1361 := z.EncBinary() + _ = yym1361 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18263,8 +18874,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1319 := z.DecBinary() - _ = yym1319 + yym1362 := z.DecBinary() + _ = yym1362 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18279,39 +18890,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1320 := z.EncBinary() - _ = yym1320 + yym1363 := z.EncBinary() + _ = yym1363 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1321 := !z.EncBinary() - yy2arr1321 := z.EncBasicHandle().StructToArray - var yyq1321 [2]bool - _, _, _ = yysep1321, yyq1321, yy2arr1321 - const yyr1321 bool = false - yyq1321[0] = len(x.Add) != 0 - yyq1321[1] = len(x.Drop) != 0 - var yynn1321 int - if yyr1321 || yy2arr1321 { + yysep1364 := !z.EncBinary() + yy2arr1364 := z.EncBasicHandle().StructToArray + var yyq1364 [2]bool + _, _, _ = yysep1364, yyq1364, yy2arr1364 + const yyr1364 bool = false + yyq1364[0] = len(x.Add) != 0 + yyq1364[1] = len(x.Drop) != 0 + var yynn1364 int + if yyr1364 || yy2arr1364 { r.EncodeArrayStart(2) } else { - yynn1321 = 0 - for _, b := range yyq1321 { + yynn1364 = 0 + for _, b := range yyq1364 { if b { - yynn1321++ + yynn1364++ } } - r.EncodeMapStart(yynn1321) - yynn1321 = 0 + r.EncodeMapStart(yynn1364) + yynn1364 = 0 } - if yyr1321 || yy2arr1321 { + if yyr1364 || yy2arr1364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1321[0] { + if yyq1364[0] { if x.Add == nil { r.EncodeNil() } else { - yym1323 := z.EncBinary() - _ = yym1323 + yym1366 := z.EncBinary() + _ = yym1366 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -18321,15 +18932,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1321[0] { + if yyq1364[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1324 := z.EncBinary() - _ = yym1324 + yym1367 := z.EncBinary() + _ = yym1367 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -18337,14 +18948,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1321 || yy2arr1321 { + if yyr1364 || yy2arr1364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1321[1] { + if yyq1364[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1326 := z.EncBinary() - _ = yym1326 + yym1369 := z.EncBinary() + _ = yym1369 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -18354,15 +18965,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1321[1] { + if yyq1364[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1327 := z.EncBinary() - _ = yym1327 + yym1370 := z.EncBinary() + _ = yym1370 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -18370,7 +18981,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1321 || yy2arr1321 { + if yyr1364 || yy2arr1364 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18383,25 +18994,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1328 := z.DecBinary() - _ = yym1328 + yym1371 := z.DecBinary() + _ = yym1371 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1329 := r.ContainerType() - if yyct1329 == codecSelferValueTypeMap1234 { - yyl1329 := r.ReadMapStart() - if yyl1329 == 0 { + yyct1372 := r.ContainerType() + if yyct1372 == codecSelferValueTypeMap1234 { + yyl1372 := r.ReadMapStart() + if yyl1372 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1329, d) + x.codecDecodeSelfFromMap(yyl1372, d) } - } else if yyct1329 == codecSelferValueTypeArray1234 { - yyl1329 := r.ReadArrayStart() - if yyl1329 == 0 { + } else if yyct1372 == codecSelferValueTypeArray1234 { + yyl1372 := r.ReadArrayStart() + if yyl1372 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1329, d) + x.codecDecodeSelfFromArray(yyl1372, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18413,12 +19024,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1330Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1330Slc - var yyhl1330 bool = l >= 0 - for yyj1330 := 0; ; yyj1330++ { - if yyhl1330 { - if yyj1330 >= l { + var yys1373Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1373Slc + var yyhl1373 bool = l >= 0 + for yyj1373 := 0; ; yyj1373++ { + if yyhl1373 { + if yyj1373 >= l { break } } else { @@ -18427,38 +19038,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1330Slc = r.DecodeBytes(yys1330Slc, true, true) - yys1330 := string(yys1330Slc) + yys1373Slc = r.DecodeBytes(yys1373Slc, true, true) + yys1373 := string(yys1373Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1330 { + switch yys1373 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1331 := &x.Add - yym1332 := z.DecBinary() - _ = yym1332 + yyv1374 := &x.Add + yym1375 := z.DecBinary() + _ = yym1375 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1331), d) + h.decSliceCapability((*[]Capability)(yyv1374), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1333 := &x.Drop - yym1334 := z.DecBinary() - _ = yym1334 + yyv1376 := &x.Drop + yym1377 := z.DecBinary() + _ = yym1377 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1333), d) + h.decSliceCapability((*[]Capability)(yyv1376), d) } } default: - z.DecStructFieldNotFound(-1, yys1330) - } // end switch yys1330 - } // end for yyj1330 + z.DecStructFieldNotFound(-1, yys1373) + } // end switch yys1373 + } // end for yyj1373 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18466,16 +19077,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1335 int - var yyb1335 bool - var yyhl1335 bool = l >= 0 - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + var yyj1378 int + var yyb1378 bool + var yyhl1378 bool = l >= 0 + yyj1378++ + if yyhl1378 { + yyb1378 = yyj1378 > l } else { - yyb1335 = r.CheckBreak() + yyb1378 = r.CheckBreak() } - if yyb1335 { + if yyb1378 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18483,21 +19094,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1336 := &x.Add - yym1337 := z.DecBinary() - _ = yym1337 + yyv1379 := &x.Add + yym1380 := z.DecBinary() + _ = yym1380 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1336), d) + h.decSliceCapability((*[]Capability)(yyv1379), d) } } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1378++ + if yyhl1378 { + yyb1378 = yyj1378 > l } else { - yyb1335 = r.CheckBreak() + yyb1378 = r.CheckBreak() } - if yyb1335 { + if yyb1378 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18505,26 +19116,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1338 := &x.Drop - yym1339 := z.DecBinary() - _ = yym1339 + yyv1381 := &x.Drop + yym1382 := z.DecBinary() + _ = yym1382 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1338), d) + h.decSliceCapability((*[]Capability)(yyv1381), d) } } for { - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1378++ + if yyhl1378 { + yyb1378 = yyj1378 > l } else { - yyb1335 = r.CheckBreak() + yyb1378 = r.CheckBreak() } - if yyb1335 { + if yyb1378 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1335-1, "") + z.DecStructFieldNotFound(yyj1378-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18536,34 +19147,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1340 := z.EncBinary() - _ = yym1340 + yym1383 := z.EncBinary() + _ = yym1383 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1341 := !z.EncBinary() - yy2arr1341 := z.EncBasicHandle().StructToArray - var yyq1341 [2]bool - _, _, _ = yysep1341, yyq1341, yy2arr1341 - const yyr1341 bool = false - yyq1341[0] = len(x.Limits) != 0 - yyq1341[1] = len(x.Requests) != 0 - var yynn1341 int - if yyr1341 || yy2arr1341 { + yysep1384 := !z.EncBinary() + yy2arr1384 := z.EncBasicHandle().StructToArray + var yyq1384 [2]bool + _, _, _ = yysep1384, yyq1384, yy2arr1384 + const yyr1384 bool = false + yyq1384[0] = len(x.Limits) != 0 + yyq1384[1] = len(x.Requests) != 0 + var yynn1384 int + if yyr1384 || yy2arr1384 { r.EncodeArrayStart(2) } else { - yynn1341 = 0 - for _, b := range yyq1341 { + yynn1384 = 0 + for _, b := range yyq1384 { if b { - yynn1341++ + yynn1384++ } } - r.EncodeMapStart(yynn1341) - yynn1341 = 0 + r.EncodeMapStart(yynn1384) + yynn1384 = 0 } - if yyr1341 || yy2arr1341 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1341[0] { + if yyq1384[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -18573,7 +19184,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1341[0] { + if yyq1384[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18584,9 +19195,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1341 || yy2arr1341 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1341[1] { + if yyq1384[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -18596,7 +19207,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1341[1] { + if yyq1384[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18607,7 +19218,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1341 || yy2arr1341 { + if yyr1384 || yy2arr1384 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18620,25 +19231,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1344 := z.DecBinary() - _ = yym1344 + yym1387 := z.DecBinary() + _ = yym1387 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1345 := r.ContainerType() - if yyct1345 == codecSelferValueTypeMap1234 { - yyl1345 := r.ReadMapStart() - if yyl1345 == 0 { + yyct1388 := r.ContainerType() + if yyct1388 == codecSelferValueTypeMap1234 { + yyl1388 := r.ReadMapStart() + if yyl1388 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1345, d) + x.codecDecodeSelfFromMap(yyl1388, d) } - } else if yyct1345 == codecSelferValueTypeArray1234 { - yyl1345 := r.ReadArrayStart() - if yyl1345 == 0 { + } else if yyct1388 == codecSelferValueTypeArray1234 { + yyl1388 := r.ReadArrayStart() + if yyl1388 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1345, d) + x.codecDecodeSelfFromArray(yyl1388, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18650,12 +19261,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1346Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1346Slc - var yyhl1346 bool = l >= 0 - for yyj1346 := 0; ; yyj1346++ { - if yyhl1346 { - if yyj1346 >= l { + var yys1389Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1389Slc + var yyhl1389 bool = l >= 0 + for yyj1389 := 0; ; yyj1389++ { + if yyhl1389 { + if yyj1389 >= l { break } } else { @@ -18664,28 +19275,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1346Slc = r.DecodeBytes(yys1346Slc, true, true) - yys1346 := string(yys1346Slc) + yys1389Slc = r.DecodeBytes(yys1389Slc, true, true) + yys1389 := string(yys1389Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1346 { + switch yys1389 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1347 := &x.Limits - yyv1347.CodecDecodeSelf(d) + yyv1390 := &x.Limits + yyv1390.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1348 := &x.Requests - yyv1348.CodecDecodeSelf(d) + yyv1391 := &x.Requests + yyv1391.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1346) - } // end switch yys1346 - } // end for yyj1346 + z.DecStructFieldNotFound(-1, yys1389) + } // end switch yys1389 + } // end for yyj1389 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18693,16 +19304,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1349 int - var yyb1349 bool - var yyhl1349 bool = l >= 0 - yyj1349++ - if yyhl1349 { - yyb1349 = yyj1349 > l + var yyj1392 int + var yyb1392 bool + var yyhl1392 bool = l >= 0 + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l } else { - yyb1349 = r.CheckBreak() + yyb1392 = r.CheckBreak() } - if yyb1349 { + if yyb1392 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18710,16 +19321,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1350 := &x.Limits - yyv1350.CodecDecodeSelf(d) + yyv1393 := &x.Limits + yyv1393.CodecDecodeSelf(d) } - yyj1349++ - if yyhl1349 { - yyb1349 = yyj1349 > l + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l } else { - yyb1349 = r.CheckBreak() + yyb1392 = r.CheckBreak() } - if yyb1349 { + if yyb1392 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18727,21 +19338,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1351 := &x.Requests - yyv1351.CodecDecodeSelf(d) + yyv1394 := &x.Requests + yyv1394.CodecDecodeSelf(d) } for { - yyj1349++ - if yyhl1349 { - yyb1349 = yyj1349 > l + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l } else { - yyb1349 = r.CheckBreak() + yyb1392 = r.CheckBreak() } - if yyb1349 { + if yyb1392 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1349-1, "") + z.DecStructFieldNotFound(yyj1392-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18753,50 +19364,50 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1352 := z.EncBinary() - _ = yym1352 + yym1395 := z.EncBinary() + _ = yym1395 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1353 := !z.EncBinary() - yy2arr1353 := z.EncBasicHandle().StructToArray - var yyq1353 [18]bool - _, _, _ = yysep1353, yyq1353, yy2arr1353 - const yyr1353 bool = false - yyq1353[1] = x.Image != "" - yyq1353[2] = len(x.Command) != 0 - yyq1353[3] = len(x.Args) != 0 - yyq1353[4] = x.WorkingDir != "" - yyq1353[5] = len(x.Ports) != 0 - yyq1353[6] = len(x.Env) != 0 - yyq1353[7] = true - yyq1353[8] = len(x.VolumeMounts) != 0 - yyq1353[9] = x.LivenessProbe != nil - yyq1353[10] = x.ReadinessProbe != nil - yyq1353[11] = x.Lifecycle != nil - yyq1353[12] = x.TerminationMessagePath != "" - yyq1353[13] = x.ImagePullPolicy != "" - yyq1353[14] = x.SecurityContext != nil - yyq1353[15] = x.Stdin != false - yyq1353[16] = x.StdinOnce != false - yyq1353[17] = x.TTY != false - var yynn1353 int - if yyr1353 || yy2arr1353 { + yysep1396 := !z.EncBinary() + yy2arr1396 := z.EncBasicHandle().StructToArray + var yyq1396 [18]bool + _, _, _ = yysep1396, yyq1396, yy2arr1396 + const yyr1396 bool = false + yyq1396[1] = x.Image != "" + yyq1396[2] = len(x.Command) != 0 + yyq1396[3] = len(x.Args) != 0 + yyq1396[4] = x.WorkingDir != "" + yyq1396[5] = len(x.Ports) != 0 + yyq1396[6] = len(x.Env) != 0 + yyq1396[7] = true + yyq1396[8] = len(x.VolumeMounts) != 0 + yyq1396[9] = x.LivenessProbe != nil + yyq1396[10] = x.ReadinessProbe != nil + yyq1396[11] = x.Lifecycle != nil + yyq1396[12] = x.TerminationMessagePath != "" + yyq1396[13] = x.ImagePullPolicy != "" + yyq1396[14] = x.SecurityContext != nil + yyq1396[15] = x.Stdin != false + yyq1396[16] = x.StdinOnce != false + yyq1396[17] = x.TTY != false + var yynn1396 int + if yyr1396 || yy2arr1396 { r.EncodeArrayStart(18) } else { - yynn1353 = 1 - for _, b := range yyq1353 { + yynn1396 = 1 + for _, b := range yyq1396 { if b { - yynn1353++ + yynn1396++ } } - r.EncodeMapStart(yynn1353) - yynn1353 = 0 + r.EncodeMapStart(yynn1396) + yynn1396 = 0 } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1355 := z.EncBinary() - _ = yym1355 + yym1398 := z.EncBinary() + _ = yym1398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -18805,18 +19416,18 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1356 := z.EncBinary() - _ = yym1356 + yym1399 := z.EncBinary() + _ = yym1399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[1] { - yym1358 := z.EncBinary() - _ = yym1358 + if yyq1396[1] { + yym1401 := z.EncBinary() + _ = yym1401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -18825,26 +19436,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1353[1] { + if yyq1396[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1359 := z.EncBinary() - _ = yym1359 + yym1402 := z.EncBinary() + _ = yym1402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[2] { + if yyq1396[2] { if x.Command == nil { r.EncodeNil() } else { - yym1361 := z.EncBinary() - _ = yym1361 + yym1404 := z.EncBinary() + _ = yym1404 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18854,15 +19465,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[2] { + if yyq1396[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1362 := z.EncBinary() - _ = yym1362 + yym1405 := z.EncBinary() + _ = yym1405 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18870,14 +19481,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[3] { + if yyq1396[3] { if x.Args == nil { r.EncodeNil() } else { - yym1364 := z.EncBinary() - _ = yym1364 + yym1407 := z.EncBinary() + _ = yym1407 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -18887,15 +19498,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[3] { + if yyq1396[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1365 := z.EncBinary() - _ = yym1365 + yym1408 := z.EncBinary() + _ = yym1408 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -18903,11 +19514,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[4] { - yym1367 := z.EncBinary() - _ = yym1367 + if yyq1396[4] { + yym1410 := z.EncBinary() + _ = yym1410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -18916,26 +19527,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1353[4] { + if yyq1396[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1368 := z.EncBinary() - _ = yym1368 + yym1411 := z.EncBinary() + _ = yym1411 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[5] { + if yyq1396[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1370 := z.EncBinary() - _ = yym1370 + yym1413 := z.EncBinary() + _ = yym1413 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -18945,15 +19556,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[5] { + if yyq1396[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1371 := z.EncBinary() - _ = yym1371 + yym1414 := z.EncBinary() + _ = yym1414 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -18961,14 +19572,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[6] { + if yyq1396[6] { if x.Env == nil { r.EncodeNil() } else { - yym1373 := z.EncBinary() - _ = yym1373 + yym1416 := z.EncBinary() + _ = yym1416 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -18978,15 +19589,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[6] { + if yyq1396[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1374 := z.EncBinary() - _ = yym1374 + yym1417 := z.EncBinary() + _ = yym1417 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -18994,31 +19605,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[7] { - yy1376 := &x.Resources - yy1376.CodecEncodeSelf(e) + if yyq1396[7] { + yy1419 := &x.Resources + yy1419.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1353[7] { + if yyq1396[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1377 := &x.Resources - yy1377.CodecEncodeSelf(e) + yy1420 := &x.Resources + yy1420.CodecEncodeSelf(e) } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[8] { + if yyq1396[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1379 := z.EncBinary() - _ = yym1379 + yym1422 := z.EncBinary() + _ = yym1422 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -19028,15 +19639,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[8] { + if yyq1396[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1380 := z.EncBinary() - _ = yym1380 + yym1423 := z.EncBinary() + _ = yym1423 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -19044,9 +19655,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[9] { + if yyq1396[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -19056,7 +19667,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[9] { + if yyq1396[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19067,9 +19678,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[10] { + if yyq1396[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -19079,7 +19690,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[10] { + if yyq1396[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19090,9 +19701,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[11] { + if yyq1396[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -19102,7 +19713,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[11] { + if yyq1396[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19113,11 +19724,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[12] { - yym1385 := z.EncBinary() - _ = yym1385 + if yyq1396[12] { + yym1428 := z.EncBinary() + _ = yym1428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -19126,36 +19737,36 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1353[12] { + if yyq1396[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1386 := z.EncBinary() - _ = yym1386 + yym1429 := z.EncBinary() + _ = yym1429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[13] { + if yyq1396[13] { x.ImagePullPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1353[13] { + if yyq1396[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[14] { + if yyq1396[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -19165,7 +19776,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1353[14] { + if yyq1396[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19176,11 +19787,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[15] { - yym1390 := z.EncBinary() - _ = yym1390 + if yyq1396[15] { + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -19189,23 +19800,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1353[15] { + if yyq1396[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1391 := z.EncBinary() - _ = yym1391 + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[16] { - yym1393 := z.EncBinary() - _ = yym1393 + if yyq1396[16] { + yym1436 := z.EncBinary() + _ = yym1436 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -19214,23 +19825,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1353[16] { + if yyq1396[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1394 := z.EncBinary() - _ = yym1394 + yym1437 := z.EncBinary() + _ = yym1437 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1353[17] { - yym1396 := z.EncBinary() - _ = yym1396 + if yyq1396[17] { + yym1439 := z.EncBinary() + _ = yym1439 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -19239,19 +19850,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1353[17] { + if yyq1396[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1397 := z.EncBinary() - _ = yym1397 + yym1440 := z.EncBinary() + _ = yym1440 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1353 || yy2arr1353 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19264,25 +19875,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1398 := z.DecBinary() - _ = yym1398 + yym1441 := z.DecBinary() + _ = yym1441 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1399 := r.ContainerType() - if yyct1399 == codecSelferValueTypeMap1234 { - yyl1399 := r.ReadMapStart() - if yyl1399 == 0 { + yyct1442 := r.ContainerType() + if yyct1442 == codecSelferValueTypeMap1234 { + yyl1442 := r.ReadMapStart() + if yyl1442 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1399, d) + x.codecDecodeSelfFromMap(yyl1442, d) } - } else if yyct1399 == codecSelferValueTypeArray1234 { - yyl1399 := r.ReadArrayStart() - if yyl1399 == 0 { + } else if yyct1442 == codecSelferValueTypeArray1234 { + yyl1442 := r.ReadArrayStart() + if yyl1442 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1399, d) + x.codecDecodeSelfFromArray(yyl1442, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19294,12 +19905,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1400Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1400Slc - var yyhl1400 bool = l >= 0 - for yyj1400 := 0; ; yyj1400++ { - if yyhl1400 { - if yyj1400 >= l { + var yys1443Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1443Slc + var yyhl1443 bool = l >= 0 + for yyj1443 := 0; ; yyj1443++ { + if yyhl1443 { + if yyj1443 >= l { break } } else { @@ -19308,10 +19919,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1400Slc = r.DecodeBytes(yys1400Slc, true, true) - yys1400 := string(yys1400Slc) + yys1443Slc = r.DecodeBytes(yys1443Slc, true, true) + yys1443 := string(yys1443Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1400 { + switch yys1443 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -19328,24 +19939,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1403 := &x.Command - yym1404 := z.DecBinary() - _ = yym1404 + yyv1446 := &x.Command + yym1447 := z.DecBinary() + _ = yym1447 if false { } else { - z.F.DecSliceStringX(yyv1403, false, d) + z.F.DecSliceStringX(yyv1446, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1405 := &x.Args - yym1406 := z.DecBinary() - _ = yym1406 + yyv1448 := &x.Args + yym1449 := z.DecBinary() + _ = yym1449 if false { } else { - z.F.DecSliceStringX(yyv1405, false, d) + z.F.DecSliceStringX(yyv1448, false, d) } } case "workingDir": @@ -19358,43 +19969,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1408 := &x.Ports - yym1409 := z.DecBinary() - _ = yym1409 + yyv1451 := &x.Ports + yym1452 := z.DecBinary() + _ = yym1452 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1408), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1451), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1410 := &x.Env - yym1411 := z.DecBinary() - _ = yym1411 + yyv1453 := &x.Env + yym1454 := z.DecBinary() + _ = yym1454 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1410), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1453), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1412 := &x.Resources - yyv1412.CodecDecodeSelf(d) + yyv1455 := &x.Resources + yyv1455.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1413 := &x.VolumeMounts - yym1414 := z.DecBinary() - _ = yym1414 + yyv1456 := &x.VolumeMounts + yym1457 := z.DecBinary() + _ = yym1457 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1413), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1456), d) } } case "livenessProbe": @@ -19472,9 +20083,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1400) - } // end switch yys1400 - } // end for yyj1400 + z.DecStructFieldNotFound(-1, yys1443) + } // end switch yys1443 + } // end for yyj1443 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19482,16 +20093,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1424 int - var yyb1424 bool - var yyhl1424 bool = l >= 0 - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + var yyj1467 int + var yyb1467 bool + var yyhl1467 bool = l >= 0 + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19501,13 +20112,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19517,13 +20128,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19531,21 +20142,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1427 := &x.Command - yym1428 := z.DecBinary() - _ = yym1428 + yyv1470 := &x.Command + yym1471 := z.DecBinary() + _ = yym1471 if false { } else { - z.F.DecSliceStringX(yyv1427, false, d) + z.F.DecSliceStringX(yyv1470, false, d) } } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19553,21 +20164,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1429 := &x.Args - yym1430 := z.DecBinary() - _ = yym1430 + yyv1472 := &x.Args + yym1473 := z.DecBinary() + _ = yym1473 if false { } else { - z.F.DecSliceStringX(yyv1429, false, d) + z.F.DecSliceStringX(yyv1472, false, d) } } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19577,13 +20188,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19591,21 +20202,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1432 := &x.Ports - yym1433 := z.DecBinary() - _ = yym1433 + yyv1475 := &x.Ports + yym1476 := z.DecBinary() + _ = yym1476 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1432), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1475), d) } } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19613,21 +20224,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1434 := &x.Env - yym1435 := z.DecBinary() - _ = yym1435 + yyv1477 := &x.Env + yym1478 := z.DecBinary() + _ = yym1478 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1434), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1477), d) } } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19635,16 +20246,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1436 := &x.Resources - yyv1436.CodecDecodeSelf(d) + yyv1479 := &x.Resources + yyv1479.CodecDecodeSelf(d) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19652,21 +20263,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1437 := &x.VolumeMounts - yym1438 := z.DecBinary() - _ = yym1438 + yyv1480 := &x.VolumeMounts + yym1481 := z.DecBinary() + _ = yym1481 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1437), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1480), d) } } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19681,13 +20292,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19702,13 +20313,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19723,13 +20334,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19739,13 +20350,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19755,13 +20366,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19776,13 +20387,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19792,13 +20403,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19808,13 +20419,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19825,17 +20436,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1424++ - if yyhl1424 { - yyb1424 = yyj1424 > l + yyj1467++ + if yyhl1467 { + yyb1467 = yyj1467 > l } else { - yyb1424 = r.CheckBreak() + yyb1467 = r.CheckBreak() } - if yyb1424 { + if yyb1467 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1424-1, "") + z.DecStructFieldNotFound(yyj1467-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19847,35 +20458,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1448 := z.EncBinary() - _ = yym1448 + yym1491 := z.EncBinary() + _ = yym1491 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1449 := !z.EncBinary() - yy2arr1449 := z.EncBasicHandle().StructToArray - var yyq1449 [3]bool - _, _, _ = yysep1449, yyq1449, yy2arr1449 - const yyr1449 bool = false - yyq1449[0] = x.Exec != nil - yyq1449[1] = x.HTTPGet != nil - yyq1449[2] = x.TCPSocket != nil - var yynn1449 int - if yyr1449 || yy2arr1449 { + yysep1492 := !z.EncBinary() + yy2arr1492 := z.EncBasicHandle().StructToArray + var yyq1492 [3]bool + _, _, _ = yysep1492, yyq1492, yy2arr1492 + const yyr1492 bool = false + yyq1492[0] = x.Exec != nil + yyq1492[1] = x.HTTPGet != nil + yyq1492[2] = x.TCPSocket != nil + var yynn1492 int + if yyr1492 || yy2arr1492 { r.EncodeArrayStart(3) } else { - yynn1449 = 0 - for _, b := range yyq1449 { + yynn1492 = 0 + for _, b := range yyq1492 { if b { - yynn1449++ + yynn1492++ } } - r.EncodeMapStart(yynn1449) - yynn1449 = 0 + r.EncodeMapStart(yynn1492) + yynn1492 = 0 } - if yyr1449 || yy2arr1449 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[0] { + if yyq1492[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -19885,7 +20496,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[0] { + if yyq1492[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19896,9 +20507,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[1] { + if yyq1492[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -19908,7 +20519,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[1] { + if yyq1492[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19919,9 +20530,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[2] { + if yyq1492[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -19931,7 +20542,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[2] { + if yyq1492[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19942,7 +20553,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19955,25 +20566,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1453 := z.DecBinary() - _ = yym1453 + yym1496 := z.DecBinary() + _ = yym1496 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1454 := r.ContainerType() - if yyct1454 == codecSelferValueTypeMap1234 { - yyl1454 := r.ReadMapStart() - if yyl1454 == 0 { + yyct1497 := r.ContainerType() + if yyct1497 == codecSelferValueTypeMap1234 { + yyl1497 := r.ReadMapStart() + if yyl1497 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1454, d) + x.codecDecodeSelfFromMap(yyl1497, d) } - } else if yyct1454 == codecSelferValueTypeArray1234 { - yyl1454 := r.ReadArrayStart() - if yyl1454 == 0 { + } else if yyct1497 == codecSelferValueTypeArray1234 { + yyl1497 := r.ReadArrayStart() + if yyl1497 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1454, d) + x.codecDecodeSelfFromArray(yyl1497, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19985,12 +20596,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1455Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1455Slc - var yyhl1455 bool = l >= 0 - for yyj1455 := 0; ; yyj1455++ { - if yyhl1455 { - if yyj1455 >= l { + var yys1498Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1498Slc + var yyhl1498 bool = l >= 0 + for yyj1498 := 0; ; yyj1498++ { + if yyhl1498 { + if yyj1498 >= l { break } } else { @@ -19999,10 +20610,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1455Slc = r.DecodeBytes(yys1455Slc, true, true) - yys1455 := string(yys1455Slc) + yys1498Slc = r.DecodeBytes(yys1498Slc, true, true) + yys1498 := string(yys1498Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1455 { + switch yys1498 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -20037,9 +20648,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1455) - } // end switch yys1455 - } // end for yyj1455 + z.DecStructFieldNotFound(-1, yys1498) + } // end switch yys1498 + } // end for yyj1498 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20047,16 +20658,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1459 int - var yyb1459 bool - var yyhl1459 bool = l >= 0 - yyj1459++ - if yyhl1459 { - yyb1459 = yyj1459 > l + var yyj1502 int + var yyb1502 bool + var yyhl1502 bool = l >= 0 + yyj1502++ + if yyhl1502 { + yyb1502 = yyj1502 > l } else { - yyb1459 = r.CheckBreak() + yyb1502 = r.CheckBreak() } - if yyb1459 { + if yyb1502 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20071,13 +20682,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1459++ - if yyhl1459 { - yyb1459 = yyj1459 > l + yyj1502++ + if yyhl1502 { + yyb1502 = yyj1502 > l } else { - yyb1459 = r.CheckBreak() + yyb1502 = r.CheckBreak() } - if yyb1459 { + if yyb1502 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20092,13 +20703,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1459++ - if yyhl1459 { - yyb1459 = yyj1459 > l + yyj1502++ + if yyhl1502 { + yyb1502 = yyj1502 > l } else { - yyb1459 = r.CheckBreak() + yyb1502 = r.CheckBreak() } - if yyb1459 { + if yyb1502 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20114,17 +20725,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1459++ - if yyhl1459 { - yyb1459 = yyj1459 > l + yyj1502++ + if yyhl1502 { + yyb1502 = yyj1502 > l } else { - yyb1459 = r.CheckBreak() + yyb1502 = r.CheckBreak() } - if yyb1459 { + if yyb1502 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1459-1, "") + z.DecStructFieldNotFound(yyj1502-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20136,34 +20747,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1463 := z.EncBinary() - _ = yym1463 + yym1506 := z.EncBinary() + _ = yym1506 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1464 := !z.EncBinary() - yy2arr1464 := z.EncBasicHandle().StructToArray - var yyq1464 [2]bool - _, _, _ = yysep1464, yyq1464, yy2arr1464 - const yyr1464 bool = false - yyq1464[0] = x.PostStart != nil - yyq1464[1] = x.PreStop != nil - var yynn1464 int - if yyr1464 || yy2arr1464 { + yysep1507 := !z.EncBinary() + yy2arr1507 := z.EncBasicHandle().StructToArray + var yyq1507 [2]bool + _, _, _ = yysep1507, yyq1507, yy2arr1507 + const yyr1507 bool = false + yyq1507[0] = x.PostStart != nil + yyq1507[1] = x.PreStop != nil + var yynn1507 int + if yyr1507 || yy2arr1507 { r.EncodeArrayStart(2) } else { - yynn1464 = 0 - for _, b := range yyq1464 { + yynn1507 = 0 + for _, b := range yyq1507 { if b { - yynn1464++ + yynn1507++ } } - r.EncodeMapStart(yynn1464) - yynn1464 = 0 + r.EncodeMapStart(yynn1507) + yynn1507 = 0 } - if yyr1464 || yy2arr1464 { + if yyr1507 || yy2arr1507 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1464[0] { + if yyq1507[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -20173,7 +20784,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1464[0] { + if yyq1507[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20184,9 +20795,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1464 || yy2arr1464 { + if yyr1507 || yy2arr1507 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1464[1] { + if yyq1507[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -20196,7 +20807,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1464[1] { + if yyq1507[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20207,7 +20818,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1464 || yy2arr1464 { + if yyr1507 || yy2arr1507 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20220,25 +20831,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1467 := z.DecBinary() - _ = yym1467 + yym1510 := z.DecBinary() + _ = yym1510 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1468 := r.ContainerType() - if yyct1468 == codecSelferValueTypeMap1234 { - yyl1468 := r.ReadMapStart() - if yyl1468 == 0 { + yyct1511 := r.ContainerType() + if yyct1511 == codecSelferValueTypeMap1234 { + yyl1511 := r.ReadMapStart() + if yyl1511 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1468, d) + x.codecDecodeSelfFromMap(yyl1511, d) } - } else if yyct1468 == codecSelferValueTypeArray1234 { - yyl1468 := r.ReadArrayStart() - if yyl1468 == 0 { + } else if yyct1511 == codecSelferValueTypeArray1234 { + yyl1511 := r.ReadArrayStart() + if yyl1511 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1468, d) + x.codecDecodeSelfFromArray(yyl1511, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20250,12 +20861,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1469Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1469Slc - var yyhl1469 bool = l >= 0 - for yyj1469 := 0; ; yyj1469++ { - if yyhl1469 { - if yyj1469 >= l { + var yys1512Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1512Slc + var yyhl1512 bool = l >= 0 + for yyj1512 := 0; ; yyj1512++ { + if yyhl1512 { + if yyj1512 >= l { break } } else { @@ -20264,10 +20875,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1469Slc = r.DecodeBytes(yys1469Slc, true, true) - yys1469 := string(yys1469Slc) + yys1512Slc = r.DecodeBytes(yys1512Slc, true, true) + yys1512 := string(yys1512Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1469 { + switch yys1512 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -20291,9 +20902,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1469) - } // end switch yys1469 - } // end for yyj1469 + z.DecStructFieldNotFound(-1, yys1512) + } // end switch yys1512 + } // end for yyj1512 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20301,16 +20912,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1472 int - var yyb1472 bool - var yyhl1472 bool = l >= 0 - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + var yyj1515 int + var yyb1515 bool + var yyhl1515 bool = l >= 0 + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20325,13 +20936,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20347,17 +20958,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1515++ + if yyhl1515 { + yyb1515 = yyj1515 > l } else { - yyb1472 = r.CheckBreak() + yyb1515 = r.CheckBreak() } - if yyb1472 { + if yyb1515 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1472-1, "") + z.DecStructFieldNotFound(yyj1515-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20366,8 +20977,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1475 := z.EncBinary() - _ = yym1475 + yym1518 := z.EncBinary() + _ = yym1518 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -20379,8 +20990,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1476 := z.DecBinary() - _ = yym1476 + yym1519 := z.DecBinary() + _ = yym1519 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -20395,36 +21006,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1477 := z.EncBinary() - _ = yym1477 + yym1520 := z.EncBinary() + _ = yym1520 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1478 := !z.EncBinary() - yy2arr1478 := z.EncBasicHandle().StructToArray - var yyq1478 [2]bool - _, _, _ = yysep1478, yyq1478, yy2arr1478 - const yyr1478 bool = false - yyq1478[0] = x.Reason != "" - yyq1478[1] = x.Message != "" - var yynn1478 int - if yyr1478 || yy2arr1478 { + yysep1521 := !z.EncBinary() + yy2arr1521 := z.EncBasicHandle().StructToArray + var yyq1521 [2]bool + _, _, _ = yysep1521, yyq1521, yy2arr1521 + const yyr1521 bool = false + yyq1521[0] = x.Reason != "" + yyq1521[1] = x.Message != "" + var yynn1521 int + if yyr1521 || yy2arr1521 { r.EncodeArrayStart(2) } else { - yynn1478 = 0 - for _, b := range yyq1478 { + yynn1521 = 0 + for _, b := range yyq1521 { if b { - yynn1478++ + yynn1521++ } } - r.EncodeMapStart(yynn1478) - yynn1478 = 0 + r.EncodeMapStart(yynn1521) + yynn1521 = 0 } - if yyr1478 || yy2arr1478 { + if yyr1521 || yy2arr1521 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1478[0] { - yym1480 := z.EncBinary() - _ = yym1480 + if yyq1521[0] { + yym1523 := z.EncBinary() + _ = yym1523 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -20433,23 +21044,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1478[0] { + if yyq1521[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1481 := z.EncBinary() - _ = yym1481 + yym1524 := z.EncBinary() + _ = yym1524 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1478 || yy2arr1478 { + if yyr1521 || yy2arr1521 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1478[1] { - yym1483 := z.EncBinary() - _ = yym1483 + if yyq1521[1] { + yym1526 := z.EncBinary() + _ = yym1526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -20458,19 +21069,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1478[1] { + if yyq1521[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1484 := z.EncBinary() - _ = yym1484 + yym1527 := z.EncBinary() + _ = yym1527 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1478 || yy2arr1478 { + if yyr1521 || yy2arr1521 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20483,25 +21094,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1485 := z.DecBinary() - _ = yym1485 + yym1528 := z.DecBinary() + _ = yym1528 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1486 := r.ContainerType() - if yyct1486 == codecSelferValueTypeMap1234 { - yyl1486 := r.ReadMapStart() - if yyl1486 == 0 { + yyct1529 := r.ContainerType() + if yyct1529 == codecSelferValueTypeMap1234 { + yyl1529 := r.ReadMapStart() + if yyl1529 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1486, d) + x.codecDecodeSelfFromMap(yyl1529, d) } - } else if yyct1486 == codecSelferValueTypeArray1234 { - yyl1486 := r.ReadArrayStart() - if yyl1486 == 0 { + } else if yyct1529 == codecSelferValueTypeArray1234 { + yyl1529 := r.ReadArrayStart() + if yyl1529 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1486, d) + x.codecDecodeSelfFromArray(yyl1529, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20513,12 +21124,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1487Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1487Slc - var yyhl1487 bool = l >= 0 - for yyj1487 := 0; ; yyj1487++ { - if yyhl1487 { - if yyj1487 >= l { + var yys1530Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1530Slc + var yyhl1530 bool = l >= 0 + for yyj1530 := 0; ; yyj1530++ { + if yyhl1530 { + if yyj1530 >= l { break } } else { @@ -20527,10 +21138,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1487Slc = r.DecodeBytes(yys1487Slc, true, true) - yys1487 := string(yys1487Slc) + yys1530Slc = r.DecodeBytes(yys1530Slc, true, true) + yys1530 := string(yys1530Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1487 { + switch yys1530 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -20544,9 +21155,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1487) - } // end switch yys1487 - } // end for yyj1487 + z.DecStructFieldNotFound(-1, yys1530) + } // end switch yys1530 + } // end for yyj1530 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20554,16 +21165,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1490 int - var yyb1490 bool - var yyhl1490 bool = l >= 0 - yyj1490++ - if yyhl1490 { - yyb1490 = yyj1490 > l + var yyj1533 int + var yyb1533 bool + var yyhl1533 bool = l >= 0 + yyj1533++ + if yyhl1533 { + yyb1533 = yyj1533 > l } else { - yyb1490 = r.CheckBreak() + yyb1533 = r.CheckBreak() } - if yyb1490 { + if yyb1533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20573,13 +21184,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1490++ - if yyhl1490 { - yyb1490 = yyj1490 > l + yyj1533++ + if yyhl1533 { + yyb1533 = yyj1533 > l } else { - yyb1490 = r.CheckBreak() + yyb1533 = r.CheckBreak() } - if yyb1490 { + if yyb1533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20590,17 +21201,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1490++ - if yyhl1490 { - yyb1490 = yyj1490 > l + yyj1533++ + if yyhl1533 { + yyb1533 = yyj1533 > l } else { - yyb1490 = r.CheckBreak() + yyb1533 = r.CheckBreak() } - if yyb1490 { + if yyb1533 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1490-1, "") + z.DecStructFieldNotFound(yyj1533-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20612,68 +21223,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1493 := z.EncBinary() - _ = yym1493 + yym1536 := z.EncBinary() + _ = yym1536 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1494 := !z.EncBinary() - yy2arr1494 := z.EncBasicHandle().StructToArray - var yyq1494 [1]bool - _, _, _ = yysep1494, yyq1494, yy2arr1494 - const yyr1494 bool = false - yyq1494[0] = true - var yynn1494 int - if yyr1494 || yy2arr1494 { + yysep1537 := !z.EncBinary() + yy2arr1537 := z.EncBasicHandle().StructToArray + var yyq1537 [1]bool + _, _, _ = yysep1537, yyq1537, yy2arr1537 + const yyr1537 bool = false + yyq1537[0] = true + var yynn1537 int + if yyr1537 || yy2arr1537 { r.EncodeArrayStart(1) } else { - yynn1494 = 0 - for _, b := range yyq1494 { + yynn1537 = 0 + for _, b := range yyq1537 { if b { - yynn1494++ + yynn1537++ } } - r.EncodeMapStart(yynn1494) - yynn1494 = 0 + r.EncodeMapStart(yynn1537) + yynn1537 = 0 } - if yyr1494 || yy2arr1494 { + if yyr1537 || yy2arr1537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1494[0] { - yy1496 := &x.StartedAt - yym1497 := z.EncBinary() - _ = yym1497 + if yyq1537[0] { + yy1539 := &x.StartedAt + yym1540 := z.EncBinary() + _ = yym1540 if false { - } else if z.HasExtensions() && z.EncExt(yy1496) { - } else if yym1497 { - z.EncBinaryMarshal(yy1496) - } else if !yym1497 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1496) + } else if z.HasExtensions() && z.EncExt(yy1539) { + } else if yym1540 { + z.EncBinaryMarshal(yy1539) + } else if !yym1540 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1539) } else { - z.EncFallback(yy1496) + z.EncFallback(yy1539) } } else { r.EncodeNil() } } else { - if yyq1494[0] { + if yyq1537[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1498 := &x.StartedAt - yym1499 := z.EncBinary() - _ = yym1499 + yy1541 := &x.StartedAt + yym1542 := z.EncBinary() + _ = yym1542 if false { - } else if z.HasExtensions() && z.EncExt(yy1498) { - } else if yym1499 { - z.EncBinaryMarshal(yy1498) - } else if !yym1499 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1498) + } else if z.HasExtensions() && z.EncExt(yy1541) { + } else if yym1542 { + z.EncBinaryMarshal(yy1541) + } else if !yym1542 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1541) } else { - z.EncFallback(yy1498) + z.EncFallback(yy1541) } } } - if yyr1494 || yy2arr1494 { + if yyr1537 || yy2arr1537 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20686,25 +21297,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1500 := z.DecBinary() - _ = yym1500 + yym1543 := z.DecBinary() + _ = yym1543 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1501 := r.ContainerType() - if yyct1501 == codecSelferValueTypeMap1234 { - yyl1501 := r.ReadMapStart() - if yyl1501 == 0 { + yyct1544 := r.ContainerType() + if yyct1544 == codecSelferValueTypeMap1234 { + yyl1544 := r.ReadMapStart() + if yyl1544 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1501, d) + x.codecDecodeSelfFromMap(yyl1544, d) } - } else if yyct1501 == codecSelferValueTypeArray1234 { - yyl1501 := r.ReadArrayStart() - if yyl1501 == 0 { + } else if yyct1544 == codecSelferValueTypeArray1234 { + yyl1544 := r.ReadArrayStart() + if yyl1544 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1501, d) + x.codecDecodeSelfFromArray(yyl1544, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20716,12 +21327,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1502Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1502Slc - var yyhl1502 bool = l >= 0 - for yyj1502 := 0; ; yyj1502++ { - if yyhl1502 { - if yyj1502 >= l { + 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 { @@ -20730,31 +21341,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1502Slc = r.DecodeBytes(yys1502Slc, true, true) - yys1502 := string(yys1502Slc) + yys1545Slc = r.DecodeBytes(yys1545Slc, true, true) + yys1545 := string(yys1545Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1502 { + switch yys1545 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1503 := &x.StartedAt - yym1504 := z.DecBinary() - _ = yym1504 + yyv1546 := &x.StartedAt + yym1547 := z.DecBinary() + _ = yym1547 if false { - } else if z.HasExtensions() && z.DecExt(yyv1503) { - } else if yym1504 { - z.DecBinaryUnmarshal(yyv1503) - } else if !yym1504 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1503) + } else if z.HasExtensions() && z.DecExt(yyv1546) { + } else if yym1547 { + z.DecBinaryUnmarshal(yyv1546) + } else if !yym1547 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1546) } else { - z.DecFallback(yyv1503, false) + z.DecFallback(yyv1546, false) } } default: - z.DecStructFieldNotFound(-1, yys1502) - } // end switch yys1502 - } // end for yyj1502 + z.DecStructFieldNotFound(-1, yys1545) + } // end switch yys1545 + } // end for yyj1545 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20762,16 +21373,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1505 int - var yyb1505 bool - var yyhl1505 bool = l >= 0 - yyj1505++ - if yyhl1505 { - yyb1505 = yyj1505 > l + var yyj1548 int + var yyb1548 bool + var yyhl1548 bool = l >= 0 + yyj1548++ + if yyhl1548 { + yyb1548 = yyj1548 > l } else { - yyb1505 = r.CheckBreak() + yyb1548 = r.CheckBreak() } - if yyb1505 { + if yyb1548 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20779,31 +21390,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1506 := &x.StartedAt - yym1507 := z.DecBinary() - _ = yym1507 + yyv1549 := &x.StartedAt + yym1550 := z.DecBinary() + _ = yym1550 if false { - } else if z.HasExtensions() && z.DecExt(yyv1506) { - } else if yym1507 { - z.DecBinaryUnmarshal(yyv1506) - } else if !yym1507 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1506) + } else if z.HasExtensions() && z.DecExt(yyv1549) { + } else if yym1550 { + z.DecBinaryUnmarshal(yyv1549) + } else if !yym1550 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1549) } else { - z.DecFallback(yyv1506, false) + z.DecFallback(yyv1549, false) } } for { - yyj1505++ - if yyhl1505 { - yyb1505 = yyj1505 > l + yyj1548++ + if yyhl1548 { + yyb1548 = yyj1548 > l } else { - yyb1505 = r.CheckBreak() + yyb1548 = r.CheckBreak() } - if yyb1505 { + if yyb1548 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1505-1, "") + z.DecStructFieldNotFound(yyj1548-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20815,39 +21426,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1508 := z.EncBinary() - _ = yym1508 + yym1551 := z.EncBinary() + _ = yym1551 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1509 := !z.EncBinary() - yy2arr1509 := z.EncBasicHandle().StructToArray - var yyq1509 [7]bool - _, _, _ = yysep1509, yyq1509, yy2arr1509 - const yyr1509 bool = false - yyq1509[1] = x.Signal != 0 - yyq1509[2] = x.Reason != "" - yyq1509[3] = x.Message != "" - yyq1509[4] = true - yyq1509[5] = true - yyq1509[6] = x.ContainerID != "" - var yynn1509 int - if yyr1509 || yy2arr1509 { + yysep1552 := !z.EncBinary() + yy2arr1552 := z.EncBasicHandle().StructToArray + var yyq1552 [7]bool + _, _, _ = yysep1552, yyq1552, yy2arr1552 + const yyr1552 bool = false + yyq1552[1] = x.Signal != 0 + yyq1552[2] = x.Reason != "" + yyq1552[3] = x.Message != "" + yyq1552[4] = true + yyq1552[5] = true + yyq1552[6] = x.ContainerID != "" + var yynn1552 int + if yyr1552 || yy2arr1552 { r.EncodeArrayStart(7) } else { - yynn1509 = 1 - for _, b := range yyq1509 { + yynn1552 = 1 + for _, b := range yyq1552 { if b { - yynn1509++ + yynn1552++ } } - r.EncodeMapStart(yynn1509) - yynn1509 = 0 + r.EncodeMapStart(yynn1552) + yynn1552 = 0 } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1511 := z.EncBinary() - _ = yym1511 + yym1554 := z.EncBinary() + _ = yym1554 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -20856,18 +21467,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1512 := z.EncBinary() - _ = yym1512 + yym1555 := z.EncBinary() + _ = yym1555 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1509[1] { - yym1514 := z.EncBinary() - _ = yym1514 + if yyq1552[1] { + yym1557 := z.EncBinary() + _ = yym1557 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -20876,23 +21487,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1509[1] { + if yyq1552[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1515 := z.EncBinary() - _ = yym1515 + yym1558 := z.EncBinary() + _ = yym1558 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1509[2] { - yym1517 := z.EncBinary() - _ = yym1517 + if yyq1552[2] { + yym1560 := z.EncBinary() + _ = yym1560 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -20901,23 +21512,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1509[2] { + if yyq1552[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1518 := z.EncBinary() - _ = yym1518 + yym1561 := z.EncBinary() + _ = yym1561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1509[3] { - yym1520 := z.EncBinary() - _ = yym1520 + if yyq1552[3] { + yym1563 := z.EncBinary() + _ = yym1563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -20926,97 +21537,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1509[3] { + if yyq1552[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1521 := z.EncBinary() - _ = yym1521 + yym1564 := z.EncBinary() + _ = yym1564 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1509[4] { - yy1523 := &x.StartedAt - yym1524 := z.EncBinary() - _ = yym1524 + if yyq1552[4] { + yy1566 := &x.StartedAt + yym1567 := z.EncBinary() + _ = yym1567 if false { - } else if z.HasExtensions() && z.EncExt(yy1523) { - } else if yym1524 { - z.EncBinaryMarshal(yy1523) - } else if !yym1524 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1523) + } else if z.HasExtensions() && z.EncExt(yy1566) { + } else if yym1567 { + z.EncBinaryMarshal(yy1566) + } else if !yym1567 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1566) } else { - z.EncFallback(yy1523) + z.EncFallback(yy1566) } } else { r.EncodeNil() } } else { - if yyq1509[4] { + if yyq1552[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1525 := &x.StartedAt - yym1526 := z.EncBinary() - _ = yym1526 + yy1568 := &x.StartedAt + yym1569 := z.EncBinary() + _ = yym1569 if false { - } else if z.HasExtensions() && z.EncExt(yy1525) { - } else if yym1526 { - z.EncBinaryMarshal(yy1525) - } else if !yym1526 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1525) + } else if z.HasExtensions() && z.EncExt(yy1568) { + } else if yym1569 { + z.EncBinaryMarshal(yy1568) + } else if !yym1569 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1568) } else { - z.EncFallback(yy1525) + z.EncFallback(yy1568) } } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1509[5] { - yy1528 := &x.FinishedAt - yym1529 := z.EncBinary() - _ = yym1529 + if yyq1552[5] { + yy1571 := &x.FinishedAt + yym1572 := z.EncBinary() + _ = yym1572 if false { - } else if z.HasExtensions() && z.EncExt(yy1528) { - } else if yym1529 { - z.EncBinaryMarshal(yy1528) - } else if !yym1529 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1528) + } else if z.HasExtensions() && z.EncExt(yy1571) { + } else if yym1572 { + z.EncBinaryMarshal(yy1571) + } else if !yym1572 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1571) } else { - z.EncFallback(yy1528) + z.EncFallback(yy1571) } } else { r.EncodeNil() } } else { - if yyq1509[5] { + if yyq1552[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1530 := &x.FinishedAt - yym1531 := z.EncBinary() - _ = yym1531 + yy1573 := &x.FinishedAt + yym1574 := z.EncBinary() + _ = yym1574 if false { - } else if z.HasExtensions() && z.EncExt(yy1530) { - } else if yym1531 { - z.EncBinaryMarshal(yy1530) - } else if !yym1531 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1530) + } else if z.HasExtensions() && z.EncExt(yy1573) { + } else if yym1574 { + z.EncBinaryMarshal(yy1573) + } else if !yym1574 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1573) } else { - z.EncFallback(yy1530) + z.EncFallback(yy1573) } } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1509[6] { - yym1533 := z.EncBinary() - _ = yym1533 + if yyq1552[6] { + yym1576 := z.EncBinary() + _ = yym1576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -21025,19 +21636,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1509[6] { + if yyq1552[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1534 := z.EncBinary() - _ = yym1534 + yym1577 := z.EncBinary() + _ = yym1577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1509 || yy2arr1509 { + if yyr1552 || yy2arr1552 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21050,25 +21661,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1535 := z.DecBinary() - _ = yym1535 + yym1578 := z.DecBinary() + _ = yym1578 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1536 := r.ContainerType() - if yyct1536 == codecSelferValueTypeMap1234 { - yyl1536 := r.ReadMapStart() - if yyl1536 == 0 { + yyct1579 := r.ContainerType() + if yyct1579 == codecSelferValueTypeMap1234 { + yyl1579 := r.ReadMapStart() + if yyl1579 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1536, d) + x.codecDecodeSelfFromMap(yyl1579, d) } - } else if yyct1536 == codecSelferValueTypeArray1234 { - yyl1536 := r.ReadArrayStart() - if yyl1536 == 0 { + } else if yyct1579 == codecSelferValueTypeArray1234 { + yyl1579 := r.ReadArrayStart() + if yyl1579 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1536, d) + x.codecDecodeSelfFromArray(yyl1579, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21080,12 +21691,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1537Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1537Slc - var yyhl1537 bool = l >= 0 - for yyj1537 := 0; ; yyj1537++ { - if yyhl1537 { - if yyj1537 >= l { + var yys1580Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1580Slc + var yyhl1580 bool = l >= 0 + for yyj1580 := 0; ; yyj1580++ { + if yyhl1580 { + if yyj1580 >= l { break } } else { @@ -21094,10 +21705,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1537Slc = r.DecodeBytes(yys1537Slc, true, true) - yys1537 := string(yys1537Slc) + yys1580Slc = r.DecodeBytes(yys1580Slc, true, true) + yys1580 := string(yys1580Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1537 { + switch yys1580 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -21126,34 +21737,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1542 := &x.StartedAt - yym1543 := z.DecBinary() - _ = yym1543 + yyv1585 := &x.StartedAt + yym1586 := z.DecBinary() + _ = yym1586 if false { - } else if z.HasExtensions() && z.DecExt(yyv1542) { - } else if yym1543 { - z.DecBinaryUnmarshal(yyv1542) - } else if !yym1543 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1542) + } else if z.HasExtensions() && z.DecExt(yyv1585) { + } else if yym1586 { + z.DecBinaryUnmarshal(yyv1585) + } else if !yym1586 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1585) } else { - z.DecFallback(yyv1542, false) + z.DecFallback(yyv1585, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1544 := &x.FinishedAt - yym1545 := z.DecBinary() - _ = yym1545 + yyv1587 := &x.FinishedAt + yym1588 := z.DecBinary() + _ = yym1588 if false { - } else if z.HasExtensions() && z.DecExt(yyv1544) { - } else if yym1545 { - z.DecBinaryUnmarshal(yyv1544) - } else if !yym1545 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1544) + } else if z.HasExtensions() && z.DecExt(yyv1587) { + } else if yym1588 { + z.DecBinaryUnmarshal(yyv1587) + } else if !yym1588 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1587) } else { - z.DecFallback(yyv1544, false) + z.DecFallback(yyv1587, false) } } case "containerID": @@ -21163,9 +21774,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1537) - } // end switch yys1537 - } // end for yyj1537 + z.DecStructFieldNotFound(-1, yys1580) + } // end switch yys1580 + } // end for yyj1580 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21173,16 +21784,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1547 int - var yyb1547 bool - var yyhl1547 bool = l >= 0 - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + var yyj1590 int + var yyb1590 bool + var yyhl1590 bool = l >= 0 + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21192,13 +21803,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21208,13 +21819,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21224,13 +21835,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21240,13 +21851,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21254,26 +21865,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1552 := &x.StartedAt - yym1553 := z.DecBinary() - _ = yym1553 + yyv1595 := &x.StartedAt + yym1596 := z.DecBinary() + _ = yym1596 if false { - } else if z.HasExtensions() && z.DecExt(yyv1552) { - } else if yym1553 { - z.DecBinaryUnmarshal(yyv1552) - } else if !yym1553 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1552) + } else if z.HasExtensions() && z.DecExt(yyv1595) { + } else if yym1596 { + z.DecBinaryUnmarshal(yyv1595) + } else if !yym1596 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1595) } else { - z.DecFallback(yyv1552, false) + z.DecFallback(yyv1595, false) } } - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21281,26 +21892,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1554 := &x.FinishedAt - yym1555 := z.DecBinary() - _ = yym1555 + yyv1597 := &x.FinishedAt + yym1598 := z.DecBinary() + _ = yym1598 if false { - } else if z.HasExtensions() && z.DecExt(yyv1554) { - } else if yym1555 { - z.DecBinaryUnmarshal(yyv1554) - } else if !yym1555 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1554) + } else if z.HasExtensions() && z.DecExt(yyv1597) { + } else if yym1598 { + z.DecBinaryUnmarshal(yyv1597) + } else if !yym1598 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1597) } else { - z.DecFallback(yyv1554, false) + z.DecFallback(yyv1597, false) } } - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21311,17 +21922,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1547++ - if yyhl1547 { - yyb1547 = yyj1547 > l + yyj1590++ + if yyhl1590 { + yyb1590 = yyj1590 > l } else { - yyb1547 = r.CheckBreak() + yyb1590 = r.CheckBreak() } - if yyb1547 { + if yyb1590 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1547-1, "") + z.DecStructFieldNotFound(yyj1590-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21333,35 +21944,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1557 := z.EncBinary() - _ = yym1557 + yym1600 := z.EncBinary() + _ = yym1600 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1558 := !z.EncBinary() - yy2arr1558 := z.EncBasicHandle().StructToArray - var yyq1558 [3]bool - _, _, _ = yysep1558, yyq1558, yy2arr1558 - const yyr1558 bool = false - yyq1558[0] = x.Waiting != nil - yyq1558[1] = x.Running != nil - yyq1558[2] = x.Terminated != nil - var yynn1558 int - if yyr1558 || yy2arr1558 { + yysep1601 := !z.EncBinary() + yy2arr1601 := z.EncBasicHandle().StructToArray + var yyq1601 [3]bool + _, _, _ = yysep1601, yyq1601, yy2arr1601 + const yyr1601 bool = false + yyq1601[0] = x.Waiting != nil + yyq1601[1] = x.Running != nil + yyq1601[2] = x.Terminated != nil + var yynn1601 int + if yyr1601 || yy2arr1601 { r.EncodeArrayStart(3) } else { - yynn1558 = 0 - for _, b := range yyq1558 { + yynn1601 = 0 + for _, b := range yyq1601 { if b { - yynn1558++ + yynn1601++ } } - r.EncodeMapStart(yynn1558) - yynn1558 = 0 + r.EncodeMapStart(yynn1601) + yynn1601 = 0 } - if yyr1558 || yy2arr1558 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1558[0] { + if yyq1601[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -21371,7 +21982,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1558[0] { + if yyq1601[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21382,9 +21993,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1558 || yy2arr1558 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1558[1] { + if yyq1601[1] { if x.Running == nil { r.EncodeNil() } else { @@ -21394,7 +22005,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1558[1] { + if yyq1601[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21405,9 +22016,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1558 || yy2arr1558 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1558[2] { + if yyq1601[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -21417,7 +22028,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1558[2] { + if yyq1601[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21428,7 +22039,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1558 || yy2arr1558 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21441,25 +22052,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1562 := z.DecBinary() - _ = yym1562 + yym1605 := z.DecBinary() + _ = yym1605 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1563 := r.ContainerType() - if yyct1563 == codecSelferValueTypeMap1234 { - yyl1563 := r.ReadMapStart() - if yyl1563 == 0 { + yyct1606 := r.ContainerType() + if yyct1606 == codecSelferValueTypeMap1234 { + yyl1606 := r.ReadMapStart() + if yyl1606 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1563, d) + x.codecDecodeSelfFromMap(yyl1606, d) } - } else if yyct1563 == codecSelferValueTypeArray1234 { - yyl1563 := r.ReadArrayStart() - if yyl1563 == 0 { + } else if yyct1606 == codecSelferValueTypeArray1234 { + yyl1606 := r.ReadArrayStart() + if yyl1606 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1563, d) + x.codecDecodeSelfFromArray(yyl1606, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21471,12 +22082,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1564Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1564Slc - var yyhl1564 bool = l >= 0 - for yyj1564 := 0; ; yyj1564++ { - if yyhl1564 { - if yyj1564 >= l { + var yys1607Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1607Slc + var yyhl1607 bool = l >= 0 + for yyj1607 := 0; ; yyj1607++ { + if yyhl1607 { + if yyj1607 >= l { break } } else { @@ -21485,10 +22096,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1564Slc = r.DecodeBytes(yys1564Slc, true, true) - yys1564 := string(yys1564Slc) + yys1607Slc = r.DecodeBytes(yys1607Slc, true, true) + yys1607 := string(yys1607Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1564 { + switch yys1607 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -21523,9 +22134,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1564) - } // end switch yys1564 - } // end for yyj1564 + z.DecStructFieldNotFound(-1, yys1607) + } // end switch yys1607 + } // end for yyj1607 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21533,16 +22144,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1568 int - var yyb1568 bool - var yyhl1568 bool = l >= 0 - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + var yyj1611 int + var yyb1611 bool + var yyhl1611 bool = l >= 0 + yyj1611++ + if yyhl1611 { + yyb1611 = yyj1611 > l } else { - yyb1568 = r.CheckBreak() + yyb1611 = r.CheckBreak() } - if yyb1568 { + if yyb1611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21557,13 +22168,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1611++ + if yyhl1611 { + yyb1611 = yyj1611 > l } else { - yyb1568 = r.CheckBreak() + yyb1611 = r.CheckBreak() } - if yyb1568 { + if yyb1611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21578,13 +22189,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1611++ + if yyhl1611 { + yyb1611 = yyj1611 > l } else { - yyb1568 = r.CheckBreak() + yyb1611 = r.CheckBreak() } - if yyb1568 { + if yyb1611 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21600,17 +22211,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1611++ + if yyhl1611 { + yyb1611 = yyj1611 > l } else { - yyb1568 = r.CheckBreak() + yyb1611 = r.CheckBreak() } - if yyb1568 { + if yyb1611 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1568-1, "") + z.DecStructFieldNotFound(yyj1611-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21622,36 +22233,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1572 := z.EncBinary() - _ = yym1572 + yym1615 := z.EncBinary() + _ = yym1615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1573 := !z.EncBinary() - yy2arr1573 := z.EncBasicHandle().StructToArray - var yyq1573 [8]bool - _, _, _ = yysep1573, yyq1573, yy2arr1573 - const yyr1573 bool = false - yyq1573[1] = true - yyq1573[2] = true - yyq1573[7] = x.ContainerID != "" - var yynn1573 int - if yyr1573 || yy2arr1573 { + yysep1616 := !z.EncBinary() + yy2arr1616 := z.EncBasicHandle().StructToArray + var yyq1616 [8]bool + _, _, _ = yysep1616, yyq1616, yy2arr1616 + const yyr1616 bool = false + yyq1616[1] = true + yyq1616[2] = true + yyq1616[7] = x.ContainerID != "" + var yynn1616 int + if yyr1616 || yy2arr1616 { r.EncodeArrayStart(8) } else { - yynn1573 = 5 - for _, b := range yyq1573 { + yynn1616 = 5 + for _, b := range yyq1616 { if b { - yynn1573++ + yynn1616++ } } - r.EncodeMapStart(yynn1573) - yynn1573 = 0 + r.EncodeMapStart(yynn1616) + yynn1616 = 0 } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1575 := z.EncBinary() - _ = yym1575 + yym1618 := z.EncBinary() + _ = yym1618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -21660,51 +22271,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1576 := z.EncBinary() - _ = yym1576 + yym1619 := z.EncBinary() + _ = yym1619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1573[1] { - yy1578 := &x.State - yy1578.CodecEncodeSelf(e) + if yyq1616[1] { + yy1621 := &x.State + yy1621.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1573[1] { + if yyq1616[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1579 := &x.State - yy1579.CodecEncodeSelf(e) + yy1622 := &x.State + yy1622.CodecEncodeSelf(e) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1573[2] { - yy1581 := &x.LastTerminationState - yy1581.CodecEncodeSelf(e) + if yyq1616[2] { + yy1624 := &x.LastTerminationState + yy1624.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1573[2] { + if yyq1616[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1582 := &x.LastTerminationState - yy1582.CodecEncodeSelf(e) + yy1625 := &x.LastTerminationState + yy1625.CodecEncodeSelf(e) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1584 := z.EncBinary() - _ = yym1584 + yym1627 := z.EncBinary() + _ = yym1627 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -21713,17 +22324,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1585 := z.EncBinary() - _ = yym1585 + yym1628 := z.EncBinary() + _ = yym1628 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1587 := z.EncBinary() - _ = yym1587 + yym1630 := z.EncBinary() + _ = yym1630 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -21732,17 +22343,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1588 := z.EncBinary() - _ = yym1588 + yym1631 := z.EncBinary() + _ = yym1631 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1590 := z.EncBinary() - _ = yym1590 + yym1633 := z.EncBinary() + _ = yym1633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -21751,17 +22362,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1591 := z.EncBinary() - _ = yym1591 + yym1634 := z.EncBinary() + _ = yym1634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1593 := z.EncBinary() - _ = yym1593 + yym1636 := z.EncBinary() + _ = yym1636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -21770,18 +22381,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1594 := z.EncBinary() - _ = yym1594 + yym1637 := z.EncBinary() + _ = yym1637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1573[7] { - yym1596 := z.EncBinary() - _ = yym1596 + if yyq1616[7] { + yym1639 := z.EncBinary() + _ = yym1639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -21790,19 +22401,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1573[7] { + if yyq1616[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1597 := z.EncBinary() - _ = yym1597 + yym1640 := z.EncBinary() + _ = yym1640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1573 || yy2arr1573 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21815,25 +22426,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1598 := z.DecBinary() - _ = yym1598 + yym1641 := z.DecBinary() + _ = yym1641 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1599 := r.ContainerType() - if yyct1599 == codecSelferValueTypeMap1234 { - yyl1599 := r.ReadMapStart() - if yyl1599 == 0 { + yyct1642 := r.ContainerType() + if yyct1642 == codecSelferValueTypeMap1234 { + yyl1642 := r.ReadMapStart() + if yyl1642 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1599, d) + x.codecDecodeSelfFromMap(yyl1642, d) } - } else if yyct1599 == codecSelferValueTypeArray1234 { - yyl1599 := r.ReadArrayStart() - if yyl1599 == 0 { + } else if yyct1642 == codecSelferValueTypeArray1234 { + yyl1642 := r.ReadArrayStart() + if yyl1642 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1599, d) + x.codecDecodeSelfFromArray(yyl1642, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21845,12 +22456,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1600Slc - var yyhl1600 bool = l >= 0 - for yyj1600 := 0; ; yyj1600++ { - if yyhl1600 { - if yyj1600 >= l { + var yys1643Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1643Slc + var yyhl1643 bool = l >= 0 + for yyj1643 := 0; ; yyj1643++ { + if yyhl1643 { + if yyj1643 >= l { break } } else { @@ -21859,10 +22470,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1600Slc = r.DecodeBytes(yys1600Slc, true, true) - yys1600 := string(yys1600Slc) + yys1643Slc = r.DecodeBytes(yys1643Slc, true, true) + yys1643 := string(yys1643Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1600 { + switch yys1643 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -21873,15 +22484,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1602 := &x.State - yyv1602.CodecDecodeSelf(d) + yyv1645 := &x.State + yyv1645.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1603 := &x.LastTerminationState - yyv1603.CodecDecodeSelf(d) + yyv1646 := &x.LastTerminationState + yyv1646.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -21914,9 +22525,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1600) - } // end switch yys1600 - } // end for yyj1600 + z.DecStructFieldNotFound(-1, yys1643) + } // end switch yys1643 + } // end for yyj1643 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21924,16 +22535,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1609 int - var yyb1609 bool - var yyhl1609 bool = l >= 0 - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + var yyj1652 int + var yyb1652 bool + var yyhl1652 bool = l >= 0 + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21943,13 +22554,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21957,16 +22568,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1611 := &x.State - yyv1611.CodecDecodeSelf(d) + yyv1654 := &x.State + yyv1654.CodecDecodeSelf(d) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21974,16 +22585,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1612 := &x.LastTerminationState - yyv1612.CodecDecodeSelf(d) + yyv1655 := &x.LastTerminationState + yyv1655.CodecDecodeSelf(d) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21993,13 +22604,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22009,13 +22620,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22025,13 +22636,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22041,13 +22652,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22058,17 +22669,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1609++ - if yyhl1609 { - yyb1609 = yyj1609 > l + yyj1652++ + if yyhl1652 { + yyb1652 = yyj1652 > l } else { - yyb1609 = r.CheckBreak() + yyb1652 = r.CheckBreak() } - if yyb1609 { + if yyb1652 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1609-1, "") + z.DecStructFieldNotFound(yyj1652-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22077,8 +22688,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1618 := z.EncBinary() - _ = yym1618 + yym1661 := z.EncBinary() + _ = yym1661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22090,8 +22701,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1619 := z.DecBinary() - _ = yym1619 + yym1662 := z.DecBinary() + _ = yym1662 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22103,8 +22714,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1620 := z.EncBinary() - _ = yym1620 + yym1663 := z.EncBinary() + _ = yym1663 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22116,8 +22727,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1621 := z.DecBinary() - _ = yym1621 + yym1664 := z.DecBinary() + _ = yym1664 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22132,34 +22743,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1622 := z.EncBinary() - _ = yym1622 + yym1665 := z.EncBinary() + _ = yym1665 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1623 := !z.EncBinary() - yy2arr1623 := z.EncBasicHandle().StructToArray - var yyq1623 [6]bool - _, _, _ = yysep1623, yyq1623, yy2arr1623 - const yyr1623 bool = false - yyq1623[2] = true - yyq1623[3] = true - yyq1623[4] = x.Reason != "" - yyq1623[5] = x.Message != "" - var yynn1623 int - if yyr1623 || yy2arr1623 { + yysep1666 := !z.EncBinary() + yy2arr1666 := z.EncBasicHandle().StructToArray + var yyq1666 [6]bool + _, _, _ = yysep1666, yyq1666, yy2arr1666 + const yyr1666 bool = false + yyq1666[2] = true + yyq1666[3] = true + yyq1666[4] = x.Reason != "" + yyq1666[5] = x.Message != "" + var yynn1666 int + if yyr1666 || yy2arr1666 { r.EncodeArrayStart(6) } else { - yynn1623 = 2 - for _, b := range yyq1623 { + yynn1666 = 2 + for _, b := range yyq1666 { if b { - yynn1623++ + yynn1666++ } } - r.EncodeMapStart(yynn1623) - yynn1623 = 0 + r.EncodeMapStart(yynn1666) + yynn1666 = 0 } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -22168,7 +22779,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -22177,85 +22788,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1623[2] { - yy1627 := &x.LastProbeTime - yym1628 := z.EncBinary() - _ = yym1628 + if yyq1666[2] { + yy1670 := &x.LastProbeTime + yym1671 := z.EncBinary() + _ = yym1671 if false { - } else if z.HasExtensions() && z.EncExt(yy1627) { - } else if yym1628 { - z.EncBinaryMarshal(yy1627) - } else if !yym1628 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1627) + } else if z.HasExtensions() && z.EncExt(yy1670) { + } else if yym1671 { + z.EncBinaryMarshal(yy1670) + } else if !yym1671 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1670) } else { - z.EncFallback(yy1627) + z.EncFallback(yy1670) } } else { r.EncodeNil() } } else { - if yyq1623[2] { + if yyq1666[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1629 := &x.LastProbeTime - yym1630 := z.EncBinary() - _ = yym1630 + yy1672 := &x.LastProbeTime + yym1673 := z.EncBinary() + _ = yym1673 if false { - } else if z.HasExtensions() && z.EncExt(yy1629) { - } else if yym1630 { - z.EncBinaryMarshal(yy1629) - } else if !yym1630 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1629) + } else if z.HasExtensions() && z.EncExt(yy1672) { + } else if yym1673 { + z.EncBinaryMarshal(yy1672) + } else if !yym1673 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1672) } else { - z.EncFallback(yy1629) + z.EncFallback(yy1672) } } } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1623[3] { - yy1632 := &x.LastTransitionTime - yym1633 := z.EncBinary() - _ = yym1633 + if yyq1666[3] { + yy1675 := &x.LastTransitionTime + yym1676 := z.EncBinary() + _ = yym1676 if false { - } else if z.HasExtensions() && z.EncExt(yy1632) { - } else if yym1633 { - z.EncBinaryMarshal(yy1632) - } else if !yym1633 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1632) + } else if z.HasExtensions() && z.EncExt(yy1675) { + } else if yym1676 { + z.EncBinaryMarshal(yy1675) + } else if !yym1676 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1675) } else { - z.EncFallback(yy1632) + z.EncFallback(yy1675) } } else { r.EncodeNil() } } else { - if yyq1623[3] { + if yyq1666[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1634 := &x.LastTransitionTime - yym1635 := z.EncBinary() - _ = yym1635 + yy1677 := &x.LastTransitionTime + yym1678 := z.EncBinary() + _ = yym1678 if false { - } else if z.HasExtensions() && z.EncExt(yy1634) { - } else if yym1635 { - z.EncBinaryMarshal(yy1634) - } else if !yym1635 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1634) + } else if z.HasExtensions() && z.EncExt(yy1677) { + } else if yym1678 { + z.EncBinaryMarshal(yy1677) + } else if !yym1678 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1677) } else { - z.EncFallback(yy1634) + z.EncFallback(yy1677) } } } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1623[4] { - yym1637 := z.EncBinary() - _ = yym1637 + if yyq1666[4] { + yym1680 := z.EncBinary() + _ = yym1680 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -22264,23 +22875,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1623[4] { + if yyq1666[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1638 := z.EncBinary() - _ = yym1638 + yym1681 := z.EncBinary() + _ = yym1681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1623[5] { - yym1640 := z.EncBinary() - _ = yym1640 + if yyq1666[5] { + yym1683 := z.EncBinary() + _ = yym1683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -22289,19 +22900,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1623[5] { + if yyq1666[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1641 := z.EncBinary() - _ = yym1641 + yym1684 := z.EncBinary() + _ = yym1684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1623 || yy2arr1623 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22314,25 +22925,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1642 := z.DecBinary() - _ = yym1642 + yym1685 := z.DecBinary() + _ = yym1685 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1643 := r.ContainerType() - if yyct1643 == codecSelferValueTypeMap1234 { - yyl1643 := r.ReadMapStart() - if yyl1643 == 0 { + yyct1686 := r.ContainerType() + if yyct1686 == codecSelferValueTypeMap1234 { + yyl1686 := r.ReadMapStart() + if yyl1686 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1643, d) + x.codecDecodeSelfFromMap(yyl1686, d) } - } else if yyct1643 == codecSelferValueTypeArray1234 { - yyl1643 := r.ReadArrayStart() - if yyl1643 == 0 { + } else if yyct1686 == codecSelferValueTypeArray1234 { + yyl1686 := r.ReadArrayStart() + if yyl1686 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1643, d) + x.codecDecodeSelfFromArray(yyl1686, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22344,12 +22955,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1644Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1644Slc - var yyhl1644 bool = l >= 0 - for yyj1644 := 0; ; yyj1644++ { - if yyhl1644 { - if yyj1644 >= l { + var yys1687Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1687Slc + var yyhl1687 bool = l >= 0 + for yyj1687 := 0; ; yyj1687++ { + if yyhl1687 { + if yyj1687 >= l { break } } else { @@ -22358,10 +22969,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1644Slc = r.DecodeBytes(yys1644Slc, true, true) - yys1644 := string(yys1644Slc) + yys1687Slc = r.DecodeBytes(yys1687Slc, true, true) + yys1687 := string(yys1687Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1644 { + switch yys1687 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -22378,34 +22989,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1647 := &x.LastProbeTime - yym1648 := z.DecBinary() - _ = yym1648 + yyv1690 := &x.LastProbeTime + yym1691 := z.DecBinary() + _ = yym1691 if false { - } else if z.HasExtensions() && z.DecExt(yyv1647) { - } else if yym1648 { - z.DecBinaryUnmarshal(yyv1647) - } else if !yym1648 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1647) + } else if z.HasExtensions() && z.DecExt(yyv1690) { + } else if yym1691 { + z.DecBinaryUnmarshal(yyv1690) + } else if !yym1691 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1690) } else { - z.DecFallback(yyv1647, false) + z.DecFallback(yyv1690, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1649 := &x.LastTransitionTime - yym1650 := z.DecBinary() - _ = yym1650 + yyv1692 := &x.LastTransitionTime + yym1693 := z.DecBinary() + _ = yym1693 if false { - } else if z.HasExtensions() && z.DecExt(yyv1649) { - } else if yym1650 { - z.DecBinaryUnmarshal(yyv1649) - } else if !yym1650 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1649) + } else if z.HasExtensions() && z.DecExt(yyv1692) { + } else if yym1693 { + z.DecBinaryUnmarshal(yyv1692) + } else if !yym1693 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1692) } else { - z.DecFallback(yyv1649, false) + z.DecFallback(yyv1692, false) } } case "reason": @@ -22421,9 +23032,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1644) - } // end switch yys1644 - } // end for yyj1644 + z.DecStructFieldNotFound(-1, yys1687) + } // end switch yys1687 + } // end for yyj1687 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22431,16 +23042,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1653 int - var yyb1653 bool - var yyhl1653 bool = l >= 0 - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + var yyj1696 int + var yyb1696 bool + var yyhl1696 bool = l >= 0 + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22450,13 +23061,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22466,13 +23077,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22480,26 +23091,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1656 := &x.LastProbeTime - yym1657 := z.DecBinary() - _ = yym1657 + yyv1699 := &x.LastProbeTime + yym1700 := z.DecBinary() + _ = yym1700 if false { - } else if z.HasExtensions() && z.DecExt(yyv1656) { - } else if yym1657 { - z.DecBinaryUnmarshal(yyv1656) - } else if !yym1657 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1656) + } else if z.HasExtensions() && z.DecExt(yyv1699) { + } else if yym1700 { + z.DecBinaryUnmarshal(yyv1699) + } else if !yym1700 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1699) } else { - z.DecFallback(yyv1656, false) + z.DecFallback(yyv1699, false) } } - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22507,26 +23118,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1658 := &x.LastTransitionTime - yym1659 := z.DecBinary() - _ = yym1659 + yyv1701 := &x.LastTransitionTime + yym1702 := z.DecBinary() + _ = yym1702 if false { - } else if z.HasExtensions() && z.DecExt(yyv1658) { - } else if yym1659 { - z.DecBinaryUnmarshal(yyv1658) - } else if !yym1659 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1658) + } else if z.HasExtensions() && z.DecExt(yyv1701) { + } else if yym1702 { + z.DecBinaryUnmarshal(yyv1701) + } else if !yym1702 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1701) } else { - z.DecFallback(yyv1658, false) + z.DecFallback(yyv1701, false) } } - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22536,13 +23147,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22553,17 +23164,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1653++ - if yyhl1653 { - yyb1653 = yyj1653 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1653 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1653 { + if yyb1696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1653-1, "") + z.DecStructFieldNotFound(yyj1696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22572,8 +23183,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1662 := z.EncBinary() - _ = yym1662 + yym1705 := z.EncBinary() + _ = yym1705 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22585,8 +23196,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1663 := z.DecBinary() - _ = yym1663 + yym1706 := z.DecBinary() + _ = yym1706 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22598,8 +23209,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1664 := z.EncBinary() - _ = yym1664 + yym1707 := z.EncBinary() + _ = yym1707 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22611,8 +23222,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1665 := z.DecBinary() - _ = yym1665 + yym1708 := z.DecBinary() + _ = yym1708 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22627,36 +23238,36 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1666 := z.EncBinary() - _ = yym1666 + yym1709 := z.EncBinary() + _ = yym1709 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1667 := !z.EncBinary() - yy2arr1667 := z.EncBasicHandle().StructToArray - var yyq1667 [1]bool - _, _, _ = yysep1667, yyq1667, yy2arr1667 - const yyr1667 bool = false - var yynn1667 int - if yyr1667 || yy2arr1667 { + yysep1710 := !z.EncBinary() + yy2arr1710 := z.EncBasicHandle().StructToArray + var yyq1710 [1]bool + _, _, _ = yysep1710, yyq1710, yy2arr1710 + const yyr1710 bool = false + var yynn1710 int + if yyr1710 || yy2arr1710 { r.EncodeArrayStart(1) } else { - yynn1667 = 1 - for _, b := range yyq1667 { + yynn1710 = 1 + for _, b := range yyq1710 { if b { - yynn1667++ + yynn1710++ } } - r.EncodeMapStart(yynn1667) - yynn1667 = 0 + r.EncodeMapStart(yynn1710) + yynn1710 = 0 } - if yyr1667 || yy2arr1667 { + if yyr1710 || yy2arr1710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1669 := z.EncBinary() - _ = yym1669 + yym1712 := z.EncBinary() + _ = yym1712 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) @@ -22669,15 +23280,15 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1670 := z.EncBinary() - _ = yym1670 + yym1713 := z.EncBinary() + _ = yym1713 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) } } } - if yyr1667 || yy2arr1667 { + if yyr1710 || yy2arr1710 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22690,25 +23301,25 @@ func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1671 := z.DecBinary() - _ = yym1671 + yym1714 := z.DecBinary() + _ = yym1714 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1672 := r.ContainerType() - if yyct1672 == codecSelferValueTypeMap1234 { - yyl1672 := r.ReadMapStart() - if yyl1672 == 0 { + yyct1715 := r.ContainerType() + if yyct1715 == codecSelferValueTypeMap1234 { + yyl1715 := r.ReadMapStart() + if yyl1715 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1672, d) + x.codecDecodeSelfFromMap(yyl1715, d) } - } else if yyct1672 == codecSelferValueTypeArray1234 { - yyl1672 := r.ReadArrayStart() - if yyl1672 == 0 { + } else if yyct1715 == codecSelferValueTypeArray1234 { + yyl1715 := r.ReadArrayStart() + if yyl1715 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1672, d) + x.codecDecodeSelfFromArray(yyl1715, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22720,12 +23331,12 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1673Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1673Slc - var yyhl1673 bool = l >= 0 - for yyj1673 := 0; ; yyj1673++ { - if yyhl1673 { - if yyj1673 >= l { + var yys1716Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1716Slc + var yyhl1716 bool = l >= 0 + for yyj1716 := 0; ; yyj1716++ { + if yyhl1716 { + if yyj1716 >= l { break } } else { @@ -22734,26 +23345,26 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1673Slc = r.DecodeBytes(yys1673Slc, true, true) - yys1673 := string(yys1673Slc) + yys1716Slc = r.DecodeBytes(yys1716Slc, true, true) + yys1716 := string(yys1716Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1673 { + switch yys1716 { case "nodeSelectorTerms": if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1674 := &x.NodeSelectorTerms - yym1675 := z.DecBinary() - _ = yym1675 + yyv1717 := &x.NodeSelectorTerms + yym1718 := z.DecBinary() + _ = yym1718 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1674), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1717), d) } } default: - z.DecStructFieldNotFound(-1, yys1673) - } // end switch yys1673 - } // end for yyj1673 + z.DecStructFieldNotFound(-1, yys1716) + } // end switch yys1716 + } // end for yyj1716 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22761,16 +23372,16 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1676 int - var yyb1676 bool - var yyhl1676 bool = l >= 0 - yyj1676++ - if yyhl1676 { - yyb1676 = yyj1676 > l + var yyj1719 int + var yyb1719 bool + var yyhl1719 bool = l >= 0 + yyj1719++ + if yyhl1719 { + yyb1719 = yyj1719 > l } else { - yyb1676 = r.CheckBreak() + yyb1719 = r.CheckBreak() } - if yyb1676 { + if yyb1719 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22778,26 +23389,26 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1677 := &x.NodeSelectorTerms - yym1678 := z.DecBinary() - _ = yym1678 + yyv1720 := &x.NodeSelectorTerms + yym1721 := z.DecBinary() + _ = yym1721 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1677), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1720), d) } } for { - yyj1676++ - if yyhl1676 { - yyb1676 = yyj1676 > l + yyj1719++ + if yyhl1719 { + yyb1719 = yyj1719 > l } else { - yyb1676 = r.CheckBreak() + yyb1719 = r.CheckBreak() } - if yyb1676 { + if yyb1719 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1676-1, "") + z.DecStructFieldNotFound(yyj1719-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22809,36 +23420,36 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1679 := z.EncBinary() - _ = yym1679 + yym1722 := z.EncBinary() + _ = yym1722 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1680 := !z.EncBinary() - yy2arr1680 := z.EncBasicHandle().StructToArray - var yyq1680 [1]bool - _, _, _ = yysep1680, yyq1680, yy2arr1680 - const yyr1680 bool = false - var yynn1680 int - if yyr1680 || yy2arr1680 { + yysep1723 := !z.EncBinary() + yy2arr1723 := z.EncBasicHandle().StructToArray + var yyq1723 [1]bool + _, _, _ = yysep1723, yyq1723, yy2arr1723 + const yyr1723 bool = false + var yynn1723 int + if yyr1723 || yy2arr1723 { r.EncodeArrayStart(1) } else { - yynn1680 = 1 - for _, b := range yyq1680 { + yynn1723 = 1 + for _, b := range yyq1723 { if b { - yynn1680++ + yynn1723++ } } - r.EncodeMapStart(yynn1680) - yynn1680 = 0 + r.EncodeMapStart(yynn1723) + yynn1723 = 0 } - if yyr1680 || yy2arr1680 { + if yyr1723 || yy2arr1723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1682 := z.EncBinary() - _ = yym1682 + yym1725 := z.EncBinary() + _ = yym1725 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) @@ -22851,15 +23462,15 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1683 := z.EncBinary() - _ = yym1683 + yym1726 := z.EncBinary() + _ = yym1726 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) } } } - if yyr1680 || yy2arr1680 { + if yyr1723 || yy2arr1723 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22872,25 +23483,25 @@ func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1684 := z.DecBinary() - _ = yym1684 + yym1727 := z.DecBinary() + _ = yym1727 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1685 := r.ContainerType() - if yyct1685 == codecSelferValueTypeMap1234 { - yyl1685 := r.ReadMapStart() - if yyl1685 == 0 { + yyct1728 := r.ContainerType() + if yyct1728 == codecSelferValueTypeMap1234 { + yyl1728 := r.ReadMapStart() + if yyl1728 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1685, d) + x.codecDecodeSelfFromMap(yyl1728, d) } - } else if yyct1685 == codecSelferValueTypeArray1234 { - yyl1685 := r.ReadArrayStart() - if yyl1685 == 0 { + } else if yyct1728 == codecSelferValueTypeArray1234 { + yyl1728 := r.ReadArrayStart() + if yyl1728 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1685, d) + x.codecDecodeSelfFromArray(yyl1728, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22902,12 +23513,12 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1686Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1686Slc - var yyhl1686 bool = l >= 0 - for yyj1686 := 0; ; yyj1686++ { - if yyhl1686 { - if yyj1686 >= l { + var yys1729Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1729Slc + var yyhl1729 bool = l >= 0 + for yyj1729 := 0; ; yyj1729++ { + if yyhl1729 { + if yyj1729 >= l { break } } else { @@ -22916,26 +23527,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1686Slc = r.DecodeBytes(yys1686Slc, true, true) - yys1686 := string(yys1686Slc) + yys1729Slc = r.DecodeBytes(yys1729Slc, true, true) + yys1729 := string(yys1729Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1686 { + switch yys1729 { case "matchExpressions": if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1687 := &x.MatchExpressions - yym1688 := z.DecBinary() - _ = yym1688 + yyv1730 := &x.MatchExpressions + yym1731 := z.DecBinary() + _ = yym1731 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1687), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1730), d) } } default: - z.DecStructFieldNotFound(-1, yys1686) - } // end switch yys1686 - } // end for yyj1686 + z.DecStructFieldNotFound(-1, yys1729) + } // end switch yys1729 + } // end for yyj1729 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22943,16 +23554,16 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1689 int - var yyb1689 bool - var yyhl1689 bool = l >= 0 - yyj1689++ - if yyhl1689 { - yyb1689 = yyj1689 > l + var yyj1732 int + var yyb1732 bool + var yyhl1732 bool = l >= 0 + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1689 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1689 { + if yyb1732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22960,26 +23571,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1690 := &x.MatchExpressions - yym1691 := z.DecBinary() - _ = yym1691 + yyv1733 := &x.MatchExpressions + yym1734 := z.DecBinary() + _ = yym1734 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1690), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1733), d) } } for { - yyj1689++ - if yyhl1689 { - yyb1689 = yyj1689 > l + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1689 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1689 { + if yyb1732 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1689-1, "") + z.DecStructFieldNotFound(yyj1732-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22991,34 +23602,34 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1692 := z.EncBinary() - _ = yym1692 + yym1735 := z.EncBinary() + _ = yym1735 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1693 := !z.EncBinary() - yy2arr1693 := z.EncBasicHandle().StructToArray - var yyq1693 [3]bool - _, _, _ = yysep1693, yyq1693, yy2arr1693 - const yyr1693 bool = false - yyq1693[2] = len(x.Values) != 0 - var yynn1693 int - if yyr1693 || yy2arr1693 { + yysep1736 := !z.EncBinary() + yy2arr1736 := z.EncBasicHandle().StructToArray + var yyq1736 [3]bool + _, _, _ = yysep1736, yyq1736, yy2arr1736 + const yyr1736 bool = false + yyq1736[2] = len(x.Values) != 0 + var yynn1736 int + if yyr1736 || yy2arr1736 { r.EncodeArrayStart(3) } else { - yynn1693 = 2 - for _, b := range yyq1693 { + yynn1736 = 2 + for _, b := range yyq1736 { if b { - yynn1693++ + yynn1736++ } } - r.EncodeMapStart(yynn1693) - yynn1693 = 0 + r.EncodeMapStart(yynn1736) + yynn1736 = 0 } - if yyr1693 || yy2arr1693 { + if yyr1736 || yy2arr1736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1695 := z.EncBinary() - _ = yym1695 + yym1738 := z.EncBinary() + _ = yym1738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -23027,14 +23638,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1696 := z.EncBinary() - _ = yym1696 + yym1739 := z.EncBinary() + _ = yym1739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1693 || yy2arr1693 { + if yyr1736 || yy2arr1736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Operator.CodecEncodeSelf(e) } else { @@ -23043,14 +23654,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } - if yyr1693 || yy2arr1693 { + if yyr1736 || yy2arr1736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1693[2] { + if yyq1736[2] { if x.Values == nil { r.EncodeNil() } else { - yym1699 := z.EncBinary() - _ = yym1699 + yym1742 := z.EncBinary() + _ = yym1742 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -23060,15 +23671,15 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1693[2] { + if yyq1736[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("values")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Values == nil { r.EncodeNil() } else { - yym1700 := z.EncBinary() - _ = yym1700 + yym1743 := z.EncBinary() + _ = yym1743 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -23076,7 +23687,7 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1693 || yy2arr1693 { + if yyr1736 || yy2arr1736 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23089,25 +23700,25 @@ func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1701 := z.DecBinary() - _ = yym1701 + yym1744 := z.DecBinary() + _ = yym1744 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1702 := r.ContainerType() - if yyct1702 == codecSelferValueTypeMap1234 { - yyl1702 := r.ReadMapStart() - if yyl1702 == 0 { + yyct1745 := r.ContainerType() + if yyct1745 == codecSelferValueTypeMap1234 { + yyl1745 := r.ReadMapStart() + if yyl1745 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1702, d) + x.codecDecodeSelfFromMap(yyl1745, d) } - } else if yyct1702 == codecSelferValueTypeArray1234 { - yyl1702 := r.ReadArrayStart() - if yyl1702 == 0 { + } else if yyct1745 == codecSelferValueTypeArray1234 { + yyl1745 := r.ReadArrayStart() + if yyl1745 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1702, d) + x.codecDecodeSelfFromArray(yyl1745, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23119,12 +23730,12 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1703Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1703Slc - var yyhl1703 bool = l >= 0 - for yyj1703 := 0; ; yyj1703++ { - if yyhl1703 { - if yyj1703 >= l { + var yys1746Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1746Slc + var yyhl1746 bool = l >= 0 + for yyj1746 := 0; ; yyj1746++ { + if yyhl1746 { + if yyj1746 >= l { break } } else { @@ -23133,10 +23744,10 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1703Slc = r.DecodeBytes(yys1703Slc, true, true) - yys1703 := string(yys1703Slc) + yys1746Slc = r.DecodeBytes(yys1746Slc, true, true) + yys1746 := string(yys1746Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1703 { + switch yys1746 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -23153,18 +23764,18 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1706 := &x.Values - yym1707 := z.DecBinary() - _ = yym1707 + yyv1749 := &x.Values + yym1750 := z.DecBinary() + _ = yym1750 if false { } else { - z.F.DecSliceStringX(yyv1706, false, d) + z.F.DecSliceStringX(yyv1749, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1703) - } // end switch yys1703 - } // end for yyj1703 + z.DecStructFieldNotFound(-1, yys1746) + } // end switch yys1746 + } // end for yyj1746 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23172,16 +23783,16 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1708 int - var yyb1708 bool - var yyhl1708 bool = l >= 0 - yyj1708++ - if yyhl1708 { - yyb1708 = yyj1708 > l + var yyj1751 int + var yyb1751 bool + var yyhl1751 bool = l >= 0 + yyj1751++ + if yyhl1751 { + yyb1751 = yyj1751 > l } else { - yyb1708 = r.CheckBreak() + yyb1751 = r.CheckBreak() } - if yyb1708 { + if yyb1751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23191,13 +23802,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Key = string(r.DecodeString()) } - yyj1708++ - if yyhl1708 { - yyb1708 = yyj1708 > l + yyj1751++ + if yyhl1751 { + yyb1751 = yyj1751 > l } else { - yyb1708 = r.CheckBreak() + yyb1751 = r.CheckBreak() } - if yyb1708 { + if yyb1751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23207,13 +23818,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Operator = NodeSelectorOperator(r.DecodeString()) } - yyj1708++ - if yyhl1708 { - yyb1708 = yyj1708 > l + yyj1751++ + if yyhl1751 { + yyb1751 = yyj1751 > l } else { - yyb1708 = r.CheckBreak() + yyb1751 = r.CheckBreak() } - if yyb1708 { + if yyb1751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23221,26 +23832,26 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1711 := &x.Values - yym1712 := z.DecBinary() - _ = yym1712 + yyv1754 := &x.Values + yym1755 := z.DecBinary() + _ = yym1755 if false { } else { - z.F.DecSliceStringX(yyv1711, false, d) + z.F.DecSliceStringX(yyv1754, false, d) } } for { - yyj1708++ - if yyhl1708 { - yyb1708 = yyj1708 > l + yyj1751++ + if yyhl1751 { + yyb1751 = yyj1751 > l } else { - yyb1708 = r.CheckBreak() + yyb1751 = r.CheckBreak() } - if yyb1708 { + if yyb1751 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1708-1, "") + z.DecStructFieldNotFound(yyj1751-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23249,8 +23860,8 @@ func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1713 := z.EncBinary() - _ = yym1713 + yym1756 := z.EncBinary() + _ = yym1756 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23262,8 +23873,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1714 := z.DecBinary() - _ = yym1714 + yym1757 := z.DecBinary() + _ = yym1757 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23278,35 +23889,35 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1715 := z.EncBinary() - _ = yym1715 + yym1758 := z.EncBinary() + _ = yym1758 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1716 := !z.EncBinary() - yy2arr1716 := z.EncBasicHandle().StructToArray - var yyq1716 [3]bool - _, _, _ = yysep1716, yyq1716, yy2arr1716 - const yyr1716 bool = false - yyq1716[0] = x.NodeAffinity != nil - yyq1716[1] = x.PodAffinity != nil - yyq1716[2] = x.PodAntiAffinity != nil - var yynn1716 int - if yyr1716 || yy2arr1716 { + yysep1759 := !z.EncBinary() + yy2arr1759 := z.EncBasicHandle().StructToArray + var yyq1759 [3]bool + _, _, _ = yysep1759, yyq1759, yy2arr1759 + const yyr1759 bool = false + yyq1759[0] = x.NodeAffinity != nil + yyq1759[1] = x.PodAffinity != nil + yyq1759[2] = x.PodAntiAffinity != nil + var yynn1759 int + if yyr1759 || yy2arr1759 { r.EncodeArrayStart(3) } else { - yynn1716 = 0 - for _, b := range yyq1716 { + yynn1759 = 0 + for _, b := range yyq1759 { if b { - yynn1716++ + yynn1759++ } } - r.EncodeMapStart(yynn1716) - yynn1716 = 0 + r.EncodeMapStart(yynn1759) + yynn1759 = 0 } - if yyr1716 || yy2arr1716 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1716[0] { + if yyq1759[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -23316,7 +23927,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1716[0] { + if yyq1759[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23327,9 +23938,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1716 || yy2arr1716 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1716[1] { + if yyq1759[1] { if x.PodAffinity == nil { r.EncodeNil() } else { @@ -23339,7 +23950,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1716[1] { + if yyq1759[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23350,9 +23961,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1716 || yy2arr1716 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1716[2] { + if yyq1759[2] { if x.PodAntiAffinity == nil { r.EncodeNil() } else { @@ -23362,7 +23973,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1716[2] { + if yyq1759[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAntiAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23373,7 +23984,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1716 || yy2arr1716 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23386,25 +23997,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1720 := z.DecBinary() - _ = yym1720 + yym1763 := z.DecBinary() + _ = yym1763 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1721 := r.ContainerType() - if yyct1721 == codecSelferValueTypeMap1234 { - yyl1721 := r.ReadMapStart() - if yyl1721 == 0 { + yyct1764 := r.ContainerType() + if yyct1764 == codecSelferValueTypeMap1234 { + yyl1764 := r.ReadMapStart() + if yyl1764 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1721, d) + x.codecDecodeSelfFromMap(yyl1764, d) } - } else if yyct1721 == codecSelferValueTypeArray1234 { - yyl1721 := r.ReadArrayStart() - if yyl1721 == 0 { + } else if yyct1764 == codecSelferValueTypeArray1234 { + yyl1764 := r.ReadArrayStart() + if yyl1764 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1721, d) + x.codecDecodeSelfFromArray(yyl1764, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23416,12 +24027,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1722Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1722Slc - var yyhl1722 bool = l >= 0 - for yyj1722 := 0; ; yyj1722++ { - if yyhl1722 { - if yyj1722 >= l { + var yys1765Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1765Slc + var yyhl1765 bool = l >= 0 + for yyj1765 := 0; ; yyj1765++ { + if yyhl1765 { + if yyj1765 >= l { break } } else { @@ -23430,10 +24041,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1722Slc = r.DecodeBytes(yys1722Slc, true, true) - yys1722 := string(yys1722Slc) + yys1765Slc = r.DecodeBytes(yys1765Slc, true, true) + yys1765 := string(yys1765Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1722 { + switch yys1765 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -23468,9 +24079,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1722) - } // end switch yys1722 - } // end for yyj1722 + z.DecStructFieldNotFound(-1, yys1765) + } // end switch yys1765 + } // end for yyj1765 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23478,16 +24089,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1726 int - var yyb1726 bool - var yyhl1726 bool = l >= 0 - yyj1726++ - if yyhl1726 { - yyb1726 = yyj1726 > l + var yyj1769 int + var yyb1769 bool + var yyhl1769 bool = l >= 0 + yyj1769++ + if yyhl1769 { + yyb1769 = yyj1769 > l } else { - yyb1726 = r.CheckBreak() + yyb1769 = r.CheckBreak() } - if yyb1726 { + if yyb1769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23502,13 +24113,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NodeAffinity.CodecDecodeSelf(d) } - yyj1726++ - if yyhl1726 { - yyb1726 = yyj1726 > l + yyj1769++ + if yyhl1769 { + yyb1769 = yyj1769 > l } else { - yyb1726 = r.CheckBreak() + yyb1769 = r.CheckBreak() } - if yyb1726 { + if yyb1769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23523,13 +24134,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PodAffinity.CodecDecodeSelf(d) } - yyj1726++ - if yyhl1726 { - yyb1726 = yyj1726 > l + yyj1769++ + if yyhl1769 { + yyb1769 = yyj1769 > l } else { - yyb1726 = r.CheckBreak() + yyb1769 = r.CheckBreak() } - if yyb1726 { + if yyb1769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23545,17 +24156,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } for { - yyj1726++ - if yyhl1726 { - yyb1726 = yyj1726 > l + yyj1769++ + if yyhl1769 { + yyb1769 = yyj1769 > l } else { - yyb1726 = r.CheckBreak() + yyb1769 = r.CheckBreak() } - if yyb1726 { + if yyb1769 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1726-1, "") + z.DecStructFieldNotFound(yyj1769-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23567,39 +24178,39 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1730 := z.EncBinary() - _ = yym1730 + yym1773 := z.EncBinary() + _ = yym1773 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1731 := !z.EncBinary() - yy2arr1731 := z.EncBasicHandle().StructToArray - var yyq1731 [2]bool - _, _, _ = yysep1731, yyq1731, yy2arr1731 - const yyr1731 bool = false - yyq1731[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1731[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1731 int - if yyr1731 || yy2arr1731 { + yysep1774 := !z.EncBinary() + yy2arr1774 := z.EncBasicHandle().StructToArray + var yyq1774 [2]bool + _, _, _ = yysep1774, yyq1774, yy2arr1774 + const yyr1774 bool = false + yyq1774[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1774[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1774 int + if yyr1774 || yy2arr1774 { r.EncodeArrayStart(2) } else { - yynn1731 = 0 - for _, b := range yyq1731 { + yynn1774 = 0 + for _, b := range yyq1774 { if b { - yynn1731++ + yynn1774++ } } - r.EncodeMapStart(yynn1731) - yynn1731 = 0 + r.EncodeMapStart(yynn1774) + yynn1774 = 0 } - if yyr1731 || yy2arr1731 { + if yyr1774 || yy2arr1774 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1731[0] { + if yyq1774[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1733 := z.EncBinary() - _ = yym1733 + yym1776 := z.EncBinary() + _ = yym1776 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -23609,15 +24220,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1731[0] { + if yyq1774[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1734 := z.EncBinary() - _ = yym1734 + yym1777 := z.EncBinary() + _ = yym1777 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -23625,14 +24236,14 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1731 || yy2arr1731 { + if yyr1774 || yy2arr1774 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1731[1] { + if yyq1774[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1736 := z.EncBinary() - _ = yym1736 + yym1779 := z.EncBinary() + _ = yym1779 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -23642,15 +24253,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1731[1] { + if yyq1774[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1737 := z.EncBinary() - _ = yym1737 + yym1780 := z.EncBinary() + _ = yym1780 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -23658,7 +24269,7 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1731 || yy2arr1731 { + if yyr1774 || yy2arr1774 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23671,25 +24282,25 @@ func (x *PodAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1738 := z.DecBinary() - _ = yym1738 + yym1781 := z.DecBinary() + _ = yym1781 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1739 := r.ContainerType() - if yyct1739 == codecSelferValueTypeMap1234 { - yyl1739 := r.ReadMapStart() - if yyl1739 == 0 { + yyct1782 := r.ContainerType() + if yyct1782 == codecSelferValueTypeMap1234 { + yyl1782 := r.ReadMapStart() + if yyl1782 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1739, d) + x.codecDecodeSelfFromMap(yyl1782, d) } - } else if yyct1739 == codecSelferValueTypeArray1234 { - yyl1739 := r.ReadArrayStart() - if yyl1739 == 0 { + } else if yyct1782 == codecSelferValueTypeArray1234 { + yyl1782 := r.ReadArrayStart() + if yyl1782 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1739, d) + x.codecDecodeSelfFromArray(yyl1782, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23701,12 +24312,12 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1740Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1740Slc - var yyhl1740 bool = l >= 0 - for yyj1740 := 0; ; yyj1740++ { - if yyhl1740 { - if yyj1740 >= l { + var yys1783Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1783Slc + var yyhl1783 bool = l >= 0 + for yyj1783 := 0; ; yyj1783++ { + if yyhl1783 { + if yyj1783 >= l { break } } else { @@ -23715,38 +24326,38 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1740Slc = r.DecodeBytes(yys1740Slc, true, true) - yys1740 := string(yys1740Slc) + yys1783Slc = r.DecodeBytes(yys1783Slc, true, true) + yys1783 := string(yys1783Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1740 { + switch yys1783 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1741 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1742 := z.DecBinary() - _ = yym1742 + yyv1784 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1785 := z.DecBinary() + _ = yym1785 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1741), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1784), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1743 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1744 := z.DecBinary() - _ = yym1744 + yyv1786 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1787 := z.DecBinary() + _ = yym1787 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1743), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1786), d) } } default: - z.DecStructFieldNotFound(-1, yys1740) - } // end switch yys1740 - } // end for yyj1740 + z.DecStructFieldNotFound(-1, yys1783) + } // end switch yys1783 + } // end for yyj1783 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23754,16 +24365,16 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1745 int - var yyb1745 bool - var yyhl1745 bool = l >= 0 - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + var yyj1788 int + var yyb1788 bool + var yyhl1788 bool = l >= 0 + yyj1788++ + if yyhl1788 { + yyb1788 = yyj1788 > l } else { - yyb1745 = r.CheckBreak() + yyb1788 = r.CheckBreak() } - if yyb1745 { + if yyb1788 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23771,21 +24382,21 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1746 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1747 := z.DecBinary() - _ = yym1747 + yyv1789 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1790 := z.DecBinary() + _ = yym1790 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1746), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1789), d) } } - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + yyj1788++ + if yyhl1788 { + yyb1788 = yyj1788 > l } else { - yyb1745 = r.CheckBreak() + yyb1788 = r.CheckBreak() } - if yyb1745 { + if yyb1788 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23793,26 +24404,26 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1748 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1749 := z.DecBinary() - _ = yym1749 + yyv1791 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1792 := z.DecBinary() + _ = yym1792 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1748), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1791), d) } } for { - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + yyj1788++ + if yyhl1788 { + yyb1788 = yyj1788 > l } else { - yyb1745 = r.CheckBreak() + yyb1788 = r.CheckBreak() } - if yyb1745 { + if yyb1788 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1745-1, "") + z.DecStructFieldNotFound(yyj1788-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23824,39 +24435,39 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1750 := z.EncBinary() - _ = yym1750 + yym1793 := z.EncBinary() + _ = yym1793 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1751 := !z.EncBinary() - yy2arr1751 := z.EncBasicHandle().StructToArray - var yyq1751 [2]bool - _, _, _ = yysep1751, yyq1751, yy2arr1751 - const yyr1751 bool = false - yyq1751[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1751[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1751 int - if yyr1751 || yy2arr1751 { + yysep1794 := !z.EncBinary() + yy2arr1794 := z.EncBasicHandle().StructToArray + var yyq1794 [2]bool + _, _, _ = yysep1794, yyq1794, yy2arr1794 + const yyr1794 bool = false + yyq1794[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1794[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1794 int + if yyr1794 || yy2arr1794 { r.EncodeArrayStart(2) } else { - yynn1751 = 0 - for _, b := range yyq1751 { + yynn1794 = 0 + for _, b := range yyq1794 { if b { - yynn1751++ + yynn1794++ } } - r.EncodeMapStart(yynn1751) - yynn1751 = 0 + r.EncodeMapStart(yynn1794) + yynn1794 = 0 } - if yyr1751 || yy2arr1751 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1751[0] { + if yyq1794[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1753 := z.EncBinary() - _ = yym1753 + yym1796 := z.EncBinary() + _ = yym1796 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -23866,15 +24477,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1751[0] { + if yyq1794[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1754 := z.EncBinary() - _ = yym1754 + yym1797 := z.EncBinary() + _ = yym1797 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -23882,14 +24493,14 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1751 || yy2arr1751 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1751[1] { + if yyq1794[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1756 := z.EncBinary() - _ = yym1756 + yym1799 := z.EncBinary() + _ = yym1799 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -23899,15 +24510,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1751[1] { + if yyq1794[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1757 := z.EncBinary() - _ = yym1757 + yym1800 := z.EncBinary() + _ = yym1800 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -23915,7 +24526,7 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1751 || yy2arr1751 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23928,25 +24539,25 @@ func (x *PodAntiAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1758 := z.DecBinary() - _ = yym1758 + yym1801 := z.DecBinary() + _ = yym1801 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1759 := r.ContainerType() - if yyct1759 == codecSelferValueTypeMap1234 { - yyl1759 := r.ReadMapStart() - if yyl1759 == 0 { + yyct1802 := r.ContainerType() + if yyct1802 == codecSelferValueTypeMap1234 { + yyl1802 := r.ReadMapStart() + if yyl1802 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1759, d) + x.codecDecodeSelfFromMap(yyl1802, d) } - } else if yyct1759 == codecSelferValueTypeArray1234 { - yyl1759 := r.ReadArrayStart() - if yyl1759 == 0 { + } else if yyct1802 == codecSelferValueTypeArray1234 { + yyl1802 := r.ReadArrayStart() + if yyl1802 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1759, d) + x.codecDecodeSelfFromArray(yyl1802, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23958,12 +24569,12 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1760Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1760Slc - var yyhl1760 bool = l >= 0 - for yyj1760 := 0; ; yyj1760++ { - if yyhl1760 { - if yyj1760 >= l { + var yys1803Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1803Slc + var yyhl1803 bool = l >= 0 + for yyj1803 := 0; ; yyj1803++ { + if yyhl1803 { + if yyj1803 >= l { break } } else { @@ -23972,38 +24583,38 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1760Slc = r.DecodeBytes(yys1760Slc, true, true) - yys1760 := string(yys1760Slc) + yys1803Slc = r.DecodeBytes(yys1803Slc, true, true) + yys1803 := string(yys1803Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1760 { + switch yys1803 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1761 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1762 := z.DecBinary() - _ = yym1762 + yyv1804 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1805 := z.DecBinary() + _ = yym1805 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1761), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1804), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1763 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1764 := z.DecBinary() - _ = yym1764 + yyv1806 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1807 := z.DecBinary() + _ = yym1807 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1763), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1806), d) } } default: - z.DecStructFieldNotFound(-1, yys1760) - } // end switch yys1760 - } // end for yyj1760 + z.DecStructFieldNotFound(-1, yys1803) + } // end switch yys1803 + } // end for yyj1803 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24011,16 +24622,16 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1765 int - var yyb1765 bool - var yyhl1765 bool = l >= 0 - yyj1765++ - if yyhl1765 { - yyb1765 = yyj1765 > l + var yyj1808 int + var yyb1808 bool + var yyhl1808 bool = l >= 0 + yyj1808++ + if yyhl1808 { + yyb1808 = yyj1808 > l } else { - yyb1765 = r.CheckBreak() + yyb1808 = r.CheckBreak() } - if yyb1765 { + if yyb1808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24028,21 +24639,21 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1766 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1767 := z.DecBinary() - _ = yym1767 + yyv1809 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1810 := z.DecBinary() + _ = yym1810 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1766), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1809), d) } } - yyj1765++ - if yyhl1765 { - yyb1765 = yyj1765 > l + yyj1808++ + if yyhl1808 { + yyb1808 = yyj1808 > l } else { - yyb1765 = r.CheckBreak() + yyb1808 = r.CheckBreak() } - if yyb1765 { + if yyb1808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24050,26 +24661,26 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1768 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1769 := z.DecBinary() - _ = yym1769 + yyv1811 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1812 := z.DecBinary() + _ = yym1812 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1768), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1811), d) } } for { - yyj1765++ - if yyhl1765 { - yyb1765 = yyj1765 > l + yyj1808++ + if yyhl1808 { + yyb1808 = yyj1808 > l } else { - yyb1765 = r.CheckBreak() + yyb1808 = r.CheckBreak() } - if yyb1765 { + if yyb1808 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1765-1, "") + z.DecStructFieldNotFound(yyj1808-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24081,33 +24692,33 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1770 := z.EncBinary() - _ = yym1770 + yym1813 := z.EncBinary() + _ = yym1813 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1771 := !z.EncBinary() - yy2arr1771 := z.EncBasicHandle().StructToArray - var yyq1771 [2]bool - _, _, _ = yysep1771, yyq1771, yy2arr1771 - const yyr1771 bool = false - var yynn1771 int - if yyr1771 || yy2arr1771 { + yysep1814 := !z.EncBinary() + yy2arr1814 := z.EncBasicHandle().StructToArray + var yyq1814 [2]bool + _, _, _ = yysep1814, yyq1814, yy2arr1814 + const yyr1814 bool = false + var yynn1814 int + if yyr1814 || yy2arr1814 { r.EncodeArrayStart(2) } else { - yynn1771 = 2 - for _, b := range yyq1771 { + yynn1814 = 2 + for _, b := range yyq1814 { if b { - yynn1771++ + yynn1814++ } } - r.EncodeMapStart(yynn1771) - yynn1771 = 0 + r.EncodeMapStart(yynn1814) + yynn1814 = 0 } - if yyr1771 || yy2arr1771 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1773 := z.EncBinary() - _ = yym1773 + yym1816 := z.EncBinary() + _ = yym1816 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -24116,25 +24727,25 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1774 := z.EncBinary() - _ = yym1774 + yym1817 := z.EncBinary() + _ = yym1817 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1771 || yy2arr1771 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1776 := &x.PodAffinityTerm - yy1776.CodecEncodeSelf(e) + yy1819 := &x.PodAffinityTerm + yy1819.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinityTerm")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1777 := &x.PodAffinityTerm - yy1777.CodecEncodeSelf(e) + yy1820 := &x.PodAffinityTerm + yy1820.CodecEncodeSelf(e) } - if yyr1771 || yy2arr1771 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24147,25 +24758,25 @@ func (x *WeightedPodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1778 := z.DecBinary() - _ = yym1778 + yym1821 := z.DecBinary() + _ = yym1821 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1779 := r.ContainerType() - if yyct1779 == codecSelferValueTypeMap1234 { - yyl1779 := r.ReadMapStart() - if yyl1779 == 0 { + yyct1822 := r.ContainerType() + if yyct1822 == codecSelferValueTypeMap1234 { + yyl1822 := r.ReadMapStart() + if yyl1822 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1779, d) + x.codecDecodeSelfFromMap(yyl1822, d) } - } else if yyct1779 == codecSelferValueTypeArray1234 { - yyl1779 := r.ReadArrayStart() - if yyl1779 == 0 { + } else if yyct1822 == codecSelferValueTypeArray1234 { + yyl1822 := r.ReadArrayStart() + if yyl1822 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1779, d) + x.codecDecodeSelfFromArray(yyl1822, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24177,12 +24788,12 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1780Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1780Slc - var yyhl1780 bool = l >= 0 - for yyj1780 := 0; ; yyj1780++ { - if yyhl1780 { - if yyj1780 >= l { + var yys1823Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1823Slc + var yyhl1823 bool = l >= 0 + for yyj1823 := 0; ; yyj1823++ { + if yyhl1823 { + if yyj1823 >= l { break } } else { @@ -24191,10 +24802,10 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1780Slc = r.DecodeBytes(yys1780Slc, true, true) - yys1780 := string(yys1780Slc) + yys1823Slc = r.DecodeBytes(yys1823Slc, true, true) + yys1823 := string(yys1823Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1780 { + switch yys1823 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -24205,13 +24816,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1782 := &x.PodAffinityTerm - yyv1782.CodecDecodeSelf(d) + yyv1825 := &x.PodAffinityTerm + yyv1825.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1780) - } // end switch yys1780 - } // end for yyj1780 + z.DecStructFieldNotFound(-1, yys1823) + } // end switch yys1823 + } // end for yyj1823 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24219,16 +24830,16 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1783 int - var yyb1783 bool - var yyhl1783 bool = l >= 0 - yyj1783++ - if yyhl1783 { - yyb1783 = yyj1783 > l + var yyj1826 int + var yyb1826 bool + var yyhl1826 bool = l >= 0 + yyj1826++ + if yyhl1826 { + yyb1826 = yyj1826 > l } else { - yyb1783 = r.CheckBreak() + yyb1826 = r.CheckBreak() } - if yyb1783 { + if yyb1826 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24238,13 +24849,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1783++ - if yyhl1783 { - yyb1783 = yyj1783 > l + yyj1826++ + if yyhl1826 { + yyb1826 = yyj1826 > l } else { - yyb1783 = r.CheckBreak() + yyb1826 = r.CheckBreak() } - if yyb1783 { + if yyb1826 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24252,21 +24863,21 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1785 := &x.PodAffinityTerm - yyv1785.CodecDecodeSelf(d) + yyv1828 := &x.PodAffinityTerm + yyv1828.CodecDecodeSelf(d) } for { - yyj1783++ - if yyhl1783 { - yyb1783 = yyj1783 > l + yyj1826++ + if yyhl1826 { + yyb1826 = yyj1826 > l } else { - yyb1783 = r.CheckBreak() + yyb1826 = r.CheckBreak() } - if yyb1783 { + if yyb1826 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1783-1, "") + z.DecStructFieldNotFound(yyj1826-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24278,39 +24889,39 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1786 := z.EncBinary() - _ = yym1786 + yym1829 := z.EncBinary() + _ = yym1829 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1787 := !z.EncBinary() - yy2arr1787 := z.EncBasicHandle().StructToArray - var yyq1787 [3]bool - _, _, _ = yysep1787, yyq1787, yy2arr1787 - const yyr1787 bool = false - yyq1787[0] = x.LabelSelector != nil - yyq1787[2] = x.TopologyKey != "" - var yynn1787 int - if yyr1787 || yy2arr1787 { + yysep1830 := !z.EncBinary() + yy2arr1830 := z.EncBasicHandle().StructToArray + var yyq1830 [3]bool + _, _, _ = yysep1830, yyq1830, yy2arr1830 + const yyr1830 bool = false + yyq1830[0] = x.LabelSelector != nil + yyq1830[2] = x.TopologyKey != "" + var yynn1830 int + if yyr1830 || yy2arr1830 { r.EncodeArrayStart(3) } else { - yynn1787 = 1 - for _, b := range yyq1787 { + yynn1830 = 1 + for _, b := range yyq1830 { if b { - yynn1787++ + yynn1830++ } } - r.EncodeMapStart(yynn1787) - yynn1787 = 0 + r.EncodeMapStart(yynn1830) + yynn1830 = 0 } - if yyr1787 || yy2arr1787 { + if yyr1830 || yy2arr1830 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1787[0] { + if yyq1830[0] { if x.LabelSelector == nil { r.EncodeNil() } else { - yym1789 := z.EncBinary() - _ = yym1789 + yym1832 := z.EncBinary() + _ = yym1832 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -24321,15 +24932,15 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1787[0] { + if yyq1830[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym1790 := z.EncBinary() - _ = yym1790 + yym1833 := z.EncBinary() + _ = yym1833 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -24338,13 +24949,13 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1787 || yy2arr1787 { + if yyr1830 || yy2arr1830 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Namespaces == nil { r.EncodeNil() } else { - yym1792 := z.EncBinary() - _ = yym1792 + yym1835 := z.EncBinary() + _ = yym1835 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) @@ -24357,19 +24968,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.Namespaces == nil { r.EncodeNil() } else { - yym1793 := z.EncBinary() - _ = yym1793 + yym1836 := z.EncBinary() + _ = yym1836 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) } } } - if yyr1787 || yy2arr1787 { + if yyr1830 || yy2arr1830 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1787[2] { - yym1795 := z.EncBinary() - _ = yym1795 + if yyq1830[2] { + yym1838 := z.EncBinary() + _ = yym1838 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) @@ -24378,19 +24989,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1787[2] { + if yyq1830[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("topologyKey")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1796 := z.EncBinary() - _ = yym1796 + yym1839 := z.EncBinary() + _ = yym1839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) } } } - if yyr1787 || yy2arr1787 { + if yyr1830 || yy2arr1830 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24403,25 +25014,25 @@ func (x *PodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1797 := z.DecBinary() - _ = yym1797 + yym1840 := z.DecBinary() + _ = yym1840 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1798 := r.ContainerType() - if yyct1798 == codecSelferValueTypeMap1234 { - yyl1798 := r.ReadMapStart() - if yyl1798 == 0 { + yyct1841 := r.ContainerType() + if yyct1841 == codecSelferValueTypeMap1234 { + yyl1841 := r.ReadMapStart() + if yyl1841 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1798, d) + x.codecDecodeSelfFromMap(yyl1841, d) } - } else if yyct1798 == codecSelferValueTypeArray1234 { - yyl1798 := r.ReadArrayStart() - if yyl1798 == 0 { + } else if yyct1841 == codecSelferValueTypeArray1234 { + yyl1841 := r.ReadArrayStart() + if yyl1841 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1798, d) + x.codecDecodeSelfFromArray(yyl1841, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24433,12 +25044,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1799Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1799Slc - var yyhl1799 bool = l >= 0 - for yyj1799 := 0; ; yyj1799++ { - if yyhl1799 { - if yyj1799 >= l { + var yys1842Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1842Slc + var yyhl1842 bool = l >= 0 + for yyj1842 := 0; ; yyj1842++ { + if yyhl1842 { + if yyj1842 >= l { break } } else { @@ -24447,10 +25058,10 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1799Slc = r.DecodeBytes(yys1799Slc, true, true) - yys1799 := string(yys1799Slc) + yys1842Slc = r.DecodeBytes(yys1842Slc, true, true) + yys1842 := string(yys1842Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1799 { + switch yys1842 { case "labelSelector": if r.TryDecodeAsNil() { if x.LabelSelector != nil { @@ -24460,8 +25071,8 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1801 := z.DecBinary() - _ = yym1801 + yym1844 := z.DecBinary() + _ = yym1844 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { @@ -24472,12 +25083,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1802 := &x.Namespaces - yym1803 := z.DecBinary() - _ = yym1803 + yyv1845 := &x.Namespaces + yym1846 := z.DecBinary() + _ = yym1846 if false { } else { - z.F.DecSliceStringX(yyv1802, false, d) + z.F.DecSliceStringX(yyv1845, false, d) } } case "topologyKey": @@ -24487,9 +25098,9 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TopologyKey = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1799) - } // end switch yys1799 - } // end for yyj1799 + z.DecStructFieldNotFound(-1, yys1842) + } // end switch yys1842 + } // end for yyj1842 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24497,16 +25108,16 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1805 int - var yyb1805 bool - var yyhl1805 bool = l >= 0 - yyj1805++ - if yyhl1805 { - yyb1805 = yyj1805 > l + var yyj1848 int + var yyb1848 bool + var yyhl1848 bool = l >= 0 + yyj1848++ + if yyhl1848 { + yyb1848 = yyj1848 > l } else { - yyb1805 = r.CheckBreak() + yyb1848 = r.CheckBreak() } - if yyb1805 { + if yyb1848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24519,21 +25130,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1807 := z.DecBinary() - _ = yym1807 + yym1850 := z.DecBinary() + _ = yym1850 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { z.DecFallback(x.LabelSelector, false) } } - yyj1805++ - if yyhl1805 { - yyb1805 = yyj1805 > l + yyj1848++ + if yyhl1848 { + yyb1848 = yyj1848 > l } else { - yyb1805 = r.CheckBreak() + yyb1848 = r.CheckBreak() } - if yyb1805 { + if yyb1848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24541,21 +25152,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1808 := &x.Namespaces - yym1809 := z.DecBinary() - _ = yym1809 + yyv1851 := &x.Namespaces + yym1852 := z.DecBinary() + _ = yym1852 if false { } else { - z.F.DecSliceStringX(yyv1808, false, d) + z.F.DecSliceStringX(yyv1851, false, d) } } - yyj1805++ - if yyhl1805 { - yyb1805 = yyj1805 > l + yyj1848++ + if yyhl1848 { + yyb1848 = yyj1848 > l } else { - yyb1805 = r.CheckBreak() + yyb1848 = r.CheckBreak() } - if yyb1805 { + if yyb1848 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24566,17 +25177,17 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TopologyKey = string(r.DecodeString()) } for { - yyj1805++ - if yyhl1805 { - yyb1805 = yyj1805 > l + yyj1848++ + if yyhl1848 { + yyb1848 = yyj1848 > l } else { - yyb1805 = r.CheckBreak() + yyb1848 = r.CheckBreak() } - if yyb1805 { + if yyb1848 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1805-1, "") + z.DecStructFieldNotFound(yyj1848-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24588,34 +25199,34 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1811 := z.EncBinary() - _ = yym1811 + yym1854 := z.EncBinary() + _ = yym1854 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1812 := !z.EncBinary() - yy2arr1812 := z.EncBasicHandle().StructToArray - var yyq1812 [2]bool - _, _, _ = yysep1812, yyq1812, yy2arr1812 - const yyr1812 bool = false - yyq1812[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1812[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1812 int - if yyr1812 || yy2arr1812 { + yysep1855 := !z.EncBinary() + yy2arr1855 := z.EncBasicHandle().StructToArray + var yyq1855 [2]bool + _, _, _ = yysep1855, yyq1855, yy2arr1855 + const yyr1855 bool = false + yyq1855[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1855[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1855 int + if yyr1855 || yy2arr1855 { r.EncodeArrayStart(2) } else { - yynn1812 = 0 - for _, b := range yyq1812 { + yynn1855 = 0 + for _, b := range yyq1855 { if b { - yynn1812++ + yynn1855++ } } - r.EncodeMapStart(yynn1812) - yynn1812 = 0 + r.EncodeMapStart(yynn1855) + yynn1855 = 0 } - if yyr1812 || yy2arr1812 { + if yyr1855 || yy2arr1855 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1812[0] { + if yyq1855[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { @@ -24625,7 +25236,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1812[0] { + if yyq1855[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24636,14 +25247,14 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1812 || yy2arr1812 { + if yyr1855 || yy2arr1855 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1812[1] { + if yyq1855[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1815 := z.EncBinary() - _ = yym1815 + yym1858 := z.EncBinary() + _ = yym1858 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24653,15 +25264,15 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1812[1] { + if yyq1855[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1816 := z.EncBinary() - _ = yym1816 + yym1859 := z.EncBinary() + _ = yym1859 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24669,7 +25280,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1812 || yy2arr1812 { + if yyr1855 || yy2arr1855 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24682,25 +25293,25 @@ func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1817 := z.DecBinary() - _ = yym1817 + yym1860 := z.DecBinary() + _ = yym1860 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1818 := r.ContainerType() - if yyct1818 == codecSelferValueTypeMap1234 { - yyl1818 := r.ReadMapStart() - if yyl1818 == 0 { + yyct1861 := r.ContainerType() + if yyct1861 == codecSelferValueTypeMap1234 { + yyl1861 := r.ReadMapStart() + if yyl1861 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1818, d) + x.codecDecodeSelfFromMap(yyl1861, d) } - } else if yyct1818 == codecSelferValueTypeArray1234 { - yyl1818 := r.ReadArrayStart() - if yyl1818 == 0 { + } else if yyct1861 == codecSelferValueTypeArray1234 { + yyl1861 := r.ReadArrayStart() + if yyl1861 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1818, d) + x.codecDecodeSelfFromArray(yyl1861, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24712,12 +25323,12 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1819Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1819Slc - var yyhl1819 bool = l >= 0 - for yyj1819 := 0; ; yyj1819++ { - if yyhl1819 { - if yyj1819 >= l { + var yys1862Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1862Slc + var yyhl1862 bool = l >= 0 + for yyj1862 := 0; ; yyj1862++ { + if yyhl1862 { + if yyj1862 >= l { break } } else { @@ -24726,10 +25337,10 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1819Slc = r.DecodeBytes(yys1819Slc, true, true) - yys1819 := string(yys1819Slc) + yys1862Slc = r.DecodeBytes(yys1862Slc, true, true) + yys1862 := string(yys1862Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1819 { + switch yys1862 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { @@ -24745,18 +25356,18 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1821 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1822 := z.DecBinary() - _ = yym1822 + yyv1864 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1865 := z.DecBinary() + _ = yym1865 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1821), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1864), d) } } default: - z.DecStructFieldNotFound(-1, yys1819) - } // end switch yys1819 - } // end for yyj1819 + z.DecStructFieldNotFound(-1, yys1862) + } // end switch yys1862 + } // end for yyj1862 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24764,16 +25375,16 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1823 int - var yyb1823 bool - var yyhl1823 bool = l >= 0 - yyj1823++ - if yyhl1823 { - yyb1823 = yyj1823 > l + var yyj1866 int + var yyb1866 bool + var yyhl1866 bool = l >= 0 + yyj1866++ + if yyhl1866 { + yyb1866 = yyj1866 > l } else { - yyb1823 = r.CheckBreak() + yyb1866 = r.CheckBreak() } - if yyb1823 { + if yyb1866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24788,13 +25399,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) } - yyj1823++ - if yyhl1823 { - yyb1823 = yyj1823 > l + yyj1866++ + if yyhl1866 { + yyb1866 = yyj1866 > l } else { - yyb1823 = r.CheckBreak() + yyb1866 = r.CheckBreak() } - if yyb1823 { + if yyb1866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24802,26 +25413,26 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1825 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1826 := z.DecBinary() - _ = yym1826 + yyv1868 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1869 := z.DecBinary() + _ = yym1869 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1825), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1868), d) } } for { - yyj1823++ - if yyhl1823 { - yyb1823 = yyj1823 > l + yyj1866++ + if yyhl1866 { + yyb1866 = yyj1866 > l } else { - yyb1823 = r.CheckBreak() + yyb1866 = r.CheckBreak() } - if yyb1823 { + if yyb1866 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1823-1, "") + z.DecStructFieldNotFound(yyj1866-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24833,33 +25444,33 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1827 := z.EncBinary() - _ = yym1827 + yym1870 := z.EncBinary() + _ = yym1870 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1828 := !z.EncBinary() - yy2arr1828 := z.EncBasicHandle().StructToArray - var yyq1828 [2]bool - _, _, _ = yysep1828, yyq1828, yy2arr1828 - const yyr1828 bool = false - var yynn1828 int - if yyr1828 || yy2arr1828 { + yysep1871 := !z.EncBinary() + yy2arr1871 := z.EncBasicHandle().StructToArray + var yyq1871 [2]bool + _, _, _ = yysep1871, yyq1871, yy2arr1871 + const yyr1871 bool = false + var yynn1871 int + if yyr1871 || yy2arr1871 { r.EncodeArrayStart(2) } else { - yynn1828 = 2 - for _, b := range yyq1828 { + yynn1871 = 2 + for _, b := range yyq1871 { if b { - yynn1828++ + yynn1871++ } } - r.EncodeMapStart(yynn1828) - yynn1828 = 0 + r.EncodeMapStart(yynn1871) + yynn1871 = 0 } - if yyr1828 || yy2arr1828 { + if yyr1871 || yy2arr1871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1830 := z.EncBinary() - _ = yym1830 + yym1873 := z.EncBinary() + _ = yym1873 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -24868,25 +25479,25 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1831 := z.EncBinary() - _ = yym1831 + yym1874 := z.EncBinary() + _ = yym1874 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1828 || yy2arr1828 { + if yyr1871 || yy2arr1871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1833 := &x.Preference - yy1833.CodecEncodeSelf(e) + yy1876 := &x.Preference + yy1876.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1834 := &x.Preference - yy1834.CodecEncodeSelf(e) + yy1877 := &x.Preference + yy1877.CodecEncodeSelf(e) } - if yyr1828 || yy2arr1828 { + if yyr1871 || yy2arr1871 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24899,25 +25510,25 @@ func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1835 := z.DecBinary() - _ = yym1835 + yym1878 := z.DecBinary() + _ = yym1878 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1836 := r.ContainerType() - if yyct1836 == codecSelferValueTypeMap1234 { - yyl1836 := r.ReadMapStart() - if yyl1836 == 0 { + yyct1879 := r.ContainerType() + if yyct1879 == codecSelferValueTypeMap1234 { + yyl1879 := r.ReadMapStart() + if yyl1879 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1836, d) + x.codecDecodeSelfFromMap(yyl1879, d) } - } else if yyct1836 == codecSelferValueTypeArray1234 { - yyl1836 := r.ReadArrayStart() - if yyl1836 == 0 { + } else if yyct1879 == codecSelferValueTypeArray1234 { + yyl1879 := r.ReadArrayStart() + if yyl1879 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1836, d) + x.codecDecodeSelfFromArray(yyl1879, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24929,12 +25540,12 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1837Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1837Slc - var yyhl1837 bool = l >= 0 - for yyj1837 := 0; ; yyj1837++ { - if yyhl1837 { - if yyj1837 >= l { + var yys1880Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1880Slc + var yyhl1880 bool = l >= 0 + for yyj1880 := 0; ; yyj1880++ { + if yyhl1880 { + if yyj1880 >= l { break } } else { @@ -24943,10 +25554,10 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1837Slc = r.DecodeBytes(yys1837Slc, true, true) - yys1837 := string(yys1837Slc) + yys1880Slc = r.DecodeBytes(yys1880Slc, true, true) + yys1880 := string(yys1880Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1837 { + switch yys1880 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -24957,13 +25568,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1839 := &x.Preference - yyv1839.CodecDecodeSelf(d) + yyv1882 := &x.Preference + yyv1882.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1837) - } // end switch yys1837 - } // end for yyj1837 + z.DecStructFieldNotFound(-1, yys1880) + } // end switch yys1880 + } // end for yyj1880 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24971,16 +25582,16 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1840 int - var yyb1840 bool - var yyhl1840 bool = l >= 0 - yyj1840++ - if yyhl1840 { - yyb1840 = yyj1840 > l + var yyj1883 int + var yyb1883 bool + var yyhl1883 bool = l >= 0 + yyj1883++ + if yyhl1883 { + yyb1883 = yyj1883 > l } else { - yyb1840 = r.CheckBreak() + yyb1883 = r.CheckBreak() } - if yyb1840 { + if yyb1883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24990,13 +25601,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1840++ - if yyhl1840 { - yyb1840 = yyj1840 > l + yyj1883++ + if yyhl1883 { + yyb1883 = yyj1883 > l } else { - yyb1840 = r.CheckBreak() + yyb1883 = r.CheckBreak() } - if yyb1840 { + if yyb1883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25004,21 +25615,21 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1842 := &x.Preference - yyv1842.CodecDecodeSelf(d) + yyv1885 := &x.Preference + yyv1885.CodecDecodeSelf(d) } for { - yyj1840++ - if yyhl1840 { - yyb1840 = yyj1840 > l + yyj1883++ + if yyhl1883 { + yyb1883 = yyj1883 > l } else { - yyb1840 = r.CheckBreak() + yyb1883 = r.CheckBreak() } - if yyb1840 { + if yyb1883 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1840-1, "") + z.DecStructFieldNotFound(yyj1883-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25030,34 +25641,34 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1843 := z.EncBinary() - _ = yym1843 + yym1886 := z.EncBinary() + _ = yym1886 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1844 := !z.EncBinary() - yy2arr1844 := z.EncBasicHandle().StructToArray - var yyq1844 [3]bool - _, _, _ = yysep1844, yyq1844, yy2arr1844 - const yyr1844 bool = false - yyq1844[1] = x.Value != "" - var yynn1844 int - if yyr1844 || yy2arr1844 { + yysep1887 := !z.EncBinary() + yy2arr1887 := z.EncBasicHandle().StructToArray + var yyq1887 [3]bool + _, _, _ = yysep1887, yyq1887, yy2arr1887 + const yyr1887 bool = false + yyq1887[1] = x.Value != "" + var yynn1887 int + if yyr1887 || yy2arr1887 { r.EncodeArrayStart(3) } else { - yynn1844 = 2 - for _, b := range yyq1844 { + yynn1887 = 2 + for _, b := range yyq1887 { if b { - yynn1844++ + yynn1887++ } } - r.EncodeMapStart(yynn1844) - yynn1844 = 0 + r.EncodeMapStart(yynn1887) + yynn1887 = 0 } - if yyr1844 || yy2arr1844 { + if yyr1887 || yy2arr1887 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1846 := z.EncBinary() - _ = yym1846 + yym1889 := z.EncBinary() + _ = yym1889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -25066,18 +25677,18 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1847 := z.EncBinary() - _ = yym1847 + yym1890 := z.EncBinary() + _ = yym1890 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1844 || yy2arr1844 { + if yyr1887 || yy2arr1887 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1844[1] { - yym1849 := z.EncBinary() - _ = yym1849 + if yyq1887[1] { + yym1892 := z.EncBinary() + _ = yym1892 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -25086,19 +25697,19 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1844[1] { + if yyq1887[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1850 := z.EncBinary() - _ = yym1850 + yym1893 := z.EncBinary() + _ = yym1893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1844 || yy2arr1844 { + if yyr1887 || yy2arr1887 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Effect.CodecEncodeSelf(e) } else { @@ -25107,7 +25718,7 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } - if yyr1844 || yy2arr1844 { + if yyr1887 || yy2arr1887 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25120,25 +25731,25 @@ func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1852 := z.DecBinary() - _ = yym1852 + yym1895 := z.DecBinary() + _ = yym1895 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1853 := r.ContainerType() - if yyct1853 == codecSelferValueTypeMap1234 { - yyl1853 := r.ReadMapStart() - if yyl1853 == 0 { + yyct1896 := r.ContainerType() + if yyct1896 == codecSelferValueTypeMap1234 { + yyl1896 := r.ReadMapStart() + if yyl1896 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1853, d) + x.codecDecodeSelfFromMap(yyl1896, d) } - } else if yyct1853 == codecSelferValueTypeArray1234 { - yyl1853 := r.ReadArrayStart() - if yyl1853 == 0 { + } else if yyct1896 == codecSelferValueTypeArray1234 { + yyl1896 := r.ReadArrayStart() + if yyl1896 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1853, d) + x.codecDecodeSelfFromArray(yyl1896, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25150,12 +25761,12 @@ func (x *Taint) 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 yys1897Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1897Slc + var yyhl1897 bool = l >= 0 + for yyj1897 := 0; ; yyj1897++ { + if yyhl1897 { + if yyj1897 >= l { break } } else { @@ -25164,10 +25775,10 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1854Slc = r.DecodeBytes(yys1854Slc, true, true) - yys1854 := string(yys1854Slc) + yys1897Slc = r.DecodeBytes(yys1897Slc, true, true) + yys1897 := string(yys1897Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1854 { + switch yys1897 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -25187,9 +25798,9 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1854) - } // end switch yys1854 - } // end for yyj1854 + z.DecStructFieldNotFound(-1, yys1897) + } // end switch yys1897 + } // end for yyj1897 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25197,16 +25808,16 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1858 int - var yyb1858 bool - var yyhl1858 bool = l >= 0 - yyj1858++ - if yyhl1858 { - yyb1858 = yyj1858 > l + var yyj1901 int + var yyb1901 bool + var yyhl1901 bool = l >= 0 + yyj1901++ + if yyhl1901 { + yyb1901 = yyj1901 > l } else { - yyb1858 = r.CheckBreak() + yyb1901 = r.CheckBreak() } - if yyb1858 { + if yyb1901 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25216,13 +25827,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1858++ - if yyhl1858 { - yyb1858 = yyj1858 > l + yyj1901++ + if yyhl1901 { + yyb1901 = yyj1901 > l } else { - yyb1858 = r.CheckBreak() + yyb1901 = r.CheckBreak() } - if yyb1858 { + if yyb1901 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25232,13 +25843,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1858++ - if yyhl1858 { - yyb1858 = yyj1858 > l + yyj1901++ + if yyhl1901 { + yyb1901 = yyj1901 > l } else { - yyb1858 = r.CheckBreak() + yyb1901 = r.CheckBreak() } - if yyb1858 { + if yyb1901 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25249,17 +25860,17 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1858++ - if yyhl1858 { - yyb1858 = yyj1858 > l + yyj1901++ + if yyhl1901 { + yyb1901 = yyj1901 > l } else { - yyb1858 = r.CheckBreak() + yyb1901 = r.CheckBreak() } - if yyb1858 { + if yyb1901 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1858-1, "") + z.DecStructFieldNotFound(yyj1901-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25268,8 +25879,8 @@ func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1862 := z.EncBinary() - _ = yym1862 + yym1905 := z.EncBinary() + _ = yym1905 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -25281,8 +25892,8 @@ func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1863 := z.DecBinary() - _ = yym1863 + yym1906 := z.DecBinary() + _ = yym1906 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -25297,38 +25908,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1864 := z.EncBinary() - _ = yym1864 + yym1907 := z.EncBinary() + _ = yym1907 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1865 := !z.EncBinary() - yy2arr1865 := z.EncBasicHandle().StructToArray - var yyq1865 [4]bool - _, _, _ = yysep1865, yyq1865, yy2arr1865 - const yyr1865 bool = false - yyq1865[0] = x.Key != "" - yyq1865[1] = x.Operator != "" - yyq1865[2] = x.Value != "" - yyq1865[3] = x.Effect != "" - var yynn1865 int - if yyr1865 || yy2arr1865 { + yysep1908 := !z.EncBinary() + yy2arr1908 := z.EncBasicHandle().StructToArray + var yyq1908 [4]bool + _, _, _ = yysep1908, yyq1908, yy2arr1908 + const yyr1908 bool = false + yyq1908[0] = x.Key != "" + yyq1908[1] = x.Operator != "" + yyq1908[2] = x.Value != "" + yyq1908[3] = x.Effect != "" + var yynn1908 int + if yyr1908 || yy2arr1908 { r.EncodeArrayStart(4) } else { - yynn1865 = 0 - for _, b := range yyq1865 { + yynn1908 = 0 + for _, b := range yyq1908 { if b { - yynn1865++ + yynn1908++ } } - r.EncodeMapStart(yynn1865) - yynn1865 = 0 + r.EncodeMapStart(yynn1908) + yynn1908 = 0 } - if yyr1865 || yy2arr1865 { + if yyr1908 || yy2arr1908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1865[0] { - yym1867 := z.EncBinary() - _ = yym1867 + if yyq1908[0] { + yym1910 := z.EncBinary() + _ = yym1910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -25337,38 +25948,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1865[0] { + if yyq1908[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1868 := z.EncBinary() - _ = yym1868 + yym1911 := z.EncBinary() + _ = yym1911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } } - if yyr1865 || yy2arr1865 { + if yyr1908 || yy2arr1908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1865[1] { + if yyq1908[1] { x.Operator.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1865[1] { + if yyq1908[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operator")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } } - if yyr1865 || yy2arr1865 { + if yyr1908 || yy2arr1908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1865[2] { - yym1871 := z.EncBinary() - _ = yym1871 + if yyq1908[2] { + yym1914 := z.EncBinary() + _ = yym1914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -25377,34 +25988,34 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1865[2] { + if yyq1908[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1872 := z.EncBinary() - _ = yym1872 + yym1915 := z.EncBinary() + _ = yym1915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1865 || yy2arr1865 { + if yyr1908 || yy2arr1908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1865[3] { + if yyq1908[3] { x.Effect.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1865[3] { + if yyq1908[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("effect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } } - if yyr1865 || yy2arr1865 { + if yyr1908 || yy2arr1908 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25417,25 +26028,25 @@ func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1874 := z.DecBinary() - _ = yym1874 + yym1917 := z.DecBinary() + _ = yym1917 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1875 := r.ContainerType() - if yyct1875 == codecSelferValueTypeMap1234 { - yyl1875 := r.ReadMapStart() - if yyl1875 == 0 { + yyct1918 := r.ContainerType() + if yyct1918 == codecSelferValueTypeMap1234 { + yyl1918 := r.ReadMapStart() + if yyl1918 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1875, d) + x.codecDecodeSelfFromMap(yyl1918, d) } - } else if yyct1875 == codecSelferValueTypeArray1234 { - yyl1875 := r.ReadArrayStart() - if yyl1875 == 0 { + } else if yyct1918 == codecSelferValueTypeArray1234 { + yyl1918 := r.ReadArrayStart() + if yyl1918 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1875, d) + x.codecDecodeSelfFromArray(yyl1918, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25447,12 +26058,12 @@ func (x *Toleration) 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 yys1919Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1919Slc + var yyhl1919 bool = l >= 0 + for yyj1919 := 0; ; yyj1919++ { + if yyhl1919 { + if yyj1919 >= l { break } } else { @@ -25461,10 +26072,10 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1876Slc = r.DecodeBytes(yys1876Slc, true, true) - yys1876 := string(yys1876Slc) + yys1919Slc = r.DecodeBytes(yys1919Slc, true, true) + yys1919 := string(yys1919Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1876 { + switch yys1919 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -25490,9 +26101,9 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1876) - } // end switch yys1876 - } // end for yyj1876 + z.DecStructFieldNotFound(-1, yys1919) + } // end switch yys1919 + } // end for yyj1919 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25500,16 +26111,16 @@ func (x *Toleration) 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 yyj1924 int + var yyb1924 bool + var yyhl1924 bool = l >= 0 + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1881 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1881 { + if yyb1924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25519,13 +26130,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1881 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1881 { + if yyb1924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25535,13 +26146,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Operator = TolerationOperator(r.DecodeString()) } - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1881 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1881 { + if yyb1924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25551,13 +26162,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1881 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1881 { + if yyb1924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25568,17 +26179,17 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1881++ - if yyhl1881 { - yyb1881 = yyj1881 > l + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1881 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1881 { + if yyb1924 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1881-1, "") + z.DecStructFieldNotFound(yyj1924-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25587,8 +26198,8 @@ func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1886 := z.EncBinary() - _ = yym1886 + yym1929 := z.EncBinary() + _ = yym1929 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -25600,8 +26211,8 @@ func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1887 := z.DecBinary() - _ = yym1887 + yym1930 := z.DecBinary() + _ = yym1930 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -25616,53 +26227,53 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1888 := z.EncBinary() - _ = yym1888 + yym1931 := z.EncBinary() + _ = yym1931 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1889 := !z.EncBinary() - yy2arr1889 := z.EncBasicHandle().StructToArray - var yyq1889 [17]bool - _, _, _ = yysep1889, yyq1889, yy2arr1889 - const yyr1889 bool = false - yyq1889[0] = len(x.Volumes) != 0 - yyq1889[2] = x.RestartPolicy != "" - yyq1889[3] = x.TerminationGracePeriodSeconds != nil - yyq1889[4] = x.ActiveDeadlineSeconds != nil - yyq1889[5] = x.DNSPolicy != "" - yyq1889[6] = len(x.NodeSelector) != 0 - yyq1889[7] = x.ServiceAccountName != "" - yyq1889[8] = x.DeprecatedServiceAccount != "" - yyq1889[9] = x.NodeName != "" - yyq1889[10] = x.HostNetwork != false - yyq1889[11] = x.HostPID != false - yyq1889[12] = x.HostIPC != false - yyq1889[13] = x.SecurityContext != nil - yyq1889[14] = len(x.ImagePullSecrets) != 0 - yyq1889[15] = x.Hostname != "" - yyq1889[16] = x.Subdomain != "" - var yynn1889 int - if yyr1889 || yy2arr1889 { + yysep1932 := !z.EncBinary() + yy2arr1932 := z.EncBasicHandle().StructToArray + var yyq1932 [17]bool + _, _, _ = yysep1932, yyq1932, yy2arr1932 + const yyr1932 bool = false + yyq1932[0] = len(x.Volumes) != 0 + yyq1932[2] = x.RestartPolicy != "" + yyq1932[3] = x.TerminationGracePeriodSeconds != nil + yyq1932[4] = x.ActiveDeadlineSeconds != nil + yyq1932[5] = x.DNSPolicy != "" + yyq1932[6] = len(x.NodeSelector) != 0 + yyq1932[7] = x.ServiceAccountName != "" + yyq1932[8] = x.DeprecatedServiceAccount != "" + yyq1932[9] = x.NodeName != "" + yyq1932[10] = x.HostNetwork != false + yyq1932[11] = x.HostPID != false + yyq1932[12] = x.HostIPC != false + yyq1932[13] = x.SecurityContext != nil + yyq1932[14] = len(x.ImagePullSecrets) != 0 + yyq1932[15] = x.Hostname != "" + yyq1932[16] = x.Subdomain != "" + var yynn1932 int + if yyr1932 || yy2arr1932 { r.EncodeArrayStart(17) } else { - yynn1889 = 1 - for _, b := range yyq1889 { + yynn1932 = 1 + for _, b := range yyq1932 { if b { - yynn1889++ + yynn1932++ } } - r.EncodeMapStart(yynn1889) - yynn1889 = 0 + r.EncodeMapStart(yynn1932) + yynn1932 = 0 } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[0] { + if yyq1932[0] { if x.Volumes == nil { r.EncodeNil() } else { - yym1891 := z.EncBinary() - _ = yym1891 + yym1934 := z.EncBinary() + _ = yym1934 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -25672,15 +26283,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1889[0] { + if yyq1932[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1892 := z.EncBinary() - _ = yym1892 + yym1935 := z.EncBinary() + _ = yym1935 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -25688,13 +26299,13 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1894 := z.EncBinary() - _ = yym1894 + yym1937 := z.EncBinary() + _ = yym1937 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -25707,122 +26318,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1895 := z.EncBinary() - _ = yym1895 + yym1938 := z.EncBinary() + _ = yym1938 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[2] { + if yyq1932[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[2] { + if yyq1932[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[3] { + if yyq1932[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1898 := *x.TerminationGracePeriodSeconds - yym1899 := z.EncBinary() - _ = yym1899 + yy1941 := *x.TerminationGracePeriodSeconds + yym1942 := z.EncBinary() + _ = yym1942 if false { } else { - r.EncodeInt(int64(yy1898)) + r.EncodeInt(int64(yy1941)) } } } else { r.EncodeNil() } } else { - if yyq1889[3] { + if yyq1932[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1900 := *x.TerminationGracePeriodSeconds - yym1901 := z.EncBinary() - _ = yym1901 + yy1943 := *x.TerminationGracePeriodSeconds + yym1944 := z.EncBinary() + _ = yym1944 if false { } else { - r.EncodeInt(int64(yy1900)) + r.EncodeInt(int64(yy1943)) } } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[4] { + if yyq1932[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1903 := *x.ActiveDeadlineSeconds - yym1904 := z.EncBinary() - _ = yym1904 + yy1946 := *x.ActiveDeadlineSeconds + yym1947 := z.EncBinary() + _ = yym1947 if false { } else { - r.EncodeInt(int64(yy1903)) + r.EncodeInt(int64(yy1946)) } } } else { r.EncodeNil() } } else { - if yyq1889[4] { + if yyq1932[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1905 := *x.ActiveDeadlineSeconds - yym1906 := z.EncBinary() - _ = yym1906 + yy1948 := *x.ActiveDeadlineSeconds + yym1949 := z.EncBinary() + _ = yym1949 if false { } else { - r.EncodeInt(int64(yy1905)) + r.EncodeInt(int64(yy1948)) } } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[5] { + if yyq1932[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[5] { + if yyq1932[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[6] { + if yyq1932[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1909 := z.EncBinary() - _ = yym1909 + yym1952 := z.EncBinary() + _ = yym1952 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -25832,15 +26443,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1889[6] { + if yyq1932[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1910 := z.EncBinary() - _ = yym1910 + yym1953 := z.EncBinary() + _ = yym1953 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -25848,11 +26459,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[7] { - yym1912 := z.EncBinary() - _ = yym1912 + if yyq1932[7] { + yym1955 := z.EncBinary() + _ = yym1955 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -25861,23 +26472,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[7] { + if yyq1932[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1913 := z.EncBinary() - _ = yym1913 + yym1956 := z.EncBinary() + _ = yym1956 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[8] { - yym1915 := z.EncBinary() - _ = yym1915 + if yyq1932[8] { + yym1958 := z.EncBinary() + _ = yym1958 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) @@ -25886,23 +26497,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[8] { + if yyq1932[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1916 := z.EncBinary() - _ = yym1916 + yym1959 := z.EncBinary() + _ = yym1959 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[9] { - yym1918 := z.EncBinary() - _ = yym1918 + if yyq1932[9] { + yym1961 := z.EncBinary() + _ = yym1961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -25911,23 +26522,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[9] { + if yyq1932[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1919 := z.EncBinary() - _ = yym1919 + yym1962 := z.EncBinary() + _ = yym1962 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[10] { - yym1921 := z.EncBinary() - _ = yym1921 + if yyq1932[10] { + yym1964 := z.EncBinary() + _ = yym1964 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -25936,23 +26547,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1889[10] { + if yyq1932[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1922 := z.EncBinary() - _ = yym1922 + yym1965 := z.EncBinary() + _ = yym1965 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[11] { - yym1924 := z.EncBinary() - _ = yym1924 + if yyq1932[11] { + yym1967 := z.EncBinary() + _ = yym1967 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -25961,23 +26572,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1889[11] { + if yyq1932[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1925 := z.EncBinary() - _ = yym1925 + yym1968 := z.EncBinary() + _ = yym1968 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[12] { - yym1927 := z.EncBinary() - _ = yym1927 + if yyq1932[12] { + yym1970 := z.EncBinary() + _ = yym1970 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -25986,21 +26597,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1889[12] { + if yyq1932[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1928 := z.EncBinary() - _ = yym1928 + yym1971 := z.EncBinary() + _ = yym1971 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[13] { + if yyq1932[13] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -26010,7 +26621,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1889[13] { + if yyq1932[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -26021,14 +26632,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[14] { + if yyq1932[14] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1931 := z.EncBinary() - _ = yym1931 + yym1974 := z.EncBinary() + _ = yym1974 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26038,15 +26649,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1889[14] { + if yyq1932[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1932 := z.EncBinary() - _ = yym1932 + yym1975 := z.EncBinary() + _ = yym1975 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26054,11 +26665,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[15] { - yym1934 := z.EncBinary() - _ = yym1934 + if yyq1932[15] { + yym1977 := z.EncBinary() + _ = yym1977 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -26067,23 +26678,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[15] { + if yyq1932[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1935 := z.EncBinary() - _ = yym1935 + yym1978 := z.EncBinary() + _ = yym1978 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1889[16] { - yym1937 := z.EncBinary() - _ = yym1937 + if yyq1932[16] { + yym1980 := z.EncBinary() + _ = yym1980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) @@ -26092,19 +26703,19 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1889[16] { + if yyq1932[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subdomain")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1938 := z.EncBinary() - _ = yym1938 + yym1981 := z.EncBinary() + _ = yym1981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) } } } - if yyr1889 || yy2arr1889 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26117,25 +26728,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1939 := z.DecBinary() - _ = yym1939 + yym1982 := z.DecBinary() + _ = yym1982 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1940 := r.ContainerType() - if yyct1940 == codecSelferValueTypeMap1234 { - yyl1940 := r.ReadMapStart() - if yyl1940 == 0 { + yyct1983 := r.ContainerType() + if yyct1983 == codecSelferValueTypeMap1234 { + yyl1983 := r.ReadMapStart() + if yyl1983 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1940, d) + x.codecDecodeSelfFromMap(yyl1983, d) } - } else if yyct1940 == codecSelferValueTypeArray1234 { - yyl1940 := r.ReadArrayStart() - if yyl1940 == 0 { + } else if yyct1983 == codecSelferValueTypeArray1234 { + yyl1983 := r.ReadArrayStart() + if yyl1983 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1940, d) + x.codecDecodeSelfFromArray(yyl1983, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26147,12 +26758,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1941Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1941Slc - var yyhl1941 bool = l >= 0 - for yyj1941 := 0; ; yyj1941++ { - if yyhl1941 { - if yyj1941 >= l { + var yys1984Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1984Slc + var yyhl1984 bool = l >= 0 + for yyj1984 := 0; ; yyj1984++ { + if yyhl1984 { + if yyj1984 >= l { break } } else { @@ -26161,32 +26772,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1941Slc = r.DecodeBytes(yys1941Slc, true, true) - yys1941 := string(yys1941Slc) + yys1984Slc = r.DecodeBytes(yys1984Slc, true, true) + yys1984 := string(yys1984Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1941 { + switch yys1984 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1942 := &x.Volumes - yym1943 := z.DecBinary() - _ = yym1943 + yyv1985 := &x.Volumes + yym1986 := z.DecBinary() + _ = yym1986 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1942), d) + h.decSliceVolume((*[]Volume)(yyv1985), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1944 := &x.Containers - yym1945 := z.DecBinary() - _ = yym1945 + yyv1987 := &x.Containers + yym1988 := z.DecBinary() + _ = yym1988 if false { } else { - h.decSliceContainer((*[]Container)(yyv1944), d) + h.decSliceContainer((*[]Container)(yyv1987), d) } } case "restartPolicy": @@ -26204,8 +26815,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1948 := z.DecBinary() - _ = yym1948 + yym1991 := z.DecBinary() + _ = yym1991 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -26220,8 +26831,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1950 := z.DecBinary() - _ = yym1950 + yym1993 := z.DecBinary() + _ = yym1993 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -26237,12 +26848,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1952 := &x.NodeSelector - yym1953 := z.DecBinary() - _ = yym1953 + yyv1995 := &x.NodeSelector + yym1996 := z.DecBinary() + _ = yym1996 if false { } else { - z.F.DecMapStringStringX(yyv1952, false, d) + z.F.DecMapStringStringX(yyv1995, false, d) } } case "serviceAccountName": @@ -26296,12 +26907,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1961 := &x.ImagePullSecrets - yym1962 := z.DecBinary() - _ = yym1962 + yyv2004 := &x.ImagePullSecrets + yym2005 := z.DecBinary() + _ = yym2005 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1961), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2004), d) } } case "hostname": @@ -26317,9 +26928,9 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1941) - } // end switch yys1941 - } // end for yyj1941 + z.DecStructFieldNotFound(-1, yys1984) + } // end switch yys1984 + } // end for yyj1984 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26327,16 +26938,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1965 int - var yyb1965 bool - var yyhl1965 bool = l >= 0 - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + var yyj2008 int + var yyb2008 bool + var yyhl2008 bool = l >= 0 + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26344,21 +26955,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1966 := &x.Volumes - yym1967 := z.DecBinary() - _ = yym1967 + yyv2009 := &x.Volumes + yym2010 := z.DecBinary() + _ = yym2010 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1966), d) + h.decSliceVolume((*[]Volume)(yyv2009), d) } } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26366,21 +26977,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1968 := &x.Containers - yym1969 := z.DecBinary() - _ = yym1969 + yyv2011 := &x.Containers + yym2012 := z.DecBinary() + _ = yym2012 if false { } else { - h.decSliceContainer((*[]Container)(yyv1968), d) + h.decSliceContainer((*[]Container)(yyv2011), d) } } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26390,13 +27001,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26409,20 +27020,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1972 := z.DecBinary() - _ = yym1972 + yym2015 := z.DecBinary() + _ = yym2015 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26435,20 +27046,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1974 := z.DecBinary() - _ = yym1974 + yym2017 := z.DecBinary() + _ = yym2017 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26458,13 +27069,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26472,21 +27083,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1976 := &x.NodeSelector - yym1977 := z.DecBinary() - _ = yym1977 + yyv2019 := &x.NodeSelector + yym2020 := z.DecBinary() + _ = yym2020 if false { } else { - z.F.DecMapStringStringX(yyv1976, false, d) + z.F.DecMapStringStringX(yyv2019, false, d) } } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26496,13 +27107,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26512,13 +27123,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26528,13 +27139,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26544,13 +27155,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26560,13 +27171,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26576,13 +27187,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26597,13 +27208,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26611,21 +27222,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1985 := &x.ImagePullSecrets - yym1986 := z.DecBinary() - _ = yym1986 + yyv2028 := &x.ImagePullSecrets + yym2029 := z.DecBinary() + _ = yym2029 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1985), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2028), d) } } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26635,13 +27246,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Hostname = string(r.DecodeString()) } - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26652,17 +27263,17 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } for { - yyj1965++ - if yyhl1965 { - yyb1965 = yyj1965 > l + yyj2008++ + if yyhl2008 { + yyb2008 = yyj2008 > l } else { - yyb1965 = r.CheckBreak() + yyb2008 = r.CheckBreak() } - if yyb1965 { + if yyb2008 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1965-1, "") + z.DecStructFieldNotFound(yyj2008-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26674,37 +27285,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1989 := z.EncBinary() - _ = yym1989 + yym2032 := z.EncBinary() + _ = yym2032 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1990 := !z.EncBinary() - yy2arr1990 := z.EncBasicHandle().StructToArray - var yyq1990 [5]bool - _, _, _ = yysep1990, yyq1990, yy2arr1990 - const yyr1990 bool = false - yyq1990[0] = x.SELinuxOptions != nil - yyq1990[1] = x.RunAsUser != nil - yyq1990[2] = x.RunAsNonRoot != nil - yyq1990[3] = len(x.SupplementalGroups) != 0 - yyq1990[4] = x.FSGroup != nil - var yynn1990 int - if yyr1990 || yy2arr1990 { + yysep2033 := !z.EncBinary() + yy2arr2033 := z.EncBasicHandle().StructToArray + var yyq2033 [5]bool + _, _, _ = yysep2033, yyq2033, yy2arr2033 + const yyr2033 bool = false + yyq2033[0] = x.SELinuxOptions != nil + yyq2033[1] = x.RunAsUser != nil + yyq2033[2] = x.RunAsNonRoot != nil + yyq2033[3] = len(x.SupplementalGroups) != 0 + yyq2033[4] = x.FSGroup != nil + var yynn2033 int + if yyr2033 || yy2arr2033 { r.EncodeArrayStart(5) } else { - yynn1990 = 0 - for _, b := range yyq1990 { + yynn2033 = 0 + for _, b := range yyq2033 { if b { - yynn1990++ + yynn2033++ } } - r.EncodeMapStart(yynn1990) - yynn1990 = 0 + r.EncodeMapStart(yynn2033) + yynn2033 = 0 } - if yyr1990 || yy2arr1990 { + if yyr2033 || yy2arr2033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[0] { + if yyq2033[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -26714,7 +27325,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1990[0] { + if yyq2033[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -26725,84 +27336,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1990 || yy2arr1990 { + if yyr2033 || yy2arr2033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[1] { + if yyq2033[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1993 := *x.RunAsUser - yym1994 := z.EncBinary() - _ = yym1994 + yy2036 := *x.RunAsUser + yym2037 := z.EncBinary() + _ = yym2037 if false { } else { - r.EncodeInt(int64(yy1993)) + r.EncodeInt(int64(yy2036)) } } } else { r.EncodeNil() } } else { - if yyq1990[1] { + if yyq2033[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1995 := *x.RunAsUser - yym1996 := z.EncBinary() - _ = yym1996 + yy2038 := *x.RunAsUser + yym2039 := z.EncBinary() + _ = yym2039 if false { } else { - r.EncodeInt(int64(yy1995)) + r.EncodeInt(int64(yy2038)) } } } } - if yyr1990 || yy2arr1990 { + if yyr2033 || yy2arr2033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[2] { + if yyq2033[2] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1998 := *x.RunAsNonRoot - yym1999 := z.EncBinary() - _ = yym1999 + yy2041 := *x.RunAsNonRoot + yym2042 := z.EncBinary() + _ = yym2042 if false { } else { - r.EncodeBool(bool(yy1998)) + r.EncodeBool(bool(yy2041)) } } } else { r.EncodeNil() } } else { - if yyq1990[2] { + if yyq2033[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2000 := *x.RunAsNonRoot - yym2001 := z.EncBinary() - _ = yym2001 + yy2043 := *x.RunAsNonRoot + yym2044 := z.EncBinary() + _ = yym2044 if false { } else { - r.EncodeBool(bool(yy2000)) + r.EncodeBool(bool(yy2043)) } } } } - if yyr1990 || yy2arr1990 { + if yyr2033 || yy2arr2033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[3] { + if yyq2033[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2003 := z.EncBinary() - _ = yym2003 + yym2046 := z.EncBinary() + _ = yym2046 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -26812,15 +27423,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1990[3] { + if yyq2033[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2004 := z.EncBinary() - _ = yym2004 + yym2047 := z.EncBinary() + _ = yym2047 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -26828,42 +27439,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1990 || yy2arr1990 { + if yyr2033 || yy2arr2033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[4] { + if yyq2033[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy2006 := *x.FSGroup - yym2007 := z.EncBinary() - _ = yym2007 + yy2049 := *x.FSGroup + yym2050 := z.EncBinary() + _ = yym2050 if false { } else { - r.EncodeInt(int64(yy2006)) + r.EncodeInt(int64(yy2049)) } } } else { r.EncodeNil() } } else { - if yyq1990[4] { + if yyq2033[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy2008 := *x.FSGroup - yym2009 := z.EncBinary() - _ = yym2009 + yy2051 := *x.FSGroup + yym2052 := z.EncBinary() + _ = yym2052 if false { } else { - r.EncodeInt(int64(yy2008)) + r.EncodeInt(int64(yy2051)) } } } } - if yyr1990 || yy2arr1990 { + if yyr2033 || yy2arr2033 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26876,25 +27487,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2010 := z.DecBinary() - _ = yym2010 + yym2053 := z.DecBinary() + _ = yym2053 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2011 := r.ContainerType() - if yyct2011 == codecSelferValueTypeMap1234 { - yyl2011 := r.ReadMapStart() - if yyl2011 == 0 { + yyct2054 := r.ContainerType() + if yyct2054 == codecSelferValueTypeMap1234 { + yyl2054 := r.ReadMapStart() + if yyl2054 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2011, d) + x.codecDecodeSelfFromMap(yyl2054, d) } - } else if yyct2011 == codecSelferValueTypeArray1234 { - yyl2011 := r.ReadArrayStart() - if yyl2011 == 0 { + } else if yyct2054 == codecSelferValueTypeArray1234 { + yyl2054 := r.ReadArrayStart() + if yyl2054 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2011, d) + x.codecDecodeSelfFromArray(yyl2054, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26906,12 +27517,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2012Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2012Slc - var yyhl2012 bool = l >= 0 - for yyj2012 := 0; ; yyj2012++ { - if yyhl2012 { - if yyj2012 >= l { + var yys2055Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2055Slc + var yyhl2055 bool = l >= 0 + for yyj2055 := 0; ; yyj2055++ { + if yyhl2055 { + if yyj2055 >= l { break } } else { @@ -26920,10 +27531,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2012Slc = r.DecodeBytes(yys2012Slc, true, true) - yys2012 := string(yys2012Slc) + yys2055Slc = r.DecodeBytes(yys2055Slc, true, true) + yys2055 := string(yys2055Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2012 { + switch yys2055 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -26944,8 +27555,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2015 := z.DecBinary() - _ = yym2015 + yym2058 := z.DecBinary() + _ = yym2058 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -26960,8 +27571,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2017 := z.DecBinary() - _ = yym2017 + yym2060 := z.DecBinary() + _ = yym2060 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -26971,12 +27582,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2018 := &x.SupplementalGroups - yym2019 := z.DecBinary() - _ = yym2019 + yyv2061 := &x.SupplementalGroups + yym2062 := z.DecBinary() + _ = yym2062 if false { } else { - z.F.DecSliceInt64X(yyv2018, false, d) + z.F.DecSliceInt64X(yyv2061, false, d) } } case "fsGroup": @@ -26988,17 +27599,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2021 := z.DecBinary() - _ = yym2021 + yym2064 := z.DecBinary() + _ = yym2064 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2012) - } // end switch yys2012 - } // end for yyj2012 + z.DecStructFieldNotFound(-1, yys2055) + } // end switch yys2055 + } // end for yyj2055 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27006,16 +27617,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2022 int - var yyb2022 bool - var yyhl2022 bool = l >= 0 - yyj2022++ - if yyhl2022 { - yyb2022 = yyj2022 > l + var yyj2065 int + var yyb2065 bool + var yyhl2065 bool = l >= 0 + yyj2065++ + if yyhl2065 { + yyb2065 = yyj2065 > l } else { - yyb2022 = r.CheckBreak() + yyb2065 = r.CheckBreak() } - if yyb2022 { + if yyb2065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27030,13 +27641,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj2022++ - if yyhl2022 { - yyb2022 = yyj2022 > l + yyj2065++ + if yyhl2065 { + yyb2065 = yyj2065 > l } else { - yyb2022 = r.CheckBreak() + yyb2065 = r.CheckBreak() } - if yyb2022 { + if yyb2065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27049,20 +27660,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2025 := z.DecBinary() - _ = yym2025 + yym2068 := z.DecBinary() + _ = yym2068 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj2022++ - if yyhl2022 { - yyb2022 = yyj2022 > l + yyj2065++ + if yyhl2065 { + yyb2065 = yyj2065 > l } else { - yyb2022 = r.CheckBreak() + yyb2065 = r.CheckBreak() } - if yyb2022 { + if yyb2065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27075,20 +27686,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2027 := z.DecBinary() - _ = yym2027 + yym2070 := z.DecBinary() + _ = yym2070 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj2022++ - if yyhl2022 { - yyb2022 = yyj2022 > l + yyj2065++ + if yyhl2065 { + yyb2065 = yyj2065 > l } else { - yyb2022 = r.CheckBreak() + yyb2065 = r.CheckBreak() } - if yyb2022 { + if yyb2065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27096,21 +27707,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2028 := &x.SupplementalGroups - yym2029 := z.DecBinary() - _ = yym2029 + yyv2071 := &x.SupplementalGroups + yym2072 := z.DecBinary() + _ = yym2072 if false { } else { - z.F.DecSliceInt64X(yyv2028, false, d) + z.F.DecSliceInt64X(yyv2071, false, d) } } - yyj2022++ - if yyhl2022 { - yyb2022 = yyj2022 > l + yyj2065++ + if yyhl2065 { + yyb2065 = yyj2065 > l } else { - yyb2022 = r.CheckBreak() + yyb2065 = r.CheckBreak() } - if yyb2022 { + if yyb2065 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27123,25 +27734,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2031 := z.DecBinary() - _ = yym2031 + yym2074 := z.DecBinary() + _ = yym2074 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj2022++ - if yyhl2022 { - yyb2022 = yyj2022 > l + yyj2065++ + if yyhl2065 { + yyb2065 = yyj2065 > l } else { - yyb2022 = r.CheckBreak() + yyb2065 = r.CheckBreak() } - if yyb2022 { + if yyb2065 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2022-1, "") + z.DecStructFieldNotFound(yyj2065-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27153,60 +27764,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2032 := z.EncBinary() - _ = yym2032 + yym2075 := z.EncBinary() + _ = yym2075 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2033 := !z.EncBinary() - yy2arr2033 := z.EncBasicHandle().StructToArray - var yyq2033 [8]bool - _, _, _ = yysep2033, yyq2033, yy2arr2033 - const yyr2033 bool = false - yyq2033[0] = x.Phase != "" - yyq2033[1] = len(x.Conditions) != 0 - yyq2033[2] = x.Message != "" - yyq2033[3] = x.Reason != "" - yyq2033[4] = x.HostIP != "" - yyq2033[5] = x.PodIP != "" - yyq2033[6] = x.StartTime != nil - yyq2033[7] = len(x.ContainerStatuses) != 0 - var yynn2033 int - if yyr2033 || yy2arr2033 { + yysep2076 := !z.EncBinary() + yy2arr2076 := z.EncBasicHandle().StructToArray + var yyq2076 [8]bool + _, _, _ = yysep2076, yyq2076, yy2arr2076 + const yyr2076 bool = false + yyq2076[0] = x.Phase != "" + yyq2076[1] = len(x.Conditions) != 0 + yyq2076[2] = x.Message != "" + yyq2076[3] = x.Reason != "" + yyq2076[4] = x.HostIP != "" + yyq2076[5] = x.PodIP != "" + yyq2076[6] = x.StartTime != nil + yyq2076[7] = len(x.ContainerStatuses) != 0 + var yynn2076 int + if yyr2076 || yy2arr2076 { r.EncodeArrayStart(8) } else { - yynn2033 = 0 - for _, b := range yyq2033 { + yynn2076 = 0 + for _, b := range yyq2076 { if b { - yynn2033++ + yynn2076++ } } - r.EncodeMapStart(yynn2033) - yynn2033 = 0 + r.EncodeMapStart(yynn2076) + yynn2076 = 0 } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[0] { + if yyq2076[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2033[0] { + if yyq2076[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[1] { + if yyq2076[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym2036 := z.EncBinary() - _ = yym2036 + yym2079 := z.EncBinary() + _ = yym2079 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -27216,15 +27827,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2033[1] { + if yyq2076[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2037 := z.EncBinary() - _ = yym2037 + yym2080 := z.EncBinary() + _ = yym2080 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -27232,11 +27843,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[2] { - yym2039 := z.EncBinary() - _ = yym2039 + if yyq2076[2] { + yym2082 := z.EncBinary() + _ = yym2082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -27245,23 +27856,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2033[2] { + if yyq2076[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2040 := z.EncBinary() - _ = yym2040 + yym2083 := z.EncBinary() + _ = yym2083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[3] { - yym2042 := z.EncBinary() - _ = yym2042 + if yyq2076[3] { + yym2085 := z.EncBinary() + _ = yym2085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -27270,23 +27881,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2033[3] { + if yyq2076[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2043 := z.EncBinary() - _ = yym2043 + yym2086 := z.EncBinary() + _ = yym2086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[4] { - yym2045 := z.EncBinary() - _ = yym2045 + if yyq2076[4] { + yym2088 := z.EncBinary() + _ = yym2088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -27295,23 +27906,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2033[4] { + if yyq2076[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2046 := z.EncBinary() - _ = yym2046 + yym2089 := z.EncBinary() + _ = yym2089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[5] { - yym2048 := z.EncBinary() - _ = yym2048 + if yyq2076[5] { + yym2091 := z.EncBinary() + _ = yym2091 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -27320,31 +27931,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2033[5] { + if yyq2076[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2049 := z.EncBinary() - _ = yym2049 + yym2092 := z.EncBinary() + _ = yym2092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[6] { + if yyq2076[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym2051 := z.EncBinary() - _ = yym2051 + yym2094 := z.EncBinary() + _ = yym2094 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2051 { + } else if yym2094 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2051 && z.IsJSONHandle() { + } else if !yym2094 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -27354,20 +27965,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2033[6] { + if yyq2076[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym2052 := z.EncBinary() - _ = yym2052 + yym2095 := z.EncBinary() + _ = yym2095 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2052 { + } else if yym2095 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2052 && z.IsJSONHandle() { + } else if !yym2095 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -27375,14 +27986,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2033[7] { + if yyq2076[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2054 := z.EncBinary() - _ = yym2054 + yym2097 := z.EncBinary() + _ = yym2097 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -27392,15 +28003,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2033[7] { + if yyq2076[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2055 := z.EncBinary() - _ = yym2055 + yym2098 := z.EncBinary() + _ = yym2098 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -27408,7 +28019,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2033 || yy2arr2033 { + if yyr2076 || yy2arr2076 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27421,25 +28032,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2056 := z.DecBinary() - _ = yym2056 + yym2099 := z.DecBinary() + _ = yym2099 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2057 := r.ContainerType() - if yyct2057 == codecSelferValueTypeMap1234 { - yyl2057 := r.ReadMapStart() - if yyl2057 == 0 { + yyct2100 := r.ContainerType() + if yyct2100 == codecSelferValueTypeMap1234 { + yyl2100 := r.ReadMapStart() + if yyl2100 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2057, d) + x.codecDecodeSelfFromMap(yyl2100, d) } - } else if yyct2057 == codecSelferValueTypeArray1234 { - yyl2057 := r.ReadArrayStart() - if yyl2057 == 0 { + } else if yyct2100 == codecSelferValueTypeArray1234 { + yyl2100 := r.ReadArrayStart() + if yyl2100 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2057, d) + x.codecDecodeSelfFromArray(yyl2100, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27451,12 +28062,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2058Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2058Slc - var yyhl2058 bool = l >= 0 - for yyj2058 := 0; ; yyj2058++ { - if yyhl2058 { - if yyj2058 >= l { + var yys2101Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2101Slc + var yyhl2101 bool = l >= 0 + for yyj2101 := 0; ; yyj2101++ { + if yyhl2101 { + if yyj2101 >= l { break } } else { @@ -27465,10 +28076,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2058Slc = r.DecodeBytes(yys2058Slc, true, true) - yys2058 := string(yys2058Slc) + yys2101Slc = r.DecodeBytes(yys2101Slc, true, true) + yys2101 := string(yys2101Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2058 { + switch yys2101 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -27479,12 +28090,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2060 := &x.Conditions - yym2061 := z.DecBinary() - _ = yym2061 + yyv2103 := &x.Conditions + yym2104 := z.DecBinary() + _ = yym2104 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2060), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2103), d) } } case "message": @@ -27520,13 +28131,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2067 := z.DecBinary() - _ = yym2067 + yym2110 := z.DecBinary() + _ = yym2110 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2067 { + } else if yym2110 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2067 && z.IsJSONHandle() { + } else if !yym2110 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -27536,18 +28147,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2068 := &x.ContainerStatuses - yym2069 := z.DecBinary() - _ = yym2069 + yyv2111 := &x.ContainerStatuses + yym2112 := z.DecBinary() + _ = yym2112 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2068), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2111), d) } } default: - z.DecStructFieldNotFound(-1, yys2058) - } // end switch yys2058 - } // end for yyj2058 + z.DecStructFieldNotFound(-1, yys2101) + } // end switch yys2101 + } // end for yyj2101 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27555,16 +28166,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2070 int - var yyb2070 bool - var yyhl2070 bool = l >= 0 - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + var yyj2113 int + var yyb2113 bool + var yyhl2113 bool = l >= 0 + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27574,13 +28185,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27588,21 +28199,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2072 := &x.Conditions - yym2073 := z.DecBinary() - _ = yym2073 + yyv2115 := &x.Conditions + yym2116 := z.DecBinary() + _ = yym2116 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2072), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2115), d) } } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27612,13 +28223,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27628,13 +28239,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27644,13 +28255,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27660,13 +28271,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27679,25 +28290,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2079 := z.DecBinary() - _ = yym2079 + yym2122 := z.DecBinary() + _ = yym2122 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2079 { + } else if yym2122 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2079 && z.IsJSONHandle() { + } else if !yym2122 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27705,26 +28316,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2080 := &x.ContainerStatuses - yym2081 := z.DecBinary() - _ = yym2081 + yyv2123 := &x.ContainerStatuses + yym2124 := z.DecBinary() + _ = yym2124 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2080), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2123), d) } } for { - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2113++ + if yyhl2113 { + yyb2113 = yyj2113 > l } else { - yyb2070 = r.CheckBreak() + yyb2113 = r.CheckBreak() } - if yyb2070 { + if yyb2113 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2070-1, "") + z.DecStructFieldNotFound(yyj2113-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27736,38 +28347,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2082 := z.EncBinary() - _ = yym2082 + yym2125 := z.EncBinary() + _ = yym2125 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2083 := !z.EncBinary() - yy2arr2083 := z.EncBasicHandle().StructToArray - var yyq2083 [4]bool - _, _, _ = yysep2083, yyq2083, yy2arr2083 - const yyr2083 bool = false - yyq2083[0] = x.Kind != "" - yyq2083[1] = x.APIVersion != "" - yyq2083[2] = true - yyq2083[3] = true - var yynn2083 int - if yyr2083 || yy2arr2083 { + yysep2126 := !z.EncBinary() + yy2arr2126 := z.EncBasicHandle().StructToArray + var yyq2126 [4]bool + _, _, _ = yysep2126, yyq2126, yy2arr2126 + const yyr2126 bool = false + yyq2126[0] = x.Kind != "" + yyq2126[1] = x.APIVersion != "" + yyq2126[2] = true + yyq2126[3] = true + var yynn2126 int + if yyr2126 || yy2arr2126 { r.EncodeArrayStart(4) } else { - yynn2083 = 0 - for _, b := range yyq2083 { + yynn2126 = 0 + for _, b := range yyq2126 { if b { - yynn2083++ + yynn2126++ } } - r.EncodeMapStart(yynn2083) - yynn2083 = 0 + r.EncodeMapStart(yynn2126) + yynn2126 = 0 } - if yyr2083 || yy2arr2083 { + if yyr2126 || yy2arr2126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2083[0] { - yym2085 := z.EncBinary() - _ = yym2085 + if yyq2126[0] { + yym2128 := z.EncBinary() + _ = yym2128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27776,23 +28387,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2083[0] { + if yyq2126[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2086 := z.EncBinary() - _ = yym2086 + yym2129 := z.EncBinary() + _ = yym2129 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2083 || yy2arr2083 { + if yyr2126 || yy2arr2126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2083[1] { - yym2088 := z.EncBinary() - _ = yym2088 + if yyq2126[1] { + yym2131 := z.EncBinary() + _ = yym2131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27801,53 +28412,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2083[1] { + if yyq2126[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2089 := z.EncBinary() - _ = yym2089 + yym2132 := z.EncBinary() + _ = yym2132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2083 || yy2arr2083 { + if yyr2126 || yy2arr2126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2083[2] { - yy2091 := &x.ObjectMeta - yy2091.CodecEncodeSelf(e) + if yyq2126[2] { + yy2134 := &x.ObjectMeta + yy2134.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2083[2] { + if yyq2126[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2092 := &x.ObjectMeta - yy2092.CodecEncodeSelf(e) + yy2135 := &x.ObjectMeta + yy2135.CodecEncodeSelf(e) } } - if yyr2083 || yy2arr2083 { + if yyr2126 || yy2arr2126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2083[3] { - yy2094 := &x.Status - yy2094.CodecEncodeSelf(e) + if yyq2126[3] { + yy2137 := &x.Status + yy2137.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2083[3] { + if yyq2126[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2095 := &x.Status - yy2095.CodecEncodeSelf(e) + yy2138 := &x.Status + yy2138.CodecEncodeSelf(e) } } - if yyr2083 || yy2arr2083 { + if yyr2126 || yy2arr2126 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27860,25 +28471,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2096 := z.DecBinary() - _ = yym2096 + yym2139 := z.DecBinary() + _ = yym2139 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2097 := r.ContainerType() - if yyct2097 == codecSelferValueTypeMap1234 { - yyl2097 := r.ReadMapStart() - if yyl2097 == 0 { + yyct2140 := r.ContainerType() + if yyct2140 == codecSelferValueTypeMap1234 { + yyl2140 := r.ReadMapStart() + if yyl2140 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2097, d) + x.codecDecodeSelfFromMap(yyl2140, d) } - } else if yyct2097 == codecSelferValueTypeArray1234 { - yyl2097 := r.ReadArrayStart() - if yyl2097 == 0 { + } else if yyct2140 == codecSelferValueTypeArray1234 { + yyl2140 := r.ReadArrayStart() + if yyl2140 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2097, d) + x.codecDecodeSelfFromArray(yyl2140, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27890,12 +28501,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2098Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2098Slc - var yyhl2098 bool = l >= 0 - for yyj2098 := 0; ; yyj2098++ { - if yyhl2098 { - if yyj2098 >= l { + var yys2141Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2141Slc + var yyhl2141 bool = l >= 0 + for yyj2141 := 0; ; yyj2141++ { + if yyhl2141 { + if yyj2141 >= l { break } } else { @@ -27904,10 +28515,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2098Slc = r.DecodeBytes(yys2098Slc, true, true) - yys2098 := string(yys2098Slc) + yys2141Slc = r.DecodeBytes(yys2141Slc, true, true) + yys2141 := string(yys2141Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2098 { + switch yys2141 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27924,20 +28535,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2101 := &x.ObjectMeta - yyv2101.CodecDecodeSelf(d) + yyv2144 := &x.ObjectMeta + yyv2144.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2102 := &x.Status - yyv2102.CodecDecodeSelf(d) + yyv2145 := &x.Status + yyv2145.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2098) - } // end switch yys2098 - } // end for yyj2098 + z.DecStructFieldNotFound(-1, yys2141) + } // end switch yys2141 + } // end for yyj2141 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27945,16 +28556,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2103 int - var yyb2103 bool - var yyhl2103 bool = l >= 0 - yyj2103++ - if yyhl2103 { - yyb2103 = yyj2103 > l + var yyj2146 int + var yyb2146 bool + var yyhl2146 bool = l >= 0 + yyj2146++ + if yyhl2146 { + yyb2146 = yyj2146 > l } else { - yyb2103 = r.CheckBreak() + yyb2146 = r.CheckBreak() } - if yyb2103 { + if yyb2146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27964,13 +28575,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2103++ - if yyhl2103 { - yyb2103 = yyj2103 > l + yyj2146++ + if yyhl2146 { + yyb2146 = yyj2146 > l } else { - yyb2103 = r.CheckBreak() + yyb2146 = r.CheckBreak() } - if yyb2103 { + if yyb2146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27980,13 +28591,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2103++ - if yyhl2103 { - yyb2103 = yyj2103 > l + yyj2146++ + if yyhl2146 { + yyb2146 = yyj2146 > l } else { - yyb2103 = r.CheckBreak() + yyb2146 = r.CheckBreak() } - if yyb2103 { + if yyb2146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27994,16 +28605,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2106 := &x.ObjectMeta - yyv2106.CodecDecodeSelf(d) + yyv2149 := &x.ObjectMeta + yyv2149.CodecDecodeSelf(d) } - yyj2103++ - if yyhl2103 { - yyb2103 = yyj2103 > l + yyj2146++ + if yyhl2146 { + yyb2146 = yyj2146 > l } else { - yyb2103 = r.CheckBreak() + yyb2146 = r.CheckBreak() } - if yyb2103 { + if yyb2146 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28011,21 +28622,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2107 := &x.Status - yyv2107.CodecDecodeSelf(d) + yyv2150 := &x.Status + yyv2150.CodecDecodeSelf(d) } for { - yyj2103++ - if yyhl2103 { - yyb2103 = yyj2103 > l + yyj2146++ + if yyhl2146 { + yyb2146 = yyj2146 > l } else { - yyb2103 = r.CheckBreak() + yyb2146 = r.CheckBreak() } - if yyb2103 { + if yyb2146 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2103-1, "") + z.DecStructFieldNotFound(yyj2146-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28037,39 +28648,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2108 := z.EncBinary() - _ = yym2108 + yym2151 := z.EncBinary() + _ = yym2151 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2109 := !z.EncBinary() - yy2arr2109 := z.EncBasicHandle().StructToArray - var yyq2109 [5]bool - _, _, _ = yysep2109, yyq2109, yy2arr2109 - const yyr2109 bool = false - yyq2109[0] = x.Kind != "" - yyq2109[1] = x.APIVersion != "" - yyq2109[2] = true - yyq2109[3] = true - yyq2109[4] = true - var yynn2109 int - if yyr2109 || yy2arr2109 { + yysep2152 := !z.EncBinary() + yy2arr2152 := z.EncBasicHandle().StructToArray + var yyq2152 [5]bool + _, _, _ = yysep2152, yyq2152, yy2arr2152 + const yyr2152 bool = false + yyq2152[0] = x.Kind != "" + yyq2152[1] = x.APIVersion != "" + yyq2152[2] = true + yyq2152[3] = true + yyq2152[4] = true + var yynn2152 int + if yyr2152 || yy2arr2152 { r.EncodeArrayStart(5) } else { - yynn2109 = 0 - for _, b := range yyq2109 { + yynn2152 = 0 + for _, b := range yyq2152 { if b { - yynn2109++ + yynn2152++ } } - r.EncodeMapStart(yynn2109) - yynn2109 = 0 + r.EncodeMapStart(yynn2152) + yynn2152 = 0 } - if yyr2109 || yy2arr2109 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2109[0] { - yym2111 := z.EncBinary() - _ = yym2111 + if yyq2152[0] { + yym2154 := z.EncBinary() + _ = yym2154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28078,23 +28689,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2109[0] { + if yyq2152[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2112 := z.EncBinary() - _ = yym2112 + yym2155 := z.EncBinary() + _ = yym2155 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2109 || yy2arr2109 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2109[1] { - yym2114 := z.EncBinary() - _ = yym2114 + if yyq2152[1] { + yym2157 := z.EncBinary() + _ = yym2157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28103,70 +28714,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2109[1] { + if yyq2152[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2115 := z.EncBinary() - _ = yym2115 + yym2158 := z.EncBinary() + _ = yym2158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2109 || yy2arr2109 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2109[2] { - yy2117 := &x.ObjectMeta - yy2117.CodecEncodeSelf(e) + if yyq2152[2] { + yy2160 := &x.ObjectMeta + yy2160.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2109[2] { + if yyq2152[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2118 := &x.ObjectMeta - yy2118.CodecEncodeSelf(e) + yy2161 := &x.ObjectMeta + yy2161.CodecEncodeSelf(e) } } - if yyr2109 || yy2arr2109 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2109[3] { - yy2120 := &x.Spec - yy2120.CodecEncodeSelf(e) + if yyq2152[3] { + yy2163 := &x.Spec + yy2163.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2109[3] { + if yyq2152[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2121 := &x.Spec - yy2121.CodecEncodeSelf(e) + yy2164 := &x.Spec + yy2164.CodecEncodeSelf(e) } } - if yyr2109 || yy2arr2109 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2109[4] { - yy2123 := &x.Status - yy2123.CodecEncodeSelf(e) + if yyq2152[4] { + yy2166 := &x.Status + yy2166.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2109[4] { + if yyq2152[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2124 := &x.Status - yy2124.CodecEncodeSelf(e) + yy2167 := &x.Status + yy2167.CodecEncodeSelf(e) } } - if yyr2109 || yy2arr2109 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28179,25 +28790,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2125 := z.DecBinary() - _ = yym2125 + yym2168 := z.DecBinary() + _ = yym2168 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2126 := r.ContainerType() - if yyct2126 == codecSelferValueTypeMap1234 { - yyl2126 := r.ReadMapStart() - if yyl2126 == 0 { + yyct2169 := r.ContainerType() + if yyct2169 == codecSelferValueTypeMap1234 { + yyl2169 := r.ReadMapStart() + if yyl2169 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2126, d) + x.codecDecodeSelfFromMap(yyl2169, d) } - } else if yyct2126 == codecSelferValueTypeArray1234 { - yyl2126 := r.ReadArrayStart() - if yyl2126 == 0 { + } else if yyct2169 == codecSelferValueTypeArray1234 { + yyl2169 := r.ReadArrayStart() + if yyl2169 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2126, d) + x.codecDecodeSelfFromArray(yyl2169, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28209,12 +28820,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2127Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2127Slc - var yyhl2127 bool = l >= 0 - for yyj2127 := 0; ; yyj2127++ { - if yyhl2127 { - if yyj2127 >= l { + var yys2170Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2170Slc + var yyhl2170 bool = l >= 0 + for yyj2170 := 0; ; yyj2170++ { + if yyhl2170 { + if yyj2170 >= l { break } } else { @@ -28223,10 +28834,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2127Slc = r.DecodeBytes(yys2127Slc, true, true) - yys2127 := string(yys2127Slc) + yys2170Slc = r.DecodeBytes(yys2170Slc, true, true) + yys2170 := string(yys2170Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2127 { + switch yys2170 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28243,27 +28854,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2130 := &x.ObjectMeta - yyv2130.CodecDecodeSelf(d) + yyv2173 := &x.ObjectMeta + yyv2173.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2131 := &x.Spec - yyv2131.CodecDecodeSelf(d) + yyv2174 := &x.Spec + yyv2174.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2132 := &x.Status - yyv2132.CodecDecodeSelf(d) + yyv2175 := &x.Status + yyv2175.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2127) - } // end switch yys2127 - } // end for yyj2127 + z.DecStructFieldNotFound(-1, yys2170) + } // end switch yys2170 + } // end for yyj2170 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28271,16 +28882,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2133 int - var yyb2133 bool - var yyhl2133 bool = l >= 0 - yyj2133++ - if yyhl2133 { - yyb2133 = yyj2133 > l + var yyj2176 int + var yyb2176 bool + var yyhl2176 bool = l >= 0 + yyj2176++ + if yyhl2176 { + yyb2176 = yyj2176 > l } else { - yyb2133 = r.CheckBreak() + yyb2176 = r.CheckBreak() } - if yyb2133 { + if yyb2176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28290,13 +28901,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2133++ - if yyhl2133 { - yyb2133 = yyj2133 > l + yyj2176++ + if yyhl2176 { + yyb2176 = yyj2176 > l } else { - yyb2133 = r.CheckBreak() + yyb2176 = r.CheckBreak() } - if yyb2133 { + if yyb2176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28306,13 +28917,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2133++ - if yyhl2133 { - yyb2133 = yyj2133 > l + yyj2176++ + if yyhl2176 { + yyb2176 = yyj2176 > l } else { - yyb2133 = r.CheckBreak() + yyb2176 = r.CheckBreak() } - if yyb2133 { + if yyb2176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28320,16 +28931,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2136 := &x.ObjectMeta - yyv2136.CodecDecodeSelf(d) + yyv2179 := &x.ObjectMeta + yyv2179.CodecDecodeSelf(d) } - yyj2133++ - if yyhl2133 { - yyb2133 = yyj2133 > l + yyj2176++ + if yyhl2176 { + yyb2176 = yyj2176 > l } else { - yyb2133 = r.CheckBreak() + yyb2176 = r.CheckBreak() } - if yyb2133 { + if yyb2176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28337,16 +28948,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2137 := &x.Spec - yyv2137.CodecDecodeSelf(d) + yyv2180 := &x.Spec + yyv2180.CodecDecodeSelf(d) } - yyj2133++ - if yyhl2133 { - yyb2133 = yyj2133 > l + yyj2176++ + if yyhl2176 { + yyb2176 = yyj2176 > l } else { - yyb2133 = r.CheckBreak() + yyb2176 = r.CheckBreak() } - if yyb2133 { + if yyb2176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28354,21 +28965,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2138 := &x.Status - yyv2138.CodecDecodeSelf(d) + yyv2181 := &x.Status + yyv2181.CodecDecodeSelf(d) } for { - yyj2133++ - if yyhl2133 { - yyb2133 = yyj2133 > l + yyj2176++ + if yyhl2176 { + yyb2176 = yyj2176 > l } else { - yyb2133 = r.CheckBreak() + yyb2176 = r.CheckBreak() } - if yyb2133 { + if yyb2176 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2133-1, "") + z.DecStructFieldNotFound(yyj2176-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28380,37 +28991,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2139 := z.EncBinary() - _ = yym2139 + yym2182 := z.EncBinary() + _ = yym2182 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2140 := !z.EncBinary() - yy2arr2140 := z.EncBasicHandle().StructToArray - var yyq2140 [4]bool - _, _, _ = yysep2140, yyq2140, yy2arr2140 - const yyr2140 bool = false - yyq2140[0] = x.Kind != "" - yyq2140[1] = x.APIVersion != "" - yyq2140[2] = true - var yynn2140 int - if yyr2140 || yy2arr2140 { + yysep2183 := !z.EncBinary() + yy2arr2183 := z.EncBasicHandle().StructToArray + var yyq2183 [4]bool + _, _, _ = yysep2183, yyq2183, yy2arr2183 + const yyr2183 bool = false + yyq2183[0] = x.Kind != "" + yyq2183[1] = x.APIVersion != "" + yyq2183[2] = true + var yynn2183 int + if yyr2183 || yy2arr2183 { r.EncodeArrayStart(4) } else { - yynn2140 = 1 - for _, b := range yyq2140 { + yynn2183 = 1 + for _, b := range yyq2183 { if b { - yynn2140++ + yynn2183++ } } - r.EncodeMapStart(yynn2140) - yynn2140 = 0 + r.EncodeMapStart(yynn2183) + yynn2183 = 0 } - if yyr2140 || yy2arr2140 { + if yyr2183 || yy2arr2183 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2140[0] { - yym2142 := z.EncBinary() - _ = yym2142 + if yyq2183[0] { + yym2185 := z.EncBinary() + _ = yym2185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28419,23 +29030,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2140[0] { + if yyq2183[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2143 := z.EncBinary() - _ = yym2143 + yym2186 := z.EncBinary() + _ = yym2186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2140 || yy2arr2140 { + if yyr2183 || yy2arr2183 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2140[1] { - yym2145 := z.EncBinary() - _ = yym2145 + if yyq2183[1] { + yym2188 := z.EncBinary() + _ = yym2188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28444,54 +29055,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2140[1] { + if yyq2183[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2146 := z.EncBinary() - _ = yym2146 + yym2189 := z.EncBinary() + _ = yym2189 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2140 || yy2arr2140 { + if yyr2183 || yy2arr2183 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2140[2] { - yy2148 := &x.ListMeta - yym2149 := z.EncBinary() - _ = yym2149 + if yyq2183[2] { + yy2191 := &x.ListMeta + yym2192 := z.EncBinary() + _ = yym2192 if false { - } else if z.HasExtensions() && z.EncExt(yy2148) { + } else if z.HasExtensions() && z.EncExt(yy2191) { } else { - z.EncFallback(yy2148) + z.EncFallback(yy2191) } } else { r.EncodeNil() } } else { - if yyq2140[2] { + if yyq2183[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2150 := &x.ListMeta - yym2151 := z.EncBinary() - _ = yym2151 + yy2193 := &x.ListMeta + yym2194 := z.EncBinary() + _ = yym2194 if false { - } else if z.HasExtensions() && z.EncExt(yy2150) { + } else if z.HasExtensions() && z.EncExt(yy2193) { } else { - z.EncFallback(yy2150) + z.EncFallback(yy2193) } } } - if yyr2140 || yy2arr2140 { + if yyr2183 || yy2arr2183 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2153 := z.EncBinary() - _ = yym2153 + yym2196 := z.EncBinary() + _ = yym2196 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -28504,15 +29115,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2154 := z.EncBinary() - _ = yym2154 + yym2197 := z.EncBinary() + _ = yym2197 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr2140 || yy2arr2140 { + if yyr2183 || yy2arr2183 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28525,25 +29136,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2155 := z.DecBinary() - _ = yym2155 + yym2198 := z.DecBinary() + _ = yym2198 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2156 := r.ContainerType() - if yyct2156 == codecSelferValueTypeMap1234 { - yyl2156 := r.ReadMapStart() - if yyl2156 == 0 { + yyct2199 := r.ContainerType() + if yyct2199 == codecSelferValueTypeMap1234 { + yyl2199 := r.ReadMapStart() + if yyl2199 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2156, d) + x.codecDecodeSelfFromMap(yyl2199, d) } - } else if yyct2156 == codecSelferValueTypeArray1234 { - yyl2156 := r.ReadArrayStart() - if yyl2156 == 0 { + } else if yyct2199 == codecSelferValueTypeArray1234 { + yyl2199 := r.ReadArrayStart() + if yyl2199 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2156, d) + x.codecDecodeSelfFromArray(yyl2199, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28555,12 +29166,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2157Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2157Slc - var yyhl2157 bool = l >= 0 - for yyj2157 := 0; ; yyj2157++ { - if yyhl2157 { - if yyj2157 >= l { + var yys2200Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2200Slc + var yyhl2200 bool = l >= 0 + for yyj2200 := 0; ; yyj2200++ { + if yyhl2200 { + if yyj2200 >= l { break } } else { @@ -28569,10 +29180,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2157Slc = r.DecodeBytes(yys2157Slc, true, true) - yys2157 := string(yys2157Slc) + yys2200Slc = r.DecodeBytes(yys2200Slc, true, true) + yys2200 := string(yys2200Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2157 { + switch yys2200 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28589,31 +29200,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2160 := &x.ListMeta - yym2161 := z.DecBinary() - _ = yym2161 + yyv2203 := &x.ListMeta + yym2204 := z.DecBinary() + _ = yym2204 if false { - } else if z.HasExtensions() && z.DecExt(yyv2160) { + } else if z.HasExtensions() && z.DecExt(yyv2203) { } else { - z.DecFallback(yyv2160, false) + z.DecFallback(yyv2203, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2162 := &x.Items - yym2163 := z.DecBinary() - _ = yym2163 + yyv2205 := &x.Items + yym2206 := z.DecBinary() + _ = yym2206 if false { } else { - h.decSlicePod((*[]Pod)(yyv2162), d) + h.decSlicePod((*[]Pod)(yyv2205), d) } } default: - z.DecStructFieldNotFound(-1, yys2157) - } // end switch yys2157 - } // end for yyj2157 + z.DecStructFieldNotFound(-1, yys2200) + } // end switch yys2200 + } // end for yyj2200 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28621,16 +29232,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2164 int - var yyb2164 bool - var yyhl2164 bool = l >= 0 - yyj2164++ - if yyhl2164 { - yyb2164 = yyj2164 > l + var yyj2207 int + var yyb2207 bool + var yyhl2207 bool = l >= 0 + yyj2207++ + if yyhl2207 { + yyb2207 = yyj2207 > l } else { - yyb2164 = r.CheckBreak() + yyb2207 = r.CheckBreak() } - if yyb2164 { + if yyb2207 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28640,13 +29251,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2164++ - if yyhl2164 { - yyb2164 = yyj2164 > l + yyj2207++ + if yyhl2207 { + yyb2207 = yyj2207 > l } else { - yyb2164 = r.CheckBreak() + yyb2207 = r.CheckBreak() } - if yyb2164 { + if yyb2207 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28656,13 +29267,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2164++ - if yyhl2164 { - yyb2164 = yyj2164 > l + yyj2207++ + if yyhl2207 { + yyb2207 = yyj2207 > l } else { - yyb2164 = r.CheckBreak() + yyb2207 = r.CheckBreak() } - if yyb2164 { + if yyb2207 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28670,22 +29281,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2167 := &x.ListMeta - yym2168 := z.DecBinary() - _ = yym2168 + yyv2210 := &x.ListMeta + yym2211 := z.DecBinary() + _ = yym2211 if false { - } else if z.HasExtensions() && z.DecExt(yyv2167) { + } else if z.HasExtensions() && z.DecExt(yyv2210) { } else { - z.DecFallback(yyv2167, false) + z.DecFallback(yyv2210, false) } } - yyj2164++ - if yyhl2164 { - yyb2164 = yyj2164 > l + yyj2207++ + if yyhl2207 { + yyb2207 = yyj2207 > l } else { - yyb2164 = r.CheckBreak() + yyb2207 = r.CheckBreak() } - if yyb2164 { + if yyb2207 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28693,26 +29304,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2169 := &x.Items - yym2170 := z.DecBinary() - _ = yym2170 + yyv2212 := &x.Items + yym2213 := z.DecBinary() + _ = yym2213 if false { } else { - h.decSlicePod((*[]Pod)(yyv2169), d) + h.decSlicePod((*[]Pod)(yyv2212), d) } } for { - yyj2164++ - if yyhl2164 { - yyb2164 = yyj2164 > l + yyj2207++ + if yyhl2207 { + yyb2207 = yyj2207 > l } else { - yyb2164 = r.CheckBreak() + yyb2207 = r.CheckBreak() } - if yyb2164 { + if yyb2207 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2164-1, "") + z.DecStructFieldNotFound(yyj2207-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28724,66 +29335,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2171 := z.EncBinary() - _ = yym2171 + yym2214 := z.EncBinary() + _ = yym2214 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2172 := !z.EncBinary() - yy2arr2172 := z.EncBasicHandle().StructToArray - var yyq2172 [2]bool - _, _, _ = yysep2172, yyq2172, yy2arr2172 - const yyr2172 bool = false - yyq2172[0] = true - yyq2172[1] = true - var yynn2172 int - if yyr2172 || yy2arr2172 { + yysep2215 := !z.EncBinary() + yy2arr2215 := z.EncBasicHandle().StructToArray + var yyq2215 [2]bool + _, _, _ = yysep2215, yyq2215, yy2arr2215 + const yyr2215 bool = false + yyq2215[0] = true + yyq2215[1] = true + var yynn2215 int + if yyr2215 || yy2arr2215 { r.EncodeArrayStart(2) } else { - yynn2172 = 0 - for _, b := range yyq2172 { + yynn2215 = 0 + for _, b := range yyq2215 { if b { - yynn2172++ + yynn2215++ } } - r.EncodeMapStart(yynn2172) - yynn2172 = 0 + r.EncodeMapStart(yynn2215) + yynn2215 = 0 } - if yyr2172 || yy2arr2172 { + if yyr2215 || yy2arr2215 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[0] { - yy2174 := &x.ObjectMeta - yy2174.CodecEncodeSelf(e) + if yyq2215[0] { + yy2217 := &x.ObjectMeta + yy2217.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2172[0] { + if yyq2215[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2175 := &x.ObjectMeta - yy2175.CodecEncodeSelf(e) + yy2218 := &x.ObjectMeta + yy2218.CodecEncodeSelf(e) } } - if yyr2172 || yy2arr2172 { + if yyr2215 || yy2arr2215 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[1] { - yy2177 := &x.Spec - yy2177.CodecEncodeSelf(e) + if yyq2215[1] { + yy2220 := &x.Spec + yy2220.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2172[1] { + if yyq2215[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2178 := &x.Spec - yy2178.CodecEncodeSelf(e) + yy2221 := &x.Spec + yy2221.CodecEncodeSelf(e) } } - if yyr2172 || yy2arr2172 { + if yyr2215 || yy2arr2215 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28796,25 +29407,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2179 := z.DecBinary() - _ = yym2179 + yym2222 := z.DecBinary() + _ = yym2222 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2180 := r.ContainerType() - if yyct2180 == codecSelferValueTypeMap1234 { - yyl2180 := r.ReadMapStart() - if yyl2180 == 0 { + yyct2223 := r.ContainerType() + if yyct2223 == codecSelferValueTypeMap1234 { + yyl2223 := r.ReadMapStart() + if yyl2223 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2180, d) + x.codecDecodeSelfFromMap(yyl2223, d) } - } else if yyct2180 == codecSelferValueTypeArray1234 { - yyl2180 := r.ReadArrayStart() - if yyl2180 == 0 { + } else if yyct2223 == codecSelferValueTypeArray1234 { + yyl2223 := r.ReadArrayStart() + if yyl2223 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2180, d) + x.codecDecodeSelfFromArray(yyl2223, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28826,12 +29437,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2181Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2181Slc - var yyhl2181 bool = l >= 0 - for yyj2181 := 0; ; yyj2181++ { - if yyhl2181 { - if yyj2181 >= l { + var yys2224Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2224Slc + var yyhl2224 bool = l >= 0 + for yyj2224 := 0; ; yyj2224++ { + if yyhl2224 { + if yyj2224 >= l { break } } else { @@ -28840,28 +29451,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2181Slc = r.DecodeBytes(yys2181Slc, true, true) - yys2181 := string(yys2181Slc) + yys2224Slc = r.DecodeBytes(yys2224Slc, true, true) + yys2224 := string(yys2224Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2181 { + switch yys2224 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2182 := &x.ObjectMeta - yyv2182.CodecDecodeSelf(d) + yyv2225 := &x.ObjectMeta + yyv2225.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2183 := &x.Spec - yyv2183.CodecDecodeSelf(d) + yyv2226 := &x.Spec + yyv2226.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2181) - } // end switch yys2181 - } // end for yyj2181 + z.DecStructFieldNotFound(-1, yys2224) + } // end switch yys2224 + } // end for yyj2224 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28869,16 +29480,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2184 int - var yyb2184 bool - var yyhl2184 bool = l >= 0 - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + var yyj2227 int + var yyb2227 bool + var yyhl2227 bool = l >= 0 + yyj2227++ + if yyhl2227 { + yyb2227 = yyj2227 > l } else { - yyb2184 = r.CheckBreak() + yyb2227 = r.CheckBreak() } - if yyb2184 { + if yyb2227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28886,16 +29497,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2185 := &x.ObjectMeta - yyv2185.CodecDecodeSelf(d) + yyv2228 := &x.ObjectMeta + yyv2228.CodecDecodeSelf(d) } - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + yyj2227++ + if yyhl2227 { + yyb2227 = yyj2227 > l } else { - yyb2184 = r.CheckBreak() + yyb2227 = r.CheckBreak() } - if yyb2184 { + if yyb2227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28903,21 +29514,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2186 := &x.Spec - yyv2186.CodecDecodeSelf(d) + yyv2229 := &x.Spec + yyv2229.CodecDecodeSelf(d) } for { - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + yyj2227++ + if yyhl2227 { + yyb2227 = yyj2227 > l } else { - yyb2184 = r.CheckBreak() + yyb2227 = r.CheckBreak() } - if yyb2184 { + if yyb2227 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2184-1, "") + z.DecStructFieldNotFound(yyj2227-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28929,38 +29540,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2187 := z.EncBinary() - _ = yym2187 + yym2230 := z.EncBinary() + _ = yym2230 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2188 := !z.EncBinary() - yy2arr2188 := z.EncBasicHandle().StructToArray - var yyq2188 [4]bool - _, _, _ = yysep2188, yyq2188, yy2arr2188 - const yyr2188 bool = false - yyq2188[0] = x.Kind != "" - yyq2188[1] = x.APIVersion != "" - yyq2188[2] = true - yyq2188[3] = true - var yynn2188 int - if yyr2188 || yy2arr2188 { + yysep2231 := !z.EncBinary() + yy2arr2231 := z.EncBasicHandle().StructToArray + var yyq2231 [4]bool + _, _, _ = yysep2231, yyq2231, yy2arr2231 + const yyr2231 bool = false + yyq2231[0] = x.Kind != "" + yyq2231[1] = x.APIVersion != "" + yyq2231[2] = true + yyq2231[3] = true + var yynn2231 int + if yyr2231 || yy2arr2231 { r.EncodeArrayStart(4) } else { - yynn2188 = 0 - for _, b := range yyq2188 { + yynn2231 = 0 + for _, b := range yyq2231 { if b { - yynn2188++ + yynn2231++ } } - r.EncodeMapStart(yynn2188) - yynn2188 = 0 + r.EncodeMapStart(yynn2231) + yynn2231 = 0 } - if yyr2188 || yy2arr2188 { + if yyr2231 || yy2arr2231 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[0] { - yym2190 := z.EncBinary() - _ = yym2190 + if yyq2231[0] { + yym2233 := z.EncBinary() + _ = yym2233 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28969,23 +29580,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2188[0] { + if yyq2231[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2191 := z.EncBinary() - _ = yym2191 + yym2234 := z.EncBinary() + _ = yym2234 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2188 || yy2arr2188 { + if yyr2231 || yy2arr2231 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[1] { - yym2193 := z.EncBinary() - _ = yym2193 + if yyq2231[1] { + yym2236 := z.EncBinary() + _ = yym2236 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28994,53 +29605,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2188[1] { + if yyq2231[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2194 := z.EncBinary() - _ = yym2194 + yym2237 := z.EncBinary() + _ = yym2237 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2188 || yy2arr2188 { + if yyr2231 || yy2arr2231 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[2] { - yy2196 := &x.ObjectMeta - yy2196.CodecEncodeSelf(e) + if yyq2231[2] { + yy2239 := &x.ObjectMeta + yy2239.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2188[2] { + if yyq2231[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2197 := &x.ObjectMeta - yy2197.CodecEncodeSelf(e) + yy2240 := &x.ObjectMeta + yy2240.CodecEncodeSelf(e) } } - if yyr2188 || yy2arr2188 { + if yyr2231 || yy2arr2231 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[3] { - yy2199 := &x.Template - yy2199.CodecEncodeSelf(e) + if yyq2231[3] { + yy2242 := &x.Template + yy2242.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2188[3] { + if yyq2231[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2200 := &x.Template - yy2200.CodecEncodeSelf(e) + yy2243 := &x.Template + yy2243.CodecEncodeSelf(e) } } - if yyr2188 || yy2arr2188 { + if yyr2231 || yy2arr2231 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29053,25 +29664,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2201 := z.DecBinary() - _ = yym2201 + yym2244 := z.DecBinary() + _ = yym2244 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2202 := r.ContainerType() - if yyct2202 == codecSelferValueTypeMap1234 { - yyl2202 := r.ReadMapStart() - if yyl2202 == 0 { + yyct2245 := r.ContainerType() + if yyct2245 == codecSelferValueTypeMap1234 { + yyl2245 := r.ReadMapStart() + if yyl2245 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2202, d) + x.codecDecodeSelfFromMap(yyl2245, d) } - } else if yyct2202 == codecSelferValueTypeArray1234 { - yyl2202 := r.ReadArrayStart() - if yyl2202 == 0 { + } else if yyct2245 == codecSelferValueTypeArray1234 { + yyl2245 := r.ReadArrayStart() + if yyl2245 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2202, d) + x.codecDecodeSelfFromArray(yyl2245, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29083,12 +29694,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2203Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2203Slc - var yyhl2203 bool = l >= 0 - for yyj2203 := 0; ; yyj2203++ { - if yyhl2203 { - if yyj2203 >= l { + var yys2246Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2246Slc + var yyhl2246 bool = l >= 0 + for yyj2246 := 0; ; yyj2246++ { + if yyhl2246 { + if yyj2246 >= l { break } } else { @@ -29097,10 +29708,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2203Slc = r.DecodeBytes(yys2203Slc, true, true) - yys2203 := string(yys2203Slc) + yys2246Slc = r.DecodeBytes(yys2246Slc, true, true) + yys2246 := string(yys2246Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2203 { + switch yys2246 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29117,20 +29728,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2206 := &x.ObjectMeta - yyv2206.CodecDecodeSelf(d) + yyv2249 := &x.ObjectMeta + yyv2249.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2207 := &x.Template - yyv2207.CodecDecodeSelf(d) + yyv2250 := &x.Template + yyv2250.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2203) - } // end switch yys2203 - } // end for yyj2203 + z.DecStructFieldNotFound(-1, yys2246) + } // end switch yys2246 + } // end for yyj2246 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29138,16 +29749,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2208 int - var yyb2208 bool - var yyhl2208 bool = l >= 0 - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + var yyj2251 int + var yyb2251 bool + var yyhl2251 bool = l >= 0 + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29157,13 +29768,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29173,13 +29784,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29187,16 +29798,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2211 := &x.ObjectMeta - yyv2211.CodecDecodeSelf(d) + yyv2254 := &x.ObjectMeta + yyv2254.CodecDecodeSelf(d) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29204,21 +29815,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2212 := &x.Template - yyv2212.CodecDecodeSelf(d) + yyv2255 := &x.Template + yyv2255.CodecDecodeSelf(d) } for { - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2208 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2208 { + if yyb2251 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2208-1, "") + z.DecStructFieldNotFound(yyj2251-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29230,37 +29841,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2213 := z.EncBinary() - _ = yym2213 + yym2256 := z.EncBinary() + _ = yym2256 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2214 := !z.EncBinary() - yy2arr2214 := z.EncBasicHandle().StructToArray - var yyq2214 [4]bool - _, _, _ = yysep2214, yyq2214, yy2arr2214 - const yyr2214 bool = false - yyq2214[0] = x.Kind != "" - yyq2214[1] = x.APIVersion != "" - yyq2214[2] = true - var yynn2214 int - if yyr2214 || yy2arr2214 { + yysep2257 := !z.EncBinary() + yy2arr2257 := z.EncBasicHandle().StructToArray + var yyq2257 [4]bool + _, _, _ = yysep2257, yyq2257, yy2arr2257 + const yyr2257 bool = false + yyq2257[0] = x.Kind != "" + yyq2257[1] = x.APIVersion != "" + yyq2257[2] = true + var yynn2257 int + if yyr2257 || yy2arr2257 { r.EncodeArrayStart(4) } else { - yynn2214 = 1 - for _, b := range yyq2214 { + yynn2257 = 1 + for _, b := range yyq2257 { if b { - yynn2214++ + yynn2257++ } } - r.EncodeMapStart(yynn2214) - yynn2214 = 0 + r.EncodeMapStart(yynn2257) + yynn2257 = 0 } - if yyr2214 || yy2arr2214 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2214[0] { - yym2216 := z.EncBinary() - _ = yym2216 + if yyq2257[0] { + yym2259 := z.EncBinary() + _ = yym2259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29269,23 +29880,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2214[0] { + if yyq2257[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2217 := z.EncBinary() - _ = yym2217 + yym2260 := z.EncBinary() + _ = yym2260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2214 || yy2arr2214 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2214[1] { - yym2219 := z.EncBinary() - _ = yym2219 + if yyq2257[1] { + yym2262 := z.EncBinary() + _ = yym2262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29294,54 +29905,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2214[1] { + if yyq2257[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2220 := z.EncBinary() - _ = yym2220 + yym2263 := z.EncBinary() + _ = yym2263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2214 || yy2arr2214 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2214[2] { - yy2222 := &x.ListMeta - yym2223 := z.EncBinary() - _ = yym2223 + if yyq2257[2] { + yy2265 := &x.ListMeta + yym2266 := z.EncBinary() + _ = yym2266 if false { - } else if z.HasExtensions() && z.EncExt(yy2222) { + } else if z.HasExtensions() && z.EncExt(yy2265) { } else { - z.EncFallback(yy2222) + z.EncFallback(yy2265) } } else { r.EncodeNil() } } else { - if yyq2214[2] { + if yyq2257[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2224 := &x.ListMeta - yym2225 := z.EncBinary() - _ = yym2225 + yy2267 := &x.ListMeta + yym2268 := z.EncBinary() + _ = yym2268 if false { - } else if z.HasExtensions() && z.EncExt(yy2224) { + } else if z.HasExtensions() && z.EncExt(yy2267) { } else { - z.EncFallback(yy2224) + z.EncFallback(yy2267) } } } - if yyr2214 || yy2arr2214 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2227 := z.EncBinary() - _ = yym2227 + yym2270 := z.EncBinary() + _ = yym2270 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -29354,15 +29965,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2228 := z.EncBinary() - _ = yym2228 + yym2271 := z.EncBinary() + _ = yym2271 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr2214 || yy2arr2214 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29375,25 +29986,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2229 := z.DecBinary() - _ = yym2229 + yym2272 := z.DecBinary() + _ = yym2272 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2230 := r.ContainerType() - if yyct2230 == codecSelferValueTypeMap1234 { - yyl2230 := r.ReadMapStart() - if yyl2230 == 0 { + yyct2273 := r.ContainerType() + if yyct2273 == codecSelferValueTypeMap1234 { + yyl2273 := r.ReadMapStart() + if yyl2273 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2230, d) + x.codecDecodeSelfFromMap(yyl2273, d) } - } else if yyct2230 == codecSelferValueTypeArray1234 { - yyl2230 := r.ReadArrayStart() - if yyl2230 == 0 { + } else if yyct2273 == codecSelferValueTypeArray1234 { + yyl2273 := r.ReadArrayStart() + if yyl2273 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2230, d) + x.codecDecodeSelfFromArray(yyl2273, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29405,12 +30016,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2231Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2231Slc - var yyhl2231 bool = l >= 0 - for yyj2231 := 0; ; yyj2231++ { - if yyhl2231 { - if yyj2231 >= l { + var yys2274Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2274Slc + var yyhl2274 bool = l >= 0 + for yyj2274 := 0; ; yyj2274++ { + if yyhl2274 { + if yyj2274 >= l { break } } else { @@ -29419,10 +30030,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2231Slc = r.DecodeBytes(yys2231Slc, true, true) - yys2231 := string(yys2231Slc) + yys2274Slc = r.DecodeBytes(yys2274Slc, true, true) + yys2274 := string(yys2274Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2231 { + switch yys2274 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29439,31 +30050,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2234 := &x.ListMeta - yym2235 := z.DecBinary() - _ = yym2235 + yyv2277 := &x.ListMeta + yym2278 := z.DecBinary() + _ = yym2278 if false { - } else if z.HasExtensions() && z.DecExt(yyv2234) { + } else if z.HasExtensions() && z.DecExt(yyv2277) { } else { - z.DecFallback(yyv2234, false) + z.DecFallback(yyv2277, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2236 := &x.Items - yym2237 := z.DecBinary() - _ = yym2237 + yyv2279 := &x.Items + yym2280 := z.DecBinary() + _ = yym2280 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2236), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2279), d) } } default: - z.DecStructFieldNotFound(-1, yys2231) - } // end switch yys2231 - } // end for yyj2231 + z.DecStructFieldNotFound(-1, yys2274) + } // end switch yys2274 + } // end for yyj2274 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29471,16 +30082,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2238 int - var yyb2238 bool - var yyhl2238 bool = l >= 0 - yyj2238++ - if yyhl2238 { - yyb2238 = yyj2238 > l + var yyj2281 int + var yyb2281 bool + var yyhl2281 bool = l >= 0 + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2238 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2238 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29490,13 +30101,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2238++ - if yyhl2238 { - yyb2238 = yyj2238 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2238 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2238 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29506,13 +30117,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2238++ - if yyhl2238 { - yyb2238 = yyj2238 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2238 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2238 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29520,22 +30131,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2241 := &x.ListMeta - yym2242 := z.DecBinary() - _ = yym2242 + yyv2284 := &x.ListMeta + yym2285 := z.DecBinary() + _ = yym2285 if false { - } else if z.HasExtensions() && z.DecExt(yyv2241) { + } else if z.HasExtensions() && z.DecExt(yyv2284) { } else { - z.DecFallback(yyv2241, false) + z.DecFallback(yyv2284, false) } } - yyj2238++ - if yyhl2238 { - yyb2238 = yyj2238 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2238 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2238 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29543,26 +30154,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2243 := &x.Items - yym2244 := z.DecBinary() - _ = yym2244 + yyv2286 := &x.Items + yym2287 := z.DecBinary() + _ = yym2287 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2243), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2286), d) } } for { - yyj2238++ - if yyhl2238 { - yyb2238 = yyj2238 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2238 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2238 { + if yyb2281 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2238-1, "") + z.DecStructFieldNotFound(yyj2281-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29574,75 +30185,75 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2245 := z.EncBinary() - _ = yym2245 + yym2288 := z.EncBinary() + _ = yym2288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2246 := !z.EncBinary() - yy2arr2246 := z.EncBasicHandle().StructToArray - var yyq2246 [3]bool - _, _, _ = yysep2246, yyq2246, yy2arr2246 - const yyr2246 bool = false - yyq2246[0] = x.Replicas != nil - yyq2246[1] = len(x.Selector) != 0 - yyq2246[2] = x.Template != nil - var yynn2246 int - if yyr2246 || yy2arr2246 { + yysep2289 := !z.EncBinary() + yy2arr2289 := z.EncBasicHandle().StructToArray + var yyq2289 [3]bool + _, _, _ = yysep2289, yyq2289, yy2arr2289 + const yyr2289 bool = false + yyq2289[0] = x.Replicas != nil + yyq2289[1] = len(x.Selector) != 0 + yyq2289[2] = x.Template != nil + var yynn2289 int + if yyr2289 || yy2arr2289 { r.EncodeArrayStart(3) } else { - yynn2246 = 0 - for _, b := range yyq2246 { + yynn2289 = 0 + for _, b := range yyq2289 { if b { - yynn2246++ + yynn2289++ } } - r.EncodeMapStart(yynn2246) - yynn2246 = 0 + r.EncodeMapStart(yynn2289) + yynn2289 = 0 } - if yyr2246 || yy2arr2246 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2246[0] { + if yyq2289[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy2248 := *x.Replicas - yym2249 := z.EncBinary() - _ = yym2249 + yy2291 := *x.Replicas + yym2292 := z.EncBinary() + _ = yym2292 if false { } else { - r.EncodeInt(int64(yy2248)) + r.EncodeInt(int64(yy2291)) } } } else { r.EncodeNil() } } else { - if yyq2246[0] { + if yyq2289[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy2250 := *x.Replicas - yym2251 := z.EncBinary() - _ = yym2251 + yy2293 := *x.Replicas + yym2294 := z.EncBinary() + _ = yym2294 if false { } else { - r.EncodeInt(int64(yy2250)) + r.EncodeInt(int64(yy2293)) } } } } - if yyr2246 || yy2arr2246 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2246[1] { + if yyq2289[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2253 := z.EncBinary() - _ = yym2253 + yym2296 := z.EncBinary() + _ = yym2296 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -29652,15 +30263,15 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2246[1] { + if yyq2289[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2254 := z.EncBinary() - _ = yym2254 + yym2297 := z.EncBinary() + _ = yym2297 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -29668,9 +30279,9 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2246 || yy2arr2246 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2246[2] { + if yyq2289[2] { if x.Template == nil { r.EncodeNil() } else { @@ -29680,7 +30291,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2246[2] { + if yyq2289[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -29691,7 +30302,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2246 || yy2arr2246 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29704,25 +30315,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2256 := z.DecBinary() - _ = yym2256 + yym2299 := z.DecBinary() + _ = yym2299 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2257 := r.ContainerType() - if yyct2257 == codecSelferValueTypeMap1234 { - yyl2257 := r.ReadMapStart() - if yyl2257 == 0 { + yyct2300 := r.ContainerType() + if yyct2300 == codecSelferValueTypeMap1234 { + yyl2300 := r.ReadMapStart() + if yyl2300 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2257, d) + x.codecDecodeSelfFromMap(yyl2300, d) } - } else if yyct2257 == codecSelferValueTypeArray1234 { - yyl2257 := r.ReadArrayStart() - if yyl2257 == 0 { + } else if yyct2300 == codecSelferValueTypeArray1234 { + yyl2300 := r.ReadArrayStart() + if yyl2300 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2257, d) + x.codecDecodeSelfFromArray(yyl2300, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29734,12 +30345,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2258Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2258Slc - var yyhl2258 bool = l >= 0 - for yyj2258 := 0; ; yyj2258++ { - if yyhl2258 { - if yyj2258 >= l { + var yys2301Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2301Slc + var yyhl2301 bool = l >= 0 + for yyj2301 := 0; ; yyj2301++ { + if yyhl2301 { + if yyj2301 >= l { break } } else { @@ -29748,10 +30359,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2258Slc = r.DecodeBytes(yys2258Slc, true, true) - yys2258 := string(yys2258Slc) + yys2301Slc = r.DecodeBytes(yys2301Slc, true, true) + yys2301 := string(yys2301Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2258 { + switch yys2301 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -29761,8 +30372,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym2260 := z.DecBinary() - _ = yym2260 + yym2303 := z.DecBinary() + _ = yym2303 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -29772,12 +30383,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2261 := &x.Selector - yym2262 := z.DecBinary() - _ = yym2262 + yyv2304 := &x.Selector + yym2305 := z.DecBinary() + _ = yym2305 if false { } else { - z.F.DecMapStringStringX(yyv2261, false, d) + z.F.DecMapStringStringX(yyv2304, false, d) } } case "template": @@ -29792,9 +30403,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2258) - } // end switch yys2258 - } // end for yyj2258 + z.DecStructFieldNotFound(-1, yys2301) + } // end switch yys2301 + } // end for yyj2301 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29802,16 +30413,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2264 int - var yyb2264 bool - var yyhl2264 bool = l >= 0 - yyj2264++ - if yyhl2264 { - yyb2264 = yyj2264 > l + var yyj2307 int + var yyb2307 bool + var yyhl2307 bool = l >= 0 + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2264 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2264 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29824,20 +30435,20 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Replicas == nil { x.Replicas = new(int32) } - yym2266 := z.DecBinary() - _ = yym2266 + yym2309 := z.DecBinary() + _ = yym2309 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj2264++ - if yyhl2264 { - yyb2264 = yyj2264 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2264 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2264 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29845,21 +30456,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2267 := &x.Selector - yym2268 := z.DecBinary() - _ = yym2268 + yyv2310 := &x.Selector + yym2311 := z.DecBinary() + _ = yym2311 if false { } else { - z.F.DecMapStringStringX(yyv2267, false, d) + z.F.DecMapStringStringX(yyv2310, false, d) } } - yyj2264++ - if yyhl2264 { - yyb2264 = yyj2264 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2264 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2264 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29875,17 +30486,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj2264++ - if yyhl2264 { - yyb2264 = yyj2264 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2264 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2264 { + if yyb2307 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2264-1, "") + z.DecStructFieldNotFound(yyj2307-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29897,35 +30508,35 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2270 := z.EncBinary() - _ = yym2270 + yym2313 := z.EncBinary() + _ = yym2313 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2271 := !z.EncBinary() - yy2arr2271 := z.EncBasicHandle().StructToArray - var yyq2271 [3]bool - _, _, _ = yysep2271, yyq2271, yy2arr2271 - const yyr2271 bool = false - yyq2271[1] = x.FullyLabeledReplicas != 0 - yyq2271[2] = x.ObservedGeneration != 0 - var yynn2271 int - if yyr2271 || yy2arr2271 { + yysep2314 := !z.EncBinary() + yy2arr2314 := z.EncBasicHandle().StructToArray + var yyq2314 [3]bool + _, _, _ = yysep2314, yyq2314, yy2arr2314 + const yyr2314 bool = false + yyq2314[1] = x.FullyLabeledReplicas != 0 + yyq2314[2] = x.ObservedGeneration != 0 + var yynn2314 int + if yyr2314 || yy2arr2314 { r.EncodeArrayStart(3) } else { - yynn2271 = 1 - for _, b := range yyq2271 { + yynn2314 = 1 + for _, b := range yyq2314 { if b { - yynn2271++ + yynn2314++ } } - r.EncodeMapStart(yynn2271) - yynn2271 = 0 + r.EncodeMapStart(yynn2314) + yynn2314 = 0 } - if yyr2271 || yy2arr2271 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2273 := z.EncBinary() - _ = yym2273 + yym2316 := z.EncBinary() + _ = yym2316 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -29934,18 +30545,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2274 := z.EncBinary() - _ = yym2274 + yym2317 := z.EncBinary() + _ = yym2317 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr2271 || yy2arr2271 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2271[1] { - yym2276 := z.EncBinary() - _ = yym2276 + if yyq2314[1] { + yym2319 := z.EncBinary() + _ = yym2319 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) @@ -29954,23 +30565,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2271[1] { + if yyq2314[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2277 := z.EncBinary() - _ = yym2277 + yym2320 := z.EncBinary() + _ = yym2320 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) } } } - if yyr2271 || yy2arr2271 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2271[2] { - yym2279 := z.EncBinary() - _ = yym2279 + if yyq2314[2] { + yym2322 := z.EncBinary() + _ = yym2322 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -29979,19 +30590,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2271[2] { + if yyq2314[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2280 := z.EncBinary() - _ = yym2280 + yym2323 := z.EncBinary() + _ = yym2323 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr2271 || yy2arr2271 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30004,25 +30615,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2281 := z.DecBinary() - _ = yym2281 + yym2324 := z.DecBinary() + _ = yym2324 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2282 := r.ContainerType() - if yyct2282 == codecSelferValueTypeMap1234 { - yyl2282 := r.ReadMapStart() - if yyl2282 == 0 { + yyct2325 := r.ContainerType() + if yyct2325 == codecSelferValueTypeMap1234 { + yyl2325 := r.ReadMapStart() + if yyl2325 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2282, d) + x.codecDecodeSelfFromMap(yyl2325, d) } - } else if yyct2282 == codecSelferValueTypeArray1234 { - yyl2282 := r.ReadArrayStart() - if yyl2282 == 0 { + } else if yyct2325 == codecSelferValueTypeArray1234 { + yyl2325 := r.ReadArrayStart() + if yyl2325 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2282, d) + x.codecDecodeSelfFromArray(yyl2325, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30034,12 +30645,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2283Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2283Slc - var yyhl2283 bool = l >= 0 - for yyj2283 := 0; ; yyj2283++ { - if yyhl2283 { - if yyj2283 >= l { + var yys2326Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2326Slc + var yyhl2326 bool = l >= 0 + for yyj2326 := 0; ; yyj2326++ { + if yyhl2326 { + if yyj2326 >= l { break } } else { @@ -30048,10 +30659,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2283Slc = r.DecodeBytes(yys2283Slc, true, true) - yys2283 := string(yys2283Slc) + yys2326Slc = r.DecodeBytes(yys2326Slc, true, true) + yys2326 := string(yys2326Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2283 { + switch yys2326 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -30071,9 +30682,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2283) - } // end switch yys2283 - } // end for yyj2283 + z.DecStructFieldNotFound(-1, yys2326) + } // end switch yys2326 + } // end for yyj2326 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30081,16 +30692,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2287 int - var yyb2287 bool - var yyhl2287 bool = l >= 0 - yyj2287++ - if yyhl2287 { - yyb2287 = yyj2287 > l + var yyj2330 int + var yyb2330 bool + var yyhl2330 bool = l >= 0 + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2287 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2287 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30100,13 +30711,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2287++ - if yyhl2287 { - yyb2287 = yyj2287 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2287 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2287 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30116,13 +30727,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2287++ - if yyhl2287 { - yyb2287 = yyj2287 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2287 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2287 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30133,17 +30744,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj2287++ - if yyhl2287 { - yyb2287 = yyj2287 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2287 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2287 { + if yyb2330 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2287-1, "") + z.DecStructFieldNotFound(yyj2330-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30155,39 +30766,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2291 := z.EncBinary() - _ = yym2291 + yym2334 := z.EncBinary() + _ = yym2334 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2292 := !z.EncBinary() - yy2arr2292 := z.EncBasicHandle().StructToArray - var yyq2292 [5]bool - _, _, _ = yysep2292, yyq2292, yy2arr2292 - const yyr2292 bool = false - yyq2292[0] = x.Kind != "" - yyq2292[1] = x.APIVersion != "" - yyq2292[2] = true - yyq2292[3] = true - yyq2292[4] = true - var yynn2292 int - if yyr2292 || yy2arr2292 { + yysep2335 := !z.EncBinary() + yy2arr2335 := z.EncBasicHandle().StructToArray + var yyq2335 [5]bool + _, _, _ = yysep2335, yyq2335, yy2arr2335 + const yyr2335 bool = false + yyq2335[0] = x.Kind != "" + yyq2335[1] = x.APIVersion != "" + yyq2335[2] = true + yyq2335[3] = true + yyq2335[4] = true + var yynn2335 int + if yyr2335 || yy2arr2335 { r.EncodeArrayStart(5) } else { - yynn2292 = 0 - for _, b := range yyq2292 { + yynn2335 = 0 + for _, b := range yyq2335 { if b { - yynn2292++ + yynn2335++ } } - r.EncodeMapStart(yynn2292) - yynn2292 = 0 + r.EncodeMapStart(yynn2335) + yynn2335 = 0 } - if yyr2292 || yy2arr2292 { + if yyr2335 || yy2arr2335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2292[0] { - yym2294 := z.EncBinary() - _ = yym2294 + if yyq2335[0] { + yym2337 := z.EncBinary() + _ = yym2337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30196,23 +30807,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2292[0] { + if yyq2335[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2295 := z.EncBinary() - _ = yym2295 + yym2338 := z.EncBinary() + _ = yym2338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2292 || yy2arr2292 { + if yyr2335 || yy2arr2335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2292[1] { - yym2297 := z.EncBinary() - _ = yym2297 + if yyq2335[1] { + yym2340 := z.EncBinary() + _ = yym2340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30221,70 +30832,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2292[1] { + if yyq2335[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2298 := z.EncBinary() - _ = yym2298 + yym2341 := z.EncBinary() + _ = yym2341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2292 || yy2arr2292 { + if yyr2335 || yy2arr2335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2292[2] { - yy2300 := &x.ObjectMeta - yy2300.CodecEncodeSelf(e) + if yyq2335[2] { + yy2343 := &x.ObjectMeta + yy2343.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2292[2] { + if yyq2335[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2301 := &x.ObjectMeta - yy2301.CodecEncodeSelf(e) + yy2344 := &x.ObjectMeta + yy2344.CodecEncodeSelf(e) } } - if yyr2292 || yy2arr2292 { + if yyr2335 || yy2arr2335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2292[3] { - yy2303 := &x.Spec - yy2303.CodecEncodeSelf(e) + if yyq2335[3] { + yy2346 := &x.Spec + yy2346.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2292[3] { + if yyq2335[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2304 := &x.Spec - yy2304.CodecEncodeSelf(e) + yy2347 := &x.Spec + yy2347.CodecEncodeSelf(e) } } - if yyr2292 || yy2arr2292 { + if yyr2335 || yy2arr2335 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2292[4] { - yy2306 := &x.Status - yy2306.CodecEncodeSelf(e) + if yyq2335[4] { + yy2349 := &x.Status + yy2349.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2292[4] { + if yyq2335[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2307 := &x.Status - yy2307.CodecEncodeSelf(e) + yy2350 := &x.Status + yy2350.CodecEncodeSelf(e) } } - if yyr2292 || yy2arr2292 { + if yyr2335 || yy2arr2335 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30297,25 +30908,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2308 := z.DecBinary() - _ = yym2308 + yym2351 := z.DecBinary() + _ = yym2351 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2309 := r.ContainerType() - if yyct2309 == codecSelferValueTypeMap1234 { - yyl2309 := r.ReadMapStart() - if yyl2309 == 0 { + yyct2352 := r.ContainerType() + if yyct2352 == codecSelferValueTypeMap1234 { + yyl2352 := r.ReadMapStart() + if yyl2352 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2309, d) + x.codecDecodeSelfFromMap(yyl2352, d) } - } else if yyct2309 == codecSelferValueTypeArray1234 { - yyl2309 := r.ReadArrayStart() - if yyl2309 == 0 { + } else if yyct2352 == codecSelferValueTypeArray1234 { + yyl2352 := r.ReadArrayStart() + if yyl2352 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2309, d) + x.codecDecodeSelfFromArray(yyl2352, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30327,12 +30938,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2310Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2310Slc - var yyhl2310 bool = l >= 0 - for yyj2310 := 0; ; yyj2310++ { - if yyhl2310 { - if yyj2310 >= l { + var yys2353Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2353Slc + var yyhl2353 bool = l >= 0 + for yyj2353 := 0; ; yyj2353++ { + if yyhl2353 { + if yyj2353 >= l { break } } else { @@ -30341,10 +30952,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2310Slc = r.DecodeBytes(yys2310Slc, true, true) - yys2310 := string(yys2310Slc) + yys2353Slc = r.DecodeBytes(yys2353Slc, true, true) + yys2353 := string(yys2353Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2310 { + switch yys2353 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30361,27 +30972,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2313 := &x.ObjectMeta - yyv2313.CodecDecodeSelf(d) + yyv2356 := &x.ObjectMeta + yyv2356.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2314 := &x.Spec - yyv2314.CodecDecodeSelf(d) + yyv2357 := &x.Spec + yyv2357.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2315 := &x.Status - yyv2315.CodecDecodeSelf(d) + yyv2358 := &x.Status + yyv2358.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2310) - } // end switch yys2310 - } // end for yyj2310 + z.DecStructFieldNotFound(-1, yys2353) + } // end switch yys2353 + } // end for yyj2353 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30389,16 +31000,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec 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 yyj2359 int + var yyb2359 bool + var yyhl2359 bool = l >= 0 + yyj2359++ + if yyhl2359 { + yyb2359 = yyj2359 > l } else { - yyb2316 = r.CheckBreak() + yyb2359 = r.CheckBreak() } - if yyb2316 { + if yyb2359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30408,13 +31019,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2359++ + if yyhl2359 { + yyb2359 = yyj2359 > l } else { - yyb2316 = r.CheckBreak() + yyb2359 = r.CheckBreak() } - if yyb2316 { + if yyb2359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30424,13 +31035,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2359++ + if yyhl2359 { + yyb2359 = yyj2359 > l } else { - yyb2316 = r.CheckBreak() + yyb2359 = r.CheckBreak() } - if yyb2316 { + if yyb2359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30438,16 +31049,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2319 := &x.ObjectMeta - yyv2319.CodecDecodeSelf(d) + yyv2362 := &x.ObjectMeta + yyv2362.CodecDecodeSelf(d) } - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2359++ + if yyhl2359 { + yyb2359 = yyj2359 > l } else { - yyb2316 = r.CheckBreak() + yyb2359 = r.CheckBreak() } - if yyb2316 { + if yyb2359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30455,16 +31066,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2320 := &x.Spec - yyv2320.CodecDecodeSelf(d) + yyv2363 := &x.Spec + yyv2363.CodecDecodeSelf(d) } - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2359++ + if yyhl2359 { + yyb2359 = yyj2359 > l } else { - yyb2316 = r.CheckBreak() + yyb2359 = r.CheckBreak() } - if yyb2316 { + if yyb2359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30472,21 +31083,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2321 := &x.Status - yyv2321.CodecDecodeSelf(d) + yyv2364 := &x.Status + yyv2364.CodecDecodeSelf(d) } for { - yyj2316++ - if yyhl2316 { - yyb2316 = yyj2316 > l + yyj2359++ + if yyhl2359 { + yyb2359 = yyj2359 > l } else { - yyb2316 = r.CheckBreak() + yyb2359 = r.CheckBreak() } - if yyb2316 { + if yyb2359 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2316-1, "") + z.DecStructFieldNotFound(yyj2359-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30498,37 +31109,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2322 := z.EncBinary() - _ = yym2322 + yym2365 := z.EncBinary() + _ = yym2365 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2323 := !z.EncBinary() - yy2arr2323 := z.EncBasicHandle().StructToArray - var yyq2323 [4]bool - _, _, _ = yysep2323, yyq2323, yy2arr2323 - const yyr2323 bool = false - yyq2323[0] = x.Kind != "" - yyq2323[1] = x.APIVersion != "" - yyq2323[2] = true - var yynn2323 int - if yyr2323 || yy2arr2323 { + yysep2366 := !z.EncBinary() + yy2arr2366 := z.EncBasicHandle().StructToArray + var yyq2366 [4]bool + _, _, _ = yysep2366, yyq2366, yy2arr2366 + const yyr2366 bool = false + yyq2366[0] = x.Kind != "" + yyq2366[1] = x.APIVersion != "" + yyq2366[2] = true + var yynn2366 int + if yyr2366 || yy2arr2366 { r.EncodeArrayStart(4) } else { - yynn2323 = 1 - for _, b := range yyq2323 { + yynn2366 = 1 + for _, b := range yyq2366 { if b { - yynn2323++ + yynn2366++ } } - r.EncodeMapStart(yynn2323) - yynn2323 = 0 + r.EncodeMapStart(yynn2366) + yynn2366 = 0 } - if yyr2323 || yy2arr2323 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2323[0] { - yym2325 := z.EncBinary() - _ = yym2325 + if yyq2366[0] { + yym2368 := z.EncBinary() + _ = yym2368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30537,23 +31148,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2323[0] { + if yyq2366[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2326 := z.EncBinary() - _ = yym2326 + yym2369 := z.EncBinary() + _ = yym2369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2323 || yy2arr2323 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2323[1] { - yym2328 := z.EncBinary() - _ = yym2328 + if yyq2366[1] { + yym2371 := z.EncBinary() + _ = yym2371 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30562,54 +31173,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2323[1] { + if yyq2366[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2329 := z.EncBinary() - _ = yym2329 + yym2372 := z.EncBinary() + _ = yym2372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2323 || yy2arr2323 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2323[2] { - yy2331 := &x.ListMeta - yym2332 := z.EncBinary() - _ = yym2332 + if yyq2366[2] { + yy2374 := &x.ListMeta + yym2375 := z.EncBinary() + _ = yym2375 if false { - } else if z.HasExtensions() && z.EncExt(yy2331) { + } else if z.HasExtensions() && z.EncExt(yy2374) { } else { - z.EncFallback(yy2331) + z.EncFallback(yy2374) } } else { r.EncodeNil() } } else { - if yyq2323[2] { + if yyq2366[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2333 := &x.ListMeta - yym2334 := z.EncBinary() - _ = yym2334 + yy2376 := &x.ListMeta + yym2377 := z.EncBinary() + _ = yym2377 if false { - } else if z.HasExtensions() && z.EncExt(yy2333) { + } else if z.HasExtensions() && z.EncExt(yy2376) { } else { - z.EncFallback(yy2333) + z.EncFallback(yy2376) } } } - if yyr2323 || yy2arr2323 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2336 := z.EncBinary() - _ = yym2336 + yym2379 := z.EncBinary() + _ = yym2379 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -30622,15 +31233,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2337 := z.EncBinary() - _ = yym2337 + yym2380 := z.EncBinary() + _ = yym2380 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2323 || yy2arr2323 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30643,25 +31254,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2338 := z.DecBinary() - _ = yym2338 + yym2381 := z.DecBinary() + _ = yym2381 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2339 := r.ContainerType() - if yyct2339 == codecSelferValueTypeMap1234 { - yyl2339 := r.ReadMapStart() - if yyl2339 == 0 { + yyct2382 := r.ContainerType() + if yyct2382 == codecSelferValueTypeMap1234 { + yyl2382 := r.ReadMapStart() + if yyl2382 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2339, d) + x.codecDecodeSelfFromMap(yyl2382, d) } - } else if yyct2339 == codecSelferValueTypeArray1234 { - yyl2339 := r.ReadArrayStart() - if yyl2339 == 0 { + } else if yyct2382 == codecSelferValueTypeArray1234 { + yyl2382 := r.ReadArrayStart() + if yyl2382 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2339, d) + x.codecDecodeSelfFromArray(yyl2382, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30673,12 +31284,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2340Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2340Slc - var yyhl2340 bool = l >= 0 - for yyj2340 := 0; ; yyj2340++ { - if yyhl2340 { - if yyj2340 >= l { + var yys2383Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2383Slc + var yyhl2383 bool = l >= 0 + for yyj2383 := 0; ; yyj2383++ { + if yyhl2383 { + if yyj2383 >= l { break } } else { @@ -30687,10 +31298,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2340Slc = r.DecodeBytes(yys2340Slc, true, true) - yys2340 := string(yys2340Slc) + yys2383Slc = r.DecodeBytes(yys2383Slc, true, true) + yys2383 := string(yys2383Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2340 { + switch yys2383 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30707,31 +31318,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2343 := &x.ListMeta - yym2344 := z.DecBinary() - _ = yym2344 + yyv2386 := &x.ListMeta + yym2387 := z.DecBinary() + _ = yym2387 if false { - } else if z.HasExtensions() && z.DecExt(yyv2343) { + } else if z.HasExtensions() && z.DecExt(yyv2386) { } else { - z.DecFallback(yyv2343, false) + z.DecFallback(yyv2386, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2345 := &x.Items - yym2346 := z.DecBinary() - _ = yym2346 + yyv2388 := &x.Items + yym2389 := z.DecBinary() + _ = yym2389 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2345), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2388), d) } } default: - z.DecStructFieldNotFound(-1, yys2340) - } // end switch yys2340 - } // end for yyj2340 + z.DecStructFieldNotFound(-1, yys2383) + } // end switch yys2383 + } // end for yyj2383 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30739,16 +31350,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2347 int - var yyb2347 bool - var yyhl2347 bool = l >= 0 - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + var yyj2390 int + var yyb2390 bool + var yyhl2390 bool = l >= 0 + yyj2390++ + if yyhl2390 { + yyb2390 = yyj2390 > l } else { - yyb2347 = r.CheckBreak() + yyb2390 = r.CheckBreak() } - if yyb2347 { + if yyb2390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30758,13 +31369,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2390++ + if yyhl2390 { + yyb2390 = yyj2390 > l } else { - yyb2347 = r.CheckBreak() + yyb2390 = r.CheckBreak() } - if yyb2347 { + if yyb2390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30774,13 +31385,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2390++ + if yyhl2390 { + yyb2390 = yyj2390 > l } else { - yyb2347 = r.CheckBreak() + yyb2390 = r.CheckBreak() } - if yyb2347 { + if yyb2390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30788,22 +31399,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2350 := &x.ListMeta - yym2351 := z.DecBinary() - _ = yym2351 + yyv2393 := &x.ListMeta + yym2394 := z.DecBinary() + _ = yym2394 if false { - } else if z.HasExtensions() && z.DecExt(yyv2350) { + } else if z.HasExtensions() && z.DecExt(yyv2393) { } else { - z.DecFallback(yyv2350, false) + z.DecFallback(yyv2393, false) } } - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2390++ + if yyhl2390 { + yyb2390 = yyj2390 > l } else { - yyb2347 = r.CheckBreak() + yyb2390 = r.CheckBreak() } - if yyb2347 { + if yyb2390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30811,26 +31422,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2352 := &x.Items - yym2353 := z.DecBinary() - _ = yym2353 + yyv2395 := &x.Items + yym2396 := z.DecBinary() + _ = yym2396 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2352), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2395), d) } } for { - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2390++ + if yyhl2390 { + yyb2390 = yyj2390 > l } else { - yyb2347 = r.CheckBreak() + yyb2390 = r.CheckBreak() } - if yyb2347 { + if yyb2390 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2347-1, "") + z.DecStructFieldNotFound(yyj2390-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30839,8 +31450,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2354 := z.EncBinary() - _ = yym2354 + yym2397 := z.EncBinary() + _ = yym2397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30852,8 +31463,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2355 := z.DecBinary() - _ = yym2355 + yym2398 := z.DecBinary() + _ = yym2398 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30865,8 +31476,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2356 := z.EncBinary() - _ = yym2356 + yym2399 := z.EncBinary() + _ = yym2399 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30878,8 +31489,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2357 := z.DecBinary() - _ = yym2357 + yym2400 := z.DecBinary() + _ = yym2400 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30894,48 +31505,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2358 := z.EncBinary() - _ = yym2358 + yym2401 := z.EncBinary() + _ = yym2401 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2359 := !z.EncBinary() - yy2arr2359 := z.EncBasicHandle().StructToArray - var yyq2359 [1]bool - _, _, _ = yysep2359, yyq2359, yy2arr2359 - const yyr2359 bool = false - yyq2359[0] = true - var yynn2359 int - if yyr2359 || yy2arr2359 { + yysep2402 := !z.EncBinary() + yy2arr2402 := z.EncBasicHandle().StructToArray + var yyq2402 [1]bool + _, _, _ = yysep2402, yyq2402, yy2arr2402 + const yyr2402 bool = false + yyq2402[0] = true + var yynn2402 int + if yyr2402 || yy2arr2402 { r.EncodeArrayStart(1) } else { - yynn2359 = 0 - for _, b := range yyq2359 { + yynn2402 = 0 + for _, b := range yyq2402 { if b { - yynn2359++ + yynn2402++ } } - r.EncodeMapStart(yynn2359) - yynn2359 = 0 + r.EncodeMapStart(yynn2402) + yynn2402 = 0 } - if yyr2359 || yy2arr2359 { + if yyr2402 || yy2arr2402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2359[0] { - yy2361 := &x.LoadBalancer - yy2361.CodecEncodeSelf(e) + if yyq2402[0] { + yy2404 := &x.LoadBalancer + yy2404.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2359[0] { + if yyq2402[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2362 := &x.LoadBalancer - yy2362.CodecEncodeSelf(e) + yy2405 := &x.LoadBalancer + yy2405.CodecEncodeSelf(e) } } - if yyr2359 || yy2arr2359 { + if yyr2402 || yy2arr2402 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30948,25 +31559,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2363 := z.DecBinary() - _ = yym2363 + yym2406 := z.DecBinary() + _ = yym2406 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2364 := r.ContainerType() - if yyct2364 == codecSelferValueTypeMap1234 { - yyl2364 := r.ReadMapStart() - if yyl2364 == 0 { + yyct2407 := r.ContainerType() + if yyct2407 == codecSelferValueTypeMap1234 { + yyl2407 := r.ReadMapStart() + if yyl2407 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2364, d) + x.codecDecodeSelfFromMap(yyl2407, d) } - } else if yyct2364 == codecSelferValueTypeArray1234 { - yyl2364 := r.ReadArrayStart() - if yyl2364 == 0 { + } else if yyct2407 == codecSelferValueTypeArray1234 { + yyl2407 := r.ReadArrayStart() + if yyl2407 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2364, d) + x.codecDecodeSelfFromArray(yyl2407, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30978,12 +31589,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2365Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2365Slc - var yyhl2365 bool = l >= 0 - for yyj2365 := 0; ; yyj2365++ { - if yyhl2365 { - if yyj2365 >= l { + var yys2408Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2408Slc + var yyhl2408 bool = l >= 0 + for yyj2408 := 0; ; yyj2408++ { + if yyhl2408 { + if yyj2408 >= l { break } } else { @@ -30992,21 +31603,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2365Slc = r.DecodeBytes(yys2365Slc, true, true) - yys2365 := string(yys2365Slc) + yys2408Slc = r.DecodeBytes(yys2408Slc, true, true) + yys2408 := string(yys2408Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2365 { + switch yys2408 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2366 := &x.LoadBalancer - yyv2366.CodecDecodeSelf(d) + yyv2409 := &x.LoadBalancer + yyv2409.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2365) - } // end switch yys2365 - } // end for yyj2365 + z.DecStructFieldNotFound(-1, yys2408) + } // end switch yys2408 + } // end for yyj2408 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31014,16 +31625,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2367 int - var yyb2367 bool - var yyhl2367 bool = l >= 0 - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + var yyj2410 int + var yyb2410 bool + var yyhl2410 bool = l >= 0 + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2367 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2367 { + if yyb2410 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31031,21 +31642,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2368 := &x.LoadBalancer - yyv2368.CodecDecodeSelf(d) + yyv2411 := &x.LoadBalancer + yyv2411.CodecDecodeSelf(d) } for { - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2367 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2367 { + if yyb2410 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2367-1, "") + z.DecStructFieldNotFound(yyj2410-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31057,38 +31668,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2369 := z.EncBinary() - _ = yym2369 + yym2412 := z.EncBinary() + _ = yym2412 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2370 := !z.EncBinary() - yy2arr2370 := z.EncBasicHandle().StructToArray - var yyq2370 [1]bool - _, _, _ = yysep2370, yyq2370, yy2arr2370 - const yyr2370 bool = false - yyq2370[0] = len(x.Ingress) != 0 - var yynn2370 int - if yyr2370 || yy2arr2370 { + yysep2413 := !z.EncBinary() + yy2arr2413 := z.EncBasicHandle().StructToArray + var yyq2413 [1]bool + _, _, _ = yysep2413, yyq2413, yy2arr2413 + const yyr2413 bool = false + yyq2413[0] = len(x.Ingress) != 0 + var yynn2413 int + if yyr2413 || yy2arr2413 { r.EncodeArrayStart(1) } else { - yynn2370 = 0 - for _, b := range yyq2370 { + yynn2413 = 0 + for _, b := range yyq2413 { if b { - yynn2370++ + yynn2413++ } } - r.EncodeMapStart(yynn2370) - yynn2370 = 0 + r.EncodeMapStart(yynn2413) + yynn2413 = 0 } - if yyr2370 || yy2arr2370 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2370[0] { + if yyq2413[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2372 := z.EncBinary() - _ = yym2372 + yym2415 := z.EncBinary() + _ = yym2415 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -31098,15 +31709,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2370[0] { + if yyq2413[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2373 := z.EncBinary() - _ = yym2373 + yym2416 := z.EncBinary() + _ = yym2416 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -31114,7 +31725,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2370 || yy2arr2370 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31127,25 +31738,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2374 := z.DecBinary() - _ = yym2374 + yym2417 := z.DecBinary() + _ = yym2417 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2375 := r.ContainerType() - if yyct2375 == codecSelferValueTypeMap1234 { - yyl2375 := r.ReadMapStart() - if yyl2375 == 0 { + yyct2418 := r.ContainerType() + if yyct2418 == codecSelferValueTypeMap1234 { + yyl2418 := r.ReadMapStart() + if yyl2418 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2375, d) + x.codecDecodeSelfFromMap(yyl2418, d) } - } else if yyct2375 == codecSelferValueTypeArray1234 { - yyl2375 := r.ReadArrayStart() - if yyl2375 == 0 { + } else if yyct2418 == codecSelferValueTypeArray1234 { + yyl2418 := r.ReadArrayStart() + if yyl2418 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2375, d) + x.codecDecodeSelfFromArray(yyl2418, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31157,12 +31768,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2376Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2376Slc - var yyhl2376 bool = l >= 0 - for yyj2376 := 0; ; yyj2376++ { - if yyhl2376 { - if yyj2376 >= l { + var yys2419Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2419Slc + var yyhl2419 bool = l >= 0 + for yyj2419 := 0; ; yyj2419++ { + if yyhl2419 { + if yyj2419 >= l { break } } else { @@ -31171,26 +31782,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2376Slc = r.DecodeBytes(yys2376Slc, true, true) - yys2376 := string(yys2376Slc) + yys2419Slc = r.DecodeBytes(yys2419Slc, true, true) + yys2419 := string(yys2419Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2376 { + switch yys2419 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2377 := &x.Ingress - yym2378 := z.DecBinary() - _ = yym2378 + yyv2420 := &x.Ingress + yym2421 := z.DecBinary() + _ = yym2421 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2377), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2420), d) } } default: - z.DecStructFieldNotFound(-1, yys2376) - } // end switch yys2376 - } // end for yyj2376 + z.DecStructFieldNotFound(-1, yys2419) + } // end switch yys2419 + } // end for yyj2419 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31198,16 +31809,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2379 int - var yyb2379 bool - var yyhl2379 bool = l >= 0 - yyj2379++ - if yyhl2379 { - yyb2379 = yyj2379 > l + var yyj2422 int + var yyb2422 bool + var yyhl2422 bool = l >= 0 + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2379 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2379 { + if yyb2422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31215,26 +31826,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2380 := &x.Ingress - yym2381 := z.DecBinary() - _ = yym2381 + yyv2423 := &x.Ingress + yym2424 := z.DecBinary() + _ = yym2424 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2380), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2423), d) } } for { - yyj2379++ - if yyhl2379 { - yyb2379 = yyj2379 > l + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2379 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2379 { + if yyb2422 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2379-1, "") + z.DecStructFieldNotFound(yyj2422-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31246,36 +31857,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2382 := z.EncBinary() - _ = yym2382 + yym2425 := z.EncBinary() + _ = yym2425 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2383 := !z.EncBinary() - yy2arr2383 := z.EncBasicHandle().StructToArray - var yyq2383 [2]bool - _, _, _ = yysep2383, yyq2383, yy2arr2383 - const yyr2383 bool = false - yyq2383[0] = x.IP != "" - yyq2383[1] = x.Hostname != "" - var yynn2383 int - if yyr2383 || yy2arr2383 { + yysep2426 := !z.EncBinary() + yy2arr2426 := z.EncBasicHandle().StructToArray + var yyq2426 [2]bool + _, _, _ = yysep2426, yyq2426, yy2arr2426 + const yyr2426 bool = false + yyq2426[0] = x.IP != "" + yyq2426[1] = x.Hostname != "" + var yynn2426 int + if yyr2426 || yy2arr2426 { r.EncodeArrayStart(2) } else { - yynn2383 = 0 - for _, b := range yyq2383 { + yynn2426 = 0 + for _, b := range yyq2426 { if b { - yynn2383++ + yynn2426++ } } - r.EncodeMapStart(yynn2383) - yynn2383 = 0 + r.EncodeMapStart(yynn2426) + yynn2426 = 0 } - if yyr2383 || yy2arr2383 { + if yyr2426 || yy2arr2426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2383[0] { - yym2385 := z.EncBinary() - _ = yym2385 + if yyq2426[0] { + yym2428 := z.EncBinary() + _ = yym2428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -31284,23 +31895,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2383[0] { + if yyq2426[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2386 := z.EncBinary() - _ = yym2386 + yym2429 := z.EncBinary() + _ = yym2429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2383 || yy2arr2383 { + if yyr2426 || yy2arr2426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2383[1] { - yym2388 := z.EncBinary() - _ = yym2388 + if yyq2426[1] { + yym2431 := z.EncBinary() + _ = yym2431 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -31309,19 +31920,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2383[1] { + if yyq2426[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2389 := z.EncBinary() - _ = yym2389 + yym2432 := z.EncBinary() + _ = yym2432 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2383 || yy2arr2383 { + if yyr2426 || yy2arr2426 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31334,25 +31945,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2390 := z.DecBinary() - _ = yym2390 + yym2433 := z.DecBinary() + _ = yym2433 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2391 := r.ContainerType() - if yyct2391 == codecSelferValueTypeMap1234 { - yyl2391 := r.ReadMapStart() - if yyl2391 == 0 { + yyct2434 := r.ContainerType() + if yyct2434 == codecSelferValueTypeMap1234 { + yyl2434 := r.ReadMapStart() + if yyl2434 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2391, d) + x.codecDecodeSelfFromMap(yyl2434, d) } - } else if yyct2391 == codecSelferValueTypeArray1234 { - yyl2391 := r.ReadArrayStart() - if yyl2391 == 0 { + } else if yyct2434 == codecSelferValueTypeArray1234 { + yyl2434 := r.ReadArrayStart() + if yyl2434 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2391, d) + x.codecDecodeSelfFromArray(yyl2434, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31364,12 +31975,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2392Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2392Slc - var yyhl2392 bool = l >= 0 - for yyj2392 := 0; ; yyj2392++ { - if yyhl2392 { - if yyj2392 >= l { + var yys2435Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2435Slc + var yyhl2435 bool = l >= 0 + for yyj2435 := 0; ; yyj2435++ { + if yyhl2435 { + if yyj2435 >= l { break } } else { @@ -31378,10 +31989,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2392Slc = r.DecodeBytes(yys2392Slc, true, true) - yys2392 := string(yys2392Slc) + yys2435Slc = r.DecodeBytes(yys2435Slc, true, true) + yys2435 := string(yys2435Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2392 { + switch yys2435 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -31395,9 +32006,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2392) - } // end switch yys2392 - } // end for yyj2392 + z.DecStructFieldNotFound(-1, yys2435) + } // end switch yys2435 + } // end for yyj2435 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31405,16 +32016,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2395 int - var yyb2395 bool - var yyhl2395 bool = l >= 0 - yyj2395++ - if yyhl2395 { - yyb2395 = yyj2395 > l + var yyj2438 int + var yyb2438 bool + var yyhl2438 bool = l >= 0 + yyj2438++ + if yyhl2438 { + yyb2438 = yyj2438 > l } else { - yyb2395 = r.CheckBreak() + yyb2438 = r.CheckBreak() } - if yyb2395 { + if yyb2438 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31424,13 +32035,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2395++ - if yyhl2395 { - yyb2395 = yyj2395 > l + yyj2438++ + if yyhl2438 { + yyb2438 = yyj2438 > l } else { - yyb2395 = r.CheckBreak() + yyb2438 = r.CheckBreak() } - if yyb2395 { + if yyb2438 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31441,17 +32052,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2395++ - if yyhl2395 { - yyb2395 = yyj2395 > l + yyj2438++ + if yyhl2438 { + yyb2438 = yyj2438 > l } else { - yyb2395 = r.CheckBreak() + yyb2438 = r.CheckBreak() } - if yyb2395 { + if yyb2438 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2395-1, "") + z.DecStructFieldNotFound(yyj2438-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31463,44 +32074,44 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2398 := z.EncBinary() - _ = yym2398 + yym2441 := z.EncBinary() + _ = yym2441 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2399 := !z.EncBinary() - yy2arr2399 := z.EncBasicHandle().StructToArray - var yyq2399 [9]bool - _, _, _ = yysep2399, yyq2399, yy2arr2399 - const yyr2399 bool = false - yyq2399[1] = len(x.Selector) != 0 - yyq2399[2] = x.ClusterIP != "" - yyq2399[3] = x.Type != "" - yyq2399[4] = len(x.ExternalIPs) != 0 - yyq2399[5] = len(x.DeprecatedPublicIPs) != 0 - yyq2399[6] = x.SessionAffinity != "" - yyq2399[7] = x.LoadBalancerIP != "" - yyq2399[8] = len(x.LoadBalancerSourceRanges) != 0 - var yynn2399 int - if yyr2399 || yy2arr2399 { + yysep2442 := !z.EncBinary() + yy2arr2442 := z.EncBasicHandle().StructToArray + var yyq2442 [9]bool + _, _, _ = yysep2442, yyq2442, yy2arr2442 + const yyr2442 bool = false + yyq2442[1] = len(x.Selector) != 0 + yyq2442[2] = x.ClusterIP != "" + yyq2442[3] = x.Type != "" + yyq2442[4] = len(x.ExternalIPs) != 0 + yyq2442[5] = len(x.DeprecatedPublicIPs) != 0 + yyq2442[6] = x.SessionAffinity != "" + yyq2442[7] = x.LoadBalancerIP != "" + yyq2442[8] = len(x.LoadBalancerSourceRanges) != 0 + var yynn2442 int + if yyr2442 || yy2arr2442 { r.EncodeArrayStart(9) } else { - yynn2399 = 1 - for _, b := range yyq2399 { + yynn2442 = 1 + for _, b := range yyq2442 { if b { - yynn2399++ + yynn2442++ } } - r.EncodeMapStart(yynn2399) - yynn2399 = 0 + r.EncodeMapStart(yynn2442) + yynn2442 = 0 } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2401 := z.EncBinary() - _ = yym2401 + yym2444 := z.EncBinary() + _ = yym2444 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -31513,22 +32124,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2402 := z.EncBinary() - _ = yym2402 + yym2445 := z.EncBinary() + _ = yym2445 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[1] { + if yyq2442[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2404 := z.EncBinary() - _ = yym2404 + yym2447 := z.EncBinary() + _ = yym2447 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -31538,15 +32149,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2399[1] { + if yyq2442[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2405 := z.EncBinary() - _ = yym2405 + yym2448 := z.EncBinary() + _ = yym2448 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -31554,11 +32165,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[2] { - yym2407 := z.EncBinary() - _ = yym2407 + if yyq2442[2] { + yym2450 := z.EncBinary() + _ = yym2450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -31567,41 +32178,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2399[2] { + if yyq2442[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2408 := z.EncBinary() - _ = yym2408 + yym2451 := z.EncBinary() + _ = yym2451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[3] { + if yyq2442[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2399[3] { + if yyq2442[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[4] { + if yyq2442[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2411 := z.EncBinary() - _ = yym2411 + yym2454 := z.EncBinary() + _ = yym2454 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -31611,15 +32222,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2399[4] { + if yyq2442[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2412 := z.EncBinary() - _ = yym2412 + yym2455 := z.EncBinary() + _ = yym2455 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -31627,14 +32238,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[5] { + if yyq2442[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2414 := z.EncBinary() - _ = yym2414 + yym2457 := z.EncBinary() + _ = yym2457 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -31644,15 +32255,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2399[5] { + if yyq2442[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2415 := z.EncBinary() - _ = yym2415 + yym2458 := z.EncBinary() + _ = yym2458 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -31660,26 +32271,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[6] { + if yyq2442[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2399[6] { + if yyq2442[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[7] { - yym2418 := z.EncBinary() - _ = yym2418 + if yyq2442[7] { + yym2461 := z.EncBinary() + _ = yym2461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -31688,26 +32299,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2399[7] { + if yyq2442[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2419 := z.EncBinary() - _ = yym2419 + yym2462 := z.EncBinary() + _ = yym2462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2399[8] { + if yyq2442[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2421 := z.EncBinary() - _ = yym2421 + yym2464 := z.EncBinary() + _ = yym2464 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -31717,15 +32328,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2399[8] { + if yyq2442[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2422 := z.EncBinary() - _ = yym2422 + yym2465 := z.EncBinary() + _ = yym2465 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -31733,7 +32344,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2399 || yy2arr2399 { + if yyr2442 || yy2arr2442 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31746,25 +32357,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2423 := z.DecBinary() - _ = yym2423 + yym2466 := z.DecBinary() + _ = yym2466 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2424 := r.ContainerType() - if yyct2424 == codecSelferValueTypeMap1234 { - yyl2424 := r.ReadMapStart() - if yyl2424 == 0 { + yyct2467 := r.ContainerType() + if yyct2467 == codecSelferValueTypeMap1234 { + yyl2467 := r.ReadMapStart() + if yyl2467 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2424, d) + x.codecDecodeSelfFromMap(yyl2467, d) } - } else if yyct2424 == codecSelferValueTypeArray1234 { - yyl2424 := r.ReadArrayStart() - if yyl2424 == 0 { + } else if yyct2467 == codecSelferValueTypeArray1234 { + yyl2467 := r.ReadArrayStart() + if yyl2467 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2424, d) + x.codecDecodeSelfFromArray(yyl2467, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31776,12 +32387,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2425Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2425Slc - var yyhl2425 bool = l >= 0 - for yyj2425 := 0; ; yyj2425++ { - if yyhl2425 { - if yyj2425 >= l { + var yys2468Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2468Slc + var yyhl2468 bool = l >= 0 + for yyj2468 := 0; ; yyj2468++ { + if yyhl2468 { + if yyj2468 >= l { break } } else { @@ -31790,32 +32401,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2425Slc = r.DecodeBytes(yys2425Slc, true, true) - yys2425 := string(yys2425Slc) + yys2468Slc = r.DecodeBytes(yys2468Slc, true, true) + yys2468 := string(yys2468Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2425 { + switch yys2468 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2426 := &x.Ports - yym2427 := z.DecBinary() - _ = yym2427 + yyv2469 := &x.Ports + yym2470 := z.DecBinary() + _ = yym2470 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2426), d) + h.decSliceServicePort((*[]ServicePort)(yyv2469), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2428 := &x.Selector - yym2429 := z.DecBinary() - _ = yym2429 + yyv2471 := &x.Selector + yym2472 := z.DecBinary() + _ = yym2472 if false { } else { - z.F.DecMapStringStringX(yyv2428, false, d) + z.F.DecMapStringStringX(yyv2471, false, d) } } case "clusterIP": @@ -31834,24 +32445,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2432 := &x.ExternalIPs - yym2433 := z.DecBinary() - _ = yym2433 + yyv2475 := &x.ExternalIPs + yym2476 := z.DecBinary() + _ = yym2476 if false { } else { - z.F.DecSliceStringX(yyv2432, false, d) + z.F.DecSliceStringX(yyv2475, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2434 := &x.DeprecatedPublicIPs - yym2435 := z.DecBinary() - _ = yym2435 + yyv2477 := &x.DeprecatedPublicIPs + yym2478 := z.DecBinary() + _ = yym2478 if false { } else { - z.F.DecSliceStringX(yyv2434, false, d) + z.F.DecSliceStringX(yyv2477, false, d) } } case "sessionAffinity": @@ -31870,18 +32481,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2438 := &x.LoadBalancerSourceRanges - yym2439 := z.DecBinary() - _ = yym2439 + yyv2481 := &x.LoadBalancerSourceRanges + yym2482 := z.DecBinary() + _ = yym2482 if false { } else { - z.F.DecSliceStringX(yyv2438, false, d) + z.F.DecSliceStringX(yyv2481, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2425) - } // end switch yys2425 - } // end for yyj2425 + z.DecStructFieldNotFound(-1, yys2468) + } // end switch yys2468 + } // end for yyj2468 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31889,16 +32500,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2440 int - var yyb2440 bool - var yyhl2440 bool = l >= 0 - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + var yyj2483 int + var yyb2483 bool + var yyhl2483 bool = l >= 0 + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31906,21 +32517,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2441 := &x.Ports - yym2442 := z.DecBinary() - _ = yym2442 + yyv2484 := &x.Ports + yym2485 := z.DecBinary() + _ = yym2485 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2441), d) + h.decSliceServicePort((*[]ServicePort)(yyv2484), d) } } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31928,21 +32539,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2443 := &x.Selector - yym2444 := z.DecBinary() - _ = yym2444 + yyv2486 := &x.Selector + yym2487 := z.DecBinary() + _ = yym2487 if false { } else { - z.F.DecMapStringStringX(yyv2443, false, d) + z.F.DecMapStringStringX(yyv2486, false, d) } } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31952,13 +32563,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31968,13 +32579,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31982,21 +32593,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2447 := &x.ExternalIPs - yym2448 := z.DecBinary() - _ = yym2448 + yyv2490 := &x.ExternalIPs + yym2491 := z.DecBinary() + _ = yym2491 if false { } else { - z.F.DecSliceStringX(yyv2447, false, d) + z.F.DecSliceStringX(yyv2490, false, d) } } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32004,21 +32615,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2449 := &x.DeprecatedPublicIPs - yym2450 := z.DecBinary() - _ = yym2450 + yyv2492 := &x.DeprecatedPublicIPs + yym2493 := z.DecBinary() + _ = yym2493 if false { } else { - z.F.DecSliceStringX(yyv2449, false, d) + z.F.DecSliceStringX(yyv2492, false, d) } } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32028,13 +32639,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32044,13 +32655,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32058,26 +32669,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2453 := &x.LoadBalancerSourceRanges - yym2454 := z.DecBinary() - _ = yym2454 + yyv2496 := &x.LoadBalancerSourceRanges + yym2497 := z.DecBinary() + _ = yym2497 if false { } else { - z.F.DecSliceStringX(yyv2453, false, d) + z.F.DecSliceStringX(yyv2496, false, d) } } for { - yyj2440++ - if yyhl2440 { - yyb2440 = yyj2440 > l + yyj2483++ + if yyhl2483 { + yyb2483 = yyj2483 > l } else { - yyb2440 = r.CheckBreak() + yyb2483 = r.CheckBreak() } - if yyb2440 { + if yyb2483 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2440-1, "") + z.DecStructFieldNotFound(yyj2483-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32089,38 +32700,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2455 := z.EncBinary() - _ = yym2455 + yym2498 := z.EncBinary() + _ = yym2498 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2456 := !z.EncBinary() - yy2arr2456 := z.EncBasicHandle().StructToArray - var yyq2456 [5]bool - _, _, _ = yysep2456, yyq2456, yy2arr2456 - const yyr2456 bool = false - yyq2456[0] = x.Name != "" - yyq2456[1] = x.Protocol != "" - yyq2456[3] = true - yyq2456[4] = x.NodePort != 0 - var yynn2456 int - if yyr2456 || yy2arr2456 { + yysep2499 := !z.EncBinary() + yy2arr2499 := z.EncBasicHandle().StructToArray + var yyq2499 [5]bool + _, _, _ = yysep2499, yyq2499, yy2arr2499 + const yyr2499 bool = false + yyq2499[0] = x.Name != "" + yyq2499[1] = x.Protocol != "" + yyq2499[3] = true + yyq2499[4] = x.NodePort != 0 + var yynn2499 int + if yyr2499 || yy2arr2499 { r.EncodeArrayStart(5) } else { - yynn2456 = 1 - for _, b := range yyq2456 { + yynn2499 = 1 + for _, b := range yyq2499 { if b { - yynn2456++ + yynn2499++ } } - r.EncodeMapStart(yynn2456) - yynn2456 = 0 + r.EncodeMapStart(yynn2499) + yynn2499 = 0 } - if yyr2456 || yy2arr2456 { + if yyr2499 || yy2arr2499 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2456[0] { - yym2458 := z.EncBinary() - _ = yym2458 + if yyq2499[0] { + yym2501 := z.EncBinary() + _ = yym2501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -32129,37 +32740,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2456[0] { + if yyq2499[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2459 := z.EncBinary() - _ = yym2459 + yym2502 := z.EncBinary() + _ = yym2502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2456 || yy2arr2456 { + if yyr2499 || yy2arr2499 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2456[1] { + if yyq2499[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2456[1] { + if yyq2499[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2456 || yy2arr2456 { + if yyr2499 || yy2arr2499 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2462 := z.EncBinary() - _ = yym2462 + yym2505 := z.EncBinary() + _ = yym2505 if false { } else { r.EncodeInt(int64(x.Port)) @@ -32168,51 +32779,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2463 := z.EncBinary() - _ = yym2463 + yym2506 := z.EncBinary() + _ = yym2506 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2456 || yy2arr2456 { + if yyr2499 || yy2arr2499 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2456[3] { - yy2465 := &x.TargetPort - yym2466 := z.EncBinary() - _ = yym2466 + if yyq2499[3] { + yy2508 := &x.TargetPort + yym2509 := z.EncBinary() + _ = yym2509 if false { - } else if z.HasExtensions() && z.EncExt(yy2465) { - } else if !yym2466 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2465) + } else if z.HasExtensions() && z.EncExt(yy2508) { + } else if !yym2509 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2508) } else { - z.EncFallback(yy2465) + z.EncFallback(yy2508) } } else { r.EncodeNil() } } else { - if yyq2456[3] { + if yyq2499[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2467 := &x.TargetPort - yym2468 := z.EncBinary() - _ = yym2468 + yy2510 := &x.TargetPort + yym2511 := z.EncBinary() + _ = yym2511 if false { - } else if z.HasExtensions() && z.EncExt(yy2467) { - } else if !yym2468 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2467) + } else if z.HasExtensions() && z.EncExt(yy2510) { + } else if !yym2511 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2510) } else { - z.EncFallback(yy2467) + z.EncFallback(yy2510) } } } - if yyr2456 || yy2arr2456 { + if yyr2499 || yy2arr2499 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2456[4] { - yym2470 := z.EncBinary() - _ = yym2470 + if yyq2499[4] { + yym2513 := z.EncBinary() + _ = yym2513 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -32221,19 +32832,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2456[4] { + if yyq2499[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2471 := z.EncBinary() - _ = yym2471 + yym2514 := z.EncBinary() + _ = yym2514 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2456 || yy2arr2456 { + if yyr2499 || yy2arr2499 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32246,25 +32857,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2472 := z.DecBinary() - _ = yym2472 + yym2515 := z.DecBinary() + _ = yym2515 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2473 := r.ContainerType() - if yyct2473 == codecSelferValueTypeMap1234 { - yyl2473 := r.ReadMapStart() - if yyl2473 == 0 { + yyct2516 := r.ContainerType() + if yyct2516 == codecSelferValueTypeMap1234 { + yyl2516 := r.ReadMapStart() + if yyl2516 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2473, d) + x.codecDecodeSelfFromMap(yyl2516, d) } - } else if yyct2473 == codecSelferValueTypeArray1234 { - yyl2473 := r.ReadArrayStart() - if yyl2473 == 0 { + } else if yyct2516 == codecSelferValueTypeArray1234 { + yyl2516 := r.ReadArrayStart() + if yyl2516 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2473, d) + x.codecDecodeSelfFromArray(yyl2516, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32276,12 +32887,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2474Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2474Slc - var yyhl2474 bool = l >= 0 - for yyj2474 := 0; ; yyj2474++ { - if yyhl2474 { - if yyj2474 >= l { + var yys2517Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2517Slc + var yyhl2517 bool = l >= 0 + for yyj2517 := 0; ; yyj2517++ { + if yyhl2517 { + if yyj2517 >= l { break } } else { @@ -32290,10 +32901,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2474Slc = r.DecodeBytes(yys2474Slc, true, true) - yys2474 := string(yys2474Slc) + yys2517Slc = r.DecodeBytes(yys2517Slc, true, true) + yys2517 := string(yys2517Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2474 { + switch yys2517 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -32316,15 +32927,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2478 := &x.TargetPort - yym2479 := z.DecBinary() - _ = yym2479 + yyv2521 := &x.TargetPort + yym2522 := z.DecBinary() + _ = yym2522 if false { - } else if z.HasExtensions() && z.DecExt(yyv2478) { - } else if !yym2479 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2478) + } else if z.HasExtensions() && z.DecExt(yyv2521) { + } else if !yym2522 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2521) } else { - z.DecFallback(yyv2478, false) + z.DecFallback(yyv2521, false) } } case "nodePort": @@ -32334,9 +32945,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2474) - } // end switch yys2474 - } // end for yyj2474 + z.DecStructFieldNotFound(-1, yys2517) + } // end switch yys2517 + } // end for yyj2517 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32344,16 +32955,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2481 int - var yyb2481 bool - var yyhl2481 bool = l >= 0 - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l + var yyj2524 int + var yyb2524 bool + var yyhl2524 bool = l >= 0 + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2481 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2481 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32363,13 +32974,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2481 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2481 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32379,13 +32990,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2481 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2481 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32395,13 +33006,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2481 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2481 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32409,24 +33020,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2485 := &x.TargetPort - yym2486 := z.DecBinary() - _ = yym2486 + yyv2528 := &x.TargetPort + yym2529 := z.DecBinary() + _ = yym2529 if false { - } else if z.HasExtensions() && z.DecExt(yyv2485) { - } else if !yym2486 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2485) + } else if z.HasExtensions() && z.DecExt(yyv2528) { + } else if !yym2529 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2528) } else { - z.DecFallback(yyv2485, false) + z.DecFallback(yyv2528, false) } } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2481 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2481 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32437,17 +33048,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2481 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2481 { + if yyb2524 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2481-1, "") + z.DecStructFieldNotFound(yyj2524-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32459,39 +33070,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2488 := z.EncBinary() - _ = yym2488 + yym2531 := z.EncBinary() + _ = yym2531 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2489 := !z.EncBinary() - yy2arr2489 := z.EncBasicHandle().StructToArray - var yyq2489 [5]bool - _, _, _ = yysep2489, yyq2489, yy2arr2489 - const yyr2489 bool = false - yyq2489[0] = x.Kind != "" - yyq2489[1] = x.APIVersion != "" - yyq2489[2] = true - yyq2489[3] = true - yyq2489[4] = true - var yynn2489 int - if yyr2489 || yy2arr2489 { + yysep2532 := !z.EncBinary() + yy2arr2532 := z.EncBasicHandle().StructToArray + var yyq2532 [5]bool + _, _, _ = yysep2532, yyq2532, yy2arr2532 + const yyr2532 bool = false + yyq2532[0] = x.Kind != "" + yyq2532[1] = x.APIVersion != "" + yyq2532[2] = true + yyq2532[3] = true + yyq2532[4] = true + var yynn2532 int + if yyr2532 || yy2arr2532 { r.EncodeArrayStart(5) } else { - yynn2489 = 0 - for _, b := range yyq2489 { + yynn2532 = 0 + for _, b := range yyq2532 { if b { - yynn2489++ + yynn2532++ } } - r.EncodeMapStart(yynn2489) - yynn2489 = 0 + r.EncodeMapStart(yynn2532) + yynn2532 = 0 } - if yyr2489 || yy2arr2489 { + if yyr2532 || yy2arr2532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[0] { - yym2491 := z.EncBinary() - _ = yym2491 + if yyq2532[0] { + yym2534 := z.EncBinary() + _ = yym2534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32500,23 +33111,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2489[0] { + if yyq2532[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2492 := z.EncBinary() - _ = yym2492 + yym2535 := z.EncBinary() + _ = yym2535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2489 || yy2arr2489 { + if yyr2532 || yy2arr2532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[1] { - yym2494 := z.EncBinary() - _ = yym2494 + if yyq2532[1] { + yym2537 := z.EncBinary() + _ = yym2537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32525,70 +33136,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2489[1] { + if yyq2532[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2495 := z.EncBinary() - _ = yym2495 + yym2538 := z.EncBinary() + _ = yym2538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2489 || yy2arr2489 { + if yyr2532 || yy2arr2532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[2] { - yy2497 := &x.ObjectMeta - yy2497.CodecEncodeSelf(e) + if yyq2532[2] { + yy2540 := &x.ObjectMeta + yy2540.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2489[2] { + if yyq2532[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2498 := &x.ObjectMeta - yy2498.CodecEncodeSelf(e) + yy2541 := &x.ObjectMeta + yy2541.CodecEncodeSelf(e) } } - if yyr2489 || yy2arr2489 { + if yyr2532 || yy2arr2532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[3] { - yy2500 := &x.Spec - yy2500.CodecEncodeSelf(e) + if yyq2532[3] { + yy2543 := &x.Spec + yy2543.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2489[3] { + if yyq2532[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2501 := &x.Spec - yy2501.CodecEncodeSelf(e) + yy2544 := &x.Spec + yy2544.CodecEncodeSelf(e) } } - if yyr2489 || yy2arr2489 { + if yyr2532 || yy2arr2532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[4] { - yy2503 := &x.Status - yy2503.CodecEncodeSelf(e) + if yyq2532[4] { + yy2546 := &x.Status + yy2546.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2489[4] { + if yyq2532[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2504 := &x.Status - yy2504.CodecEncodeSelf(e) + yy2547 := &x.Status + yy2547.CodecEncodeSelf(e) } } - if yyr2489 || yy2arr2489 { + if yyr2532 || yy2arr2532 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32601,25 +33212,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2505 := z.DecBinary() - _ = yym2505 + yym2548 := z.DecBinary() + _ = yym2548 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2506 := r.ContainerType() - if yyct2506 == codecSelferValueTypeMap1234 { - yyl2506 := r.ReadMapStart() - if yyl2506 == 0 { + yyct2549 := r.ContainerType() + if yyct2549 == codecSelferValueTypeMap1234 { + yyl2549 := r.ReadMapStart() + if yyl2549 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2506, d) + x.codecDecodeSelfFromMap(yyl2549, d) } - } else if yyct2506 == codecSelferValueTypeArray1234 { - yyl2506 := r.ReadArrayStart() - if yyl2506 == 0 { + } else if yyct2549 == codecSelferValueTypeArray1234 { + yyl2549 := r.ReadArrayStart() + if yyl2549 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2506, d) + x.codecDecodeSelfFromArray(yyl2549, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32631,12 +33242,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2507Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2507Slc - var yyhl2507 bool = l >= 0 - for yyj2507 := 0; ; yyj2507++ { - if yyhl2507 { - if yyj2507 >= l { + var yys2550Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2550Slc + var yyhl2550 bool = l >= 0 + for yyj2550 := 0; ; yyj2550++ { + if yyhl2550 { + if yyj2550 >= l { break } } else { @@ -32645,10 +33256,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2507Slc = r.DecodeBytes(yys2507Slc, true, true) - yys2507 := string(yys2507Slc) + yys2550Slc = r.DecodeBytes(yys2550Slc, true, true) + yys2550 := string(yys2550Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2507 { + switch yys2550 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32665,27 +33276,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2510 := &x.ObjectMeta - yyv2510.CodecDecodeSelf(d) + yyv2553 := &x.ObjectMeta + yyv2553.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2511 := &x.Spec - yyv2511.CodecDecodeSelf(d) + yyv2554 := &x.Spec + yyv2554.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2512 := &x.Status - yyv2512.CodecDecodeSelf(d) + yyv2555 := &x.Status + yyv2555.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2507) - } // end switch yys2507 - } // end for yyj2507 + z.DecStructFieldNotFound(-1, yys2550) + } // end switch yys2550 + } // end for yyj2550 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32693,16 +33304,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2513 int - var yyb2513 bool - var yyhl2513 bool = l >= 0 - yyj2513++ - if yyhl2513 { - yyb2513 = yyj2513 > l + var yyj2556 int + var yyb2556 bool + var yyhl2556 bool = l >= 0 + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2513 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2513 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32712,13 +33323,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2513++ - if yyhl2513 { - yyb2513 = yyj2513 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2513 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2513 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32728,13 +33339,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2513++ - if yyhl2513 { - yyb2513 = yyj2513 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2513 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2513 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32742,16 +33353,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2516 := &x.ObjectMeta - yyv2516.CodecDecodeSelf(d) + yyv2559 := &x.ObjectMeta + yyv2559.CodecDecodeSelf(d) } - yyj2513++ - if yyhl2513 { - yyb2513 = yyj2513 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2513 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2513 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32759,16 +33370,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2517 := &x.Spec - yyv2517.CodecDecodeSelf(d) + yyv2560 := &x.Spec + yyv2560.CodecDecodeSelf(d) } - yyj2513++ - if yyhl2513 { - yyb2513 = yyj2513 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2513 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2513 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32776,21 +33387,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2518 := &x.Status - yyv2518.CodecDecodeSelf(d) + yyv2561 := &x.Status + yyv2561.CodecDecodeSelf(d) } for { - yyj2513++ - if yyhl2513 { - yyb2513 = yyj2513 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2513 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2513 { + if yyb2556 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2513-1, "") + z.DecStructFieldNotFound(yyj2556-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32802,37 +33413,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2519 := z.EncBinary() - _ = yym2519 + yym2562 := z.EncBinary() + _ = yym2562 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2520 := !z.EncBinary() - yy2arr2520 := z.EncBasicHandle().StructToArray - var yyq2520 [4]bool - _, _, _ = yysep2520, yyq2520, yy2arr2520 - const yyr2520 bool = false - yyq2520[0] = x.Kind != "" - yyq2520[1] = x.APIVersion != "" - yyq2520[2] = true - var yynn2520 int - if yyr2520 || yy2arr2520 { + yysep2563 := !z.EncBinary() + yy2arr2563 := z.EncBasicHandle().StructToArray + var yyq2563 [4]bool + _, _, _ = yysep2563, yyq2563, yy2arr2563 + const yyr2563 bool = false + yyq2563[0] = x.Kind != "" + yyq2563[1] = x.APIVersion != "" + yyq2563[2] = true + var yynn2563 int + if yyr2563 || yy2arr2563 { r.EncodeArrayStart(4) } else { - yynn2520 = 1 - for _, b := range yyq2520 { + yynn2563 = 1 + for _, b := range yyq2563 { if b { - yynn2520++ + yynn2563++ } } - r.EncodeMapStart(yynn2520) - yynn2520 = 0 + r.EncodeMapStart(yynn2563) + yynn2563 = 0 } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[0] { - yym2522 := z.EncBinary() - _ = yym2522 + if yyq2563[0] { + yym2565 := z.EncBinary() + _ = yym2565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32841,23 +33452,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[0] { + if yyq2563[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2523 := z.EncBinary() - _ = yym2523 + yym2566 := z.EncBinary() + _ = yym2566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[1] { - yym2525 := z.EncBinary() - _ = yym2525 + if yyq2563[1] { + yym2568 := z.EncBinary() + _ = yym2568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32866,54 +33477,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[1] { + if yyq2563[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2526 := z.EncBinary() - _ = yym2526 + yym2569 := z.EncBinary() + _ = yym2569 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[2] { - yy2528 := &x.ListMeta - yym2529 := z.EncBinary() - _ = yym2529 + if yyq2563[2] { + yy2571 := &x.ListMeta + yym2572 := z.EncBinary() + _ = yym2572 if false { - } else if z.HasExtensions() && z.EncExt(yy2528) { + } else if z.HasExtensions() && z.EncExt(yy2571) { } else { - z.EncFallback(yy2528) + z.EncFallback(yy2571) } } else { r.EncodeNil() } } else { - if yyq2520[2] { + if yyq2563[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2530 := &x.ListMeta - yym2531 := z.EncBinary() - _ = yym2531 + yy2573 := &x.ListMeta + yym2574 := z.EncBinary() + _ = yym2574 if false { - } else if z.HasExtensions() && z.EncExt(yy2530) { + } else if z.HasExtensions() && z.EncExt(yy2573) { } else { - z.EncFallback(yy2530) + z.EncFallback(yy2573) } } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2533 := z.EncBinary() - _ = yym2533 + yym2576 := z.EncBinary() + _ = yym2576 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -32926,15 +33537,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2534 := z.EncBinary() - _ = yym2534 + yym2577 := z.EncBinary() + _ = yym2577 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2520 || yy2arr2520 { + if yyr2563 || yy2arr2563 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32947,25 +33558,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2535 := z.DecBinary() - _ = yym2535 + yym2578 := z.DecBinary() + _ = yym2578 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2536 := r.ContainerType() - if yyct2536 == codecSelferValueTypeMap1234 { - yyl2536 := r.ReadMapStart() - if yyl2536 == 0 { + yyct2579 := r.ContainerType() + if yyct2579 == codecSelferValueTypeMap1234 { + yyl2579 := r.ReadMapStart() + if yyl2579 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2536, d) + x.codecDecodeSelfFromMap(yyl2579, d) } - } else if yyct2536 == codecSelferValueTypeArray1234 { - yyl2536 := r.ReadArrayStart() - if yyl2536 == 0 { + } else if yyct2579 == codecSelferValueTypeArray1234 { + yyl2579 := r.ReadArrayStart() + if yyl2579 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2536, d) + x.codecDecodeSelfFromArray(yyl2579, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32977,12 +33588,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2537Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2537Slc - var yyhl2537 bool = l >= 0 - for yyj2537 := 0; ; yyj2537++ { - if yyhl2537 { - if yyj2537 >= l { + var yys2580Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2580Slc + var yyhl2580 bool = l >= 0 + for yyj2580 := 0; ; yyj2580++ { + if yyhl2580 { + if yyj2580 >= l { break } } else { @@ -32991,10 +33602,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2537Slc = r.DecodeBytes(yys2537Slc, true, true) - yys2537 := string(yys2537Slc) + yys2580Slc = r.DecodeBytes(yys2580Slc, true, true) + yys2580 := string(yys2580Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2537 { + switch yys2580 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33011,31 +33622,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2540 := &x.ListMeta - yym2541 := z.DecBinary() - _ = yym2541 + yyv2583 := &x.ListMeta + yym2584 := z.DecBinary() + _ = yym2584 if false { - } else if z.HasExtensions() && z.DecExt(yyv2540) { + } else if z.HasExtensions() && z.DecExt(yyv2583) { } else { - z.DecFallback(yyv2540, false) + z.DecFallback(yyv2583, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2542 := &x.Items - yym2543 := z.DecBinary() - _ = yym2543 + yyv2585 := &x.Items + yym2586 := z.DecBinary() + _ = yym2586 if false { } else { - h.decSliceService((*[]Service)(yyv2542), d) + h.decSliceService((*[]Service)(yyv2585), d) } } default: - z.DecStructFieldNotFound(-1, yys2537) - } // end switch yys2537 - } // end for yyj2537 + z.DecStructFieldNotFound(-1, yys2580) + } // end switch yys2580 + } // end for yyj2580 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33043,16 +33654,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2544 int - var yyb2544 bool - var yyhl2544 bool = l >= 0 - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l + var yyj2587 int + var yyb2587 bool + var yyhl2587 bool = l >= 0 + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2544 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2544 { + if yyb2587 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33062,13 +33673,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2544 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2544 { + if yyb2587 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33078,13 +33689,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2544 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2544 { + if yyb2587 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33092,22 +33703,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2547 := &x.ListMeta - yym2548 := z.DecBinary() - _ = yym2548 + yyv2590 := &x.ListMeta + yym2591 := z.DecBinary() + _ = yym2591 if false { - } else if z.HasExtensions() && z.DecExt(yyv2547) { + } else if z.HasExtensions() && z.DecExt(yyv2590) { } else { - z.DecFallback(yyv2547, false) + z.DecFallback(yyv2590, false) } } - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2544 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2544 { + if yyb2587 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33115,26 +33726,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2549 := &x.Items - yym2550 := z.DecBinary() - _ = yym2550 + yyv2592 := &x.Items + yym2593 := z.DecBinary() + _ = yym2593 if false { } else { - h.decSliceService((*[]Service)(yyv2549), d) + h.decSliceService((*[]Service)(yyv2592), d) } } for { - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2544 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2544 { + if yyb2587 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2544-1, "") + z.DecStructFieldNotFound(yyj2587-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33146,39 +33757,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2551 := z.EncBinary() - _ = yym2551 + yym2594 := z.EncBinary() + _ = yym2594 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2552 := !z.EncBinary() - yy2arr2552 := z.EncBasicHandle().StructToArray - var yyq2552 [5]bool - _, _, _ = yysep2552, yyq2552, yy2arr2552 - const yyr2552 bool = false - yyq2552[0] = x.Kind != "" - yyq2552[1] = x.APIVersion != "" - yyq2552[2] = true - yyq2552[3] = len(x.Secrets) != 0 - yyq2552[4] = len(x.ImagePullSecrets) != 0 - var yynn2552 int - if yyr2552 || yy2arr2552 { + yysep2595 := !z.EncBinary() + yy2arr2595 := z.EncBasicHandle().StructToArray + var yyq2595 [5]bool + _, _, _ = yysep2595, yyq2595, yy2arr2595 + const yyr2595 bool = false + yyq2595[0] = x.Kind != "" + yyq2595[1] = x.APIVersion != "" + yyq2595[2] = true + yyq2595[3] = len(x.Secrets) != 0 + yyq2595[4] = len(x.ImagePullSecrets) != 0 + var yynn2595 int + if yyr2595 || yy2arr2595 { r.EncodeArrayStart(5) } else { - yynn2552 = 0 - for _, b := range yyq2552 { + yynn2595 = 0 + for _, b := range yyq2595 { if b { - yynn2552++ + yynn2595++ } } - r.EncodeMapStart(yynn2552) - yynn2552 = 0 + r.EncodeMapStart(yynn2595) + yynn2595 = 0 } - if yyr2552 || yy2arr2552 { + if yyr2595 || yy2arr2595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2552[0] { - yym2554 := z.EncBinary() - _ = yym2554 + if yyq2595[0] { + yym2597 := z.EncBinary() + _ = yym2597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33187,23 +33798,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2552[0] { + if yyq2595[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2555 := z.EncBinary() - _ = yym2555 + yym2598 := z.EncBinary() + _ = yym2598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2552 || yy2arr2552 { + if yyr2595 || yy2arr2595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2552[1] { - yym2557 := z.EncBinary() - _ = yym2557 + if yyq2595[1] { + yym2600 := z.EncBinary() + _ = yym2600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33212,43 +33823,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2552[1] { + if yyq2595[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2558 := z.EncBinary() - _ = yym2558 + yym2601 := z.EncBinary() + _ = yym2601 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2552 || yy2arr2552 { + if yyr2595 || yy2arr2595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2552[2] { - yy2560 := &x.ObjectMeta - yy2560.CodecEncodeSelf(e) + if yyq2595[2] { + yy2603 := &x.ObjectMeta + yy2603.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2552[2] { + if yyq2595[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2561 := &x.ObjectMeta - yy2561.CodecEncodeSelf(e) + yy2604 := &x.ObjectMeta + yy2604.CodecEncodeSelf(e) } } - if yyr2552 || yy2arr2552 { + if yyr2595 || yy2arr2595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2552[3] { + if yyq2595[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2563 := z.EncBinary() - _ = yym2563 + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33258,15 +33869,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2552[3] { + if yyq2595[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2564 := z.EncBinary() - _ = yym2564 + yym2607 := z.EncBinary() + _ = yym2607 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33274,14 +33885,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2552 || yy2arr2552 { + if yyr2595 || yy2arr2595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2552[4] { + if yyq2595[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2566 := z.EncBinary() - _ = yym2566 + yym2609 := z.EncBinary() + _ = yym2609 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33291,15 +33902,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2552[4] { + if yyq2595[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2567 := z.EncBinary() - _ = yym2567 + yym2610 := z.EncBinary() + _ = yym2610 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33307,7 +33918,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2552 || yy2arr2552 { + if yyr2595 || yy2arr2595 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33320,25 +33931,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2568 := z.DecBinary() - _ = yym2568 + yym2611 := z.DecBinary() + _ = yym2611 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2569 := r.ContainerType() - if yyct2569 == codecSelferValueTypeMap1234 { - yyl2569 := r.ReadMapStart() - if yyl2569 == 0 { + yyct2612 := r.ContainerType() + if yyct2612 == codecSelferValueTypeMap1234 { + yyl2612 := r.ReadMapStart() + if yyl2612 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2569, d) + x.codecDecodeSelfFromMap(yyl2612, d) } - } else if yyct2569 == codecSelferValueTypeArray1234 { - yyl2569 := r.ReadArrayStart() - if yyl2569 == 0 { + } else if yyct2612 == codecSelferValueTypeArray1234 { + yyl2612 := r.ReadArrayStart() + if yyl2612 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2569, d) + x.codecDecodeSelfFromArray(yyl2612, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33350,12 +33961,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2570Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2570Slc - var yyhl2570 bool = l >= 0 - for yyj2570 := 0; ; yyj2570++ { - if yyhl2570 { - if yyj2570 >= l { + var yys2613Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2613Slc + var yyhl2613 bool = l >= 0 + for yyj2613 := 0; ; yyj2613++ { + if yyhl2613 { + if yyj2613 >= l { break } } else { @@ -33364,10 +33975,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2570Slc = r.DecodeBytes(yys2570Slc, true, true) - yys2570 := string(yys2570Slc) + yys2613Slc = r.DecodeBytes(yys2613Slc, true, true) + yys2613 := string(yys2613Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2570 { + switch yys2613 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33384,37 +33995,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2573 := &x.ObjectMeta - yyv2573.CodecDecodeSelf(d) + yyv2616 := &x.ObjectMeta + yyv2616.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2574 := &x.Secrets - yym2575 := z.DecBinary() - _ = yym2575 + yyv2617 := &x.Secrets + yym2618 := z.DecBinary() + _ = yym2618 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2574), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2617), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2576 := &x.ImagePullSecrets - yym2577 := z.DecBinary() - _ = yym2577 + yyv2619 := &x.ImagePullSecrets + yym2620 := z.DecBinary() + _ = yym2620 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2576), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2619), d) } } default: - z.DecStructFieldNotFound(-1, yys2570) - } // end switch yys2570 - } // end for yyj2570 + z.DecStructFieldNotFound(-1, yys2613) + } // end switch yys2613 + } // end for yyj2613 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33422,16 +34033,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2578 int - var yyb2578 bool - var yyhl2578 bool = l >= 0 - yyj2578++ - if yyhl2578 { - yyb2578 = yyj2578 > l + var yyj2621 int + var yyb2621 bool + var yyhl2621 bool = l >= 0 + yyj2621++ + if yyhl2621 { + yyb2621 = yyj2621 > l } else { - yyb2578 = r.CheckBreak() + yyb2621 = r.CheckBreak() } - if yyb2578 { + if yyb2621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33441,13 +34052,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2578++ - if yyhl2578 { - yyb2578 = yyj2578 > l + yyj2621++ + if yyhl2621 { + yyb2621 = yyj2621 > l } else { - yyb2578 = r.CheckBreak() + yyb2621 = r.CheckBreak() } - if yyb2578 { + if yyb2621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33457,13 +34068,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2578++ - if yyhl2578 { - yyb2578 = yyj2578 > l + yyj2621++ + if yyhl2621 { + yyb2621 = yyj2621 > l } else { - yyb2578 = r.CheckBreak() + yyb2621 = r.CheckBreak() } - if yyb2578 { + if yyb2621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33471,16 +34082,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2581 := &x.ObjectMeta - yyv2581.CodecDecodeSelf(d) + yyv2624 := &x.ObjectMeta + yyv2624.CodecDecodeSelf(d) } - yyj2578++ - if yyhl2578 { - yyb2578 = yyj2578 > l + yyj2621++ + if yyhl2621 { + yyb2621 = yyj2621 > l } else { - yyb2578 = r.CheckBreak() + yyb2621 = r.CheckBreak() } - if yyb2578 { + if yyb2621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33488,21 +34099,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2582 := &x.Secrets - yym2583 := z.DecBinary() - _ = yym2583 + yyv2625 := &x.Secrets + yym2626 := z.DecBinary() + _ = yym2626 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2582), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2625), d) } } - yyj2578++ - if yyhl2578 { - yyb2578 = yyj2578 > l + yyj2621++ + if yyhl2621 { + yyb2621 = yyj2621 > l } else { - yyb2578 = r.CheckBreak() + yyb2621 = r.CheckBreak() } - if yyb2578 { + if yyb2621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33510,26 +34121,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2584 := &x.ImagePullSecrets - yym2585 := z.DecBinary() - _ = yym2585 + yyv2627 := &x.ImagePullSecrets + yym2628 := z.DecBinary() + _ = yym2628 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2584), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2627), d) } } for { - yyj2578++ - if yyhl2578 { - yyb2578 = yyj2578 > l + yyj2621++ + if yyhl2621 { + yyb2621 = yyj2621 > l } else { - yyb2578 = r.CheckBreak() + yyb2621 = r.CheckBreak() } - if yyb2578 { + if yyb2621 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2578-1, "") + z.DecStructFieldNotFound(yyj2621-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33541,37 +34152,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2586 := z.EncBinary() - _ = yym2586 + yym2629 := z.EncBinary() + _ = yym2629 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2587 := !z.EncBinary() - yy2arr2587 := z.EncBasicHandle().StructToArray - var yyq2587 [4]bool - _, _, _ = yysep2587, yyq2587, yy2arr2587 - const yyr2587 bool = false - yyq2587[0] = x.Kind != "" - yyq2587[1] = x.APIVersion != "" - yyq2587[2] = true - var yynn2587 int - if yyr2587 || yy2arr2587 { + yysep2630 := !z.EncBinary() + yy2arr2630 := z.EncBasicHandle().StructToArray + var yyq2630 [4]bool + _, _, _ = yysep2630, yyq2630, yy2arr2630 + const yyr2630 bool = false + yyq2630[0] = x.Kind != "" + yyq2630[1] = x.APIVersion != "" + yyq2630[2] = true + var yynn2630 int + if yyr2630 || yy2arr2630 { r.EncodeArrayStart(4) } else { - yynn2587 = 1 - for _, b := range yyq2587 { + yynn2630 = 1 + for _, b := range yyq2630 { if b { - yynn2587++ + yynn2630++ } } - r.EncodeMapStart(yynn2587) - yynn2587 = 0 + r.EncodeMapStart(yynn2630) + yynn2630 = 0 } - if yyr2587 || yy2arr2587 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2587[0] { - yym2589 := z.EncBinary() - _ = yym2589 + if yyq2630[0] { + yym2632 := z.EncBinary() + _ = yym2632 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33580,23 +34191,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2587[0] { + if yyq2630[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2590 := z.EncBinary() - _ = yym2590 + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2587 || yy2arr2587 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2587[1] { - yym2592 := z.EncBinary() - _ = yym2592 + if yyq2630[1] { + yym2635 := z.EncBinary() + _ = yym2635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33605,54 +34216,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2587[1] { + if yyq2630[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2593 := z.EncBinary() - _ = yym2593 + yym2636 := z.EncBinary() + _ = yym2636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2587 || yy2arr2587 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2587[2] { - yy2595 := &x.ListMeta - yym2596 := z.EncBinary() - _ = yym2596 + if yyq2630[2] { + yy2638 := &x.ListMeta + yym2639 := z.EncBinary() + _ = yym2639 if false { - } else if z.HasExtensions() && z.EncExt(yy2595) { + } else if z.HasExtensions() && z.EncExt(yy2638) { } else { - z.EncFallback(yy2595) + z.EncFallback(yy2638) } } else { r.EncodeNil() } } else { - if yyq2587[2] { + if yyq2630[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2597 := &x.ListMeta - yym2598 := z.EncBinary() - _ = yym2598 + yy2640 := &x.ListMeta + yym2641 := z.EncBinary() + _ = yym2641 if false { - } else if z.HasExtensions() && z.EncExt(yy2597) { + } else if z.HasExtensions() && z.EncExt(yy2640) { } else { - z.EncFallback(yy2597) + z.EncFallback(yy2640) } } } - if yyr2587 || yy2arr2587 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2600 := z.EncBinary() - _ = yym2600 + yym2643 := z.EncBinary() + _ = yym2643 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -33665,15 +34276,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2601 := z.EncBinary() - _ = yym2601 + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2587 || yy2arr2587 { + if yyr2630 || yy2arr2630 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33686,25 +34297,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2602 := z.DecBinary() - _ = yym2602 + yym2645 := z.DecBinary() + _ = yym2645 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2603 := r.ContainerType() - if yyct2603 == codecSelferValueTypeMap1234 { - yyl2603 := r.ReadMapStart() - if yyl2603 == 0 { + yyct2646 := r.ContainerType() + if yyct2646 == codecSelferValueTypeMap1234 { + yyl2646 := r.ReadMapStart() + if yyl2646 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2603, d) + x.codecDecodeSelfFromMap(yyl2646, d) } - } else if yyct2603 == codecSelferValueTypeArray1234 { - yyl2603 := r.ReadArrayStart() - if yyl2603 == 0 { + } else if yyct2646 == codecSelferValueTypeArray1234 { + yyl2646 := r.ReadArrayStart() + if yyl2646 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2603, d) + x.codecDecodeSelfFromArray(yyl2646, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33716,12 +34327,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2604Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2604Slc - var yyhl2604 bool = l >= 0 - for yyj2604 := 0; ; yyj2604++ { - if yyhl2604 { - if yyj2604 >= l { + var yys2647Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2647Slc + var yyhl2647 bool = l >= 0 + for yyj2647 := 0; ; yyj2647++ { + if yyhl2647 { + if yyj2647 >= l { break } } else { @@ -33730,10 +34341,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2604Slc = r.DecodeBytes(yys2604Slc, true, true) - yys2604 := string(yys2604Slc) + yys2647Slc = r.DecodeBytes(yys2647Slc, true, true) + yys2647 := string(yys2647Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2604 { + switch yys2647 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33750,31 +34361,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2607 := &x.ListMeta - yym2608 := z.DecBinary() - _ = yym2608 + yyv2650 := &x.ListMeta + yym2651 := z.DecBinary() + _ = yym2651 if false { - } else if z.HasExtensions() && z.DecExt(yyv2607) { + } else if z.HasExtensions() && z.DecExt(yyv2650) { } else { - z.DecFallback(yyv2607, false) + z.DecFallback(yyv2650, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2609 := &x.Items - yym2610 := z.DecBinary() - _ = yym2610 + yyv2652 := &x.Items + yym2653 := z.DecBinary() + _ = yym2653 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2609), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2652), d) } } default: - z.DecStructFieldNotFound(-1, yys2604) - } // end switch yys2604 - } // end for yyj2604 + z.DecStructFieldNotFound(-1, yys2647) + } // end switch yys2647 + } // end for yyj2647 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33782,16 +34393,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2611 int - var yyb2611 bool - var yyhl2611 bool = l >= 0 - yyj2611++ - if yyhl2611 { - yyb2611 = yyj2611 > l + var yyj2654 int + var yyb2654 bool + var yyhl2654 bool = l >= 0 + yyj2654++ + if yyhl2654 { + yyb2654 = yyj2654 > l } else { - yyb2611 = r.CheckBreak() + yyb2654 = r.CheckBreak() } - if yyb2611 { + if yyb2654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33801,13 +34412,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2611++ - if yyhl2611 { - yyb2611 = yyj2611 > l + yyj2654++ + if yyhl2654 { + yyb2654 = yyj2654 > l } else { - yyb2611 = r.CheckBreak() + yyb2654 = r.CheckBreak() } - if yyb2611 { + if yyb2654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33817,13 +34428,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2611++ - if yyhl2611 { - yyb2611 = yyj2611 > l + yyj2654++ + if yyhl2654 { + yyb2654 = yyj2654 > l } else { - yyb2611 = r.CheckBreak() + yyb2654 = r.CheckBreak() } - if yyb2611 { + if yyb2654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33831,22 +34442,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2614 := &x.ListMeta - yym2615 := z.DecBinary() - _ = yym2615 + yyv2657 := &x.ListMeta + yym2658 := z.DecBinary() + _ = yym2658 if false { - } else if z.HasExtensions() && z.DecExt(yyv2614) { + } else if z.HasExtensions() && z.DecExt(yyv2657) { } else { - z.DecFallback(yyv2614, false) + z.DecFallback(yyv2657, false) } } - yyj2611++ - if yyhl2611 { - yyb2611 = yyj2611 > l + yyj2654++ + if yyhl2654 { + yyb2654 = yyj2654 > l } else { - yyb2611 = r.CheckBreak() + yyb2654 = r.CheckBreak() } - if yyb2611 { + if yyb2654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33854,26 +34465,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2616 := &x.Items - yym2617 := z.DecBinary() - _ = yym2617 + yyv2659 := &x.Items + yym2660 := z.DecBinary() + _ = yym2660 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2616), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2659), d) } } for { - yyj2611++ - if yyhl2611 { - yyb2611 = yyj2611 > l + yyj2654++ + if yyhl2654 { + yyb2654 = yyj2654 > l } else { - yyb2611 = r.CheckBreak() + yyb2654 = r.CheckBreak() } - if yyb2611 { + if yyb2654 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2611-1, "") + z.DecStructFieldNotFound(yyj2654-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33885,37 +34496,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2618 := z.EncBinary() - _ = yym2618 + yym2661 := z.EncBinary() + _ = yym2661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2619 := !z.EncBinary() - yy2arr2619 := z.EncBasicHandle().StructToArray - var yyq2619 [4]bool - _, _, _ = yysep2619, yyq2619, yy2arr2619 - const yyr2619 bool = false - yyq2619[0] = x.Kind != "" - yyq2619[1] = x.APIVersion != "" - yyq2619[2] = true - var yynn2619 int - if yyr2619 || yy2arr2619 { + yysep2662 := !z.EncBinary() + yy2arr2662 := z.EncBasicHandle().StructToArray + var yyq2662 [4]bool + _, _, _ = yysep2662, yyq2662, yy2arr2662 + const yyr2662 bool = false + yyq2662[0] = x.Kind != "" + yyq2662[1] = x.APIVersion != "" + yyq2662[2] = true + var yynn2662 int + if yyr2662 || yy2arr2662 { r.EncodeArrayStart(4) } else { - yynn2619 = 1 - for _, b := range yyq2619 { + yynn2662 = 1 + for _, b := range yyq2662 { if b { - yynn2619++ + yynn2662++ } } - r.EncodeMapStart(yynn2619) - yynn2619 = 0 + r.EncodeMapStart(yynn2662) + yynn2662 = 0 } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2619[0] { - yym2621 := z.EncBinary() - _ = yym2621 + if yyq2662[0] { + yym2664 := z.EncBinary() + _ = yym2664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33924,23 +34535,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2619[0] { + if yyq2662[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2622 := z.EncBinary() - _ = yym2622 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2619[1] { - yym2624 := z.EncBinary() - _ = yym2624 + if yyq2662[1] { + yym2667 := z.EncBinary() + _ = yym2667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33949,42 +34560,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2619[1] { + if yyq2662[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2625 := z.EncBinary() - _ = yym2625 + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2619[2] { - yy2627 := &x.ObjectMeta - yy2627.CodecEncodeSelf(e) + if yyq2662[2] { + yy2670 := &x.ObjectMeta + yy2670.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2619[2] { + if yyq2662[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2628 := &x.ObjectMeta - yy2628.CodecEncodeSelf(e) + yy2671 := &x.ObjectMeta + yy2671.CodecEncodeSelf(e) } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2630 := z.EncBinary() - _ = yym2630 + yym2673 := z.EncBinary() + _ = yym2673 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -33997,15 +34608,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2631 := z.EncBinary() - _ = yym2631 + yym2674 := z.EncBinary() + _ = yym2674 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2619 || yy2arr2619 { + if yyr2662 || yy2arr2662 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34018,25 +34629,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2632 := z.DecBinary() - _ = yym2632 + yym2675 := z.DecBinary() + _ = yym2675 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2633 := r.ContainerType() - if yyct2633 == codecSelferValueTypeMap1234 { - yyl2633 := r.ReadMapStart() - if yyl2633 == 0 { + yyct2676 := r.ContainerType() + if yyct2676 == codecSelferValueTypeMap1234 { + yyl2676 := r.ReadMapStart() + if yyl2676 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2633, d) + x.codecDecodeSelfFromMap(yyl2676, d) } - } else if yyct2633 == codecSelferValueTypeArray1234 { - yyl2633 := r.ReadArrayStart() - if yyl2633 == 0 { + } else if yyct2676 == codecSelferValueTypeArray1234 { + yyl2676 := r.ReadArrayStart() + if yyl2676 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2633, d) + x.codecDecodeSelfFromArray(yyl2676, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34048,12 +34659,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2634Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2634Slc - var yyhl2634 bool = l >= 0 - for yyj2634 := 0; ; yyj2634++ { - if yyhl2634 { - if yyj2634 >= l { + var yys2677Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2677Slc + var yyhl2677 bool = l >= 0 + for yyj2677 := 0; ; yyj2677++ { + if yyhl2677 { + if yyj2677 >= l { break } } else { @@ -34062,10 +34673,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2634Slc = r.DecodeBytes(yys2634Slc, true, true) - yys2634 := string(yys2634Slc) + yys2677Slc = r.DecodeBytes(yys2677Slc, true, true) + yys2677 := string(yys2677Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2634 { + switch yys2677 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34082,25 +34693,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2637 := &x.ObjectMeta - yyv2637.CodecDecodeSelf(d) + yyv2680 := &x.ObjectMeta + yyv2680.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2638 := &x.Subsets - yym2639 := z.DecBinary() - _ = yym2639 + yyv2681 := &x.Subsets + yym2682 := z.DecBinary() + _ = yym2682 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2638), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2681), d) } } default: - z.DecStructFieldNotFound(-1, yys2634) - } // end switch yys2634 - } // end for yyj2634 + z.DecStructFieldNotFound(-1, yys2677) + } // end switch yys2677 + } // end for yyj2677 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34108,16 +34719,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2640 int - var yyb2640 bool - var yyhl2640 bool = l >= 0 - yyj2640++ - if yyhl2640 { - yyb2640 = yyj2640 > l + var yyj2683 int + var yyb2683 bool + var yyhl2683 bool = l >= 0 + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2640 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2640 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34127,13 +34738,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2640++ - if yyhl2640 { - yyb2640 = yyj2640 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2640 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2640 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34143,13 +34754,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2640++ - if yyhl2640 { - yyb2640 = yyj2640 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2640 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2640 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34157,16 +34768,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2643 := &x.ObjectMeta - yyv2643.CodecDecodeSelf(d) + yyv2686 := &x.ObjectMeta + yyv2686.CodecDecodeSelf(d) } - yyj2640++ - if yyhl2640 { - yyb2640 = yyj2640 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2640 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2640 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34174,26 +34785,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2644 := &x.Subsets - yym2645 := z.DecBinary() - _ = yym2645 + yyv2687 := &x.Subsets + yym2688 := z.DecBinary() + _ = yym2688 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2644), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2687), d) } } for { - yyj2640++ - if yyhl2640 { - yyb2640 = yyj2640 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2640 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2640 { + if yyb2683 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2640-1, "") + z.DecStructFieldNotFound(yyj2683-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34205,40 +34816,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2646 := z.EncBinary() - _ = yym2646 + yym2689 := z.EncBinary() + _ = yym2689 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2647 := !z.EncBinary() - yy2arr2647 := z.EncBasicHandle().StructToArray - var yyq2647 [3]bool - _, _, _ = yysep2647, yyq2647, yy2arr2647 - const yyr2647 bool = false - yyq2647[0] = len(x.Addresses) != 0 - yyq2647[1] = len(x.NotReadyAddresses) != 0 - yyq2647[2] = len(x.Ports) != 0 - var yynn2647 int - if yyr2647 || yy2arr2647 { + yysep2690 := !z.EncBinary() + yy2arr2690 := z.EncBasicHandle().StructToArray + var yyq2690 [3]bool + _, _, _ = yysep2690, yyq2690, yy2arr2690 + const yyr2690 bool = false + yyq2690[0] = len(x.Addresses) != 0 + yyq2690[1] = len(x.NotReadyAddresses) != 0 + yyq2690[2] = len(x.Ports) != 0 + var yynn2690 int + if yyr2690 || yy2arr2690 { r.EncodeArrayStart(3) } else { - yynn2647 = 0 - for _, b := range yyq2647 { + yynn2690 = 0 + for _, b := range yyq2690 { if b { - yynn2647++ + yynn2690++ } } - r.EncodeMapStart(yynn2647) - yynn2647 = 0 + r.EncodeMapStart(yynn2690) + yynn2690 = 0 } - if yyr2647 || yy2arr2647 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[0] { + if yyq2690[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2649 := z.EncBinary() - _ = yym2649 + yym2692 := z.EncBinary() + _ = yym2692 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34248,15 +34859,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2647[0] { + if yyq2690[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2650 := z.EncBinary() - _ = yym2650 + yym2693 := z.EncBinary() + _ = yym2693 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34264,14 +34875,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2647 || yy2arr2647 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[1] { + if yyq2690[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2652 := z.EncBinary() - _ = yym2652 + yym2695 := z.EncBinary() + _ = yym2695 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34281,15 +34892,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2647[1] { + if yyq2690[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2653 := z.EncBinary() - _ = yym2653 + yym2696 := z.EncBinary() + _ = yym2696 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34297,14 +34908,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2647 || yy2arr2647 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[2] { + if yyq2690[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2655 := z.EncBinary() - _ = yym2655 + yym2698 := z.EncBinary() + _ = yym2698 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34314,15 +34925,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2647[2] { + if yyq2690[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2656 := z.EncBinary() - _ = yym2656 + yym2699 := z.EncBinary() + _ = yym2699 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34330,7 +34941,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2647 || yy2arr2647 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34343,25 +34954,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2657 := z.DecBinary() - _ = yym2657 + yym2700 := z.DecBinary() + _ = yym2700 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2658 := r.ContainerType() - if yyct2658 == codecSelferValueTypeMap1234 { - yyl2658 := r.ReadMapStart() - if yyl2658 == 0 { + yyct2701 := r.ContainerType() + if yyct2701 == codecSelferValueTypeMap1234 { + yyl2701 := r.ReadMapStart() + if yyl2701 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2658, d) + x.codecDecodeSelfFromMap(yyl2701, d) } - } else if yyct2658 == codecSelferValueTypeArray1234 { - yyl2658 := r.ReadArrayStart() - if yyl2658 == 0 { + } else if yyct2701 == codecSelferValueTypeArray1234 { + yyl2701 := r.ReadArrayStart() + if yyl2701 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2658, d) + x.codecDecodeSelfFromArray(yyl2701, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34373,12 +34984,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2659Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2659Slc - var yyhl2659 bool = l >= 0 - for yyj2659 := 0; ; yyj2659++ { - if yyhl2659 { - if yyj2659 >= l { + var yys2702Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2702Slc + var yyhl2702 bool = l >= 0 + for yyj2702 := 0; ; yyj2702++ { + if yyhl2702 { + if yyj2702 >= l { break } } else { @@ -34387,50 +34998,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2659Slc = r.DecodeBytes(yys2659Slc, true, true) - yys2659 := string(yys2659Slc) + yys2702Slc = r.DecodeBytes(yys2702Slc, true, true) + yys2702 := string(yys2702Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2659 { + switch yys2702 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2660 := &x.Addresses - yym2661 := z.DecBinary() - _ = yym2661 + yyv2703 := &x.Addresses + yym2704 := z.DecBinary() + _ = yym2704 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2660), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2703), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2662 := &x.NotReadyAddresses - yym2663 := z.DecBinary() - _ = yym2663 + yyv2705 := &x.NotReadyAddresses + yym2706 := z.DecBinary() + _ = yym2706 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2662), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2705), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2664 := &x.Ports - yym2665 := z.DecBinary() - _ = yym2665 + yyv2707 := &x.Ports + yym2708 := z.DecBinary() + _ = yym2708 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2664), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2707), d) } } default: - z.DecStructFieldNotFound(-1, yys2659) - } // end switch yys2659 - } // end for yyj2659 + z.DecStructFieldNotFound(-1, yys2702) + } // end switch yys2702 + } // end for yyj2702 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34438,16 +35049,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2666 int - var yyb2666 bool - var yyhl2666 bool = l >= 0 - yyj2666++ - if yyhl2666 { - yyb2666 = yyj2666 > l + var yyj2709 int + var yyb2709 bool + var yyhl2709 bool = l >= 0 + yyj2709++ + if yyhl2709 { + yyb2709 = yyj2709 > l } else { - yyb2666 = r.CheckBreak() + yyb2709 = r.CheckBreak() } - if yyb2666 { + if yyb2709 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34455,21 +35066,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2667 := &x.Addresses - yym2668 := z.DecBinary() - _ = yym2668 + yyv2710 := &x.Addresses + yym2711 := z.DecBinary() + _ = yym2711 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2667), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2710), d) } } - yyj2666++ - if yyhl2666 { - yyb2666 = yyj2666 > l + yyj2709++ + if yyhl2709 { + yyb2709 = yyj2709 > l } else { - yyb2666 = r.CheckBreak() + yyb2709 = r.CheckBreak() } - if yyb2666 { + if yyb2709 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34477,21 +35088,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2669 := &x.NotReadyAddresses - yym2670 := z.DecBinary() - _ = yym2670 + yyv2712 := &x.NotReadyAddresses + yym2713 := z.DecBinary() + _ = yym2713 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2669), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2712), d) } } - yyj2666++ - if yyhl2666 { - yyb2666 = yyj2666 > l + yyj2709++ + if yyhl2709 { + yyb2709 = yyj2709 > l } else { - yyb2666 = r.CheckBreak() + yyb2709 = r.CheckBreak() } - if yyb2666 { + if yyb2709 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34499,26 +35110,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2671 := &x.Ports - yym2672 := z.DecBinary() - _ = yym2672 + yyv2714 := &x.Ports + yym2715 := z.DecBinary() + _ = yym2715 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2671), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2714), d) } } for { - yyj2666++ - if yyhl2666 { - yyb2666 = yyj2666 > l + yyj2709++ + if yyhl2709 { + yyb2709 = yyj2709 > l } else { - yyb2666 = r.CheckBreak() + yyb2709 = r.CheckBreak() } - if yyb2666 { + if yyb2709 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2666-1, "") + z.DecStructFieldNotFound(yyj2709-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34530,36 +35141,36 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2673 := z.EncBinary() - _ = yym2673 + yym2716 := z.EncBinary() + _ = yym2716 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2674 := !z.EncBinary() - yy2arr2674 := z.EncBasicHandle().StructToArray - var yyq2674 [4]bool - _, _, _ = yysep2674, yyq2674, yy2arr2674 - const yyr2674 bool = false - yyq2674[1] = x.Hostname != "" - yyq2674[2] = x.NodeName != nil - yyq2674[3] = x.TargetRef != nil - var yynn2674 int - if yyr2674 || yy2arr2674 { + yysep2717 := !z.EncBinary() + yy2arr2717 := z.EncBasicHandle().StructToArray + var yyq2717 [4]bool + _, _, _ = yysep2717, yyq2717, yy2arr2717 + const yyr2717 bool = false + yyq2717[1] = x.Hostname != "" + yyq2717[2] = x.NodeName != nil + yyq2717[3] = x.TargetRef != nil + var yynn2717 int + if yyr2717 || yy2arr2717 { r.EncodeArrayStart(4) } else { - yynn2674 = 1 - for _, b := range yyq2674 { + yynn2717 = 1 + for _, b := range yyq2717 { if b { - yynn2674++ + yynn2717++ } } - r.EncodeMapStart(yynn2674) - yynn2674 = 0 + r.EncodeMapStart(yynn2717) + yynn2717 = 0 } - if yyr2674 || yy2arr2674 { + if yyr2717 || yy2arr2717 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2676 := z.EncBinary() - _ = yym2676 + yym2719 := z.EncBinary() + _ = yym2719 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -34568,18 +35179,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2677 := z.EncBinary() - _ = yym2677 + yym2720 := z.EncBinary() + _ = yym2720 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2674 || yy2arr2674 { + if yyr2717 || yy2arr2717 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2674[1] { - yym2679 := z.EncBinary() - _ = yym2679 + if yyq2717[1] { + yym2722 := z.EncBinary() + _ = yym2722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -34588,56 +35199,56 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2674[1] { + if yyq2717[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2680 := z.EncBinary() - _ = yym2680 + yym2723 := z.EncBinary() + _ = yym2723 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2674 || yy2arr2674 { + if yyr2717 || yy2arr2717 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2674[2] { + if yyq2717[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2682 := *x.NodeName - yym2683 := z.EncBinary() - _ = yym2683 + yy2725 := *x.NodeName + yym2726 := z.EncBinary() + _ = yym2726 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2682)) + r.EncodeString(codecSelferC_UTF81234, string(yy2725)) } } } else { r.EncodeNil() } } else { - if yyq2674[2] { + if yyq2717[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2684 := *x.NodeName - yym2685 := z.EncBinary() - _ = yym2685 + yy2727 := *x.NodeName + yym2728 := z.EncBinary() + _ = yym2728 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2684)) + r.EncodeString(codecSelferC_UTF81234, string(yy2727)) } } } } - if yyr2674 || yy2arr2674 { + if yyr2717 || yy2arr2717 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2674[3] { + if yyq2717[3] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -34647,7 +35258,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2674[3] { + if yyq2717[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -34658,7 +35269,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2674 || yy2arr2674 { + if yyr2717 || yy2arr2717 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34671,25 +35282,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2687 := z.DecBinary() - _ = yym2687 + yym2730 := z.DecBinary() + _ = yym2730 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2688 := r.ContainerType() - if yyct2688 == codecSelferValueTypeMap1234 { - yyl2688 := r.ReadMapStart() - if yyl2688 == 0 { + yyct2731 := r.ContainerType() + if yyct2731 == codecSelferValueTypeMap1234 { + yyl2731 := r.ReadMapStart() + if yyl2731 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2688, d) + x.codecDecodeSelfFromMap(yyl2731, d) } - } else if yyct2688 == codecSelferValueTypeArray1234 { - yyl2688 := r.ReadArrayStart() - if yyl2688 == 0 { + } else if yyct2731 == codecSelferValueTypeArray1234 { + yyl2731 := r.ReadArrayStart() + if yyl2731 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2688, d) + x.codecDecodeSelfFromArray(yyl2731, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34701,12 +35312,12 @@ func (x *EndpointAddress) 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 yys2732Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2732Slc + var yyhl2732 bool = l >= 0 + for yyj2732 := 0; ; yyj2732++ { + if yyhl2732 { + if yyj2732 >= l { break } } else { @@ -34715,10 +35326,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2689Slc = r.DecodeBytes(yys2689Slc, true, true) - yys2689 := string(yys2689Slc) + yys2732Slc = r.DecodeBytes(yys2732Slc, true, true) + yys2732 := string(yys2732Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2689 { + switch yys2732 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -34740,8 +35351,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2693 := z.DecBinary() - _ = yym2693 + yym2736 := z.DecBinary() + _ = yym2736 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -34759,9 +35370,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2689) - } // end switch yys2689 - } // end for yyj2689 + z.DecStructFieldNotFound(-1, yys2732) + } // end switch yys2732 + } // end for yyj2732 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34769,16 +35380,16 @@ func (x *EndpointAddress) 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 + var yyj2738 int + var yyb2738 bool + var yyhl2738 bool = l >= 0 + yyj2738++ + if yyhl2738 { + yyb2738 = yyj2738 > l } else { - yyb2695 = r.CheckBreak() + yyb2738 = r.CheckBreak() } - if yyb2695 { + if yyb2738 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34788,13 +35399,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2695++ - if yyhl2695 { - yyb2695 = yyj2695 > l + yyj2738++ + if yyhl2738 { + yyb2738 = yyj2738 > l } else { - yyb2695 = r.CheckBreak() + yyb2738 = r.CheckBreak() } - if yyb2695 { + if yyb2738 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34804,13 +35415,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2695++ - if yyhl2695 { - yyb2695 = yyj2695 > l + yyj2738++ + if yyhl2738 { + yyb2738 = yyj2738 > l } else { - yyb2695 = r.CheckBreak() + yyb2738 = r.CheckBreak() } - if yyb2695 { + if yyb2738 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34823,20 +35434,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2699 := z.DecBinary() - _ = yym2699 + yym2742 := z.DecBinary() + _ = yym2742 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2695++ - if yyhl2695 { - yyb2695 = yyj2695 > l + yyj2738++ + if yyhl2738 { + yyb2738 = yyj2738 > l } else { - yyb2695 = r.CheckBreak() + yyb2738 = r.CheckBreak() } - if yyb2695 { + if yyb2738 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34852,17 +35463,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2695++ - if yyhl2695 { - yyb2695 = yyj2695 > l + yyj2738++ + if yyhl2738 { + yyb2738 = yyj2738 > l } else { - yyb2695 = r.CheckBreak() + yyb2738 = r.CheckBreak() } - if yyb2695 { + if yyb2738 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2695-1, "") + z.DecStructFieldNotFound(yyj2738-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34874,36 +35485,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2701 := z.EncBinary() - _ = yym2701 + yym2744 := z.EncBinary() + _ = yym2744 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2702 := !z.EncBinary() - yy2arr2702 := z.EncBasicHandle().StructToArray - var yyq2702 [3]bool - _, _, _ = yysep2702, yyq2702, yy2arr2702 - const yyr2702 bool = false - yyq2702[0] = x.Name != "" - yyq2702[2] = x.Protocol != "" - var yynn2702 int - if yyr2702 || yy2arr2702 { + yysep2745 := !z.EncBinary() + yy2arr2745 := z.EncBasicHandle().StructToArray + var yyq2745 [3]bool + _, _, _ = yysep2745, yyq2745, yy2arr2745 + const yyr2745 bool = false + yyq2745[0] = x.Name != "" + yyq2745[2] = x.Protocol != "" + var yynn2745 int + if yyr2745 || yy2arr2745 { r.EncodeArrayStart(3) } else { - yynn2702 = 1 - for _, b := range yyq2702 { + yynn2745 = 1 + for _, b := range yyq2745 { if b { - yynn2702++ + yynn2745++ } } - r.EncodeMapStart(yynn2702) - yynn2702 = 0 + r.EncodeMapStart(yynn2745) + yynn2745 = 0 } - if yyr2702 || yy2arr2702 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2702[0] { - yym2704 := z.EncBinary() - _ = yym2704 + if yyq2745[0] { + yym2747 := z.EncBinary() + _ = yym2747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34912,22 +35523,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2702[0] { + if yyq2745[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2705 := z.EncBinary() - _ = yym2705 + yym2748 := z.EncBinary() + _ = yym2748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2702 || yy2arr2702 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2707 := z.EncBinary() - _ = yym2707 + yym2750 := z.EncBinary() + _ = yym2750 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34936,29 +35547,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2708 := z.EncBinary() - _ = yym2708 + yym2751 := z.EncBinary() + _ = yym2751 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2702 || yy2arr2702 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2702[2] { + if yyq2745[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2702[2] { + if yyq2745[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2702 || yy2arr2702 { + if yyr2745 || yy2arr2745 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34971,25 +35582,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2710 := z.DecBinary() - _ = yym2710 + yym2753 := z.DecBinary() + _ = yym2753 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2711 := r.ContainerType() - if yyct2711 == codecSelferValueTypeMap1234 { - yyl2711 := r.ReadMapStart() - if yyl2711 == 0 { + yyct2754 := r.ContainerType() + if yyct2754 == codecSelferValueTypeMap1234 { + yyl2754 := r.ReadMapStart() + if yyl2754 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2711, d) + x.codecDecodeSelfFromMap(yyl2754, d) } - } else if yyct2711 == codecSelferValueTypeArray1234 { - yyl2711 := r.ReadArrayStart() - if yyl2711 == 0 { + } else if yyct2754 == codecSelferValueTypeArray1234 { + yyl2754 := r.ReadArrayStart() + if yyl2754 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2711, d) + x.codecDecodeSelfFromArray(yyl2754, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35001,12 +35612,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2712Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2712Slc - var yyhl2712 bool = l >= 0 - for yyj2712 := 0; ; yyj2712++ { - if yyhl2712 { - if yyj2712 >= l { + var yys2755Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2755Slc + var yyhl2755 bool = l >= 0 + for yyj2755 := 0; ; yyj2755++ { + if yyhl2755 { + if yyj2755 >= l { break } } else { @@ -35015,10 +35626,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2712Slc = r.DecodeBytes(yys2712Slc, true, true) - yys2712 := string(yys2712Slc) + yys2755Slc = r.DecodeBytes(yys2755Slc, true, true) + yys2755 := string(yys2755Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2712 { + switch yys2755 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -35038,9 +35649,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2712) - } // end switch yys2712 - } // end for yyj2712 + z.DecStructFieldNotFound(-1, yys2755) + } // end switch yys2755 + } // end for yyj2755 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35048,16 +35659,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2716 int - var yyb2716 bool - var yyhl2716 bool = l >= 0 - yyj2716++ - if yyhl2716 { - yyb2716 = yyj2716 > l + var yyj2759 int + var yyb2759 bool + var yyhl2759 bool = l >= 0 + yyj2759++ + if yyhl2759 { + yyb2759 = yyj2759 > l } else { - yyb2716 = r.CheckBreak() + yyb2759 = r.CheckBreak() } - if yyb2716 { + if yyb2759 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35067,13 +35678,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2716++ - if yyhl2716 { - yyb2716 = yyj2716 > l + yyj2759++ + if yyhl2759 { + yyb2759 = yyj2759 > l } else { - yyb2716 = r.CheckBreak() + yyb2759 = r.CheckBreak() } - if yyb2716 { + if yyb2759 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35083,13 +35694,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2716++ - if yyhl2716 { - yyb2716 = yyj2716 > l + yyj2759++ + if yyhl2759 { + yyb2759 = yyj2759 > l } else { - yyb2716 = r.CheckBreak() + yyb2759 = r.CheckBreak() } - if yyb2716 { + if yyb2759 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35100,17 +35711,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2716++ - if yyhl2716 { - yyb2716 = yyj2716 > l + yyj2759++ + if yyhl2759 { + yyb2759 = yyj2759 > l } else { - yyb2716 = r.CheckBreak() + yyb2759 = r.CheckBreak() } - if yyb2716 { + if yyb2759 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2716-1, "") + z.DecStructFieldNotFound(yyj2759-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35122,37 +35733,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2720 := z.EncBinary() - _ = yym2720 + yym2763 := z.EncBinary() + _ = yym2763 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2721 := !z.EncBinary() - yy2arr2721 := z.EncBasicHandle().StructToArray - var yyq2721 [4]bool - _, _, _ = yysep2721, yyq2721, yy2arr2721 - const yyr2721 bool = false - yyq2721[0] = x.Kind != "" - yyq2721[1] = x.APIVersion != "" - yyq2721[2] = true - var yynn2721 int - if yyr2721 || yy2arr2721 { + yysep2764 := !z.EncBinary() + yy2arr2764 := z.EncBasicHandle().StructToArray + var yyq2764 [4]bool + _, _, _ = yysep2764, yyq2764, yy2arr2764 + const yyr2764 bool = false + yyq2764[0] = x.Kind != "" + yyq2764[1] = x.APIVersion != "" + yyq2764[2] = true + var yynn2764 int + if yyr2764 || yy2arr2764 { r.EncodeArrayStart(4) } else { - yynn2721 = 1 - for _, b := range yyq2721 { + yynn2764 = 1 + for _, b := range yyq2764 { if b { - yynn2721++ + yynn2764++ } } - r.EncodeMapStart(yynn2721) - yynn2721 = 0 + r.EncodeMapStart(yynn2764) + yynn2764 = 0 } - if yyr2721 || yy2arr2721 { + if yyr2764 || yy2arr2764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2721[0] { - yym2723 := z.EncBinary() - _ = yym2723 + if yyq2764[0] { + yym2766 := z.EncBinary() + _ = yym2766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35161,23 +35772,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2721[0] { + if yyq2764[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2724 := z.EncBinary() - _ = yym2724 + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2721 || yy2arr2721 { + if yyr2764 || yy2arr2764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2721[1] { - yym2726 := z.EncBinary() - _ = yym2726 + if yyq2764[1] { + yym2769 := z.EncBinary() + _ = yym2769 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35186,54 +35797,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2721[1] { + if yyq2764[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2727 := z.EncBinary() - _ = yym2727 + yym2770 := z.EncBinary() + _ = yym2770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2721 || yy2arr2721 { + if yyr2764 || yy2arr2764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2721[2] { - yy2729 := &x.ListMeta - yym2730 := z.EncBinary() - _ = yym2730 + if yyq2764[2] { + yy2772 := &x.ListMeta + yym2773 := z.EncBinary() + _ = yym2773 if false { - } else if z.HasExtensions() && z.EncExt(yy2729) { + } else if z.HasExtensions() && z.EncExt(yy2772) { } else { - z.EncFallback(yy2729) + z.EncFallback(yy2772) } } else { r.EncodeNil() } } else { - if yyq2721[2] { + if yyq2764[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2731 := &x.ListMeta - yym2732 := z.EncBinary() - _ = yym2732 + yy2774 := &x.ListMeta + yym2775 := z.EncBinary() + _ = yym2775 if false { - } else if z.HasExtensions() && z.EncExt(yy2731) { + } else if z.HasExtensions() && z.EncExt(yy2774) { } else { - z.EncFallback(yy2731) + z.EncFallback(yy2774) } } } - if yyr2721 || yy2arr2721 { + if yyr2764 || yy2arr2764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2734 := z.EncBinary() - _ = yym2734 + yym2777 := z.EncBinary() + _ = yym2777 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -35246,15 +35857,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2735 := z.EncBinary() - _ = yym2735 + yym2778 := z.EncBinary() + _ = yym2778 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2721 || yy2arr2721 { + if yyr2764 || yy2arr2764 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35267,25 +35878,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2736 := z.DecBinary() - _ = yym2736 + yym2779 := z.DecBinary() + _ = yym2779 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2737 := r.ContainerType() - if yyct2737 == codecSelferValueTypeMap1234 { - yyl2737 := r.ReadMapStart() - if yyl2737 == 0 { + yyct2780 := r.ContainerType() + if yyct2780 == codecSelferValueTypeMap1234 { + yyl2780 := r.ReadMapStart() + if yyl2780 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2737, d) + x.codecDecodeSelfFromMap(yyl2780, d) } - } else if yyct2737 == codecSelferValueTypeArray1234 { - yyl2737 := r.ReadArrayStart() - if yyl2737 == 0 { + } else if yyct2780 == codecSelferValueTypeArray1234 { + yyl2780 := r.ReadArrayStart() + if yyl2780 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2737, d) + x.codecDecodeSelfFromArray(yyl2780, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35297,12 +35908,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2738Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2738Slc - var yyhl2738 bool = l >= 0 - for yyj2738 := 0; ; yyj2738++ { - if yyhl2738 { - if yyj2738 >= l { + var yys2781Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2781Slc + var yyhl2781 bool = l >= 0 + for yyj2781 := 0; ; yyj2781++ { + if yyhl2781 { + if yyj2781 >= l { break } } else { @@ -35311,10 +35922,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2738Slc = r.DecodeBytes(yys2738Slc, true, true) - yys2738 := string(yys2738Slc) + yys2781Slc = r.DecodeBytes(yys2781Slc, true, true) + yys2781 := string(yys2781Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2738 { + switch yys2781 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35331,31 +35942,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2741 := &x.ListMeta - yym2742 := z.DecBinary() - _ = yym2742 + yyv2784 := &x.ListMeta + yym2785 := z.DecBinary() + _ = yym2785 if false { - } else if z.HasExtensions() && z.DecExt(yyv2741) { + } else if z.HasExtensions() && z.DecExt(yyv2784) { } else { - z.DecFallback(yyv2741, false) + z.DecFallback(yyv2784, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2743 := &x.Items - yym2744 := z.DecBinary() - _ = yym2744 + yyv2786 := &x.Items + yym2787 := z.DecBinary() + _ = yym2787 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2743), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2786), d) } } default: - z.DecStructFieldNotFound(-1, yys2738) - } // end switch yys2738 - } // end for yyj2738 + z.DecStructFieldNotFound(-1, yys2781) + } // end switch yys2781 + } // end for yyj2781 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35363,16 +35974,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2745 int - var yyb2745 bool - var yyhl2745 bool = l >= 0 - yyj2745++ - if yyhl2745 { - yyb2745 = yyj2745 > l + var yyj2788 int + var yyb2788 bool + var yyhl2788 bool = l >= 0 + yyj2788++ + if yyhl2788 { + yyb2788 = yyj2788 > l } else { - yyb2745 = r.CheckBreak() + yyb2788 = r.CheckBreak() } - if yyb2745 { + if yyb2788 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35382,13 +35993,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2745++ - if yyhl2745 { - yyb2745 = yyj2745 > l + yyj2788++ + if yyhl2788 { + yyb2788 = yyj2788 > l } else { - yyb2745 = r.CheckBreak() + yyb2788 = r.CheckBreak() } - if yyb2745 { + if yyb2788 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35398,13 +36009,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2745++ - if yyhl2745 { - yyb2745 = yyj2745 > l + yyj2788++ + if yyhl2788 { + yyb2788 = yyj2788 > l } else { - yyb2745 = r.CheckBreak() + yyb2788 = r.CheckBreak() } - if yyb2745 { + if yyb2788 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35412,22 +36023,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2748 := &x.ListMeta - yym2749 := z.DecBinary() - _ = yym2749 + yyv2791 := &x.ListMeta + yym2792 := z.DecBinary() + _ = yym2792 if false { - } else if z.HasExtensions() && z.DecExt(yyv2748) { + } else if z.HasExtensions() && z.DecExt(yyv2791) { } else { - z.DecFallback(yyv2748, false) + z.DecFallback(yyv2791, false) } } - yyj2745++ - if yyhl2745 { - yyb2745 = yyj2745 > l + yyj2788++ + if yyhl2788 { + yyb2788 = yyj2788 > l } else { - yyb2745 = r.CheckBreak() + yyb2788 = r.CheckBreak() } - if yyb2745 { + if yyb2788 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35435,26 +36046,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2750 := &x.Items - yym2751 := z.DecBinary() - _ = yym2751 + yyv2793 := &x.Items + yym2794 := z.DecBinary() + _ = yym2794 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2750), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2793), d) } } for { - yyj2745++ - if yyhl2745 { - yyb2745 = yyj2745 > l + yyj2788++ + if yyhl2788 { + yyb2788 = yyj2788 > l } else { - yyb2745 = r.CheckBreak() + yyb2788 = r.CheckBreak() } - if yyb2745 { + if yyb2788 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2745-1, "") + z.DecStructFieldNotFound(yyj2788-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35466,38 +36077,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2752 := z.EncBinary() - _ = yym2752 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2753 := !z.EncBinary() - yy2arr2753 := z.EncBasicHandle().StructToArray - var yyq2753 [4]bool - _, _, _ = yysep2753, yyq2753, yy2arr2753 - const yyr2753 bool = false - yyq2753[0] = x.PodCIDR != "" - yyq2753[1] = x.ExternalID != "" - yyq2753[2] = x.ProviderID != "" - yyq2753[3] = x.Unschedulable != false - var yynn2753 int - if yyr2753 || yy2arr2753 { + yysep2796 := !z.EncBinary() + yy2arr2796 := z.EncBasicHandle().StructToArray + var yyq2796 [4]bool + _, _, _ = yysep2796, yyq2796, yy2arr2796 + const yyr2796 bool = false + yyq2796[0] = x.PodCIDR != "" + yyq2796[1] = x.ExternalID != "" + yyq2796[2] = x.ProviderID != "" + yyq2796[3] = x.Unschedulable != false + var yynn2796 int + if yyr2796 || yy2arr2796 { r.EncodeArrayStart(4) } else { - yynn2753 = 0 - for _, b := range yyq2753 { + yynn2796 = 0 + for _, b := range yyq2796 { if b { - yynn2753++ + yynn2796++ } } - r.EncodeMapStart(yynn2753) - yynn2753 = 0 + r.EncodeMapStart(yynn2796) + yynn2796 = 0 } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[0] { - yym2755 := z.EncBinary() - _ = yym2755 + if yyq2796[0] { + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -35506,23 +36117,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2753[0] { + if yyq2796[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2756 := z.EncBinary() - _ = yym2756 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[1] { - yym2758 := z.EncBinary() - _ = yym2758 + if yyq2796[1] { + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -35531,23 +36142,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2753[1] { + if yyq2796[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2759 := z.EncBinary() - _ = yym2759 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[2] { - yym2761 := z.EncBinary() - _ = yym2761 + if yyq2796[2] { + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -35556,23 +36167,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2753[2] { + if yyq2796[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2762 := z.EncBinary() - _ = yym2762 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2753[3] { - yym2764 := z.EncBinary() - _ = yym2764 + if yyq2796[3] { + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -35581,19 +36192,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2753[3] { + if yyq2796[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2765 := z.EncBinary() - _ = yym2765 + yym2808 := z.EncBinary() + _ = yym2808 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2753 || yy2arr2753 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35606,25 +36217,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2766 := z.DecBinary() - _ = yym2766 + yym2809 := z.DecBinary() + _ = yym2809 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2767 := r.ContainerType() - if yyct2767 == codecSelferValueTypeMap1234 { - yyl2767 := r.ReadMapStart() - if yyl2767 == 0 { + yyct2810 := r.ContainerType() + if yyct2810 == codecSelferValueTypeMap1234 { + yyl2810 := r.ReadMapStart() + if yyl2810 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2767, d) + x.codecDecodeSelfFromMap(yyl2810, d) } - } else if yyct2767 == codecSelferValueTypeArray1234 { - yyl2767 := r.ReadArrayStart() - if yyl2767 == 0 { + } else if yyct2810 == codecSelferValueTypeArray1234 { + yyl2810 := r.ReadArrayStart() + if yyl2810 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2767, d) + x.codecDecodeSelfFromArray(yyl2810, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35636,12 +36247,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2768Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2768Slc - var yyhl2768 bool = l >= 0 - for yyj2768 := 0; ; yyj2768++ { - if yyhl2768 { - if yyj2768 >= l { + var yys2811Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2811Slc + var yyhl2811 bool = l >= 0 + for yyj2811 := 0; ; yyj2811++ { + if yyhl2811 { + if yyj2811 >= l { break } } else { @@ -35650,10 +36261,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2768Slc = r.DecodeBytes(yys2768Slc, true, true) - yys2768 := string(yys2768Slc) + yys2811Slc = r.DecodeBytes(yys2811Slc, true, true) + yys2811 := string(yys2811Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2768 { + switch yys2811 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -35679,9 +36290,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2768) - } // end switch yys2768 - } // end for yyj2768 + z.DecStructFieldNotFound(-1, yys2811) + } // end switch yys2811 + } // end for yyj2811 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35689,16 +36300,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2773 int - var yyb2773 bool - var yyhl2773 bool = l >= 0 - yyj2773++ - if yyhl2773 { - yyb2773 = yyj2773 > l + var yyj2816 int + var yyb2816 bool + var yyhl2816 bool = l >= 0 + yyj2816++ + if yyhl2816 { + yyb2816 = yyj2816 > l } else { - yyb2773 = r.CheckBreak() + yyb2816 = r.CheckBreak() } - if yyb2773 { + if yyb2816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35708,13 +36319,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2773++ - if yyhl2773 { - yyb2773 = yyj2773 > l + yyj2816++ + if yyhl2816 { + yyb2816 = yyj2816 > l } else { - yyb2773 = r.CheckBreak() + yyb2816 = r.CheckBreak() } - if yyb2773 { + if yyb2816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35724,13 +36335,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2773++ - if yyhl2773 { - yyb2773 = yyj2773 > l + yyj2816++ + if yyhl2816 { + yyb2816 = yyj2816 > l } else { - yyb2773 = r.CheckBreak() + yyb2816 = r.CheckBreak() } - if yyb2773 { + if yyb2816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35740,13 +36351,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2773++ - if yyhl2773 { - yyb2773 = yyj2773 > l + yyj2816++ + if yyhl2816 { + yyb2816 = yyj2816 > l } else { - yyb2773 = r.CheckBreak() + yyb2816 = r.CheckBreak() } - if yyb2773 { + if yyb2816 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35757,17 +36368,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2773++ - if yyhl2773 { - yyb2773 = yyj2773 > l + yyj2816++ + if yyhl2816 { + yyb2816 = yyj2816 > l } else { - yyb2773 = r.CheckBreak() + yyb2816 = r.CheckBreak() } - if yyb2773 { + if yyb2816 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2773-1, "") + z.DecStructFieldNotFound(yyj2816-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35779,33 +36390,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2778 := z.EncBinary() - _ = yym2778 + yym2821 := z.EncBinary() + _ = yym2821 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2779 := !z.EncBinary() - yy2arr2779 := z.EncBasicHandle().StructToArray - var yyq2779 [1]bool - _, _, _ = yysep2779, yyq2779, yy2arr2779 - const yyr2779 bool = false - var yynn2779 int - if yyr2779 || yy2arr2779 { + yysep2822 := !z.EncBinary() + yy2arr2822 := z.EncBasicHandle().StructToArray + var yyq2822 [1]bool + _, _, _ = yysep2822, yyq2822, yy2arr2822 + const yyr2822 bool = false + var yynn2822 int + if yyr2822 || yy2arr2822 { r.EncodeArrayStart(1) } else { - yynn2779 = 1 - for _, b := range yyq2779 { + yynn2822 = 1 + for _, b := range yyq2822 { if b { - yynn2779++ + yynn2822++ } } - r.EncodeMapStart(yynn2779) - yynn2779 = 0 + r.EncodeMapStart(yynn2822) + yynn2822 = 0 } - if yyr2779 || yy2arr2779 { + if yyr2822 || yy2arr2822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2781 := z.EncBinary() - _ = yym2781 + yym2824 := z.EncBinary() + _ = yym2824 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35814,14 +36425,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2825 := z.EncBinary() + _ = yym2825 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2779 || yy2arr2779 { + if yyr2822 || yy2arr2822 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35834,25 +36445,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2783 := z.DecBinary() - _ = yym2783 + yym2826 := z.DecBinary() + _ = yym2826 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2784 := r.ContainerType() - if yyct2784 == codecSelferValueTypeMap1234 { - yyl2784 := r.ReadMapStart() - if yyl2784 == 0 { + yyct2827 := r.ContainerType() + if yyct2827 == codecSelferValueTypeMap1234 { + yyl2827 := r.ReadMapStart() + if yyl2827 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2784, d) + x.codecDecodeSelfFromMap(yyl2827, d) } - } else if yyct2784 == codecSelferValueTypeArray1234 { - yyl2784 := r.ReadArrayStart() - if yyl2784 == 0 { + } else if yyct2827 == codecSelferValueTypeArray1234 { + yyl2827 := r.ReadArrayStart() + if yyl2827 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2784, d) + x.codecDecodeSelfFromArray(yyl2827, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35864,12 +36475,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2785Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2785Slc - var yyhl2785 bool = l >= 0 - for yyj2785 := 0; ; yyj2785++ { - if yyhl2785 { - if yyj2785 >= l { + var yys2828Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2828Slc + var yyhl2828 bool = l >= 0 + for yyj2828 := 0; ; yyj2828++ { + if yyhl2828 { + if yyj2828 >= l { break } } else { @@ -35878,10 +36489,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2785Slc = r.DecodeBytes(yys2785Slc, true, true) - yys2785 := string(yys2785Slc) + yys2828Slc = r.DecodeBytes(yys2828Slc, true, true) + yys2828 := string(yys2828Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2785 { + switch yys2828 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -35889,9 +36500,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2785) - } // end switch yys2785 - } // end for yyj2785 + z.DecStructFieldNotFound(-1, yys2828) + } // end switch yys2828 + } // end for yyj2828 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35899,16 +36510,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2787 int - var yyb2787 bool - var yyhl2787 bool = l >= 0 - yyj2787++ - if yyhl2787 { - yyb2787 = yyj2787 > l + var yyj2830 int + var yyb2830 bool + var yyhl2830 bool = l >= 0 + yyj2830++ + if yyhl2830 { + yyb2830 = yyj2830 > l } else { - yyb2787 = r.CheckBreak() + yyb2830 = r.CheckBreak() } - if yyb2787 { + if yyb2830 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35919,17 +36530,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2787++ - if yyhl2787 { - yyb2787 = yyj2787 > l + yyj2830++ + if yyhl2830 { + yyb2830 = yyj2830 > l } else { - yyb2787 = r.CheckBreak() + yyb2830 = r.CheckBreak() } - if yyb2787 { + if yyb2830 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2787-1, "") + z.DecStructFieldNotFound(yyj2830-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35941,48 +36552,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2789 := z.EncBinary() - _ = yym2789 + yym2832 := z.EncBinary() + _ = yym2832 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2790 := !z.EncBinary() - yy2arr2790 := z.EncBasicHandle().StructToArray - var yyq2790 [1]bool - _, _, _ = yysep2790, yyq2790, yy2arr2790 - const yyr2790 bool = false - yyq2790[0] = true - var yynn2790 int - if yyr2790 || yy2arr2790 { + yysep2833 := !z.EncBinary() + yy2arr2833 := z.EncBasicHandle().StructToArray + var yyq2833 [1]bool + _, _, _ = yysep2833, yyq2833, yy2arr2833 + const yyr2833 bool = false + yyq2833[0] = true + var yynn2833 int + if yyr2833 || yy2arr2833 { r.EncodeArrayStart(1) } else { - yynn2790 = 0 - for _, b := range yyq2790 { + yynn2833 = 0 + for _, b := range yyq2833 { if b { - yynn2790++ + yynn2833++ } } - r.EncodeMapStart(yynn2790) - yynn2790 = 0 + r.EncodeMapStart(yynn2833) + yynn2833 = 0 } - if yyr2790 || yy2arr2790 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2790[0] { - yy2792 := &x.KubeletEndpoint - yy2792.CodecEncodeSelf(e) + if yyq2833[0] { + yy2835 := &x.KubeletEndpoint + yy2835.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2790[0] { + if yyq2833[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2793 := &x.KubeletEndpoint - yy2793.CodecEncodeSelf(e) + yy2836 := &x.KubeletEndpoint + yy2836.CodecEncodeSelf(e) } } - if yyr2790 || yy2arr2790 { + if yyr2833 || yy2arr2833 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35995,25 +36606,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2794 := z.DecBinary() - _ = yym2794 + yym2837 := z.DecBinary() + _ = yym2837 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2795 := r.ContainerType() - if yyct2795 == codecSelferValueTypeMap1234 { - yyl2795 := r.ReadMapStart() - if yyl2795 == 0 { + yyct2838 := r.ContainerType() + if yyct2838 == codecSelferValueTypeMap1234 { + yyl2838 := r.ReadMapStart() + if yyl2838 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2795, d) + x.codecDecodeSelfFromMap(yyl2838, d) } - } else if yyct2795 == codecSelferValueTypeArray1234 { - yyl2795 := r.ReadArrayStart() - if yyl2795 == 0 { + } else if yyct2838 == codecSelferValueTypeArray1234 { + yyl2838 := r.ReadArrayStart() + if yyl2838 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2795, d) + x.codecDecodeSelfFromArray(yyl2838, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36025,12 +36636,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2796Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2796Slc - var yyhl2796 bool = l >= 0 - for yyj2796 := 0; ; yyj2796++ { - if yyhl2796 { - if yyj2796 >= 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 { @@ -36039,21 +36650,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2796Slc = r.DecodeBytes(yys2796Slc, true, true) - yys2796 := string(yys2796Slc) + yys2839Slc = r.DecodeBytes(yys2839Slc, true, true) + yys2839 := string(yys2839Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2796 { + switch yys2839 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2797 := &x.KubeletEndpoint - yyv2797.CodecDecodeSelf(d) + yyv2840 := &x.KubeletEndpoint + yyv2840.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2796) - } // end switch yys2796 - } // end for yyj2796 + z.DecStructFieldNotFound(-1, yys2839) + } // end switch yys2839 + } // end for yyj2839 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36061,16 +36672,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2798 int - var yyb2798 bool - var yyhl2798 bool = l >= 0 - yyj2798++ - if yyhl2798 { - yyb2798 = yyj2798 > l + var yyj2841 int + var yyb2841 bool + var yyhl2841 bool = l >= 0 + yyj2841++ + if yyhl2841 { + yyb2841 = yyj2841 > l } else { - yyb2798 = r.CheckBreak() + yyb2841 = r.CheckBreak() } - if yyb2798 { + if yyb2841 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36078,21 +36689,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2799 := &x.KubeletEndpoint - yyv2799.CodecDecodeSelf(d) + yyv2842 := &x.KubeletEndpoint + yyv2842.CodecDecodeSelf(d) } for { - yyj2798++ - if yyhl2798 { - yyb2798 = yyj2798 > l + yyj2841++ + if yyhl2841 { + yyb2841 = yyj2841 > l } else { - yyb2798 = r.CheckBreak() + yyb2841 = r.CheckBreak() } - if yyb2798 { + if yyb2841 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2798-1, "") + z.DecStructFieldNotFound(yyj2841-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36104,33 +36715,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2800 := z.EncBinary() - _ = yym2800 + yym2843 := z.EncBinary() + _ = yym2843 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2801 := !z.EncBinary() - yy2arr2801 := z.EncBasicHandle().StructToArray - var yyq2801 [10]bool - _, _, _ = yysep2801, yyq2801, yy2arr2801 - const yyr2801 bool = false - var yynn2801 int - if yyr2801 || yy2arr2801 { + yysep2844 := !z.EncBinary() + yy2arr2844 := z.EncBasicHandle().StructToArray + var yyq2844 [10]bool + _, _, _ = yysep2844, yyq2844, yy2arr2844 + const yyr2844 bool = false + var yynn2844 int + if yyr2844 || yy2arr2844 { r.EncodeArrayStart(10) } else { - yynn2801 = 10 - for _, b := range yyq2801 { + yynn2844 = 10 + for _, b := range yyq2844 { if b { - yynn2801++ + yynn2844++ } } - r.EncodeMapStart(yynn2801) - yynn2801 = 0 + r.EncodeMapStart(yynn2844) + yynn2844 = 0 } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2803 := z.EncBinary() - _ = yym2803 + yym2846 := z.EncBinary() + _ = yym2846 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -36139,17 +36750,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2804 := z.EncBinary() - _ = yym2804 + yym2847 := z.EncBinary() + _ = yym2847 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2806 := z.EncBinary() - _ = yym2806 + yym2849 := z.EncBinary() + _ = yym2849 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -36158,17 +36769,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2807 := z.EncBinary() - _ = yym2807 + yym2850 := z.EncBinary() + _ = yym2850 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2809 := z.EncBinary() - _ = yym2809 + yym2852 := z.EncBinary() + _ = yym2852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -36177,17 +36788,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2810 := z.EncBinary() - _ = yym2810 + yym2853 := z.EncBinary() + _ = yym2853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2812 := z.EncBinary() - _ = yym2812 + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -36196,17 +36807,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2813 := z.EncBinary() - _ = yym2813 + yym2856 := z.EncBinary() + _ = yym2856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2815 := z.EncBinary() - _ = yym2815 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -36215,17 +36826,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2816 := z.EncBinary() - _ = yym2816 + yym2859 := z.EncBinary() + _ = yym2859 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2818 := z.EncBinary() - _ = yym2818 + yym2861 := z.EncBinary() + _ = yym2861 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36234,17 +36845,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2819 := z.EncBinary() - _ = yym2819 + yym2862 := z.EncBinary() + _ = yym2862 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2821 := z.EncBinary() - _ = yym2821 + yym2864 := z.EncBinary() + _ = yym2864 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -36253,17 +36864,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2822 := z.EncBinary() - _ = yym2822 + yym2865 := z.EncBinary() + _ = yym2865 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2824 := z.EncBinary() - _ = yym2824 + yym2867 := z.EncBinary() + _ = yym2867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -36272,17 +36883,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2825 := z.EncBinary() - _ = yym2825 + yym2868 := z.EncBinary() + _ = yym2868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2827 := z.EncBinary() - _ = yym2827 + yym2870 := z.EncBinary() + _ = yym2870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -36291,17 +36902,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2828 := z.EncBinary() - _ = yym2828 + yym2871 := z.EncBinary() + _ = yym2871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2830 := z.EncBinary() - _ = yym2830 + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -36310,14 +36921,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2831 := z.EncBinary() - _ = yym2831 + yym2874 := z.EncBinary() + _ = yym2874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2801 || yy2arr2801 { + if yyr2844 || yy2arr2844 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36330,25 +36941,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2832 := z.DecBinary() - _ = yym2832 + yym2875 := z.DecBinary() + _ = yym2875 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2833 := r.ContainerType() - if yyct2833 == codecSelferValueTypeMap1234 { - yyl2833 := r.ReadMapStart() - if yyl2833 == 0 { + yyct2876 := r.ContainerType() + if yyct2876 == codecSelferValueTypeMap1234 { + yyl2876 := r.ReadMapStart() + if yyl2876 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2833, d) + x.codecDecodeSelfFromMap(yyl2876, d) } - } else if yyct2833 == codecSelferValueTypeArray1234 { - yyl2833 := r.ReadArrayStart() - if yyl2833 == 0 { + } else if yyct2876 == codecSelferValueTypeArray1234 { + yyl2876 := r.ReadArrayStart() + if yyl2876 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2833, d) + x.codecDecodeSelfFromArray(yyl2876, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36360,12 +36971,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2834Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2834Slc - var yyhl2834 bool = l >= 0 - for yyj2834 := 0; ; yyj2834++ { - if yyhl2834 { - if yyj2834 >= l { + var yys2877Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2877Slc + var yyhl2877 bool = l >= 0 + for yyj2877 := 0; ; yyj2877++ { + if yyhl2877 { + if yyj2877 >= l { break } } else { @@ -36374,10 +36985,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2834Slc = r.DecodeBytes(yys2834Slc, true, true) - yys2834 := string(yys2834Slc) + yys2877Slc = r.DecodeBytes(yys2877Slc, true, true) + yys2877 := string(yys2877Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2834 { + switch yys2877 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -36439,9 +37050,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2834) - } // end switch yys2834 - } // end for yyj2834 + z.DecStructFieldNotFound(-1, yys2877) + } // end switch yys2877 + } // end for yyj2877 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36449,16 +37060,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2845 int - var yyb2845 bool - var yyhl2845 bool = l >= 0 - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + var yyj2888 int + var yyb2888 bool + var yyhl2888 bool = l >= 0 + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36468,13 +37079,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36484,13 +37095,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36500,13 +37111,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36516,13 +37127,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36532,13 +37143,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36548,13 +37159,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36564,13 +37175,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36580,13 +37191,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36596,13 +37207,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36613,17 +37224,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2845 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2845 { + if yyb2888 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2845-1, "") + z.DecStructFieldNotFound(yyj2888-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36635,42 +37246,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2856 := z.EncBinary() - _ = yym2856 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2857 := !z.EncBinary() - yy2arr2857 := z.EncBasicHandle().StructToArray - var yyq2857 [10]bool - _, _, _ = yysep2857, yyq2857, yy2arr2857 - const yyr2857 bool = false - yyq2857[0] = len(x.Capacity) != 0 - yyq2857[1] = len(x.Allocatable) != 0 - yyq2857[2] = x.Phase != "" - yyq2857[3] = len(x.Conditions) != 0 - yyq2857[4] = len(x.Addresses) != 0 - yyq2857[5] = true - yyq2857[6] = true - yyq2857[7] = len(x.Images) != 0 - yyq2857[8] = len(x.VolumesInUse) != 0 - yyq2857[9] = len(x.VolumesAttached) != 0 - var yynn2857 int - if yyr2857 || yy2arr2857 { + yysep2900 := !z.EncBinary() + yy2arr2900 := z.EncBasicHandle().StructToArray + var yyq2900 [10]bool + _, _, _ = yysep2900, yyq2900, yy2arr2900 + const yyr2900 bool = false + yyq2900[0] = len(x.Capacity) != 0 + yyq2900[1] = len(x.Allocatable) != 0 + yyq2900[2] = x.Phase != "" + yyq2900[3] = len(x.Conditions) != 0 + yyq2900[4] = len(x.Addresses) != 0 + yyq2900[5] = true + yyq2900[6] = true + yyq2900[7] = len(x.Images) != 0 + yyq2900[8] = len(x.VolumesInUse) != 0 + yyq2900[9] = len(x.VolumesAttached) != 0 + var yynn2900 int + if yyr2900 || yy2arr2900 { r.EncodeArrayStart(10) } else { - yynn2857 = 0 - for _, b := range yyq2857 { + yynn2900 = 0 + for _, b := range yyq2900 { if b { - yynn2857++ + yynn2900++ } } - r.EncodeMapStart(yynn2857) - yynn2857 = 0 + r.EncodeMapStart(yynn2900) + yynn2900 = 0 } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[0] { + if yyq2900[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -36680,7 +37291,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[0] { + if yyq2900[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36691,9 +37302,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[1] { + if yyq2900[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -36703,7 +37314,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[1] { + if yyq2900[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36714,29 +37325,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[2] { + if yyq2900[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2857[2] { + if yyq2900[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[3] { + if yyq2900[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2862 := z.EncBinary() - _ = yym2862 + yym2905 := z.EncBinary() + _ = yym2905 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36746,15 +37357,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[3] { + if yyq2900[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2863 := z.EncBinary() - _ = yym2863 + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36762,14 +37373,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[4] { + if yyq2900[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2865 := z.EncBinary() - _ = yym2865 + yym2908 := z.EncBinary() + _ = yym2908 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36779,15 +37390,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[4] { + if yyq2900[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2866 := z.EncBinary() - _ = yym2866 + yym2909 := z.EncBinary() + _ = yym2909 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36795,48 +37406,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[5] { - yy2868 := &x.DaemonEndpoints - yy2868.CodecEncodeSelf(e) + if yyq2900[5] { + yy2911 := &x.DaemonEndpoints + yy2911.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2857[5] { + if yyq2900[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2869 := &x.DaemonEndpoints - yy2869.CodecEncodeSelf(e) + yy2912 := &x.DaemonEndpoints + yy2912.CodecEncodeSelf(e) } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[6] { - yy2871 := &x.NodeInfo - yy2871.CodecEncodeSelf(e) + if yyq2900[6] { + yy2914 := &x.NodeInfo + yy2914.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2857[6] { + if yyq2900[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2872 := &x.NodeInfo - yy2872.CodecEncodeSelf(e) + yy2915 := &x.NodeInfo + yy2915.CodecEncodeSelf(e) } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[7] { + if yyq2900[7] { if x.Images == nil { r.EncodeNil() } else { - yym2874 := z.EncBinary() - _ = yym2874 + yym2917 := z.EncBinary() + _ = yym2917 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36846,15 +37457,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[7] { + if yyq2900[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2875 := z.EncBinary() - _ = yym2875 + yym2918 := z.EncBinary() + _ = yym2918 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36862,14 +37473,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[8] { + if yyq2900[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2877 := z.EncBinary() - _ = yym2877 + yym2920 := z.EncBinary() + _ = yym2920 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36879,15 +37490,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[8] { + if yyq2900[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2878 := z.EncBinary() - _ = yym2878 + yym2921 := z.EncBinary() + _ = yym2921 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36895,14 +37506,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2857[9] { + if yyq2900[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2880 := z.EncBinary() - _ = yym2880 + yym2923 := z.EncBinary() + _ = yym2923 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36912,15 +37523,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2857[9] { + if yyq2900[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2881 := z.EncBinary() - _ = yym2881 + yym2924 := z.EncBinary() + _ = yym2924 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36928,7 +37539,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2857 || yy2arr2857 { + if yyr2900 || yy2arr2900 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36941,25 +37552,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2882 := z.DecBinary() - _ = yym2882 + yym2925 := z.DecBinary() + _ = yym2925 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2883 := r.ContainerType() - if yyct2883 == codecSelferValueTypeMap1234 { - yyl2883 := r.ReadMapStart() - if yyl2883 == 0 { + yyct2926 := r.ContainerType() + if yyct2926 == codecSelferValueTypeMap1234 { + yyl2926 := r.ReadMapStart() + if yyl2926 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2883, d) + x.codecDecodeSelfFromMap(yyl2926, d) } - } else if yyct2883 == codecSelferValueTypeArray1234 { - yyl2883 := r.ReadArrayStart() - if yyl2883 == 0 { + } else if yyct2926 == codecSelferValueTypeArray1234 { + yyl2926 := r.ReadArrayStart() + if yyl2926 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2883, d) + x.codecDecodeSelfFromArray(yyl2926, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36971,12 +37582,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2884Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2884Slc - var yyhl2884 bool = l >= 0 - for yyj2884 := 0; ; yyj2884++ { - if yyhl2884 { - if yyj2884 >= l { + var yys2927Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2927Slc + var yyhl2927 bool = l >= 0 + for yyj2927 := 0; ; yyj2927++ { + if yyhl2927 { + if yyj2927 >= l { break } } else { @@ -36985,23 +37596,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2884Slc = r.DecodeBytes(yys2884Slc, true, true) - yys2884 := string(yys2884Slc) + yys2927Slc = r.DecodeBytes(yys2927Slc, true, true) + yys2927 := string(yys2927Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2884 { + switch yys2927 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2885 := &x.Capacity - yyv2885.CodecDecodeSelf(d) + yyv2928 := &x.Capacity + yyv2928.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2886 := &x.Allocatable - yyv2886.CodecDecodeSelf(d) + yyv2929 := &x.Allocatable + yyv2929.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -37013,80 +37624,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2888 := &x.Conditions - yym2889 := z.DecBinary() - _ = yym2889 + yyv2931 := &x.Conditions + yym2932 := z.DecBinary() + _ = yym2932 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2888), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2931), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2890 := &x.Addresses - yym2891 := z.DecBinary() - _ = yym2891 + yyv2933 := &x.Addresses + yym2934 := z.DecBinary() + _ = yym2934 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2890), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2933), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2892 := &x.DaemonEndpoints - yyv2892.CodecDecodeSelf(d) + yyv2935 := &x.DaemonEndpoints + yyv2935.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2893 := &x.NodeInfo - yyv2893.CodecDecodeSelf(d) + yyv2936 := &x.NodeInfo + yyv2936.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2894 := &x.Images - yym2895 := z.DecBinary() - _ = yym2895 + yyv2937 := &x.Images + yym2938 := z.DecBinary() + _ = yym2938 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2894), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2937), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2896 := &x.VolumesInUse - yym2897 := z.DecBinary() - _ = yym2897 + yyv2939 := &x.VolumesInUse + yym2940 := z.DecBinary() + _ = yym2940 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2896), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2939), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2898 := &x.VolumesAttached - yym2899 := z.DecBinary() - _ = yym2899 + yyv2941 := &x.VolumesAttached + yym2942 := z.DecBinary() + _ = yym2942 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2898), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2941), d) } } default: - z.DecStructFieldNotFound(-1, yys2884) - } // end switch yys2884 - } // end for yyj2884 + z.DecStructFieldNotFound(-1, yys2927) + } // end switch yys2927 + } // end for yyj2927 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37094,16 +37705,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2900 int - var yyb2900 bool - var yyhl2900 bool = l >= 0 - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + var yyj2943 int + var yyb2943 bool + var yyhl2943 bool = l >= 0 + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37111,16 +37722,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2901 := &x.Capacity - yyv2901.CodecDecodeSelf(d) + yyv2944 := &x.Capacity + yyv2944.CodecDecodeSelf(d) } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37128,16 +37739,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2902 := &x.Allocatable - yyv2902.CodecDecodeSelf(d) + yyv2945 := &x.Allocatable + yyv2945.CodecDecodeSelf(d) } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37147,13 +37758,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37161,21 +37772,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2904 := &x.Conditions - yym2905 := z.DecBinary() - _ = yym2905 + yyv2947 := &x.Conditions + yym2948 := z.DecBinary() + _ = yym2948 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2904), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2947), d) } } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37183,21 +37794,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2906 := &x.Addresses - yym2907 := z.DecBinary() - _ = yym2907 + yyv2949 := &x.Addresses + yym2950 := z.DecBinary() + _ = yym2950 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2906), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2949), d) } } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37205,16 +37816,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2908 := &x.DaemonEndpoints - yyv2908.CodecDecodeSelf(d) + yyv2951 := &x.DaemonEndpoints + yyv2951.CodecDecodeSelf(d) } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37222,16 +37833,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2909 := &x.NodeInfo - yyv2909.CodecDecodeSelf(d) + yyv2952 := &x.NodeInfo + yyv2952.CodecDecodeSelf(d) } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37239,21 +37850,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2910 := &x.Images - yym2911 := z.DecBinary() - _ = yym2911 + yyv2953 := &x.Images + yym2954 := z.DecBinary() + _ = yym2954 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2910), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2953), d) } } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37261,21 +37872,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2912 := &x.VolumesInUse - yym2913 := z.DecBinary() - _ = yym2913 + yyv2955 := &x.VolumesInUse + yym2956 := z.DecBinary() + _ = yym2956 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2912), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2955), d) } } - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37283,26 +37894,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2914 := &x.VolumesAttached - yym2915 := z.DecBinary() - _ = yym2915 + yyv2957 := &x.VolumesAttached + yym2958 := z.DecBinary() + _ = yym2958 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2914), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2957), d) } } for { - yyj2900++ - if yyhl2900 { - yyb2900 = yyj2900 > l + yyj2943++ + if yyhl2943 { + yyb2943 = yyj2943 > l } else { - yyb2900 = r.CheckBreak() + yyb2943 = r.CheckBreak() } - if yyb2900 { + if yyb2943 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2900-1, "") + z.DecStructFieldNotFound(yyj2943-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37311,8 +37922,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2916 := z.EncBinary() - _ = yym2916 + yym2959 := z.EncBinary() + _ = yym2959 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37324,8 +37935,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2917 := z.DecBinary() - _ = yym2917 + yym2960 := z.DecBinary() + _ = yym2960 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37340,30 +37951,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2918 := z.EncBinary() - _ = yym2918 + yym2961 := z.EncBinary() + _ = yym2961 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2919 := !z.EncBinary() - yy2arr2919 := z.EncBasicHandle().StructToArray - var yyq2919 [2]bool - _, _, _ = yysep2919, yyq2919, yy2arr2919 - const yyr2919 bool = false - var yynn2919 int - if yyr2919 || yy2arr2919 { + yysep2962 := !z.EncBinary() + yy2arr2962 := z.EncBasicHandle().StructToArray + var yyq2962 [2]bool + _, _, _ = yysep2962, yyq2962, yy2arr2962 + const yyr2962 bool = false + var yynn2962 int + if yyr2962 || yy2arr2962 { r.EncodeArrayStart(2) } else { - yynn2919 = 2 - for _, b := range yyq2919 { + yynn2962 = 2 + for _, b := range yyq2962 { if b { - yynn2919++ + yynn2962++ } } - r.EncodeMapStart(yynn2919) - yynn2919 = 0 + r.EncodeMapStart(yynn2962) + yynn2962 = 0 } - if yyr2919 || yy2arr2919 { + if yyr2962 || yy2arr2962 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37372,10 +37983,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2919 || yy2arr2919 { + if yyr2962 || yy2arr2962 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2922 := z.EncBinary() - _ = yym2922 + yym2965 := z.EncBinary() + _ = yym2965 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37384,14 +37995,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2923 := z.EncBinary() - _ = yym2923 + yym2966 := z.EncBinary() + _ = yym2966 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2919 || yy2arr2919 { + if yyr2962 || yy2arr2962 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37404,25 +38015,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2924 := z.DecBinary() - _ = yym2924 + yym2967 := z.DecBinary() + _ = yym2967 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2925 := r.ContainerType() - if yyct2925 == codecSelferValueTypeMap1234 { - yyl2925 := r.ReadMapStart() - if yyl2925 == 0 { + yyct2968 := r.ContainerType() + if yyct2968 == codecSelferValueTypeMap1234 { + yyl2968 := r.ReadMapStart() + if yyl2968 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2925, d) + x.codecDecodeSelfFromMap(yyl2968, d) } - } else if yyct2925 == codecSelferValueTypeArray1234 { - yyl2925 := r.ReadArrayStart() - if yyl2925 == 0 { + } else if yyct2968 == codecSelferValueTypeArray1234 { + yyl2968 := r.ReadArrayStart() + if yyl2968 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2925, d) + x.codecDecodeSelfFromArray(yyl2968, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37434,12 +38045,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2926Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2926Slc - var yyhl2926 bool = l >= 0 - for yyj2926 := 0; ; yyj2926++ { - if yyhl2926 { - if yyj2926 >= l { + var yys2969Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2969Slc + var yyhl2969 bool = l >= 0 + for yyj2969 := 0; ; yyj2969++ { + if yyhl2969 { + if yyj2969 >= l { break } } else { @@ -37448,10 +38059,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2926Slc = r.DecodeBytes(yys2926Slc, true, true) - yys2926 := string(yys2926Slc) + yys2969Slc = r.DecodeBytes(yys2969Slc, true, true) + yys2969 := string(yys2969Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2926 { + switch yys2969 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37465,9 +38076,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2926) - } // end switch yys2926 - } // end for yyj2926 + z.DecStructFieldNotFound(-1, yys2969) + } // end switch yys2969 + } // end for yyj2969 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37475,16 +38086,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2929 int - var yyb2929 bool - var yyhl2929 bool = l >= 0 - yyj2929++ - if yyhl2929 { - yyb2929 = yyj2929 > l + var yyj2972 int + var yyb2972 bool + var yyhl2972 bool = l >= 0 + yyj2972++ + if yyhl2972 { + yyb2972 = yyj2972 > l } else { - yyb2929 = r.CheckBreak() + yyb2972 = r.CheckBreak() } - if yyb2929 { + if yyb2972 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37494,13 +38105,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2929++ - if yyhl2929 { - yyb2929 = yyj2929 > l + yyj2972++ + if yyhl2972 { + yyb2972 = yyj2972 > l } else { - yyb2929 = r.CheckBreak() + yyb2972 = r.CheckBreak() } - if yyb2929 { + if yyb2972 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37511,17 +38122,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2929++ - if yyhl2929 { - yyb2929 = yyj2929 > l + yyj2972++ + if yyhl2972 { + yyb2972 = yyj2972 > l } else { - yyb2929 = r.CheckBreak() + yyb2972 = r.CheckBreak() } - if yyb2929 { + if yyb2972 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2929-1, "") + z.DecStructFieldNotFound(yyj2972-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37533,38 +38144,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2932 := z.EncBinary() - _ = yym2932 + yym2975 := z.EncBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2933 := !z.EncBinary() - yy2arr2933 := z.EncBasicHandle().StructToArray - var yyq2933 [1]bool - _, _, _ = yysep2933, yyq2933, yy2arr2933 - const yyr2933 bool = false - yyq2933[0] = len(x.PreferAvoidPods) != 0 - var yynn2933 int - if yyr2933 || yy2arr2933 { + yysep2976 := !z.EncBinary() + yy2arr2976 := z.EncBasicHandle().StructToArray + var yyq2976 [1]bool + _, _, _ = yysep2976, yyq2976, yy2arr2976 + const yyr2976 bool = false + yyq2976[0] = len(x.PreferAvoidPods) != 0 + var yynn2976 int + if yyr2976 || yy2arr2976 { r.EncodeArrayStart(1) } else { - yynn2933 = 0 - for _, b := range yyq2933 { + yynn2976 = 0 + for _, b := range yyq2976 { if b { - yynn2933++ + yynn2976++ } } - r.EncodeMapStart(yynn2933) - yynn2933 = 0 + r.EncodeMapStart(yynn2976) + yynn2976 = 0 } - if yyr2933 || yy2arr2933 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2933[0] { + if yyq2976[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2935 := z.EncBinary() - _ = yym2935 + yym2978 := z.EncBinary() + _ = yym2978 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37574,15 +38185,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2933[0] { + if yyq2976[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2936 := z.EncBinary() - _ = yym2936 + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37590,7 +38201,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2933 || yy2arr2933 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37603,25 +38214,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2937 := z.DecBinary() - _ = yym2937 + yym2980 := z.DecBinary() + _ = yym2980 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2938 := r.ContainerType() - if yyct2938 == codecSelferValueTypeMap1234 { - yyl2938 := r.ReadMapStart() - if yyl2938 == 0 { + yyct2981 := r.ContainerType() + if yyct2981 == codecSelferValueTypeMap1234 { + yyl2981 := r.ReadMapStart() + if yyl2981 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2938, d) + x.codecDecodeSelfFromMap(yyl2981, d) } - } else if yyct2938 == codecSelferValueTypeArray1234 { - yyl2938 := r.ReadArrayStart() - if yyl2938 == 0 { + } else if yyct2981 == codecSelferValueTypeArray1234 { + yyl2981 := r.ReadArrayStart() + if yyl2981 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2938, d) + x.codecDecodeSelfFromArray(yyl2981, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37633,12 +38244,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2939Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2939Slc - var yyhl2939 bool = l >= 0 - for yyj2939 := 0; ; yyj2939++ { - if yyhl2939 { - if yyj2939 >= l { + var yys2982Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2982Slc + var yyhl2982 bool = l >= 0 + for yyj2982 := 0; ; yyj2982++ { + if yyhl2982 { + if yyj2982 >= l { break } } else { @@ -37647,26 +38258,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2939Slc = r.DecodeBytes(yys2939Slc, true, true) - yys2939 := string(yys2939Slc) + yys2982Slc = r.DecodeBytes(yys2982Slc, true, true) + yys2982 := string(yys2982Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2939 { + switch yys2982 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2940 := &x.PreferAvoidPods - yym2941 := z.DecBinary() - _ = yym2941 + yyv2983 := &x.PreferAvoidPods + yym2984 := z.DecBinary() + _ = yym2984 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2940), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2983), d) } } default: - z.DecStructFieldNotFound(-1, yys2939) - } // end switch yys2939 - } // end for yyj2939 + z.DecStructFieldNotFound(-1, yys2982) + } // end switch yys2982 + } // end for yyj2982 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37674,16 +38285,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2942 int - var yyb2942 bool - var yyhl2942 bool = l >= 0 - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + var yyj2985 int + var yyb2985 bool + var yyhl2985 bool = l >= 0 + yyj2985++ + if yyhl2985 { + yyb2985 = yyj2985 > l } else { - yyb2942 = r.CheckBreak() + yyb2985 = r.CheckBreak() } - if yyb2942 { + if yyb2985 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37691,26 +38302,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2943 := &x.PreferAvoidPods - yym2944 := z.DecBinary() - _ = yym2944 + yyv2986 := &x.PreferAvoidPods + yym2987 := z.DecBinary() + _ = yym2987 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2943), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2986), d) } } for { - yyj2942++ - if yyhl2942 { - yyb2942 = yyj2942 > l + yyj2985++ + if yyhl2985 { + yyb2985 = yyj2985 > l } else { - yyb2942 = r.CheckBreak() + yyb2985 = r.CheckBreak() } - if yyb2942 { + if yyb2985 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2942-1, "") + z.DecStructFieldNotFound(yyj2985-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37722,85 +38333,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2945 := z.EncBinary() - _ = yym2945 + yym2988 := z.EncBinary() + _ = yym2988 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2946 := !z.EncBinary() - yy2arr2946 := z.EncBasicHandle().StructToArray - var yyq2946 [4]bool - _, _, _ = yysep2946, yyq2946, yy2arr2946 - const yyr2946 bool = false - yyq2946[1] = true - yyq2946[2] = x.Reason != "" - yyq2946[3] = x.Message != "" - var yynn2946 int - if yyr2946 || yy2arr2946 { + yysep2989 := !z.EncBinary() + yy2arr2989 := z.EncBasicHandle().StructToArray + var yyq2989 [4]bool + _, _, _ = yysep2989, yyq2989, yy2arr2989 + const yyr2989 bool = false + yyq2989[1] = true + yyq2989[2] = x.Reason != "" + yyq2989[3] = x.Message != "" + var yynn2989 int + if yyr2989 || yy2arr2989 { r.EncodeArrayStart(4) } else { - yynn2946 = 1 - for _, b := range yyq2946 { + yynn2989 = 1 + for _, b := range yyq2989 { if b { - yynn2946++ + yynn2989++ } } - r.EncodeMapStart(yynn2946) - yynn2946 = 0 + r.EncodeMapStart(yynn2989) + yynn2989 = 0 } - if yyr2946 || yy2arr2946 { + if yyr2989 || yy2arr2989 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2948 := &x.PodSignature - yy2948.CodecEncodeSelf(e) + yy2991 := &x.PodSignature + yy2991.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2949 := &x.PodSignature - yy2949.CodecEncodeSelf(e) + yy2992 := &x.PodSignature + yy2992.CodecEncodeSelf(e) } - if yyr2946 || yy2arr2946 { + if yyr2989 || yy2arr2989 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2946[1] { - yy2951 := &x.EvictionTime - yym2952 := z.EncBinary() - _ = yym2952 + if yyq2989[1] { + yy2994 := &x.EvictionTime + yym2995 := z.EncBinary() + _ = yym2995 if false { - } else if z.HasExtensions() && z.EncExt(yy2951) { - } else if yym2952 { - z.EncBinaryMarshal(yy2951) - } else if !yym2952 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2951) + } else if z.HasExtensions() && z.EncExt(yy2994) { + } else if yym2995 { + z.EncBinaryMarshal(yy2994) + } else if !yym2995 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2994) } else { - z.EncFallback(yy2951) + z.EncFallback(yy2994) } } else { r.EncodeNil() } } else { - if yyq2946[1] { + if yyq2989[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2953 := &x.EvictionTime - yym2954 := z.EncBinary() - _ = yym2954 + yy2996 := &x.EvictionTime + yym2997 := z.EncBinary() + _ = yym2997 if false { - } else if z.HasExtensions() && z.EncExt(yy2953) { - } else if yym2954 { - z.EncBinaryMarshal(yy2953) - } else if !yym2954 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2953) + } else if z.HasExtensions() && z.EncExt(yy2996) { + } else if yym2997 { + z.EncBinaryMarshal(yy2996) + } else if !yym2997 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2996) } else { - z.EncFallback(yy2953) + z.EncFallback(yy2996) } } } - if yyr2946 || yy2arr2946 { + if yyr2989 || yy2arr2989 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2946[2] { - yym2956 := z.EncBinary() - _ = yym2956 + if yyq2989[2] { + yym2999 := z.EncBinary() + _ = yym2999 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -37809,23 +38420,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2946[2] { + if yyq2989[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2957 := z.EncBinary() - _ = yym2957 + yym3000 := z.EncBinary() + _ = yym3000 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2946 || yy2arr2946 { + if yyr2989 || yy2arr2989 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2946[3] { - yym2959 := z.EncBinary() - _ = yym2959 + if yyq2989[3] { + yym3002 := z.EncBinary() + _ = yym3002 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -37834,19 +38445,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2946[3] { + if yyq2989[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2960 := z.EncBinary() - _ = yym2960 + yym3003 := z.EncBinary() + _ = yym3003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2946 || yy2arr2946 { + if yyr2989 || yy2arr2989 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37859,25 +38470,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2961 := z.DecBinary() - _ = yym2961 + yym3004 := z.DecBinary() + _ = yym3004 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2962 := r.ContainerType() - if yyct2962 == codecSelferValueTypeMap1234 { - yyl2962 := r.ReadMapStart() - if yyl2962 == 0 { + yyct3005 := r.ContainerType() + if yyct3005 == codecSelferValueTypeMap1234 { + yyl3005 := r.ReadMapStart() + if yyl3005 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2962, d) + x.codecDecodeSelfFromMap(yyl3005, d) } - } else if yyct2962 == codecSelferValueTypeArray1234 { - yyl2962 := r.ReadArrayStart() - if yyl2962 == 0 { + } else if yyct3005 == codecSelferValueTypeArray1234 { + yyl3005 := r.ReadArrayStart() + if yyl3005 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2962, d) + x.codecDecodeSelfFromArray(yyl3005, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37889,12 +38500,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2963Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2963Slc - var yyhl2963 bool = l >= 0 - for yyj2963 := 0; ; yyj2963++ { - if yyhl2963 { - if yyj2963 >= l { + var yys3006Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3006Slc + var yyhl3006 bool = l >= 0 + for yyj3006 := 0; ; yyj3006++ { + if yyhl3006 { + if yyj3006 >= l { break } } else { @@ -37903,32 +38514,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2963Slc = r.DecodeBytes(yys2963Slc, true, true) - yys2963 := string(yys2963Slc) + yys3006Slc = r.DecodeBytes(yys3006Slc, true, true) + yys3006 := string(yys3006Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2963 { + switch yys3006 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2964 := &x.PodSignature - yyv2964.CodecDecodeSelf(d) + yyv3007 := &x.PodSignature + yyv3007.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2965 := &x.EvictionTime - yym2966 := z.DecBinary() - _ = yym2966 + yyv3008 := &x.EvictionTime + yym3009 := z.DecBinary() + _ = yym3009 if false { - } else if z.HasExtensions() && z.DecExt(yyv2965) { - } else if yym2966 { - z.DecBinaryUnmarshal(yyv2965) - } else if !yym2966 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2965) + } else if z.HasExtensions() && z.DecExt(yyv3008) { + } else if yym3009 { + z.DecBinaryUnmarshal(yyv3008) + } else if !yym3009 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3008) } else { - z.DecFallback(yyv2965, false) + z.DecFallback(yyv3008, false) } } case "reason": @@ -37944,9 +38555,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2963) - } // end switch yys2963 - } // end for yyj2963 + z.DecStructFieldNotFound(-1, yys3006) + } // end switch yys3006 + } // end for yyj3006 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37954,16 +38565,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2969 int - var yyb2969 bool - var yyhl2969 bool = l >= 0 - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + var yyj3012 int + var yyb3012 bool + var yyhl3012 bool = l >= 0 + yyj3012++ + if yyhl3012 { + yyb3012 = yyj3012 > l } else { - yyb2969 = r.CheckBreak() + yyb3012 = r.CheckBreak() } - if yyb2969 { + if yyb3012 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37971,16 +38582,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2970 := &x.PodSignature - yyv2970.CodecDecodeSelf(d) + yyv3013 := &x.PodSignature + yyv3013.CodecDecodeSelf(d) } - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + yyj3012++ + if yyhl3012 { + yyb3012 = yyj3012 > l } else { - yyb2969 = r.CheckBreak() + yyb3012 = r.CheckBreak() } - if yyb2969 { + if yyb3012 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37988,26 +38599,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2971 := &x.EvictionTime - yym2972 := z.DecBinary() - _ = yym2972 + yyv3014 := &x.EvictionTime + yym3015 := z.DecBinary() + _ = yym3015 if false { - } else if z.HasExtensions() && z.DecExt(yyv2971) { - } else if yym2972 { - z.DecBinaryUnmarshal(yyv2971) - } else if !yym2972 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2971) + } else if z.HasExtensions() && z.DecExt(yyv3014) { + } else if yym3015 { + z.DecBinaryUnmarshal(yyv3014) + } else if !yym3015 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3014) } else { - z.DecFallback(yyv2971, false) + z.DecFallback(yyv3014, false) } } - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + yyj3012++ + if yyhl3012 { + yyb3012 = yyj3012 > l } else { - yyb2969 = r.CheckBreak() + yyb3012 = r.CheckBreak() } - if yyb2969 { + if yyb3012 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38017,13 +38628,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + yyj3012++ + if yyhl3012 { + yyb3012 = yyj3012 > l } else { - yyb2969 = r.CheckBreak() + yyb3012 = r.CheckBreak() } - if yyb2969 { + if yyb3012 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38034,17 +38645,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj2969++ - if yyhl2969 { - yyb2969 = yyj2969 > l + yyj3012++ + if yyhl3012 { + yyb3012 = yyj3012 > l } else { - yyb2969 = r.CheckBreak() + yyb3012 = r.CheckBreak() } - if yyb2969 { + if yyb3012 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2969-1, "") + z.DecStructFieldNotFound(yyj3012-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38056,33 +38667,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2975 := z.EncBinary() - _ = yym2975 + yym3018 := z.EncBinary() + _ = yym3018 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2976 := !z.EncBinary() - yy2arr2976 := z.EncBasicHandle().StructToArray - var yyq2976 [1]bool - _, _, _ = yysep2976, yyq2976, yy2arr2976 - const yyr2976 bool = false - yyq2976[0] = x.PodController != nil - var yynn2976 int - if yyr2976 || yy2arr2976 { + yysep3019 := !z.EncBinary() + yy2arr3019 := z.EncBasicHandle().StructToArray + var yyq3019 [1]bool + _, _, _ = yysep3019, yyq3019, yy2arr3019 + const yyr3019 bool = false + yyq3019[0] = x.PodController != nil + var yynn3019 int + if yyr3019 || yy2arr3019 { r.EncodeArrayStart(1) } else { - yynn2976 = 0 - for _, b := range yyq2976 { + yynn3019 = 0 + for _, b := range yyq3019 { if b { - yynn2976++ + yynn3019++ } } - r.EncodeMapStart(yynn2976) - yynn2976 = 0 + r.EncodeMapStart(yynn3019) + yynn3019 = 0 } - if yyr2976 || yy2arr2976 { + if yyr3019 || yy2arr3019 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2976[0] { + if yyq3019[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -38092,7 +38703,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2976[0] { + if yyq3019[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38103,7 +38714,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2976 || yy2arr2976 { + if yyr3019 || yy2arr3019 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38116,25 +38727,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2978 := z.DecBinary() - _ = yym2978 + yym3021 := z.DecBinary() + _ = yym3021 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2979 := r.ContainerType() - if yyct2979 == codecSelferValueTypeMap1234 { - yyl2979 := r.ReadMapStart() - if yyl2979 == 0 { + yyct3022 := r.ContainerType() + if yyct3022 == codecSelferValueTypeMap1234 { + yyl3022 := r.ReadMapStart() + if yyl3022 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2979, d) + x.codecDecodeSelfFromMap(yyl3022, d) } - } else if yyct2979 == codecSelferValueTypeArray1234 { - yyl2979 := r.ReadArrayStart() - if yyl2979 == 0 { + } else if yyct3022 == codecSelferValueTypeArray1234 { + yyl3022 := r.ReadArrayStart() + if yyl3022 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2979, d) + x.codecDecodeSelfFromArray(yyl3022, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38146,12 +38757,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2980Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2980Slc - var yyhl2980 bool = l >= 0 - for yyj2980 := 0; ; yyj2980++ { - if yyhl2980 { - if yyj2980 >= l { + var yys3023Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3023Slc + var yyhl3023 bool = l >= 0 + for yyj3023 := 0; ; yyj3023++ { + if yyhl3023 { + if yyj3023 >= l { break } } else { @@ -38160,10 +38771,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2980Slc = r.DecodeBytes(yys2980Slc, true, true) - yys2980 := string(yys2980Slc) + yys3023Slc = r.DecodeBytes(yys3023Slc, true, true) + yys3023 := string(yys3023Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2980 { + switch yys3023 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -38176,9 +38787,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2980) - } // end switch yys2980 - } // end for yyj2980 + z.DecStructFieldNotFound(-1, yys3023) + } // end switch yys3023 + } // end for yyj3023 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38186,16 +38797,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2982 int - var yyb2982 bool - var yyhl2982 bool = l >= 0 - yyj2982++ - if yyhl2982 { - yyb2982 = yyj2982 > l + var yyj3025 int + var yyb3025 bool + var yyhl3025 bool = l >= 0 + yyj3025++ + if yyhl3025 { + yyb3025 = yyj3025 > l } else { - yyb2982 = r.CheckBreak() + yyb3025 = r.CheckBreak() } - if yyb2982 { + if yyb3025 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38211,17 +38822,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj2982++ - if yyhl2982 { - yyb2982 = yyj2982 > l + yyj3025++ + if yyhl3025 { + yyb3025 = yyj3025 > l } else { - yyb2982 = r.CheckBreak() + yyb3025 = r.CheckBreak() } - if yyb2982 { + if yyb3025 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2982-1, "") + z.DecStructFieldNotFound(yyj3025-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38233,37 +38844,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2984 := z.EncBinary() - _ = yym2984 + yym3027 := z.EncBinary() + _ = yym3027 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2985 := !z.EncBinary() - yy2arr2985 := z.EncBasicHandle().StructToArray - var yyq2985 [2]bool - _, _, _ = yysep2985, yyq2985, yy2arr2985 - const yyr2985 bool = false - yyq2985[1] = x.SizeBytes != 0 - var yynn2985 int - if yyr2985 || yy2arr2985 { + yysep3028 := !z.EncBinary() + yy2arr3028 := z.EncBasicHandle().StructToArray + var yyq3028 [2]bool + _, _, _ = yysep3028, yyq3028, yy2arr3028 + const yyr3028 bool = false + yyq3028[1] = x.SizeBytes != 0 + var yynn3028 int + if yyr3028 || yy2arr3028 { r.EncodeArrayStart(2) } else { - yynn2985 = 1 - for _, b := range yyq2985 { + yynn3028 = 1 + for _, b := range yyq3028 { if b { - yynn2985++ + yynn3028++ } } - r.EncodeMapStart(yynn2985) - yynn2985 = 0 + r.EncodeMapStart(yynn3028) + yynn3028 = 0 } - if yyr2985 || yy2arr2985 { + if yyr3028 || yy2arr3028 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym2987 := z.EncBinary() - _ = yym2987 + yym3030 := z.EncBinary() + _ = yym3030 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -38276,19 +38887,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym2988 := z.EncBinary() - _ = yym2988 + yym3031 := z.EncBinary() + _ = yym3031 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr2985 || yy2arr2985 { + if yyr3028 || yy2arr3028 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2985[1] { - yym2990 := z.EncBinary() - _ = yym2990 + if yyq3028[1] { + yym3033 := z.EncBinary() + _ = yym3033 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -38297,19 +38908,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2985[1] { + if yyq3028[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2991 := z.EncBinary() - _ = yym2991 + yym3034 := z.EncBinary() + _ = yym3034 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr2985 || yy2arr2985 { + if yyr3028 || yy2arr3028 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38322,25 +38933,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2992 := z.DecBinary() - _ = yym2992 + yym3035 := z.DecBinary() + _ = yym3035 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2993 := r.ContainerType() - if yyct2993 == codecSelferValueTypeMap1234 { - yyl2993 := r.ReadMapStart() - if yyl2993 == 0 { + yyct3036 := r.ContainerType() + if yyct3036 == codecSelferValueTypeMap1234 { + yyl3036 := r.ReadMapStart() + if yyl3036 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2993, d) + x.codecDecodeSelfFromMap(yyl3036, d) } - } else if yyct2993 == codecSelferValueTypeArray1234 { - yyl2993 := r.ReadArrayStart() - if yyl2993 == 0 { + } else if yyct3036 == codecSelferValueTypeArray1234 { + yyl3036 := r.ReadArrayStart() + if yyl3036 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2993, d) + x.codecDecodeSelfFromArray(yyl3036, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38352,12 +38963,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2994Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2994Slc - var yyhl2994 bool = l >= 0 - for yyj2994 := 0; ; yyj2994++ { - if yyhl2994 { - if yyj2994 >= l { + var yys3037Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3037Slc + var yyhl3037 bool = l >= 0 + for yyj3037 := 0; ; yyj3037++ { + if yyhl3037 { + if yyj3037 >= l { break } } else { @@ -38366,20 +38977,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2994Slc = r.DecodeBytes(yys2994Slc, true, true) - yys2994 := string(yys2994Slc) + yys3037Slc = r.DecodeBytes(yys3037Slc, true, true) + yys3037 := string(yys3037Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2994 { + switch yys3037 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2995 := &x.Names - yym2996 := z.DecBinary() - _ = yym2996 + yyv3038 := &x.Names + yym3039 := z.DecBinary() + _ = yym3039 if false { } else { - z.F.DecSliceStringX(yyv2995, false, d) + z.F.DecSliceStringX(yyv3038, false, d) } } case "sizeBytes": @@ -38389,9 +39000,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2994) - } // end switch yys2994 - } // end for yyj2994 + z.DecStructFieldNotFound(-1, yys3037) + } // end switch yys3037 + } // end for yyj3037 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38399,16 +39010,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2998 int - var yyb2998 bool - var yyhl2998 bool = l >= 0 - yyj2998++ - if yyhl2998 { - yyb2998 = yyj2998 > l + var yyj3041 int + var yyb3041 bool + var yyhl3041 bool = l >= 0 + yyj3041++ + if yyhl3041 { + yyb3041 = yyj3041 > l } else { - yyb2998 = r.CheckBreak() + yyb3041 = r.CheckBreak() } - if yyb2998 { + if yyb3041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38416,21 +39027,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2999 := &x.Names - yym3000 := z.DecBinary() - _ = yym3000 + yyv3042 := &x.Names + yym3043 := z.DecBinary() + _ = yym3043 if false { } else { - z.F.DecSliceStringX(yyv2999, false, d) + z.F.DecSliceStringX(yyv3042, false, d) } } - yyj2998++ - if yyhl2998 { - yyb2998 = yyj2998 > l + yyj3041++ + if yyhl3041 { + yyb3041 = yyj3041 > l } else { - yyb2998 = r.CheckBreak() + yyb3041 = r.CheckBreak() } - if yyb2998 { + if yyb3041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38441,17 +39052,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj2998++ - if yyhl2998 { - yyb2998 = yyj2998 > l + yyj3041++ + if yyhl3041 { + yyb3041 = yyj3041 > l } else { - yyb2998 = r.CheckBreak() + yyb3041 = r.CheckBreak() } - if yyb2998 { + if yyb3041 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2998-1, "") + z.DecStructFieldNotFound(yyj3041-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38460,8 +39071,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3002 := z.EncBinary() - _ = yym3002 + yym3045 := z.EncBinary() + _ = yym3045 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38473,8 +39084,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3003 := z.DecBinary() - _ = yym3003 + yym3046 := z.DecBinary() + _ = yym3046 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38486,8 +39097,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3004 := z.EncBinary() - _ = yym3004 + yym3047 := z.EncBinary() + _ = yym3047 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38499,8 +39110,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3005 := z.DecBinary() - _ = yym3005 + yym3048 := z.DecBinary() + _ = yym3048 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38515,34 +39126,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3006 := z.EncBinary() - _ = yym3006 + yym3049 := z.EncBinary() + _ = yym3049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3007 := !z.EncBinary() - yy2arr3007 := z.EncBasicHandle().StructToArray - var yyq3007 [6]bool - _, _, _ = yysep3007, yyq3007, yy2arr3007 - const yyr3007 bool = false - yyq3007[2] = true - yyq3007[3] = true - yyq3007[4] = x.Reason != "" - yyq3007[5] = x.Message != "" - var yynn3007 int - if yyr3007 || yy2arr3007 { + yysep3050 := !z.EncBinary() + yy2arr3050 := z.EncBasicHandle().StructToArray + var yyq3050 [6]bool + _, _, _ = yysep3050, yyq3050, yy2arr3050 + const yyr3050 bool = false + yyq3050[2] = true + yyq3050[3] = true + yyq3050[4] = x.Reason != "" + yyq3050[5] = x.Message != "" + var yynn3050 int + if yyr3050 || yy2arr3050 { r.EncodeArrayStart(6) } else { - yynn3007 = 2 - for _, b := range yyq3007 { + yynn3050 = 2 + for _, b := range yyq3050 { if b { - yynn3007++ + yynn3050++ } } - r.EncodeMapStart(yynn3007) - yynn3007 = 0 + r.EncodeMapStart(yynn3050) + yynn3050 = 0 } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38551,7 +39162,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -38560,85 +39171,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3007[2] { - yy3011 := &x.LastHeartbeatTime - yym3012 := z.EncBinary() - _ = yym3012 + if yyq3050[2] { + yy3054 := &x.LastHeartbeatTime + yym3055 := z.EncBinary() + _ = yym3055 if false { - } else if z.HasExtensions() && z.EncExt(yy3011) { - } else if yym3012 { - z.EncBinaryMarshal(yy3011) - } else if !yym3012 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3011) + } else if z.HasExtensions() && z.EncExt(yy3054) { + } else if yym3055 { + z.EncBinaryMarshal(yy3054) + } else if !yym3055 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3054) } else { - z.EncFallback(yy3011) + z.EncFallback(yy3054) } } else { r.EncodeNil() } } else { - if yyq3007[2] { + if yyq3050[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3013 := &x.LastHeartbeatTime - yym3014 := z.EncBinary() - _ = yym3014 + yy3056 := &x.LastHeartbeatTime + yym3057 := z.EncBinary() + _ = yym3057 if false { - } else if z.HasExtensions() && z.EncExt(yy3013) { - } else if yym3014 { - z.EncBinaryMarshal(yy3013) - } else if !yym3014 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3013) + } else if z.HasExtensions() && z.EncExt(yy3056) { + } else if yym3057 { + z.EncBinaryMarshal(yy3056) + } else if !yym3057 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3056) } else { - z.EncFallback(yy3013) + z.EncFallback(yy3056) } } } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3007[3] { - yy3016 := &x.LastTransitionTime - yym3017 := z.EncBinary() - _ = yym3017 + if yyq3050[3] { + yy3059 := &x.LastTransitionTime + yym3060 := z.EncBinary() + _ = yym3060 if false { - } else if z.HasExtensions() && z.EncExt(yy3016) { - } else if yym3017 { - z.EncBinaryMarshal(yy3016) - } else if !yym3017 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3016) + } else if z.HasExtensions() && z.EncExt(yy3059) { + } else if yym3060 { + z.EncBinaryMarshal(yy3059) + } else if !yym3060 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3059) } else { - z.EncFallback(yy3016) + z.EncFallback(yy3059) } } else { r.EncodeNil() } } else { - if yyq3007[3] { + if yyq3050[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3018 := &x.LastTransitionTime - yym3019 := z.EncBinary() - _ = yym3019 + yy3061 := &x.LastTransitionTime + yym3062 := z.EncBinary() + _ = yym3062 if false { - } else if z.HasExtensions() && z.EncExt(yy3018) { - } else if yym3019 { - z.EncBinaryMarshal(yy3018) - } else if !yym3019 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3018) + } else if z.HasExtensions() && z.EncExt(yy3061) { + } else if yym3062 { + z.EncBinaryMarshal(yy3061) + } else if !yym3062 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3061) } else { - z.EncFallback(yy3018) + z.EncFallback(yy3061) } } } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3007[4] { - yym3021 := z.EncBinary() - _ = yym3021 + if yyq3050[4] { + yym3064 := z.EncBinary() + _ = yym3064 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38647,23 +39258,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3007[4] { + if yyq3050[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3022 := z.EncBinary() - _ = yym3022 + yym3065 := z.EncBinary() + _ = yym3065 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3007[5] { - yym3024 := z.EncBinary() - _ = yym3024 + if yyq3050[5] { + yym3067 := z.EncBinary() + _ = yym3067 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38672,19 +39283,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3007[5] { + if yyq3050[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3025 := z.EncBinary() - _ = yym3025 + yym3068 := z.EncBinary() + _ = yym3068 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3007 || yy2arr3007 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38697,25 +39308,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3026 := z.DecBinary() - _ = yym3026 + yym3069 := z.DecBinary() + _ = yym3069 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3027 := r.ContainerType() - if yyct3027 == codecSelferValueTypeMap1234 { - yyl3027 := r.ReadMapStart() - if yyl3027 == 0 { + yyct3070 := r.ContainerType() + if yyct3070 == codecSelferValueTypeMap1234 { + yyl3070 := r.ReadMapStart() + if yyl3070 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3027, d) + x.codecDecodeSelfFromMap(yyl3070, d) } - } else if yyct3027 == codecSelferValueTypeArray1234 { - yyl3027 := r.ReadArrayStart() - if yyl3027 == 0 { + } else if yyct3070 == codecSelferValueTypeArray1234 { + yyl3070 := r.ReadArrayStart() + if yyl3070 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3027, d) + x.codecDecodeSelfFromArray(yyl3070, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38727,12 +39338,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3028Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3028Slc - var yyhl3028 bool = l >= 0 - for yyj3028 := 0; ; yyj3028++ { - if yyhl3028 { - if yyj3028 >= l { + var yys3071Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3071Slc + var yyhl3071 bool = l >= 0 + for yyj3071 := 0; ; yyj3071++ { + if yyhl3071 { + if yyj3071 >= l { break } } else { @@ -38741,10 +39352,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3028Slc = r.DecodeBytes(yys3028Slc, true, true) - yys3028 := string(yys3028Slc) + yys3071Slc = r.DecodeBytes(yys3071Slc, true, true) + yys3071 := string(yys3071Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3028 { + switch yys3071 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38761,34 +39372,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3031 := &x.LastHeartbeatTime - yym3032 := z.DecBinary() - _ = yym3032 + yyv3074 := &x.LastHeartbeatTime + yym3075 := z.DecBinary() + _ = yym3075 if false { - } else if z.HasExtensions() && z.DecExt(yyv3031) { - } else if yym3032 { - z.DecBinaryUnmarshal(yyv3031) - } else if !yym3032 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3031) + } else if z.HasExtensions() && z.DecExt(yyv3074) { + } else if yym3075 { + z.DecBinaryUnmarshal(yyv3074) + } else if !yym3075 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3074) } else { - z.DecFallback(yyv3031, false) + z.DecFallback(yyv3074, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3033 := &x.LastTransitionTime - yym3034 := z.DecBinary() - _ = yym3034 + yyv3076 := &x.LastTransitionTime + yym3077 := z.DecBinary() + _ = yym3077 if false { - } else if z.HasExtensions() && z.DecExt(yyv3033) { - } else if yym3034 { - z.DecBinaryUnmarshal(yyv3033) - } else if !yym3034 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3033) + } else if z.HasExtensions() && z.DecExt(yyv3076) { + } else if yym3077 { + z.DecBinaryUnmarshal(yyv3076) + } else if !yym3077 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3076) } else { - z.DecFallback(yyv3033, false) + z.DecFallback(yyv3076, false) } } case "reason": @@ -38804,9 +39415,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3028) - } // end switch yys3028 - } // end for yyj3028 + z.DecStructFieldNotFound(-1, yys3071) + } // end switch yys3071 + } // end for yyj3071 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38814,16 +39425,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3037 int - var yyb3037 bool - var yyhl3037 bool = l >= 0 - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + var yyj3080 int + var yyb3080 bool + var yyhl3080 bool = l >= 0 + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38833,13 +39444,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38849,13 +39460,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38863,26 +39474,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3040 := &x.LastHeartbeatTime - yym3041 := z.DecBinary() - _ = yym3041 + yyv3083 := &x.LastHeartbeatTime + yym3084 := z.DecBinary() + _ = yym3084 if false { - } else if z.HasExtensions() && z.DecExt(yyv3040) { - } else if yym3041 { - z.DecBinaryUnmarshal(yyv3040) - } else if !yym3041 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3040) + } else if z.HasExtensions() && z.DecExt(yyv3083) { + } else if yym3084 { + z.DecBinaryUnmarshal(yyv3083) + } else if !yym3084 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3083) } else { - z.DecFallback(yyv3040, false) + z.DecFallback(yyv3083, false) } } - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38890,26 +39501,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3042 := &x.LastTransitionTime - yym3043 := z.DecBinary() - _ = yym3043 + yyv3085 := &x.LastTransitionTime + yym3086 := z.DecBinary() + _ = yym3086 if false { - } else if z.HasExtensions() && z.DecExt(yyv3042) { - } else if yym3043 { - z.DecBinaryUnmarshal(yyv3042) - } else if !yym3043 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3042) + } else if z.HasExtensions() && z.DecExt(yyv3085) { + } else if yym3086 { + z.DecBinaryUnmarshal(yyv3085) + } else if !yym3086 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3085) } else { - z.DecFallback(yyv3042, false) + z.DecFallback(yyv3085, false) } } - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38919,13 +39530,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38936,17 +39547,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l } else { - yyb3037 = r.CheckBreak() + yyb3080 = r.CheckBreak() } - if yyb3037 { + if yyb3080 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3037-1, "") + z.DecStructFieldNotFound(yyj3080-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38955,8 +39566,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3046 := z.EncBinary() - _ = yym3046 + yym3089 := z.EncBinary() + _ = yym3089 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38968,8 +39579,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3047 := z.DecBinary() - _ = yym3047 + yym3090 := z.DecBinary() + _ = yym3090 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38984,30 +39595,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3048 := z.EncBinary() - _ = yym3048 + yym3091 := z.EncBinary() + _ = yym3091 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3049 := !z.EncBinary() - yy2arr3049 := z.EncBasicHandle().StructToArray - var yyq3049 [2]bool - _, _, _ = yysep3049, yyq3049, yy2arr3049 - const yyr3049 bool = false - var yynn3049 int - if yyr3049 || yy2arr3049 { + yysep3092 := !z.EncBinary() + yy2arr3092 := z.EncBasicHandle().StructToArray + var yyq3092 [2]bool + _, _, _ = yysep3092, yyq3092, yy2arr3092 + const yyr3092 bool = false + var yynn3092 int + if yyr3092 || yy2arr3092 { r.EncodeArrayStart(2) } else { - yynn3049 = 2 - for _, b := range yyq3049 { + yynn3092 = 2 + for _, b := range yyq3092 { if b { - yynn3049++ + yynn3092++ } } - r.EncodeMapStart(yynn3049) - yynn3049 = 0 + r.EncodeMapStart(yynn3092) + yynn3092 = 0 } - if yyr3049 || yy2arr3049 { + if yyr3092 || yy2arr3092 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39016,10 +39627,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3049 || yy2arr3049 { + if yyr3092 || yy2arr3092 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3052 := z.EncBinary() - _ = yym3052 + yym3095 := z.EncBinary() + _ = yym3095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -39028,14 +39639,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3053 := z.EncBinary() - _ = yym3053 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3049 || yy2arr3049 { + if yyr3092 || yy2arr3092 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39048,25 +39659,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3054 := z.DecBinary() - _ = yym3054 + yym3097 := z.DecBinary() + _ = yym3097 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3055 := r.ContainerType() - if yyct3055 == codecSelferValueTypeMap1234 { - yyl3055 := r.ReadMapStart() - if yyl3055 == 0 { + yyct3098 := r.ContainerType() + if yyct3098 == codecSelferValueTypeMap1234 { + yyl3098 := r.ReadMapStart() + if yyl3098 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3055, d) + x.codecDecodeSelfFromMap(yyl3098, d) } - } else if yyct3055 == codecSelferValueTypeArray1234 { - yyl3055 := r.ReadArrayStart() - if yyl3055 == 0 { + } else if yyct3098 == codecSelferValueTypeArray1234 { + yyl3098 := r.ReadArrayStart() + if yyl3098 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3055, d) + x.codecDecodeSelfFromArray(yyl3098, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39078,12 +39689,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3056Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3056Slc - var yyhl3056 bool = l >= 0 - for yyj3056 := 0; ; yyj3056++ { - if yyhl3056 { - if yyj3056 >= 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 { @@ -39092,10 +39703,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3056Slc = r.DecodeBytes(yys3056Slc, true, true) - yys3056 := string(yys3056Slc) + yys3099Slc = r.DecodeBytes(yys3099Slc, true, true) + yys3099 := string(yys3099Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3056 { + switch yys3099 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39109,9 +39720,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3056) - } // end switch yys3056 - } // end for yyj3056 + z.DecStructFieldNotFound(-1, yys3099) + } // end switch yys3099 + } // end for yyj3099 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39119,16 +39730,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3059 int - var yyb3059 bool - var yyhl3059 bool = l >= 0 - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + var yyj3102 int + var yyb3102 bool + var yyhl3102 bool = l >= 0 + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3059 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3059 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39138,13 +39749,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3059 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3059 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39155,17 +39766,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3059 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3059 { + if yyb3102 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3059-1, "") + z.DecStructFieldNotFound(yyj3102-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39174,8 +39785,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3062 := z.EncBinary() - _ = yym3062 + yym3105 := z.EncBinary() + _ = yym3105 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39187,8 +39798,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3063 := z.DecBinary() - _ = yym3063 + yym3106 := z.DecBinary() + _ = yym3106 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39203,8 +39814,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3064 := z.EncBinary() - _ = yym3064 + yym3107 := z.EncBinary() + _ = yym3107 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39217,8 +39828,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3065 := z.DecBinary() - _ = yym3065 + yym3108 := z.DecBinary() + _ = yym3108 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39233,39 +39844,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3066 := z.EncBinary() - _ = yym3066 + yym3109 := z.EncBinary() + _ = yym3109 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3067 := !z.EncBinary() - yy2arr3067 := z.EncBasicHandle().StructToArray - var yyq3067 [5]bool - _, _, _ = yysep3067, yyq3067, yy2arr3067 - const yyr3067 bool = false - yyq3067[0] = x.Kind != "" - yyq3067[1] = x.APIVersion != "" - yyq3067[2] = true - yyq3067[3] = true - yyq3067[4] = true - var yynn3067 int - if yyr3067 || yy2arr3067 { + yysep3110 := !z.EncBinary() + yy2arr3110 := z.EncBasicHandle().StructToArray + var yyq3110 [5]bool + _, _, _ = yysep3110, yyq3110, yy2arr3110 + const yyr3110 bool = false + yyq3110[0] = x.Kind != "" + yyq3110[1] = x.APIVersion != "" + yyq3110[2] = true + yyq3110[3] = true + yyq3110[4] = true + var yynn3110 int + if yyr3110 || yy2arr3110 { r.EncodeArrayStart(5) } else { - yynn3067 = 0 - for _, b := range yyq3067 { + yynn3110 = 0 + for _, b := range yyq3110 { if b { - yynn3067++ + yynn3110++ } } - r.EncodeMapStart(yynn3067) - yynn3067 = 0 + r.EncodeMapStart(yynn3110) + yynn3110 = 0 } - if yyr3067 || yy2arr3067 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3067[0] { - yym3069 := z.EncBinary() - _ = yym3069 + if yyq3110[0] { + yym3112 := z.EncBinary() + _ = yym3112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39274,23 +39885,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3067[0] { + if yyq3110[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3070 := z.EncBinary() - _ = yym3070 + yym3113 := z.EncBinary() + _ = yym3113 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3067 || yy2arr3067 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3067[1] { - yym3072 := z.EncBinary() - _ = yym3072 + if yyq3110[1] { + yym3115 := z.EncBinary() + _ = yym3115 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39299,70 +39910,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3067[1] { + if yyq3110[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3073 := z.EncBinary() - _ = yym3073 + yym3116 := z.EncBinary() + _ = yym3116 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3067 || yy2arr3067 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3067[2] { - yy3075 := &x.ObjectMeta - yy3075.CodecEncodeSelf(e) + if yyq3110[2] { + yy3118 := &x.ObjectMeta + yy3118.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3067[2] { + if yyq3110[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3076 := &x.ObjectMeta - yy3076.CodecEncodeSelf(e) + yy3119 := &x.ObjectMeta + yy3119.CodecEncodeSelf(e) } } - if yyr3067 || yy2arr3067 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3067[3] { - yy3078 := &x.Spec - yy3078.CodecEncodeSelf(e) + if yyq3110[3] { + yy3121 := &x.Spec + yy3121.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3067[3] { + if yyq3110[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3079 := &x.Spec - yy3079.CodecEncodeSelf(e) + yy3122 := &x.Spec + yy3122.CodecEncodeSelf(e) } } - if yyr3067 || yy2arr3067 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3067[4] { - yy3081 := &x.Status - yy3081.CodecEncodeSelf(e) + if yyq3110[4] { + yy3124 := &x.Status + yy3124.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3067[4] { + if yyq3110[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3082 := &x.Status - yy3082.CodecEncodeSelf(e) + yy3125 := &x.Status + yy3125.CodecEncodeSelf(e) } } - if yyr3067 || yy2arr3067 { + if yyr3110 || yy2arr3110 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39375,25 +39986,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3083 := z.DecBinary() - _ = yym3083 + yym3126 := z.DecBinary() + _ = yym3126 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3084 := r.ContainerType() - if yyct3084 == codecSelferValueTypeMap1234 { - yyl3084 := r.ReadMapStart() - if yyl3084 == 0 { + yyct3127 := r.ContainerType() + if yyct3127 == codecSelferValueTypeMap1234 { + yyl3127 := r.ReadMapStart() + if yyl3127 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3084, d) + x.codecDecodeSelfFromMap(yyl3127, d) } - } else if yyct3084 == codecSelferValueTypeArray1234 { - yyl3084 := r.ReadArrayStart() - if yyl3084 == 0 { + } else if yyct3127 == codecSelferValueTypeArray1234 { + yyl3127 := r.ReadArrayStart() + if yyl3127 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3084, d) + x.codecDecodeSelfFromArray(yyl3127, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39405,12 +40016,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3085Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3085Slc - var yyhl3085 bool = l >= 0 - for yyj3085 := 0; ; yyj3085++ { - if yyhl3085 { - if yyj3085 >= l { + var yys3128Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3128Slc + var yyhl3128 bool = l >= 0 + for yyj3128 := 0; ; yyj3128++ { + if yyhl3128 { + if yyj3128 >= l { break } } else { @@ -39419,10 +40030,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3085Slc = r.DecodeBytes(yys3085Slc, true, true) - yys3085 := string(yys3085Slc) + yys3128Slc = r.DecodeBytes(yys3128Slc, true, true) + yys3128 := string(yys3128Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3085 { + switch yys3128 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39439,27 +40050,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3088 := &x.ObjectMeta - yyv3088.CodecDecodeSelf(d) + yyv3131 := &x.ObjectMeta + yyv3131.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3089 := &x.Spec - yyv3089.CodecDecodeSelf(d) + yyv3132 := &x.Spec + yyv3132.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3090 := &x.Status - yyv3090.CodecDecodeSelf(d) + yyv3133 := &x.Status + yyv3133.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3085) - } // end switch yys3085 - } // end for yyj3085 + z.DecStructFieldNotFound(-1, yys3128) + } // end switch yys3128 + } // end for yyj3128 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39467,16 +40078,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3091 int - var yyb3091 bool - var yyhl3091 bool = l >= 0 - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + var yyj3134 int + var yyb3134 bool + var yyhl3134 bool = l >= 0 + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39486,13 +40097,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39502,13 +40113,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39516,16 +40127,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3094 := &x.ObjectMeta - yyv3094.CodecDecodeSelf(d) + yyv3137 := &x.ObjectMeta + yyv3137.CodecDecodeSelf(d) } - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39533,16 +40144,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3095 := &x.Spec - yyv3095.CodecDecodeSelf(d) + yyv3138 := &x.Spec + yyv3138.CodecDecodeSelf(d) } - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39550,21 +40161,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3096 := &x.Status - yyv3096.CodecDecodeSelf(d) + yyv3139 := &x.Status + yyv3139.CodecDecodeSelf(d) } for { - yyj3091++ - if yyhl3091 { - yyb3091 = yyj3091 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3091 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3091 { + if yyb3134 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3091-1, "") + z.DecStructFieldNotFound(yyj3134-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39576,37 +40187,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3097 := z.EncBinary() - _ = yym3097 + yym3140 := z.EncBinary() + _ = yym3140 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3098 := !z.EncBinary() - yy2arr3098 := z.EncBasicHandle().StructToArray - var yyq3098 [4]bool - _, _, _ = yysep3098, yyq3098, yy2arr3098 - const yyr3098 bool = false - yyq3098[0] = x.Kind != "" - yyq3098[1] = x.APIVersion != "" - yyq3098[2] = true - var yynn3098 int - if yyr3098 || yy2arr3098 { + yysep3141 := !z.EncBinary() + yy2arr3141 := z.EncBasicHandle().StructToArray + var yyq3141 [4]bool + _, _, _ = yysep3141, yyq3141, yy2arr3141 + const yyr3141 bool = false + yyq3141[0] = x.Kind != "" + yyq3141[1] = x.APIVersion != "" + yyq3141[2] = true + var yynn3141 int + if yyr3141 || yy2arr3141 { r.EncodeArrayStart(4) } else { - yynn3098 = 1 - for _, b := range yyq3098 { + yynn3141 = 1 + for _, b := range yyq3141 { if b { - yynn3098++ + yynn3141++ } } - r.EncodeMapStart(yynn3098) - yynn3098 = 0 + r.EncodeMapStart(yynn3141) + yynn3141 = 0 } - if yyr3098 || yy2arr3098 { + if yyr3141 || yy2arr3141 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3098[0] { - yym3100 := z.EncBinary() - _ = yym3100 + if yyq3141[0] { + yym3143 := z.EncBinary() + _ = yym3143 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39615,23 +40226,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3098[0] { + if yyq3141[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3101 := z.EncBinary() - _ = yym3101 + yym3144 := z.EncBinary() + _ = yym3144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3098 || yy2arr3098 { + if yyr3141 || yy2arr3141 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3098[1] { - yym3103 := z.EncBinary() - _ = yym3103 + if yyq3141[1] { + yym3146 := z.EncBinary() + _ = yym3146 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39640,54 +40251,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3098[1] { + if yyq3141[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3104 := z.EncBinary() - _ = yym3104 + yym3147 := z.EncBinary() + _ = yym3147 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3098 || yy2arr3098 { + if yyr3141 || yy2arr3141 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3098[2] { - yy3106 := &x.ListMeta - yym3107 := z.EncBinary() - _ = yym3107 + if yyq3141[2] { + yy3149 := &x.ListMeta + yym3150 := z.EncBinary() + _ = yym3150 if false { - } else if z.HasExtensions() && z.EncExt(yy3106) { + } else if z.HasExtensions() && z.EncExt(yy3149) { } else { - z.EncFallback(yy3106) + z.EncFallback(yy3149) } } else { r.EncodeNil() } } else { - if yyq3098[2] { + if yyq3141[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3108 := &x.ListMeta - yym3109 := z.EncBinary() - _ = yym3109 + yy3151 := &x.ListMeta + yym3152 := z.EncBinary() + _ = yym3152 if false { - } else if z.HasExtensions() && z.EncExt(yy3108) { + } else if z.HasExtensions() && z.EncExt(yy3151) { } else { - z.EncFallback(yy3108) + z.EncFallback(yy3151) } } } - if yyr3098 || yy2arr3098 { + if yyr3141 || yy2arr3141 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3111 := z.EncBinary() - _ = yym3111 + yym3154 := z.EncBinary() + _ = yym3154 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -39700,15 +40311,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3112 := z.EncBinary() - _ = yym3112 + yym3155 := z.EncBinary() + _ = yym3155 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3098 || yy2arr3098 { + if yyr3141 || yy2arr3141 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39721,25 +40332,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3113 := z.DecBinary() - _ = yym3113 + yym3156 := z.DecBinary() + _ = yym3156 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3114 := r.ContainerType() - if yyct3114 == codecSelferValueTypeMap1234 { - yyl3114 := r.ReadMapStart() - if yyl3114 == 0 { + yyct3157 := r.ContainerType() + if yyct3157 == codecSelferValueTypeMap1234 { + yyl3157 := r.ReadMapStart() + if yyl3157 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3114, d) + x.codecDecodeSelfFromMap(yyl3157, d) } - } else if yyct3114 == codecSelferValueTypeArray1234 { - yyl3114 := r.ReadArrayStart() - if yyl3114 == 0 { + } else if yyct3157 == codecSelferValueTypeArray1234 { + yyl3157 := r.ReadArrayStart() + if yyl3157 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3114, d) + x.codecDecodeSelfFromArray(yyl3157, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39751,12 +40362,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3115Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3115Slc - var yyhl3115 bool = l >= 0 - for yyj3115 := 0; ; yyj3115++ { - if yyhl3115 { - if yyj3115 >= l { + var yys3158Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3158Slc + var yyhl3158 bool = l >= 0 + for yyj3158 := 0; ; yyj3158++ { + if yyhl3158 { + if yyj3158 >= l { break } } else { @@ -39765,10 +40376,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3115Slc = r.DecodeBytes(yys3115Slc, true, true) - yys3115 := string(yys3115Slc) + yys3158Slc = r.DecodeBytes(yys3158Slc, true, true) + yys3158 := string(yys3158Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3115 { + switch yys3158 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39785,31 +40396,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3118 := &x.ListMeta - yym3119 := z.DecBinary() - _ = yym3119 + yyv3161 := &x.ListMeta + yym3162 := z.DecBinary() + _ = yym3162 if false { - } else if z.HasExtensions() && z.DecExt(yyv3118) { + } else if z.HasExtensions() && z.DecExt(yyv3161) { } else { - z.DecFallback(yyv3118, false) + z.DecFallback(yyv3161, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3120 := &x.Items - yym3121 := z.DecBinary() - _ = yym3121 + yyv3163 := &x.Items + yym3164 := z.DecBinary() + _ = yym3164 if false { } else { - h.decSliceNode((*[]Node)(yyv3120), d) + h.decSliceNode((*[]Node)(yyv3163), d) } } default: - z.DecStructFieldNotFound(-1, yys3115) - } // end switch yys3115 - } // end for yyj3115 + z.DecStructFieldNotFound(-1, yys3158) + } // end switch yys3158 + } // end for yyj3158 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39817,16 +40428,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3122 int - var yyb3122 bool - var yyhl3122 bool = l >= 0 - yyj3122++ - if yyhl3122 { - yyb3122 = yyj3122 > l + var yyj3165 int + var yyb3165 bool + var yyhl3165 bool = l >= 0 + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3122 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3122 { + if yyb3165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39836,13 +40447,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3122++ - if yyhl3122 { - yyb3122 = yyj3122 > l + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3122 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3122 { + if yyb3165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39852,13 +40463,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3122++ - if yyhl3122 { - yyb3122 = yyj3122 > l + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3122 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3122 { + if yyb3165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39866,22 +40477,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3125 := &x.ListMeta - yym3126 := z.DecBinary() - _ = yym3126 + yyv3168 := &x.ListMeta + yym3169 := z.DecBinary() + _ = yym3169 if false { - } else if z.HasExtensions() && z.DecExt(yyv3125) { + } else if z.HasExtensions() && z.DecExt(yyv3168) { } else { - z.DecFallback(yyv3125, false) + z.DecFallback(yyv3168, false) } } - yyj3122++ - if yyhl3122 { - yyb3122 = yyj3122 > l + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3122 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3122 { + if yyb3165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39889,26 +40500,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3127 := &x.Items - yym3128 := z.DecBinary() - _ = yym3128 + yyv3170 := &x.Items + yym3171 := z.DecBinary() + _ = yym3171 if false { } else { - h.decSliceNode((*[]Node)(yyv3127), d) + h.decSliceNode((*[]Node)(yyv3170), d) } } for { - yyj3122++ - if yyhl3122 { - yyb3122 = yyj3122 > l + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3122 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3122 { + if yyb3165 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3122-1, "") + z.DecStructFieldNotFound(yyj3165-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39917,8 +40528,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3129 := z.EncBinary() - _ = yym3129 + yym3172 := z.EncBinary() + _ = yym3172 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39930,8 +40541,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3130 := z.DecBinary() - _ = yym3130 + yym3173 := z.DecBinary() + _ = yym3173 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39946,38 +40557,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3131 := z.EncBinary() - _ = yym3131 + yym3174 := z.EncBinary() + _ = yym3174 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3132 := !z.EncBinary() - yy2arr3132 := z.EncBasicHandle().StructToArray - var yyq3132 [1]bool - _, _, _ = yysep3132, yyq3132, yy2arr3132 - const yyr3132 bool = false - yyq3132[0] = len(x.Finalizers) != 0 - var yynn3132 int - if yyr3132 || yy2arr3132 { + yysep3175 := !z.EncBinary() + yy2arr3175 := z.EncBasicHandle().StructToArray + var yyq3175 [1]bool + _, _, _ = yysep3175, yyq3175, yy2arr3175 + const yyr3175 bool = false + yyq3175[0] = len(x.Finalizers) != 0 + var yynn3175 int + if yyr3175 || yy2arr3175 { r.EncodeArrayStart(1) } else { - yynn3132 = 0 - for _, b := range yyq3132 { + yynn3175 = 0 + for _, b := range yyq3175 { if b { - yynn3132++ + yynn3175++ } } - r.EncodeMapStart(yynn3132) - yynn3132 = 0 + r.EncodeMapStart(yynn3175) + yynn3175 = 0 } - if yyr3132 || yy2arr3132 { + if yyr3175 || yy2arr3175 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3132[0] { + if yyq3175[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym3134 := z.EncBinary() - _ = yym3134 + yym3177 := z.EncBinary() + _ = yym3177 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -39987,15 +40598,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3132[0] { + if yyq3175[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3135 := z.EncBinary() - _ = yym3135 + yym3178 := z.EncBinary() + _ = yym3178 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -40003,7 +40614,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3132 || yy2arr3132 { + if yyr3175 || yy2arr3175 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40016,25 +40627,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3136 := z.DecBinary() - _ = yym3136 + yym3179 := z.DecBinary() + _ = yym3179 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3137 := r.ContainerType() - if yyct3137 == codecSelferValueTypeMap1234 { - yyl3137 := r.ReadMapStart() - if yyl3137 == 0 { + yyct3180 := r.ContainerType() + if yyct3180 == codecSelferValueTypeMap1234 { + yyl3180 := r.ReadMapStart() + if yyl3180 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3137, d) + x.codecDecodeSelfFromMap(yyl3180, d) } - } else if yyct3137 == codecSelferValueTypeArray1234 { - yyl3137 := r.ReadArrayStart() - if yyl3137 == 0 { + } else if yyct3180 == codecSelferValueTypeArray1234 { + yyl3180 := r.ReadArrayStart() + if yyl3180 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3137, d) + x.codecDecodeSelfFromArray(yyl3180, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40046,12 +40657,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3138Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3138Slc - var yyhl3138 bool = l >= 0 - for yyj3138 := 0; ; yyj3138++ { - if yyhl3138 { - if yyj3138 >= l { + var yys3181Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3181Slc + var yyhl3181 bool = l >= 0 + for yyj3181 := 0; ; yyj3181++ { + if yyhl3181 { + if yyj3181 >= l { break } } else { @@ -40060,26 +40671,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3138Slc = r.DecodeBytes(yys3138Slc, true, true) - yys3138 := string(yys3138Slc) + yys3181Slc = r.DecodeBytes(yys3181Slc, true, true) + yys3181 := string(yys3181Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3138 { + switch yys3181 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3139 := &x.Finalizers - yym3140 := z.DecBinary() - _ = yym3140 + yyv3182 := &x.Finalizers + yym3183 := z.DecBinary() + _ = yym3183 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3139), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3182), d) } } default: - z.DecStructFieldNotFound(-1, yys3138) - } // end switch yys3138 - } // end for yyj3138 + z.DecStructFieldNotFound(-1, yys3181) + } // end switch yys3181 + } // end for yyj3181 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40087,16 +40698,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3141 int - var yyb3141 bool - var yyhl3141 bool = l >= 0 - yyj3141++ - if yyhl3141 { - yyb3141 = yyj3141 > l + var yyj3184 int + var yyb3184 bool + var yyhl3184 bool = l >= 0 + yyj3184++ + if yyhl3184 { + yyb3184 = yyj3184 > l } else { - yyb3141 = r.CheckBreak() + yyb3184 = r.CheckBreak() } - if yyb3141 { + if yyb3184 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40104,26 +40715,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3142 := &x.Finalizers - yym3143 := z.DecBinary() - _ = yym3143 + yyv3185 := &x.Finalizers + yym3186 := z.DecBinary() + _ = yym3186 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3142), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3185), d) } } for { - yyj3141++ - if yyhl3141 { - yyb3141 = yyj3141 > l + yyj3184++ + if yyhl3184 { + yyb3184 = yyj3184 > l } else { - yyb3141 = r.CheckBreak() + yyb3184 = r.CheckBreak() } - if yyb3141 { + if yyb3184 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3141-1, "") + z.DecStructFieldNotFound(yyj3184-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40135,46 +40746,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3144 := z.EncBinary() - _ = yym3144 + yym3187 := z.EncBinary() + _ = yym3187 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3145 := !z.EncBinary() - yy2arr3145 := z.EncBasicHandle().StructToArray - var yyq3145 [1]bool - _, _, _ = yysep3145, yyq3145, yy2arr3145 - const yyr3145 bool = false - yyq3145[0] = x.Phase != "" - var yynn3145 int - if yyr3145 || yy2arr3145 { + yysep3188 := !z.EncBinary() + yy2arr3188 := z.EncBasicHandle().StructToArray + var yyq3188 [1]bool + _, _, _ = yysep3188, yyq3188, yy2arr3188 + const yyr3188 bool = false + yyq3188[0] = x.Phase != "" + var yynn3188 int + if yyr3188 || yy2arr3188 { r.EncodeArrayStart(1) } else { - yynn3145 = 0 - for _, b := range yyq3145 { + yynn3188 = 0 + for _, b := range yyq3188 { if b { - yynn3145++ + yynn3188++ } } - r.EncodeMapStart(yynn3145) - yynn3145 = 0 + r.EncodeMapStart(yynn3188) + yynn3188 = 0 } - if yyr3145 || yy2arr3145 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3145[0] { + if yyq3188[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3145[0] { + if yyq3188[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3145 || yy2arr3145 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40187,25 +40798,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3147 := z.DecBinary() - _ = yym3147 + yym3190 := z.DecBinary() + _ = yym3190 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3148 := r.ContainerType() - if yyct3148 == codecSelferValueTypeMap1234 { - yyl3148 := r.ReadMapStart() - if yyl3148 == 0 { + yyct3191 := r.ContainerType() + if yyct3191 == codecSelferValueTypeMap1234 { + yyl3191 := r.ReadMapStart() + if yyl3191 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3148, d) + x.codecDecodeSelfFromMap(yyl3191, d) } - } else if yyct3148 == codecSelferValueTypeArray1234 { - yyl3148 := r.ReadArrayStart() - if yyl3148 == 0 { + } else if yyct3191 == codecSelferValueTypeArray1234 { + yyl3191 := r.ReadArrayStart() + if yyl3191 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3148, d) + x.codecDecodeSelfFromArray(yyl3191, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40217,12 +40828,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3149Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3149Slc - var yyhl3149 bool = l >= 0 - for yyj3149 := 0; ; yyj3149++ { - if yyhl3149 { - if yyj3149 >= l { + var yys3192Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3192Slc + var yyhl3192 bool = l >= 0 + for yyj3192 := 0; ; yyj3192++ { + if yyhl3192 { + if yyj3192 >= l { break } } else { @@ -40231,10 +40842,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3149Slc = r.DecodeBytes(yys3149Slc, true, true) - yys3149 := string(yys3149Slc) + yys3192Slc = r.DecodeBytes(yys3192Slc, true, true) + yys3192 := string(yys3192Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3149 { + switch yys3192 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -40242,9 +40853,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3149) - } // end switch yys3149 - } // end for yyj3149 + z.DecStructFieldNotFound(-1, yys3192) + } // end switch yys3192 + } // end for yyj3192 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40252,16 +40863,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3151 int - var yyb3151 bool - var yyhl3151 bool = l >= 0 - yyj3151++ - if yyhl3151 { - yyb3151 = yyj3151 > l + var yyj3194 int + var yyb3194 bool + var yyhl3194 bool = l >= 0 + yyj3194++ + if yyhl3194 { + yyb3194 = yyj3194 > l } else { - yyb3151 = r.CheckBreak() + yyb3194 = r.CheckBreak() } - if yyb3151 { + if yyb3194 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40272,17 +40883,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3151++ - if yyhl3151 { - yyb3151 = yyj3151 > l + yyj3194++ + if yyhl3194 { + yyb3194 = yyj3194 > l } else { - yyb3151 = r.CheckBreak() + yyb3194 = r.CheckBreak() } - if yyb3151 { + if yyb3194 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3151-1, "") + z.DecStructFieldNotFound(yyj3194-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40291,8 +40902,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3153 := z.EncBinary() - _ = yym3153 + yym3196 := z.EncBinary() + _ = yym3196 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40304,8 +40915,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3154 := z.DecBinary() - _ = yym3154 + yym3197 := z.DecBinary() + _ = yym3197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40320,39 +40931,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3155 := z.EncBinary() - _ = yym3155 + yym3198 := z.EncBinary() + _ = yym3198 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3156 := !z.EncBinary() - yy2arr3156 := z.EncBasicHandle().StructToArray - var yyq3156 [5]bool - _, _, _ = yysep3156, yyq3156, yy2arr3156 - const yyr3156 bool = false - yyq3156[0] = x.Kind != "" - yyq3156[1] = x.APIVersion != "" - yyq3156[2] = true - yyq3156[3] = true - yyq3156[4] = true - var yynn3156 int - if yyr3156 || yy2arr3156 { + yysep3199 := !z.EncBinary() + yy2arr3199 := z.EncBasicHandle().StructToArray + var yyq3199 [5]bool + _, _, _ = yysep3199, yyq3199, yy2arr3199 + const yyr3199 bool = false + yyq3199[0] = x.Kind != "" + yyq3199[1] = x.APIVersion != "" + yyq3199[2] = true + yyq3199[3] = true + yyq3199[4] = true + var yynn3199 int + if yyr3199 || yy2arr3199 { r.EncodeArrayStart(5) } else { - yynn3156 = 0 - for _, b := range yyq3156 { + yynn3199 = 0 + for _, b := range yyq3199 { if b { - yynn3156++ + yynn3199++ } } - r.EncodeMapStart(yynn3156) - yynn3156 = 0 + r.EncodeMapStart(yynn3199) + yynn3199 = 0 } - if yyr3156 || yy2arr3156 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[0] { - yym3158 := z.EncBinary() - _ = yym3158 + if yyq3199[0] { + yym3201 := z.EncBinary() + _ = yym3201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40361,23 +40972,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3156[0] { + if yyq3199[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3159 := z.EncBinary() - _ = yym3159 + yym3202 := z.EncBinary() + _ = yym3202 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3156 || yy2arr3156 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[1] { - yym3161 := z.EncBinary() - _ = yym3161 + if yyq3199[1] { + yym3204 := z.EncBinary() + _ = yym3204 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40386,70 +40997,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3156[1] { + if yyq3199[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3162 := z.EncBinary() - _ = yym3162 + yym3205 := z.EncBinary() + _ = yym3205 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3156 || yy2arr3156 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[2] { - yy3164 := &x.ObjectMeta - yy3164.CodecEncodeSelf(e) + if yyq3199[2] { + yy3207 := &x.ObjectMeta + yy3207.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3156[2] { + if yyq3199[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3165 := &x.ObjectMeta - yy3165.CodecEncodeSelf(e) + yy3208 := &x.ObjectMeta + yy3208.CodecEncodeSelf(e) } } - if yyr3156 || yy2arr3156 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[3] { - yy3167 := &x.Spec - yy3167.CodecEncodeSelf(e) + if yyq3199[3] { + yy3210 := &x.Spec + yy3210.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3156[3] { + if yyq3199[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3168 := &x.Spec - yy3168.CodecEncodeSelf(e) + yy3211 := &x.Spec + yy3211.CodecEncodeSelf(e) } } - if yyr3156 || yy2arr3156 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[4] { - yy3170 := &x.Status - yy3170.CodecEncodeSelf(e) + if yyq3199[4] { + yy3213 := &x.Status + yy3213.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3156[4] { + if yyq3199[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3171 := &x.Status - yy3171.CodecEncodeSelf(e) + yy3214 := &x.Status + yy3214.CodecEncodeSelf(e) } } - if yyr3156 || yy2arr3156 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40462,25 +41073,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3172 := z.DecBinary() - _ = yym3172 + yym3215 := z.DecBinary() + _ = yym3215 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3173 := r.ContainerType() - if yyct3173 == codecSelferValueTypeMap1234 { - yyl3173 := r.ReadMapStart() - if yyl3173 == 0 { + yyct3216 := r.ContainerType() + if yyct3216 == codecSelferValueTypeMap1234 { + yyl3216 := r.ReadMapStart() + if yyl3216 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3173, d) + x.codecDecodeSelfFromMap(yyl3216, d) } - } else if yyct3173 == codecSelferValueTypeArray1234 { - yyl3173 := r.ReadArrayStart() - if yyl3173 == 0 { + } else if yyct3216 == codecSelferValueTypeArray1234 { + yyl3216 := r.ReadArrayStart() + if yyl3216 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3173, d) + x.codecDecodeSelfFromArray(yyl3216, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40492,12 +41103,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3174Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3174Slc - var yyhl3174 bool = l >= 0 - for yyj3174 := 0; ; yyj3174++ { - if yyhl3174 { - if yyj3174 >= l { + var yys3217Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3217Slc + var yyhl3217 bool = l >= 0 + for yyj3217 := 0; ; yyj3217++ { + if yyhl3217 { + if yyj3217 >= l { break } } else { @@ -40506,10 +41117,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3174Slc = r.DecodeBytes(yys3174Slc, true, true) - yys3174 := string(yys3174Slc) + yys3217Slc = r.DecodeBytes(yys3217Slc, true, true) + yys3217 := string(yys3217Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3174 { + switch yys3217 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40526,27 +41137,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3177 := &x.ObjectMeta - yyv3177.CodecDecodeSelf(d) + yyv3220 := &x.ObjectMeta + yyv3220.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3178 := &x.Spec - yyv3178.CodecDecodeSelf(d) + yyv3221 := &x.Spec + yyv3221.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3179 := &x.Status - yyv3179.CodecDecodeSelf(d) + yyv3222 := &x.Status + yyv3222.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3174) - } // end switch yys3174 - } // end for yyj3174 + z.DecStructFieldNotFound(-1, yys3217) + } // end switch yys3217 + } // end for yyj3217 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40554,16 +41165,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3180 int - var yyb3180 bool - var yyhl3180 bool = l >= 0 - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + var yyj3223 int + var yyb3223 bool + var yyhl3223 bool = l >= 0 + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40573,13 +41184,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40589,13 +41200,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40603,16 +41214,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3183 := &x.ObjectMeta - yyv3183.CodecDecodeSelf(d) + yyv3226 := &x.ObjectMeta + yyv3226.CodecDecodeSelf(d) } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40620,16 +41231,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3184 := &x.Spec - yyv3184.CodecDecodeSelf(d) + yyv3227 := &x.Spec + yyv3227.CodecDecodeSelf(d) } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40637,21 +41248,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3185 := &x.Status - yyv3185.CodecDecodeSelf(d) + yyv3228 := &x.Status + yyv3228.CodecDecodeSelf(d) } for { - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l + yyj3223++ + if yyhl3223 { + yyb3223 = yyj3223 > l } else { - yyb3180 = r.CheckBreak() + yyb3223 = r.CheckBreak() } - if yyb3180 { + if yyb3223 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3180-1, "") + z.DecStructFieldNotFound(yyj3223-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40663,37 +41274,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3186 := z.EncBinary() - _ = yym3186 + yym3229 := z.EncBinary() + _ = yym3229 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3187 := !z.EncBinary() - yy2arr3187 := z.EncBasicHandle().StructToArray - var yyq3187 [4]bool - _, _, _ = yysep3187, yyq3187, yy2arr3187 - const yyr3187 bool = false - yyq3187[0] = x.Kind != "" - yyq3187[1] = x.APIVersion != "" - yyq3187[2] = true - var yynn3187 int - if yyr3187 || yy2arr3187 { + yysep3230 := !z.EncBinary() + yy2arr3230 := z.EncBasicHandle().StructToArray + var yyq3230 [4]bool + _, _, _ = yysep3230, yyq3230, yy2arr3230 + const yyr3230 bool = false + yyq3230[0] = x.Kind != "" + yyq3230[1] = x.APIVersion != "" + yyq3230[2] = true + var yynn3230 int + if yyr3230 || yy2arr3230 { r.EncodeArrayStart(4) } else { - yynn3187 = 1 - for _, b := range yyq3187 { + yynn3230 = 1 + for _, b := range yyq3230 { if b { - yynn3187++ + yynn3230++ } } - r.EncodeMapStart(yynn3187) - yynn3187 = 0 + r.EncodeMapStart(yynn3230) + yynn3230 = 0 } - if yyr3187 || yy2arr3187 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3187[0] { - yym3189 := z.EncBinary() - _ = yym3189 + if yyq3230[0] { + yym3232 := z.EncBinary() + _ = yym3232 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40702,23 +41313,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3187[0] { + if yyq3230[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3190 := z.EncBinary() - _ = yym3190 + yym3233 := z.EncBinary() + _ = yym3233 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3187 || yy2arr3187 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3187[1] { - yym3192 := z.EncBinary() - _ = yym3192 + if yyq3230[1] { + yym3235 := z.EncBinary() + _ = yym3235 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40727,54 +41338,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3187[1] { + if yyq3230[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3193 := z.EncBinary() - _ = yym3193 + yym3236 := z.EncBinary() + _ = yym3236 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3187 || yy2arr3187 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3187[2] { - yy3195 := &x.ListMeta - yym3196 := z.EncBinary() - _ = yym3196 + if yyq3230[2] { + yy3238 := &x.ListMeta + yym3239 := z.EncBinary() + _ = yym3239 if false { - } else if z.HasExtensions() && z.EncExt(yy3195) { + } else if z.HasExtensions() && z.EncExt(yy3238) { } else { - z.EncFallback(yy3195) + z.EncFallback(yy3238) } } else { r.EncodeNil() } } else { - if yyq3187[2] { + if yyq3230[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3197 := &x.ListMeta - yym3198 := z.EncBinary() - _ = yym3198 + yy3240 := &x.ListMeta + yym3241 := z.EncBinary() + _ = yym3241 if false { - } else if z.HasExtensions() && z.EncExt(yy3197) { + } else if z.HasExtensions() && z.EncExt(yy3240) { } else { - z.EncFallback(yy3197) + z.EncFallback(yy3240) } } } - if yyr3187 || yy2arr3187 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3200 := z.EncBinary() - _ = yym3200 + yym3243 := z.EncBinary() + _ = yym3243 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -40787,15 +41398,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3201 := z.EncBinary() - _ = yym3201 + yym3244 := z.EncBinary() + _ = yym3244 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3187 || yy2arr3187 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40808,25 +41419,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3202 := z.DecBinary() - _ = yym3202 + yym3245 := z.DecBinary() + _ = yym3245 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3203 := r.ContainerType() - if yyct3203 == codecSelferValueTypeMap1234 { - yyl3203 := r.ReadMapStart() - if yyl3203 == 0 { + yyct3246 := r.ContainerType() + if yyct3246 == codecSelferValueTypeMap1234 { + yyl3246 := r.ReadMapStart() + if yyl3246 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3203, d) + x.codecDecodeSelfFromMap(yyl3246, d) } - } else if yyct3203 == codecSelferValueTypeArray1234 { - yyl3203 := r.ReadArrayStart() - if yyl3203 == 0 { + } else if yyct3246 == codecSelferValueTypeArray1234 { + yyl3246 := r.ReadArrayStart() + if yyl3246 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3203, d) + x.codecDecodeSelfFromArray(yyl3246, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40838,12 +41449,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3204Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3204Slc - var yyhl3204 bool = l >= 0 - for yyj3204 := 0; ; yyj3204++ { - if yyhl3204 { - if yyj3204 >= l { + var yys3247Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3247Slc + var yyhl3247 bool = l >= 0 + for yyj3247 := 0; ; yyj3247++ { + if yyhl3247 { + if yyj3247 >= l { break } } else { @@ -40852,10 +41463,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3204Slc = r.DecodeBytes(yys3204Slc, true, true) - yys3204 := string(yys3204Slc) + yys3247Slc = r.DecodeBytes(yys3247Slc, true, true) + yys3247 := string(yys3247Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3204 { + switch yys3247 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40872,31 +41483,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3207 := &x.ListMeta - yym3208 := z.DecBinary() - _ = yym3208 + yyv3250 := &x.ListMeta + yym3251 := z.DecBinary() + _ = yym3251 if false { - } else if z.HasExtensions() && z.DecExt(yyv3207) { + } else if z.HasExtensions() && z.DecExt(yyv3250) { } else { - z.DecFallback(yyv3207, false) + z.DecFallback(yyv3250, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3209 := &x.Items - yym3210 := z.DecBinary() - _ = yym3210 + yyv3252 := &x.Items + yym3253 := z.DecBinary() + _ = yym3253 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3209), d) + h.decSliceNamespace((*[]Namespace)(yyv3252), d) } } default: - z.DecStructFieldNotFound(-1, yys3204) - } // end switch yys3204 - } // end for yyj3204 + z.DecStructFieldNotFound(-1, yys3247) + } // end switch yys3247 + } // end for yyj3247 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40904,16 +41515,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3211 int - var yyb3211 bool - var yyhl3211 bool = l >= 0 - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + var yyj3254 int + var yyb3254 bool + var yyhl3254 bool = l >= 0 + yyj3254++ + if yyhl3254 { + yyb3254 = yyj3254 > l } else { - yyb3211 = r.CheckBreak() + yyb3254 = r.CheckBreak() } - if yyb3211 { + if yyb3254 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40923,13 +41534,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3254++ + if yyhl3254 { + yyb3254 = yyj3254 > l } else { - yyb3211 = r.CheckBreak() + yyb3254 = r.CheckBreak() } - if yyb3211 { + if yyb3254 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40939,13 +41550,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3254++ + if yyhl3254 { + yyb3254 = yyj3254 > l } else { - yyb3211 = r.CheckBreak() + yyb3254 = r.CheckBreak() } - if yyb3211 { + if yyb3254 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40953,22 +41564,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3214 := &x.ListMeta - yym3215 := z.DecBinary() - _ = yym3215 + yyv3257 := &x.ListMeta + yym3258 := z.DecBinary() + _ = yym3258 if false { - } else if z.HasExtensions() && z.DecExt(yyv3214) { + } else if z.HasExtensions() && z.DecExt(yyv3257) { } else { - z.DecFallback(yyv3214, false) + z.DecFallback(yyv3257, false) } } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3254++ + if yyhl3254 { + yyb3254 = yyj3254 > l } else { - yyb3211 = r.CheckBreak() + yyb3254 = r.CheckBreak() } - if yyb3211 { + if yyb3254 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40976,26 +41587,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3216 := &x.Items - yym3217 := z.DecBinary() - _ = yym3217 + yyv3259 := &x.Items + yym3260 := z.DecBinary() + _ = yym3260 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3216), d) + h.decSliceNamespace((*[]Namespace)(yyv3259), d) } } for { - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3254++ + if yyhl3254 { + yyb3254 = yyj3254 > l } else { - yyb3211 = r.CheckBreak() + yyb3254 = r.CheckBreak() } - if yyb3211 { + if yyb3254 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3211-1, "") + z.DecStructFieldNotFound(yyj3254-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41007,37 +41618,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3218 := z.EncBinary() - _ = yym3218 + yym3261 := z.EncBinary() + _ = yym3261 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3219 := !z.EncBinary() - yy2arr3219 := z.EncBasicHandle().StructToArray - var yyq3219 [4]bool - _, _, _ = yysep3219, yyq3219, yy2arr3219 - const yyr3219 bool = false - yyq3219[0] = x.Kind != "" - yyq3219[1] = x.APIVersion != "" - yyq3219[2] = true - var yynn3219 int - if yyr3219 || yy2arr3219 { + yysep3262 := !z.EncBinary() + yy2arr3262 := z.EncBasicHandle().StructToArray + var yyq3262 [4]bool + _, _, _ = yysep3262, yyq3262, yy2arr3262 + const yyr3262 bool = false + yyq3262[0] = x.Kind != "" + yyq3262[1] = x.APIVersion != "" + yyq3262[2] = true + var yynn3262 int + if yyr3262 || yy2arr3262 { r.EncodeArrayStart(4) } else { - yynn3219 = 1 - for _, b := range yyq3219 { + yynn3262 = 1 + for _, b := range yyq3262 { if b { - yynn3219++ + yynn3262++ } } - r.EncodeMapStart(yynn3219) - yynn3219 = 0 + r.EncodeMapStart(yynn3262) + yynn3262 = 0 } - if yyr3219 || yy2arr3219 { + if yyr3262 || yy2arr3262 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3219[0] { - yym3221 := z.EncBinary() - _ = yym3221 + if yyq3262[0] { + yym3264 := z.EncBinary() + _ = yym3264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41046,23 +41657,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3219[0] { + if yyq3262[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3222 := z.EncBinary() - _ = yym3222 + yym3265 := z.EncBinary() + _ = yym3265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3219 || yy2arr3219 { + if yyr3262 || yy2arr3262 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3219[1] { - yym3224 := z.EncBinary() - _ = yym3224 + if yyq3262[1] { + yym3267 := z.EncBinary() + _ = yym3267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41071,47 +41682,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3219[1] { + if yyq3262[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3225 := z.EncBinary() - _ = yym3225 + yym3268 := z.EncBinary() + _ = yym3268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3219 || yy2arr3219 { + if yyr3262 || yy2arr3262 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3219[2] { - yy3227 := &x.ObjectMeta - yy3227.CodecEncodeSelf(e) + if yyq3262[2] { + yy3270 := &x.ObjectMeta + yy3270.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3219[2] { + if yyq3262[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3228 := &x.ObjectMeta - yy3228.CodecEncodeSelf(e) + yy3271 := &x.ObjectMeta + yy3271.CodecEncodeSelf(e) } } - if yyr3219 || yy2arr3219 { + if yyr3262 || yy2arr3262 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3230 := &x.Target - yy3230.CodecEncodeSelf(e) + yy3273 := &x.Target + yy3273.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3231 := &x.Target - yy3231.CodecEncodeSelf(e) + yy3274 := &x.Target + yy3274.CodecEncodeSelf(e) } - if yyr3219 || yy2arr3219 { + if yyr3262 || yy2arr3262 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41124,25 +41735,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3232 := z.DecBinary() - _ = yym3232 + yym3275 := z.DecBinary() + _ = yym3275 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3233 := r.ContainerType() - if yyct3233 == codecSelferValueTypeMap1234 { - yyl3233 := r.ReadMapStart() - if yyl3233 == 0 { + yyct3276 := r.ContainerType() + if yyct3276 == codecSelferValueTypeMap1234 { + yyl3276 := r.ReadMapStart() + if yyl3276 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3233, d) + x.codecDecodeSelfFromMap(yyl3276, d) } - } else if yyct3233 == codecSelferValueTypeArray1234 { - yyl3233 := r.ReadArrayStart() - if yyl3233 == 0 { + } else if yyct3276 == codecSelferValueTypeArray1234 { + yyl3276 := r.ReadArrayStart() + if yyl3276 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3233, d) + x.codecDecodeSelfFromArray(yyl3276, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41154,12 +41765,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3234Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3234Slc - var yyhl3234 bool = l >= 0 - for yyj3234 := 0; ; yyj3234++ { - if yyhl3234 { - if yyj3234 >= l { + var yys3277Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3277Slc + var yyhl3277 bool = l >= 0 + for yyj3277 := 0; ; yyj3277++ { + if yyhl3277 { + if yyj3277 >= l { break } } else { @@ -41168,10 +41779,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3234Slc = r.DecodeBytes(yys3234Slc, true, true) - yys3234 := string(yys3234Slc) + yys3277Slc = r.DecodeBytes(yys3277Slc, true, true) + yys3277 := string(yys3277Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3234 { + switch yys3277 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41188,20 +41799,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3237 := &x.ObjectMeta - yyv3237.CodecDecodeSelf(d) + yyv3280 := &x.ObjectMeta + yyv3280.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3238 := &x.Target - yyv3238.CodecDecodeSelf(d) + yyv3281 := &x.Target + yyv3281.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3234) - } // end switch yys3234 - } // end for yyj3234 + z.DecStructFieldNotFound(-1, yys3277) + } // end switch yys3277 + } // end for yyj3277 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41209,16 +41820,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3239 int - var yyb3239 bool - var yyhl3239 bool = l >= 0 - yyj3239++ - if yyhl3239 { - yyb3239 = yyj3239 > l + var yyj3282 int + var yyb3282 bool + var yyhl3282 bool = l >= 0 + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3239 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3239 { + if yyb3282 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41228,13 +41839,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3239++ - if yyhl3239 { - yyb3239 = yyj3239 > l + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3239 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3239 { + if yyb3282 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41244,13 +41855,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3239++ - if yyhl3239 { - yyb3239 = yyj3239 > l + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3239 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3239 { + if yyb3282 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41258,16 +41869,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3242 := &x.ObjectMeta - yyv3242.CodecDecodeSelf(d) + yyv3285 := &x.ObjectMeta + yyv3285.CodecDecodeSelf(d) } - yyj3239++ - if yyhl3239 { - yyb3239 = yyj3239 > l + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3239 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3239 { + if yyb3282 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41275,21 +41886,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3243 := &x.Target - yyv3243.CodecDecodeSelf(d) + yyv3286 := &x.Target + yyv3286.CodecDecodeSelf(d) } for { - yyj3239++ - if yyhl3239 { - yyb3239 = yyj3239 > l + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3239 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3239 { + if yyb3282 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3239-1, "") + z.DecStructFieldNotFound(yyj3282-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41301,68 +41912,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3244 := z.EncBinary() - _ = yym3244 + yym3287 := z.EncBinary() + _ = yym3287 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3245 := !z.EncBinary() - yy2arr3245 := z.EncBasicHandle().StructToArray - var yyq3245 [1]bool - _, _, _ = yysep3245, yyq3245, yy2arr3245 - const yyr3245 bool = false - yyq3245[0] = x.UID != nil - var yynn3245 int - if yyr3245 || yy2arr3245 { + yysep3288 := !z.EncBinary() + yy2arr3288 := z.EncBasicHandle().StructToArray + var yyq3288 [1]bool + _, _, _ = yysep3288, yyq3288, yy2arr3288 + const yyr3288 bool = false + yyq3288[0] = x.UID != nil + var yynn3288 int + if yyr3288 || yy2arr3288 { r.EncodeArrayStart(1) } else { - yynn3245 = 0 - for _, b := range yyq3245 { + yynn3288 = 0 + for _, b := range yyq3288 { if b { - yynn3245++ + yynn3288++ } } - r.EncodeMapStart(yynn3245) - yynn3245 = 0 + r.EncodeMapStart(yynn3288) + yynn3288 = 0 } - if yyr3245 || yy2arr3245 { + if yyr3288 || yy2arr3288 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3245[0] { + if yyq3288[0] { if x.UID == nil { r.EncodeNil() } else { - yy3247 := *x.UID - yym3248 := z.EncBinary() - _ = yym3248 + yy3290 := *x.UID + yym3291 := z.EncBinary() + _ = yym3291 if false { - } else if z.HasExtensions() && z.EncExt(yy3247) { + } else if z.HasExtensions() && z.EncExt(yy3290) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3247)) + r.EncodeString(codecSelferC_UTF81234, string(yy3290)) } } } else { r.EncodeNil() } } else { - if yyq3245[0] { + if yyq3288[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3249 := *x.UID - yym3250 := z.EncBinary() - _ = yym3250 + yy3292 := *x.UID + yym3293 := z.EncBinary() + _ = yym3293 if false { - } else if z.HasExtensions() && z.EncExt(yy3249) { + } else if z.HasExtensions() && z.EncExt(yy3292) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3249)) + r.EncodeString(codecSelferC_UTF81234, string(yy3292)) } } } } - if yyr3245 || yy2arr3245 { + if yyr3288 || yy2arr3288 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41375,25 +41986,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3251 := z.DecBinary() - _ = yym3251 + yym3294 := z.DecBinary() + _ = yym3294 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3252 := r.ContainerType() - if yyct3252 == codecSelferValueTypeMap1234 { - yyl3252 := r.ReadMapStart() - if yyl3252 == 0 { + yyct3295 := r.ContainerType() + if yyct3295 == codecSelferValueTypeMap1234 { + yyl3295 := r.ReadMapStart() + if yyl3295 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3252, d) + x.codecDecodeSelfFromMap(yyl3295, d) } - } else if yyct3252 == codecSelferValueTypeArray1234 { - yyl3252 := r.ReadArrayStart() - if yyl3252 == 0 { + } else if yyct3295 == codecSelferValueTypeArray1234 { + yyl3295 := r.ReadArrayStart() + if yyl3295 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3252, d) + x.codecDecodeSelfFromArray(yyl3295, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41405,12 +42016,12 @@ func (x *Preconditions) 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 yys3296Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3296Slc + var yyhl3296 bool = l >= 0 + for yyj3296 := 0; ; yyj3296++ { + if yyhl3296 { + if yyj3296 >= l { break } } else { @@ -41419,10 +42030,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3253Slc = r.DecodeBytes(yys3253Slc, true, true) - yys3253 := string(yys3253Slc) + yys3296Slc = r.DecodeBytes(yys3296Slc, true, true) + yys3296 := string(yys3296Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3253 { + switch yys3296 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -41432,8 +42043,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3255 := z.DecBinary() - _ = yym3255 + yym3298 := z.DecBinary() + _ = yym3298 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41441,9 +42052,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3253) - } // end switch yys3253 - } // end for yyj3253 + z.DecStructFieldNotFound(-1, yys3296) + } // end switch yys3296 + } // end for yyj3296 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41451,16 +42062,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3256 int - var yyb3256 bool - var yyhl3256 bool = l >= 0 - yyj3256++ - if yyhl3256 { - yyb3256 = yyj3256 > l + var yyj3299 int + var yyb3299 bool + var yyhl3299 bool = l >= 0 + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l } else { - yyb3256 = r.CheckBreak() + yyb3299 = r.CheckBreak() } - if yyb3256 { + if yyb3299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41473,8 +42084,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3258 := z.DecBinary() - _ = yym3258 + yym3301 := z.DecBinary() + _ = yym3301 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41482,17 +42093,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3256++ - if yyhl3256 { - yyb3256 = yyj3256 > l + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l } else { - yyb3256 = r.CheckBreak() + yyb3299 = r.CheckBreak() } - if yyb3256 { + if yyb3299 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3256-1, "") + z.DecStructFieldNotFound(yyj3299-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41504,39 +42115,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3259 := z.EncBinary() - _ = yym3259 + yym3302 := z.EncBinary() + _ = yym3302 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3260 := !z.EncBinary() - yy2arr3260 := z.EncBasicHandle().StructToArray - var yyq3260 [5]bool - _, _, _ = yysep3260, yyq3260, yy2arr3260 - const yyr3260 bool = false - yyq3260[0] = x.Kind != "" - yyq3260[1] = x.APIVersion != "" - yyq3260[2] = x.GracePeriodSeconds != nil - yyq3260[3] = x.Preconditions != nil - yyq3260[4] = x.OrphanDependents != nil - var yynn3260 int - if yyr3260 || yy2arr3260 { + yysep3303 := !z.EncBinary() + yy2arr3303 := z.EncBasicHandle().StructToArray + var yyq3303 [5]bool + _, _, _ = yysep3303, yyq3303, yy2arr3303 + const yyr3303 bool = false + yyq3303[0] = x.Kind != "" + yyq3303[1] = x.APIVersion != "" + yyq3303[2] = x.GracePeriodSeconds != nil + yyq3303[3] = x.Preconditions != nil + yyq3303[4] = x.OrphanDependents != nil + var yynn3303 int + if yyr3303 || yy2arr3303 { r.EncodeArrayStart(5) } else { - yynn3260 = 0 - for _, b := range yyq3260 { + yynn3303 = 0 + for _, b := range yyq3303 { if b { - yynn3260++ + yynn3303++ } } - r.EncodeMapStart(yynn3260) - yynn3260 = 0 + r.EncodeMapStart(yynn3303) + yynn3303 = 0 } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[0] { - yym3262 := z.EncBinary() - _ = yym3262 + if yyq3303[0] { + yym3305 := z.EncBinary() + _ = yym3305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41545,23 +42156,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3260[0] { + if yyq3303[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3263 := z.EncBinary() - _ = yym3263 + yym3306 := z.EncBinary() + _ = yym3306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[1] { - yym3265 := z.EncBinary() - _ = yym3265 + if yyq3303[1] { + yym3308 := z.EncBinary() + _ = yym3308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41570,56 +42181,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3260[1] { + if yyq3303[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3266 := z.EncBinary() - _ = yym3266 + yym3309 := z.EncBinary() + _ = yym3309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[2] { + if yyq3303[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3268 := *x.GracePeriodSeconds - yym3269 := z.EncBinary() - _ = yym3269 + yy3311 := *x.GracePeriodSeconds + yym3312 := z.EncBinary() + _ = yym3312 if false { } else { - r.EncodeInt(int64(yy3268)) + r.EncodeInt(int64(yy3311)) } } } else { r.EncodeNil() } } else { - if yyq3260[2] { + if yyq3303[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3270 := *x.GracePeriodSeconds - yym3271 := z.EncBinary() - _ = yym3271 + yy3313 := *x.GracePeriodSeconds + yym3314 := z.EncBinary() + _ = yym3314 if false { } else { - r.EncodeInt(int64(yy3270)) + r.EncodeInt(int64(yy3313)) } } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[3] { + if yyq3303[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -41629,7 +42240,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3260[3] { + if yyq3303[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41640,42 +42251,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3260[4] { + if yyq3303[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3274 := *x.OrphanDependents - yym3275 := z.EncBinary() - _ = yym3275 + yy3317 := *x.OrphanDependents + yym3318 := z.EncBinary() + _ = yym3318 if false { } else { - r.EncodeBool(bool(yy3274)) + r.EncodeBool(bool(yy3317)) } } } else { r.EncodeNil() } } else { - if yyq3260[4] { + if yyq3303[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3276 := *x.OrphanDependents - yym3277 := z.EncBinary() - _ = yym3277 + yy3319 := *x.OrphanDependents + yym3320 := z.EncBinary() + _ = yym3320 if false { } else { - r.EncodeBool(bool(yy3276)) + r.EncodeBool(bool(yy3319)) } } } } - if yyr3260 || yy2arr3260 { + if yyr3303 || yy2arr3303 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41688,25 +42299,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3278 := z.DecBinary() - _ = yym3278 + yym3321 := z.DecBinary() + _ = yym3321 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3279 := r.ContainerType() - if yyct3279 == codecSelferValueTypeMap1234 { - yyl3279 := r.ReadMapStart() - if yyl3279 == 0 { + yyct3322 := r.ContainerType() + if yyct3322 == codecSelferValueTypeMap1234 { + yyl3322 := r.ReadMapStart() + if yyl3322 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3279, d) + x.codecDecodeSelfFromMap(yyl3322, d) } - } else if yyct3279 == codecSelferValueTypeArray1234 { - yyl3279 := r.ReadArrayStart() - if yyl3279 == 0 { + } else if yyct3322 == codecSelferValueTypeArray1234 { + yyl3322 := r.ReadArrayStart() + if yyl3322 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3279, d) + x.codecDecodeSelfFromArray(yyl3322, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41718,12 +42329,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3280Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3280Slc - var yyhl3280 bool = l >= 0 - for yyj3280 := 0; ; yyj3280++ { - if yyhl3280 { - if yyj3280 >= l { + var yys3323Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3323Slc + var yyhl3323 bool = l >= 0 + for yyj3323 := 0; ; yyj3323++ { + if yyhl3323 { + if yyj3323 >= l { break } } else { @@ -41732,10 +42343,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3280Slc = r.DecodeBytes(yys3280Slc, true, true) - yys3280 := string(yys3280Slc) + yys3323Slc = r.DecodeBytes(yys3323Slc, true, true) + yys3323 := string(yys3323Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3280 { + switch yys3323 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41757,8 +42368,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3284 := z.DecBinary() - _ = yym3284 + yym3327 := z.DecBinary() + _ = yym3327 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -41784,17 +42395,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3287 := z.DecBinary() - _ = yym3287 + yym3330 := z.DecBinary() + _ = yym3330 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3280) - } // end switch yys3280 - } // end for yyj3280 + z.DecStructFieldNotFound(-1, yys3323) + } // end switch yys3323 + } // end for yyj3323 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41802,16 +42413,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3288 int - var yyb3288 bool - var yyhl3288 bool = l >= 0 - yyj3288++ - if yyhl3288 { - yyb3288 = yyj3288 > l + var yyj3331 int + var yyb3331 bool + var yyhl3331 bool = l >= 0 + yyj3331++ + if yyhl3331 { + yyb3331 = yyj3331 > l } else { - yyb3288 = r.CheckBreak() + yyb3331 = r.CheckBreak() } - if yyb3288 { + if yyb3331 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41821,13 +42432,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3288++ - if yyhl3288 { - yyb3288 = yyj3288 > l + yyj3331++ + if yyhl3331 { + yyb3331 = yyj3331 > l } else { - yyb3288 = r.CheckBreak() + yyb3331 = r.CheckBreak() } - if yyb3288 { + if yyb3331 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41837,13 +42448,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3288++ - if yyhl3288 { - yyb3288 = yyj3288 > l + yyj3331++ + if yyhl3331 { + yyb3331 = yyj3331 > l } else { - yyb3288 = r.CheckBreak() + yyb3331 = r.CheckBreak() } - if yyb3288 { + if yyb3331 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41856,20 +42467,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3292 := z.DecBinary() - _ = yym3292 + yym3335 := z.DecBinary() + _ = yym3335 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3288++ - if yyhl3288 { - yyb3288 = yyj3288 > l + yyj3331++ + if yyhl3331 { + yyb3331 = yyj3331 > l } else { - yyb3288 = r.CheckBreak() + yyb3331 = r.CheckBreak() } - if yyb3288 { + if yyb3331 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41884,13 +42495,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3288++ - if yyhl3288 { - yyb3288 = yyj3288 > l + yyj3331++ + if yyhl3331 { + yyb3331 = yyj3331 > l } else { - yyb3288 = r.CheckBreak() + yyb3331 = r.CheckBreak() } - if yyb3288 { + if yyb3331 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41903,25 +42514,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3295 := z.DecBinary() - _ = yym3295 + yym3338 := z.DecBinary() + _ = yym3338 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3288++ - if yyhl3288 { - yyb3288 = yyj3288 > l + yyj3331++ + if yyhl3331 { + yyb3331 = yyj3331 > l } else { - yyb3288 = r.CheckBreak() + yyb3331 = r.CheckBreak() } - if yyb3288 { + if yyb3331 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3288-1, "") + z.DecStructFieldNotFound(yyj3331-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41933,36 +42544,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3296 := z.EncBinary() - _ = yym3296 + yym3339 := z.EncBinary() + _ = yym3339 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3297 := !z.EncBinary() - yy2arr3297 := z.EncBasicHandle().StructToArray - var yyq3297 [4]bool - _, _, _ = yysep3297, yyq3297, yy2arr3297 - const yyr3297 bool = false - yyq3297[0] = x.Kind != "" - yyq3297[1] = x.APIVersion != "" - var yynn3297 int - if yyr3297 || yy2arr3297 { + yysep3340 := !z.EncBinary() + yy2arr3340 := z.EncBasicHandle().StructToArray + var yyq3340 [4]bool + _, _, _ = yysep3340, yyq3340, yy2arr3340 + const yyr3340 bool = false + yyq3340[0] = x.Kind != "" + yyq3340[1] = x.APIVersion != "" + var yynn3340 int + if yyr3340 || yy2arr3340 { r.EncodeArrayStart(4) } else { - yynn3297 = 2 - for _, b := range yyq3297 { + yynn3340 = 2 + for _, b := range yyq3340 { if b { - yynn3297++ + yynn3340++ } } - r.EncodeMapStart(yynn3297) - yynn3297 = 0 + r.EncodeMapStart(yynn3340) + yynn3340 = 0 } - if yyr3297 || yy2arr3297 { + if yyr3340 || yy2arr3340 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3297[0] { - yym3299 := z.EncBinary() - _ = yym3299 + if yyq3340[0] { + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41971,23 +42582,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3297[0] { + if yyq3340[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3300 := z.EncBinary() - _ = yym3300 + yym3343 := z.EncBinary() + _ = yym3343 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3297 || yy2arr3297 { + if yyr3340 || yy2arr3340 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3297[1] { - yym3302 := z.EncBinary() - _ = yym3302 + if yyq3340[1] { + yym3345 := z.EncBinary() + _ = yym3345 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41996,22 +42607,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3297[1] { + if yyq3340[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3303 := z.EncBinary() - _ = yym3303 + yym3346 := z.EncBinary() + _ = yym3346 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3297 || yy2arr3297 { + if yyr3340 || yy2arr3340 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3305 := z.EncBinary() - _ = yym3305 + yym3348 := z.EncBinary() + _ = yym3348 if false { } else { r.EncodeBool(bool(x.Export)) @@ -42020,17 +42631,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3306 := z.EncBinary() - _ = yym3306 + yym3349 := z.EncBinary() + _ = yym3349 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3297 || yy2arr3297 { + if yyr3340 || yy2arr3340 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3308 := z.EncBinary() - _ = yym3308 + yym3351 := z.EncBinary() + _ = yym3351 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -42039,14 +42650,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3309 := z.EncBinary() - _ = yym3309 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3297 || yy2arr3297 { + if yyr3340 || yy2arr3340 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42059,25 +42670,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3310 := z.DecBinary() - _ = yym3310 + yym3353 := z.DecBinary() + _ = yym3353 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3311 := r.ContainerType() - if yyct3311 == codecSelferValueTypeMap1234 { - yyl3311 := r.ReadMapStart() - if yyl3311 == 0 { + yyct3354 := r.ContainerType() + if yyct3354 == codecSelferValueTypeMap1234 { + yyl3354 := r.ReadMapStart() + if yyl3354 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3311, d) + x.codecDecodeSelfFromMap(yyl3354, d) } - } else if yyct3311 == codecSelferValueTypeArray1234 { - yyl3311 := r.ReadArrayStart() - if yyl3311 == 0 { + } else if yyct3354 == codecSelferValueTypeArray1234 { + yyl3354 := r.ReadArrayStart() + if yyl3354 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3311, d) + x.codecDecodeSelfFromArray(yyl3354, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42089,12 +42700,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3312Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3312Slc - var yyhl3312 bool = l >= 0 - for yyj3312 := 0; ; yyj3312++ { - if yyhl3312 { - if yyj3312 >= 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 { @@ -42103,10 +42714,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3312Slc = r.DecodeBytes(yys3312Slc, true, true) - yys3312 := string(yys3312Slc) + yys3355Slc = r.DecodeBytes(yys3355Slc, true, true) + yys3355 := string(yys3355Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3312 { + switch yys3355 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42132,9 +42743,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3312) - } // end switch yys3312 - } // end for yyj3312 + z.DecStructFieldNotFound(-1, yys3355) + } // end switch yys3355 + } // end for yyj3355 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42142,16 +42753,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3317 int - var yyb3317 bool - var yyhl3317 bool = l >= 0 - yyj3317++ - if yyhl3317 { - yyb3317 = yyj3317 > l + var yyj3360 int + var yyb3360 bool + var yyhl3360 bool = l >= 0 + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3317 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3317 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42161,13 +42772,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3317++ - if yyhl3317 { - yyb3317 = yyj3317 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3317 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3317 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42177,13 +42788,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3317++ - if yyhl3317 { - yyb3317 = yyj3317 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3317 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3317 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42193,13 +42804,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3317++ - if yyhl3317 { - yyb3317 = yyj3317 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3317 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3317 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42210,17 +42821,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3317++ - if yyhl3317 { - yyb3317 = yyj3317 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3317 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3317 { + if yyb3360 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3317-1, "") + z.DecStructFieldNotFound(yyj3360-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42232,41 +42843,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3322 := z.EncBinary() - _ = yym3322 + yym3365 := z.EncBinary() + _ = yym3365 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3323 := !z.EncBinary() - yy2arr3323 := z.EncBasicHandle().StructToArray - var yyq3323 [7]bool - _, _, _ = yysep3323, yyq3323, yy2arr3323 - const yyr3323 bool = false - yyq3323[0] = x.Kind != "" - yyq3323[1] = x.APIVersion != "" - yyq3323[2] = x.LabelSelector != "" - yyq3323[3] = x.FieldSelector != "" - yyq3323[4] = x.Watch != false - yyq3323[5] = x.ResourceVersion != "" - yyq3323[6] = x.TimeoutSeconds != nil - var yynn3323 int - if yyr3323 || yy2arr3323 { + yysep3366 := !z.EncBinary() + yy2arr3366 := z.EncBasicHandle().StructToArray + var yyq3366 [7]bool + _, _, _ = yysep3366, yyq3366, yy2arr3366 + const yyr3366 bool = false + yyq3366[0] = x.Kind != "" + yyq3366[1] = x.APIVersion != "" + yyq3366[2] = x.LabelSelector != "" + yyq3366[3] = x.FieldSelector != "" + yyq3366[4] = x.Watch != false + yyq3366[5] = x.ResourceVersion != "" + yyq3366[6] = x.TimeoutSeconds != nil + var yynn3366 int + if yyr3366 || yy2arr3366 { r.EncodeArrayStart(7) } else { - yynn3323 = 0 - for _, b := range yyq3323 { + yynn3366 = 0 + for _, b := range yyq3366 { if b { - yynn3323++ + yynn3366++ } } - r.EncodeMapStart(yynn3323) - yynn3323 = 0 + r.EncodeMapStart(yynn3366) + yynn3366 = 0 } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[0] { - yym3325 := z.EncBinary() - _ = yym3325 + if yyq3366[0] { + yym3368 := z.EncBinary() + _ = yym3368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42275,23 +42886,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3323[0] { + if yyq3366[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3326 := z.EncBinary() - _ = yym3326 + yym3369 := z.EncBinary() + _ = yym3369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[1] { - yym3328 := z.EncBinary() - _ = yym3328 + if yyq3366[1] { + yym3371 := z.EncBinary() + _ = yym3371 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42300,23 +42911,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3323[1] { + if yyq3366[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3329 := z.EncBinary() - _ = yym3329 + yym3372 := z.EncBinary() + _ = yym3372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[2] { - yym3331 := z.EncBinary() - _ = yym3331 + if yyq3366[2] { + yym3374 := z.EncBinary() + _ = yym3374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -42325,23 +42936,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3323[2] { + if yyq3366[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3332 := z.EncBinary() - _ = yym3332 + yym3375 := z.EncBinary() + _ = yym3375 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[3] { - yym3334 := z.EncBinary() - _ = yym3334 + if yyq3366[3] { + yym3377 := z.EncBinary() + _ = yym3377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -42350,23 +42961,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3323[3] { + if yyq3366[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3335 := z.EncBinary() - _ = yym3335 + yym3378 := z.EncBinary() + _ = yym3378 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[4] { - yym3337 := z.EncBinary() - _ = yym3337 + if yyq3366[4] { + yym3380 := z.EncBinary() + _ = yym3380 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42375,23 +42986,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3323[4] { + if yyq3366[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3338 := z.EncBinary() - _ = yym3338 + yym3381 := z.EncBinary() + _ = yym3381 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[5] { - yym3340 := z.EncBinary() - _ = yym3340 + if yyq3366[5] { + yym3383 := z.EncBinary() + _ = yym3383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -42400,54 +43011,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3323[5] { + if yyq3366[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3341 := z.EncBinary() - _ = yym3341 + yym3384 := z.EncBinary() + _ = yym3384 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3323[6] { + if yyq3366[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3343 := *x.TimeoutSeconds - yym3344 := z.EncBinary() - _ = yym3344 + yy3386 := *x.TimeoutSeconds + yym3387 := z.EncBinary() + _ = yym3387 if false { } else { - r.EncodeInt(int64(yy3343)) + r.EncodeInt(int64(yy3386)) } } } else { r.EncodeNil() } } else { - if yyq3323[6] { + if yyq3366[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3345 := *x.TimeoutSeconds - yym3346 := z.EncBinary() - _ = yym3346 + yy3388 := *x.TimeoutSeconds + yym3389 := z.EncBinary() + _ = yym3389 if false { } else { - r.EncodeInt(int64(yy3345)) + r.EncodeInt(int64(yy3388)) } } } } - if yyr3323 || yy2arr3323 { + if yyr3366 || yy2arr3366 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42460,25 +43071,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3347 := z.DecBinary() - _ = yym3347 + yym3390 := z.DecBinary() + _ = yym3390 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3348 := r.ContainerType() - if yyct3348 == codecSelferValueTypeMap1234 { - yyl3348 := r.ReadMapStart() - if yyl3348 == 0 { + yyct3391 := r.ContainerType() + if yyct3391 == codecSelferValueTypeMap1234 { + yyl3391 := r.ReadMapStart() + if yyl3391 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3348, d) + x.codecDecodeSelfFromMap(yyl3391, d) } - } else if yyct3348 == codecSelferValueTypeArray1234 { - yyl3348 := r.ReadArrayStart() - if yyl3348 == 0 { + } else if yyct3391 == codecSelferValueTypeArray1234 { + yyl3391 := r.ReadArrayStart() + if yyl3391 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3348, d) + x.codecDecodeSelfFromArray(yyl3391, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42490,12 +43101,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3349Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3349Slc - var yyhl3349 bool = l >= 0 - for yyj3349 := 0; ; yyj3349++ { - if yyhl3349 { - if yyj3349 >= l { + var yys3392Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3392Slc + var yyhl3392 bool = l >= 0 + for yyj3392 := 0; ; yyj3392++ { + if yyhl3392 { + if yyj3392 >= l { break } } else { @@ -42504,10 +43115,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3349Slc = r.DecodeBytes(yys3349Slc, true, true) - yys3349 := string(yys3349Slc) + yys3392Slc = r.DecodeBytes(yys3392Slc, true, true) + yys3392 := string(yys3392Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3349 { + switch yys3392 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42553,17 +43164,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3357 := z.DecBinary() - _ = yym3357 + yym3400 := z.DecBinary() + _ = yym3400 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3349) - } // end switch yys3349 - } // end for yyj3349 + z.DecStructFieldNotFound(-1, yys3392) + } // end switch yys3392 + } // end for yyj3392 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42571,16 +43182,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3358 int - var yyb3358 bool - var yyhl3358 bool = l >= 0 - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + var yyj3401 int + var yyb3401 bool + var yyhl3401 bool = l >= 0 + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42590,13 +43201,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42606,13 +43217,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42622,13 +43233,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42638,13 +43249,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42654,13 +43265,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42670,13 +43281,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42689,25 +43300,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3366 := z.DecBinary() - _ = yym3366 + yym3409 := z.DecBinary() + _ = yym3409 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3401++ + if yyhl3401 { + yyb3401 = yyj3401 > l } else { - yyb3358 = r.CheckBreak() + yyb3401 = r.CheckBreak() } - if yyb3358 { + if yyb3401 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3358-1, "") + z.DecStructFieldNotFound(yyj3401-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42719,44 +43330,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3367 := z.EncBinary() - _ = yym3367 + yym3410 := z.EncBinary() + _ = yym3410 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3368 := !z.EncBinary() - yy2arr3368 := z.EncBasicHandle().StructToArray - var yyq3368 [10]bool - _, _, _ = yysep3368, yyq3368, yy2arr3368 - const yyr3368 bool = false - yyq3368[0] = x.Kind != "" - yyq3368[1] = x.APIVersion != "" - yyq3368[2] = x.Container != "" - yyq3368[3] = x.Follow != false - yyq3368[4] = x.Previous != false - yyq3368[5] = x.SinceSeconds != nil - yyq3368[6] = x.SinceTime != nil - yyq3368[7] = x.Timestamps != false - yyq3368[8] = x.TailLines != nil - yyq3368[9] = x.LimitBytes != nil - var yynn3368 int - if yyr3368 || yy2arr3368 { + yysep3411 := !z.EncBinary() + yy2arr3411 := z.EncBasicHandle().StructToArray + var yyq3411 [10]bool + _, _, _ = yysep3411, yyq3411, yy2arr3411 + const yyr3411 bool = false + yyq3411[0] = x.Kind != "" + yyq3411[1] = x.APIVersion != "" + yyq3411[2] = x.Container != "" + yyq3411[3] = x.Follow != false + yyq3411[4] = x.Previous != false + yyq3411[5] = x.SinceSeconds != nil + yyq3411[6] = x.SinceTime != nil + yyq3411[7] = x.Timestamps != false + yyq3411[8] = x.TailLines != nil + yyq3411[9] = x.LimitBytes != nil + var yynn3411 int + if yyr3411 || yy2arr3411 { r.EncodeArrayStart(10) } else { - yynn3368 = 0 - for _, b := range yyq3368 { + yynn3411 = 0 + for _, b := range yyq3411 { if b { - yynn3368++ + yynn3411++ } } - r.EncodeMapStart(yynn3368) - yynn3368 = 0 + r.EncodeMapStart(yynn3411) + yynn3411 = 0 } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[0] { - yym3370 := z.EncBinary() - _ = yym3370 + if yyq3411[0] { + yym3413 := z.EncBinary() + _ = yym3413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42765,23 +43376,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3368[0] { + if yyq3411[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3371 := z.EncBinary() - _ = yym3371 + yym3414 := z.EncBinary() + _ = yym3414 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[1] { - yym3373 := z.EncBinary() - _ = yym3373 + if yyq3411[1] { + yym3416 := z.EncBinary() + _ = yym3416 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42790,23 +43401,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3368[1] { + if yyq3411[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3374 := z.EncBinary() - _ = yym3374 + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[2] { - yym3376 := z.EncBinary() - _ = yym3376 + if yyq3411[2] { + yym3419 := z.EncBinary() + _ = yym3419 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -42815,23 +43426,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3368[2] { + if yyq3411[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3377 := z.EncBinary() - _ = yym3377 + yym3420 := z.EncBinary() + _ = yym3420 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[3] { - yym3379 := z.EncBinary() - _ = yym3379 + if yyq3411[3] { + yym3422 := z.EncBinary() + _ = yym3422 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -42840,23 +43451,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3368[3] { + if yyq3411[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3380 := z.EncBinary() - _ = yym3380 + yym3423 := z.EncBinary() + _ = yym3423 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[4] { - yym3382 := z.EncBinary() - _ = yym3382 + if yyq3411[4] { + yym3425 := z.EncBinary() + _ = yym3425 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -42865,66 +43476,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3368[4] { + if yyq3411[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3383 := z.EncBinary() - _ = yym3383 + yym3426 := z.EncBinary() + _ = yym3426 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[5] { + if yyq3411[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3385 := *x.SinceSeconds - yym3386 := z.EncBinary() - _ = yym3386 + yy3428 := *x.SinceSeconds + yym3429 := z.EncBinary() + _ = yym3429 if false { } else { - r.EncodeInt(int64(yy3385)) + r.EncodeInt(int64(yy3428)) } } } else { r.EncodeNil() } } else { - if yyq3368[5] { + if yyq3411[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3387 := *x.SinceSeconds - yym3388 := z.EncBinary() - _ = yym3388 + yy3430 := *x.SinceSeconds + yym3431 := z.EncBinary() + _ = yym3431 if false { } else { - r.EncodeInt(int64(yy3387)) + r.EncodeInt(int64(yy3430)) } } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[6] { + if yyq3411[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3390 := z.EncBinary() - _ = yym3390 + yym3433 := z.EncBinary() + _ = yym3433 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3390 { + } else if yym3433 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3390 && z.IsJSONHandle() { + } else if !yym3433 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42934,20 +43545,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3368[6] { + if yyq3411[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3391 := z.EncBinary() - _ = yym3391 + yym3434 := z.EncBinary() + _ = yym3434 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3391 { + } else if yym3434 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3391 && z.IsJSONHandle() { + } else if !yym3434 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42955,11 +43566,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[7] { - yym3393 := z.EncBinary() - _ = yym3393 + if yyq3411[7] { + yym3436 := z.EncBinary() + _ = yym3436 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -42968,89 +43579,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3368[7] { + if yyq3411[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3394 := z.EncBinary() - _ = yym3394 + yym3437 := z.EncBinary() + _ = yym3437 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[8] { + if yyq3411[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3396 := *x.TailLines - yym3397 := z.EncBinary() - _ = yym3397 + yy3439 := *x.TailLines + yym3440 := z.EncBinary() + _ = yym3440 if false { } else { - r.EncodeInt(int64(yy3396)) + r.EncodeInt(int64(yy3439)) } } } else { r.EncodeNil() } } else { - if yyq3368[8] { + if yyq3411[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3398 := *x.TailLines - yym3399 := z.EncBinary() - _ = yym3399 + yy3441 := *x.TailLines + yym3442 := z.EncBinary() + _ = yym3442 if false { } else { - r.EncodeInt(int64(yy3398)) + r.EncodeInt(int64(yy3441)) } } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3368[9] { + if yyq3411[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3401 := *x.LimitBytes - yym3402 := z.EncBinary() - _ = yym3402 + yy3444 := *x.LimitBytes + yym3445 := z.EncBinary() + _ = yym3445 if false { } else { - r.EncodeInt(int64(yy3401)) + r.EncodeInt(int64(yy3444)) } } } else { r.EncodeNil() } } else { - if yyq3368[9] { + if yyq3411[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3403 := *x.LimitBytes - yym3404 := z.EncBinary() - _ = yym3404 + yy3446 := *x.LimitBytes + yym3447 := z.EncBinary() + _ = yym3447 if false { } else { - r.EncodeInt(int64(yy3403)) + r.EncodeInt(int64(yy3446)) } } } } - if yyr3368 || yy2arr3368 { + if yyr3411 || yy2arr3411 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43063,25 +43674,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3405 := z.DecBinary() - _ = yym3405 + yym3448 := z.DecBinary() + _ = yym3448 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3406 := r.ContainerType() - if yyct3406 == codecSelferValueTypeMap1234 { - yyl3406 := r.ReadMapStart() - if yyl3406 == 0 { + yyct3449 := r.ContainerType() + if yyct3449 == codecSelferValueTypeMap1234 { + yyl3449 := r.ReadMapStart() + if yyl3449 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3406, d) + x.codecDecodeSelfFromMap(yyl3449, d) } - } else if yyct3406 == codecSelferValueTypeArray1234 { - yyl3406 := r.ReadArrayStart() - if yyl3406 == 0 { + } else if yyct3449 == codecSelferValueTypeArray1234 { + yyl3449 := r.ReadArrayStart() + if yyl3449 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3406, d) + x.codecDecodeSelfFromArray(yyl3449, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43093,12 +43704,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3407Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3407Slc - var yyhl3407 bool = l >= 0 - for yyj3407 := 0; ; yyj3407++ { - if yyhl3407 { - if yyj3407 >= l { + var yys3450Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3450Slc + var yyhl3450 bool = l >= 0 + for yyj3450 := 0; ; yyj3450++ { + if yyhl3450 { + if yyj3450 >= l { break } } else { @@ -43107,10 +43718,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3407Slc = r.DecodeBytes(yys3407Slc, true, true) - yys3407 := string(yys3407Slc) + yys3450Slc = r.DecodeBytes(yys3450Slc, true, true) + yys3450 := string(yys3450Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3407 { + switch yys3450 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43150,8 +43761,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3414 := z.DecBinary() - _ = yym3414 + yym3457 := z.DecBinary() + _ = yym3457 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -43166,13 +43777,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3416 := z.DecBinary() - _ = yym3416 + yym3459 := z.DecBinary() + _ = yym3459 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3416 { + } else if yym3459 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3416 && z.IsJSONHandle() { + } else if !yym3459 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -43193,8 +43804,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3419 := z.DecBinary() - _ = yym3419 + yym3462 := z.DecBinary() + _ = yym3462 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -43209,17 +43820,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3421 := z.DecBinary() - _ = yym3421 + yym3464 := z.DecBinary() + _ = yym3464 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3407) - } // end switch yys3407 - } // end for yyj3407 + z.DecStructFieldNotFound(-1, yys3450) + } // end switch yys3450 + } // end for yyj3450 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43227,16 +43838,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3422 int - var yyb3422 bool - var yyhl3422 bool = l >= 0 - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + var yyj3465 int + var yyb3465 bool + var yyhl3465 bool = l >= 0 + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43246,13 +43857,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43262,13 +43873,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43278,13 +43889,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43294,13 +43905,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43310,13 +43921,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43329,20 +43940,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3429 := z.DecBinary() - _ = yym3429 + yym3472 := z.DecBinary() + _ = yym3472 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43355,25 +43966,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3431 := z.DecBinary() - _ = yym3431 + yym3474 := z.DecBinary() + _ = yym3474 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3431 { + } else if yym3474 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3431 && z.IsJSONHandle() { + } else if !yym3474 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43383,13 +43994,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43402,20 +44013,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3434 := z.DecBinary() - _ = yym3434 + yym3477 := z.DecBinary() + _ = yym3477 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43428,25 +44039,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3436 := z.DecBinary() - _ = yym3436 + yym3479 := z.DecBinary() + _ = yym3479 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3465++ + if yyhl3465 { + yyb3465 = yyj3465 > l } else { - yyb3422 = r.CheckBreak() + yyb3465 = r.CheckBreak() } - if yyb3422 { + if yyb3465 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3422-1, "") + z.DecStructFieldNotFound(yyj3465-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43458,41 +44069,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3437 := z.EncBinary() - _ = yym3437 + yym3480 := z.EncBinary() + _ = yym3480 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3438 := !z.EncBinary() - yy2arr3438 := z.EncBasicHandle().StructToArray - var yyq3438 [7]bool - _, _, _ = yysep3438, yyq3438, yy2arr3438 - const yyr3438 bool = false - yyq3438[0] = x.Kind != "" - yyq3438[1] = x.APIVersion != "" - yyq3438[2] = x.Stdin != false - yyq3438[3] = x.Stdout != false - yyq3438[4] = x.Stderr != false - yyq3438[5] = x.TTY != false - yyq3438[6] = x.Container != "" - var yynn3438 int - if yyr3438 || yy2arr3438 { + yysep3481 := !z.EncBinary() + yy2arr3481 := z.EncBasicHandle().StructToArray + var yyq3481 [7]bool + _, _, _ = yysep3481, yyq3481, yy2arr3481 + const yyr3481 bool = false + yyq3481[0] = x.Kind != "" + yyq3481[1] = x.APIVersion != "" + yyq3481[2] = x.Stdin != false + yyq3481[3] = x.Stdout != false + yyq3481[4] = x.Stderr != false + yyq3481[5] = x.TTY != false + yyq3481[6] = x.Container != "" + var yynn3481 int + if yyr3481 || yy2arr3481 { r.EncodeArrayStart(7) } else { - yynn3438 = 0 - for _, b := range yyq3438 { + yynn3481 = 0 + for _, b := range yyq3481 { if b { - yynn3438++ + yynn3481++ } } - r.EncodeMapStart(yynn3438) - yynn3438 = 0 + r.EncodeMapStart(yynn3481) + yynn3481 = 0 } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[0] { - yym3440 := z.EncBinary() - _ = yym3440 + if yyq3481[0] { + yym3483 := z.EncBinary() + _ = yym3483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43501,23 +44112,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3438[0] { + if yyq3481[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3441 := z.EncBinary() - _ = yym3441 + yym3484 := z.EncBinary() + _ = yym3484 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[1] { - yym3443 := z.EncBinary() - _ = yym3443 + if yyq3481[1] { + yym3486 := z.EncBinary() + _ = yym3486 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43526,23 +44137,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3438[1] { + if yyq3481[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3444 := z.EncBinary() - _ = yym3444 + yym3487 := z.EncBinary() + _ = yym3487 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[2] { - yym3446 := z.EncBinary() - _ = yym3446 + if yyq3481[2] { + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43551,23 +44162,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[2] { + if yyq3481[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3447 := z.EncBinary() - _ = yym3447 + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[3] { - yym3449 := z.EncBinary() - _ = yym3449 + if yyq3481[3] { + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43576,23 +44187,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[3] { + if yyq3481[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3450 := z.EncBinary() - _ = yym3450 + yym3493 := z.EncBinary() + _ = yym3493 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[4] { - yym3452 := z.EncBinary() - _ = yym3452 + if yyq3481[4] { + yym3495 := z.EncBinary() + _ = yym3495 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43601,23 +44212,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[4] { + if yyq3481[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3453 := z.EncBinary() - _ = yym3453 + yym3496 := z.EncBinary() + _ = yym3496 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[5] { - yym3455 := z.EncBinary() - _ = yym3455 + if yyq3481[5] { + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43626,23 +44237,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3438[5] { + if yyq3481[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3456 := z.EncBinary() - _ = yym3456 + yym3499 := z.EncBinary() + _ = yym3499 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3438[6] { - yym3458 := z.EncBinary() - _ = yym3458 + if yyq3481[6] { + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43651,19 +44262,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3438[6] { + if yyq3481[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3459 := z.EncBinary() - _ = yym3459 + yym3502 := z.EncBinary() + _ = yym3502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3438 || yy2arr3438 { + if yyr3481 || yy2arr3481 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43676,25 +44287,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3460 := z.DecBinary() - _ = yym3460 + yym3503 := z.DecBinary() + _ = yym3503 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3461 := r.ContainerType() - if yyct3461 == codecSelferValueTypeMap1234 { - yyl3461 := r.ReadMapStart() - if yyl3461 == 0 { + yyct3504 := r.ContainerType() + if yyct3504 == codecSelferValueTypeMap1234 { + yyl3504 := r.ReadMapStart() + if yyl3504 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3461, d) + x.codecDecodeSelfFromMap(yyl3504, d) } - } else if yyct3461 == codecSelferValueTypeArray1234 { - yyl3461 := r.ReadArrayStart() - if yyl3461 == 0 { + } else if yyct3504 == codecSelferValueTypeArray1234 { + yyl3504 := r.ReadArrayStart() + if yyl3504 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3461, d) + x.codecDecodeSelfFromArray(yyl3504, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43706,12 +44317,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3462Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3462Slc - var yyhl3462 bool = l >= 0 - for yyj3462 := 0; ; yyj3462++ { - if yyhl3462 { - if yyj3462 >= l { + var yys3505Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3505Slc + var yyhl3505 bool = l >= 0 + for yyj3505 := 0; ; yyj3505++ { + if yyhl3505 { + if yyj3505 >= l { break } } else { @@ -43720,10 +44331,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3462Slc = r.DecodeBytes(yys3462Slc, true, true) - yys3462 := string(yys3462Slc) + yys3505Slc = r.DecodeBytes(yys3505Slc, true, true) + yys3505 := string(yys3505Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3462 { + switch yys3505 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43767,9 +44378,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3462) - } // end switch yys3462 - } // end for yyj3462 + z.DecStructFieldNotFound(-1, yys3505) + } // end switch yys3505 + } // end for yyj3505 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43777,16 +44388,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3470 int - var yyb3470 bool - var yyhl3470 bool = l >= 0 - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + var yyj3513 int + var yyb3513 bool + var yyhl3513 bool = l >= 0 + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43796,13 +44407,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43812,13 +44423,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43828,13 +44439,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43844,13 +44455,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43860,13 +44471,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43876,13 +44487,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43893,17 +44504,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3470++ - if yyhl3470 { - yyb3470 = yyj3470 > l + yyj3513++ + if yyhl3513 { + yyb3513 = yyj3513 > l } else { - yyb3470 = r.CheckBreak() + yyb3513 = r.CheckBreak() } - if yyb3470 { + if yyb3513 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3470-1, "") + z.DecStructFieldNotFound(yyj3513-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43915,41 +44526,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3478 := z.EncBinary() - _ = yym3478 + yym3521 := z.EncBinary() + _ = yym3521 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3479 := !z.EncBinary() - yy2arr3479 := z.EncBasicHandle().StructToArray - var yyq3479 [8]bool - _, _, _ = yysep3479, yyq3479, yy2arr3479 - const yyr3479 bool = false - yyq3479[0] = x.Kind != "" - yyq3479[1] = x.APIVersion != "" - yyq3479[2] = x.Stdin != false - yyq3479[3] = x.Stdout != false - yyq3479[4] = x.Stderr != false - yyq3479[5] = x.TTY != false - yyq3479[6] = x.Container != "" - var yynn3479 int - if yyr3479 || yy2arr3479 { + yysep3522 := !z.EncBinary() + yy2arr3522 := z.EncBasicHandle().StructToArray + var yyq3522 [8]bool + _, _, _ = yysep3522, yyq3522, yy2arr3522 + const yyr3522 bool = false + yyq3522[0] = x.Kind != "" + yyq3522[1] = x.APIVersion != "" + yyq3522[2] = x.Stdin != false + yyq3522[3] = x.Stdout != false + yyq3522[4] = x.Stderr != false + yyq3522[5] = x.TTY != false + yyq3522[6] = x.Container != "" + var yynn3522 int + if yyr3522 || yy2arr3522 { r.EncodeArrayStart(8) } else { - yynn3479 = 1 - for _, b := range yyq3479 { + yynn3522 = 1 + for _, b := range yyq3522 { if b { - yynn3479++ + yynn3522++ } } - r.EncodeMapStart(yynn3479) - yynn3479 = 0 + r.EncodeMapStart(yynn3522) + yynn3522 = 0 } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[0] { - yym3481 := z.EncBinary() - _ = yym3481 + if yyq3522[0] { + yym3524 := z.EncBinary() + _ = yym3524 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43958,23 +44569,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3479[0] { + if yyq3522[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3482 := z.EncBinary() - _ = yym3482 + yym3525 := z.EncBinary() + _ = yym3525 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[1] { - yym3484 := z.EncBinary() - _ = yym3484 + if yyq3522[1] { + yym3527 := z.EncBinary() + _ = yym3527 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43983,23 +44594,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3479[1] { + if yyq3522[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3485 := z.EncBinary() - _ = yym3485 + yym3528 := z.EncBinary() + _ = yym3528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[2] { - yym3487 := z.EncBinary() - _ = yym3487 + if yyq3522[2] { + yym3530 := z.EncBinary() + _ = yym3530 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44008,23 +44619,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3479[2] { + if yyq3522[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3488 := z.EncBinary() - _ = yym3488 + yym3531 := z.EncBinary() + _ = yym3531 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[3] { - yym3490 := z.EncBinary() - _ = yym3490 + if yyq3522[3] { + yym3533 := z.EncBinary() + _ = yym3533 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44033,23 +44644,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3479[3] { + if yyq3522[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3491 := z.EncBinary() - _ = yym3491 + yym3534 := z.EncBinary() + _ = yym3534 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[4] { - yym3493 := z.EncBinary() - _ = yym3493 + if yyq3522[4] { + yym3536 := z.EncBinary() + _ = yym3536 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44058,23 +44669,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3479[4] { + if yyq3522[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3494 := z.EncBinary() - _ = yym3494 + yym3537 := z.EncBinary() + _ = yym3537 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[5] { - yym3496 := z.EncBinary() - _ = yym3496 + if yyq3522[5] { + yym3539 := z.EncBinary() + _ = yym3539 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44083,23 +44694,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3479[5] { + if yyq3522[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3497 := z.EncBinary() - _ = yym3497 + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3479[6] { - yym3499 := z.EncBinary() - _ = yym3499 + if yyq3522[6] { + yym3542 := z.EncBinary() + _ = yym3542 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44108,25 +44719,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3479[6] { + if yyq3522[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3500 := z.EncBinary() - _ = yym3500 + yym3543 := z.EncBinary() + _ = yym3543 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3502 := z.EncBinary() - _ = yym3502 + yym3545 := z.EncBinary() + _ = yym3545 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -44139,15 +44750,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3503 := z.EncBinary() - _ = yym3503 + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3479 || yy2arr3479 { + if yyr3522 || yy2arr3522 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44160,25 +44771,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3504 := z.DecBinary() - _ = yym3504 + yym3547 := z.DecBinary() + _ = yym3547 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3505 := r.ContainerType() - if yyct3505 == codecSelferValueTypeMap1234 { - yyl3505 := r.ReadMapStart() - if yyl3505 == 0 { + yyct3548 := r.ContainerType() + if yyct3548 == codecSelferValueTypeMap1234 { + yyl3548 := r.ReadMapStart() + if yyl3548 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3505, d) + x.codecDecodeSelfFromMap(yyl3548, d) } - } else if yyct3505 == codecSelferValueTypeArray1234 { - yyl3505 := r.ReadArrayStart() - if yyl3505 == 0 { + } else if yyct3548 == codecSelferValueTypeArray1234 { + yyl3548 := r.ReadArrayStart() + if yyl3548 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3505, d) + x.codecDecodeSelfFromArray(yyl3548, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44190,12 +44801,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3506Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3506Slc - var yyhl3506 bool = l >= 0 - for yyj3506 := 0; ; yyj3506++ { - if yyhl3506 { - if yyj3506 >= l { + var yys3549Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3549Slc + var yyhl3549 bool = l >= 0 + for yyj3549 := 0; ; yyj3549++ { + if yyhl3549 { + if yyj3549 >= l { break } } else { @@ -44204,10 +44815,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3506Slc = r.DecodeBytes(yys3506Slc, true, true) - yys3506 := string(yys3506Slc) + yys3549Slc = r.DecodeBytes(yys3549Slc, true, true) + yys3549 := string(yys3549Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3506 { + switch yys3549 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44254,18 +44865,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3514 := &x.Command - yym3515 := z.DecBinary() - _ = yym3515 + yyv3557 := &x.Command + yym3558 := z.DecBinary() + _ = yym3558 if false { } else { - z.F.DecSliceStringX(yyv3514, false, d) + z.F.DecSliceStringX(yyv3557, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3506) - } // end switch yys3506 - } // end for yyj3506 + z.DecStructFieldNotFound(-1, yys3549) + } // end switch yys3549 + } // end for yyj3549 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44273,16 +44884,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3516 int - var yyb3516 bool - var yyhl3516 bool = l >= 0 - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + var yyj3559 int + var yyb3559 bool + var yyhl3559 bool = l >= 0 + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44292,13 +44903,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44308,13 +44919,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44324,13 +44935,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44340,13 +44951,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44356,13 +44967,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44372,13 +44983,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44388,13 +44999,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44402,26 +45013,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3524 := &x.Command - yym3525 := z.DecBinary() - _ = yym3525 + yyv3567 := &x.Command + yym3568 := z.DecBinary() + _ = yym3568 if false { } else { - z.F.DecSliceStringX(yyv3524, false, d) + z.F.DecSliceStringX(yyv3567, false, d) } } for { - yyj3516++ - if yyhl3516 { - yyb3516 = yyj3516 > l + yyj3559++ + if yyhl3559 { + yyb3559 = yyj3559 > l } else { - yyb3516 = r.CheckBreak() + yyb3559 = r.CheckBreak() } - if yyb3516 { + if yyb3559 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3516-1, "") + z.DecStructFieldNotFound(yyj3559-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44433,37 +45044,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3526 := z.EncBinary() - _ = yym3526 + yym3569 := z.EncBinary() + _ = yym3569 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3527 := !z.EncBinary() - yy2arr3527 := z.EncBasicHandle().StructToArray - var yyq3527 [3]bool - _, _, _ = yysep3527, yyq3527, yy2arr3527 - const yyr3527 bool = false - yyq3527[0] = x.Kind != "" - yyq3527[1] = x.APIVersion != "" - yyq3527[2] = x.Path != "" - var yynn3527 int - if yyr3527 || yy2arr3527 { + yysep3570 := !z.EncBinary() + yy2arr3570 := z.EncBasicHandle().StructToArray + var yyq3570 [3]bool + _, _, _ = yysep3570, yyq3570, yy2arr3570 + const yyr3570 bool = false + yyq3570[0] = x.Kind != "" + yyq3570[1] = x.APIVersion != "" + yyq3570[2] = x.Path != "" + var yynn3570 int + if yyr3570 || yy2arr3570 { r.EncodeArrayStart(3) } else { - yynn3527 = 0 - for _, b := range yyq3527 { + yynn3570 = 0 + for _, b := range yyq3570 { if b { - yynn3527++ + yynn3570++ } } - r.EncodeMapStart(yynn3527) - yynn3527 = 0 + r.EncodeMapStart(yynn3570) + yynn3570 = 0 } - if yyr3527 || yy2arr3527 { + if yyr3570 || yy2arr3570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3527[0] { - yym3529 := z.EncBinary() - _ = yym3529 + if yyq3570[0] { + yym3572 := z.EncBinary() + _ = yym3572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44472,23 +45083,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3527[0] { + if yyq3570[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3530 := z.EncBinary() - _ = yym3530 + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3527 || yy2arr3527 { + if yyr3570 || yy2arr3570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3527[1] { - yym3532 := z.EncBinary() - _ = yym3532 + if yyq3570[1] { + yym3575 := z.EncBinary() + _ = yym3575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44497,23 +45108,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3527[1] { + if yyq3570[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3533 := z.EncBinary() - _ = yym3533 + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3527 || yy2arr3527 { + if yyr3570 || yy2arr3570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3527[2] { - yym3535 := z.EncBinary() - _ = yym3535 + if yyq3570[2] { + yym3578 := z.EncBinary() + _ = yym3578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44522,19 +45133,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3527[2] { + if yyq3570[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3536 := z.EncBinary() - _ = yym3536 + yym3579 := z.EncBinary() + _ = yym3579 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3527 || yy2arr3527 { + if yyr3570 || yy2arr3570 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44547,25 +45158,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3537 := z.DecBinary() - _ = yym3537 + yym3580 := z.DecBinary() + _ = yym3580 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3538 := r.ContainerType() - if yyct3538 == codecSelferValueTypeMap1234 { - yyl3538 := r.ReadMapStart() - if yyl3538 == 0 { + yyct3581 := r.ContainerType() + if yyct3581 == codecSelferValueTypeMap1234 { + yyl3581 := r.ReadMapStart() + if yyl3581 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3538, d) + x.codecDecodeSelfFromMap(yyl3581, d) } - } else if yyct3538 == codecSelferValueTypeArray1234 { - yyl3538 := r.ReadArrayStart() - if yyl3538 == 0 { + } else if yyct3581 == codecSelferValueTypeArray1234 { + yyl3581 := r.ReadArrayStart() + if yyl3581 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3538, d) + x.codecDecodeSelfFromArray(yyl3581, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44577,12 +45188,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3539Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3539Slc - var yyhl3539 bool = l >= 0 - for yyj3539 := 0; ; yyj3539++ { - if yyhl3539 { - if yyj3539 >= l { + var yys3582Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3582Slc + var yyhl3582 bool = l >= 0 + for yyj3582 := 0; ; yyj3582++ { + if yyhl3582 { + if yyj3582 >= l { break } } else { @@ -44591,10 +45202,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3539Slc = r.DecodeBytes(yys3539Slc, true, true) - yys3539 := string(yys3539Slc) + yys3582Slc = r.DecodeBytes(yys3582Slc, true, true) + yys3582 := string(yys3582Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3539 { + switch yys3582 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44614,9 +45225,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3539) - } // end switch yys3539 - } // end for yyj3539 + z.DecStructFieldNotFound(-1, yys3582) + } // end switch yys3582 + } // end for yyj3582 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44624,16 +45235,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3543 int - var yyb3543 bool - var yyhl3543 bool = l >= 0 - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + var yyj3586 int + var yyb3586 bool + var yyhl3586 bool = l >= 0 + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3543 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3543 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44643,13 +45254,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3543 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3543 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44659,13 +45270,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3543 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3543 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44676,17 +45287,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3543 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3543 { + if yyb3586 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3543-1, "") + z.DecStructFieldNotFound(yyj3586-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44698,37 +45309,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3547 := z.EncBinary() - _ = yym3547 + yym3590 := z.EncBinary() + _ = yym3590 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3548 := !z.EncBinary() - yy2arr3548 := z.EncBasicHandle().StructToArray - var yyq3548 [3]bool - _, _, _ = yysep3548, yyq3548, yy2arr3548 - const yyr3548 bool = false - yyq3548[0] = x.Kind != "" - yyq3548[1] = x.APIVersion != "" - yyq3548[2] = x.Path != "" - var yynn3548 int - if yyr3548 || yy2arr3548 { + yysep3591 := !z.EncBinary() + yy2arr3591 := z.EncBasicHandle().StructToArray + var yyq3591 [3]bool + _, _, _ = yysep3591, yyq3591, yy2arr3591 + const yyr3591 bool = false + yyq3591[0] = x.Kind != "" + yyq3591[1] = x.APIVersion != "" + yyq3591[2] = x.Path != "" + var yynn3591 int + if yyr3591 || yy2arr3591 { r.EncodeArrayStart(3) } else { - yynn3548 = 0 - for _, b := range yyq3548 { + yynn3591 = 0 + for _, b := range yyq3591 { if b { - yynn3548++ + yynn3591++ } } - r.EncodeMapStart(yynn3548) - yynn3548 = 0 + r.EncodeMapStart(yynn3591) + yynn3591 = 0 } - if yyr3548 || yy2arr3548 { + if yyr3591 || yy2arr3591 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[0] { - yym3550 := z.EncBinary() - _ = yym3550 + if yyq3591[0] { + yym3593 := z.EncBinary() + _ = yym3593 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44737,23 +45348,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[0] { + if yyq3591[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3551 := z.EncBinary() - _ = yym3551 + yym3594 := z.EncBinary() + _ = yym3594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3548 || yy2arr3548 { + if yyr3591 || yy2arr3591 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[1] { - yym3553 := z.EncBinary() - _ = yym3553 + if yyq3591[1] { + yym3596 := z.EncBinary() + _ = yym3596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44762,23 +45373,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[1] { + if yyq3591[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3554 := z.EncBinary() - _ = yym3554 + yym3597 := z.EncBinary() + _ = yym3597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3548 || yy2arr3548 { + if yyr3591 || yy2arr3591 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[2] { - yym3556 := z.EncBinary() - _ = yym3556 + if yyq3591[2] { + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44787,19 +45398,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[2] { + if yyq3591[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3557 := z.EncBinary() - _ = yym3557 + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3548 || yy2arr3548 { + if yyr3591 || yy2arr3591 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44812,25 +45423,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3558 := z.DecBinary() - _ = yym3558 + yym3601 := z.DecBinary() + _ = yym3601 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3559 := r.ContainerType() - if yyct3559 == codecSelferValueTypeMap1234 { - yyl3559 := r.ReadMapStart() - if yyl3559 == 0 { + yyct3602 := r.ContainerType() + if yyct3602 == codecSelferValueTypeMap1234 { + yyl3602 := r.ReadMapStart() + if yyl3602 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3559, d) + x.codecDecodeSelfFromMap(yyl3602, d) } - } else if yyct3559 == codecSelferValueTypeArray1234 { - yyl3559 := r.ReadArrayStart() - if yyl3559 == 0 { + } else if yyct3602 == codecSelferValueTypeArray1234 { + yyl3602 := r.ReadArrayStart() + if yyl3602 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3559, d) + x.codecDecodeSelfFromArray(yyl3602, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44842,12 +45453,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3560Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3560Slc - var yyhl3560 bool = l >= 0 - for yyj3560 := 0; ; yyj3560++ { - if yyhl3560 { - if yyj3560 >= l { + var yys3603Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3603Slc + var yyhl3603 bool = l >= 0 + for yyj3603 := 0; ; yyj3603++ { + if yyhl3603 { + if yyj3603 >= l { break } } else { @@ -44856,10 +45467,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3560Slc = r.DecodeBytes(yys3560Slc, true, true) - yys3560 := string(yys3560Slc) + yys3603Slc = r.DecodeBytes(yys3603Slc, true, true) + yys3603 := string(yys3603Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3560 { + switch yys3603 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44879,9 +45490,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3560) - } // end switch yys3560 - } // end for yyj3560 + z.DecStructFieldNotFound(-1, yys3603) + } // end switch yys3603 + } // end for yyj3603 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44889,16 +45500,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3564 int - var yyb3564 bool - var yyhl3564 bool = l >= 0 - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + var yyj3607 int + var yyb3607 bool + var yyhl3607 bool = l >= 0 + yyj3607++ + if yyhl3607 { + yyb3607 = yyj3607 > l } else { - yyb3564 = r.CheckBreak() + yyb3607 = r.CheckBreak() } - if yyb3564 { + if yyb3607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44908,13 +45519,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + yyj3607++ + if yyhl3607 { + yyb3607 = yyj3607 > l } else { - yyb3564 = r.CheckBreak() + yyb3607 = r.CheckBreak() } - if yyb3564 { + if yyb3607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44924,13 +45535,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + yyj3607++ + if yyhl3607 { + yyb3607 = yyj3607 > l } else { - yyb3564 = r.CheckBreak() + yyb3607 = r.CheckBreak() } - if yyb3564 { + if yyb3607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44941,17 +45552,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3564++ - if yyhl3564 { - yyb3564 = yyj3564 > l + yyj3607++ + if yyhl3607 { + yyb3607 = yyj3607 > l } else { - yyb3564 = r.CheckBreak() + yyb3607 = r.CheckBreak() } - if yyb3564 { + if yyb3607 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3564-1, "") + z.DecStructFieldNotFound(yyj3607-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44963,37 +45574,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3568 := z.EncBinary() - _ = yym3568 + yym3611 := z.EncBinary() + _ = yym3611 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3569 := !z.EncBinary() - yy2arr3569 := z.EncBasicHandle().StructToArray - var yyq3569 [3]bool - _, _, _ = yysep3569, yyq3569, yy2arr3569 - const yyr3569 bool = false - yyq3569[0] = x.Kind != "" - yyq3569[1] = x.APIVersion != "" - yyq3569[2] = x.Path != "" - var yynn3569 int - if yyr3569 || yy2arr3569 { + yysep3612 := !z.EncBinary() + yy2arr3612 := z.EncBasicHandle().StructToArray + var yyq3612 [3]bool + _, _, _ = yysep3612, yyq3612, yy2arr3612 + const yyr3612 bool = false + yyq3612[0] = x.Kind != "" + yyq3612[1] = x.APIVersion != "" + yyq3612[2] = x.Path != "" + var yynn3612 int + if yyr3612 || yy2arr3612 { r.EncodeArrayStart(3) } else { - yynn3569 = 0 - for _, b := range yyq3569 { + yynn3612 = 0 + for _, b := range yyq3612 { if b { - yynn3569++ + yynn3612++ } } - r.EncodeMapStart(yynn3569) - yynn3569 = 0 + r.EncodeMapStart(yynn3612) + yynn3612 = 0 } - if yyr3569 || yy2arr3569 { + if yyr3612 || yy2arr3612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3569[0] { - yym3571 := z.EncBinary() - _ = yym3571 + if yyq3612[0] { + yym3614 := z.EncBinary() + _ = yym3614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45002,23 +45613,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3569[0] { + if yyq3612[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3572 := z.EncBinary() - _ = yym3572 + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3569 || yy2arr3569 { + if yyr3612 || yy2arr3612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3569[1] { - yym3574 := z.EncBinary() - _ = yym3574 + if yyq3612[1] { + yym3617 := z.EncBinary() + _ = yym3617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45027,23 +45638,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3569[1] { + if yyq3612[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3575 := z.EncBinary() - _ = yym3575 + yym3618 := z.EncBinary() + _ = yym3618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3569 || yy2arr3569 { + if yyr3612 || yy2arr3612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3569[2] { - yym3577 := z.EncBinary() - _ = yym3577 + if yyq3612[2] { + yym3620 := z.EncBinary() + _ = yym3620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45052,19 +45663,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3569[2] { + if yyq3612[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3578 := z.EncBinary() - _ = yym3578 + yym3621 := z.EncBinary() + _ = yym3621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3569 || yy2arr3569 { + if yyr3612 || yy2arr3612 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45077,25 +45688,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3579 := z.DecBinary() - _ = yym3579 + yym3622 := z.DecBinary() + _ = yym3622 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3580 := r.ContainerType() - if yyct3580 == codecSelferValueTypeMap1234 { - yyl3580 := r.ReadMapStart() - if yyl3580 == 0 { + yyct3623 := r.ContainerType() + if yyct3623 == codecSelferValueTypeMap1234 { + yyl3623 := r.ReadMapStart() + if yyl3623 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3580, d) + x.codecDecodeSelfFromMap(yyl3623, d) } - } else if yyct3580 == codecSelferValueTypeArray1234 { - yyl3580 := r.ReadArrayStart() - if yyl3580 == 0 { + } else if yyct3623 == codecSelferValueTypeArray1234 { + yyl3623 := r.ReadArrayStart() + if yyl3623 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3580, d) + x.codecDecodeSelfFromArray(yyl3623, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45107,12 +45718,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3581Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3581Slc - var yyhl3581 bool = l >= 0 - for yyj3581 := 0; ; yyj3581++ { - if yyhl3581 { - if yyj3581 >= l { + var yys3624Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3624Slc + var yyhl3624 bool = l >= 0 + for yyj3624 := 0; ; yyj3624++ { + if yyhl3624 { + if yyj3624 >= l { break } } else { @@ -45121,10 +45732,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3581Slc = r.DecodeBytes(yys3581Slc, true, true) - yys3581 := string(yys3581Slc) + yys3624Slc = r.DecodeBytes(yys3624Slc, true, true) + yys3624 := string(yys3624Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3581 { + switch yys3624 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45144,9 +45755,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3581) - } // end switch yys3581 - } // end for yyj3581 + z.DecStructFieldNotFound(-1, yys3624) + } // end switch yys3624 + } // end for yyj3624 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45154,16 +45765,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3585 int - var yyb3585 bool - var yyhl3585 bool = l >= 0 - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + var yyj3628 int + var yyb3628 bool + var yyhl3628 bool = l >= 0 + yyj3628++ + if yyhl3628 { + yyb3628 = yyj3628 > l } else { - yyb3585 = r.CheckBreak() + yyb3628 = r.CheckBreak() } - if yyb3585 { + if yyb3628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45173,13 +45784,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + yyj3628++ + if yyhl3628 { + yyb3628 = yyj3628 > l } else { - yyb3585 = r.CheckBreak() + yyb3628 = r.CheckBreak() } - if yyb3585 { + if yyb3628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45189,13 +45800,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + yyj3628++ + if yyhl3628 { + yyb3628 = yyj3628 > l } else { - yyb3585 = r.CheckBreak() + yyb3628 = r.CheckBreak() } - if yyb3585 { + if yyb3628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45206,17 +45817,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3585++ - if yyhl3585 { - yyb3585 = yyj3585 > l + yyj3628++ + if yyhl3628 { + yyb3628 = yyj3628 > l } else { - yyb3585 = r.CheckBreak() + yyb3628 = r.CheckBreak() } - if yyb3585 { + if yyb3628 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3585-1, "") + z.DecStructFieldNotFound(yyj3628-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45228,34 +45839,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3589 := z.EncBinary() - _ = yym3589 + yym3632 := z.EncBinary() + _ = yym3632 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3590 := !z.EncBinary() - yy2arr3590 := z.EncBasicHandle().StructToArray - var yyq3590 [5]bool - _, _, _ = yysep3590, yyq3590, yy2arr3590 - const yyr3590 bool = false - yyq3590[4] = x.Controller != nil - var yynn3590 int - if yyr3590 || yy2arr3590 { + yysep3633 := !z.EncBinary() + yy2arr3633 := z.EncBasicHandle().StructToArray + var yyq3633 [5]bool + _, _, _ = yysep3633, yyq3633, yy2arr3633 + const yyr3633 bool = false + yyq3633[4] = x.Controller != nil + var yynn3633 int + if yyr3633 || yy2arr3633 { r.EncodeArrayStart(5) } else { - yynn3590 = 4 - for _, b := range yyq3590 { + yynn3633 = 4 + for _, b := range yyq3633 { if b { - yynn3590++ + yynn3633++ } } - r.EncodeMapStart(yynn3590) - yynn3590 = 0 + r.EncodeMapStart(yynn3633) + yynn3633 = 0 } - if yyr3590 || yy2arr3590 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3592 := z.EncBinary() - _ = yym3592 + yym3635 := z.EncBinary() + _ = yym3635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45264,17 +45875,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3593 := z.EncBinary() - _ = yym3593 + yym3636 := z.EncBinary() + _ = yym3636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3590 || yy2arr3590 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3595 := z.EncBinary() - _ = yym3595 + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45283,17 +45894,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3596 := z.EncBinary() - _ = yym3596 + yym3639 := z.EncBinary() + _ = yym3639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3590 || yy2arr3590 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3598 := z.EncBinary() - _ = yym3598 + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45302,17 +45913,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3599 := z.EncBinary() - _ = yym3599 + yym3642 := z.EncBinary() + _ = yym3642 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3590 || yy2arr3590 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3601 := z.EncBinary() - _ = yym3601 + yym3644 := z.EncBinary() + _ = yym3644 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45322,50 +45933,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3602 := z.EncBinary() - _ = yym3602 + yym3645 := z.EncBinary() + _ = yym3645 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3590 || yy2arr3590 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3590[4] { + if yyq3633[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3604 := *x.Controller - yym3605 := z.EncBinary() - _ = yym3605 + yy3647 := *x.Controller + yym3648 := z.EncBinary() + _ = yym3648 if false { } else { - r.EncodeBool(bool(yy3604)) + r.EncodeBool(bool(yy3647)) } } } else { r.EncodeNil() } } else { - if yyq3590[4] { + if yyq3633[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3606 := *x.Controller - yym3607 := z.EncBinary() - _ = yym3607 + yy3649 := *x.Controller + yym3650 := z.EncBinary() + _ = yym3650 if false { } else { - r.EncodeBool(bool(yy3606)) + r.EncodeBool(bool(yy3649)) } } } } - if yyr3590 || yy2arr3590 { + if yyr3633 || yy2arr3633 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45378,25 +45989,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3608 := z.DecBinary() - _ = yym3608 + yym3651 := z.DecBinary() + _ = yym3651 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3609 := r.ContainerType() - if yyct3609 == codecSelferValueTypeMap1234 { - yyl3609 := r.ReadMapStart() - if yyl3609 == 0 { + yyct3652 := r.ContainerType() + if yyct3652 == codecSelferValueTypeMap1234 { + yyl3652 := r.ReadMapStart() + if yyl3652 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3609, d) + x.codecDecodeSelfFromMap(yyl3652, d) } - } else if yyct3609 == codecSelferValueTypeArray1234 { - yyl3609 := r.ReadArrayStart() - if yyl3609 == 0 { + } else if yyct3652 == codecSelferValueTypeArray1234 { + yyl3652 := r.ReadArrayStart() + if yyl3652 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3609, d) + x.codecDecodeSelfFromArray(yyl3652, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45408,12 +46019,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3610Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3610Slc - var yyhl3610 bool = l >= 0 - for yyj3610 := 0; ; yyj3610++ { - if yyhl3610 { - if yyj3610 >= l { + var yys3653Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3653Slc + var yyhl3653 bool = l >= 0 + for yyj3653 := 0; ; yyj3653++ { + if yyhl3653 { + if yyj3653 >= l { break } } else { @@ -45422,10 +46033,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3610Slc = r.DecodeBytes(yys3610Slc, true, true) - yys3610 := string(yys3610Slc) + yys3653Slc = r.DecodeBytes(yys3653Slc, true, true) + yys3653 := string(yys3653Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3610 { + switch yys3653 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -45459,17 +46070,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3616 := z.DecBinary() - _ = yym3616 + yym3659 := z.DecBinary() + _ = yym3659 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3610) - } // end switch yys3610 - } // end for yyj3610 + z.DecStructFieldNotFound(-1, yys3653) + } // end switch yys3653 + } // end for yyj3653 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45477,16 +46088,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3617 int - var yyb3617 bool - var yyhl3617 bool = l >= 0 - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + var yyj3660 int + var yyb3660 bool + var yyhl3660 bool = l >= 0 + yyj3660++ + if yyhl3660 { + yyb3660 = yyj3660 > l } else { - yyb3617 = r.CheckBreak() + yyb3660 = r.CheckBreak() } - if yyb3617 { + if yyb3660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45496,13 +46107,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3660++ + if yyhl3660 { + yyb3660 = yyj3660 > l } else { - yyb3617 = r.CheckBreak() + yyb3660 = r.CheckBreak() } - if yyb3617 { + if yyb3660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45512,13 +46123,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3660++ + if yyhl3660 { + yyb3660 = yyj3660 > l } else { - yyb3617 = r.CheckBreak() + yyb3660 = r.CheckBreak() } - if yyb3617 { + if yyb3660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45528,13 +46139,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3660++ + if yyhl3660 { + yyb3660 = yyj3660 > l } else { - yyb3617 = r.CheckBreak() + yyb3660 = r.CheckBreak() } - if yyb3617 { + if yyb3660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45544,13 +46155,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3660++ + if yyhl3660 { + yyb3660 = yyj3660 > l } else { - yyb3617 = r.CheckBreak() + yyb3660 = r.CheckBreak() } - if yyb3617 { + if yyb3660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45563,25 +46174,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3623 := z.DecBinary() - _ = yym3623 + yym3666 := z.DecBinary() + _ = yym3666 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3617++ - if yyhl3617 { - yyb3617 = yyj3617 > l + yyj3660++ + if yyhl3660 { + yyb3660 = yyj3660 > l } else { - yyb3617 = r.CheckBreak() + yyb3660 = r.CheckBreak() } - if yyb3617 { + if yyb3660 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3617-1, "") + z.DecStructFieldNotFound(yyj3660-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45593,41 +46204,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3624 := z.EncBinary() - _ = yym3624 + yym3667 := z.EncBinary() + _ = yym3667 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3625 := !z.EncBinary() - yy2arr3625 := z.EncBasicHandle().StructToArray - var yyq3625 [7]bool - _, _, _ = yysep3625, yyq3625, yy2arr3625 - const yyr3625 bool = false - yyq3625[0] = x.Kind != "" - yyq3625[1] = x.Namespace != "" - yyq3625[2] = x.Name != "" - yyq3625[3] = x.UID != "" - yyq3625[4] = x.APIVersion != "" - yyq3625[5] = x.ResourceVersion != "" - yyq3625[6] = x.FieldPath != "" - var yynn3625 int - if yyr3625 || yy2arr3625 { + yysep3668 := !z.EncBinary() + yy2arr3668 := z.EncBasicHandle().StructToArray + var yyq3668 [7]bool + _, _, _ = yysep3668, yyq3668, yy2arr3668 + const yyr3668 bool = false + yyq3668[0] = x.Kind != "" + yyq3668[1] = x.Namespace != "" + yyq3668[2] = x.Name != "" + yyq3668[3] = x.UID != "" + yyq3668[4] = x.APIVersion != "" + yyq3668[5] = x.ResourceVersion != "" + yyq3668[6] = x.FieldPath != "" + var yynn3668 int + if yyr3668 || yy2arr3668 { r.EncodeArrayStart(7) } else { - yynn3625 = 0 - for _, b := range yyq3625 { + yynn3668 = 0 + for _, b := range yyq3668 { if b { - yynn3625++ + yynn3668++ } } - r.EncodeMapStart(yynn3625) - yynn3625 = 0 + r.EncodeMapStart(yynn3668) + yynn3668 = 0 } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[0] { - yym3627 := z.EncBinary() - _ = yym3627 + if yyq3668[0] { + yym3670 := z.EncBinary() + _ = yym3670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45636,23 +46247,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[0] { + if yyq3668[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3628 := z.EncBinary() - _ = yym3628 + yym3671 := z.EncBinary() + _ = yym3671 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[1] { - yym3630 := z.EncBinary() - _ = yym3630 + if yyq3668[1] { + yym3673 := z.EncBinary() + _ = yym3673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -45661,23 +46272,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[1] { + if yyq3668[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3631 := z.EncBinary() - _ = yym3631 + yym3674 := z.EncBinary() + _ = yym3674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[2] { - yym3633 := z.EncBinary() - _ = yym3633 + if yyq3668[2] { + yym3676 := z.EncBinary() + _ = yym3676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45686,23 +46297,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[2] { + if yyq3668[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3634 := z.EncBinary() - _ = yym3634 + yym3677 := z.EncBinary() + _ = yym3677 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[3] { - yym3636 := z.EncBinary() - _ = yym3636 + if yyq3668[3] { + yym3679 := z.EncBinary() + _ = yym3679 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45712,12 +46323,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[3] { + if yyq3668[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3637 := z.EncBinary() - _ = yym3637 + yym3680 := z.EncBinary() + _ = yym3680 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45725,11 +46336,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[4] { - yym3639 := z.EncBinary() - _ = yym3639 + if yyq3668[4] { + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45738,23 +46349,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[4] { + if yyq3668[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3640 := z.EncBinary() - _ = yym3640 + yym3683 := z.EncBinary() + _ = yym3683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[5] { - yym3642 := z.EncBinary() - _ = yym3642 + if yyq3668[5] { + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -45763,23 +46374,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[5] { + if yyq3668[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3643 := z.EncBinary() - _ = yym3643 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[6] { - yym3645 := z.EncBinary() - _ = yym3645 + if yyq3668[6] { + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -45788,19 +46399,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[6] { + if yyq3668[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3646 := z.EncBinary() - _ = yym3646 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3625 || yy2arr3625 { + if yyr3668 || yy2arr3668 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45813,25 +46424,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3647 := z.DecBinary() - _ = yym3647 + yym3690 := z.DecBinary() + _ = yym3690 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3648 := r.ContainerType() - if yyct3648 == codecSelferValueTypeMap1234 { - yyl3648 := r.ReadMapStart() - if yyl3648 == 0 { + yyct3691 := r.ContainerType() + if yyct3691 == codecSelferValueTypeMap1234 { + yyl3691 := r.ReadMapStart() + if yyl3691 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3648, d) + x.codecDecodeSelfFromMap(yyl3691, d) } - } else if yyct3648 == codecSelferValueTypeArray1234 { - yyl3648 := r.ReadArrayStart() - if yyl3648 == 0 { + } else if yyct3691 == codecSelferValueTypeArray1234 { + yyl3691 := r.ReadArrayStart() + if yyl3691 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3648, d) + x.codecDecodeSelfFromArray(yyl3691, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45843,12 +46454,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3649Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3649Slc - var yyhl3649 bool = l >= 0 - for yyj3649 := 0; ; yyj3649++ { - if yyhl3649 { - if yyj3649 >= l { + var yys3692Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3692Slc + var yyhl3692 bool = l >= 0 + for yyj3692 := 0; ; yyj3692++ { + if yyhl3692 { + if yyj3692 >= l { break } } else { @@ -45857,10 +46468,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3649Slc = r.DecodeBytes(yys3649Slc, true, true) - yys3649 := string(yys3649Slc) + yys3692Slc = r.DecodeBytes(yys3692Slc, true, true) + yys3692 := string(yys3692Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3649 { + switch yys3692 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45904,9 +46515,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3649) - } // end switch yys3649 - } // end for yyj3649 + z.DecStructFieldNotFound(-1, yys3692) + } // end switch yys3692 + } // end for yyj3692 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45914,16 +46525,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3657 int - var yyb3657 bool - var yyhl3657 bool = l >= 0 - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + var yyj3700 int + var yyb3700 bool + var yyhl3700 bool = l >= 0 + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45933,13 +46544,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45949,13 +46560,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45965,13 +46576,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45981,13 +46592,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45997,13 +46608,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46013,13 +46624,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46030,17 +46641,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3700++ + if yyhl3700 { + yyb3700 = yyj3700 > l } else { - yyb3657 = r.CheckBreak() + yyb3700 = r.CheckBreak() } - if yyb3657 { + if yyb3700 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3657-1, "") + z.DecStructFieldNotFound(yyj3700-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46052,35 +46663,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3665 := z.EncBinary() - _ = yym3665 + yym3708 := z.EncBinary() + _ = yym3708 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3666 := !z.EncBinary() - yy2arr3666 := z.EncBasicHandle().StructToArray - var yyq3666 [1]bool - _, _, _ = yysep3666, yyq3666, yy2arr3666 - const yyr3666 bool = false - yyq3666[0] = x.Name != "" - var yynn3666 int - if yyr3666 || yy2arr3666 { + yysep3709 := !z.EncBinary() + yy2arr3709 := z.EncBasicHandle().StructToArray + var yyq3709 [1]bool + _, _, _ = yysep3709, yyq3709, yy2arr3709 + const yyr3709 bool = false + yyq3709[0] = x.Name != "" + var yynn3709 int + if yyr3709 || yy2arr3709 { r.EncodeArrayStart(1) } else { - yynn3666 = 0 - for _, b := range yyq3666 { + yynn3709 = 0 + for _, b := range yyq3709 { if b { - yynn3666++ + yynn3709++ } } - r.EncodeMapStart(yynn3666) - yynn3666 = 0 + r.EncodeMapStart(yynn3709) + yynn3709 = 0 } - if yyr3666 || yy2arr3666 { + if yyr3709 || yy2arr3709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3666[0] { - yym3668 := z.EncBinary() - _ = yym3668 + if yyq3709[0] { + yym3711 := z.EncBinary() + _ = yym3711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46089,19 +46700,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3666[0] { + if yyq3709[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3669 := z.EncBinary() - _ = yym3669 + yym3712 := z.EncBinary() + _ = yym3712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3666 || yy2arr3666 { + if yyr3709 || yy2arr3709 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46114,25 +46725,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3670 := z.DecBinary() - _ = yym3670 + yym3713 := z.DecBinary() + _ = yym3713 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3671 := r.ContainerType() - if yyct3671 == codecSelferValueTypeMap1234 { - yyl3671 := r.ReadMapStart() - if yyl3671 == 0 { + yyct3714 := r.ContainerType() + if yyct3714 == codecSelferValueTypeMap1234 { + yyl3714 := r.ReadMapStart() + if yyl3714 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3671, d) + x.codecDecodeSelfFromMap(yyl3714, d) } - } else if yyct3671 == codecSelferValueTypeArray1234 { - yyl3671 := r.ReadArrayStart() - if yyl3671 == 0 { + } else if yyct3714 == codecSelferValueTypeArray1234 { + yyl3714 := r.ReadArrayStart() + if yyl3714 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3671, d) + x.codecDecodeSelfFromArray(yyl3714, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46144,12 +46755,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3672Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3672Slc - var yyhl3672 bool = l >= 0 - for yyj3672 := 0; ; yyj3672++ { - if yyhl3672 { - if yyj3672 >= l { + var yys3715Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3715Slc + var yyhl3715 bool = l >= 0 + for yyj3715 := 0; ; yyj3715++ { + if yyhl3715 { + if yyj3715 >= l { break } } else { @@ -46158,10 +46769,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3672Slc = r.DecodeBytes(yys3672Slc, true, true) - yys3672 := string(yys3672Slc) + yys3715Slc = r.DecodeBytes(yys3715Slc, true, true) + yys3715 := string(yys3715Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3672 { + switch yys3715 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -46169,9 +46780,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3672) - } // end switch yys3672 - } // end for yyj3672 + z.DecStructFieldNotFound(-1, yys3715) + } // end switch yys3715 + } // end for yyj3715 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46179,16 +46790,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3674 int - var yyb3674 bool - var yyhl3674 bool = l >= 0 - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + var yyj3717 int + var yyb3717 bool + var yyhl3717 bool = l >= 0 + yyj3717++ + if yyhl3717 { + yyb3717 = yyj3717 > l } else { - yyb3674 = r.CheckBreak() + yyb3717 = r.CheckBreak() } - if yyb3674 { + if yyb3717 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46199,17 +46810,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + yyj3717++ + if yyhl3717 { + yyb3717 = yyj3717 > l } else { - yyb3674 = r.CheckBreak() + yyb3717 = r.CheckBreak() } - if yyb3674 { + if yyb3717 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3674-1, "") + z.DecStructFieldNotFound(yyj3717-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46221,37 +46832,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3676 := z.EncBinary() - _ = yym3676 + yym3719 := z.EncBinary() + _ = yym3719 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3677 := !z.EncBinary() - yy2arr3677 := z.EncBasicHandle().StructToArray - var yyq3677 [3]bool - _, _, _ = yysep3677, yyq3677, yy2arr3677 - const yyr3677 bool = false - yyq3677[0] = x.Kind != "" - yyq3677[1] = x.APIVersion != "" - yyq3677[2] = true - var yynn3677 int - if yyr3677 || yy2arr3677 { + yysep3720 := !z.EncBinary() + yy2arr3720 := z.EncBasicHandle().StructToArray + var yyq3720 [3]bool + _, _, _ = yysep3720, yyq3720, yy2arr3720 + const yyr3720 bool = false + yyq3720[0] = x.Kind != "" + yyq3720[1] = x.APIVersion != "" + yyq3720[2] = true + var yynn3720 int + if yyr3720 || yy2arr3720 { r.EncodeArrayStart(3) } else { - yynn3677 = 0 - for _, b := range yyq3677 { + yynn3720 = 0 + for _, b := range yyq3720 { if b { - yynn3677++ + yynn3720++ } } - r.EncodeMapStart(yynn3677) - yynn3677 = 0 + r.EncodeMapStart(yynn3720) + yynn3720 = 0 } - if yyr3677 || yy2arr3677 { + if yyr3720 || yy2arr3720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3677[0] { - yym3679 := z.EncBinary() - _ = yym3679 + if yyq3720[0] { + yym3722 := z.EncBinary() + _ = yym3722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46260,23 +46871,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3677[0] { + if yyq3720[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3723 := z.EncBinary() + _ = yym3723 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3677 || yy2arr3677 { + if yyr3720 || yy2arr3720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3677[1] { - yym3682 := z.EncBinary() - _ = yym3682 + if yyq3720[1] { + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46285,36 +46896,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3677[1] { + if yyq3720[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3683 := z.EncBinary() - _ = yym3683 + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3677 || yy2arr3677 { + if yyr3720 || yy2arr3720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3677[2] { - yy3685 := &x.Reference - yy3685.CodecEncodeSelf(e) + if yyq3720[2] { + yy3728 := &x.Reference + yy3728.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3677[2] { + if yyq3720[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3686 := &x.Reference - yy3686.CodecEncodeSelf(e) + yy3729 := &x.Reference + yy3729.CodecEncodeSelf(e) } } - if yyr3677 || yy2arr3677 { + if yyr3720 || yy2arr3720 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46327,25 +46938,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3687 := z.DecBinary() - _ = yym3687 + yym3730 := z.DecBinary() + _ = yym3730 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3688 := r.ContainerType() - if yyct3688 == codecSelferValueTypeMap1234 { - yyl3688 := r.ReadMapStart() - if yyl3688 == 0 { + yyct3731 := r.ContainerType() + if yyct3731 == codecSelferValueTypeMap1234 { + yyl3731 := r.ReadMapStart() + if yyl3731 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3688, d) + x.codecDecodeSelfFromMap(yyl3731, d) } - } else if yyct3688 == codecSelferValueTypeArray1234 { - yyl3688 := r.ReadArrayStart() - if yyl3688 == 0 { + } else if yyct3731 == codecSelferValueTypeArray1234 { + yyl3731 := r.ReadArrayStart() + if yyl3731 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3688, d) + x.codecDecodeSelfFromArray(yyl3731, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46357,12 +46968,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3689Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3689Slc - var yyhl3689 bool = l >= 0 - for yyj3689 := 0; ; yyj3689++ { - if yyhl3689 { - if yyj3689 >= l { + var yys3732Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3732Slc + var yyhl3732 bool = l >= 0 + for yyj3732 := 0; ; yyj3732++ { + if yyhl3732 { + if yyj3732 >= l { break } } else { @@ -46371,10 +46982,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3689Slc = r.DecodeBytes(yys3689Slc, true, true) - yys3689 := string(yys3689Slc) + yys3732Slc = r.DecodeBytes(yys3732Slc, true, true) + yys3732 := string(yys3732Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3689 { + switch yys3732 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46391,13 +47002,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3692 := &x.Reference - yyv3692.CodecDecodeSelf(d) + yyv3735 := &x.Reference + yyv3735.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3689) - } // end switch yys3689 - } // end for yyj3689 + z.DecStructFieldNotFound(-1, yys3732) + } // end switch yys3732 + } // end for yyj3732 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46405,16 +47016,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3693 int - var yyb3693 bool - var yyhl3693 bool = l >= 0 - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + var yyj3736 int + var yyb3736 bool + var yyhl3736 bool = l >= 0 + yyj3736++ + if yyhl3736 { + yyb3736 = yyj3736 > l } else { - yyb3693 = r.CheckBreak() + yyb3736 = r.CheckBreak() } - if yyb3693 { + if yyb3736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46424,13 +47035,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3736++ + if yyhl3736 { + yyb3736 = yyj3736 > l } else { - yyb3693 = r.CheckBreak() + yyb3736 = r.CheckBreak() } - if yyb3693 { + if yyb3736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46440,13 +47051,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3736++ + if yyhl3736 { + yyb3736 = yyj3736 > l } else { - yyb3693 = r.CheckBreak() + yyb3736 = r.CheckBreak() } - if yyb3693 { + if yyb3736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46454,21 +47065,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3696 := &x.Reference - yyv3696.CodecDecodeSelf(d) + yyv3739 := &x.Reference + yyv3739.CodecDecodeSelf(d) } for { - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3736++ + if yyhl3736 { + yyb3736 = yyj3736 > l } else { - yyb3693 = r.CheckBreak() + yyb3736 = r.CheckBreak() } - if yyb3693 { + if yyb3736 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3693-1, "") + z.DecStructFieldNotFound(yyj3736-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46480,36 +47091,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3697 := z.EncBinary() - _ = yym3697 + yym3740 := z.EncBinary() + _ = yym3740 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3698 := !z.EncBinary() - yy2arr3698 := z.EncBasicHandle().StructToArray - var yyq3698 [2]bool - _, _, _ = yysep3698, yyq3698, yy2arr3698 - const yyr3698 bool = false - yyq3698[0] = x.Component != "" - yyq3698[1] = x.Host != "" - var yynn3698 int - if yyr3698 || yy2arr3698 { + yysep3741 := !z.EncBinary() + yy2arr3741 := z.EncBasicHandle().StructToArray + var yyq3741 [2]bool + _, _, _ = yysep3741, yyq3741, yy2arr3741 + const yyr3741 bool = false + yyq3741[0] = x.Component != "" + yyq3741[1] = x.Host != "" + var yynn3741 int + if yyr3741 || yy2arr3741 { r.EncodeArrayStart(2) } else { - yynn3698 = 0 - for _, b := range yyq3698 { + yynn3741 = 0 + for _, b := range yyq3741 { if b { - yynn3698++ + yynn3741++ } } - r.EncodeMapStart(yynn3698) - yynn3698 = 0 + r.EncodeMapStart(yynn3741) + yynn3741 = 0 } - if yyr3698 || yy2arr3698 { + if yyr3741 || yy2arr3741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3698[0] { - yym3700 := z.EncBinary() - _ = yym3700 + if yyq3741[0] { + yym3743 := z.EncBinary() + _ = yym3743 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -46518,23 +47129,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3698[0] { + if yyq3741[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3701 := z.EncBinary() - _ = yym3701 + yym3744 := z.EncBinary() + _ = yym3744 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3698 || yy2arr3698 { + if yyr3741 || yy2arr3741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3698[1] { - yym3703 := z.EncBinary() - _ = yym3703 + if yyq3741[1] { + yym3746 := z.EncBinary() + _ = yym3746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -46543,19 +47154,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3698[1] { + if yyq3741[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3704 := z.EncBinary() - _ = yym3704 + yym3747 := z.EncBinary() + _ = yym3747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3698 || yy2arr3698 { + if yyr3741 || yy2arr3741 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46568,25 +47179,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3705 := z.DecBinary() - _ = yym3705 + yym3748 := z.DecBinary() + _ = yym3748 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3706 := r.ContainerType() - if yyct3706 == codecSelferValueTypeMap1234 { - yyl3706 := r.ReadMapStart() - if yyl3706 == 0 { + yyct3749 := r.ContainerType() + if yyct3749 == codecSelferValueTypeMap1234 { + yyl3749 := r.ReadMapStart() + if yyl3749 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3706, d) + x.codecDecodeSelfFromMap(yyl3749, d) } - } else if yyct3706 == codecSelferValueTypeArray1234 { - yyl3706 := r.ReadArrayStart() - if yyl3706 == 0 { + } else if yyct3749 == codecSelferValueTypeArray1234 { + yyl3749 := r.ReadArrayStart() + if yyl3749 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3706, d) + x.codecDecodeSelfFromArray(yyl3749, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46598,12 +47209,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3707Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3707Slc - var yyhl3707 bool = l >= 0 - for yyj3707 := 0; ; yyj3707++ { - if yyhl3707 { - if yyj3707 >= l { + var yys3750Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3750Slc + var yyhl3750 bool = l >= 0 + for yyj3750 := 0; ; yyj3750++ { + if yyhl3750 { + if yyj3750 >= l { break } } else { @@ -46612,10 +47223,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3707Slc = r.DecodeBytes(yys3707Slc, true, true) - yys3707 := string(yys3707Slc) + yys3750Slc = r.DecodeBytes(yys3750Slc, true, true) + yys3750 := string(yys3750Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3707 { + switch yys3750 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -46629,9 +47240,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3707) - } // end switch yys3707 - } // end for yyj3707 + z.DecStructFieldNotFound(-1, yys3750) + } // end switch yys3750 + } // end for yyj3750 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46639,16 +47250,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3710 int - var yyb3710 bool - var yyhl3710 bool = l >= 0 - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + var yyj3753 int + var yyb3753 bool + var yyhl3753 bool = l >= 0 + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3710 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3710 { + if yyb3753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46658,13 +47269,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3710 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3710 { + if yyb3753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46675,17 +47286,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3710 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3710 { + if yyb3753 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3710-1, "") + z.DecStructFieldNotFound(yyj3753-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46697,43 +47308,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3713 := z.EncBinary() - _ = yym3713 + yym3756 := z.EncBinary() + _ = yym3756 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3714 := !z.EncBinary() - yy2arr3714 := z.EncBasicHandle().StructToArray - var yyq3714 [11]bool - _, _, _ = yysep3714, yyq3714, yy2arr3714 - const yyr3714 bool = false - yyq3714[0] = x.Kind != "" - yyq3714[1] = x.APIVersion != "" - yyq3714[4] = x.Reason != "" - yyq3714[5] = x.Message != "" - yyq3714[6] = true - yyq3714[7] = true - yyq3714[8] = true - yyq3714[9] = x.Count != 0 - yyq3714[10] = x.Type != "" - var yynn3714 int - if yyr3714 || yy2arr3714 { + yysep3757 := !z.EncBinary() + yy2arr3757 := z.EncBasicHandle().StructToArray + var yyq3757 [11]bool + _, _, _ = yysep3757, yyq3757, yy2arr3757 + const yyr3757 bool = false + yyq3757[0] = x.Kind != "" + yyq3757[1] = x.APIVersion != "" + yyq3757[4] = x.Reason != "" + yyq3757[5] = x.Message != "" + yyq3757[6] = true + yyq3757[7] = true + yyq3757[8] = true + yyq3757[9] = x.Count != 0 + yyq3757[10] = x.Type != "" + var yynn3757 int + if yyr3757 || yy2arr3757 { r.EncodeArrayStart(11) } else { - yynn3714 = 2 - for _, b := range yyq3714 { + yynn3757 = 2 + for _, b := range yyq3757 { if b { - yynn3714++ + yynn3757++ } } - r.EncodeMapStart(yynn3714) - yynn3714 = 0 + r.EncodeMapStart(yynn3757) + yynn3757 = 0 } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[0] { - yym3716 := z.EncBinary() - _ = yym3716 + if yyq3757[0] { + yym3759 := z.EncBinary() + _ = yym3759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46742,23 +47353,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[0] { + if yyq3757[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3717 := z.EncBinary() - _ = yym3717 + yym3760 := z.EncBinary() + _ = yym3760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[1] { - yym3719 := z.EncBinary() - _ = yym3719 + if yyq3757[1] { + yym3762 := z.EncBinary() + _ = yym3762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46767,45 +47378,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[1] { + if yyq3757[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3720 := z.EncBinary() - _ = yym3720 + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3722 := &x.ObjectMeta - yy3722.CodecEncodeSelf(e) + yy3765 := &x.ObjectMeta + yy3765.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3723 := &x.ObjectMeta - yy3723.CodecEncodeSelf(e) + yy3766 := &x.ObjectMeta + yy3766.CodecEncodeSelf(e) } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3725 := &x.InvolvedObject - yy3725.CodecEncodeSelf(e) + yy3768 := &x.InvolvedObject + yy3768.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3726 := &x.InvolvedObject - yy3726.CodecEncodeSelf(e) + yy3769 := &x.InvolvedObject + yy3769.CodecEncodeSelf(e) } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[4] { - yym3728 := z.EncBinary() - _ = yym3728 + if yyq3757[4] { + yym3771 := z.EncBinary() + _ = yym3771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -46814,23 +47425,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[4] { + if yyq3757[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3729 := z.EncBinary() - _ = yym3729 + yym3772 := z.EncBinary() + _ = yym3772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[5] { - yym3731 := z.EncBinary() - _ = yym3731 + if yyq3757[5] { + yym3774 := z.EncBinary() + _ = yym3774 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -46839,114 +47450,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[5] { + if yyq3757[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3732 := z.EncBinary() - _ = yym3732 + yym3775 := z.EncBinary() + _ = yym3775 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[6] { - yy3734 := &x.Source - yy3734.CodecEncodeSelf(e) + if yyq3757[6] { + yy3777 := &x.Source + yy3777.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3714[6] { + if yyq3757[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3735 := &x.Source - yy3735.CodecEncodeSelf(e) + yy3778 := &x.Source + yy3778.CodecEncodeSelf(e) } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[7] { - yy3737 := &x.FirstTimestamp - yym3738 := z.EncBinary() - _ = yym3738 + if yyq3757[7] { + yy3780 := &x.FirstTimestamp + yym3781 := z.EncBinary() + _ = yym3781 if false { - } else if z.HasExtensions() && z.EncExt(yy3737) { - } else if yym3738 { - z.EncBinaryMarshal(yy3737) - } else if !yym3738 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3737) + } else if z.HasExtensions() && z.EncExt(yy3780) { + } else if yym3781 { + z.EncBinaryMarshal(yy3780) + } else if !yym3781 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3780) } else { - z.EncFallback(yy3737) + z.EncFallback(yy3780) } } else { r.EncodeNil() } } else { - if yyq3714[7] { + if yyq3757[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3739 := &x.FirstTimestamp - yym3740 := z.EncBinary() - _ = yym3740 + yy3782 := &x.FirstTimestamp + yym3783 := z.EncBinary() + _ = yym3783 if false { - } else if z.HasExtensions() && z.EncExt(yy3739) { - } else if yym3740 { - z.EncBinaryMarshal(yy3739) - } else if !yym3740 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3739) + } else if z.HasExtensions() && z.EncExt(yy3782) { + } else if yym3783 { + z.EncBinaryMarshal(yy3782) + } else if !yym3783 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3782) } else { - z.EncFallback(yy3739) + z.EncFallback(yy3782) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[8] { - yy3742 := &x.LastTimestamp - yym3743 := z.EncBinary() - _ = yym3743 + if yyq3757[8] { + yy3785 := &x.LastTimestamp + yym3786 := z.EncBinary() + _ = yym3786 if false { - } else if z.HasExtensions() && z.EncExt(yy3742) { - } else if yym3743 { - z.EncBinaryMarshal(yy3742) - } else if !yym3743 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3742) + } else if z.HasExtensions() && z.EncExt(yy3785) { + } else if yym3786 { + z.EncBinaryMarshal(yy3785) + } else if !yym3786 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3785) } else { - z.EncFallback(yy3742) + z.EncFallback(yy3785) } } else { r.EncodeNil() } } else { - if yyq3714[8] { + if yyq3757[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3744 := &x.LastTimestamp - yym3745 := z.EncBinary() - _ = yym3745 + yy3787 := &x.LastTimestamp + yym3788 := z.EncBinary() + _ = yym3788 if false { - } else if z.HasExtensions() && z.EncExt(yy3744) { - } else if yym3745 { - z.EncBinaryMarshal(yy3744) - } else if !yym3745 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3744) + } else if z.HasExtensions() && z.EncExt(yy3787) { + } else if yym3788 { + z.EncBinaryMarshal(yy3787) + } else if !yym3788 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3787) } else { - z.EncFallback(yy3744) + z.EncFallback(yy3787) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[9] { - yym3747 := z.EncBinary() - _ = yym3747 + if yyq3757[9] { + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeInt(int64(x.Count)) @@ -46955,23 +47566,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3714[9] { + if yyq3757[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3748 := z.EncBinary() - _ = yym3748 + yym3791 := z.EncBinary() + _ = yym3791 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[10] { - yym3750 := z.EncBinary() - _ = yym3750 + if yyq3757[10] { + yym3793 := z.EncBinary() + _ = yym3793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -46980,19 +47591,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[10] { + if yyq3757[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3751 := z.EncBinary() - _ = yym3751 + yym3794 := z.EncBinary() + _ = yym3794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3714 || yy2arr3714 { + if yyr3757 || yy2arr3757 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47005,25 +47616,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3752 := z.DecBinary() - _ = yym3752 + yym3795 := z.DecBinary() + _ = yym3795 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3753 := r.ContainerType() - if yyct3753 == codecSelferValueTypeMap1234 { - yyl3753 := r.ReadMapStart() - if yyl3753 == 0 { + yyct3796 := r.ContainerType() + if yyct3796 == codecSelferValueTypeMap1234 { + yyl3796 := r.ReadMapStart() + if yyl3796 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3753, d) + x.codecDecodeSelfFromMap(yyl3796, d) } - } else if yyct3753 == codecSelferValueTypeArray1234 { - yyl3753 := r.ReadArrayStart() - if yyl3753 == 0 { + } else if yyct3796 == codecSelferValueTypeArray1234 { + yyl3796 := r.ReadArrayStart() + if yyl3796 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3753, d) + x.codecDecodeSelfFromArray(yyl3796, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47035,12 +47646,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3754Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3754Slc - var yyhl3754 bool = l >= 0 - for yyj3754 := 0; ; yyj3754++ { - if yyhl3754 { - if yyj3754 >= l { + var yys3797Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3797Slc + var yyhl3797 bool = l >= 0 + for yyj3797 := 0; ; yyj3797++ { + if yyhl3797 { + if yyj3797 >= l { break } } else { @@ -47049,10 +47660,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3754Slc = r.DecodeBytes(yys3754Slc, true, true) - yys3754 := string(yys3754Slc) + yys3797Slc = r.DecodeBytes(yys3797Slc, true, true) + yys3797 := string(yys3797Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3754 { + switch yys3797 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47069,15 +47680,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3757 := &x.ObjectMeta - yyv3757.CodecDecodeSelf(d) + yyv3800 := &x.ObjectMeta + yyv3800.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3758 := &x.InvolvedObject - yyv3758.CodecDecodeSelf(d) + yyv3801 := &x.InvolvedObject + yyv3801.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -47095,41 +47706,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3761 := &x.Source - yyv3761.CodecDecodeSelf(d) + yyv3804 := &x.Source + yyv3804.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3762 := &x.FirstTimestamp - yym3763 := z.DecBinary() - _ = yym3763 + yyv3805 := &x.FirstTimestamp + yym3806 := z.DecBinary() + _ = yym3806 if false { - } else if z.HasExtensions() && z.DecExt(yyv3762) { - } else if yym3763 { - z.DecBinaryUnmarshal(yyv3762) - } else if !yym3763 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3762) + } else if z.HasExtensions() && z.DecExt(yyv3805) { + } else if yym3806 { + z.DecBinaryUnmarshal(yyv3805) + } else if !yym3806 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3805) } else { - z.DecFallback(yyv3762, false) + z.DecFallback(yyv3805, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3764 := &x.LastTimestamp - yym3765 := z.DecBinary() - _ = yym3765 + yyv3807 := &x.LastTimestamp + yym3808 := z.DecBinary() + _ = yym3808 if false { - } else if z.HasExtensions() && z.DecExt(yyv3764) { - } else if yym3765 { - z.DecBinaryUnmarshal(yyv3764) - } else if !yym3765 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3764) + } else if z.HasExtensions() && z.DecExt(yyv3807) { + } else if yym3808 { + z.DecBinaryUnmarshal(yyv3807) + } else if !yym3808 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3807) } else { - z.DecFallback(yyv3764, false) + z.DecFallback(yyv3807, false) } } case "count": @@ -47145,9 +47756,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3754) - } // end switch yys3754 - } // end for yyj3754 + z.DecStructFieldNotFound(-1, yys3797) + } // end switch yys3797 + } // end for yyj3797 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47155,16 +47766,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3768 int - var yyb3768 bool - var yyhl3768 bool = l >= 0 - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + var yyj3811 int + var yyb3811 bool + var yyhl3811 bool = l >= 0 + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47174,13 +47785,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47190,13 +47801,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47204,16 +47815,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3771 := &x.ObjectMeta - yyv3771.CodecDecodeSelf(d) + yyv3814 := &x.ObjectMeta + yyv3814.CodecDecodeSelf(d) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47221,16 +47832,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3772 := &x.InvolvedObject - yyv3772.CodecDecodeSelf(d) + yyv3815 := &x.InvolvedObject + yyv3815.CodecDecodeSelf(d) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47240,13 +47851,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47256,13 +47867,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47270,16 +47881,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3775 := &x.Source - yyv3775.CodecDecodeSelf(d) + yyv3818 := &x.Source + yyv3818.CodecDecodeSelf(d) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47287,26 +47898,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3776 := &x.FirstTimestamp - yym3777 := z.DecBinary() - _ = yym3777 + yyv3819 := &x.FirstTimestamp + yym3820 := z.DecBinary() + _ = yym3820 if false { - } else if z.HasExtensions() && z.DecExt(yyv3776) { - } else if yym3777 { - z.DecBinaryUnmarshal(yyv3776) - } else if !yym3777 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3776) + } else if z.HasExtensions() && z.DecExt(yyv3819) { + } else if yym3820 { + z.DecBinaryUnmarshal(yyv3819) + } else if !yym3820 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3819) } else { - z.DecFallback(yyv3776, false) + z.DecFallback(yyv3819, false) } } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47314,26 +47925,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3778 := &x.LastTimestamp - yym3779 := z.DecBinary() - _ = yym3779 + yyv3821 := &x.LastTimestamp + yym3822 := z.DecBinary() + _ = yym3822 if false { - } else if z.HasExtensions() && z.DecExt(yyv3778) { - } else if yym3779 { - z.DecBinaryUnmarshal(yyv3778) - } else if !yym3779 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3778) + } else if z.HasExtensions() && z.DecExt(yyv3821) { + } else if yym3822 { + z.DecBinaryUnmarshal(yyv3821) + } else if !yym3822 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3821) } else { - z.DecFallback(yyv3778, false) + z.DecFallback(yyv3821, false) } } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47343,13 +47954,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47360,17 +47971,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3768++ - if yyhl3768 { - yyb3768 = yyj3768 > l + yyj3811++ + if yyhl3811 { + yyb3811 = yyj3811 > l } else { - yyb3768 = r.CheckBreak() + yyb3811 = r.CheckBreak() } - if yyb3768 { + if yyb3811 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3768-1, "") + z.DecStructFieldNotFound(yyj3811-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47382,37 +47993,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3782 := z.EncBinary() - _ = yym3782 + yym3825 := z.EncBinary() + _ = yym3825 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3783 := !z.EncBinary() - yy2arr3783 := z.EncBasicHandle().StructToArray - var yyq3783 [4]bool - _, _, _ = yysep3783, yyq3783, yy2arr3783 - const yyr3783 bool = false - yyq3783[0] = x.Kind != "" - yyq3783[1] = x.APIVersion != "" - yyq3783[2] = true - var yynn3783 int - if yyr3783 || yy2arr3783 { + yysep3826 := !z.EncBinary() + yy2arr3826 := z.EncBasicHandle().StructToArray + var yyq3826 [4]bool + _, _, _ = yysep3826, yyq3826, yy2arr3826 + const yyr3826 bool = false + yyq3826[0] = x.Kind != "" + yyq3826[1] = x.APIVersion != "" + yyq3826[2] = true + var yynn3826 int + if yyr3826 || yy2arr3826 { r.EncodeArrayStart(4) } else { - yynn3783 = 1 - for _, b := range yyq3783 { + yynn3826 = 1 + for _, b := range yyq3826 { if b { - yynn3783++ + yynn3826++ } } - r.EncodeMapStart(yynn3783) - yynn3783 = 0 + r.EncodeMapStart(yynn3826) + yynn3826 = 0 } - if yyr3783 || yy2arr3783 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3783[0] { - yym3785 := z.EncBinary() - _ = yym3785 + if yyq3826[0] { + yym3828 := z.EncBinary() + _ = yym3828 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47421,23 +48032,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3783[0] { + if yyq3826[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3786 := z.EncBinary() - _ = yym3786 + yym3829 := z.EncBinary() + _ = yym3829 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3783 || yy2arr3783 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3783[1] { - yym3788 := z.EncBinary() - _ = yym3788 + if yyq3826[1] { + yym3831 := z.EncBinary() + _ = yym3831 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47446,54 +48057,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3783[1] { + if yyq3826[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3789 := z.EncBinary() - _ = yym3789 + yym3832 := z.EncBinary() + _ = yym3832 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3783 || yy2arr3783 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3783[2] { - yy3791 := &x.ListMeta - yym3792 := z.EncBinary() - _ = yym3792 + if yyq3826[2] { + yy3834 := &x.ListMeta + yym3835 := z.EncBinary() + _ = yym3835 if false { - } else if z.HasExtensions() && z.EncExt(yy3791) { + } else if z.HasExtensions() && z.EncExt(yy3834) { } else { - z.EncFallback(yy3791) + z.EncFallback(yy3834) } } else { r.EncodeNil() } } else { - if yyq3783[2] { + if yyq3826[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3793 := &x.ListMeta - yym3794 := z.EncBinary() - _ = yym3794 + yy3836 := &x.ListMeta + yym3837 := z.EncBinary() + _ = yym3837 if false { - } else if z.HasExtensions() && z.EncExt(yy3793) { + } else if z.HasExtensions() && z.EncExt(yy3836) { } else { - z.EncFallback(yy3793) + z.EncFallback(yy3836) } } } - if yyr3783 || yy2arr3783 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3796 := z.EncBinary() - _ = yym3796 + yym3839 := z.EncBinary() + _ = yym3839 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -47506,15 +48117,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3797 := z.EncBinary() - _ = yym3797 + yym3840 := z.EncBinary() + _ = yym3840 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3783 || yy2arr3783 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47527,25 +48138,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3798 := z.DecBinary() - _ = yym3798 + yym3841 := z.DecBinary() + _ = yym3841 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3799 := r.ContainerType() - if yyct3799 == codecSelferValueTypeMap1234 { - yyl3799 := r.ReadMapStart() - if yyl3799 == 0 { + yyct3842 := r.ContainerType() + if yyct3842 == codecSelferValueTypeMap1234 { + yyl3842 := r.ReadMapStart() + if yyl3842 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3799, d) + x.codecDecodeSelfFromMap(yyl3842, d) } - } else if yyct3799 == codecSelferValueTypeArray1234 { - yyl3799 := r.ReadArrayStart() - if yyl3799 == 0 { + } else if yyct3842 == codecSelferValueTypeArray1234 { + yyl3842 := r.ReadArrayStart() + if yyl3842 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3799, d) + x.codecDecodeSelfFromArray(yyl3842, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47557,12 +48168,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3800Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3800Slc - var yyhl3800 bool = l >= 0 - for yyj3800 := 0; ; yyj3800++ { - if yyhl3800 { - if yyj3800 >= l { + var yys3843Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3843Slc + var yyhl3843 bool = l >= 0 + for yyj3843 := 0; ; yyj3843++ { + if yyhl3843 { + if yyj3843 >= l { break } } else { @@ -47571,10 +48182,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3800Slc = r.DecodeBytes(yys3800Slc, true, true) - yys3800 := string(yys3800Slc) + yys3843Slc = r.DecodeBytes(yys3843Slc, true, true) + yys3843 := string(yys3843Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3800 { + switch yys3843 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47591,31 +48202,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3803 := &x.ListMeta - yym3804 := z.DecBinary() - _ = yym3804 + yyv3846 := &x.ListMeta + yym3847 := z.DecBinary() + _ = yym3847 if false { - } else if z.HasExtensions() && z.DecExt(yyv3803) { + } else if z.HasExtensions() && z.DecExt(yyv3846) { } else { - z.DecFallback(yyv3803, false) + z.DecFallback(yyv3846, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3805 := &x.Items - yym3806 := z.DecBinary() - _ = yym3806 + yyv3848 := &x.Items + yym3849 := z.DecBinary() + _ = yym3849 if false { } else { - h.decSliceEvent((*[]Event)(yyv3805), d) + h.decSliceEvent((*[]Event)(yyv3848), d) } } default: - z.DecStructFieldNotFound(-1, yys3800) - } // end switch yys3800 - } // end for yyj3800 + z.DecStructFieldNotFound(-1, yys3843) + } // end switch yys3843 + } // end for yyj3843 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47623,16 +48234,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3807 int - var yyb3807 bool - var yyhl3807 bool = l >= 0 - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + var yyj3850 int + var yyb3850 bool + var yyhl3850 bool = l >= 0 + yyj3850++ + if yyhl3850 { + yyb3850 = yyj3850 > l } else { - yyb3807 = r.CheckBreak() + yyb3850 = r.CheckBreak() } - if yyb3807 { + if yyb3850 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47642,13 +48253,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3850++ + if yyhl3850 { + yyb3850 = yyj3850 > l } else { - yyb3807 = r.CheckBreak() + yyb3850 = r.CheckBreak() } - if yyb3807 { + if yyb3850 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47658,13 +48269,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3850++ + if yyhl3850 { + yyb3850 = yyj3850 > l } else { - yyb3807 = r.CheckBreak() + yyb3850 = r.CheckBreak() } - if yyb3807 { + if yyb3850 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47672,22 +48283,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3810 := &x.ListMeta - yym3811 := z.DecBinary() - _ = yym3811 + yyv3853 := &x.ListMeta + yym3854 := z.DecBinary() + _ = yym3854 if false { - } else if z.HasExtensions() && z.DecExt(yyv3810) { + } else if z.HasExtensions() && z.DecExt(yyv3853) { } else { - z.DecFallback(yyv3810, false) + z.DecFallback(yyv3853, false) } } - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3850++ + if yyhl3850 { + yyb3850 = yyj3850 > l } else { - yyb3807 = r.CheckBreak() + yyb3850 = r.CheckBreak() } - if yyb3807 { + if yyb3850 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47695,26 +48306,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3812 := &x.Items - yym3813 := z.DecBinary() - _ = yym3813 + yyv3855 := &x.Items + yym3856 := z.DecBinary() + _ = yym3856 if false { } else { - h.decSliceEvent((*[]Event)(yyv3812), d) + h.decSliceEvent((*[]Event)(yyv3855), d) } } for { - yyj3807++ - if yyhl3807 { - yyb3807 = yyj3807 > l + yyj3850++ + if yyhl3850 { + yyb3850 = yyj3850 > l } else { - yyb3807 = r.CheckBreak() + yyb3850 = r.CheckBreak() } - if yyb3807 { + if yyb3850 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3807-1, "") + z.DecStructFieldNotFound(yyj3850-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47726,37 +48337,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3814 := z.EncBinary() - _ = yym3814 + yym3857 := z.EncBinary() + _ = yym3857 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3815 := !z.EncBinary() - yy2arr3815 := z.EncBasicHandle().StructToArray - var yyq3815 [4]bool - _, _, _ = yysep3815, yyq3815, yy2arr3815 - const yyr3815 bool = false - yyq3815[0] = x.Kind != "" - yyq3815[1] = x.APIVersion != "" - yyq3815[2] = true - var yynn3815 int - if yyr3815 || yy2arr3815 { + yysep3858 := !z.EncBinary() + yy2arr3858 := z.EncBasicHandle().StructToArray + var yyq3858 [4]bool + _, _, _ = yysep3858, yyq3858, yy2arr3858 + const yyr3858 bool = false + yyq3858[0] = x.Kind != "" + yyq3858[1] = x.APIVersion != "" + yyq3858[2] = true + var yynn3858 int + if yyr3858 || yy2arr3858 { r.EncodeArrayStart(4) } else { - yynn3815 = 1 - for _, b := range yyq3815 { + yynn3858 = 1 + for _, b := range yyq3858 { if b { - yynn3815++ + yynn3858++ } } - r.EncodeMapStart(yynn3815) - yynn3815 = 0 + r.EncodeMapStart(yynn3858) + yynn3858 = 0 } - if yyr3815 || yy2arr3815 { + if yyr3858 || yy2arr3858 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3815[0] { - yym3817 := z.EncBinary() - _ = yym3817 + if yyq3858[0] { + yym3860 := z.EncBinary() + _ = yym3860 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47765,23 +48376,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3815[0] { + if yyq3858[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3818 := z.EncBinary() - _ = yym3818 + yym3861 := z.EncBinary() + _ = yym3861 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3815 || yy2arr3815 { + if yyr3858 || yy2arr3858 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3815[1] { - yym3820 := z.EncBinary() - _ = yym3820 + if yyq3858[1] { + yym3863 := z.EncBinary() + _ = yym3863 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47790,54 +48401,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3815[1] { + if yyq3858[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3821 := z.EncBinary() - _ = yym3821 + yym3864 := z.EncBinary() + _ = yym3864 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3815 || yy2arr3815 { + if yyr3858 || yy2arr3858 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3815[2] { - yy3823 := &x.ListMeta - yym3824 := z.EncBinary() - _ = yym3824 + if yyq3858[2] { + yy3866 := &x.ListMeta + yym3867 := z.EncBinary() + _ = yym3867 if false { - } else if z.HasExtensions() && z.EncExt(yy3823) { + } else if z.HasExtensions() && z.EncExt(yy3866) { } else { - z.EncFallback(yy3823) + z.EncFallback(yy3866) } } else { r.EncodeNil() } } else { - if yyq3815[2] { + if yyq3858[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3825 := &x.ListMeta - yym3826 := z.EncBinary() - _ = yym3826 + yy3868 := &x.ListMeta + yym3869 := z.EncBinary() + _ = yym3869 if false { - } else if z.HasExtensions() && z.EncExt(yy3825) { + } else if z.HasExtensions() && z.EncExt(yy3868) { } else { - z.EncFallback(yy3825) + z.EncFallback(yy3868) } } } - if yyr3815 || yy2arr3815 { + if yyr3858 || yy2arr3858 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3828 := z.EncBinary() - _ = yym3828 + yym3871 := z.EncBinary() + _ = yym3871 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -47850,15 +48461,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3829 := z.EncBinary() - _ = yym3829 + yym3872 := z.EncBinary() + _ = yym3872 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3815 || yy2arr3815 { + if yyr3858 || yy2arr3858 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47871,25 +48482,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3830 := z.DecBinary() - _ = yym3830 + yym3873 := z.DecBinary() + _ = yym3873 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3831 := r.ContainerType() - if yyct3831 == codecSelferValueTypeMap1234 { - yyl3831 := r.ReadMapStart() - if yyl3831 == 0 { + yyct3874 := r.ContainerType() + if yyct3874 == codecSelferValueTypeMap1234 { + yyl3874 := r.ReadMapStart() + if yyl3874 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3831, d) + x.codecDecodeSelfFromMap(yyl3874, d) } - } else if yyct3831 == codecSelferValueTypeArray1234 { - yyl3831 := r.ReadArrayStart() - if yyl3831 == 0 { + } else if yyct3874 == codecSelferValueTypeArray1234 { + yyl3874 := r.ReadArrayStart() + if yyl3874 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3831, d) + x.codecDecodeSelfFromArray(yyl3874, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47901,12 +48512,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3832Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3832Slc - var yyhl3832 bool = l >= 0 - for yyj3832 := 0; ; yyj3832++ { - if yyhl3832 { - if yyj3832 >= l { + var yys3875Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3875Slc + var yyhl3875 bool = l >= 0 + for yyj3875 := 0; ; yyj3875++ { + if yyhl3875 { + if yyj3875 >= l { break } } else { @@ -47915,10 +48526,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3832Slc = r.DecodeBytes(yys3832Slc, true, true) - yys3832 := string(yys3832Slc) + yys3875Slc = r.DecodeBytes(yys3875Slc, true, true) + yys3875 := string(yys3875Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3832 { + switch yys3875 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47935,31 +48546,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3835 := &x.ListMeta - yym3836 := z.DecBinary() - _ = yym3836 + yyv3878 := &x.ListMeta + yym3879 := z.DecBinary() + _ = yym3879 if false { - } else if z.HasExtensions() && z.DecExt(yyv3835) { + } else if z.HasExtensions() && z.DecExt(yyv3878) { } else { - z.DecFallback(yyv3835, false) + z.DecFallback(yyv3878, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3837 := &x.Items - yym3838 := z.DecBinary() - _ = yym3838 + yyv3880 := &x.Items + yym3881 := z.DecBinary() + _ = yym3881 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3837), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3880), d) } } default: - z.DecStructFieldNotFound(-1, yys3832) - } // end switch yys3832 - } // end for yyj3832 + z.DecStructFieldNotFound(-1, yys3875) + } // end switch yys3875 + } // end for yyj3875 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47967,16 +48578,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3839 int - var yyb3839 bool - var yyhl3839 bool = l >= 0 - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + var yyj3882 int + var yyb3882 bool + var yyhl3882 bool = l >= 0 + yyj3882++ + if yyhl3882 { + yyb3882 = yyj3882 > l } else { - yyb3839 = r.CheckBreak() + yyb3882 = r.CheckBreak() } - if yyb3839 { + if yyb3882 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47986,13 +48597,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3882++ + if yyhl3882 { + yyb3882 = yyj3882 > l } else { - yyb3839 = r.CheckBreak() + yyb3882 = r.CheckBreak() } - if yyb3839 { + if yyb3882 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48002,13 +48613,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3882++ + if yyhl3882 { + yyb3882 = yyj3882 > l } else { - yyb3839 = r.CheckBreak() + yyb3882 = r.CheckBreak() } - if yyb3839 { + if yyb3882 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48016,22 +48627,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3842 := &x.ListMeta - yym3843 := z.DecBinary() - _ = yym3843 + yyv3885 := &x.ListMeta + yym3886 := z.DecBinary() + _ = yym3886 if false { - } else if z.HasExtensions() && z.DecExt(yyv3842) { + } else if z.HasExtensions() && z.DecExt(yyv3885) { } else { - z.DecFallback(yyv3842, false) + z.DecFallback(yyv3885, false) } } - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3882++ + if yyhl3882 { + yyb3882 = yyj3882 > l } else { - yyb3839 = r.CheckBreak() + yyb3882 = r.CheckBreak() } - if yyb3839 { + if yyb3882 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48039,26 +48650,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3844 := &x.Items - yym3845 := z.DecBinary() - _ = yym3845 + yyv3887 := &x.Items + yym3888 := z.DecBinary() + _ = yym3888 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3844), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3887), d) } } for { - yyj3839++ - if yyhl3839 { - yyb3839 = yyj3839 > l + yyj3882++ + if yyhl3882 { + yyb3882 = yyj3882 > l } else { - yyb3839 = r.CheckBreak() + yyb3882 = r.CheckBreak() } - if yyb3839 { + if yyb3882 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3839-1, "") + z.DecStructFieldNotFound(yyj3882-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48067,8 +48678,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3846 := z.EncBinary() - _ = yym3846 + yym3889 := z.EncBinary() + _ = yym3889 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -48080,8 +48691,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3847 := z.DecBinary() - _ = yym3847 + yym3890 := z.DecBinary() + _ = yym3890 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -48096,53 +48707,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3848 := z.EncBinary() - _ = yym3848 + yym3891 := z.EncBinary() + _ = yym3891 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3849 := !z.EncBinary() - yy2arr3849 := z.EncBasicHandle().StructToArray - var yyq3849 [6]bool - _, _, _ = yysep3849, yyq3849, yy2arr3849 - const yyr3849 bool = false - yyq3849[0] = x.Type != "" - yyq3849[1] = len(x.Max) != 0 - yyq3849[2] = len(x.Min) != 0 - yyq3849[3] = len(x.Default) != 0 - yyq3849[4] = len(x.DefaultRequest) != 0 - yyq3849[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3849 int - if yyr3849 || yy2arr3849 { + yysep3892 := !z.EncBinary() + yy2arr3892 := z.EncBasicHandle().StructToArray + var yyq3892 [6]bool + _, _, _ = yysep3892, yyq3892, yy2arr3892 + const yyr3892 bool = false + yyq3892[0] = x.Type != "" + yyq3892[1] = len(x.Max) != 0 + yyq3892[2] = len(x.Min) != 0 + yyq3892[3] = len(x.Default) != 0 + yyq3892[4] = len(x.DefaultRequest) != 0 + yyq3892[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3892 int + if yyr3892 || yy2arr3892 { r.EncodeArrayStart(6) } else { - yynn3849 = 0 - for _, b := range yyq3849 { + yynn3892 = 0 + for _, b := range yyq3892 { if b { - yynn3849++ + yynn3892++ } } - r.EncodeMapStart(yynn3849) - yynn3849 = 0 + r.EncodeMapStart(yynn3892) + yynn3892 = 0 } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[0] { + if yyq3892[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3849[0] { + if yyq3892[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[1] { + if yyq3892[1] { if x.Max == nil { r.EncodeNil() } else { @@ -48152,7 +48763,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[1] { + if yyq3892[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48163,9 +48774,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[2] { + if yyq3892[2] { if x.Min == nil { r.EncodeNil() } else { @@ -48175,7 +48786,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[2] { + if yyq3892[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48186,9 +48797,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[3] { + if yyq3892[3] { if x.Default == nil { r.EncodeNil() } else { @@ -48198,7 +48809,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[3] { + if yyq3892[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48209,9 +48820,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[4] { + if yyq3892[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -48221,7 +48832,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[4] { + if yyq3892[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48232,9 +48843,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3849[5] { + if yyq3892[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48244,7 +48855,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3849[5] { + if yyq3892[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48255,7 +48866,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3849 || yy2arr3849 { + if yyr3892 || yy2arr3892 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48268,25 +48879,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3856 := z.DecBinary() - _ = yym3856 + yym3899 := z.DecBinary() + _ = yym3899 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3857 := r.ContainerType() - if yyct3857 == codecSelferValueTypeMap1234 { - yyl3857 := r.ReadMapStart() - if yyl3857 == 0 { + yyct3900 := r.ContainerType() + if yyct3900 == codecSelferValueTypeMap1234 { + yyl3900 := r.ReadMapStart() + if yyl3900 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3857, d) + x.codecDecodeSelfFromMap(yyl3900, d) } - } else if yyct3857 == codecSelferValueTypeArray1234 { - yyl3857 := r.ReadArrayStart() - if yyl3857 == 0 { + } else if yyct3900 == codecSelferValueTypeArray1234 { + yyl3900 := r.ReadArrayStart() + if yyl3900 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3857, d) + x.codecDecodeSelfFromArray(yyl3900, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48298,12 +48909,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3858Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3858Slc - var yyhl3858 bool = l >= 0 - for yyj3858 := 0; ; yyj3858++ { - if yyhl3858 { - if yyj3858 >= l { + var yys3901Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3901Slc + var yyhl3901 bool = l >= 0 + for yyj3901 := 0; ; yyj3901++ { + if yyhl3901 { + if yyj3901 >= l { break } } else { @@ -48312,10 +48923,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3858Slc = r.DecodeBytes(yys3858Slc, true, true) - yys3858 := string(yys3858Slc) + yys3901Slc = r.DecodeBytes(yys3901Slc, true, true) + yys3901 := string(yys3901Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3858 { + switch yys3901 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48326,41 +48937,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3860 := &x.Max - yyv3860.CodecDecodeSelf(d) + yyv3903 := &x.Max + yyv3903.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3861 := &x.Min - yyv3861.CodecDecodeSelf(d) + yyv3904 := &x.Min + yyv3904.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3862 := &x.Default - yyv3862.CodecDecodeSelf(d) + yyv3905 := &x.Default + yyv3905.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3863 := &x.DefaultRequest - yyv3863.CodecDecodeSelf(d) + yyv3906 := &x.DefaultRequest + yyv3906.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3864 := &x.MaxLimitRequestRatio - yyv3864.CodecDecodeSelf(d) + yyv3907 := &x.MaxLimitRequestRatio + yyv3907.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3858) - } // end switch yys3858 - } // end for yyj3858 + z.DecStructFieldNotFound(-1, yys3901) + } // end switch yys3901 + } // end for yyj3901 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48368,16 +48979,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3865 int - var yyb3865 bool - var yyhl3865 bool = l >= 0 - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + var yyj3908 int + var yyb3908 bool + var yyhl3908 bool = l >= 0 + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48387,13 +48998,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48401,16 +49012,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3867 := &x.Max - yyv3867.CodecDecodeSelf(d) + yyv3910 := &x.Max + yyv3910.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48418,16 +49029,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3868 := &x.Min - yyv3868.CodecDecodeSelf(d) + yyv3911 := &x.Min + yyv3911.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48435,16 +49046,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3869 := &x.Default - yyv3869.CodecDecodeSelf(d) + yyv3912 := &x.Default + yyv3912.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48452,16 +49063,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3870 := &x.DefaultRequest - yyv3870.CodecDecodeSelf(d) + yyv3913 := &x.DefaultRequest + yyv3913.CodecDecodeSelf(d) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48469,21 +49080,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3871 := &x.MaxLimitRequestRatio - yyv3871.CodecDecodeSelf(d) + yyv3914 := &x.MaxLimitRequestRatio + yyv3914.CodecDecodeSelf(d) } for { - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3908++ + if yyhl3908 { + yyb3908 = yyj3908 > l } else { - yyb3865 = r.CheckBreak() + yyb3908 = r.CheckBreak() } - if yyb3865 { + if yyb3908 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3865-1, "") + z.DecStructFieldNotFound(yyj3908-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48495,36 +49106,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3872 := z.EncBinary() - _ = yym3872 + yym3915 := z.EncBinary() + _ = yym3915 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3873 := !z.EncBinary() - yy2arr3873 := z.EncBasicHandle().StructToArray - var yyq3873 [1]bool - _, _, _ = yysep3873, yyq3873, yy2arr3873 - const yyr3873 bool = false - var yynn3873 int - if yyr3873 || yy2arr3873 { + yysep3916 := !z.EncBinary() + yy2arr3916 := z.EncBasicHandle().StructToArray + var yyq3916 [1]bool + _, _, _ = yysep3916, yyq3916, yy2arr3916 + const yyr3916 bool = false + var yynn3916 int + if yyr3916 || yy2arr3916 { r.EncodeArrayStart(1) } else { - yynn3873 = 1 - for _, b := range yyq3873 { + yynn3916 = 1 + for _, b := range yyq3916 { if b { - yynn3873++ + yynn3916++ } } - r.EncodeMapStart(yynn3873) - yynn3873 = 0 + r.EncodeMapStart(yynn3916) + yynn3916 = 0 } - if yyr3873 || yy2arr3873 { + if yyr3916 || yy2arr3916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3875 := z.EncBinary() - _ = yym3875 + yym3918 := z.EncBinary() + _ = yym3918 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -48537,15 +49148,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3876 := z.EncBinary() - _ = yym3876 + yym3919 := z.EncBinary() + _ = yym3919 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3873 || yy2arr3873 { + if yyr3916 || yy2arr3916 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48558,25 +49169,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3877 := z.DecBinary() - _ = yym3877 + yym3920 := z.DecBinary() + _ = yym3920 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3878 := r.ContainerType() - if yyct3878 == codecSelferValueTypeMap1234 { - yyl3878 := r.ReadMapStart() - if yyl3878 == 0 { + yyct3921 := r.ContainerType() + if yyct3921 == codecSelferValueTypeMap1234 { + yyl3921 := r.ReadMapStart() + if yyl3921 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3878, d) + x.codecDecodeSelfFromMap(yyl3921, d) } - } else if yyct3878 == codecSelferValueTypeArray1234 { - yyl3878 := r.ReadArrayStart() - if yyl3878 == 0 { + } else if yyct3921 == codecSelferValueTypeArray1234 { + yyl3921 := r.ReadArrayStart() + if yyl3921 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3878, d) + x.codecDecodeSelfFromArray(yyl3921, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48588,12 +49199,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3879Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3879Slc - var yyhl3879 bool = l >= 0 - for yyj3879 := 0; ; yyj3879++ { - if yyhl3879 { - if yyj3879 >= l { + var yys3922Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3922Slc + var yyhl3922 bool = l >= 0 + for yyj3922 := 0; ; yyj3922++ { + if yyhl3922 { + if yyj3922 >= l { break } } else { @@ -48602,26 +49213,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3879Slc = r.DecodeBytes(yys3879Slc, true, true) - yys3879 := string(yys3879Slc) + yys3922Slc = r.DecodeBytes(yys3922Slc, true, true) + yys3922 := string(yys3922Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3879 { + switch yys3922 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3880 := &x.Limits - yym3881 := z.DecBinary() - _ = yym3881 + yyv3923 := &x.Limits + yym3924 := z.DecBinary() + _ = yym3924 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3880), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3923), d) } } default: - z.DecStructFieldNotFound(-1, yys3879) - } // end switch yys3879 - } // end for yyj3879 + z.DecStructFieldNotFound(-1, yys3922) + } // end switch yys3922 + } // end for yyj3922 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48629,16 +49240,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3882 int - var yyb3882 bool - var yyhl3882 bool = l >= 0 - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + var yyj3925 int + var yyb3925 bool + var yyhl3925 bool = l >= 0 + yyj3925++ + if yyhl3925 { + yyb3925 = yyj3925 > l } else { - yyb3882 = r.CheckBreak() + yyb3925 = r.CheckBreak() } - if yyb3882 { + if yyb3925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48646,26 +49257,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3883 := &x.Limits - yym3884 := z.DecBinary() - _ = yym3884 + yyv3926 := &x.Limits + yym3927 := z.DecBinary() + _ = yym3927 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3883), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3926), d) } } for { - yyj3882++ - if yyhl3882 { - yyb3882 = yyj3882 > l + yyj3925++ + if yyhl3925 { + yyb3925 = yyj3925 > l } else { - yyb3882 = r.CheckBreak() + yyb3925 = r.CheckBreak() } - if yyb3882 { + if yyb3925 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3882-1, "") + z.DecStructFieldNotFound(yyj3925-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48677,38 +49288,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3885 := z.EncBinary() - _ = yym3885 + yym3928 := z.EncBinary() + _ = yym3928 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3886 := !z.EncBinary() - yy2arr3886 := z.EncBasicHandle().StructToArray - var yyq3886 [4]bool - _, _, _ = yysep3886, yyq3886, yy2arr3886 - const yyr3886 bool = false - yyq3886[0] = x.Kind != "" - yyq3886[1] = x.APIVersion != "" - yyq3886[2] = true - yyq3886[3] = true - var yynn3886 int - if yyr3886 || yy2arr3886 { + yysep3929 := !z.EncBinary() + yy2arr3929 := z.EncBasicHandle().StructToArray + var yyq3929 [4]bool + _, _, _ = yysep3929, yyq3929, yy2arr3929 + const yyr3929 bool = false + yyq3929[0] = x.Kind != "" + yyq3929[1] = x.APIVersion != "" + yyq3929[2] = true + yyq3929[3] = true + var yynn3929 int + if yyr3929 || yy2arr3929 { r.EncodeArrayStart(4) } else { - yynn3886 = 0 - for _, b := range yyq3886 { + yynn3929 = 0 + for _, b := range yyq3929 { if b { - yynn3886++ + yynn3929++ } } - r.EncodeMapStart(yynn3886) - yynn3886 = 0 + r.EncodeMapStart(yynn3929) + yynn3929 = 0 } - if yyr3886 || yy2arr3886 { + if yyr3929 || yy2arr3929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[0] { - yym3888 := z.EncBinary() - _ = yym3888 + if yyq3929[0] { + yym3931 := z.EncBinary() + _ = yym3931 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48717,23 +49328,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3886[0] { + if yyq3929[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3889 := z.EncBinary() - _ = yym3889 + yym3932 := z.EncBinary() + _ = yym3932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3886 || yy2arr3886 { + if yyr3929 || yy2arr3929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[1] { - yym3891 := z.EncBinary() - _ = yym3891 + if yyq3929[1] { + yym3934 := z.EncBinary() + _ = yym3934 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48742,53 +49353,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3886[1] { + if yyq3929[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3892 := z.EncBinary() - _ = yym3892 + yym3935 := z.EncBinary() + _ = yym3935 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3886 || yy2arr3886 { + if yyr3929 || yy2arr3929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[2] { - yy3894 := &x.ObjectMeta - yy3894.CodecEncodeSelf(e) + if yyq3929[2] { + yy3937 := &x.ObjectMeta + yy3937.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3886[2] { + if yyq3929[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3895 := &x.ObjectMeta - yy3895.CodecEncodeSelf(e) + yy3938 := &x.ObjectMeta + yy3938.CodecEncodeSelf(e) } } - if yyr3886 || yy2arr3886 { + if yyr3929 || yy2arr3929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[3] { - yy3897 := &x.Spec - yy3897.CodecEncodeSelf(e) + if yyq3929[3] { + yy3940 := &x.Spec + yy3940.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3886[3] { + if yyq3929[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3898 := &x.Spec - yy3898.CodecEncodeSelf(e) + yy3941 := &x.Spec + yy3941.CodecEncodeSelf(e) } } - if yyr3886 || yy2arr3886 { + if yyr3929 || yy2arr3929 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48801,25 +49412,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3899 := z.DecBinary() - _ = yym3899 + yym3942 := z.DecBinary() + _ = yym3942 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3900 := r.ContainerType() - if yyct3900 == codecSelferValueTypeMap1234 { - yyl3900 := r.ReadMapStart() - if yyl3900 == 0 { + yyct3943 := r.ContainerType() + if yyct3943 == codecSelferValueTypeMap1234 { + yyl3943 := r.ReadMapStart() + if yyl3943 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3900, d) + x.codecDecodeSelfFromMap(yyl3943, d) } - } else if yyct3900 == codecSelferValueTypeArray1234 { - yyl3900 := r.ReadArrayStart() - if yyl3900 == 0 { + } else if yyct3943 == codecSelferValueTypeArray1234 { + yyl3943 := r.ReadArrayStart() + if yyl3943 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3900, d) + x.codecDecodeSelfFromArray(yyl3943, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48831,12 +49442,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3901Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3901Slc - var yyhl3901 bool = l >= 0 - for yyj3901 := 0; ; yyj3901++ { - if yyhl3901 { - if yyj3901 >= l { + var yys3944Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3944Slc + var yyhl3944 bool = l >= 0 + for yyj3944 := 0; ; yyj3944++ { + if yyhl3944 { + if yyj3944 >= l { break } } else { @@ -48845,10 +49456,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3901Slc = r.DecodeBytes(yys3901Slc, true, true) - yys3901 := string(yys3901Slc) + yys3944Slc = r.DecodeBytes(yys3944Slc, true, true) + yys3944 := string(yys3944Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3901 { + switch yys3944 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48865,20 +49476,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3904 := &x.ObjectMeta - yyv3904.CodecDecodeSelf(d) + yyv3947 := &x.ObjectMeta + yyv3947.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3905 := &x.Spec - yyv3905.CodecDecodeSelf(d) + yyv3948 := &x.Spec + yyv3948.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3901) - } // end switch yys3901 - } // end for yyj3901 + z.DecStructFieldNotFound(-1, yys3944) + } // end switch yys3944 + } // end for yyj3944 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48886,16 +49497,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3906 int - var yyb3906 bool - var yyhl3906 bool = l >= 0 - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + var yyj3949 int + var yyb3949 bool + var yyhl3949 bool = l >= 0 + yyj3949++ + if yyhl3949 { + yyb3949 = yyj3949 > l } else { - yyb3906 = r.CheckBreak() + yyb3949 = r.CheckBreak() } - if yyb3906 { + if yyb3949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48905,13 +49516,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3949++ + if yyhl3949 { + yyb3949 = yyj3949 > l } else { - yyb3906 = r.CheckBreak() + yyb3949 = r.CheckBreak() } - if yyb3906 { + if yyb3949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48921,13 +49532,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3949++ + if yyhl3949 { + yyb3949 = yyj3949 > l } else { - yyb3906 = r.CheckBreak() + yyb3949 = r.CheckBreak() } - if yyb3906 { + if yyb3949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48935,16 +49546,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3909 := &x.ObjectMeta - yyv3909.CodecDecodeSelf(d) + yyv3952 := &x.ObjectMeta + yyv3952.CodecDecodeSelf(d) } - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3949++ + if yyhl3949 { + yyb3949 = yyj3949 > l } else { - yyb3906 = r.CheckBreak() + yyb3949 = r.CheckBreak() } - if yyb3906 { + if yyb3949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48952,21 +49563,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3910 := &x.Spec - yyv3910.CodecDecodeSelf(d) + yyv3953 := &x.Spec + yyv3953.CodecDecodeSelf(d) } for { - yyj3906++ - if yyhl3906 { - yyb3906 = yyj3906 > l + yyj3949++ + if yyhl3949 { + yyb3949 = yyj3949 > l } else { - yyb3906 = r.CheckBreak() + yyb3949 = r.CheckBreak() } - if yyb3906 { + if yyb3949 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3906-1, "") + z.DecStructFieldNotFound(yyj3949-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48978,37 +49589,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3911 := z.EncBinary() - _ = yym3911 + yym3954 := z.EncBinary() + _ = yym3954 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3912 := !z.EncBinary() - yy2arr3912 := z.EncBasicHandle().StructToArray - var yyq3912 [4]bool - _, _, _ = yysep3912, yyq3912, yy2arr3912 - const yyr3912 bool = false - yyq3912[0] = x.Kind != "" - yyq3912[1] = x.APIVersion != "" - yyq3912[2] = true - var yynn3912 int - if yyr3912 || yy2arr3912 { + yysep3955 := !z.EncBinary() + yy2arr3955 := z.EncBasicHandle().StructToArray + var yyq3955 [4]bool + _, _, _ = yysep3955, yyq3955, yy2arr3955 + const yyr3955 bool = false + yyq3955[0] = x.Kind != "" + yyq3955[1] = x.APIVersion != "" + yyq3955[2] = true + var yynn3955 int + if yyr3955 || yy2arr3955 { r.EncodeArrayStart(4) } else { - yynn3912 = 1 - for _, b := range yyq3912 { + yynn3955 = 1 + for _, b := range yyq3955 { if b { - yynn3912++ + yynn3955++ } } - r.EncodeMapStart(yynn3912) - yynn3912 = 0 + r.EncodeMapStart(yynn3955) + yynn3955 = 0 } - if yyr3912 || yy2arr3912 { + if yyr3955 || yy2arr3955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3912[0] { - yym3914 := z.EncBinary() - _ = yym3914 + if yyq3955[0] { + yym3957 := z.EncBinary() + _ = yym3957 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49017,23 +49628,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3912[0] { + if yyq3955[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3915 := z.EncBinary() - _ = yym3915 + yym3958 := z.EncBinary() + _ = yym3958 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3912 || yy2arr3912 { + if yyr3955 || yy2arr3955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3912[1] { - yym3917 := z.EncBinary() - _ = yym3917 + if yyq3955[1] { + yym3960 := z.EncBinary() + _ = yym3960 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49042,54 +49653,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3912[1] { + if yyq3955[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3918 := z.EncBinary() - _ = yym3918 + yym3961 := z.EncBinary() + _ = yym3961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3912 || yy2arr3912 { + if yyr3955 || yy2arr3955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3912[2] { - yy3920 := &x.ListMeta - yym3921 := z.EncBinary() - _ = yym3921 + if yyq3955[2] { + yy3963 := &x.ListMeta + yym3964 := z.EncBinary() + _ = yym3964 if false { - } else if z.HasExtensions() && z.EncExt(yy3920) { + } else if z.HasExtensions() && z.EncExt(yy3963) { } else { - z.EncFallback(yy3920) + z.EncFallback(yy3963) } } else { r.EncodeNil() } } else { - if yyq3912[2] { + if yyq3955[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3922 := &x.ListMeta - yym3923 := z.EncBinary() - _ = yym3923 + yy3965 := &x.ListMeta + yym3966 := z.EncBinary() + _ = yym3966 if false { - } else if z.HasExtensions() && z.EncExt(yy3922) { + } else if z.HasExtensions() && z.EncExt(yy3965) { } else { - z.EncFallback(yy3922) + z.EncFallback(yy3965) } } } - if yyr3912 || yy2arr3912 { + if yyr3955 || yy2arr3955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3925 := z.EncBinary() - _ = yym3925 + yym3968 := z.EncBinary() + _ = yym3968 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -49102,15 +49713,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3926 := z.EncBinary() - _ = yym3926 + yym3969 := z.EncBinary() + _ = yym3969 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3912 || yy2arr3912 { + if yyr3955 || yy2arr3955 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49123,25 +49734,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3927 := z.DecBinary() - _ = yym3927 + yym3970 := z.DecBinary() + _ = yym3970 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3928 := r.ContainerType() - if yyct3928 == codecSelferValueTypeMap1234 { - yyl3928 := r.ReadMapStart() - if yyl3928 == 0 { + yyct3971 := r.ContainerType() + if yyct3971 == codecSelferValueTypeMap1234 { + yyl3971 := r.ReadMapStart() + if yyl3971 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3928, d) + x.codecDecodeSelfFromMap(yyl3971, d) } - } else if yyct3928 == codecSelferValueTypeArray1234 { - yyl3928 := r.ReadArrayStart() - if yyl3928 == 0 { + } else if yyct3971 == codecSelferValueTypeArray1234 { + yyl3971 := r.ReadArrayStart() + if yyl3971 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3928, d) + x.codecDecodeSelfFromArray(yyl3971, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49153,12 +49764,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3929Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3929Slc - var yyhl3929 bool = l >= 0 - for yyj3929 := 0; ; yyj3929++ { - if yyhl3929 { - if yyj3929 >= l { + var yys3972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3972Slc + var yyhl3972 bool = l >= 0 + for yyj3972 := 0; ; yyj3972++ { + if yyhl3972 { + if yyj3972 >= l { break } } else { @@ -49167,10 +49778,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3929Slc = r.DecodeBytes(yys3929Slc, true, true) - yys3929 := string(yys3929Slc) + yys3972Slc = r.DecodeBytes(yys3972Slc, true, true) + yys3972 := string(yys3972Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3929 { + switch yys3972 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49187,31 +49798,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3932 := &x.ListMeta - yym3933 := z.DecBinary() - _ = yym3933 + yyv3975 := &x.ListMeta + yym3976 := z.DecBinary() + _ = yym3976 if false { - } else if z.HasExtensions() && z.DecExt(yyv3932) { + } else if z.HasExtensions() && z.DecExt(yyv3975) { } else { - z.DecFallback(yyv3932, false) + z.DecFallback(yyv3975, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3934 := &x.Items - yym3935 := z.DecBinary() - _ = yym3935 + yyv3977 := &x.Items + yym3978 := z.DecBinary() + _ = yym3978 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3934), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3977), d) } } default: - z.DecStructFieldNotFound(-1, yys3929) - } // end switch yys3929 - } // end for yyj3929 + z.DecStructFieldNotFound(-1, yys3972) + } // end switch yys3972 + } // end for yyj3972 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49219,16 +49830,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3936 int - var yyb3936 bool - var yyhl3936 bool = l >= 0 - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + var yyj3979 int + var yyb3979 bool + var yyhl3979 bool = l >= 0 + yyj3979++ + if yyhl3979 { + yyb3979 = yyj3979 > l } else { - yyb3936 = r.CheckBreak() + yyb3979 = r.CheckBreak() } - if yyb3936 { + if yyb3979 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49238,13 +49849,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3979++ + if yyhl3979 { + yyb3979 = yyj3979 > l } else { - yyb3936 = r.CheckBreak() + yyb3979 = r.CheckBreak() } - if yyb3936 { + if yyb3979 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49254,13 +49865,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3979++ + if yyhl3979 { + yyb3979 = yyj3979 > l } else { - yyb3936 = r.CheckBreak() + yyb3979 = r.CheckBreak() } - if yyb3936 { + if yyb3979 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49268,22 +49879,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3939 := &x.ListMeta - yym3940 := z.DecBinary() - _ = yym3940 + yyv3982 := &x.ListMeta + yym3983 := z.DecBinary() + _ = yym3983 if false { - } else if z.HasExtensions() && z.DecExt(yyv3939) { + } else if z.HasExtensions() && z.DecExt(yyv3982) { } else { - z.DecFallback(yyv3939, false) + z.DecFallback(yyv3982, false) } } - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3979++ + if yyhl3979 { + yyb3979 = yyj3979 > l } else { - yyb3936 = r.CheckBreak() + yyb3979 = r.CheckBreak() } - if yyb3936 { + if yyb3979 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49291,26 +49902,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3941 := &x.Items - yym3942 := z.DecBinary() - _ = yym3942 + yyv3984 := &x.Items + yym3985 := z.DecBinary() + _ = yym3985 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3941), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3984), d) } } for { - yyj3936++ - if yyhl3936 { - yyb3936 = yyj3936 > l + yyj3979++ + if yyhl3979 { + yyb3979 = yyj3979 > l } else { - yyb3936 = r.CheckBreak() + yyb3979 = r.CheckBreak() } - if yyb3936 { + if yyb3979 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3936-1, "") + z.DecStructFieldNotFound(yyj3979-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49319,8 +49930,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3943 := z.EncBinary() - _ = yym3943 + yym3986 := z.EncBinary() + _ = yym3986 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49332,8 +49943,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3944 := z.DecBinary() - _ = yym3944 + yym3987 := z.DecBinary() + _ = yym3987 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49348,34 +49959,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3945 := z.EncBinary() - _ = yym3945 + yym3988 := z.EncBinary() + _ = yym3988 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3946 := !z.EncBinary() - yy2arr3946 := z.EncBasicHandle().StructToArray - var yyq3946 [2]bool - _, _, _ = yysep3946, yyq3946, yy2arr3946 - const yyr3946 bool = false - yyq3946[0] = len(x.Hard) != 0 - yyq3946[1] = len(x.Scopes) != 0 - var yynn3946 int - if yyr3946 || yy2arr3946 { + yysep3989 := !z.EncBinary() + yy2arr3989 := z.EncBasicHandle().StructToArray + var yyq3989 [2]bool + _, _, _ = yysep3989, yyq3989, yy2arr3989 + const yyr3989 bool = false + yyq3989[0] = len(x.Hard) != 0 + yyq3989[1] = len(x.Scopes) != 0 + var yynn3989 int + if yyr3989 || yy2arr3989 { r.EncodeArrayStart(2) } else { - yynn3946 = 0 - for _, b := range yyq3946 { + yynn3989 = 0 + for _, b := range yyq3989 { if b { - yynn3946++ + yynn3989++ } } - r.EncodeMapStart(yynn3946) - yynn3946 = 0 + r.EncodeMapStart(yynn3989) + yynn3989 = 0 } - if yyr3946 || yy2arr3946 { + if yyr3989 || yy2arr3989 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3946[0] { + if yyq3989[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49385,7 +49996,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3946[0] { + if yyq3989[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49396,14 +50007,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3946 || yy2arr3946 { + if yyr3989 || yy2arr3989 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3946[1] { + if yyq3989[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3949 := z.EncBinary() - _ = yym3949 + yym3992 := z.EncBinary() + _ = yym3992 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49413,15 +50024,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3946[1] { + if yyq3989[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3950 := z.EncBinary() - _ = yym3950 + yym3993 := z.EncBinary() + _ = yym3993 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49429,7 +50040,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3946 || yy2arr3946 { + if yyr3989 || yy2arr3989 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49442,25 +50053,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3951 := z.DecBinary() - _ = yym3951 + yym3994 := z.DecBinary() + _ = yym3994 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3952 := r.ContainerType() - if yyct3952 == codecSelferValueTypeMap1234 { - yyl3952 := r.ReadMapStart() - if yyl3952 == 0 { + yyct3995 := r.ContainerType() + if yyct3995 == codecSelferValueTypeMap1234 { + yyl3995 := r.ReadMapStart() + if yyl3995 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3952, d) + x.codecDecodeSelfFromMap(yyl3995, d) } - } else if yyct3952 == codecSelferValueTypeArray1234 { - yyl3952 := r.ReadArrayStart() - if yyl3952 == 0 { + } else if yyct3995 == codecSelferValueTypeArray1234 { + yyl3995 := r.ReadArrayStart() + if yyl3995 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3952, d) + x.codecDecodeSelfFromArray(yyl3995, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49472,12 +50083,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3953Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3953Slc - var yyhl3953 bool = l >= 0 - for yyj3953 := 0; ; yyj3953++ { - if yyhl3953 { - if yyj3953 >= l { + var yys3996Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3996Slc + var yyhl3996 bool = l >= 0 + for yyj3996 := 0; ; yyj3996++ { + if yyhl3996 { + if yyj3996 >= l { break } } else { @@ -49486,33 +50097,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3953Slc = r.DecodeBytes(yys3953Slc, true, true) - yys3953 := string(yys3953Slc) + yys3996Slc = r.DecodeBytes(yys3996Slc, true, true) + yys3996 := string(yys3996Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3953 { + switch yys3996 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3954 := &x.Hard - yyv3954.CodecDecodeSelf(d) + yyv3997 := &x.Hard + yyv3997.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3955 := &x.Scopes - yym3956 := z.DecBinary() - _ = yym3956 + yyv3998 := &x.Scopes + yym3999 := z.DecBinary() + _ = yym3999 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3955), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3998), d) } } default: - z.DecStructFieldNotFound(-1, yys3953) - } // end switch yys3953 - } // end for yyj3953 + z.DecStructFieldNotFound(-1, yys3996) + } // end switch yys3996 + } // end for yyj3996 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49520,16 +50131,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3957 int - var yyb3957 bool - var yyhl3957 bool = l >= 0 - yyj3957++ - if yyhl3957 { - yyb3957 = yyj3957 > l + var yyj4000 int + var yyb4000 bool + var yyhl4000 bool = l >= 0 + yyj4000++ + if yyhl4000 { + yyb4000 = yyj4000 > l } else { - yyb3957 = r.CheckBreak() + yyb4000 = r.CheckBreak() } - if yyb3957 { + if yyb4000 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49537,16 +50148,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3958 := &x.Hard - yyv3958.CodecDecodeSelf(d) + yyv4001 := &x.Hard + yyv4001.CodecDecodeSelf(d) } - yyj3957++ - if yyhl3957 { - yyb3957 = yyj3957 > l + yyj4000++ + if yyhl4000 { + yyb4000 = yyj4000 > l } else { - yyb3957 = r.CheckBreak() + yyb4000 = r.CheckBreak() } - if yyb3957 { + if yyb4000 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49554,26 +50165,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3959 := &x.Scopes - yym3960 := z.DecBinary() - _ = yym3960 + yyv4002 := &x.Scopes + yym4003 := z.DecBinary() + _ = yym4003 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3959), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4002), d) } } for { - yyj3957++ - if yyhl3957 { - yyb3957 = yyj3957 > l + yyj4000++ + if yyhl4000 { + yyb4000 = yyj4000 > l } else { - yyb3957 = r.CheckBreak() + yyb4000 = r.CheckBreak() } - if yyb3957 { + if yyb4000 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3957-1, "") + z.DecStructFieldNotFound(yyj4000-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49585,34 +50196,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3961 := z.EncBinary() - _ = yym3961 + yym4004 := z.EncBinary() + _ = yym4004 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3962 := !z.EncBinary() - yy2arr3962 := z.EncBasicHandle().StructToArray - var yyq3962 [2]bool - _, _, _ = yysep3962, yyq3962, yy2arr3962 - const yyr3962 bool = false - yyq3962[0] = len(x.Hard) != 0 - yyq3962[1] = len(x.Used) != 0 - var yynn3962 int - if yyr3962 || yy2arr3962 { + yysep4005 := !z.EncBinary() + yy2arr4005 := z.EncBasicHandle().StructToArray + var yyq4005 [2]bool + _, _, _ = yysep4005, yyq4005, yy2arr4005 + const yyr4005 bool = false + yyq4005[0] = len(x.Hard) != 0 + yyq4005[1] = len(x.Used) != 0 + var yynn4005 int + if yyr4005 || yy2arr4005 { r.EncodeArrayStart(2) } else { - yynn3962 = 0 - for _, b := range yyq3962 { + yynn4005 = 0 + for _, b := range yyq4005 { if b { - yynn3962++ + yynn4005++ } } - r.EncodeMapStart(yynn3962) - yynn3962 = 0 + r.EncodeMapStart(yynn4005) + yynn4005 = 0 } - if yyr3962 || yy2arr3962 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3962[0] { + if yyq4005[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49622,7 +50233,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3962[0] { + if yyq4005[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49633,9 +50244,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3962 || yy2arr3962 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3962[1] { + if yyq4005[1] { if x.Used == nil { r.EncodeNil() } else { @@ -49645,7 +50256,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3962[1] { + if yyq4005[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49656,7 +50267,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3962 || yy2arr3962 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49669,25 +50280,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3965 := z.DecBinary() - _ = yym3965 + yym4008 := z.DecBinary() + _ = yym4008 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3966 := r.ContainerType() - if yyct3966 == codecSelferValueTypeMap1234 { - yyl3966 := r.ReadMapStart() - if yyl3966 == 0 { + yyct4009 := r.ContainerType() + if yyct4009 == codecSelferValueTypeMap1234 { + yyl4009 := r.ReadMapStart() + if yyl4009 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3966, d) + x.codecDecodeSelfFromMap(yyl4009, d) } - } else if yyct3966 == codecSelferValueTypeArray1234 { - yyl3966 := r.ReadArrayStart() - if yyl3966 == 0 { + } else if yyct4009 == codecSelferValueTypeArray1234 { + yyl4009 := r.ReadArrayStart() + if yyl4009 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3966, d) + x.codecDecodeSelfFromArray(yyl4009, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49699,12 +50310,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3967Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3967Slc - var yyhl3967 bool = l >= 0 - for yyj3967 := 0; ; yyj3967++ { - if yyhl3967 { - if yyj3967 >= l { + var yys4010Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4010Slc + var yyhl4010 bool = l >= 0 + for yyj4010 := 0; ; yyj4010++ { + if yyhl4010 { + if yyj4010 >= l { break } } else { @@ -49713,28 +50324,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3967Slc = r.DecodeBytes(yys3967Slc, true, true) - yys3967 := string(yys3967Slc) + yys4010Slc = r.DecodeBytes(yys4010Slc, true, true) + yys4010 := string(yys4010Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3967 { + switch yys4010 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3968 := &x.Hard - yyv3968.CodecDecodeSelf(d) + yyv4011 := &x.Hard + yyv4011.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3969 := &x.Used - yyv3969.CodecDecodeSelf(d) + yyv4012 := &x.Used + yyv4012.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3967) - } // end switch yys3967 - } // end for yyj3967 + z.DecStructFieldNotFound(-1, yys4010) + } // end switch yys4010 + } // end for yyj4010 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49742,16 +50353,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3970 int - var yyb3970 bool - var yyhl3970 bool = l >= 0 - yyj3970++ - if yyhl3970 { - yyb3970 = yyj3970 > l + var yyj4013 int + var yyb4013 bool + var yyhl4013 bool = l >= 0 + yyj4013++ + if yyhl4013 { + yyb4013 = yyj4013 > l } else { - yyb3970 = r.CheckBreak() + yyb4013 = r.CheckBreak() } - if yyb3970 { + if yyb4013 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49759,16 +50370,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3971 := &x.Hard - yyv3971.CodecDecodeSelf(d) + yyv4014 := &x.Hard + yyv4014.CodecDecodeSelf(d) } - yyj3970++ - if yyhl3970 { - yyb3970 = yyj3970 > l + yyj4013++ + if yyhl4013 { + yyb4013 = yyj4013 > l } else { - yyb3970 = r.CheckBreak() + yyb4013 = r.CheckBreak() } - if yyb3970 { + if yyb4013 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49776,21 +50387,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3972 := &x.Used - yyv3972.CodecDecodeSelf(d) + yyv4015 := &x.Used + yyv4015.CodecDecodeSelf(d) } for { - yyj3970++ - if yyhl3970 { - yyb3970 = yyj3970 > l + yyj4013++ + if yyhl4013 { + yyb4013 = yyj4013 > l } else { - yyb3970 = r.CheckBreak() + yyb4013 = r.CheckBreak() } - if yyb3970 { + if yyb4013 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3970-1, "") + z.DecStructFieldNotFound(yyj4013-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49802,39 +50413,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3973 := z.EncBinary() - _ = yym3973 + yym4016 := z.EncBinary() + _ = yym4016 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3974 := !z.EncBinary() - yy2arr3974 := z.EncBasicHandle().StructToArray - var yyq3974 [5]bool - _, _, _ = yysep3974, yyq3974, yy2arr3974 - const yyr3974 bool = false - yyq3974[0] = x.Kind != "" - yyq3974[1] = x.APIVersion != "" - yyq3974[2] = true - yyq3974[3] = true - yyq3974[4] = true - var yynn3974 int - if yyr3974 || yy2arr3974 { + yysep4017 := !z.EncBinary() + yy2arr4017 := z.EncBasicHandle().StructToArray + var yyq4017 [5]bool + _, _, _ = yysep4017, yyq4017, yy2arr4017 + const yyr4017 bool = false + yyq4017[0] = x.Kind != "" + yyq4017[1] = x.APIVersion != "" + yyq4017[2] = true + yyq4017[3] = true + yyq4017[4] = true + var yynn4017 int + if yyr4017 || yy2arr4017 { r.EncodeArrayStart(5) } else { - yynn3974 = 0 - for _, b := range yyq3974 { + yynn4017 = 0 + for _, b := range yyq4017 { if b { - yynn3974++ + yynn4017++ } } - r.EncodeMapStart(yynn3974) - yynn3974 = 0 + r.EncodeMapStart(yynn4017) + yynn4017 = 0 } - if yyr3974 || yy2arr3974 { + if yyr4017 || yy2arr4017 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[0] { - yym3976 := z.EncBinary() - _ = yym3976 + if yyq4017[0] { + yym4019 := z.EncBinary() + _ = yym4019 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49843,23 +50454,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3974[0] { + if yyq4017[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3977 := z.EncBinary() - _ = yym3977 + yym4020 := z.EncBinary() + _ = yym4020 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3974 || yy2arr3974 { + if yyr4017 || yy2arr4017 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[1] { - yym3979 := z.EncBinary() - _ = yym3979 + if yyq4017[1] { + yym4022 := z.EncBinary() + _ = yym4022 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49868,70 +50479,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3974[1] { + if yyq4017[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3980 := z.EncBinary() - _ = yym3980 + yym4023 := z.EncBinary() + _ = yym4023 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3974 || yy2arr3974 { + if yyr4017 || yy2arr4017 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[2] { - yy3982 := &x.ObjectMeta - yy3982.CodecEncodeSelf(e) + if yyq4017[2] { + yy4025 := &x.ObjectMeta + yy4025.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3974[2] { + if yyq4017[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3983 := &x.ObjectMeta - yy3983.CodecEncodeSelf(e) + yy4026 := &x.ObjectMeta + yy4026.CodecEncodeSelf(e) } } - if yyr3974 || yy2arr3974 { + if yyr4017 || yy2arr4017 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[3] { - yy3985 := &x.Spec - yy3985.CodecEncodeSelf(e) + if yyq4017[3] { + yy4028 := &x.Spec + yy4028.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3974[3] { + if yyq4017[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3986 := &x.Spec - yy3986.CodecEncodeSelf(e) + yy4029 := &x.Spec + yy4029.CodecEncodeSelf(e) } } - if yyr3974 || yy2arr3974 { + if yyr4017 || yy2arr4017 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3974[4] { - yy3988 := &x.Status - yy3988.CodecEncodeSelf(e) + if yyq4017[4] { + yy4031 := &x.Status + yy4031.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3974[4] { + if yyq4017[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3989 := &x.Status - yy3989.CodecEncodeSelf(e) + yy4032 := &x.Status + yy4032.CodecEncodeSelf(e) } } - if yyr3974 || yy2arr3974 { + if yyr4017 || yy2arr4017 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49944,25 +50555,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3990 := z.DecBinary() - _ = yym3990 + yym4033 := z.DecBinary() + _ = yym4033 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3991 := r.ContainerType() - if yyct3991 == codecSelferValueTypeMap1234 { - yyl3991 := r.ReadMapStart() - if yyl3991 == 0 { + yyct4034 := r.ContainerType() + if yyct4034 == codecSelferValueTypeMap1234 { + yyl4034 := r.ReadMapStart() + if yyl4034 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3991, d) + x.codecDecodeSelfFromMap(yyl4034, d) } - } else if yyct3991 == codecSelferValueTypeArray1234 { - yyl3991 := r.ReadArrayStart() - if yyl3991 == 0 { + } else if yyct4034 == codecSelferValueTypeArray1234 { + yyl4034 := r.ReadArrayStart() + if yyl4034 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3991, d) + x.codecDecodeSelfFromArray(yyl4034, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49974,12 +50585,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3992Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3992Slc - var yyhl3992 bool = l >= 0 - for yyj3992 := 0; ; yyj3992++ { - if yyhl3992 { - if yyj3992 >= l { + var yys4035Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4035Slc + var yyhl4035 bool = l >= 0 + for yyj4035 := 0; ; yyj4035++ { + if yyhl4035 { + if yyj4035 >= l { break } } else { @@ -49988,10 +50599,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3992Slc = r.DecodeBytes(yys3992Slc, true, true) - yys3992 := string(yys3992Slc) + yys4035Slc = r.DecodeBytes(yys4035Slc, true, true) + yys4035 := string(yys4035Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3992 { + switch yys4035 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50008,27 +50619,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3995 := &x.ObjectMeta - yyv3995.CodecDecodeSelf(d) + yyv4038 := &x.ObjectMeta + yyv4038.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3996 := &x.Spec - yyv3996.CodecDecodeSelf(d) + yyv4039 := &x.Spec + yyv4039.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3997 := &x.Status - yyv3997.CodecDecodeSelf(d) + yyv4040 := &x.Status + yyv4040.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3992) - } // end switch yys3992 - } // end for yyj3992 + z.DecStructFieldNotFound(-1, yys4035) + } // end switch yys4035 + } // end for yyj4035 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50036,16 +50647,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3998 int - var yyb3998 bool - var yyhl3998 bool = l >= 0 - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + var yyj4041 int + var yyb4041 bool + var yyhl4041 bool = l >= 0 + yyj4041++ + if yyhl4041 { + yyb4041 = yyj4041 > l } else { - yyb3998 = r.CheckBreak() + yyb4041 = r.CheckBreak() } - if yyb3998 { + if yyb4041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50055,13 +50666,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4041++ + if yyhl4041 { + yyb4041 = yyj4041 > l } else { - yyb3998 = r.CheckBreak() + yyb4041 = r.CheckBreak() } - if yyb3998 { + if yyb4041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50071,13 +50682,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4041++ + if yyhl4041 { + yyb4041 = yyj4041 > l } else { - yyb3998 = r.CheckBreak() + yyb4041 = r.CheckBreak() } - if yyb3998 { + if yyb4041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50085,16 +50696,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4001 := &x.ObjectMeta - yyv4001.CodecDecodeSelf(d) + yyv4044 := &x.ObjectMeta + yyv4044.CodecDecodeSelf(d) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4041++ + if yyhl4041 { + yyb4041 = yyj4041 > l } else { - yyb3998 = r.CheckBreak() + yyb4041 = r.CheckBreak() } - if yyb3998 { + if yyb4041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50102,16 +50713,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4002 := &x.Spec - yyv4002.CodecDecodeSelf(d) + yyv4045 := &x.Spec + yyv4045.CodecDecodeSelf(d) } - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4041++ + if yyhl4041 { + yyb4041 = yyj4041 > l } else { - yyb3998 = r.CheckBreak() + yyb4041 = r.CheckBreak() } - if yyb3998 { + if yyb4041 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50119,21 +50730,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4003 := &x.Status - yyv4003.CodecDecodeSelf(d) + yyv4046 := &x.Status + yyv4046.CodecDecodeSelf(d) } for { - yyj3998++ - if yyhl3998 { - yyb3998 = yyj3998 > l + yyj4041++ + if yyhl4041 { + yyb4041 = yyj4041 > l } else { - yyb3998 = r.CheckBreak() + yyb4041 = r.CheckBreak() } - if yyb3998 { + if yyb4041 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3998-1, "") + z.DecStructFieldNotFound(yyj4041-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50145,37 +50756,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4004 := z.EncBinary() - _ = yym4004 + yym4047 := z.EncBinary() + _ = yym4047 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4005 := !z.EncBinary() - yy2arr4005 := z.EncBasicHandle().StructToArray - var yyq4005 [4]bool - _, _, _ = yysep4005, yyq4005, yy2arr4005 - const yyr4005 bool = false - yyq4005[0] = x.Kind != "" - yyq4005[1] = x.APIVersion != "" - yyq4005[2] = true - var yynn4005 int - if yyr4005 || yy2arr4005 { + yysep4048 := !z.EncBinary() + yy2arr4048 := z.EncBasicHandle().StructToArray + var yyq4048 [4]bool + _, _, _ = yysep4048, yyq4048, yy2arr4048 + const yyr4048 bool = false + yyq4048[0] = x.Kind != "" + yyq4048[1] = x.APIVersion != "" + yyq4048[2] = true + var yynn4048 int + if yyr4048 || yy2arr4048 { r.EncodeArrayStart(4) } else { - yynn4005 = 1 - for _, b := range yyq4005 { + yynn4048 = 1 + for _, b := range yyq4048 { if b { - yynn4005++ + yynn4048++ } } - r.EncodeMapStart(yynn4005) - yynn4005 = 0 + r.EncodeMapStart(yynn4048) + yynn4048 = 0 } - if yyr4005 || yy2arr4005 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[0] { - yym4007 := z.EncBinary() - _ = yym4007 + if yyq4048[0] { + yym4050 := z.EncBinary() + _ = yym4050 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50184,23 +50795,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4005[0] { + if yyq4048[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4008 := z.EncBinary() - _ = yym4008 + yym4051 := z.EncBinary() + _ = yym4051 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4005 || yy2arr4005 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[1] { - yym4010 := z.EncBinary() - _ = yym4010 + if yyq4048[1] { + yym4053 := z.EncBinary() + _ = yym4053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50209,54 +50820,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4005[1] { + if yyq4048[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4011 := z.EncBinary() - _ = yym4011 + yym4054 := z.EncBinary() + _ = yym4054 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4005 || yy2arr4005 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4005[2] { - yy4013 := &x.ListMeta - yym4014 := z.EncBinary() - _ = yym4014 + if yyq4048[2] { + yy4056 := &x.ListMeta + yym4057 := z.EncBinary() + _ = yym4057 if false { - } else if z.HasExtensions() && z.EncExt(yy4013) { + } else if z.HasExtensions() && z.EncExt(yy4056) { } else { - z.EncFallback(yy4013) + z.EncFallback(yy4056) } } else { r.EncodeNil() } } else { - if yyq4005[2] { + if yyq4048[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4015 := &x.ListMeta - yym4016 := z.EncBinary() - _ = yym4016 + yy4058 := &x.ListMeta + yym4059 := z.EncBinary() + _ = yym4059 if false { - } else if z.HasExtensions() && z.EncExt(yy4015) { + } else if z.HasExtensions() && z.EncExt(yy4058) { } else { - z.EncFallback(yy4015) + z.EncFallback(yy4058) } } } - if yyr4005 || yy2arr4005 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4018 := z.EncBinary() - _ = yym4018 + yym4061 := z.EncBinary() + _ = yym4061 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -50269,15 +50880,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4019 := z.EncBinary() - _ = yym4019 + yym4062 := z.EncBinary() + _ = yym4062 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4005 || yy2arr4005 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50290,25 +50901,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4020 := z.DecBinary() - _ = yym4020 + yym4063 := z.DecBinary() + _ = yym4063 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4021 := r.ContainerType() - if yyct4021 == codecSelferValueTypeMap1234 { - yyl4021 := r.ReadMapStart() - if yyl4021 == 0 { + yyct4064 := r.ContainerType() + if yyct4064 == codecSelferValueTypeMap1234 { + yyl4064 := r.ReadMapStart() + if yyl4064 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4021, d) + x.codecDecodeSelfFromMap(yyl4064, d) } - } else if yyct4021 == codecSelferValueTypeArray1234 { - yyl4021 := r.ReadArrayStart() - if yyl4021 == 0 { + } else if yyct4064 == codecSelferValueTypeArray1234 { + yyl4064 := r.ReadArrayStart() + if yyl4064 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4021, d) + x.codecDecodeSelfFromArray(yyl4064, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50320,12 +50931,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4022Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4022Slc - var yyhl4022 bool = l >= 0 - for yyj4022 := 0; ; yyj4022++ { - if yyhl4022 { - if yyj4022 >= l { + var yys4065Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4065Slc + var yyhl4065 bool = l >= 0 + for yyj4065 := 0; ; yyj4065++ { + if yyhl4065 { + if yyj4065 >= l { break } } else { @@ -50334,10 +50945,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4022Slc = r.DecodeBytes(yys4022Slc, true, true) - yys4022 := string(yys4022Slc) + yys4065Slc = r.DecodeBytes(yys4065Slc, true, true) + yys4065 := string(yys4065Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4022 { + switch yys4065 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50354,31 +50965,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4025 := &x.ListMeta - yym4026 := z.DecBinary() - _ = yym4026 + yyv4068 := &x.ListMeta + yym4069 := z.DecBinary() + _ = yym4069 if false { - } else if z.HasExtensions() && z.DecExt(yyv4025) { + } else if z.HasExtensions() && z.DecExt(yyv4068) { } else { - z.DecFallback(yyv4025, false) + z.DecFallback(yyv4068, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4027 := &x.Items - yym4028 := z.DecBinary() - _ = yym4028 + yyv4070 := &x.Items + yym4071 := z.DecBinary() + _ = yym4071 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4027), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4070), d) } } default: - z.DecStructFieldNotFound(-1, yys4022) - } // end switch yys4022 - } // end for yyj4022 + z.DecStructFieldNotFound(-1, yys4065) + } // end switch yys4065 + } // end for yyj4065 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50386,16 +50997,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4029 int - var yyb4029 bool - var yyhl4029 bool = l >= 0 - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + var yyj4072 int + var yyb4072 bool + var yyhl4072 bool = l >= 0 + yyj4072++ + if yyhl4072 { + yyb4072 = yyj4072 > l } else { - yyb4029 = r.CheckBreak() + yyb4072 = r.CheckBreak() } - if yyb4029 { + if yyb4072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50405,13 +51016,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4072++ + if yyhl4072 { + yyb4072 = yyj4072 > l } else { - yyb4029 = r.CheckBreak() + yyb4072 = r.CheckBreak() } - if yyb4029 { + if yyb4072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50421,13 +51032,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4072++ + if yyhl4072 { + yyb4072 = yyj4072 > l } else { - yyb4029 = r.CheckBreak() + yyb4072 = r.CheckBreak() } - if yyb4029 { + if yyb4072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50435,22 +51046,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4032 := &x.ListMeta - yym4033 := z.DecBinary() - _ = yym4033 + yyv4075 := &x.ListMeta + yym4076 := z.DecBinary() + _ = yym4076 if false { - } else if z.HasExtensions() && z.DecExt(yyv4032) { + } else if z.HasExtensions() && z.DecExt(yyv4075) { } else { - z.DecFallback(yyv4032, false) + z.DecFallback(yyv4075, false) } } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4072++ + if yyhl4072 { + yyb4072 = yyj4072 > l } else { - yyb4029 = r.CheckBreak() + yyb4072 = r.CheckBreak() } - if yyb4029 { + if yyb4072 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50458,26 +51069,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4034 := &x.Items - yym4035 := z.DecBinary() - _ = yym4035 + yyv4077 := &x.Items + yym4078 := z.DecBinary() + _ = yym4078 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4034), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4077), d) } } for { - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4072++ + if yyhl4072 { + yyb4072 = yyj4072 > l } else { - yyb4029 = r.CheckBreak() + yyb4072 = r.CheckBreak() } - if yyb4029 { + if yyb4072 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4029-1, "") + z.DecStructFieldNotFound(yyj4072-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50489,40 +51100,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4036 := z.EncBinary() - _ = yym4036 + yym4079 := z.EncBinary() + _ = yym4079 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4037 := !z.EncBinary() - yy2arr4037 := z.EncBasicHandle().StructToArray - var yyq4037 [6]bool - _, _, _ = yysep4037, yyq4037, yy2arr4037 - const yyr4037 bool = false - yyq4037[0] = x.Kind != "" - yyq4037[1] = x.APIVersion != "" - yyq4037[2] = true - yyq4037[3] = len(x.Data) != 0 - yyq4037[4] = len(x.StringData) != 0 - yyq4037[5] = x.Type != "" - var yynn4037 int - if yyr4037 || yy2arr4037 { + yysep4080 := !z.EncBinary() + yy2arr4080 := z.EncBasicHandle().StructToArray + var yyq4080 [6]bool + _, _, _ = yysep4080, yyq4080, yy2arr4080 + const yyr4080 bool = false + yyq4080[0] = x.Kind != "" + yyq4080[1] = x.APIVersion != "" + yyq4080[2] = true + yyq4080[3] = len(x.Data) != 0 + yyq4080[4] = len(x.StringData) != 0 + yyq4080[5] = x.Type != "" + var yynn4080 int + if yyr4080 || yy2arr4080 { r.EncodeArrayStart(6) } else { - yynn4037 = 0 - for _, b := range yyq4037 { + yynn4080 = 0 + for _, b := range yyq4080 { if b { - yynn4037++ + yynn4080++ } } - r.EncodeMapStart(yynn4037) - yynn4037 = 0 + r.EncodeMapStart(yynn4080) + yynn4080 = 0 } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[0] { - yym4039 := z.EncBinary() - _ = yym4039 + if yyq4080[0] { + yym4082 := z.EncBinary() + _ = yym4082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50531,23 +51142,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4037[0] { + if yyq4080[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4040 := z.EncBinary() - _ = yym4040 + yym4083 := z.EncBinary() + _ = yym4083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[1] { - yym4042 := z.EncBinary() - _ = yym4042 + if yyq4080[1] { + yym4085 := z.EncBinary() + _ = yym4085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50556,43 +51167,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4037[1] { + if yyq4080[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4043 := z.EncBinary() - _ = yym4043 + yym4086 := z.EncBinary() + _ = yym4086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[2] { - yy4045 := &x.ObjectMeta - yy4045.CodecEncodeSelf(e) + if yyq4080[2] { + yy4088 := &x.ObjectMeta + yy4088.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4037[2] { + if yyq4080[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4046 := &x.ObjectMeta - yy4046.CodecEncodeSelf(e) + yy4089 := &x.ObjectMeta + yy4089.CodecEncodeSelf(e) } } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[3] { + if yyq4080[3] { if x.Data == nil { r.EncodeNil() } else { - yym4048 := z.EncBinary() - _ = yym4048 + yym4091 := z.EncBinary() + _ = yym4091 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50602,15 +51213,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4037[3] { + if yyq4080[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4049 := z.EncBinary() - _ = yym4049 + yym4092 := z.EncBinary() + _ = yym4092 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50618,14 +51229,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[4] { + if yyq4080[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4051 := z.EncBinary() - _ = yym4051 + yym4094 := z.EncBinary() + _ = yym4094 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -50635,15 +51246,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4037[4] { + if yyq4080[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4052 := z.EncBinary() - _ = yym4052 + yym4095 := z.EncBinary() + _ = yym4095 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -50651,22 +51262,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4037[5] { + if yyq4080[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4037[5] { + if yyq4080[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4037 || yy2arr4037 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50679,25 +51290,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4054 := z.DecBinary() - _ = yym4054 + yym4097 := z.DecBinary() + _ = yym4097 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4055 := r.ContainerType() - if yyct4055 == codecSelferValueTypeMap1234 { - yyl4055 := r.ReadMapStart() - if yyl4055 == 0 { + yyct4098 := r.ContainerType() + if yyct4098 == codecSelferValueTypeMap1234 { + yyl4098 := r.ReadMapStart() + if yyl4098 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4055, d) + x.codecDecodeSelfFromMap(yyl4098, d) } - } else if yyct4055 == codecSelferValueTypeArray1234 { - yyl4055 := r.ReadArrayStart() - if yyl4055 == 0 { + } else if yyct4098 == codecSelferValueTypeArray1234 { + yyl4098 := r.ReadArrayStart() + if yyl4098 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4055, d) + x.codecDecodeSelfFromArray(yyl4098, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50709,12 +51320,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4056Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4056Slc - var yyhl4056 bool = l >= 0 - for yyj4056 := 0; ; yyj4056++ { - if yyhl4056 { - if yyj4056 >= l { + var yys4099Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4099Slc + var yyhl4099 bool = l >= 0 + for yyj4099 := 0; ; yyj4099++ { + if yyhl4099 { + if yyj4099 >= l { break } } else { @@ -50723,10 +51334,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4056Slc = r.DecodeBytes(yys4056Slc, true, true) - yys4056 := string(yys4056Slc) + yys4099Slc = r.DecodeBytes(yys4099Slc, true, true) + yys4099 := string(yys4099Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4056 { + switch yys4099 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50743,31 +51354,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4059 := &x.ObjectMeta - yyv4059.CodecDecodeSelf(d) + yyv4102 := &x.ObjectMeta + yyv4102.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4060 := &x.Data - yym4061 := z.DecBinary() - _ = yym4061 + yyv4103 := &x.Data + yym4104 := z.DecBinary() + _ = yym4104 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4060), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4103), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4062 := &x.StringData - yym4063 := z.DecBinary() - _ = yym4063 + yyv4105 := &x.StringData + yym4106 := z.DecBinary() + _ = yym4106 if false { } else { - z.F.DecMapStringStringX(yyv4062, false, d) + z.F.DecMapStringStringX(yyv4105, false, d) } } case "type": @@ -50777,9 +51388,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4056) - } // end switch yys4056 - } // end for yyj4056 + z.DecStructFieldNotFound(-1, yys4099) + } // end switch yys4099 + } // end for yyj4099 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50787,16 +51398,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4065 int - var yyb4065 bool - var yyhl4065 bool = l >= 0 - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + var yyj4108 int + var yyb4108 bool + var yyhl4108 bool = l >= 0 + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50806,13 +51417,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50822,13 +51433,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50836,16 +51447,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4068 := &x.ObjectMeta - yyv4068.CodecDecodeSelf(d) + yyv4111 := &x.ObjectMeta + yyv4111.CodecDecodeSelf(d) } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50853,21 +51464,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4069 := &x.Data - yym4070 := z.DecBinary() - _ = yym4070 + yyv4112 := &x.Data + yym4113 := z.DecBinary() + _ = yym4113 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4069), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4112), d) } } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50875,21 +51486,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4071 := &x.StringData - yym4072 := z.DecBinary() - _ = yym4072 + yyv4114 := &x.StringData + yym4115 := z.DecBinary() + _ = yym4115 if false { } else { - z.F.DecMapStringStringX(yyv4071, false, d) + z.F.DecMapStringStringX(yyv4114, false, d) } } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50900,17 +51511,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4108++ + if yyhl4108 { + yyb4108 = yyj4108 > l } else { - yyb4065 = r.CheckBreak() + yyb4108 = r.CheckBreak() } - if yyb4065 { + if yyb4108 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4065-1, "") + z.DecStructFieldNotFound(yyj4108-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50919,8 +51530,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4074 := z.EncBinary() - _ = yym4074 + yym4117 := z.EncBinary() + _ = yym4117 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50932,8 +51543,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4075 := z.DecBinary() - _ = yym4075 + yym4118 := z.DecBinary() + _ = yym4118 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50948,37 +51559,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4076 := z.EncBinary() - _ = yym4076 + yym4119 := z.EncBinary() + _ = yym4119 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4077 := !z.EncBinary() - yy2arr4077 := z.EncBasicHandle().StructToArray - var yyq4077 [4]bool - _, _, _ = yysep4077, yyq4077, yy2arr4077 - const yyr4077 bool = false - yyq4077[0] = x.Kind != "" - yyq4077[1] = x.APIVersion != "" - yyq4077[2] = true - var yynn4077 int - if yyr4077 || yy2arr4077 { + yysep4120 := !z.EncBinary() + yy2arr4120 := z.EncBasicHandle().StructToArray + var yyq4120 [4]bool + _, _, _ = yysep4120, yyq4120, yy2arr4120 + const yyr4120 bool = false + yyq4120[0] = x.Kind != "" + yyq4120[1] = x.APIVersion != "" + yyq4120[2] = true + var yynn4120 int + if yyr4120 || yy2arr4120 { r.EncodeArrayStart(4) } else { - yynn4077 = 1 - for _, b := range yyq4077 { + yynn4120 = 1 + for _, b := range yyq4120 { if b { - yynn4077++ + yynn4120++ } } - r.EncodeMapStart(yynn4077) - yynn4077 = 0 + r.EncodeMapStart(yynn4120) + yynn4120 = 0 } - if yyr4077 || yy2arr4077 { + if yyr4120 || yy2arr4120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[0] { - yym4079 := z.EncBinary() - _ = yym4079 + if yyq4120[0] { + yym4122 := z.EncBinary() + _ = yym4122 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50987,23 +51598,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4077[0] { + if yyq4120[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4080 := z.EncBinary() - _ = yym4080 + yym4123 := z.EncBinary() + _ = yym4123 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4077 || yy2arr4077 { + if yyr4120 || yy2arr4120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[1] { - yym4082 := z.EncBinary() - _ = yym4082 + if yyq4120[1] { + yym4125 := z.EncBinary() + _ = yym4125 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51012,54 +51623,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4077[1] { + if yyq4120[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4083 := z.EncBinary() - _ = yym4083 + yym4126 := z.EncBinary() + _ = yym4126 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4077 || yy2arr4077 { + if yyr4120 || yy2arr4120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[2] { - yy4085 := &x.ListMeta - yym4086 := z.EncBinary() - _ = yym4086 + if yyq4120[2] { + yy4128 := &x.ListMeta + yym4129 := z.EncBinary() + _ = yym4129 if false { - } else if z.HasExtensions() && z.EncExt(yy4085) { + } else if z.HasExtensions() && z.EncExt(yy4128) { } else { - z.EncFallback(yy4085) + z.EncFallback(yy4128) } } else { r.EncodeNil() } } else { - if yyq4077[2] { + if yyq4120[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4087 := &x.ListMeta - yym4088 := z.EncBinary() - _ = yym4088 + yy4130 := &x.ListMeta + yym4131 := z.EncBinary() + _ = yym4131 if false { - } else if z.HasExtensions() && z.EncExt(yy4087) { + } else if z.HasExtensions() && z.EncExt(yy4130) { } else { - z.EncFallback(yy4087) + z.EncFallback(yy4130) } } } - if yyr4077 || yy2arr4077 { + if yyr4120 || yy2arr4120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4090 := z.EncBinary() - _ = yym4090 + yym4133 := z.EncBinary() + _ = yym4133 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -51072,15 +51683,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4091 := z.EncBinary() - _ = yym4091 + yym4134 := z.EncBinary() + _ = yym4134 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4077 || yy2arr4077 { + if yyr4120 || yy2arr4120 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51093,25 +51704,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4092 := z.DecBinary() - _ = yym4092 + yym4135 := z.DecBinary() + _ = yym4135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4093 := r.ContainerType() - if yyct4093 == codecSelferValueTypeMap1234 { - yyl4093 := r.ReadMapStart() - if yyl4093 == 0 { + yyct4136 := r.ContainerType() + if yyct4136 == codecSelferValueTypeMap1234 { + yyl4136 := r.ReadMapStart() + if yyl4136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4093, d) + x.codecDecodeSelfFromMap(yyl4136, d) } - } else if yyct4093 == codecSelferValueTypeArray1234 { - yyl4093 := r.ReadArrayStart() - if yyl4093 == 0 { + } else if yyct4136 == codecSelferValueTypeArray1234 { + yyl4136 := r.ReadArrayStart() + if yyl4136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4093, d) + x.codecDecodeSelfFromArray(yyl4136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51123,12 +51734,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4094Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4094Slc - var yyhl4094 bool = l >= 0 - for yyj4094 := 0; ; yyj4094++ { - if yyhl4094 { - if yyj4094 >= l { + var yys4137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4137Slc + var yyhl4137 bool = l >= 0 + for yyj4137 := 0; ; yyj4137++ { + if yyhl4137 { + if yyj4137 >= l { break } } else { @@ -51137,10 +51748,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4094Slc = r.DecodeBytes(yys4094Slc, true, true) - yys4094 := string(yys4094Slc) + yys4137Slc = r.DecodeBytes(yys4137Slc, true, true) + yys4137 := string(yys4137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4094 { + switch yys4137 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51157,31 +51768,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4097 := &x.ListMeta - yym4098 := z.DecBinary() - _ = yym4098 + yyv4140 := &x.ListMeta + yym4141 := z.DecBinary() + _ = yym4141 if false { - } else if z.HasExtensions() && z.DecExt(yyv4097) { + } else if z.HasExtensions() && z.DecExt(yyv4140) { } else { - z.DecFallback(yyv4097, false) + z.DecFallback(yyv4140, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4099 := &x.Items - yym4100 := z.DecBinary() - _ = yym4100 + yyv4142 := &x.Items + yym4143 := z.DecBinary() + _ = yym4143 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4099), d) + h.decSliceSecret((*[]Secret)(yyv4142), d) } } default: - z.DecStructFieldNotFound(-1, yys4094) - } // end switch yys4094 - } // end for yyj4094 + z.DecStructFieldNotFound(-1, yys4137) + } // end switch yys4137 + } // end for yyj4137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51189,16 +51800,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4101 int - var yyb4101 bool - var yyhl4101 bool = l >= 0 - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + var yyj4144 int + var yyb4144 bool + var yyhl4144 bool = l >= 0 + yyj4144++ + if yyhl4144 { + yyb4144 = yyj4144 > l } else { - yyb4101 = r.CheckBreak() + yyb4144 = r.CheckBreak() } - if yyb4101 { + if yyb4144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51208,13 +51819,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4144++ + if yyhl4144 { + yyb4144 = yyj4144 > l } else { - yyb4101 = r.CheckBreak() + yyb4144 = r.CheckBreak() } - if yyb4101 { + if yyb4144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51224,13 +51835,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4144++ + if yyhl4144 { + yyb4144 = yyj4144 > l } else { - yyb4101 = r.CheckBreak() + yyb4144 = r.CheckBreak() } - if yyb4101 { + if yyb4144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51238,22 +51849,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4104 := &x.ListMeta - yym4105 := z.DecBinary() - _ = yym4105 + yyv4147 := &x.ListMeta + yym4148 := z.DecBinary() + _ = yym4148 if false { - } else if z.HasExtensions() && z.DecExt(yyv4104) { + } else if z.HasExtensions() && z.DecExt(yyv4147) { } else { - z.DecFallback(yyv4104, false) + z.DecFallback(yyv4147, false) } } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4144++ + if yyhl4144 { + yyb4144 = yyj4144 > l } else { - yyb4101 = r.CheckBreak() + yyb4144 = r.CheckBreak() } - if yyb4101 { + if yyb4144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51261,26 +51872,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4106 := &x.Items - yym4107 := z.DecBinary() - _ = yym4107 + yyv4149 := &x.Items + yym4150 := z.DecBinary() + _ = yym4150 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4106), d) + h.decSliceSecret((*[]Secret)(yyv4149), d) } } for { - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4144++ + if yyhl4144 { + yyb4144 = yyj4144 > l } else { - yyb4101 = r.CheckBreak() + yyb4144 = r.CheckBreak() } - if yyb4101 { + if yyb4144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4101-1, "") + z.DecStructFieldNotFound(yyj4144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51292,38 +51903,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4108 := z.EncBinary() - _ = yym4108 + yym4151 := z.EncBinary() + _ = yym4151 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4109 := !z.EncBinary() - yy2arr4109 := z.EncBasicHandle().StructToArray - var yyq4109 [4]bool - _, _, _ = yysep4109, yyq4109, yy2arr4109 - const yyr4109 bool = false - yyq4109[0] = x.Kind != "" - yyq4109[1] = x.APIVersion != "" - yyq4109[2] = true - yyq4109[3] = len(x.Data) != 0 - var yynn4109 int - if yyr4109 || yy2arr4109 { + yysep4152 := !z.EncBinary() + yy2arr4152 := z.EncBasicHandle().StructToArray + var yyq4152 [4]bool + _, _, _ = yysep4152, yyq4152, yy2arr4152 + const yyr4152 bool = false + yyq4152[0] = x.Kind != "" + yyq4152[1] = x.APIVersion != "" + yyq4152[2] = true + yyq4152[3] = len(x.Data) != 0 + var yynn4152 int + if yyr4152 || yy2arr4152 { r.EncodeArrayStart(4) } else { - yynn4109 = 0 - for _, b := range yyq4109 { + yynn4152 = 0 + for _, b := range yyq4152 { if b { - yynn4109++ + yynn4152++ } } - r.EncodeMapStart(yynn4109) - yynn4109 = 0 + r.EncodeMapStart(yynn4152) + yynn4152 = 0 } - if yyr4109 || yy2arr4109 { + if yyr4152 || yy2arr4152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4109[0] { - yym4111 := z.EncBinary() - _ = yym4111 + if yyq4152[0] { + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51332,23 +51943,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4109[0] { + if yyq4152[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4112 := z.EncBinary() - _ = yym4112 + yym4155 := z.EncBinary() + _ = yym4155 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4109 || yy2arr4109 { + if yyr4152 || yy2arr4152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4109[1] { - yym4114 := z.EncBinary() - _ = yym4114 + if yyq4152[1] { + yym4157 := z.EncBinary() + _ = yym4157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51357,43 +51968,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4109[1] { + if yyq4152[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4115 := z.EncBinary() - _ = yym4115 + yym4158 := z.EncBinary() + _ = yym4158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4109 || yy2arr4109 { + if yyr4152 || yy2arr4152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4109[2] { - yy4117 := &x.ObjectMeta - yy4117.CodecEncodeSelf(e) + if yyq4152[2] { + yy4160 := &x.ObjectMeta + yy4160.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4109[2] { + if yyq4152[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4118 := &x.ObjectMeta - yy4118.CodecEncodeSelf(e) + yy4161 := &x.ObjectMeta + yy4161.CodecEncodeSelf(e) } } - if yyr4109 || yy2arr4109 { + if yyr4152 || yy2arr4152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4109[3] { + if yyq4152[3] { if x.Data == nil { r.EncodeNil() } else { - yym4120 := z.EncBinary() - _ = yym4120 + yym4163 := z.EncBinary() + _ = yym4163 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51403,15 +52014,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4109[3] { + if yyq4152[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4121 := z.EncBinary() - _ = yym4121 + yym4164 := z.EncBinary() + _ = yym4164 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51419,7 +52030,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4109 || yy2arr4109 { + if yyr4152 || yy2arr4152 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51432,25 +52043,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4122 := z.DecBinary() - _ = yym4122 + yym4165 := z.DecBinary() + _ = yym4165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4123 := r.ContainerType() - if yyct4123 == codecSelferValueTypeMap1234 { - yyl4123 := r.ReadMapStart() - if yyl4123 == 0 { + yyct4166 := r.ContainerType() + if yyct4166 == codecSelferValueTypeMap1234 { + yyl4166 := r.ReadMapStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4123, d) + x.codecDecodeSelfFromMap(yyl4166, d) } - } else if yyct4123 == codecSelferValueTypeArray1234 { - yyl4123 := r.ReadArrayStart() - if yyl4123 == 0 { + } else if yyct4166 == codecSelferValueTypeArray1234 { + yyl4166 := r.ReadArrayStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4123, d) + x.codecDecodeSelfFromArray(yyl4166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51462,12 +52073,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4124Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4124Slc - var yyhl4124 bool = l >= 0 - for yyj4124 := 0; ; yyj4124++ { - if yyhl4124 { - if yyj4124 >= l { + var yys4167Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4167Slc + var yyhl4167 bool = l >= 0 + for yyj4167 := 0; ; yyj4167++ { + if yyhl4167 { + if yyj4167 >= l { break } } else { @@ -51476,10 +52087,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4124Slc = r.DecodeBytes(yys4124Slc, true, true) - yys4124 := string(yys4124Slc) + yys4167Slc = r.DecodeBytes(yys4167Slc, true, true) + yys4167 := string(yys4167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4124 { + switch yys4167 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51496,25 +52107,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4127 := &x.ObjectMeta - yyv4127.CodecDecodeSelf(d) + yyv4170 := &x.ObjectMeta + yyv4170.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4128 := &x.Data - yym4129 := z.DecBinary() - _ = yym4129 + yyv4171 := &x.Data + yym4172 := z.DecBinary() + _ = yym4172 if false { } else { - z.F.DecMapStringStringX(yyv4128, false, d) + z.F.DecMapStringStringX(yyv4171, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4124) - } // end switch yys4124 - } // end for yyj4124 + z.DecStructFieldNotFound(-1, yys4167) + } // end switch yys4167 + } // end for yyj4167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51522,16 +52133,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4130 int - var yyb4130 bool - var yyhl4130 bool = l >= 0 - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + var yyj4173 int + var yyb4173 bool + var yyhl4173 bool = l >= 0 + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4130 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4130 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51541,13 +52152,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4130 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4130 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51557,13 +52168,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4130 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4130 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51571,16 +52182,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4133 := &x.ObjectMeta - yyv4133.CodecDecodeSelf(d) + yyv4176 := &x.ObjectMeta + yyv4176.CodecDecodeSelf(d) } - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4130 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4130 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51588,26 +52199,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4134 := &x.Data - yym4135 := z.DecBinary() - _ = yym4135 + yyv4177 := &x.Data + yym4178 := z.DecBinary() + _ = yym4178 if false { } else { - z.F.DecMapStringStringX(yyv4134, false, d) + z.F.DecMapStringStringX(yyv4177, false, d) } } for { - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4130 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4130 { + if yyb4173 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4130-1, "") + z.DecStructFieldNotFound(yyj4173-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51619,37 +52230,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4136 := z.EncBinary() - _ = yym4136 + yym4179 := z.EncBinary() + _ = yym4179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4137 := !z.EncBinary() - yy2arr4137 := z.EncBasicHandle().StructToArray - var yyq4137 [4]bool - _, _, _ = yysep4137, yyq4137, yy2arr4137 - const yyr4137 bool = false - yyq4137[0] = x.Kind != "" - yyq4137[1] = x.APIVersion != "" - yyq4137[2] = true - var yynn4137 int - if yyr4137 || yy2arr4137 { + yysep4180 := !z.EncBinary() + yy2arr4180 := z.EncBasicHandle().StructToArray + var yyq4180 [4]bool + _, _, _ = yysep4180, yyq4180, yy2arr4180 + const yyr4180 bool = false + yyq4180[0] = x.Kind != "" + yyq4180[1] = x.APIVersion != "" + yyq4180[2] = true + var yynn4180 int + if yyr4180 || yy2arr4180 { r.EncodeArrayStart(4) } else { - yynn4137 = 1 - for _, b := range yyq4137 { + yynn4180 = 1 + for _, b := range yyq4180 { if b { - yynn4137++ + yynn4180++ } } - r.EncodeMapStart(yynn4137) - yynn4137 = 0 + r.EncodeMapStart(yynn4180) + yynn4180 = 0 } - if yyr4137 || yy2arr4137 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4137[0] { - yym4139 := z.EncBinary() - _ = yym4139 + if yyq4180[0] { + yym4182 := z.EncBinary() + _ = yym4182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51658,23 +52269,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4137[0] { + if yyq4180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4140 := z.EncBinary() - _ = yym4140 + yym4183 := z.EncBinary() + _ = yym4183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4137 || yy2arr4137 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4137[1] { - yym4142 := z.EncBinary() - _ = yym4142 + if yyq4180[1] { + yym4185 := z.EncBinary() + _ = yym4185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51683,54 +52294,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4137[1] { + if yyq4180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4143 := z.EncBinary() - _ = yym4143 + yym4186 := z.EncBinary() + _ = yym4186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4137 || yy2arr4137 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4137[2] { - yy4145 := &x.ListMeta - yym4146 := z.EncBinary() - _ = yym4146 + if yyq4180[2] { + yy4188 := &x.ListMeta + yym4189 := z.EncBinary() + _ = yym4189 if false { - } else if z.HasExtensions() && z.EncExt(yy4145) { + } else if z.HasExtensions() && z.EncExt(yy4188) { } else { - z.EncFallback(yy4145) + z.EncFallback(yy4188) } } else { r.EncodeNil() } } else { - if yyq4137[2] { + if yyq4180[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4147 := &x.ListMeta - yym4148 := z.EncBinary() - _ = yym4148 + yy4190 := &x.ListMeta + yym4191 := z.EncBinary() + _ = yym4191 if false { - } else if z.HasExtensions() && z.EncExt(yy4147) { + } else if z.HasExtensions() && z.EncExt(yy4190) { } else { - z.EncFallback(yy4147) + z.EncFallback(yy4190) } } } - if yyr4137 || yy2arr4137 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4150 := z.EncBinary() - _ = yym4150 + yym4193 := z.EncBinary() + _ = yym4193 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -51743,15 +52354,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4151 := z.EncBinary() - _ = yym4151 + yym4194 := z.EncBinary() + _ = yym4194 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4137 || yy2arr4137 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51764,25 +52375,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4152 := z.DecBinary() - _ = yym4152 + yym4195 := z.DecBinary() + _ = yym4195 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4153 := r.ContainerType() - if yyct4153 == codecSelferValueTypeMap1234 { - yyl4153 := r.ReadMapStart() - if yyl4153 == 0 { + yyct4196 := r.ContainerType() + if yyct4196 == codecSelferValueTypeMap1234 { + yyl4196 := r.ReadMapStart() + if yyl4196 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4153, d) + x.codecDecodeSelfFromMap(yyl4196, d) } - } else if yyct4153 == codecSelferValueTypeArray1234 { - yyl4153 := r.ReadArrayStart() - if yyl4153 == 0 { + } else if yyct4196 == codecSelferValueTypeArray1234 { + yyl4196 := r.ReadArrayStart() + if yyl4196 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4153, d) + x.codecDecodeSelfFromArray(yyl4196, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51794,12 +52405,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4154Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4154Slc - var yyhl4154 bool = l >= 0 - for yyj4154 := 0; ; yyj4154++ { - if yyhl4154 { - if yyj4154 >= l { + var yys4197Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4197Slc + var yyhl4197 bool = l >= 0 + for yyj4197 := 0; ; yyj4197++ { + if yyhl4197 { + if yyj4197 >= l { break } } else { @@ -51808,10 +52419,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4154Slc = r.DecodeBytes(yys4154Slc, true, true) - yys4154 := string(yys4154Slc) + yys4197Slc = r.DecodeBytes(yys4197Slc, true, true) + yys4197 := string(yys4197Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4154 { + switch yys4197 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51828,31 +52439,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4157 := &x.ListMeta - yym4158 := z.DecBinary() - _ = yym4158 + yyv4200 := &x.ListMeta + yym4201 := z.DecBinary() + _ = yym4201 if false { - } else if z.HasExtensions() && z.DecExt(yyv4157) { + } else if z.HasExtensions() && z.DecExt(yyv4200) { } else { - z.DecFallback(yyv4157, false) + z.DecFallback(yyv4200, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4159 := &x.Items - yym4160 := z.DecBinary() - _ = yym4160 + yyv4202 := &x.Items + yym4203 := z.DecBinary() + _ = yym4203 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4159), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4202), d) } } default: - z.DecStructFieldNotFound(-1, yys4154) - } // end switch yys4154 - } // end for yyj4154 + z.DecStructFieldNotFound(-1, yys4197) + } // end switch yys4197 + } // end for yyj4197 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51860,16 +52471,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4161 int - var yyb4161 bool - var yyhl4161 bool = l >= 0 - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l + var yyj4204 int + var yyb4204 bool + var yyhl4204 bool = l >= 0 + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4161 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4161 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51879,13 +52490,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4161 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4161 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51895,13 +52506,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4161 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4161 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51909,22 +52520,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4164 := &x.ListMeta - yym4165 := z.DecBinary() - _ = yym4165 + yyv4207 := &x.ListMeta + yym4208 := z.DecBinary() + _ = yym4208 if false { - } else if z.HasExtensions() && z.DecExt(yyv4164) { + } else if z.HasExtensions() && z.DecExt(yyv4207) { } else { - z.DecFallback(yyv4164, false) + z.DecFallback(yyv4207, false) } } - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4161 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4161 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51932,26 +52543,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4166 := &x.Items - yym4167 := z.DecBinary() - _ = yym4167 + yyv4209 := &x.Items + yym4210 := z.DecBinary() + _ = yym4210 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4166), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4209), d) } } for { - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4161 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4161 { + if yyb4204 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4161-1, "") + z.DecStructFieldNotFound(yyj4204-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51960,8 +52571,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4168 := z.EncBinary() - _ = yym4168 + yym4211 := z.EncBinary() + _ = yym4211 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51973,8 +52584,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4169 := z.DecBinary() - _ = yym4169 + yym4212 := z.DecBinary() + _ = yym4212 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51989,32 +52600,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4170 := z.EncBinary() - _ = yym4170 + yym4213 := z.EncBinary() + _ = yym4213 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4171 := !z.EncBinary() - yy2arr4171 := z.EncBasicHandle().StructToArray - var yyq4171 [4]bool - _, _, _ = yysep4171, yyq4171, yy2arr4171 - const yyr4171 bool = false - yyq4171[2] = x.Message != "" - yyq4171[3] = x.Error != "" - var yynn4171 int - if yyr4171 || yy2arr4171 { + yysep4214 := !z.EncBinary() + yy2arr4214 := z.EncBasicHandle().StructToArray + var yyq4214 [4]bool + _, _, _ = yysep4214, yyq4214, yy2arr4214 + const yyr4214 bool = false + yyq4214[2] = x.Message != "" + yyq4214[3] = x.Error != "" + var yynn4214 int + if yyr4214 || yy2arr4214 { r.EncodeArrayStart(4) } else { - yynn4171 = 2 - for _, b := range yyq4171 { + yynn4214 = 2 + for _, b := range yyq4214 { if b { - yynn4171++ + yynn4214++ } } - r.EncodeMapStart(yynn4171) - yynn4171 = 0 + r.EncodeMapStart(yynn4214) + yynn4214 = 0 } - if yyr4171 || yy2arr4171 { + if yyr4214 || yy2arr4214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -52023,7 +52634,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4171 || yy2arr4171 { + if yyr4214 || yy2arr4214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -52032,11 +52643,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4171 || yy2arr4171 { + if yyr4214 || yy2arr4214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4171[2] { - yym4175 := z.EncBinary() - _ = yym4175 + if yyq4214[2] { + yym4218 := z.EncBinary() + _ = yym4218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -52045,23 +52656,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4171[2] { + if yyq4214[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4176 := z.EncBinary() - _ = yym4176 + yym4219 := z.EncBinary() + _ = yym4219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4171 || yy2arr4171 { + if yyr4214 || yy2arr4214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4171[3] { - yym4178 := z.EncBinary() - _ = yym4178 + if yyq4214[3] { + yym4221 := z.EncBinary() + _ = yym4221 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -52070,19 +52681,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4171[3] { + if yyq4214[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4179 := z.EncBinary() - _ = yym4179 + yym4222 := z.EncBinary() + _ = yym4222 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4171 || yy2arr4171 { + if yyr4214 || yy2arr4214 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52095,25 +52706,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4180 := z.DecBinary() - _ = yym4180 + yym4223 := z.DecBinary() + _ = yym4223 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4181 := r.ContainerType() - if yyct4181 == codecSelferValueTypeMap1234 { - yyl4181 := r.ReadMapStart() - if yyl4181 == 0 { + yyct4224 := r.ContainerType() + if yyct4224 == codecSelferValueTypeMap1234 { + yyl4224 := r.ReadMapStart() + if yyl4224 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4181, d) + x.codecDecodeSelfFromMap(yyl4224, d) } - } else if yyct4181 == codecSelferValueTypeArray1234 { - yyl4181 := r.ReadArrayStart() - if yyl4181 == 0 { + } else if yyct4224 == codecSelferValueTypeArray1234 { + yyl4224 := r.ReadArrayStart() + if yyl4224 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4181, d) + x.codecDecodeSelfFromArray(yyl4224, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52125,12 +52736,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4182Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4182Slc - var yyhl4182 bool = l >= 0 - for yyj4182 := 0; ; yyj4182++ { - if yyhl4182 { - if yyj4182 >= l { + var yys4225Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4225Slc + var yyhl4225 bool = l >= 0 + for yyj4225 := 0; ; yyj4225++ { + if yyhl4225 { + if yyj4225 >= l { break } } else { @@ -52139,10 +52750,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4182Slc = r.DecodeBytes(yys4182Slc, true, true) - yys4182 := string(yys4182Slc) + yys4225Slc = r.DecodeBytes(yys4225Slc, true, true) + yys4225 := string(yys4225Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4182 { + switch yys4225 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -52168,9 +52779,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4182) - } // end switch yys4182 - } // end for yyj4182 + z.DecStructFieldNotFound(-1, yys4225) + } // end switch yys4225 + } // end for yyj4225 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52178,16 +52789,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4187 int - var yyb4187 bool - var yyhl4187 bool = l >= 0 - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + var yyj4230 int + var yyb4230 bool + var yyhl4230 bool = l >= 0 + yyj4230++ + if yyhl4230 { + yyb4230 = yyj4230 > l } else { - yyb4187 = r.CheckBreak() + yyb4230 = r.CheckBreak() } - if yyb4187 { + if yyb4230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52197,13 +52808,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4230++ + if yyhl4230 { + yyb4230 = yyj4230 > l } else { - yyb4187 = r.CheckBreak() + yyb4230 = r.CheckBreak() } - if yyb4187 { + if yyb4230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52213,13 +52824,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4230++ + if yyhl4230 { + yyb4230 = yyj4230 > l } else { - yyb4187 = r.CheckBreak() + yyb4230 = r.CheckBreak() } - if yyb4187 { + if yyb4230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52229,13 +52840,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4230++ + if yyhl4230 { + yyb4230 = yyj4230 > l } else { - yyb4187 = r.CheckBreak() + yyb4230 = r.CheckBreak() } - if yyb4187 { + if yyb4230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52246,17 +52857,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4187++ - if yyhl4187 { - yyb4187 = yyj4187 > l + yyj4230++ + if yyhl4230 { + yyb4230 = yyj4230 > l } else { - yyb4187 = r.CheckBreak() + yyb4230 = r.CheckBreak() } - if yyb4187 { + if yyb4230 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4187-1, "") + z.DecStructFieldNotFound(yyj4230-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52268,38 +52879,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4192 := z.EncBinary() - _ = yym4192 + yym4235 := z.EncBinary() + _ = yym4235 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4193 := !z.EncBinary() - yy2arr4193 := z.EncBasicHandle().StructToArray - var yyq4193 [4]bool - _, _, _ = yysep4193, yyq4193, yy2arr4193 - const yyr4193 bool = false - yyq4193[0] = x.Kind != "" - yyq4193[1] = x.APIVersion != "" - yyq4193[2] = true - yyq4193[3] = len(x.Conditions) != 0 - var yynn4193 int - if yyr4193 || yy2arr4193 { + yysep4236 := !z.EncBinary() + yy2arr4236 := z.EncBasicHandle().StructToArray + var yyq4236 [4]bool + _, _, _ = yysep4236, yyq4236, yy2arr4236 + const yyr4236 bool = false + yyq4236[0] = x.Kind != "" + yyq4236[1] = x.APIVersion != "" + yyq4236[2] = true + yyq4236[3] = len(x.Conditions) != 0 + var yynn4236 int + if yyr4236 || yy2arr4236 { r.EncodeArrayStart(4) } else { - yynn4193 = 0 - for _, b := range yyq4193 { + yynn4236 = 0 + for _, b := range yyq4236 { if b { - yynn4193++ + yynn4236++ } } - r.EncodeMapStart(yynn4193) - yynn4193 = 0 + r.EncodeMapStart(yynn4236) + yynn4236 = 0 } - if yyr4193 || yy2arr4193 { + if yyr4236 || yy2arr4236 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4193[0] { - yym4195 := z.EncBinary() - _ = yym4195 + if yyq4236[0] { + yym4238 := z.EncBinary() + _ = yym4238 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52308,23 +52919,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4193[0] { + if yyq4236[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4196 := z.EncBinary() - _ = yym4196 + yym4239 := z.EncBinary() + _ = yym4239 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4193 || yy2arr4193 { + if yyr4236 || yy2arr4236 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4193[1] { - yym4198 := z.EncBinary() - _ = yym4198 + if yyq4236[1] { + yym4241 := z.EncBinary() + _ = yym4241 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52333,43 +52944,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4193[1] { + if yyq4236[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4199 := z.EncBinary() - _ = yym4199 + yym4242 := z.EncBinary() + _ = yym4242 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4193 || yy2arr4193 { + if yyr4236 || yy2arr4236 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4193[2] { - yy4201 := &x.ObjectMeta - yy4201.CodecEncodeSelf(e) + if yyq4236[2] { + yy4244 := &x.ObjectMeta + yy4244.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4193[2] { + if yyq4236[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4202 := &x.ObjectMeta - yy4202.CodecEncodeSelf(e) + yy4245 := &x.ObjectMeta + yy4245.CodecEncodeSelf(e) } } - if yyr4193 || yy2arr4193 { + if yyr4236 || yy2arr4236 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4193[3] { + if yyq4236[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4204 := z.EncBinary() - _ = yym4204 + yym4247 := z.EncBinary() + _ = yym4247 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52379,15 +52990,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4193[3] { + if yyq4236[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4205 := z.EncBinary() - _ = yym4205 + yym4248 := z.EncBinary() + _ = yym4248 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52395,7 +53006,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4193 || yy2arr4193 { + if yyr4236 || yy2arr4236 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52408,25 +53019,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4206 := z.DecBinary() - _ = yym4206 + yym4249 := z.DecBinary() + _ = yym4249 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4207 := r.ContainerType() - if yyct4207 == codecSelferValueTypeMap1234 { - yyl4207 := r.ReadMapStart() - if yyl4207 == 0 { + yyct4250 := r.ContainerType() + if yyct4250 == codecSelferValueTypeMap1234 { + yyl4250 := r.ReadMapStart() + if yyl4250 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4207, d) + x.codecDecodeSelfFromMap(yyl4250, d) } - } else if yyct4207 == codecSelferValueTypeArray1234 { - yyl4207 := r.ReadArrayStart() - if yyl4207 == 0 { + } else if yyct4250 == codecSelferValueTypeArray1234 { + yyl4250 := r.ReadArrayStart() + if yyl4250 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4207, d) + x.codecDecodeSelfFromArray(yyl4250, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52438,12 +53049,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4208Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4208Slc - var yyhl4208 bool = l >= 0 - for yyj4208 := 0; ; yyj4208++ { - if yyhl4208 { - if yyj4208 >= l { + var yys4251Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4251Slc + var yyhl4251 bool = l >= 0 + for yyj4251 := 0; ; yyj4251++ { + if yyhl4251 { + if yyj4251 >= l { break } } else { @@ -52452,10 +53063,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4208Slc = r.DecodeBytes(yys4208Slc, true, true) - yys4208 := string(yys4208Slc) + yys4251Slc = r.DecodeBytes(yys4251Slc, true, true) + yys4251 := string(yys4251Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4208 { + switch yys4251 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52472,25 +53083,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4211 := &x.ObjectMeta - yyv4211.CodecDecodeSelf(d) + yyv4254 := &x.ObjectMeta + yyv4254.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4212 := &x.Conditions - yym4213 := z.DecBinary() - _ = yym4213 + yyv4255 := &x.Conditions + yym4256 := z.DecBinary() + _ = yym4256 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4212), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4255), d) } } default: - z.DecStructFieldNotFound(-1, yys4208) - } // end switch yys4208 - } // end for yyj4208 + z.DecStructFieldNotFound(-1, yys4251) + } // end switch yys4251 + } // end for yyj4251 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52498,16 +53109,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4214 int - var yyb4214 bool - var yyhl4214 bool = l >= 0 - yyj4214++ - if yyhl4214 { - yyb4214 = yyj4214 > l + var yyj4257 int + var yyb4257 bool + var yyhl4257 bool = l >= 0 + yyj4257++ + if yyhl4257 { + yyb4257 = yyj4257 > l } else { - yyb4214 = r.CheckBreak() + yyb4257 = r.CheckBreak() } - if yyb4214 { + if yyb4257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52517,13 +53128,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4214++ - if yyhl4214 { - yyb4214 = yyj4214 > l + yyj4257++ + if yyhl4257 { + yyb4257 = yyj4257 > l } else { - yyb4214 = r.CheckBreak() + yyb4257 = r.CheckBreak() } - if yyb4214 { + if yyb4257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52533,13 +53144,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4214++ - if yyhl4214 { - yyb4214 = yyj4214 > l + yyj4257++ + if yyhl4257 { + yyb4257 = yyj4257 > l } else { - yyb4214 = r.CheckBreak() + yyb4257 = r.CheckBreak() } - if yyb4214 { + if yyb4257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52547,16 +53158,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4217 := &x.ObjectMeta - yyv4217.CodecDecodeSelf(d) + yyv4260 := &x.ObjectMeta + yyv4260.CodecDecodeSelf(d) } - yyj4214++ - if yyhl4214 { - yyb4214 = yyj4214 > l + yyj4257++ + if yyhl4257 { + yyb4257 = yyj4257 > l } else { - yyb4214 = r.CheckBreak() + yyb4257 = r.CheckBreak() } - if yyb4214 { + if yyb4257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52564,26 +53175,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4218 := &x.Conditions - yym4219 := z.DecBinary() - _ = yym4219 + yyv4261 := &x.Conditions + yym4262 := z.DecBinary() + _ = yym4262 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4218), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4261), d) } } for { - yyj4214++ - if yyhl4214 { - yyb4214 = yyj4214 > l + yyj4257++ + if yyhl4257 { + yyb4257 = yyj4257 > l } else { - yyb4214 = r.CheckBreak() + yyb4257 = r.CheckBreak() } - if yyb4214 { + if yyb4257 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4214-1, "") + z.DecStructFieldNotFound(yyj4257-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52595,37 +53206,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4220 := z.EncBinary() - _ = yym4220 + yym4263 := z.EncBinary() + _ = yym4263 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4221 := !z.EncBinary() - yy2arr4221 := z.EncBasicHandle().StructToArray - var yyq4221 [4]bool - _, _, _ = yysep4221, yyq4221, yy2arr4221 - const yyr4221 bool = false - yyq4221[0] = x.Kind != "" - yyq4221[1] = x.APIVersion != "" - yyq4221[2] = true - var yynn4221 int - if yyr4221 || yy2arr4221 { + yysep4264 := !z.EncBinary() + yy2arr4264 := z.EncBasicHandle().StructToArray + var yyq4264 [4]bool + _, _, _ = yysep4264, yyq4264, yy2arr4264 + const yyr4264 bool = false + yyq4264[0] = x.Kind != "" + yyq4264[1] = x.APIVersion != "" + yyq4264[2] = true + var yynn4264 int + if yyr4264 || yy2arr4264 { r.EncodeArrayStart(4) } else { - yynn4221 = 1 - for _, b := range yyq4221 { + yynn4264 = 1 + for _, b := range yyq4264 { if b { - yynn4221++ + yynn4264++ } } - r.EncodeMapStart(yynn4221) - yynn4221 = 0 + r.EncodeMapStart(yynn4264) + yynn4264 = 0 } - if yyr4221 || yy2arr4221 { + if yyr4264 || yy2arr4264 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4221[0] { - yym4223 := z.EncBinary() - _ = yym4223 + if yyq4264[0] { + yym4266 := z.EncBinary() + _ = yym4266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52634,23 +53245,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4221[0] { + if yyq4264[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4224 := z.EncBinary() - _ = yym4224 + yym4267 := z.EncBinary() + _ = yym4267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4221 || yy2arr4221 { + if yyr4264 || yy2arr4264 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4221[1] { - yym4226 := z.EncBinary() - _ = yym4226 + if yyq4264[1] { + yym4269 := z.EncBinary() + _ = yym4269 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52659,54 +53270,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4221[1] { + if yyq4264[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4227 := z.EncBinary() - _ = yym4227 + yym4270 := z.EncBinary() + _ = yym4270 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4221 || yy2arr4221 { + if yyr4264 || yy2arr4264 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4221[2] { - yy4229 := &x.ListMeta - yym4230 := z.EncBinary() - _ = yym4230 + if yyq4264[2] { + yy4272 := &x.ListMeta + yym4273 := z.EncBinary() + _ = yym4273 if false { - } else if z.HasExtensions() && z.EncExt(yy4229) { + } else if z.HasExtensions() && z.EncExt(yy4272) { } else { - z.EncFallback(yy4229) + z.EncFallback(yy4272) } } else { r.EncodeNil() } } else { - if yyq4221[2] { + if yyq4264[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4231 := &x.ListMeta - yym4232 := z.EncBinary() - _ = yym4232 + yy4274 := &x.ListMeta + yym4275 := z.EncBinary() + _ = yym4275 if false { - } else if z.HasExtensions() && z.EncExt(yy4231) { + } else if z.HasExtensions() && z.EncExt(yy4274) { } else { - z.EncFallback(yy4231) + z.EncFallback(yy4274) } } } - if yyr4221 || yy2arr4221 { + if yyr4264 || yy2arr4264 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4234 := z.EncBinary() - _ = yym4234 + yym4277 := z.EncBinary() + _ = yym4277 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -52719,15 +53330,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4235 := z.EncBinary() - _ = yym4235 + yym4278 := z.EncBinary() + _ = yym4278 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4221 || yy2arr4221 { + if yyr4264 || yy2arr4264 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52740,25 +53351,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4236 := z.DecBinary() - _ = yym4236 + yym4279 := z.DecBinary() + _ = yym4279 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4237 := r.ContainerType() - if yyct4237 == codecSelferValueTypeMap1234 { - yyl4237 := r.ReadMapStart() - if yyl4237 == 0 { + yyct4280 := r.ContainerType() + if yyct4280 == codecSelferValueTypeMap1234 { + yyl4280 := r.ReadMapStart() + if yyl4280 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4237, d) + x.codecDecodeSelfFromMap(yyl4280, d) } - } else if yyct4237 == codecSelferValueTypeArray1234 { - yyl4237 := r.ReadArrayStart() - if yyl4237 == 0 { + } else if yyct4280 == codecSelferValueTypeArray1234 { + yyl4280 := r.ReadArrayStart() + if yyl4280 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4237, d) + x.codecDecodeSelfFromArray(yyl4280, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52770,12 +53381,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4238Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4238Slc - var yyhl4238 bool = l >= 0 - for yyj4238 := 0; ; yyj4238++ { - if yyhl4238 { - if yyj4238 >= l { + var yys4281Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4281Slc + var yyhl4281 bool = l >= 0 + for yyj4281 := 0; ; yyj4281++ { + if yyhl4281 { + if yyj4281 >= l { break } } else { @@ -52784,10 +53395,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4238Slc = r.DecodeBytes(yys4238Slc, true, true) - yys4238 := string(yys4238Slc) + yys4281Slc = r.DecodeBytes(yys4281Slc, true, true) + yys4281 := string(yys4281Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4238 { + switch yys4281 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52804,31 +53415,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4241 := &x.ListMeta - yym4242 := z.DecBinary() - _ = yym4242 + yyv4284 := &x.ListMeta + yym4285 := z.DecBinary() + _ = yym4285 if false { - } else if z.HasExtensions() && z.DecExt(yyv4241) { + } else if z.HasExtensions() && z.DecExt(yyv4284) { } else { - z.DecFallback(yyv4241, false) + z.DecFallback(yyv4284, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4243 := &x.Items - yym4244 := z.DecBinary() - _ = yym4244 + yyv4286 := &x.Items + yym4287 := z.DecBinary() + _ = yym4287 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4243), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4286), d) } } default: - z.DecStructFieldNotFound(-1, yys4238) - } // end switch yys4238 - } // end for yyj4238 + z.DecStructFieldNotFound(-1, yys4281) + } // end switch yys4281 + } // end for yyj4281 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52836,16 +53447,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4245 int - var yyb4245 bool - var yyhl4245 bool = l >= 0 - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l + var yyj4288 int + var yyb4288 bool + var yyhl4288 bool = l >= 0 + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4245 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4245 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52855,13 +53466,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4245 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4245 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52871,13 +53482,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4245 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4245 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52885,22 +53496,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4248 := &x.ListMeta - yym4249 := z.DecBinary() - _ = yym4249 + yyv4291 := &x.ListMeta + yym4292 := z.DecBinary() + _ = yym4292 if false { - } else if z.HasExtensions() && z.DecExt(yyv4248) { + } else if z.HasExtensions() && z.DecExt(yyv4291) { } else { - z.DecFallback(yyv4248, false) + z.DecFallback(yyv4291, false) } } - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4245 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4245 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52908,26 +53519,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4250 := &x.Items - yym4251 := z.DecBinary() - _ = yym4251 + yyv4293 := &x.Items + yym4294 := z.DecBinary() + _ = yym4294 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4250), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4293), d) } } for { - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4245 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4245 { + if yyb4288 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4245-1, "") + z.DecStructFieldNotFound(yyj4288-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52939,39 +53550,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4252 := z.EncBinary() - _ = yym4252 + yym4295 := z.EncBinary() + _ = yym4295 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4253 := !z.EncBinary() - yy2arr4253 := z.EncBasicHandle().StructToArray - var yyq4253 [2]bool - _, _, _ = yysep4253, yyq4253, yy2arr4253 - const yyr4253 bool = false - yyq4253[0] = len(x.Items) != 0 - yyq4253[1] = x.DefaultMode != nil - var yynn4253 int - if yyr4253 || yy2arr4253 { + yysep4296 := !z.EncBinary() + yy2arr4296 := z.EncBasicHandle().StructToArray + var yyq4296 [2]bool + _, _, _ = yysep4296, yyq4296, yy2arr4296 + const yyr4296 bool = false + yyq4296[0] = len(x.Items) != 0 + yyq4296[1] = x.DefaultMode != nil + var yynn4296 int + if yyr4296 || yy2arr4296 { r.EncodeArrayStart(2) } else { - yynn4253 = 0 - for _, b := range yyq4253 { + yynn4296 = 0 + for _, b := range yyq4296 { if b { - yynn4253++ + yynn4296++ } } - r.EncodeMapStart(yynn4253) - yynn4253 = 0 + r.EncodeMapStart(yynn4296) + yynn4296 = 0 } - if yyr4253 || yy2arr4253 { + if yyr4296 || yy2arr4296 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4253[0] { + if yyq4296[0] { if x.Items == nil { r.EncodeNil() } else { - yym4255 := z.EncBinary() - _ = yym4255 + yym4298 := z.EncBinary() + _ = yym4298 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -52981,15 +53592,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4253[0] { + if yyq4296[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4256 := z.EncBinary() - _ = yym4256 + yym4299 := z.EncBinary() + _ = yym4299 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -52997,42 +53608,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4253 || yy2arr4253 { + if yyr4296 || yy2arr4296 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4253[1] { + if yyq4296[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy4258 := *x.DefaultMode - yym4259 := z.EncBinary() - _ = yym4259 + yy4301 := *x.DefaultMode + yym4302 := z.EncBinary() + _ = yym4302 if false { } else { - r.EncodeInt(int64(yy4258)) + r.EncodeInt(int64(yy4301)) } } } else { r.EncodeNil() } } else { - if yyq4253[1] { + if yyq4296[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy4260 := *x.DefaultMode - yym4261 := z.EncBinary() - _ = yym4261 + yy4303 := *x.DefaultMode + yym4304 := z.EncBinary() + _ = yym4304 if false { } else { - r.EncodeInt(int64(yy4260)) + r.EncodeInt(int64(yy4303)) } } } } - if yyr4253 || yy2arr4253 { + if yyr4296 || yy2arr4296 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53045,25 +53656,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4262 := z.DecBinary() - _ = yym4262 + yym4305 := z.DecBinary() + _ = yym4305 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4263 := r.ContainerType() - if yyct4263 == codecSelferValueTypeMap1234 { - yyl4263 := r.ReadMapStart() - if yyl4263 == 0 { + yyct4306 := r.ContainerType() + if yyct4306 == codecSelferValueTypeMap1234 { + yyl4306 := r.ReadMapStart() + if yyl4306 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4263, d) + x.codecDecodeSelfFromMap(yyl4306, d) } - } else if yyct4263 == codecSelferValueTypeArray1234 { - yyl4263 := r.ReadArrayStart() - if yyl4263 == 0 { + } else if yyct4306 == codecSelferValueTypeArray1234 { + yyl4306 := r.ReadArrayStart() + if yyl4306 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4263, d) + x.codecDecodeSelfFromArray(yyl4306, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53075,12 +53686,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4264Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4264Slc - var yyhl4264 bool = l >= 0 - for yyj4264 := 0; ; yyj4264++ { - if yyhl4264 { - if yyj4264 >= l { + var yys4307Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4307Slc + var yyhl4307 bool = l >= 0 + for yyj4307 := 0; ; yyj4307++ { + if yyhl4307 { + if yyj4307 >= l { break } } else { @@ -53089,20 +53700,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4264Slc = r.DecodeBytes(yys4264Slc, true, true) - yys4264 := string(yys4264Slc) + yys4307Slc = r.DecodeBytes(yys4307Slc, true, true) + yys4307 := string(yys4307Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4264 { + switch yys4307 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4265 := &x.Items - yym4266 := z.DecBinary() - _ = yym4266 + yyv4308 := &x.Items + yym4309 := z.DecBinary() + _ = yym4309 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4265), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4308), d) } } case "defaultMode": @@ -53114,17 +53725,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4268 := z.DecBinary() - _ = yym4268 + yym4311 := z.DecBinary() + _ = yym4311 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4264) - } // end switch yys4264 - } // end for yyj4264 + z.DecStructFieldNotFound(-1, yys4307) + } // end switch yys4307 + } // end for yyj4307 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53132,16 +53743,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4269 int - var yyb4269 bool - var yyhl4269 bool = l >= 0 - yyj4269++ - if yyhl4269 { - yyb4269 = yyj4269 > l + var yyj4312 int + var yyb4312 bool + var yyhl4312 bool = l >= 0 + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4269 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4269 { + if yyb4312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53149,21 +53760,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4270 := &x.Items - yym4271 := z.DecBinary() - _ = yym4271 + yyv4313 := &x.Items + yym4314 := z.DecBinary() + _ = yym4314 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4270), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4313), d) } } - yyj4269++ - if yyhl4269 { - yyb4269 = yyj4269 > l + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4269 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4269 { + if yyb4312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53176,25 +53787,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4273 := z.DecBinary() - _ = yym4273 + yym4316 := z.DecBinary() + _ = yym4316 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4269++ - if yyhl4269 { - yyb4269 = yyj4269 > l + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4269 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4269 { + if yyb4312 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4269-1, "") + z.DecStructFieldNotFound(yyj4312-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53206,36 +53817,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4274 := z.EncBinary() - _ = yym4274 + yym4317 := z.EncBinary() + _ = yym4317 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4275 := !z.EncBinary() - yy2arr4275 := z.EncBasicHandle().StructToArray - var yyq4275 [4]bool - _, _, _ = yysep4275, yyq4275, yy2arr4275 - const yyr4275 bool = false - yyq4275[1] = x.FieldRef != nil - yyq4275[2] = x.ResourceFieldRef != nil - yyq4275[3] = x.Mode != nil - var yynn4275 int - if yyr4275 || yy2arr4275 { + yysep4318 := !z.EncBinary() + yy2arr4318 := z.EncBasicHandle().StructToArray + var yyq4318 [4]bool + _, _, _ = yysep4318, yyq4318, yy2arr4318 + const yyr4318 bool = false + yyq4318[1] = x.FieldRef != nil + yyq4318[2] = x.ResourceFieldRef != nil + yyq4318[3] = x.Mode != nil + var yynn4318 int + if yyr4318 || yy2arr4318 { r.EncodeArrayStart(4) } else { - yynn4275 = 1 - for _, b := range yyq4275 { + yynn4318 = 1 + for _, b := range yyq4318 { if b { - yynn4275++ + yynn4318++ } } - r.EncodeMapStart(yynn4275) - yynn4275 = 0 + r.EncodeMapStart(yynn4318) + yynn4318 = 0 } - if yyr4275 || yy2arr4275 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4277 := z.EncBinary() - _ = yym4277 + yym4320 := z.EncBinary() + _ = yym4320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -53244,16 +53855,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4278 := z.EncBinary() - _ = yym4278 + yym4321 := z.EncBinary() + _ = yym4321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4275 || yy2arr4275 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4275[1] { + if yyq4318[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -53263,7 +53874,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4275[1] { + if yyq4318[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53274,9 +53885,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4275 || yy2arr4275 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4275[2] { + if yyq4318[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -53286,7 +53897,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4275[2] { + if yyq4318[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53297,42 +53908,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4275 || yy2arr4275 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4275[3] { + if yyq4318[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4282 := *x.Mode - yym4283 := z.EncBinary() - _ = yym4283 + yy4325 := *x.Mode + yym4326 := z.EncBinary() + _ = yym4326 if false { } else { - r.EncodeInt(int64(yy4282)) + r.EncodeInt(int64(yy4325)) } } } else { r.EncodeNil() } } else { - if yyq4275[3] { + if yyq4318[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4284 := *x.Mode - yym4285 := z.EncBinary() - _ = yym4285 + yy4327 := *x.Mode + yym4328 := z.EncBinary() + _ = yym4328 if false { } else { - r.EncodeInt(int64(yy4284)) + r.EncodeInt(int64(yy4327)) } } } } - if yyr4275 || yy2arr4275 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53345,25 +53956,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4286 := z.DecBinary() - _ = yym4286 + yym4329 := z.DecBinary() + _ = yym4329 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4287 := r.ContainerType() - if yyct4287 == codecSelferValueTypeMap1234 { - yyl4287 := r.ReadMapStart() - if yyl4287 == 0 { + yyct4330 := r.ContainerType() + if yyct4330 == codecSelferValueTypeMap1234 { + yyl4330 := r.ReadMapStart() + if yyl4330 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4287, d) + x.codecDecodeSelfFromMap(yyl4330, d) } - } else if yyct4287 == codecSelferValueTypeArray1234 { - yyl4287 := r.ReadArrayStart() - if yyl4287 == 0 { + } else if yyct4330 == codecSelferValueTypeArray1234 { + yyl4330 := r.ReadArrayStart() + if yyl4330 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4287, d) + x.codecDecodeSelfFromArray(yyl4330, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53375,12 +53986,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4288Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4288Slc - var yyhl4288 bool = l >= 0 - for yyj4288 := 0; ; yyj4288++ { - if yyhl4288 { - if yyj4288 >= l { + var yys4331Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4331Slc + var yyhl4331 bool = l >= 0 + for yyj4331 := 0; ; yyj4331++ { + if yyhl4331 { + if yyj4331 >= l { break } } else { @@ -53389,10 +54000,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4288Slc = r.DecodeBytes(yys4288Slc, true, true) - yys4288 := string(yys4288Slc) + yys4331Slc = r.DecodeBytes(yys4331Slc, true, true) + yys4331 := string(yys4331Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4288 { + switch yys4331 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -53430,17 +54041,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4293 := z.DecBinary() - _ = yym4293 + yym4336 := z.DecBinary() + _ = yym4336 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4288) - } // end switch yys4288 - } // end for yyj4288 + z.DecStructFieldNotFound(-1, yys4331) + } // end switch yys4331 + } // end for yyj4331 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53448,16 +54059,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4294 int - var yyb4294 bool - var yyhl4294 bool = l >= 0 - yyj4294++ - if yyhl4294 { - yyb4294 = yyj4294 > l + var yyj4337 int + var yyb4337 bool + var yyhl4337 bool = l >= 0 + yyj4337++ + if yyhl4337 { + yyb4337 = yyj4337 > l } else { - yyb4294 = r.CheckBreak() + yyb4337 = r.CheckBreak() } - if yyb4294 { + if yyb4337 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53467,13 +54078,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4294++ - if yyhl4294 { - yyb4294 = yyj4294 > l + yyj4337++ + if yyhl4337 { + yyb4337 = yyj4337 > l } else { - yyb4294 = r.CheckBreak() + yyb4337 = r.CheckBreak() } - if yyb4294 { + if yyb4337 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53488,13 +54099,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4294++ - if yyhl4294 { - yyb4294 = yyj4294 > l + yyj4337++ + if yyhl4337 { + yyb4337 = yyj4337 > l } else { - yyb4294 = r.CheckBreak() + yyb4337 = r.CheckBreak() } - if yyb4294 { + if yyb4337 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53509,13 +54120,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4294++ - if yyhl4294 { - yyb4294 = yyj4294 > l + yyj4337++ + if yyhl4337 { + yyb4337 = yyj4337 > l } else { - yyb4294 = r.CheckBreak() + yyb4337 = r.CheckBreak() } - if yyb4294 { + if yyb4337 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53528,25 +54139,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4299 := z.DecBinary() - _ = yym4299 + yym4342 := z.DecBinary() + _ = yym4342 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4294++ - if yyhl4294 { - yyb4294 = yyj4294 > l + yyj4337++ + if yyhl4337 { + yyb4337 = yyj4337 > l } else { - yyb4294 = r.CheckBreak() + yyb4337 = r.CheckBreak() } - if yyb4294 { + if yyb4337 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4294-1, "") + z.DecStructFieldNotFound(yyj4337-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53558,38 +54169,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4300 := z.EncBinary() - _ = yym4300 + yym4343 := z.EncBinary() + _ = yym4343 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4301 := !z.EncBinary() - yy2arr4301 := z.EncBasicHandle().StructToArray - var yyq4301 [6]bool - _, _, _ = yysep4301, yyq4301, yy2arr4301 - const yyr4301 bool = false - yyq4301[0] = x.Capabilities != nil - yyq4301[1] = x.Privileged != nil - yyq4301[2] = x.SELinuxOptions != nil - yyq4301[3] = x.RunAsUser != nil - yyq4301[4] = x.RunAsNonRoot != nil - yyq4301[5] = x.ReadOnlyRootFilesystem != nil - var yynn4301 int - if yyr4301 || yy2arr4301 { + yysep4344 := !z.EncBinary() + yy2arr4344 := z.EncBasicHandle().StructToArray + var yyq4344 [6]bool + _, _, _ = yysep4344, yyq4344, yy2arr4344 + const yyr4344 bool = false + yyq4344[0] = x.Capabilities != nil + yyq4344[1] = x.Privileged != nil + yyq4344[2] = x.SELinuxOptions != nil + yyq4344[3] = x.RunAsUser != nil + yyq4344[4] = x.RunAsNonRoot != nil + yyq4344[5] = x.ReadOnlyRootFilesystem != nil + var yynn4344 int + if yyr4344 || yy2arr4344 { r.EncodeArrayStart(6) } else { - yynn4301 = 0 - for _, b := range yyq4301 { + yynn4344 = 0 + for _, b := range yyq4344 { if b { - yynn4301++ + yynn4344++ } } - r.EncodeMapStart(yynn4301) - yynn4301 = 0 + r.EncodeMapStart(yynn4344) + yynn4344 = 0 } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4301[0] { + if yyq4344[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -53599,7 +54210,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4301[0] { + if yyq4344[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53610,44 +54221,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4301[1] { + if yyq4344[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4304 := *x.Privileged - yym4305 := z.EncBinary() - _ = yym4305 + yy4347 := *x.Privileged + yym4348 := z.EncBinary() + _ = yym4348 if false { } else { - r.EncodeBool(bool(yy4304)) + r.EncodeBool(bool(yy4347)) } } } else { r.EncodeNil() } } else { - if yyq4301[1] { + if yyq4344[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4306 := *x.Privileged - yym4307 := z.EncBinary() - _ = yym4307 + yy4349 := *x.Privileged + yym4350 := z.EncBinary() + _ = yym4350 if false { } else { - r.EncodeBool(bool(yy4306)) + r.EncodeBool(bool(yy4349)) } } } } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4301[2] { + if yyq4344[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -53657,7 +54268,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4301[2] { + if yyq4344[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53668,112 +54279,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4301[3] { + if yyq4344[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4310 := *x.RunAsUser - yym4311 := z.EncBinary() - _ = yym4311 + yy4353 := *x.RunAsUser + yym4354 := z.EncBinary() + _ = yym4354 if false { } else { - r.EncodeInt(int64(yy4310)) + r.EncodeInt(int64(yy4353)) } } } else { r.EncodeNil() } } else { - if yyq4301[3] { + if yyq4344[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4312 := *x.RunAsUser - yym4313 := z.EncBinary() - _ = yym4313 + yy4355 := *x.RunAsUser + yym4356 := z.EncBinary() + _ = yym4356 if false { } else { - r.EncodeInt(int64(yy4312)) + r.EncodeInt(int64(yy4355)) } } } } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4301[4] { + if yyq4344[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4315 := *x.RunAsNonRoot - yym4316 := z.EncBinary() - _ = yym4316 + yy4358 := *x.RunAsNonRoot + yym4359 := z.EncBinary() + _ = yym4359 if false { } else { - r.EncodeBool(bool(yy4315)) + r.EncodeBool(bool(yy4358)) } } } else { r.EncodeNil() } } else { - if yyq4301[4] { + if yyq4344[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4317 := *x.RunAsNonRoot - yym4318 := z.EncBinary() - _ = yym4318 + yy4360 := *x.RunAsNonRoot + yym4361 := z.EncBinary() + _ = yym4361 if false { } else { - r.EncodeBool(bool(yy4317)) + r.EncodeBool(bool(yy4360)) } } } } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4301[5] { + if yyq4344[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4320 := *x.ReadOnlyRootFilesystem - yym4321 := z.EncBinary() - _ = yym4321 + yy4363 := *x.ReadOnlyRootFilesystem + yym4364 := z.EncBinary() + _ = yym4364 if false { } else { - r.EncodeBool(bool(yy4320)) + r.EncodeBool(bool(yy4363)) } } } else { r.EncodeNil() } } else { - if yyq4301[5] { + if yyq4344[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4322 := *x.ReadOnlyRootFilesystem - yym4323 := z.EncBinary() - _ = yym4323 + yy4365 := *x.ReadOnlyRootFilesystem + yym4366 := z.EncBinary() + _ = yym4366 if false { } else { - r.EncodeBool(bool(yy4322)) + r.EncodeBool(bool(yy4365)) } } } } - if yyr4301 || yy2arr4301 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53786,25 +54397,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4324 := z.DecBinary() - _ = yym4324 + yym4367 := z.DecBinary() + _ = yym4367 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4325 := r.ContainerType() - if yyct4325 == codecSelferValueTypeMap1234 { - yyl4325 := r.ReadMapStart() - if yyl4325 == 0 { + yyct4368 := r.ContainerType() + if yyct4368 == codecSelferValueTypeMap1234 { + yyl4368 := r.ReadMapStart() + if yyl4368 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4325, d) + x.codecDecodeSelfFromMap(yyl4368, d) } - } else if yyct4325 == codecSelferValueTypeArray1234 { - yyl4325 := r.ReadArrayStart() - if yyl4325 == 0 { + } else if yyct4368 == codecSelferValueTypeArray1234 { + yyl4368 := r.ReadArrayStart() + if yyl4368 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4325, d) + x.codecDecodeSelfFromArray(yyl4368, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53816,12 +54427,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4326Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4326Slc - var yyhl4326 bool = l >= 0 - for yyj4326 := 0; ; yyj4326++ { - if yyhl4326 { - if yyj4326 >= l { + var yys4369Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4369Slc + var yyhl4369 bool = l >= 0 + for yyj4369 := 0; ; yyj4369++ { + if yyhl4369 { + if yyj4369 >= l { break } } else { @@ -53830,10 +54441,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4326Slc = r.DecodeBytes(yys4326Slc, true, true) - yys4326 := string(yys4326Slc) + yys4369Slc = r.DecodeBytes(yys4369Slc, true, true) + yys4369 := string(yys4369Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4326 { + switch yys4369 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -53854,8 +54465,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4329 := z.DecBinary() - _ = yym4329 + yym4372 := z.DecBinary() + _ = yym4372 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -53881,8 +54492,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4332 := z.DecBinary() - _ = yym4332 + yym4375 := z.DecBinary() + _ = yym4375 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -53897,8 +54508,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4334 := z.DecBinary() - _ = yym4334 + yym4377 := z.DecBinary() + _ = yym4377 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -53913,17 +54524,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4336 := z.DecBinary() - _ = yym4336 + yym4379 := z.DecBinary() + _ = yym4379 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4326) - } // end switch yys4326 - } // end for yyj4326 + z.DecStructFieldNotFound(-1, yys4369) + } // end switch yys4369 + } // end for yyj4369 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53931,16 +54542,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4337 int - var yyb4337 bool - var yyhl4337 bool = l >= 0 - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + var yyj4380 int + var yyb4380 bool + var yyhl4380 bool = l >= 0 + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53955,13 +54566,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53974,20 +54585,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4340 := z.DecBinary() - _ = yym4340 + yym4383 := z.DecBinary() + _ = yym4383 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54002,13 +54613,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54021,20 +54632,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4343 := z.DecBinary() - _ = yym4343 + yym4386 := z.DecBinary() + _ = yym4386 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54047,20 +54658,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4345 := z.DecBinary() - _ = yym4345 + yym4388 := z.DecBinary() + _ = yym4388 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54073,25 +54684,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4347 := z.DecBinary() - _ = yym4347 + yym4390 := z.DecBinary() + _ = yym4390 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4337++ - if yyhl4337 { - yyb4337 = yyj4337 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4337 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4337 { + if yyb4380 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4337-1, "") + z.DecStructFieldNotFound(yyj4380-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54103,38 +54714,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4348 := z.EncBinary() - _ = yym4348 + yym4391 := z.EncBinary() + _ = yym4391 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4349 := !z.EncBinary() - yy2arr4349 := z.EncBasicHandle().StructToArray - var yyq4349 [4]bool - _, _, _ = yysep4349, yyq4349, yy2arr4349 - const yyr4349 bool = false - yyq4349[0] = x.User != "" - yyq4349[1] = x.Role != "" - yyq4349[2] = x.Type != "" - yyq4349[3] = x.Level != "" - var yynn4349 int - if yyr4349 || yy2arr4349 { + yysep4392 := !z.EncBinary() + yy2arr4392 := z.EncBasicHandle().StructToArray + var yyq4392 [4]bool + _, _, _ = yysep4392, yyq4392, yy2arr4392 + const yyr4392 bool = false + yyq4392[0] = x.User != "" + yyq4392[1] = x.Role != "" + yyq4392[2] = x.Type != "" + yyq4392[3] = x.Level != "" + var yynn4392 int + if yyr4392 || yy2arr4392 { r.EncodeArrayStart(4) } else { - yynn4349 = 0 - for _, b := range yyq4349 { + yynn4392 = 0 + for _, b := range yyq4392 { if b { - yynn4349++ + yynn4392++ } } - r.EncodeMapStart(yynn4349) - yynn4349 = 0 + r.EncodeMapStart(yynn4392) + yynn4392 = 0 } - if yyr4349 || yy2arr4349 { + if yyr4392 || yy2arr4392 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4349[0] { - yym4351 := z.EncBinary() - _ = yym4351 + if yyq4392[0] { + yym4394 := z.EncBinary() + _ = yym4394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -54143,23 +54754,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4349[0] { + if yyq4392[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4352 := z.EncBinary() - _ = yym4352 + yym4395 := z.EncBinary() + _ = yym4395 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4349 || yy2arr4349 { + if yyr4392 || yy2arr4392 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4349[1] { - yym4354 := z.EncBinary() - _ = yym4354 + if yyq4392[1] { + yym4397 := z.EncBinary() + _ = yym4397 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -54168,23 +54779,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4349[1] { + if yyq4392[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4355 := z.EncBinary() - _ = yym4355 + yym4398 := z.EncBinary() + _ = yym4398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4349 || yy2arr4349 { + if yyr4392 || yy2arr4392 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4349[2] { - yym4357 := z.EncBinary() - _ = yym4357 + if yyq4392[2] { + yym4400 := z.EncBinary() + _ = yym4400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -54193,23 +54804,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4349[2] { + if yyq4392[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4358 := z.EncBinary() - _ = yym4358 + yym4401 := z.EncBinary() + _ = yym4401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4349 || yy2arr4349 { + if yyr4392 || yy2arr4392 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4349[3] { - yym4360 := z.EncBinary() - _ = yym4360 + if yyq4392[3] { + yym4403 := z.EncBinary() + _ = yym4403 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -54218,19 +54829,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4349[3] { + if yyq4392[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4361 := z.EncBinary() - _ = yym4361 + yym4404 := z.EncBinary() + _ = yym4404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4349 || yy2arr4349 { + if yyr4392 || yy2arr4392 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54243,25 +54854,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4362 := z.DecBinary() - _ = yym4362 + yym4405 := z.DecBinary() + _ = yym4405 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4363 := r.ContainerType() - if yyct4363 == codecSelferValueTypeMap1234 { - yyl4363 := r.ReadMapStart() - if yyl4363 == 0 { + yyct4406 := r.ContainerType() + if yyct4406 == codecSelferValueTypeMap1234 { + yyl4406 := r.ReadMapStart() + if yyl4406 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4363, d) + x.codecDecodeSelfFromMap(yyl4406, d) } - } else if yyct4363 == codecSelferValueTypeArray1234 { - yyl4363 := r.ReadArrayStart() - if yyl4363 == 0 { + } else if yyct4406 == codecSelferValueTypeArray1234 { + yyl4406 := r.ReadArrayStart() + if yyl4406 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4363, d) + x.codecDecodeSelfFromArray(yyl4406, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54273,12 +54884,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4364Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4364Slc - var yyhl4364 bool = l >= 0 - for yyj4364 := 0; ; yyj4364++ { - if yyhl4364 { - if yyj4364 >= l { + var yys4407Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4407Slc + var yyhl4407 bool = l >= 0 + for yyj4407 := 0; ; yyj4407++ { + if yyhl4407 { + if yyj4407 >= l { break } } else { @@ -54287,10 +54898,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4364Slc = r.DecodeBytes(yys4364Slc, true, true) - yys4364 := string(yys4364Slc) + yys4407Slc = r.DecodeBytes(yys4407Slc, true, true) + yys4407 := string(yys4407Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4364 { + switch yys4407 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -54316,9 +54927,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4364) - } // end switch yys4364 - } // end for yyj4364 + z.DecStructFieldNotFound(-1, yys4407) + } // end switch yys4407 + } // end for yyj4407 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54326,16 +54937,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4369 int - var yyb4369 bool - var yyhl4369 bool = l >= 0 - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + var yyj4412 int + var yyb4412 bool + var yyhl4412 bool = l >= 0 + yyj4412++ + if yyhl4412 { + yyb4412 = yyj4412 > l } else { - yyb4369 = r.CheckBreak() + yyb4412 = r.CheckBreak() } - if yyb4369 { + if yyb4412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54345,13 +54956,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4412++ + if yyhl4412 { + yyb4412 = yyj4412 > l } else { - yyb4369 = r.CheckBreak() + yyb4412 = r.CheckBreak() } - if yyb4369 { + if yyb4412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54361,13 +54972,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4412++ + if yyhl4412 { + yyb4412 = yyj4412 > l } else { - yyb4369 = r.CheckBreak() + yyb4412 = r.CheckBreak() } - if yyb4369 { + if yyb4412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54377,13 +54988,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4412++ + if yyhl4412 { + yyb4412 = yyj4412 > l } else { - yyb4369 = r.CheckBreak() + yyb4412 = r.CheckBreak() } - if yyb4369 { + if yyb4412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54394,17 +55005,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4412++ + if yyhl4412 { + yyb4412 = yyj4412 > l } else { - yyb4369 = r.CheckBreak() + yyb4412 = r.CheckBreak() } - if yyb4369 { + if yyb4412 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4369-1, "") + z.DecStructFieldNotFound(yyj4412-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54416,37 +55027,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4374 := z.EncBinary() - _ = yym4374 + yym4417 := z.EncBinary() + _ = yym4417 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4375 := !z.EncBinary() - yy2arr4375 := z.EncBasicHandle().StructToArray - var yyq4375 [5]bool - _, _, _ = yysep4375, yyq4375, yy2arr4375 - const yyr4375 bool = false - yyq4375[0] = x.Kind != "" - yyq4375[1] = x.APIVersion != "" - yyq4375[2] = true - var yynn4375 int - if yyr4375 || yy2arr4375 { + yysep4418 := !z.EncBinary() + yy2arr4418 := z.EncBasicHandle().StructToArray + var yyq4418 [5]bool + _, _, _ = yysep4418, yyq4418, yy2arr4418 + const yyr4418 bool = false + yyq4418[0] = x.Kind != "" + yyq4418[1] = x.APIVersion != "" + yyq4418[2] = true + var yynn4418 int + if yyr4418 || yy2arr4418 { r.EncodeArrayStart(5) } else { - yynn4375 = 2 - for _, b := range yyq4375 { + yynn4418 = 2 + for _, b := range yyq4418 { if b { - yynn4375++ + yynn4418++ } } - r.EncodeMapStart(yynn4375) - yynn4375 = 0 + r.EncodeMapStart(yynn4418) + yynn4418 = 0 } - if yyr4375 || yy2arr4375 { + if yyr4418 || yy2arr4418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[0] { - yym4377 := z.EncBinary() - _ = yym4377 + if yyq4418[0] { + yym4420 := z.EncBinary() + _ = yym4420 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54455,23 +55066,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4375[0] { + if yyq4418[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4378 := z.EncBinary() - _ = yym4378 + yym4421 := z.EncBinary() + _ = yym4421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4375 || yy2arr4375 { + if yyr4418 || yy2arr4418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[1] { - yym4380 := z.EncBinary() - _ = yym4380 + if yyq4418[1] { + yym4423 := z.EncBinary() + _ = yym4423 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54480,39 +55091,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4375[1] { + if yyq4418[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4381 := z.EncBinary() - _ = yym4381 + yym4424 := z.EncBinary() + _ = yym4424 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4375 || yy2arr4375 { + if yyr4418 || yy2arr4418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[2] { - yy4383 := &x.ObjectMeta - yy4383.CodecEncodeSelf(e) + if yyq4418[2] { + yy4426 := &x.ObjectMeta + yy4426.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4375[2] { + if yyq4418[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4384 := &x.ObjectMeta - yy4384.CodecEncodeSelf(e) + yy4427 := &x.ObjectMeta + yy4427.CodecEncodeSelf(e) } } - if yyr4375 || yy2arr4375 { + if yyr4418 || yy2arr4418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4386 := z.EncBinary() - _ = yym4386 + yym4429 := z.EncBinary() + _ = yym4429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -54521,20 +55132,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4387 := z.EncBinary() - _ = yym4387 + yym4430 := z.EncBinary() + _ = yym4430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4375 || yy2arr4375 { + if yyr4418 || yy2arr4418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4389 := z.EncBinary() - _ = yym4389 + yym4432 := z.EncBinary() + _ = yym4432 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -54547,15 +55158,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4390 := z.EncBinary() - _ = yym4390 + yym4433 := z.EncBinary() + _ = yym4433 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4375 || yy2arr4375 { + if yyr4418 || yy2arr4418 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54568,25 +55179,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4391 := z.DecBinary() - _ = yym4391 + yym4434 := z.DecBinary() + _ = yym4434 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4392 := r.ContainerType() - if yyct4392 == codecSelferValueTypeMap1234 { - yyl4392 := r.ReadMapStart() - if yyl4392 == 0 { + yyct4435 := r.ContainerType() + if yyct4435 == codecSelferValueTypeMap1234 { + yyl4435 := r.ReadMapStart() + if yyl4435 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4392, d) + x.codecDecodeSelfFromMap(yyl4435, d) } - } else if yyct4392 == codecSelferValueTypeArray1234 { - yyl4392 := r.ReadArrayStart() - if yyl4392 == 0 { + } else if yyct4435 == codecSelferValueTypeArray1234 { + yyl4435 := r.ReadArrayStart() + if yyl4435 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4392, d) + x.codecDecodeSelfFromArray(yyl4435, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54598,12 +55209,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4393Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4393Slc - var yyhl4393 bool = l >= 0 - for yyj4393 := 0; ; yyj4393++ { - if yyhl4393 { - if yyj4393 >= l { + var yys4436Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4436Slc + var yyhl4436 bool = l >= 0 + for yyj4436 := 0; ; yyj4436++ { + if yyhl4436 { + if yyj4436 >= l { break } } else { @@ -54612,10 +55223,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4393Slc = r.DecodeBytes(yys4393Slc, true, true) - yys4393 := string(yys4393Slc) + yys4436Slc = r.DecodeBytes(yys4436Slc, true, true) + yys4436 := string(yys4436Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4393 { + switch yys4436 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54632,8 +55243,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4396 := &x.ObjectMeta - yyv4396.CodecDecodeSelf(d) + yyv4439 := &x.ObjectMeta + yyv4439.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -54645,18 +55256,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4398 := &x.Data - yym4399 := z.DecBinary() - _ = yym4399 + yyv4441 := &x.Data + yym4442 := z.DecBinary() + _ = yym4442 if false { } else { - *yyv4398 = r.DecodeBytes(*(*[]byte)(yyv4398), false, false) + *yyv4441 = r.DecodeBytes(*(*[]byte)(yyv4441), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4393) - } // end switch yys4393 - } // end for yyj4393 + z.DecStructFieldNotFound(-1, yys4436) + } // end switch yys4436 + } // end for yyj4436 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54664,16 +55275,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4400 int - var yyb4400 bool - var yyhl4400 bool = l >= 0 - yyj4400++ - if yyhl4400 { - yyb4400 = yyj4400 > l + var yyj4443 int + var yyb4443 bool + var yyhl4443 bool = l >= 0 + yyj4443++ + if yyhl4443 { + yyb4443 = yyj4443 > l } else { - yyb4400 = r.CheckBreak() + yyb4443 = r.CheckBreak() } - if yyb4400 { + if yyb4443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54683,13 +55294,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4400++ - if yyhl4400 { - yyb4400 = yyj4400 > l + yyj4443++ + if yyhl4443 { + yyb4443 = yyj4443 > l } else { - yyb4400 = r.CheckBreak() + yyb4443 = r.CheckBreak() } - if yyb4400 { + if yyb4443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54699,13 +55310,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4400++ - if yyhl4400 { - yyb4400 = yyj4400 > l + yyj4443++ + if yyhl4443 { + yyb4443 = yyj4443 > l } else { - yyb4400 = r.CheckBreak() + yyb4443 = r.CheckBreak() } - if yyb4400 { + if yyb4443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54713,16 +55324,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4403 := &x.ObjectMeta - yyv4403.CodecDecodeSelf(d) + yyv4446 := &x.ObjectMeta + yyv4446.CodecDecodeSelf(d) } - yyj4400++ - if yyhl4400 { - yyb4400 = yyj4400 > l + yyj4443++ + if yyhl4443 { + yyb4443 = yyj4443 > l } else { - yyb4400 = r.CheckBreak() + yyb4443 = r.CheckBreak() } - if yyb4400 { + if yyb4443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54732,13 +55343,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4400++ - if yyhl4400 { - yyb4400 = yyj4400 > l + yyj4443++ + if yyhl4443 { + yyb4443 = yyj4443 > l } else { - yyb4400 = r.CheckBreak() + yyb4443 = r.CheckBreak() } - if yyb4400 { + if yyb4443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54746,26 +55357,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4405 := &x.Data - yym4406 := z.DecBinary() - _ = yym4406 + yyv4448 := &x.Data + yym4449 := z.DecBinary() + _ = yym4449 if false { } else { - *yyv4405 = r.DecodeBytes(*(*[]byte)(yyv4405), false, false) + *yyv4448 = r.DecodeBytes(*(*[]byte)(yyv4448), false, false) } } for { - yyj4400++ - if yyhl4400 { - yyb4400 = yyj4400 > l + yyj4443++ + if yyhl4443 { + yyb4443 = yyj4443 > l } else { - yyb4400 = r.CheckBreak() + yyb4443 = r.CheckBreak() } - if yyb4400 { + if yyb4443 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4400-1, "") + z.DecStructFieldNotFound(yyj4443-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54775,10 +55386,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4407 := range v { + for _, yyv4450 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4408 := &yyv4407 - yy4408.CodecEncodeSelf(e) + yy4451 := &yyv4450 + yy4451.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54788,83 +55399,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4409 := *v - yyh4409, yyl4409 := z.DecSliceHelperStart() - var yyc4409 bool - if yyl4409 == 0 { - if yyv4409 == nil { - yyv4409 = []OwnerReference{} - yyc4409 = true - } else if len(yyv4409) != 0 { - yyv4409 = yyv4409[:0] - yyc4409 = true + yyv4452 := *v + yyh4452, yyl4452 := z.DecSliceHelperStart() + var yyc4452 bool + if yyl4452 == 0 { + if yyv4452 == nil { + yyv4452 = []OwnerReference{} + yyc4452 = true + } else if len(yyv4452) != 0 { + yyv4452 = yyv4452[:0] + yyc4452 = true } - } else if yyl4409 > 0 { - var yyrr4409, yyrl4409 int - var yyrt4409 bool - if yyl4409 > cap(yyv4409) { + } else if yyl4452 > 0 { + var yyrr4452, yyrl4452 int + var yyrt4452 bool + if yyl4452 > cap(yyv4452) { - yyrg4409 := len(yyv4409) > 0 - yyv24409 := yyv4409 - yyrl4409, yyrt4409 = z.DecInferLen(yyl4409, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4409 { - if yyrl4409 <= cap(yyv4409) { - yyv4409 = yyv4409[:yyrl4409] + yyrg4452 := len(yyv4452) > 0 + yyv24452 := yyv4452 + yyrl4452, yyrt4452 = z.DecInferLen(yyl4452, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4452 { + if yyrl4452 <= cap(yyv4452) { + yyv4452 = yyv4452[:yyrl4452] } else { - yyv4409 = make([]OwnerReference, yyrl4409) + yyv4452 = make([]OwnerReference, yyrl4452) } } else { - yyv4409 = make([]OwnerReference, yyrl4409) + yyv4452 = make([]OwnerReference, yyrl4452) } - yyc4409 = true - yyrr4409 = len(yyv4409) - if yyrg4409 { - copy(yyv4409, yyv24409) + yyc4452 = true + yyrr4452 = len(yyv4452) + if yyrg4452 { + copy(yyv4452, yyv24452) } - } else if yyl4409 != len(yyv4409) { - yyv4409 = yyv4409[:yyl4409] - yyc4409 = true + } else if yyl4452 != len(yyv4452) { + yyv4452 = yyv4452[:yyl4452] + yyc4452 = true } - yyj4409 := 0 - for ; yyj4409 < yyrr4409; yyj4409++ { - yyh4409.ElemContainerState(yyj4409) + yyj4452 := 0 + for ; yyj4452 < yyrr4452; yyj4452++ { + yyh4452.ElemContainerState(yyj4452) if r.TryDecodeAsNil() { - yyv4409[yyj4409] = OwnerReference{} + yyv4452[yyj4452] = OwnerReference{} } else { - yyv4410 := &yyv4409[yyj4409] - yyv4410.CodecDecodeSelf(d) + yyv4453 := &yyv4452[yyj4452] + yyv4453.CodecDecodeSelf(d) } } - if yyrt4409 { - for ; yyj4409 < yyl4409; yyj4409++ { - yyv4409 = append(yyv4409, OwnerReference{}) - yyh4409.ElemContainerState(yyj4409) + if yyrt4452 { + for ; yyj4452 < yyl4452; yyj4452++ { + yyv4452 = append(yyv4452, OwnerReference{}) + yyh4452.ElemContainerState(yyj4452) if r.TryDecodeAsNil() { - yyv4409[yyj4409] = OwnerReference{} + yyv4452[yyj4452] = OwnerReference{} } else { - yyv4411 := &yyv4409[yyj4409] - yyv4411.CodecDecodeSelf(d) + yyv4454 := &yyv4452[yyj4452] + yyv4454.CodecDecodeSelf(d) } } } } else { - yyj4409 := 0 - for ; !r.CheckBreak(); yyj4409++ { + yyj4452 := 0 + for ; !r.CheckBreak(); yyj4452++ { - if yyj4409 >= len(yyv4409) { - yyv4409 = append(yyv4409, OwnerReference{}) // var yyz4409 OwnerReference - yyc4409 = true + if yyj4452 >= len(yyv4452) { + yyv4452 = append(yyv4452, OwnerReference{}) // var yyz4452 OwnerReference + yyc4452 = true } - yyh4409.ElemContainerState(yyj4409) - if yyj4409 < len(yyv4409) { + yyh4452.ElemContainerState(yyj4452) + if yyj4452 < len(yyv4452) { if r.TryDecodeAsNil() { - yyv4409[yyj4409] = OwnerReference{} + yyv4452[yyj4452] = OwnerReference{} } else { - yyv4412 := &yyv4409[yyj4409] - yyv4412.CodecDecodeSelf(d) + yyv4455 := &yyv4452[yyj4452] + yyv4455.CodecDecodeSelf(d) } } else { @@ -54872,17 +55483,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4409 < len(yyv4409) { - yyv4409 = yyv4409[:yyj4409] - yyc4409 = true - } else if yyj4409 == 0 && yyv4409 == nil { - yyv4409 = []OwnerReference{} - yyc4409 = true + if yyj4452 < len(yyv4452) { + yyv4452 = yyv4452[:yyj4452] + yyc4452 = true + } else if yyj4452 == 0 && yyv4452 == nil { + yyv4452 = []OwnerReference{} + yyc4452 = true } } - yyh4409.End() - if yyc4409 { - *v = yyv4409 + yyh4452.End() + if yyc4452 { + *v = yyv4452 } } @@ -54891,9 +55502,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4413 := range v { + for _, yyv4456 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4413.CodecEncodeSelf(e) + yyv4456.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54903,75 +55514,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4414 := *v - yyh4414, yyl4414 := z.DecSliceHelperStart() - var yyc4414 bool - if yyl4414 == 0 { - if yyv4414 == nil { - yyv4414 = []PersistentVolumeAccessMode{} - yyc4414 = true - } else if len(yyv4414) != 0 { - yyv4414 = yyv4414[:0] - yyc4414 = true + yyv4457 := *v + yyh4457, yyl4457 := z.DecSliceHelperStart() + var yyc4457 bool + if yyl4457 == 0 { + if yyv4457 == nil { + yyv4457 = []PersistentVolumeAccessMode{} + yyc4457 = true + } else if len(yyv4457) != 0 { + yyv4457 = yyv4457[:0] + yyc4457 = true } - } else if yyl4414 > 0 { - var yyrr4414, yyrl4414 int - var yyrt4414 bool - if yyl4414 > cap(yyv4414) { + } else if yyl4457 > 0 { + var yyrr4457, yyrl4457 int + var yyrt4457 bool + if yyl4457 > cap(yyv4457) { - yyrl4414, yyrt4414 = z.DecInferLen(yyl4414, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4414 { - if yyrl4414 <= cap(yyv4414) { - yyv4414 = yyv4414[:yyrl4414] + yyrl4457, yyrt4457 = z.DecInferLen(yyl4457, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4457 { + if yyrl4457 <= cap(yyv4457) { + yyv4457 = yyv4457[:yyrl4457] } else { - yyv4414 = make([]PersistentVolumeAccessMode, yyrl4414) + yyv4457 = make([]PersistentVolumeAccessMode, yyrl4457) } } else { - yyv4414 = make([]PersistentVolumeAccessMode, yyrl4414) + yyv4457 = make([]PersistentVolumeAccessMode, yyrl4457) } - yyc4414 = true - yyrr4414 = len(yyv4414) - } else if yyl4414 != len(yyv4414) { - yyv4414 = yyv4414[:yyl4414] - yyc4414 = true + yyc4457 = true + yyrr4457 = len(yyv4457) + } else if yyl4457 != len(yyv4457) { + yyv4457 = yyv4457[:yyl4457] + yyc4457 = true } - yyj4414 := 0 - for ; yyj4414 < yyrr4414; yyj4414++ { - yyh4414.ElemContainerState(yyj4414) + yyj4457 := 0 + for ; yyj4457 < yyrr4457; yyj4457++ { + yyh4457.ElemContainerState(yyj4457) if r.TryDecodeAsNil() { - yyv4414[yyj4414] = "" + yyv4457[yyj4457] = "" } else { - yyv4414[yyj4414] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4457[yyj4457] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4414 { - for ; yyj4414 < yyl4414; yyj4414++ { - yyv4414 = append(yyv4414, "") - yyh4414.ElemContainerState(yyj4414) + if yyrt4457 { + for ; yyj4457 < yyl4457; yyj4457++ { + yyv4457 = append(yyv4457, "") + yyh4457.ElemContainerState(yyj4457) if r.TryDecodeAsNil() { - yyv4414[yyj4414] = "" + yyv4457[yyj4457] = "" } else { - yyv4414[yyj4414] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4457[yyj4457] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4414 := 0 - for ; !r.CheckBreak(); yyj4414++ { + yyj4457 := 0 + for ; !r.CheckBreak(); yyj4457++ { - if yyj4414 >= len(yyv4414) { - yyv4414 = append(yyv4414, "") // var yyz4414 PersistentVolumeAccessMode - yyc4414 = true + if yyj4457 >= len(yyv4457) { + yyv4457 = append(yyv4457, "") // var yyz4457 PersistentVolumeAccessMode + yyc4457 = true } - yyh4414.ElemContainerState(yyj4414) - if yyj4414 < len(yyv4414) { + yyh4457.ElemContainerState(yyj4457) + if yyj4457 < len(yyv4457) { if r.TryDecodeAsNil() { - yyv4414[yyj4414] = "" + yyv4457[yyj4457] = "" } else { - yyv4414[yyj4414] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4457[yyj4457] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -54979,17 +55590,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4414 < len(yyv4414) { - yyv4414 = yyv4414[:yyj4414] - yyc4414 = true - } else if yyj4414 == 0 && yyv4414 == nil { - yyv4414 = []PersistentVolumeAccessMode{} - yyc4414 = true + if yyj4457 < len(yyv4457) { + yyv4457 = yyv4457[:yyj4457] + yyc4457 = true + } else if yyj4457 == 0 && yyv4457 == nil { + yyv4457 = []PersistentVolumeAccessMode{} + yyc4457 = true } } - yyh4414.End() - if yyc4414 { - *v = yyv4414 + yyh4457.End() + if yyc4457 { + *v = yyv4457 } } @@ -54998,10 +55609,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4418 := range v { + for _, yyv4461 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4419 := &yyv4418 - yy4419.CodecEncodeSelf(e) + yy4462 := &yyv4461 + yy4462.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55011,83 +55622,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4420 := *v - yyh4420, yyl4420 := z.DecSliceHelperStart() - var yyc4420 bool - if yyl4420 == 0 { - if yyv4420 == nil { - yyv4420 = []PersistentVolume{} - yyc4420 = true - } else if len(yyv4420) != 0 { - yyv4420 = yyv4420[:0] - yyc4420 = true + yyv4463 := *v + yyh4463, yyl4463 := z.DecSliceHelperStart() + var yyc4463 bool + if yyl4463 == 0 { + if yyv4463 == nil { + yyv4463 = []PersistentVolume{} + yyc4463 = true + } else if len(yyv4463) != 0 { + yyv4463 = yyv4463[:0] + yyc4463 = true } - } else if yyl4420 > 0 { - var yyrr4420, yyrl4420 int - var yyrt4420 bool - if yyl4420 > cap(yyv4420) { + } else if yyl4463 > 0 { + var yyrr4463, yyrl4463 int + var yyrt4463 bool + if yyl4463 > cap(yyv4463) { - yyrg4420 := len(yyv4420) > 0 - yyv24420 := yyv4420 - yyrl4420, yyrt4420 = z.DecInferLen(yyl4420, z.DecBasicHandle().MaxInitLen, 456) - if yyrt4420 { - if yyrl4420 <= cap(yyv4420) { - yyv4420 = yyv4420[:yyrl4420] + yyrg4463 := len(yyv4463) > 0 + yyv24463 := yyv4463 + yyrl4463, yyrt4463 = z.DecInferLen(yyl4463, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4463 { + if yyrl4463 <= cap(yyv4463) { + yyv4463 = yyv4463[:yyrl4463] } else { - yyv4420 = make([]PersistentVolume, yyrl4420) + yyv4463 = make([]PersistentVolume, yyrl4463) } } else { - yyv4420 = make([]PersistentVolume, yyrl4420) + yyv4463 = make([]PersistentVolume, yyrl4463) } - yyc4420 = true - yyrr4420 = len(yyv4420) - if yyrg4420 { - copy(yyv4420, yyv24420) + yyc4463 = true + yyrr4463 = len(yyv4463) + if yyrg4463 { + copy(yyv4463, yyv24463) } - } else if yyl4420 != len(yyv4420) { - yyv4420 = yyv4420[:yyl4420] - yyc4420 = true + } else if yyl4463 != len(yyv4463) { + yyv4463 = yyv4463[:yyl4463] + yyc4463 = true } - yyj4420 := 0 - for ; yyj4420 < yyrr4420; yyj4420++ { - yyh4420.ElemContainerState(yyj4420) + yyj4463 := 0 + for ; yyj4463 < yyrr4463; yyj4463++ { + yyh4463.ElemContainerState(yyj4463) if r.TryDecodeAsNil() { - yyv4420[yyj4420] = PersistentVolume{} + yyv4463[yyj4463] = PersistentVolume{} } else { - yyv4421 := &yyv4420[yyj4420] - yyv4421.CodecDecodeSelf(d) + yyv4464 := &yyv4463[yyj4463] + yyv4464.CodecDecodeSelf(d) } } - if yyrt4420 { - for ; yyj4420 < yyl4420; yyj4420++ { - yyv4420 = append(yyv4420, PersistentVolume{}) - yyh4420.ElemContainerState(yyj4420) + if yyrt4463 { + for ; yyj4463 < yyl4463; yyj4463++ { + yyv4463 = append(yyv4463, PersistentVolume{}) + yyh4463.ElemContainerState(yyj4463) if r.TryDecodeAsNil() { - yyv4420[yyj4420] = PersistentVolume{} + yyv4463[yyj4463] = PersistentVolume{} } else { - yyv4422 := &yyv4420[yyj4420] - yyv4422.CodecDecodeSelf(d) + yyv4465 := &yyv4463[yyj4463] + yyv4465.CodecDecodeSelf(d) } } } } else { - yyj4420 := 0 - for ; !r.CheckBreak(); yyj4420++ { + yyj4463 := 0 + for ; !r.CheckBreak(); yyj4463++ { - if yyj4420 >= len(yyv4420) { - yyv4420 = append(yyv4420, PersistentVolume{}) // var yyz4420 PersistentVolume - yyc4420 = true + if yyj4463 >= len(yyv4463) { + yyv4463 = append(yyv4463, PersistentVolume{}) // var yyz4463 PersistentVolume + yyc4463 = true } - yyh4420.ElemContainerState(yyj4420) - if yyj4420 < len(yyv4420) { + yyh4463.ElemContainerState(yyj4463) + if yyj4463 < len(yyv4463) { if r.TryDecodeAsNil() { - yyv4420[yyj4420] = PersistentVolume{} + yyv4463[yyj4463] = PersistentVolume{} } else { - yyv4423 := &yyv4420[yyj4420] - yyv4423.CodecDecodeSelf(d) + yyv4466 := &yyv4463[yyj4463] + yyv4466.CodecDecodeSelf(d) } } else { @@ -55095,17 +55706,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4420 < len(yyv4420) { - yyv4420 = yyv4420[:yyj4420] - yyc4420 = true - } else if yyj4420 == 0 && yyv4420 == nil { - yyv4420 = []PersistentVolume{} - yyc4420 = true + if yyj4463 < len(yyv4463) { + yyv4463 = yyv4463[:yyj4463] + yyc4463 = true + } else if yyj4463 == 0 && yyv4463 == nil { + yyv4463 = []PersistentVolume{} + yyc4463 = true } } - yyh4420.End() - if yyc4420 { - *v = yyv4420 + yyh4463.End() + if yyc4463 { + *v = yyv4463 } } @@ -55114,10 +55725,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4424 := range v { + for _, yyv4467 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4425 := &yyv4424 - yy4425.CodecEncodeSelf(e) + yy4468 := &yyv4467 + yy4468.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55127,83 +55738,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4426 := *v - yyh4426, yyl4426 := z.DecSliceHelperStart() - var yyc4426 bool - if yyl4426 == 0 { - if yyv4426 == nil { - yyv4426 = []PersistentVolumeClaim{} - yyc4426 = true - } else if len(yyv4426) != 0 { - yyv4426 = yyv4426[:0] - yyc4426 = true + yyv4469 := *v + yyh4469, yyl4469 := z.DecSliceHelperStart() + var yyc4469 bool + if yyl4469 == 0 { + if yyv4469 == nil { + yyv4469 = []PersistentVolumeClaim{} + yyc4469 = true + } else if len(yyv4469) != 0 { + yyv4469 = yyv4469[:0] + yyc4469 = true } - } else if yyl4426 > 0 { - var yyrr4426, yyrl4426 int - var yyrt4426 bool - if yyl4426 > cap(yyv4426) { + } else if yyl4469 > 0 { + var yyrr4469, yyrl4469 int + var yyrt4469 bool + if yyl4469 > cap(yyv4469) { - yyrg4426 := len(yyv4426) > 0 - yyv24426 := yyv4426 - yyrl4426, yyrt4426 = z.DecInferLen(yyl4426, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4426 { - if yyrl4426 <= cap(yyv4426) { - yyv4426 = yyv4426[:yyrl4426] + yyrg4469 := len(yyv4469) > 0 + yyv24469 := yyv4469 + yyrl4469, yyrt4469 = z.DecInferLen(yyl4469, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4469 { + if yyrl4469 <= cap(yyv4469) { + yyv4469 = yyv4469[:yyrl4469] } else { - yyv4426 = make([]PersistentVolumeClaim, yyrl4426) + yyv4469 = make([]PersistentVolumeClaim, yyrl4469) } } else { - yyv4426 = make([]PersistentVolumeClaim, yyrl4426) + yyv4469 = make([]PersistentVolumeClaim, yyrl4469) } - yyc4426 = true - yyrr4426 = len(yyv4426) - if yyrg4426 { - copy(yyv4426, yyv24426) + yyc4469 = true + yyrr4469 = len(yyv4469) + if yyrg4469 { + copy(yyv4469, yyv24469) } - } else if yyl4426 != len(yyv4426) { - yyv4426 = yyv4426[:yyl4426] - yyc4426 = true + } else if yyl4469 != len(yyv4469) { + yyv4469 = yyv4469[:yyl4469] + yyc4469 = true } - yyj4426 := 0 - for ; yyj4426 < yyrr4426; yyj4426++ { - yyh4426.ElemContainerState(yyj4426) + yyj4469 := 0 + for ; yyj4469 < yyrr4469; yyj4469++ { + yyh4469.ElemContainerState(yyj4469) if r.TryDecodeAsNil() { - yyv4426[yyj4426] = PersistentVolumeClaim{} + yyv4469[yyj4469] = PersistentVolumeClaim{} } else { - yyv4427 := &yyv4426[yyj4426] - yyv4427.CodecDecodeSelf(d) + yyv4470 := &yyv4469[yyj4469] + yyv4470.CodecDecodeSelf(d) } } - if yyrt4426 { - for ; yyj4426 < yyl4426; yyj4426++ { - yyv4426 = append(yyv4426, PersistentVolumeClaim{}) - yyh4426.ElemContainerState(yyj4426) + if yyrt4469 { + for ; yyj4469 < yyl4469; yyj4469++ { + yyv4469 = append(yyv4469, PersistentVolumeClaim{}) + yyh4469.ElemContainerState(yyj4469) if r.TryDecodeAsNil() { - yyv4426[yyj4426] = PersistentVolumeClaim{} + yyv4469[yyj4469] = PersistentVolumeClaim{} } else { - yyv4428 := &yyv4426[yyj4426] - yyv4428.CodecDecodeSelf(d) + yyv4471 := &yyv4469[yyj4469] + yyv4471.CodecDecodeSelf(d) } } } } else { - yyj4426 := 0 - for ; !r.CheckBreak(); yyj4426++ { + yyj4469 := 0 + for ; !r.CheckBreak(); yyj4469++ { - if yyj4426 >= len(yyv4426) { - yyv4426 = append(yyv4426, PersistentVolumeClaim{}) // var yyz4426 PersistentVolumeClaim - yyc4426 = true + if yyj4469 >= len(yyv4469) { + yyv4469 = append(yyv4469, PersistentVolumeClaim{}) // var yyz4469 PersistentVolumeClaim + yyc4469 = true } - yyh4426.ElemContainerState(yyj4426) - if yyj4426 < len(yyv4426) { + yyh4469.ElemContainerState(yyj4469) + if yyj4469 < len(yyv4469) { if r.TryDecodeAsNil() { - yyv4426[yyj4426] = PersistentVolumeClaim{} + yyv4469[yyj4469] = PersistentVolumeClaim{} } else { - yyv4429 := &yyv4426[yyj4426] - yyv4429.CodecDecodeSelf(d) + yyv4472 := &yyv4469[yyj4469] + yyv4472.CodecDecodeSelf(d) } } else { @@ -55211,17 +55822,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4426 < len(yyv4426) { - yyv4426 = yyv4426[:yyj4426] - yyc4426 = true - } else if yyj4426 == 0 && yyv4426 == nil { - yyv4426 = []PersistentVolumeClaim{} - yyc4426 = true + if yyj4469 < len(yyv4469) { + yyv4469 = yyv4469[:yyj4469] + yyc4469 = true + } else if yyj4469 == 0 && yyv4469 == nil { + yyv4469 = []PersistentVolumeClaim{} + yyc4469 = true } } - yyh4426.End() - if yyc4426 { - *v = yyv4426 + yyh4469.End() + if yyc4469 { + *v = yyv4469 } } @@ -55230,10 +55841,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4430 := range v { + for _, yyv4473 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4431 := &yyv4430 - yy4431.CodecEncodeSelf(e) + yy4474 := &yyv4473 + yy4474.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55243,83 +55854,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4432 := *v - yyh4432, yyl4432 := z.DecSliceHelperStart() - var yyc4432 bool - if yyl4432 == 0 { - if yyv4432 == nil { - yyv4432 = []KeyToPath{} - yyc4432 = true - } else if len(yyv4432) != 0 { - yyv4432 = yyv4432[:0] - yyc4432 = true + yyv4475 := *v + yyh4475, yyl4475 := z.DecSliceHelperStart() + var yyc4475 bool + if yyl4475 == 0 { + if yyv4475 == nil { + yyv4475 = []KeyToPath{} + yyc4475 = true + } else if len(yyv4475) != 0 { + yyv4475 = yyv4475[:0] + yyc4475 = true } - } else if yyl4432 > 0 { - var yyrr4432, yyrl4432 int - var yyrt4432 bool - if yyl4432 > cap(yyv4432) { + } else if yyl4475 > 0 { + var yyrr4475, yyrl4475 int + var yyrt4475 bool + if yyl4475 > cap(yyv4475) { - yyrg4432 := len(yyv4432) > 0 - yyv24432 := yyv4432 - yyrl4432, yyrt4432 = z.DecInferLen(yyl4432, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4432 { - if yyrl4432 <= cap(yyv4432) { - yyv4432 = yyv4432[:yyrl4432] + yyrg4475 := len(yyv4475) > 0 + yyv24475 := yyv4475 + yyrl4475, yyrt4475 = z.DecInferLen(yyl4475, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4475 { + if yyrl4475 <= cap(yyv4475) { + yyv4475 = yyv4475[:yyrl4475] } else { - yyv4432 = make([]KeyToPath, yyrl4432) + yyv4475 = make([]KeyToPath, yyrl4475) } } else { - yyv4432 = make([]KeyToPath, yyrl4432) + yyv4475 = make([]KeyToPath, yyrl4475) } - yyc4432 = true - yyrr4432 = len(yyv4432) - if yyrg4432 { - copy(yyv4432, yyv24432) + yyc4475 = true + yyrr4475 = len(yyv4475) + if yyrg4475 { + copy(yyv4475, yyv24475) } - } else if yyl4432 != len(yyv4432) { - yyv4432 = yyv4432[:yyl4432] - yyc4432 = true + } else if yyl4475 != len(yyv4475) { + yyv4475 = yyv4475[:yyl4475] + yyc4475 = true } - yyj4432 := 0 - for ; yyj4432 < yyrr4432; yyj4432++ { - yyh4432.ElemContainerState(yyj4432) + yyj4475 := 0 + for ; yyj4475 < yyrr4475; yyj4475++ { + yyh4475.ElemContainerState(yyj4475) if r.TryDecodeAsNil() { - yyv4432[yyj4432] = KeyToPath{} + yyv4475[yyj4475] = KeyToPath{} } else { - yyv4433 := &yyv4432[yyj4432] - yyv4433.CodecDecodeSelf(d) + yyv4476 := &yyv4475[yyj4475] + yyv4476.CodecDecodeSelf(d) } } - if yyrt4432 { - for ; yyj4432 < yyl4432; yyj4432++ { - yyv4432 = append(yyv4432, KeyToPath{}) - yyh4432.ElemContainerState(yyj4432) + if yyrt4475 { + for ; yyj4475 < yyl4475; yyj4475++ { + yyv4475 = append(yyv4475, KeyToPath{}) + yyh4475.ElemContainerState(yyj4475) if r.TryDecodeAsNil() { - yyv4432[yyj4432] = KeyToPath{} + yyv4475[yyj4475] = KeyToPath{} } else { - yyv4434 := &yyv4432[yyj4432] - yyv4434.CodecDecodeSelf(d) + yyv4477 := &yyv4475[yyj4475] + yyv4477.CodecDecodeSelf(d) } } } } else { - yyj4432 := 0 - for ; !r.CheckBreak(); yyj4432++ { + yyj4475 := 0 + for ; !r.CheckBreak(); yyj4475++ { - if yyj4432 >= len(yyv4432) { - yyv4432 = append(yyv4432, KeyToPath{}) // var yyz4432 KeyToPath - yyc4432 = true + if yyj4475 >= len(yyv4475) { + yyv4475 = append(yyv4475, KeyToPath{}) // var yyz4475 KeyToPath + yyc4475 = true } - yyh4432.ElemContainerState(yyj4432) - if yyj4432 < len(yyv4432) { + yyh4475.ElemContainerState(yyj4475) + if yyj4475 < len(yyv4475) { if r.TryDecodeAsNil() { - yyv4432[yyj4432] = KeyToPath{} + yyv4475[yyj4475] = KeyToPath{} } else { - yyv4435 := &yyv4432[yyj4432] - yyv4435.CodecDecodeSelf(d) + yyv4478 := &yyv4475[yyj4475] + yyv4478.CodecDecodeSelf(d) } } else { @@ -55327,17 +55938,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4432 < len(yyv4432) { - yyv4432 = yyv4432[:yyj4432] - yyc4432 = true - } else if yyj4432 == 0 && yyv4432 == nil { - yyv4432 = []KeyToPath{} - yyc4432 = true + if yyj4475 < len(yyv4475) { + yyv4475 = yyv4475[:yyj4475] + yyc4475 = true + } else if yyj4475 == 0 && yyv4475 == nil { + yyv4475 = []KeyToPath{} + yyc4475 = true } } - yyh4432.End() - if yyc4432 { - *v = yyv4432 + yyh4475.End() + if yyc4475 { + *v = yyv4475 } } @@ -55346,10 +55957,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4436 := range v { + for _, yyv4479 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4437 := &yyv4436 - yy4437.CodecEncodeSelf(e) + yy4480 := &yyv4479 + yy4480.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55359,83 +55970,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4438 := *v - yyh4438, yyl4438 := z.DecSliceHelperStart() - var yyc4438 bool - if yyl4438 == 0 { - if yyv4438 == nil { - yyv4438 = []HTTPHeader{} - yyc4438 = true - } else if len(yyv4438) != 0 { - yyv4438 = yyv4438[:0] - yyc4438 = true + yyv4481 := *v + yyh4481, yyl4481 := z.DecSliceHelperStart() + var yyc4481 bool + if yyl4481 == 0 { + if yyv4481 == nil { + yyv4481 = []HTTPHeader{} + yyc4481 = true + } else if len(yyv4481) != 0 { + yyv4481 = yyv4481[:0] + yyc4481 = true } - } else if yyl4438 > 0 { - var yyrr4438, yyrl4438 int - var yyrt4438 bool - if yyl4438 > cap(yyv4438) { + } else if yyl4481 > 0 { + var yyrr4481, yyrl4481 int + var yyrt4481 bool + if yyl4481 > cap(yyv4481) { - yyrg4438 := len(yyv4438) > 0 - yyv24438 := yyv4438 - yyrl4438, yyrt4438 = z.DecInferLen(yyl4438, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4438 { - if yyrl4438 <= cap(yyv4438) { - yyv4438 = yyv4438[:yyrl4438] + yyrg4481 := len(yyv4481) > 0 + yyv24481 := yyv4481 + yyrl4481, yyrt4481 = z.DecInferLen(yyl4481, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4481 { + if yyrl4481 <= cap(yyv4481) { + yyv4481 = yyv4481[:yyrl4481] } else { - yyv4438 = make([]HTTPHeader, yyrl4438) + yyv4481 = make([]HTTPHeader, yyrl4481) } } else { - yyv4438 = make([]HTTPHeader, yyrl4438) + yyv4481 = make([]HTTPHeader, yyrl4481) } - yyc4438 = true - yyrr4438 = len(yyv4438) - if yyrg4438 { - copy(yyv4438, yyv24438) + yyc4481 = true + yyrr4481 = len(yyv4481) + if yyrg4481 { + copy(yyv4481, yyv24481) } - } else if yyl4438 != len(yyv4438) { - yyv4438 = yyv4438[:yyl4438] - yyc4438 = true + } else if yyl4481 != len(yyv4481) { + yyv4481 = yyv4481[:yyl4481] + yyc4481 = true } - yyj4438 := 0 - for ; yyj4438 < yyrr4438; yyj4438++ { - yyh4438.ElemContainerState(yyj4438) + yyj4481 := 0 + for ; yyj4481 < yyrr4481; yyj4481++ { + yyh4481.ElemContainerState(yyj4481) if r.TryDecodeAsNil() { - yyv4438[yyj4438] = HTTPHeader{} + yyv4481[yyj4481] = HTTPHeader{} } else { - yyv4439 := &yyv4438[yyj4438] - yyv4439.CodecDecodeSelf(d) + yyv4482 := &yyv4481[yyj4481] + yyv4482.CodecDecodeSelf(d) } } - if yyrt4438 { - for ; yyj4438 < yyl4438; yyj4438++ { - yyv4438 = append(yyv4438, HTTPHeader{}) - yyh4438.ElemContainerState(yyj4438) + if yyrt4481 { + for ; yyj4481 < yyl4481; yyj4481++ { + yyv4481 = append(yyv4481, HTTPHeader{}) + yyh4481.ElemContainerState(yyj4481) if r.TryDecodeAsNil() { - yyv4438[yyj4438] = HTTPHeader{} + yyv4481[yyj4481] = HTTPHeader{} } else { - yyv4440 := &yyv4438[yyj4438] - yyv4440.CodecDecodeSelf(d) + yyv4483 := &yyv4481[yyj4481] + yyv4483.CodecDecodeSelf(d) } } } } else { - yyj4438 := 0 - for ; !r.CheckBreak(); yyj4438++ { + yyj4481 := 0 + for ; !r.CheckBreak(); yyj4481++ { - if yyj4438 >= len(yyv4438) { - yyv4438 = append(yyv4438, HTTPHeader{}) // var yyz4438 HTTPHeader - yyc4438 = true + if yyj4481 >= len(yyv4481) { + yyv4481 = append(yyv4481, HTTPHeader{}) // var yyz4481 HTTPHeader + yyc4481 = true } - yyh4438.ElemContainerState(yyj4438) - if yyj4438 < len(yyv4438) { + yyh4481.ElemContainerState(yyj4481) + if yyj4481 < len(yyv4481) { if r.TryDecodeAsNil() { - yyv4438[yyj4438] = HTTPHeader{} + yyv4481[yyj4481] = HTTPHeader{} } else { - yyv4441 := &yyv4438[yyj4438] - yyv4441.CodecDecodeSelf(d) + yyv4484 := &yyv4481[yyj4481] + yyv4484.CodecDecodeSelf(d) } } else { @@ -55443,17 +56054,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4438 < len(yyv4438) { - yyv4438 = yyv4438[:yyj4438] - yyc4438 = true - } else if yyj4438 == 0 && yyv4438 == nil { - yyv4438 = []HTTPHeader{} - yyc4438 = true + if yyj4481 < len(yyv4481) { + yyv4481 = yyv4481[:yyj4481] + yyc4481 = true + } else if yyj4481 == 0 && yyv4481 == nil { + yyv4481 = []HTTPHeader{} + yyc4481 = true } } - yyh4438.End() - if yyc4438 { - *v = yyv4438 + yyh4481.End() + if yyc4481 { + *v = yyv4481 } } @@ -55462,9 +56073,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4442 := range v { + for _, yyv4485 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4442.CodecEncodeSelf(e) + yyv4485.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55474,75 +56085,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4443 := *v - yyh4443, yyl4443 := z.DecSliceHelperStart() - var yyc4443 bool - if yyl4443 == 0 { - if yyv4443 == nil { - yyv4443 = []Capability{} - yyc4443 = true - } else if len(yyv4443) != 0 { - yyv4443 = yyv4443[:0] - yyc4443 = true + yyv4486 := *v + yyh4486, yyl4486 := z.DecSliceHelperStart() + var yyc4486 bool + if yyl4486 == 0 { + if yyv4486 == nil { + yyv4486 = []Capability{} + yyc4486 = true + } else if len(yyv4486) != 0 { + yyv4486 = yyv4486[:0] + yyc4486 = true } - } else if yyl4443 > 0 { - var yyrr4443, yyrl4443 int - var yyrt4443 bool - if yyl4443 > cap(yyv4443) { + } else if yyl4486 > 0 { + var yyrr4486, yyrl4486 int + var yyrt4486 bool + if yyl4486 > cap(yyv4486) { - yyrl4443, yyrt4443 = z.DecInferLen(yyl4443, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4443 { - if yyrl4443 <= cap(yyv4443) { - yyv4443 = yyv4443[:yyrl4443] + yyrl4486, yyrt4486 = z.DecInferLen(yyl4486, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4486 { + if yyrl4486 <= cap(yyv4486) { + yyv4486 = yyv4486[:yyrl4486] } else { - yyv4443 = make([]Capability, yyrl4443) + yyv4486 = make([]Capability, yyrl4486) } } else { - yyv4443 = make([]Capability, yyrl4443) + yyv4486 = make([]Capability, yyrl4486) } - yyc4443 = true - yyrr4443 = len(yyv4443) - } else if yyl4443 != len(yyv4443) { - yyv4443 = yyv4443[:yyl4443] - yyc4443 = true + yyc4486 = true + yyrr4486 = len(yyv4486) + } else if yyl4486 != len(yyv4486) { + yyv4486 = yyv4486[:yyl4486] + yyc4486 = true } - yyj4443 := 0 - for ; yyj4443 < yyrr4443; yyj4443++ { - yyh4443.ElemContainerState(yyj4443) + yyj4486 := 0 + for ; yyj4486 < yyrr4486; yyj4486++ { + yyh4486.ElemContainerState(yyj4486) if r.TryDecodeAsNil() { - yyv4443[yyj4443] = "" + yyv4486[yyj4486] = "" } else { - yyv4443[yyj4443] = Capability(r.DecodeString()) + yyv4486[yyj4486] = Capability(r.DecodeString()) } } - if yyrt4443 { - for ; yyj4443 < yyl4443; yyj4443++ { - yyv4443 = append(yyv4443, "") - yyh4443.ElemContainerState(yyj4443) + if yyrt4486 { + for ; yyj4486 < yyl4486; yyj4486++ { + yyv4486 = append(yyv4486, "") + yyh4486.ElemContainerState(yyj4486) if r.TryDecodeAsNil() { - yyv4443[yyj4443] = "" + yyv4486[yyj4486] = "" } else { - yyv4443[yyj4443] = Capability(r.DecodeString()) + yyv4486[yyj4486] = Capability(r.DecodeString()) } } } } else { - yyj4443 := 0 - for ; !r.CheckBreak(); yyj4443++ { + yyj4486 := 0 + for ; !r.CheckBreak(); yyj4486++ { - if yyj4443 >= len(yyv4443) { - yyv4443 = append(yyv4443, "") // var yyz4443 Capability - yyc4443 = true + if yyj4486 >= len(yyv4486) { + yyv4486 = append(yyv4486, "") // var yyz4486 Capability + yyc4486 = true } - yyh4443.ElemContainerState(yyj4443) - if yyj4443 < len(yyv4443) { + yyh4486.ElemContainerState(yyj4486) + if yyj4486 < len(yyv4486) { if r.TryDecodeAsNil() { - yyv4443[yyj4443] = "" + yyv4486[yyj4486] = "" } else { - yyv4443[yyj4443] = Capability(r.DecodeString()) + yyv4486[yyj4486] = Capability(r.DecodeString()) } } else { @@ -55550,17 +56161,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4443 < len(yyv4443) { - yyv4443 = yyv4443[:yyj4443] - yyc4443 = true - } else if yyj4443 == 0 && yyv4443 == nil { - yyv4443 = []Capability{} - yyc4443 = true + if yyj4486 < len(yyv4486) { + yyv4486 = yyv4486[:yyj4486] + yyc4486 = true + } else if yyj4486 == 0 && yyv4486 == nil { + yyv4486 = []Capability{} + yyc4486 = true } } - yyh4443.End() - if yyc4443 { - *v = yyv4443 + yyh4486.End() + if yyc4486 { + *v = yyv4486 } } @@ -55569,10 +56180,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4447 := range v { + for _, yyv4490 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4448 := &yyv4447 - yy4448.CodecEncodeSelf(e) + yy4491 := &yyv4490 + yy4491.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55582,83 +56193,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4449 := *v - yyh4449, yyl4449 := z.DecSliceHelperStart() - var yyc4449 bool - if yyl4449 == 0 { - if yyv4449 == nil { - yyv4449 = []ContainerPort{} - yyc4449 = true - } else if len(yyv4449) != 0 { - yyv4449 = yyv4449[:0] - yyc4449 = true + yyv4492 := *v + yyh4492, yyl4492 := z.DecSliceHelperStart() + var yyc4492 bool + if yyl4492 == 0 { + if yyv4492 == nil { + yyv4492 = []ContainerPort{} + yyc4492 = true + } else if len(yyv4492) != 0 { + yyv4492 = yyv4492[:0] + yyc4492 = true } - } else if yyl4449 > 0 { - var yyrr4449, yyrl4449 int - var yyrt4449 bool - if yyl4449 > cap(yyv4449) { + } else if yyl4492 > 0 { + var yyrr4492, yyrl4492 int + var yyrt4492 bool + if yyl4492 > cap(yyv4492) { - yyrg4449 := len(yyv4449) > 0 - yyv24449 := yyv4449 - yyrl4449, yyrt4449 = z.DecInferLen(yyl4449, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4449 { - if yyrl4449 <= cap(yyv4449) { - yyv4449 = yyv4449[:yyrl4449] + yyrg4492 := len(yyv4492) > 0 + yyv24492 := yyv4492 + yyrl4492, yyrt4492 = z.DecInferLen(yyl4492, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4492 { + if yyrl4492 <= cap(yyv4492) { + yyv4492 = yyv4492[:yyrl4492] } else { - yyv4449 = make([]ContainerPort, yyrl4449) + yyv4492 = make([]ContainerPort, yyrl4492) } } else { - yyv4449 = make([]ContainerPort, yyrl4449) + yyv4492 = make([]ContainerPort, yyrl4492) } - yyc4449 = true - yyrr4449 = len(yyv4449) - if yyrg4449 { - copy(yyv4449, yyv24449) + yyc4492 = true + yyrr4492 = len(yyv4492) + if yyrg4492 { + copy(yyv4492, yyv24492) } - } else if yyl4449 != len(yyv4449) { - yyv4449 = yyv4449[:yyl4449] - yyc4449 = true + } else if yyl4492 != len(yyv4492) { + yyv4492 = yyv4492[:yyl4492] + yyc4492 = true } - yyj4449 := 0 - for ; yyj4449 < yyrr4449; yyj4449++ { - yyh4449.ElemContainerState(yyj4449) + yyj4492 := 0 + for ; yyj4492 < yyrr4492; yyj4492++ { + yyh4492.ElemContainerState(yyj4492) if r.TryDecodeAsNil() { - yyv4449[yyj4449] = ContainerPort{} + yyv4492[yyj4492] = ContainerPort{} } else { - yyv4450 := &yyv4449[yyj4449] - yyv4450.CodecDecodeSelf(d) + yyv4493 := &yyv4492[yyj4492] + yyv4493.CodecDecodeSelf(d) } } - if yyrt4449 { - for ; yyj4449 < yyl4449; yyj4449++ { - yyv4449 = append(yyv4449, ContainerPort{}) - yyh4449.ElemContainerState(yyj4449) + if yyrt4492 { + for ; yyj4492 < yyl4492; yyj4492++ { + yyv4492 = append(yyv4492, ContainerPort{}) + yyh4492.ElemContainerState(yyj4492) if r.TryDecodeAsNil() { - yyv4449[yyj4449] = ContainerPort{} + yyv4492[yyj4492] = ContainerPort{} } else { - yyv4451 := &yyv4449[yyj4449] - yyv4451.CodecDecodeSelf(d) + yyv4494 := &yyv4492[yyj4492] + yyv4494.CodecDecodeSelf(d) } } } } else { - yyj4449 := 0 - for ; !r.CheckBreak(); yyj4449++ { + yyj4492 := 0 + for ; !r.CheckBreak(); yyj4492++ { - if yyj4449 >= len(yyv4449) { - yyv4449 = append(yyv4449, ContainerPort{}) // var yyz4449 ContainerPort - yyc4449 = true + if yyj4492 >= len(yyv4492) { + yyv4492 = append(yyv4492, ContainerPort{}) // var yyz4492 ContainerPort + yyc4492 = true } - yyh4449.ElemContainerState(yyj4449) - if yyj4449 < len(yyv4449) { + yyh4492.ElemContainerState(yyj4492) + if yyj4492 < len(yyv4492) { if r.TryDecodeAsNil() { - yyv4449[yyj4449] = ContainerPort{} + yyv4492[yyj4492] = ContainerPort{} } else { - yyv4452 := &yyv4449[yyj4449] - yyv4452.CodecDecodeSelf(d) + yyv4495 := &yyv4492[yyj4492] + yyv4495.CodecDecodeSelf(d) } } else { @@ -55666,17 +56277,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4449 < len(yyv4449) { - yyv4449 = yyv4449[:yyj4449] - yyc4449 = true - } else if yyj4449 == 0 && yyv4449 == nil { - yyv4449 = []ContainerPort{} - yyc4449 = true + if yyj4492 < len(yyv4492) { + yyv4492 = yyv4492[:yyj4492] + yyc4492 = true + } else if yyj4492 == 0 && yyv4492 == nil { + yyv4492 = []ContainerPort{} + yyc4492 = true } } - yyh4449.End() - if yyc4449 { - *v = yyv4449 + yyh4492.End() + if yyc4492 { + *v = yyv4492 } } @@ -55685,10 +56296,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4453 := range v { + for _, yyv4496 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4454 := &yyv4453 - yy4454.CodecEncodeSelf(e) + yy4497 := &yyv4496 + yy4497.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55698,83 +56309,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4455 := *v - yyh4455, yyl4455 := z.DecSliceHelperStart() - var yyc4455 bool - if yyl4455 == 0 { - if yyv4455 == nil { - yyv4455 = []EnvVar{} - yyc4455 = true - } else if len(yyv4455) != 0 { - yyv4455 = yyv4455[:0] - yyc4455 = true + yyv4498 := *v + yyh4498, yyl4498 := z.DecSliceHelperStart() + var yyc4498 bool + if yyl4498 == 0 { + if yyv4498 == nil { + yyv4498 = []EnvVar{} + yyc4498 = true + } else if len(yyv4498) != 0 { + yyv4498 = yyv4498[:0] + yyc4498 = true } - } else if yyl4455 > 0 { - var yyrr4455, yyrl4455 int - var yyrt4455 bool - if yyl4455 > cap(yyv4455) { + } else if yyl4498 > 0 { + var yyrr4498, yyrl4498 int + var yyrt4498 bool + if yyl4498 > cap(yyv4498) { - yyrg4455 := len(yyv4455) > 0 - yyv24455 := yyv4455 - yyrl4455, yyrt4455 = z.DecInferLen(yyl4455, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4455 { - if yyrl4455 <= cap(yyv4455) { - yyv4455 = yyv4455[:yyrl4455] + yyrg4498 := len(yyv4498) > 0 + yyv24498 := yyv4498 + yyrl4498, yyrt4498 = z.DecInferLen(yyl4498, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4498 { + if yyrl4498 <= cap(yyv4498) { + yyv4498 = yyv4498[:yyrl4498] } else { - yyv4455 = make([]EnvVar, yyrl4455) + yyv4498 = make([]EnvVar, yyrl4498) } } else { - yyv4455 = make([]EnvVar, yyrl4455) + yyv4498 = make([]EnvVar, yyrl4498) } - yyc4455 = true - yyrr4455 = len(yyv4455) - if yyrg4455 { - copy(yyv4455, yyv24455) + yyc4498 = true + yyrr4498 = len(yyv4498) + if yyrg4498 { + copy(yyv4498, yyv24498) } - } else if yyl4455 != len(yyv4455) { - yyv4455 = yyv4455[:yyl4455] - yyc4455 = true + } else if yyl4498 != len(yyv4498) { + yyv4498 = yyv4498[:yyl4498] + yyc4498 = true } - yyj4455 := 0 - for ; yyj4455 < yyrr4455; yyj4455++ { - yyh4455.ElemContainerState(yyj4455) + yyj4498 := 0 + for ; yyj4498 < yyrr4498; yyj4498++ { + yyh4498.ElemContainerState(yyj4498) if r.TryDecodeAsNil() { - yyv4455[yyj4455] = EnvVar{} + yyv4498[yyj4498] = EnvVar{} } else { - yyv4456 := &yyv4455[yyj4455] - yyv4456.CodecDecodeSelf(d) + yyv4499 := &yyv4498[yyj4498] + yyv4499.CodecDecodeSelf(d) } } - if yyrt4455 { - for ; yyj4455 < yyl4455; yyj4455++ { - yyv4455 = append(yyv4455, EnvVar{}) - yyh4455.ElemContainerState(yyj4455) + if yyrt4498 { + for ; yyj4498 < yyl4498; yyj4498++ { + yyv4498 = append(yyv4498, EnvVar{}) + yyh4498.ElemContainerState(yyj4498) if r.TryDecodeAsNil() { - yyv4455[yyj4455] = EnvVar{} + yyv4498[yyj4498] = EnvVar{} } else { - yyv4457 := &yyv4455[yyj4455] - yyv4457.CodecDecodeSelf(d) + yyv4500 := &yyv4498[yyj4498] + yyv4500.CodecDecodeSelf(d) } } } } else { - yyj4455 := 0 - for ; !r.CheckBreak(); yyj4455++ { + yyj4498 := 0 + for ; !r.CheckBreak(); yyj4498++ { - if yyj4455 >= len(yyv4455) { - yyv4455 = append(yyv4455, EnvVar{}) // var yyz4455 EnvVar - yyc4455 = true + if yyj4498 >= len(yyv4498) { + yyv4498 = append(yyv4498, EnvVar{}) // var yyz4498 EnvVar + yyc4498 = true } - yyh4455.ElemContainerState(yyj4455) - if yyj4455 < len(yyv4455) { + yyh4498.ElemContainerState(yyj4498) + if yyj4498 < len(yyv4498) { if r.TryDecodeAsNil() { - yyv4455[yyj4455] = EnvVar{} + yyv4498[yyj4498] = EnvVar{} } else { - yyv4458 := &yyv4455[yyj4455] - yyv4458.CodecDecodeSelf(d) + yyv4501 := &yyv4498[yyj4498] + yyv4501.CodecDecodeSelf(d) } } else { @@ -55782,17 +56393,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4455 < len(yyv4455) { - yyv4455 = yyv4455[:yyj4455] - yyc4455 = true - } else if yyj4455 == 0 && yyv4455 == nil { - yyv4455 = []EnvVar{} - yyc4455 = true + if yyj4498 < len(yyv4498) { + yyv4498 = yyv4498[:yyj4498] + yyc4498 = true + } else if yyj4498 == 0 && yyv4498 == nil { + yyv4498 = []EnvVar{} + yyc4498 = true } } - yyh4455.End() - if yyc4455 { - *v = yyv4455 + yyh4498.End() + if yyc4498 { + *v = yyv4498 } } @@ -55801,10 +56412,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4459 := range v { + for _, yyv4502 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4460 := &yyv4459 - yy4460.CodecEncodeSelf(e) + yy4503 := &yyv4502 + yy4503.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55814,83 +56425,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4461 := *v - yyh4461, yyl4461 := z.DecSliceHelperStart() - var yyc4461 bool - if yyl4461 == 0 { - if yyv4461 == nil { - yyv4461 = []VolumeMount{} - yyc4461 = true - } else if len(yyv4461) != 0 { - yyv4461 = yyv4461[:0] - yyc4461 = true + yyv4504 := *v + yyh4504, yyl4504 := z.DecSliceHelperStart() + var yyc4504 bool + if yyl4504 == 0 { + if yyv4504 == nil { + yyv4504 = []VolumeMount{} + yyc4504 = true + } else if len(yyv4504) != 0 { + yyv4504 = yyv4504[:0] + yyc4504 = true } - } else if yyl4461 > 0 { - var yyrr4461, yyrl4461 int - var yyrt4461 bool - if yyl4461 > cap(yyv4461) { + } else if yyl4504 > 0 { + var yyrr4504, yyrl4504 int + var yyrt4504 bool + if yyl4504 > cap(yyv4504) { - yyrg4461 := len(yyv4461) > 0 - yyv24461 := yyv4461 - yyrl4461, yyrt4461 = z.DecInferLen(yyl4461, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4461 { - if yyrl4461 <= cap(yyv4461) { - yyv4461 = yyv4461[:yyrl4461] + yyrg4504 := len(yyv4504) > 0 + yyv24504 := yyv4504 + yyrl4504, yyrt4504 = z.DecInferLen(yyl4504, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4504 { + if yyrl4504 <= cap(yyv4504) { + yyv4504 = yyv4504[:yyrl4504] } else { - yyv4461 = make([]VolumeMount, yyrl4461) + yyv4504 = make([]VolumeMount, yyrl4504) } } else { - yyv4461 = make([]VolumeMount, yyrl4461) + yyv4504 = make([]VolumeMount, yyrl4504) } - yyc4461 = true - yyrr4461 = len(yyv4461) - if yyrg4461 { - copy(yyv4461, yyv24461) + yyc4504 = true + yyrr4504 = len(yyv4504) + if yyrg4504 { + copy(yyv4504, yyv24504) } - } else if yyl4461 != len(yyv4461) { - yyv4461 = yyv4461[:yyl4461] - yyc4461 = true + } else if yyl4504 != len(yyv4504) { + yyv4504 = yyv4504[:yyl4504] + yyc4504 = true } - yyj4461 := 0 - for ; yyj4461 < yyrr4461; yyj4461++ { - yyh4461.ElemContainerState(yyj4461) + yyj4504 := 0 + for ; yyj4504 < yyrr4504; yyj4504++ { + yyh4504.ElemContainerState(yyj4504) if r.TryDecodeAsNil() { - yyv4461[yyj4461] = VolumeMount{} + yyv4504[yyj4504] = VolumeMount{} } else { - yyv4462 := &yyv4461[yyj4461] - yyv4462.CodecDecodeSelf(d) + yyv4505 := &yyv4504[yyj4504] + yyv4505.CodecDecodeSelf(d) } } - if yyrt4461 { - for ; yyj4461 < yyl4461; yyj4461++ { - yyv4461 = append(yyv4461, VolumeMount{}) - yyh4461.ElemContainerState(yyj4461) + if yyrt4504 { + for ; yyj4504 < yyl4504; yyj4504++ { + yyv4504 = append(yyv4504, VolumeMount{}) + yyh4504.ElemContainerState(yyj4504) if r.TryDecodeAsNil() { - yyv4461[yyj4461] = VolumeMount{} + yyv4504[yyj4504] = VolumeMount{} } else { - yyv4463 := &yyv4461[yyj4461] - yyv4463.CodecDecodeSelf(d) + yyv4506 := &yyv4504[yyj4504] + yyv4506.CodecDecodeSelf(d) } } } } else { - yyj4461 := 0 - for ; !r.CheckBreak(); yyj4461++ { + yyj4504 := 0 + for ; !r.CheckBreak(); yyj4504++ { - if yyj4461 >= len(yyv4461) { - yyv4461 = append(yyv4461, VolumeMount{}) // var yyz4461 VolumeMount - yyc4461 = true + if yyj4504 >= len(yyv4504) { + yyv4504 = append(yyv4504, VolumeMount{}) // var yyz4504 VolumeMount + yyc4504 = true } - yyh4461.ElemContainerState(yyj4461) - if yyj4461 < len(yyv4461) { + yyh4504.ElemContainerState(yyj4504) + if yyj4504 < len(yyv4504) { if r.TryDecodeAsNil() { - yyv4461[yyj4461] = VolumeMount{} + yyv4504[yyj4504] = VolumeMount{} } else { - yyv4464 := &yyv4461[yyj4461] - yyv4464.CodecDecodeSelf(d) + yyv4507 := &yyv4504[yyj4504] + yyv4507.CodecDecodeSelf(d) } } else { @@ -55898,17 +56509,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4461 < len(yyv4461) { - yyv4461 = yyv4461[:yyj4461] - yyc4461 = true - } else if yyj4461 == 0 && yyv4461 == nil { - yyv4461 = []VolumeMount{} - yyc4461 = true + if yyj4504 < len(yyv4504) { + yyv4504 = yyv4504[:yyj4504] + yyc4504 = true + } else if yyj4504 == 0 && yyv4504 == nil { + yyv4504 = []VolumeMount{} + yyc4504 = true } } - yyh4461.End() - if yyc4461 { - *v = yyv4461 + yyh4504.End() + if yyc4504 { + *v = yyv4504 } } @@ -55917,10 +56528,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4465 := range v { + for _, yyv4508 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4466 := &yyv4465 - yy4466.CodecEncodeSelf(e) + yy4509 := &yyv4508 + yy4509.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55930,83 +56541,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4467 := *v - yyh4467, yyl4467 := z.DecSliceHelperStart() - var yyc4467 bool - if yyl4467 == 0 { - if yyv4467 == nil { - yyv4467 = []NodeSelectorTerm{} - yyc4467 = true - } else if len(yyv4467) != 0 { - yyv4467 = yyv4467[:0] - yyc4467 = true + yyv4510 := *v + yyh4510, yyl4510 := z.DecSliceHelperStart() + var yyc4510 bool + if yyl4510 == 0 { + if yyv4510 == nil { + yyv4510 = []NodeSelectorTerm{} + yyc4510 = true + } else if len(yyv4510) != 0 { + yyv4510 = yyv4510[:0] + yyc4510 = true } - } else if yyl4467 > 0 { - var yyrr4467, yyrl4467 int - var yyrt4467 bool - if yyl4467 > cap(yyv4467) { + } else if yyl4510 > 0 { + var yyrr4510, yyrl4510 int + var yyrt4510 bool + if yyl4510 > cap(yyv4510) { - yyrg4467 := len(yyv4467) > 0 - yyv24467 := yyv4467 - yyrl4467, yyrt4467 = z.DecInferLen(yyl4467, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4467 { - if yyrl4467 <= cap(yyv4467) { - yyv4467 = yyv4467[:yyrl4467] + yyrg4510 := len(yyv4510) > 0 + yyv24510 := yyv4510 + yyrl4510, yyrt4510 = z.DecInferLen(yyl4510, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4510 { + if yyrl4510 <= cap(yyv4510) { + yyv4510 = yyv4510[:yyrl4510] } else { - yyv4467 = make([]NodeSelectorTerm, yyrl4467) + yyv4510 = make([]NodeSelectorTerm, yyrl4510) } } else { - yyv4467 = make([]NodeSelectorTerm, yyrl4467) + yyv4510 = make([]NodeSelectorTerm, yyrl4510) } - yyc4467 = true - yyrr4467 = len(yyv4467) - if yyrg4467 { - copy(yyv4467, yyv24467) + yyc4510 = true + yyrr4510 = len(yyv4510) + if yyrg4510 { + copy(yyv4510, yyv24510) } - } else if yyl4467 != len(yyv4467) { - yyv4467 = yyv4467[:yyl4467] - yyc4467 = true + } else if yyl4510 != len(yyv4510) { + yyv4510 = yyv4510[:yyl4510] + yyc4510 = true } - yyj4467 := 0 - for ; yyj4467 < yyrr4467; yyj4467++ { - yyh4467.ElemContainerState(yyj4467) + yyj4510 := 0 + for ; yyj4510 < yyrr4510; yyj4510++ { + yyh4510.ElemContainerState(yyj4510) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = NodeSelectorTerm{} + yyv4510[yyj4510] = NodeSelectorTerm{} } else { - yyv4468 := &yyv4467[yyj4467] - yyv4468.CodecDecodeSelf(d) + yyv4511 := &yyv4510[yyj4510] + yyv4511.CodecDecodeSelf(d) } } - if yyrt4467 { - for ; yyj4467 < yyl4467; yyj4467++ { - yyv4467 = append(yyv4467, NodeSelectorTerm{}) - yyh4467.ElemContainerState(yyj4467) + if yyrt4510 { + for ; yyj4510 < yyl4510; yyj4510++ { + yyv4510 = append(yyv4510, NodeSelectorTerm{}) + yyh4510.ElemContainerState(yyj4510) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = NodeSelectorTerm{} + yyv4510[yyj4510] = NodeSelectorTerm{} } else { - yyv4469 := &yyv4467[yyj4467] - yyv4469.CodecDecodeSelf(d) + yyv4512 := &yyv4510[yyj4510] + yyv4512.CodecDecodeSelf(d) } } } } else { - yyj4467 := 0 - for ; !r.CheckBreak(); yyj4467++ { + yyj4510 := 0 + for ; !r.CheckBreak(); yyj4510++ { - if yyj4467 >= len(yyv4467) { - yyv4467 = append(yyv4467, NodeSelectorTerm{}) // var yyz4467 NodeSelectorTerm - yyc4467 = true + if yyj4510 >= len(yyv4510) { + yyv4510 = append(yyv4510, NodeSelectorTerm{}) // var yyz4510 NodeSelectorTerm + yyc4510 = true } - yyh4467.ElemContainerState(yyj4467) - if yyj4467 < len(yyv4467) { + yyh4510.ElemContainerState(yyj4510) + if yyj4510 < len(yyv4510) { if r.TryDecodeAsNil() { - yyv4467[yyj4467] = NodeSelectorTerm{} + yyv4510[yyj4510] = NodeSelectorTerm{} } else { - yyv4470 := &yyv4467[yyj4467] - yyv4470.CodecDecodeSelf(d) + yyv4513 := &yyv4510[yyj4510] + yyv4513.CodecDecodeSelf(d) } } else { @@ -56014,17 +56625,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4467 < len(yyv4467) { - yyv4467 = yyv4467[:yyj4467] - yyc4467 = true - } else if yyj4467 == 0 && yyv4467 == nil { - yyv4467 = []NodeSelectorTerm{} - yyc4467 = true + if yyj4510 < len(yyv4510) { + yyv4510 = yyv4510[:yyj4510] + yyc4510 = true + } else if yyj4510 == 0 && yyv4510 == nil { + yyv4510 = []NodeSelectorTerm{} + yyc4510 = true } } - yyh4467.End() - if yyc4467 { - *v = yyv4467 + yyh4510.End() + if yyc4510 { + *v = yyv4510 } } @@ -56033,10 +56644,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4471 := range v { + for _, yyv4514 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4472 := &yyv4471 - yy4472.CodecEncodeSelf(e) + yy4515 := &yyv4514 + yy4515.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56046,83 +56657,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4473 := *v - yyh4473, yyl4473 := z.DecSliceHelperStart() - var yyc4473 bool - if yyl4473 == 0 { - if yyv4473 == nil { - yyv4473 = []NodeSelectorRequirement{} - yyc4473 = true - } else if len(yyv4473) != 0 { - yyv4473 = yyv4473[:0] - yyc4473 = true + yyv4516 := *v + yyh4516, yyl4516 := z.DecSliceHelperStart() + var yyc4516 bool + if yyl4516 == 0 { + if yyv4516 == nil { + yyv4516 = []NodeSelectorRequirement{} + yyc4516 = true + } else if len(yyv4516) != 0 { + yyv4516 = yyv4516[:0] + yyc4516 = true } - } else if yyl4473 > 0 { - var yyrr4473, yyrl4473 int - var yyrt4473 bool - if yyl4473 > cap(yyv4473) { + } else if yyl4516 > 0 { + var yyrr4516, yyrl4516 int + var yyrt4516 bool + if yyl4516 > cap(yyv4516) { - yyrg4473 := len(yyv4473) > 0 - yyv24473 := yyv4473 - yyrl4473, yyrt4473 = z.DecInferLen(yyl4473, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4473 { - if yyrl4473 <= cap(yyv4473) { - yyv4473 = yyv4473[:yyrl4473] + yyrg4516 := len(yyv4516) > 0 + yyv24516 := yyv4516 + yyrl4516, yyrt4516 = z.DecInferLen(yyl4516, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4516 { + if yyrl4516 <= cap(yyv4516) { + yyv4516 = yyv4516[:yyrl4516] } else { - yyv4473 = make([]NodeSelectorRequirement, yyrl4473) + yyv4516 = make([]NodeSelectorRequirement, yyrl4516) } } else { - yyv4473 = make([]NodeSelectorRequirement, yyrl4473) + yyv4516 = make([]NodeSelectorRequirement, yyrl4516) } - yyc4473 = true - yyrr4473 = len(yyv4473) - if yyrg4473 { - copy(yyv4473, yyv24473) + yyc4516 = true + yyrr4516 = len(yyv4516) + if yyrg4516 { + copy(yyv4516, yyv24516) } - } else if yyl4473 != len(yyv4473) { - yyv4473 = yyv4473[:yyl4473] - yyc4473 = true + } else if yyl4516 != len(yyv4516) { + yyv4516 = yyv4516[:yyl4516] + yyc4516 = true } - yyj4473 := 0 - for ; yyj4473 < yyrr4473; yyj4473++ { - yyh4473.ElemContainerState(yyj4473) + yyj4516 := 0 + for ; yyj4516 < yyrr4516; yyj4516++ { + yyh4516.ElemContainerState(yyj4516) if r.TryDecodeAsNil() { - yyv4473[yyj4473] = NodeSelectorRequirement{} + yyv4516[yyj4516] = NodeSelectorRequirement{} } else { - yyv4474 := &yyv4473[yyj4473] - yyv4474.CodecDecodeSelf(d) + yyv4517 := &yyv4516[yyj4516] + yyv4517.CodecDecodeSelf(d) } } - if yyrt4473 { - for ; yyj4473 < yyl4473; yyj4473++ { - yyv4473 = append(yyv4473, NodeSelectorRequirement{}) - yyh4473.ElemContainerState(yyj4473) + if yyrt4516 { + for ; yyj4516 < yyl4516; yyj4516++ { + yyv4516 = append(yyv4516, NodeSelectorRequirement{}) + yyh4516.ElemContainerState(yyj4516) if r.TryDecodeAsNil() { - yyv4473[yyj4473] = NodeSelectorRequirement{} + yyv4516[yyj4516] = NodeSelectorRequirement{} } else { - yyv4475 := &yyv4473[yyj4473] - yyv4475.CodecDecodeSelf(d) + yyv4518 := &yyv4516[yyj4516] + yyv4518.CodecDecodeSelf(d) } } } } else { - yyj4473 := 0 - for ; !r.CheckBreak(); yyj4473++ { + yyj4516 := 0 + for ; !r.CheckBreak(); yyj4516++ { - if yyj4473 >= len(yyv4473) { - yyv4473 = append(yyv4473, NodeSelectorRequirement{}) // var yyz4473 NodeSelectorRequirement - yyc4473 = true + if yyj4516 >= len(yyv4516) { + yyv4516 = append(yyv4516, NodeSelectorRequirement{}) // var yyz4516 NodeSelectorRequirement + yyc4516 = true } - yyh4473.ElemContainerState(yyj4473) - if yyj4473 < len(yyv4473) { + yyh4516.ElemContainerState(yyj4516) + if yyj4516 < len(yyv4516) { if r.TryDecodeAsNil() { - yyv4473[yyj4473] = NodeSelectorRequirement{} + yyv4516[yyj4516] = NodeSelectorRequirement{} } else { - yyv4476 := &yyv4473[yyj4473] - yyv4476.CodecDecodeSelf(d) + yyv4519 := &yyv4516[yyj4516] + yyv4519.CodecDecodeSelf(d) } } else { @@ -56130,17 +56741,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4473 < len(yyv4473) { - yyv4473 = yyv4473[:yyj4473] - yyc4473 = true - } else if yyj4473 == 0 && yyv4473 == nil { - yyv4473 = []NodeSelectorRequirement{} - yyc4473 = true + if yyj4516 < len(yyv4516) { + yyv4516 = yyv4516[:yyj4516] + yyc4516 = true + } else if yyj4516 == 0 && yyv4516 == nil { + yyv4516 = []NodeSelectorRequirement{} + yyc4516 = true } } - yyh4473.End() - if yyc4473 { - *v = yyv4473 + yyh4516.End() + if yyc4516 { + *v = yyv4516 } } @@ -56149,10 +56760,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4477 := range v { + for _, yyv4520 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4478 := &yyv4477 - yy4478.CodecEncodeSelf(e) + yy4521 := &yyv4520 + yy4521.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56162,83 +56773,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4479 := *v - yyh4479, yyl4479 := z.DecSliceHelperStart() - var yyc4479 bool - if yyl4479 == 0 { - if yyv4479 == nil { - yyv4479 = []PodAffinityTerm{} - yyc4479 = true - } else if len(yyv4479) != 0 { - yyv4479 = yyv4479[:0] - yyc4479 = true + yyv4522 := *v + yyh4522, yyl4522 := z.DecSliceHelperStart() + var yyc4522 bool + if yyl4522 == 0 { + if yyv4522 == nil { + yyv4522 = []PodAffinityTerm{} + yyc4522 = true + } else if len(yyv4522) != 0 { + yyv4522 = yyv4522[:0] + yyc4522 = true } - } else if yyl4479 > 0 { - var yyrr4479, yyrl4479 int - var yyrt4479 bool - if yyl4479 > cap(yyv4479) { + } else if yyl4522 > 0 { + var yyrr4522, yyrl4522 int + var yyrt4522 bool + if yyl4522 > cap(yyv4522) { - yyrg4479 := len(yyv4479) > 0 - yyv24479 := yyv4479 - yyrl4479, yyrt4479 = z.DecInferLen(yyl4479, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4479 { - if yyrl4479 <= cap(yyv4479) { - yyv4479 = yyv4479[:yyrl4479] + yyrg4522 := len(yyv4522) > 0 + yyv24522 := yyv4522 + yyrl4522, yyrt4522 = z.DecInferLen(yyl4522, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4522 { + if yyrl4522 <= cap(yyv4522) { + yyv4522 = yyv4522[:yyrl4522] } else { - yyv4479 = make([]PodAffinityTerm, yyrl4479) + yyv4522 = make([]PodAffinityTerm, yyrl4522) } } else { - yyv4479 = make([]PodAffinityTerm, yyrl4479) + yyv4522 = make([]PodAffinityTerm, yyrl4522) } - yyc4479 = true - yyrr4479 = len(yyv4479) - if yyrg4479 { - copy(yyv4479, yyv24479) + yyc4522 = true + yyrr4522 = len(yyv4522) + if yyrg4522 { + copy(yyv4522, yyv24522) } - } else if yyl4479 != len(yyv4479) { - yyv4479 = yyv4479[:yyl4479] - yyc4479 = true + } else if yyl4522 != len(yyv4522) { + yyv4522 = yyv4522[:yyl4522] + yyc4522 = true } - yyj4479 := 0 - for ; yyj4479 < yyrr4479; yyj4479++ { - yyh4479.ElemContainerState(yyj4479) + yyj4522 := 0 + for ; yyj4522 < yyrr4522; yyj4522++ { + yyh4522.ElemContainerState(yyj4522) if r.TryDecodeAsNil() { - yyv4479[yyj4479] = PodAffinityTerm{} + yyv4522[yyj4522] = PodAffinityTerm{} } else { - yyv4480 := &yyv4479[yyj4479] - yyv4480.CodecDecodeSelf(d) + yyv4523 := &yyv4522[yyj4522] + yyv4523.CodecDecodeSelf(d) } } - if yyrt4479 { - for ; yyj4479 < yyl4479; yyj4479++ { - yyv4479 = append(yyv4479, PodAffinityTerm{}) - yyh4479.ElemContainerState(yyj4479) + if yyrt4522 { + for ; yyj4522 < yyl4522; yyj4522++ { + yyv4522 = append(yyv4522, PodAffinityTerm{}) + yyh4522.ElemContainerState(yyj4522) if r.TryDecodeAsNil() { - yyv4479[yyj4479] = PodAffinityTerm{} + yyv4522[yyj4522] = PodAffinityTerm{} } else { - yyv4481 := &yyv4479[yyj4479] - yyv4481.CodecDecodeSelf(d) + yyv4524 := &yyv4522[yyj4522] + yyv4524.CodecDecodeSelf(d) } } } } else { - yyj4479 := 0 - for ; !r.CheckBreak(); yyj4479++ { + yyj4522 := 0 + for ; !r.CheckBreak(); yyj4522++ { - if yyj4479 >= len(yyv4479) { - yyv4479 = append(yyv4479, PodAffinityTerm{}) // var yyz4479 PodAffinityTerm - yyc4479 = true + if yyj4522 >= len(yyv4522) { + yyv4522 = append(yyv4522, PodAffinityTerm{}) // var yyz4522 PodAffinityTerm + yyc4522 = true } - yyh4479.ElemContainerState(yyj4479) - if yyj4479 < len(yyv4479) { + yyh4522.ElemContainerState(yyj4522) + if yyj4522 < len(yyv4522) { if r.TryDecodeAsNil() { - yyv4479[yyj4479] = PodAffinityTerm{} + yyv4522[yyj4522] = PodAffinityTerm{} } else { - yyv4482 := &yyv4479[yyj4479] - yyv4482.CodecDecodeSelf(d) + yyv4525 := &yyv4522[yyj4522] + yyv4525.CodecDecodeSelf(d) } } else { @@ -56246,17 +56857,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4479 < len(yyv4479) { - yyv4479 = yyv4479[:yyj4479] - yyc4479 = true - } else if yyj4479 == 0 && yyv4479 == nil { - yyv4479 = []PodAffinityTerm{} - yyc4479 = true + if yyj4522 < len(yyv4522) { + yyv4522 = yyv4522[:yyj4522] + yyc4522 = true + } else if yyj4522 == 0 && yyv4522 == nil { + yyv4522 = []PodAffinityTerm{} + yyc4522 = true } } - yyh4479.End() - if yyc4479 { - *v = yyv4479 + yyh4522.End() + if yyc4522 { + *v = yyv4522 } } @@ -56265,10 +56876,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4483 := range v { + for _, yyv4526 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4484 := &yyv4483 - yy4484.CodecEncodeSelf(e) + yy4527 := &yyv4526 + yy4527.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56278,83 +56889,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4485 := *v - yyh4485, yyl4485 := z.DecSliceHelperStart() - var yyc4485 bool - if yyl4485 == 0 { - if yyv4485 == nil { - yyv4485 = []WeightedPodAffinityTerm{} - yyc4485 = true - } else if len(yyv4485) != 0 { - yyv4485 = yyv4485[:0] - yyc4485 = true + yyv4528 := *v + yyh4528, yyl4528 := z.DecSliceHelperStart() + var yyc4528 bool + if yyl4528 == 0 { + if yyv4528 == nil { + yyv4528 = []WeightedPodAffinityTerm{} + yyc4528 = true + } else if len(yyv4528) != 0 { + yyv4528 = yyv4528[:0] + yyc4528 = true } - } else if yyl4485 > 0 { - var yyrr4485, yyrl4485 int - var yyrt4485 bool - if yyl4485 > cap(yyv4485) { + } else if yyl4528 > 0 { + var yyrr4528, yyrl4528 int + var yyrt4528 bool + if yyl4528 > cap(yyv4528) { - yyrg4485 := len(yyv4485) > 0 - yyv24485 := yyv4485 - yyrl4485, yyrt4485 = z.DecInferLen(yyl4485, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4485 { - if yyrl4485 <= cap(yyv4485) { - yyv4485 = yyv4485[:yyrl4485] + yyrg4528 := len(yyv4528) > 0 + yyv24528 := yyv4528 + yyrl4528, yyrt4528 = z.DecInferLen(yyl4528, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4528 { + if yyrl4528 <= cap(yyv4528) { + yyv4528 = yyv4528[:yyrl4528] } else { - yyv4485 = make([]WeightedPodAffinityTerm, yyrl4485) + yyv4528 = make([]WeightedPodAffinityTerm, yyrl4528) } } else { - yyv4485 = make([]WeightedPodAffinityTerm, yyrl4485) + yyv4528 = make([]WeightedPodAffinityTerm, yyrl4528) } - yyc4485 = true - yyrr4485 = len(yyv4485) - if yyrg4485 { - copy(yyv4485, yyv24485) + yyc4528 = true + yyrr4528 = len(yyv4528) + if yyrg4528 { + copy(yyv4528, yyv24528) } - } else if yyl4485 != len(yyv4485) { - yyv4485 = yyv4485[:yyl4485] - yyc4485 = true + } else if yyl4528 != len(yyv4528) { + yyv4528 = yyv4528[:yyl4528] + yyc4528 = true } - yyj4485 := 0 - for ; yyj4485 < yyrr4485; yyj4485++ { - yyh4485.ElemContainerState(yyj4485) + yyj4528 := 0 + for ; yyj4528 < yyrr4528; yyj4528++ { + yyh4528.ElemContainerState(yyj4528) if r.TryDecodeAsNil() { - yyv4485[yyj4485] = WeightedPodAffinityTerm{} + yyv4528[yyj4528] = WeightedPodAffinityTerm{} } else { - yyv4486 := &yyv4485[yyj4485] - yyv4486.CodecDecodeSelf(d) + yyv4529 := &yyv4528[yyj4528] + yyv4529.CodecDecodeSelf(d) } } - if yyrt4485 { - for ; yyj4485 < yyl4485; yyj4485++ { - yyv4485 = append(yyv4485, WeightedPodAffinityTerm{}) - yyh4485.ElemContainerState(yyj4485) + if yyrt4528 { + for ; yyj4528 < yyl4528; yyj4528++ { + yyv4528 = append(yyv4528, WeightedPodAffinityTerm{}) + yyh4528.ElemContainerState(yyj4528) if r.TryDecodeAsNil() { - yyv4485[yyj4485] = WeightedPodAffinityTerm{} + yyv4528[yyj4528] = WeightedPodAffinityTerm{} } else { - yyv4487 := &yyv4485[yyj4485] - yyv4487.CodecDecodeSelf(d) + yyv4530 := &yyv4528[yyj4528] + yyv4530.CodecDecodeSelf(d) } } } } else { - yyj4485 := 0 - for ; !r.CheckBreak(); yyj4485++ { + yyj4528 := 0 + for ; !r.CheckBreak(); yyj4528++ { - if yyj4485 >= len(yyv4485) { - yyv4485 = append(yyv4485, WeightedPodAffinityTerm{}) // var yyz4485 WeightedPodAffinityTerm - yyc4485 = true + if yyj4528 >= len(yyv4528) { + yyv4528 = append(yyv4528, WeightedPodAffinityTerm{}) // var yyz4528 WeightedPodAffinityTerm + yyc4528 = true } - yyh4485.ElemContainerState(yyj4485) - if yyj4485 < len(yyv4485) { + yyh4528.ElemContainerState(yyj4528) + if yyj4528 < len(yyv4528) { if r.TryDecodeAsNil() { - yyv4485[yyj4485] = WeightedPodAffinityTerm{} + yyv4528[yyj4528] = WeightedPodAffinityTerm{} } else { - yyv4488 := &yyv4485[yyj4485] - yyv4488.CodecDecodeSelf(d) + yyv4531 := &yyv4528[yyj4528] + yyv4531.CodecDecodeSelf(d) } } else { @@ -56362,17 +56973,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4485 < len(yyv4485) { - yyv4485 = yyv4485[:yyj4485] - yyc4485 = true - } else if yyj4485 == 0 && yyv4485 == nil { - yyv4485 = []WeightedPodAffinityTerm{} - yyc4485 = true + if yyj4528 < len(yyv4528) { + yyv4528 = yyv4528[:yyj4528] + yyc4528 = true + } else if yyj4528 == 0 && yyv4528 == nil { + yyv4528 = []WeightedPodAffinityTerm{} + yyc4528 = true } } - yyh4485.End() - if yyc4485 { - *v = yyv4485 + yyh4528.End() + if yyc4528 { + *v = yyv4528 } } @@ -56381,10 +56992,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4489 := range v { + for _, yyv4532 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4490 := &yyv4489 - yy4490.CodecEncodeSelf(e) + yy4533 := &yyv4532 + yy4533.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56394,83 +57005,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4491 := *v - yyh4491, yyl4491 := z.DecSliceHelperStart() - var yyc4491 bool - if yyl4491 == 0 { - if yyv4491 == nil { - yyv4491 = []PreferredSchedulingTerm{} - yyc4491 = true - } else if len(yyv4491) != 0 { - yyv4491 = yyv4491[:0] - yyc4491 = true + yyv4534 := *v + yyh4534, yyl4534 := z.DecSliceHelperStart() + var yyc4534 bool + if yyl4534 == 0 { + if yyv4534 == nil { + yyv4534 = []PreferredSchedulingTerm{} + yyc4534 = true + } else if len(yyv4534) != 0 { + yyv4534 = yyv4534[:0] + yyc4534 = true } - } else if yyl4491 > 0 { - var yyrr4491, yyrl4491 int - var yyrt4491 bool - if yyl4491 > cap(yyv4491) { + } else if yyl4534 > 0 { + var yyrr4534, yyrl4534 int + var yyrt4534 bool + if yyl4534 > cap(yyv4534) { - yyrg4491 := len(yyv4491) > 0 - yyv24491 := yyv4491 - yyrl4491, yyrt4491 = z.DecInferLen(yyl4491, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4491 { - if yyrl4491 <= cap(yyv4491) { - yyv4491 = yyv4491[:yyrl4491] + yyrg4534 := len(yyv4534) > 0 + yyv24534 := yyv4534 + yyrl4534, yyrt4534 = z.DecInferLen(yyl4534, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4534 { + if yyrl4534 <= cap(yyv4534) { + yyv4534 = yyv4534[:yyrl4534] } else { - yyv4491 = make([]PreferredSchedulingTerm, yyrl4491) + yyv4534 = make([]PreferredSchedulingTerm, yyrl4534) } } else { - yyv4491 = make([]PreferredSchedulingTerm, yyrl4491) + yyv4534 = make([]PreferredSchedulingTerm, yyrl4534) } - yyc4491 = true - yyrr4491 = len(yyv4491) - if yyrg4491 { - copy(yyv4491, yyv24491) + yyc4534 = true + yyrr4534 = len(yyv4534) + if yyrg4534 { + copy(yyv4534, yyv24534) } - } else if yyl4491 != len(yyv4491) { - yyv4491 = yyv4491[:yyl4491] - yyc4491 = true + } else if yyl4534 != len(yyv4534) { + yyv4534 = yyv4534[:yyl4534] + yyc4534 = true } - yyj4491 := 0 - for ; yyj4491 < yyrr4491; yyj4491++ { - yyh4491.ElemContainerState(yyj4491) + yyj4534 := 0 + for ; yyj4534 < yyrr4534; yyj4534++ { + yyh4534.ElemContainerState(yyj4534) if r.TryDecodeAsNil() { - yyv4491[yyj4491] = PreferredSchedulingTerm{} + yyv4534[yyj4534] = PreferredSchedulingTerm{} } else { - yyv4492 := &yyv4491[yyj4491] - yyv4492.CodecDecodeSelf(d) + yyv4535 := &yyv4534[yyj4534] + yyv4535.CodecDecodeSelf(d) } } - if yyrt4491 { - for ; yyj4491 < yyl4491; yyj4491++ { - yyv4491 = append(yyv4491, PreferredSchedulingTerm{}) - yyh4491.ElemContainerState(yyj4491) + if yyrt4534 { + for ; yyj4534 < yyl4534; yyj4534++ { + yyv4534 = append(yyv4534, PreferredSchedulingTerm{}) + yyh4534.ElemContainerState(yyj4534) if r.TryDecodeAsNil() { - yyv4491[yyj4491] = PreferredSchedulingTerm{} + yyv4534[yyj4534] = PreferredSchedulingTerm{} } else { - yyv4493 := &yyv4491[yyj4491] - yyv4493.CodecDecodeSelf(d) + yyv4536 := &yyv4534[yyj4534] + yyv4536.CodecDecodeSelf(d) } } } } else { - yyj4491 := 0 - for ; !r.CheckBreak(); yyj4491++ { + yyj4534 := 0 + for ; !r.CheckBreak(); yyj4534++ { - if yyj4491 >= len(yyv4491) { - yyv4491 = append(yyv4491, PreferredSchedulingTerm{}) // var yyz4491 PreferredSchedulingTerm - yyc4491 = true + if yyj4534 >= len(yyv4534) { + yyv4534 = append(yyv4534, PreferredSchedulingTerm{}) // var yyz4534 PreferredSchedulingTerm + yyc4534 = true } - yyh4491.ElemContainerState(yyj4491) - if yyj4491 < len(yyv4491) { + yyh4534.ElemContainerState(yyj4534) + if yyj4534 < len(yyv4534) { if r.TryDecodeAsNil() { - yyv4491[yyj4491] = PreferredSchedulingTerm{} + yyv4534[yyj4534] = PreferredSchedulingTerm{} } else { - yyv4494 := &yyv4491[yyj4491] - yyv4494.CodecDecodeSelf(d) + yyv4537 := &yyv4534[yyj4534] + yyv4537.CodecDecodeSelf(d) } } else { @@ -56478,17 +57089,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4491 < len(yyv4491) { - yyv4491 = yyv4491[:yyj4491] - yyc4491 = true - } else if yyj4491 == 0 && yyv4491 == nil { - yyv4491 = []PreferredSchedulingTerm{} - yyc4491 = true + if yyj4534 < len(yyv4534) { + yyv4534 = yyv4534[:yyj4534] + yyc4534 = true + } else if yyj4534 == 0 && yyv4534 == nil { + yyv4534 = []PreferredSchedulingTerm{} + yyc4534 = true } } - yyh4491.End() - if yyc4491 { - *v = yyv4491 + yyh4534.End() + if yyc4534 { + *v = yyv4534 } } @@ -56497,10 +57108,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4495 := range v { + for _, yyv4538 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4496 := &yyv4495 - yy4496.CodecEncodeSelf(e) + yy4539 := &yyv4538 + yy4539.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56510,83 +57121,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4497 := *v - yyh4497, yyl4497 := z.DecSliceHelperStart() - var yyc4497 bool - if yyl4497 == 0 { - if yyv4497 == nil { - yyv4497 = []Volume{} - yyc4497 = true - } else if len(yyv4497) != 0 { - yyv4497 = yyv4497[:0] - yyc4497 = true + yyv4540 := *v + yyh4540, yyl4540 := z.DecSliceHelperStart() + var yyc4540 bool + if yyl4540 == 0 { + if yyv4540 == nil { + yyv4540 = []Volume{} + yyc4540 = true + } else if len(yyv4540) != 0 { + yyv4540 = yyv4540[:0] + yyc4540 = true } - } else if yyl4497 > 0 { - var yyrr4497, yyrl4497 int - var yyrt4497 bool - if yyl4497 > cap(yyv4497) { + } else if yyl4540 > 0 { + var yyrr4540, yyrl4540 int + var yyrt4540 bool + if yyl4540 > cap(yyv4540) { - yyrg4497 := len(yyv4497) > 0 - yyv24497 := yyv4497 - yyrl4497, yyrt4497 = z.DecInferLen(yyl4497, z.DecBasicHandle().MaxInitLen, 176) - if yyrt4497 { - if yyrl4497 <= cap(yyv4497) { - yyv4497 = yyv4497[:yyrl4497] + yyrg4540 := len(yyv4540) > 0 + yyv24540 := yyv4540 + yyrl4540, yyrt4540 = z.DecInferLen(yyl4540, z.DecBasicHandle().MaxInitLen, 184) + if yyrt4540 { + if yyrl4540 <= cap(yyv4540) { + yyv4540 = yyv4540[:yyrl4540] } else { - yyv4497 = make([]Volume, yyrl4497) + yyv4540 = make([]Volume, yyrl4540) } } else { - yyv4497 = make([]Volume, yyrl4497) + yyv4540 = make([]Volume, yyrl4540) } - yyc4497 = true - yyrr4497 = len(yyv4497) - if yyrg4497 { - copy(yyv4497, yyv24497) + yyc4540 = true + yyrr4540 = len(yyv4540) + if yyrg4540 { + copy(yyv4540, yyv24540) } - } else if yyl4497 != len(yyv4497) { - yyv4497 = yyv4497[:yyl4497] - yyc4497 = true + } else if yyl4540 != len(yyv4540) { + yyv4540 = yyv4540[:yyl4540] + yyc4540 = true } - yyj4497 := 0 - for ; yyj4497 < yyrr4497; yyj4497++ { - yyh4497.ElemContainerState(yyj4497) + yyj4540 := 0 + for ; yyj4540 < yyrr4540; yyj4540++ { + yyh4540.ElemContainerState(yyj4540) if r.TryDecodeAsNil() { - yyv4497[yyj4497] = Volume{} + yyv4540[yyj4540] = Volume{} } else { - yyv4498 := &yyv4497[yyj4497] - yyv4498.CodecDecodeSelf(d) + yyv4541 := &yyv4540[yyj4540] + yyv4541.CodecDecodeSelf(d) } } - if yyrt4497 { - for ; yyj4497 < yyl4497; yyj4497++ { - yyv4497 = append(yyv4497, Volume{}) - yyh4497.ElemContainerState(yyj4497) + if yyrt4540 { + for ; yyj4540 < yyl4540; yyj4540++ { + yyv4540 = append(yyv4540, Volume{}) + yyh4540.ElemContainerState(yyj4540) if r.TryDecodeAsNil() { - yyv4497[yyj4497] = Volume{} + yyv4540[yyj4540] = Volume{} } else { - yyv4499 := &yyv4497[yyj4497] - yyv4499.CodecDecodeSelf(d) + yyv4542 := &yyv4540[yyj4540] + yyv4542.CodecDecodeSelf(d) } } } } else { - yyj4497 := 0 - for ; !r.CheckBreak(); yyj4497++ { + yyj4540 := 0 + for ; !r.CheckBreak(); yyj4540++ { - if yyj4497 >= len(yyv4497) { - yyv4497 = append(yyv4497, Volume{}) // var yyz4497 Volume - yyc4497 = true + if yyj4540 >= len(yyv4540) { + yyv4540 = append(yyv4540, Volume{}) // var yyz4540 Volume + yyc4540 = true } - yyh4497.ElemContainerState(yyj4497) - if yyj4497 < len(yyv4497) { + yyh4540.ElemContainerState(yyj4540) + if yyj4540 < len(yyv4540) { if r.TryDecodeAsNil() { - yyv4497[yyj4497] = Volume{} + yyv4540[yyj4540] = Volume{} } else { - yyv4500 := &yyv4497[yyj4497] - yyv4500.CodecDecodeSelf(d) + yyv4543 := &yyv4540[yyj4540] + yyv4543.CodecDecodeSelf(d) } } else { @@ -56594,17 +57205,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4497 < len(yyv4497) { - yyv4497 = yyv4497[:yyj4497] - yyc4497 = true - } else if yyj4497 == 0 && yyv4497 == nil { - yyv4497 = []Volume{} - yyc4497 = true + if yyj4540 < len(yyv4540) { + yyv4540 = yyv4540[:yyj4540] + yyc4540 = true + } else if yyj4540 == 0 && yyv4540 == nil { + yyv4540 = []Volume{} + yyc4540 = true } } - yyh4497.End() - if yyc4497 { - *v = yyv4497 + yyh4540.End() + if yyc4540 { + *v = yyv4540 } } @@ -56613,10 +57224,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4501 := range v { + for _, yyv4544 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4502 := &yyv4501 - yy4502.CodecEncodeSelf(e) + yy4545 := &yyv4544 + yy4545.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56626,83 +57237,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4503 := *v - yyh4503, yyl4503 := z.DecSliceHelperStart() - var yyc4503 bool - if yyl4503 == 0 { - if yyv4503 == nil { - yyv4503 = []Container{} - yyc4503 = true - } else if len(yyv4503) != 0 { - yyv4503 = yyv4503[:0] - yyc4503 = true + yyv4546 := *v + yyh4546, yyl4546 := z.DecSliceHelperStart() + var yyc4546 bool + if yyl4546 == 0 { + if yyv4546 == nil { + yyv4546 = []Container{} + yyc4546 = true + } else if len(yyv4546) != 0 { + yyv4546 = yyv4546[:0] + yyc4546 = true } - } else if yyl4503 > 0 { - var yyrr4503, yyrl4503 int - var yyrt4503 bool - if yyl4503 > cap(yyv4503) { + } else if yyl4546 > 0 { + var yyrr4546, yyrl4546 int + var yyrt4546 bool + if yyl4546 > cap(yyv4546) { - yyrg4503 := len(yyv4503) > 0 - yyv24503 := yyv4503 - yyrl4503, yyrt4503 = z.DecInferLen(yyl4503, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4503 { - if yyrl4503 <= cap(yyv4503) { - yyv4503 = yyv4503[:yyrl4503] + yyrg4546 := len(yyv4546) > 0 + yyv24546 := yyv4546 + yyrl4546, yyrt4546 = z.DecInferLen(yyl4546, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4546 { + if yyrl4546 <= cap(yyv4546) { + yyv4546 = yyv4546[:yyrl4546] } else { - yyv4503 = make([]Container, yyrl4503) + yyv4546 = make([]Container, yyrl4546) } } else { - yyv4503 = make([]Container, yyrl4503) + yyv4546 = make([]Container, yyrl4546) } - yyc4503 = true - yyrr4503 = len(yyv4503) - if yyrg4503 { - copy(yyv4503, yyv24503) + yyc4546 = true + yyrr4546 = len(yyv4546) + if yyrg4546 { + copy(yyv4546, yyv24546) } - } else if yyl4503 != len(yyv4503) { - yyv4503 = yyv4503[:yyl4503] - yyc4503 = true + } else if yyl4546 != len(yyv4546) { + yyv4546 = yyv4546[:yyl4546] + yyc4546 = true } - yyj4503 := 0 - for ; yyj4503 < yyrr4503; yyj4503++ { - yyh4503.ElemContainerState(yyj4503) + yyj4546 := 0 + for ; yyj4546 < yyrr4546; yyj4546++ { + yyh4546.ElemContainerState(yyj4546) if r.TryDecodeAsNil() { - yyv4503[yyj4503] = Container{} + yyv4546[yyj4546] = Container{} } else { - yyv4504 := &yyv4503[yyj4503] - yyv4504.CodecDecodeSelf(d) + yyv4547 := &yyv4546[yyj4546] + yyv4547.CodecDecodeSelf(d) } } - if yyrt4503 { - for ; yyj4503 < yyl4503; yyj4503++ { - yyv4503 = append(yyv4503, Container{}) - yyh4503.ElemContainerState(yyj4503) + if yyrt4546 { + for ; yyj4546 < yyl4546; yyj4546++ { + yyv4546 = append(yyv4546, Container{}) + yyh4546.ElemContainerState(yyj4546) if r.TryDecodeAsNil() { - yyv4503[yyj4503] = Container{} + yyv4546[yyj4546] = Container{} } else { - yyv4505 := &yyv4503[yyj4503] - yyv4505.CodecDecodeSelf(d) + yyv4548 := &yyv4546[yyj4546] + yyv4548.CodecDecodeSelf(d) } } } } else { - yyj4503 := 0 - for ; !r.CheckBreak(); yyj4503++ { + yyj4546 := 0 + for ; !r.CheckBreak(); yyj4546++ { - if yyj4503 >= len(yyv4503) { - yyv4503 = append(yyv4503, Container{}) // var yyz4503 Container - yyc4503 = true + if yyj4546 >= len(yyv4546) { + yyv4546 = append(yyv4546, Container{}) // var yyz4546 Container + yyc4546 = true } - yyh4503.ElemContainerState(yyj4503) - if yyj4503 < len(yyv4503) { + yyh4546.ElemContainerState(yyj4546) + if yyj4546 < len(yyv4546) { if r.TryDecodeAsNil() { - yyv4503[yyj4503] = Container{} + yyv4546[yyj4546] = Container{} } else { - yyv4506 := &yyv4503[yyj4503] - yyv4506.CodecDecodeSelf(d) + yyv4549 := &yyv4546[yyj4546] + yyv4549.CodecDecodeSelf(d) } } else { @@ -56710,17 +57321,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4503 < len(yyv4503) { - yyv4503 = yyv4503[:yyj4503] - yyc4503 = true - } else if yyj4503 == 0 && yyv4503 == nil { - yyv4503 = []Container{} - yyc4503 = true + if yyj4546 < len(yyv4546) { + yyv4546 = yyv4546[:yyj4546] + yyc4546 = true + } else if yyj4546 == 0 && yyv4546 == nil { + yyv4546 = []Container{} + yyc4546 = true } } - yyh4503.End() - if yyc4503 { - *v = yyv4503 + yyh4546.End() + if yyc4546 { + *v = yyv4546 } } @@ -56729,10 +57340,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4507 := range v { + for _, yyv4550 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4508 := &yyv4507 - yy4508.CodecEncodeSelf(e) + yy4551 := &yyv4550 + yy4551.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56742,83 +57353,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4509 := *v - yyh4509, yyl4509 := z.DecSliceHelperStart() - var yyc4509 bool - if yyl4509 == 0 { - if yyv4509 == nil { - yyv4509 = []LocalObjectReference{} - yyc4509 = true - } else if len(yyv4509) != 0 { - yyv4509 = yyv4509[:0] - yyc4509 = true + yyv4552 := *v + yyh4552, yyl4552 := z.DecSliceHelperStart() + var yyc4552 bool + if yyl4552 == 0 { + if yyv4552 == nil { + yyv4552 = []LocalObjectReference{} + yyc4552 = true + } else if len(yyv4552) != 0 { + yyv4552 = yyv4552[:0] + yyc4552 = true } - } else if yyl4509 > 0 { - var yyrr4509, yyrl4509 int - var yyrt4509 bool - if yyl4509 > cap(yyv4509) { + } else if yyl4552 > 0 { + var yyrr4552, yyrl4552 int + var yyrt4552 bool + if yyl4552 > cap(yyv4552) { - yyrg4509 := len(yyv4509) > 0 - yyv24509 := yyv4509 - yyrl4509, yyrt4509 = z.DecInferLen(yyl4509, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4509 { - if yyrl4509 <= cap(yyv4509) { - yyv4509 = yyv4509[:yyrl4509] + yyrg4552 := len(yyv4552) > 0 + yyv24552 := yyv4552 + yyrl4552, yyrt4552 = z.DecInferLen(yyl4552, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4552 { + if yyrl4552 <= cap(yyv4552) { + yyv4552 = yyv4552[:yyrl4552] } else { - yyv4509 = make([]LocalObjectReference, yyrl4509) + yyv4552 = make([]LocalObjectReference, yyrl4552) } } else { - yyv4509 = make([]LocalObjectReference, yyrl4509) + yyv4552 = make([]LocalObjectReference, yyrl4552) } - yyc4509 = true - yyrr4509 = len(yyv4509) - if yyrg4509 { - copy(yyv4509, yyv24509) + yyc4552 = true + yyrr4552 = len(yyv4552) + if yyrg4552 { + copy(yyv4552, yyv24552) } - } else if yyl4509 != len(yyv4509) { - yyv4509 = yyv4509[:yyl4509] - yyc4509 = true + } else if yyl4552 != len(yyv4552) { + yyv4552 = yyv4552[:yyl4552] + yyc4552 = true } - yyj4509 := 0 - for ; yyj4509 < yyrr4509; yyj4509++ { - yyh4509.ElemContainerState(yyj4509) + yyj4552 := 0 + for ; yyj4552 < yyrr4552; yyj4552++ { + yyh4552.ElemContainerState(yyj4552) if r.TryDecodeAsNil() { - yyv4509[yyj4509] = LocalObjectReference{} + yyv4552[yyj4552] = LocalObjectReference{} } else { - yyv4510 := &yyv4509[yyj4509] - yyv4510.CodecDecodeSelf(d) + yyv4553 := &yyv4552[yyj4552] + yyv4553.CodecDecodeSelf(d) } } - if yyrt4509 { - for ; yyj4509 < yyl4509; yyj4509++ { - yyv4509 = append(yyv4509, LocalObjectReference{}) - yyh4509.ElemContainerState(yyj4509) + if yyrt4552 { + for ; yyj4552 < yyl4552; yyj4552++ { + yyv4552 = append(yyv4552, LocalObjectReference{}) + yyh4552.ElemContainerState(yyj4552) if r.TryDecodeAsNil() { - yyv4509[yyj4509] = LocalObjectReference{} + yyv4552[yyj4552] = LocalObjectReference{} } else { - yyv4511 := &yyv4509[yyj4509] - yyv4511.CodecDecodeSelf(d) + yyv4554 := &yyv4552[yyj4552] + yyv4554.CodecDecodeSelf(d) } } } } else { - yyj4509 := 0 - for ; !r.CheckBreak(); yyj4509++ { + yyj4552 := 0 + for ; !r.CheckBreak(); yyj4552++ { - if yyj4509 >= len(yyv4509) { - yyv4509 = append(yyv4509, LocalObjectReference{}) // var yyz4509 LocalObjectReference - yyc4509 = true + if yyj4552 >= len(yyv4552) { + yyv4552 = append(yyv4552, LocalObjectReference{}) // var yyz4552 LocalObjectReference + yyc4552 = true } - yyh4509.ElemContainerState(yyj4509) - if yyj4509 < len(yyv4509) { + yyh4552.ElemContainerState(yyj4552) + if yyj4552 < len(yyv4552) { if r.TryDecodeAsNil() { - yyv4509[yyj4509] = LocalObjectReference{} + yyv4552[yyj4552] = LocalObjectReference{} } else { - yyv4512 := &yyv4509[yyj4509] - yyv4512.CodecDecodeSelf(d) + yyv4555 := &yyv4552[yyj4552] + yyv4555.CodecDecodeSelf(d) } } else { @@ -56826,17 +57437,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4509 < len(yyv4509) { - yyv4509 = yyv4509[:yyj4509] - yyc4509 = true - } else if yyj4509 == 0 && yyv4509 == nil { - yyv4509 = []LocalObjectReference{} - yyc4509 = true + if yyj4552 < len(yyv4552) { + yyv4552 = yyv4552[:yyj4552] + yyc4552 = true + } else if yyj4552 == 0 && yyv4552 == nil { + yyv4552 = []LocalObjectReference{} + yyc4552 = true } } - yyh4509.End() - if yyc4509 { - *v = yyv4509 + yyh4552.End() + if yyc4552 { + *v = yyv4552 } } @@ -56845,10 +57456,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4513 := range v { + for _, yyv4556 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4514 := &yyv4513 - yy4514.CodecEncodeSelf(e) + yy4557 := &yyv4556 + yy4557.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56858,83 +57469,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4515 := *v - yyh4515, yyl4515 := z.DecSliceHelperStart() - var yyc4515 bool - if yyl4515 == 0 { - if yyv4515 == nil { - yyv4515 = []PodCondition{} - yyc4515 = true - } else if len(yyv4515) != 0 { - yyv4515 = yyv4515[:0] - yyc4515 = true + yyv4558 := *v + yyh4558, yyl4558 := z.DecSliceHelperStart() + var yyc4558 bool + if yyl4558 == 0 { + if yyv4558 == nil { + yyv4558 = []PodCondition{} + yyc4558 = true + } else if len(yyv4558) != 0 { + yyv4558 = yyv4558[:0] + yyc4558 = true } - } else if yyl4515 > 0 { - var yyrr4515, yyrl4515 int - var yyrt4515 bool - if yyl4515 > cap(yyv4515) { + } else if yyl4558 > 0 { + var yyrr4558, yyrl4558 int + var yyrt4558 bool + if yyl4558 > cap(yyv4558) { - yyrg4515 := len(yyv4515) > 0 - yyv24515 := yyv4515 - yyrl4515, yyrt4515 = z.DecInferLen(yyl4515, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4515 { - if yyrl4515 <= cap(yyv4515) { - yyv4515 = yyv4515[:yyrl4515] + yyrg4558 := len(yyv4558) > 0 + yyv24558 := yyv4558 + yyrl4558, yyrt4558 = z.DecInferLen(yyl4558, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4558 { + if yyrl4558 <= cap(yyv4558) { + yyv4558 = yyv4558[:yyrl4558] } else { - yyv4515 = make([]PodCondition, yyrl4515) + yyv4558 = make([]PodCondition, yyrl4558) } } else { - yyv4515 = make([]PodCondition, yyrl4515) + yyv4558 = make([]PodCondition, yyrl4558) } - yyc4515 = true - yyrr4515 = len(yyv4515) - if yyrg4515 { - copy(yyv4515, yyv24515) + yyc4558 = true + yyrr4558 = len(yyv4558) + if yyrg4558 { + copy(yyv4558, yyv24558) } - } else if yyl4515 != len(yyv4515) { - yyv4515 = yyv4515[:yyl4515] - yyc4515 = true + } else if yyl4558 != len(yyv4558) { + yyv4558 = yyv4558[:yyl4558] + yyc4558 = true } - yyj4515 := 0 - for ; yyj4515 < yyrr4515; yyj4515++ { - yyh4515.ElemContainerState(yyj4515) + yyj4558 := 0 + for ; yyj4558 < yyrr4558; yyj4558++ { + yyh4558.ElemContainerState(yyj4558) if r.TryDecodeAsNil() { - yyv4515[yyj4515] = PodCondition{} + yyv4558[yyj4558] = PodCondition{} } else { - yyv4516 := &yyv4515[yyj4515] - yyv4516.CodecDecodeSelf(d) + yyv4559 := &yyv4558[yyj4558] + yyv4559.CodecDecodeSelf(d) } } - if yyrt4515 { - for ; yyj4515 < yyl4515; yyj4515++ { - yyv4515 = append(yyv4515, PodCondition{}) - yyh4515.ElemContainerState(yyj4515) + if yyrt4558 { + for ; yyj4558 < yyl4558; yyj4558++ { + yyv4558 = append(yyv4558, PodCondition{}) + yyh4558.ElemContainerState(yyj4558) if r.TryDecodeAsNil() { - yyv4515[yyj4515] = PodCondition{} + yyv4558[yyj4558] = PodCondition{} } else { - yyv4517 := &yyv4515[yyj4515] - yyv4517.CodecDecodeSelf(d) + yyv4560 := &yyv4558[yyj4558] + yyv4560.CodecDecodeSelf(d) } } } } else { - yyj4515 := 0 - for ; !r.CheckBreak(); yyj4515++ { + yyj4558 := 0 + for ; !r.CheckBreak(); yyj4558++ { - if yyj4515 >= len(yyv4515) { - yyv4515 = append(yyv4515, PodCondition{}) // var yyz4515 PodCondition - yyc4515 = true + if yyj4558 >= len(yyv4558) { + yyv4558 = append(yyv4558, PodCondition{}) // var yyz4558 PodCondition + yyc4558 = true } - yyh4515.ElemContainerState(yyj4515) - if yyj4515 < len(yyv4515) { + yyh4558.ElemContainerState(yyj4558) + if yyj4558 < len(yyv4558) { if r.TryDecodeAsNil() { - yyv4515[yyj4515] = PodCondition{} + yyv4558[yyj4558] = PodCondition{} } else { - yyv4518 := &yyv4515[yyj4515] - yyv4518.CodecDecodeSelf(d) + yyv4561 := &yyv4558[yyj4558] + yyv4561.CodecDecodeSelf(d) } } else { @@ -56942,17 +57553,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4515 < len(yyv4515) { - yyv4515 = yyv4515[:yyj4515] - yyc4515 = true - } else if yyj4515 == 0 && yyv4515 == nil { - yyv4515 = []PodCondition{} - yyc4515 = true + if yyj4558 < len(yyv4558) { + yyv4558 = yyv4558[:yyj4558] + yyc4558 = true + } else if yyj4558 == 0 && yyv4558 == nil { + yyv4558 = []PodCondition{} + yyc4558 = true } } - yyh4515.End() - if yyc4515 { - *v = yyv4515 + yyh4558.End() + if yyc4558 { + *v = yyv4558 } } @@ -56961,10 +57572,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4519 := range v { + for _, yyv4562 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4520 := &yyv4519 - yy4520.CodecEncodeSelf(e) + yy4563 := &yyv4562 + yy4563.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56974,83 +57585,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4521 := *v - yyh4521, yyl4521 := z.DecSliceHelperStart() - var yyc4521 bool - if yyl4521 == 0 { - if yyv4521 == nil { - yyv4521 = []ContainerStatus{} - yyc4521 = true - } else if len(yyv4521) != 0 { - yyv4521 = yyv4521[:0] - yyc4521 = true + yyv4564 := *v + yyh4564, yyl4564 := z.DecSliceHelperStart() + var yyc4564 bool + if yyl4564 == 0 { + if yyv4564 == nil { + yyv4564 = []ContainerStatus{} + yyc4564 = true + } else if len(yyv4564) != 0 { + yyv4564 = yyv4564[:0] + yyc4564 = true } - } else if yyl4521 > 0 { - var yyrr4521, yyrl4521 int - var yyrt4521 bool - if yyl4521 > cap(yyv4521) { + } else if yyl4564 > 0 { + var yyrr4564, yyrl4564 int + var yyrt4564 bool + if yyl4564 > cap(yyv4564) { - yyrg4521 := len(yyv4521) > 0 - yyv24521 := yyv4521 - yyrl4521, yyrt4521 = z.DecInferLen(yyl4521, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4521 { - if yyrl4521 <= cap(yyv4521) { - yyv4521 = yyv4521[:yyrl4521] + yyrg4564 := len(yyv4564) > 0 + yyv24564 := yyv4564 + yyrl4564, yyrt4564 = z.DecInferLen(yyl4564, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4564 { + if yyrl4564 <= cap(yyv4564) { + yyv4564 = yyv4564[:yyrl4564] } else { - yyv4521 = make([]ContainerStatus, yyrl4521) + yyv4564 = make([]ContainerStatus, yyrl4564) } } else { - yyv4521 = make([]ContainerStatus, yyrl4521) + yyv4564 = make([]ContainerStatus, yyrl4564) } - yyc4521 = true - yyrr4521 = len(yyv4521) - if yyrg4521 { - copy(yyv4521, yyv24521) + yyc4564 = true + yyrr4564 = len(yyv4564) + if yyrg4564 { + copy(yyv4564, yyv24564) } - } else if yyl4521 != len(yyv4521) { - yyv4521 = yyv4521[:yyl4521] - yyc4521 = true + } else if yyl4564 != len(yyv4564) { + yyv4564 = yyv4564[:yyl4564] + yyc4564 = true } - yyj4521 := 0 - for ; yyj4521 < yyrr4521; yyj4521++ { - yyh4521.ElemContainerState(yyj4521) + yyj4564 := 0 + for ; yyj4564 < yyrr4564; yyj4564++ { + yyh4564.ElemContainerState(yyj4564) if r.TryDecodeAsNil() { - yyv4521[yyj4521] = ContainerStatus{} + yyv4564[yyj4564] = ContainerStatus{} } else { - yyv4522 := &yyv4521[yyj4521] - yyv4522.CodecDecodeSelf(d) + yyv4565 := &yyv4564[yyj4564] + yyv4565.CodecDecodeSelf(d) } } - if yyrt4521 { - for ; yyj4521 < yyl4521; yyj4521++ { - yyv4521 = append(yyv4521, ContainerStatus{}) - yyh4521.ElemContainerState(yyj4521) + if yyrt4564 { + for ; yyj4564 < yyl4564; yyj4564++ { + yyv4564 = append(yyv4564, ContainerStatus{}) + yyh4564.ElemContainerState(yyj4564) if r.TryDecodeAsNil() { - yyv4521[yyj4521] = ContainerStatus{} + yyv4564[yyj4564] = ContainerStatus{} } else { - yyv4523 := &yyv4521[yyj4521] - yyv4523.CodecDecodeSelf(d) + yyv4566 := &yyv4564[yyj4564] + yyv4566.CodecDecodeSelf(d) } } } } else { - yyj4521 := 0 - for ; !r.CheckBreak(); yyj4521++ { + yyj4564 := 0 + for ; !r.CheckBreak(); yyj4564++ { - if yyj4521 >= len(yyv4521) { - yyv4521 = append(yyv4521, ContainerStatus{}) // var yyz4521 ContainerStatus - yyc4521 = true + if yyj4564 >= len(yyv4564) { + yyv4564 = append(yyv4564, ContainerStatus{}) // var yyz4564 ContainerStatus + yyc4564 = true } - yyh4521.ElemContainerState(yyj4521) - if yyj4521 < len(yyv4521) { + yyh4564.ElemContainerState(yyj4564) + if yyj4564 < len(yyv4564) { if r.TryDecodeAsNil() { - yyv4521[yyj4521] = ContainerStatus{} + yyv4564[yyj4564] = ContainerStatus{} } else { - yyv4524 := &yyv4521[yyj4521] - yyv4524.CodecDecodeSelf(d) + yyv4567 := &yyv4564[yyj4564] + yyv4567.CodecDecodeSelf(d) } } else { @@ -57058,17 +57669,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4521 < len(yyv4521) { - yyv4521 = yyv4521[:yyj4521] - yyc4521 = true - } else if yyj4521 == 0 && yyv4521 == nil { - yyv4521 = []ContainerStatus{} - yyc4521 = true + if yyj4564 < len(yyv4564) { + yyv4564 = yyv4564[:yyj4564] + yyc4564 = true + } else if yyj4564 == 0 && yyv4564 == nil { + yyv4564 = []ContainerStatus{} + yyc4564 = true } } - yyh4521.End() - if yyc4521 { - *v = yyv4521 + yyh4564.End() + if yyc4564 { + *v = yyv4564 } } @@ -57077,10 +57688,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4525 := range v { + for _, yyv4568 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4526 := &yyv4525 - yy4526.CodecEncodeSelf(e) + yy4569 := &yyv4568 + yy4569.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57090,83 +57701,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4527 := *v - yyh4527, yyl4527 := z.DecSliceHelperStart() - var yyc4527 bool - if yyl4527 == 0 { - if yyv4527 == nil { - yyv4527 = []Pod{} - yyc4527 = true - } else if len(yyv4527) != 0 { - yyv4527 = yyv4527[:0] - yyc4527 = true + yyv4570 := *v + yyh4570, yyl4570 := z.DecSliceHelperStart() + var yyc4570 bool + if yyl4570 == 0 { + if yyv4570 == nil { + yyv4570 = []Pod{} + yyc4570 = true + } else if len(yyv4570) != 0 { + yyv4570 = yyv4570[:0] + yyc4570 = true } - } else if yyl4527 > 0 { - var yyrr4527, yyrl4527 int - var yyrt4527 bool - if yyl4527 > cap(yyv4527) { + } else if yyl4570 > 0 { + var yyrr4570, yyrl4570 int + var yyrt4570 bool + if yyl4570 > cap(yyv4570) { - yyrg4527 := len(yyv4527) > 0 - yyv24527 := yyv4527 - yyrl4527, yyrt4527 = z.DecInferLen(yyl4527, z.DecBasicHandle().MaxInitLen, 648) - if yyrt4527 { - if yyrl4527 <= cap(yyv4527) { - yyv4527 = yyv4527[:yyrl4527] + yyrg4570 := len(yyv4570) > 0 + yyv24570 := yyv4570 + yyrl4570, yyrt4570 = z.DecInferLen(yyl4570, z.DecBasicHandle().MaxInitLen, 648) + if yyrt4570 { + if yyrl4570 <= cap(yyv4570) { + yyv4570 = yyv4570[:yyrl4570] } else { - yyv4527 = make([]Pod, yyrl4527) + yyv4570 = make([]Pod, yyrl4570) } } else { - yyv4527 = make([]Pod, yyrl4527) + yyv4570 = make([]Pod, yyrl4570) } - yyc4527 = true - yyrr4527 = len(yyv4527) - if yyrg4527 { - copy(yyv4527, yyv24527) + yyc4570 = true + yyrr4570 = len(yyv4570) + if yyrg4570 { + copy(yyv4570, yyv24570) } - } else if yyl4527 != len(yyv4527) { - yyv4527 = yyv4527[:yyl4527] - yyc4527 = true + } else if yyl4570 != len(yyv4570) { + yyv4570 = yyv4570[:yyl4570] + yyc4570 = true } - yyj4527 := 0 - for ; yyj4527 < yyrr4527; yyj4527++ { - yyh4527.ElemContainerState(yyj4527) + yyj4570 := 0 + for ; yyj4570 < yyrr4570; yyj4570++ { + yyh4570.ElemContainerState(yyj4570) if r.TryDecodeAsNil() { - yyv4527[yyj4527] = Pod{} + yyv4570[yyj4570] = Pod{} } else { - yyv4528 := &yyv4527[yyj4527] - yyv4528.CodecDecodeSelf(d) + yyv4571 := &yyv4570[yyj4570] + yyv4571.CodecDecodeSelf(d) } } - if yyrt4527 { - for ; yyj4527 < yyl4527; yyj4527++ { - yyv4527 = append(yyv4527, Pod{}) - yyh4527.ElemContainerState(yyj4527) + if yyrt4570 { + for ; yyj4570 < yyl4570; yyj4570++ { + yyv4570 = append(yyv4570, Pod{}) + yyh4570.ElemContainerState(yyj4570) if r.TryDecodeAsNil() { - yyv4527[yyj4527] = Pod{} + yyv4570[yyj4570] = Pod{} } else { - yyv4529 := &yyv4527[yyj4527] - yyv4529.CodecDecodeSelf(d) + yyv4572 := &yyv4570[yyj4570] + yyv4572.CodecDecodeSelf(d) } } } } else { - yyj4527 := 0 - for ; !r.CheckBreak(); yyj4527++ { + yyj4570 := 0 + for ; !r.CheckBreak(); yyj4570++ { - if yyj4527 >= len(yyv4527) { - yyv4527 = append(yyv4527, Pod{}) // var yyz4527 Pod - yyc4527 = true + if yyj4570 >= len(yyv4570) { + yyv4570 = append(yyv4570, Pod{}) // var yyz4570 Pod + yyc4570 = true } - yyh4527.ElemContainerState(yyj4527) - if yyj4527 < len(yyv4527) { + yyh4570.ElemContainerState(yyj4570) + if yyj4570 < len(yyv4570) { if r.TryDecodeAsNil() { - yyv4527[yyj4527] = Pod{} + yyv4570[yyj4570] = Pod{} } else { - yyv4530 := &yyv4527[yyj4527] - yyv4530.CodecDecodeSelf(d) + yyv4573 := &yyv4570[yyj4570] + yyv4573.CodecDecodeSelf(d) } } else { @@ -57174,17 +57785,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4527 < len(yyv4527) { - yyv4527 = yyv4527[:yyj4527] - yyc4527 = true - } else if yyj4527 == 0 && yyv4527 == nil { - yyv4527 = []Pod{} - yyc4527 = true + if yyj4570 < len(yyv4570) { + yyv4570 = yyv4570[:yyj4570] + yyc4570 = true + } else if yyj4570 == 0 && yyv4570 == nil { + yyv4570 = []Pod{} + yyc4570 = true } } - yyh4527.End() - if yyc4527 { - *v = yyv4527 + yyh4570.End() + if yyc4570 { + *v = yyv4570 } } @@ -57193,10 +57804,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4531 := range v { + for _, yyv4574 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4532 := &yyv4531 - yy4532.CodecEncodeSelf(e) + yy4575 := &yyv4574 + yy4575.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57206,83 +57817,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4533 := *v - yyh4533, yyl4533 := z.DecSliceHelperStart() - var yyc4533 bool - if yyl4533 == 0 { - if yyv4533 == nil { - yyv4533 = []PodTemplate{} - yyc4533 = true - } else if len(yyv4533) != 0 { - yyv4533 = yyv4533[:0] - yyc4533 = true + yyv4576 := *v + yyh4576, yyl4576 := z.DecSliceHelperStart() + var yyc4576 bool + if yyl4576 == 0 { + if yyv4576 == nil { + yyv4576 = []PodTemplate{} + yyc4576 = true + } else if len(yyv4576) != 0 { + yyv4576 = yyv4576[:0] + yyc4576 = true } - } else if yyl4533 > 0 { - var yyrr4533, yyrl4533 int - var yyrt4533 bool - if yyl4533 > cap(yyv4533) { + } else if yyl4576 > 0 { + var yyrr4576, yyrl4576 int + var yyrt4576 bool + if yyl4576 > cap(yyv4576) { - yyrg4533 := len(yyv4533) > 0 - yyv24533 := yyv4533 - yyrl4533, yyrt4533 = z.DecInferLen(yyl4533, z.DecBasicHandle().MaxInitLen, 696) - if yyrt4533 { - if yyrl4533 <= cap(yyv4533) { - yyv4533 = yyv4533[:yyrl4533] + yyrg4576 := len(yyv4576) > 0 + yyv24576 := yyv4576 + yyrl4576, yyrt4576 = z.DecInferLen(yyl4576, z.DecBasicHandle().MaxInitLen, 696) + if yyrt4576 { + if yyrl4576 <= cap(yyv4576) { + yyv4576 = yyv4576[:yyrl4576] } else { - yyv4533 = make([]PodTemplate, yyrl4533) + yyv4576 = make([]PodTemplate, yyrl4576) } } else { - yyv4533 = make([]PodTemplate, yyrl4533) + yyv4576 = make([]PodTemplate, yyrl4576) } - yyc4533 = true - yyrr4533 = len(yyv4533) - if yyrg4533 { - copy(yyv4533, yyv24533) + yyc4576 = true + yyrr4576 = len(yyv4576) + if yyrg4576 { + copy(yyv4576, yyv24576) } - } else if yyl4533 != len(yyv4533) { - yyv4533 = yyv4533[:yyl4533] - yyc4533 = true + } else if yyl4576 != len(yyv4576) { + yyv4576 = yyv4576[:yyl4576] + yyc4576 = true } - yyj4533 := 0 - for ; yyj4533 < yyrr4533; yyj4533++ { - yyh4533.ElemContainerState(yyj4533) + yyj4576 := 0 + for ; yyj4576 < yyrr4576; yyj4576++ { + yyh4576.ElemContainerState(yyj4576) if r.TryDecodeAsNil() { - yyv4533[yyj4533] = PodTemplate{} + yyv4576[yyj4576] = PodTemplate{} } else { - yyv4534 := &yyv4533[yyj4533] - yyv4534.CodecDecodeSelf(d) + yyv4577 := &yyv4576[yyj4576] + yyv4577.CodecDecodeSelf(d) } } - if yyrt4533 { - for ; yyj4533 < yyl4533; yyj4533++ { - yyv4533 = append(yyv4533, PodTemplate{}) - yyh4533.ElemContainerState(yyj4533) + if yyrt4576 { + for ; yyj4576 < yyl4576; yyj4576++ { + yyv4576 = append(yyv4576, PodTemplate{}) + yyh4576.ElemContainerState(yyj4576) if r.TryDecodeAsNil() { - yyv4533[yyj4533] = PodTemplate{} + yyv4576[yyj4576] = PodTemplate{} } else { - yyv4535 := &yyv4533[yyj4533] - yyv4535.CodecDecodeSelf(d) + yyv4578 := &yyv4576[yyj4576] + yyv4578.CodecDecodeSelf(d) } } } } else { - yyj4533 := 0 - for ; !r.CheckBreak(); yyj4533++ { + yyj4576 := 0 + for ; !r.CheckBreak(); yyj4576++ { - if yyj4533 >= len(yyv4533) { - yyv4533 = append(yyv4533, PodTemplate{}) // var yyz4533 PodTemplate - yyc4533 = true + if yyj4576 >= len(yyv4576) { + yyv4576 = append(yyv4576, PodTemplate{}) // var yyz4576 PodTemplate + yyc4576 = true } - yyh4533.ElemContainerState(yyj4533) - if yyj4533 < len(yyv4533) { + yyh4576.ElemContainerState(yyj4576) + if yyj4576 < len(yyv4576) { if r.TryDecodeAsNil() { - yyv4533[yyj4533] = PodTemplate{} + yyv4576[yyj4576] = PodTemplate{} } else { - yyv4536 := &yyv4533[yyj4533] - yyv4536.CodecDecodeSelf(d) + yyv4579 := &yyv4576[yyj4576] + yyv4579.CodecDecodeSelf(d) } } else { @@ -57290,17 +57901,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4533 < len(yyv4533) { - yyv4533 = yyv4533[:yyj4533] - yyc4533 = true - } else if yyj4533 == 0 && yyv4533 == nil { - yyv4533 = []PodTemplate{} - yyc4533 = true + if yyj4576 < len(yyv4576) { + yyv4576 = yyv4576[:yyj4576] + yyc4576 = true + } else if yyj4576 == 0 && yyv4576 == nil { + yyv4576 = []PodTemplate{} + yyc4576 = true } } - yyh4533.End() - if yyc4533 { - *v = yyv4533 + yyh4576.End() + if yyc4576 { + *v = yyv4576 } } @@ -57309,10 +57920,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4537 := range v { + for _, yyv4580 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4538 := &yyv4537 - yy4538.CodecEncodeSelf(e) + yy4581 := &yyv4580 + yy4581.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57322,83 +57933,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4539 := *v - yyh4539, yyl4539 := z.DecSliceHelperStart() - var yyc4539 bool - if yyl4539 == 0 { - if yyv4539 == nil { - yyv4539 = []ReplicationController{} - yyc4539 = true - } else if len(yyv4539) != 0 { - yyv4539 = yyv4539[:0] - yyc4539 = true + yyv4582 := *v + yyh4582, yyl4582 := z.DecSliceHelperStart() + var yyc4582 bool + if yyl4582 == 0 { + if yyv4582 == nil { + yyv4582 = []ReplicationController{} + yyc4582 = true + } else if len(yyv4582) != 0 { + yyv4582 = yyv4582[:0] + yyc4582 = true } - } else if yyl4539 > 0 { - var yyrr4539, yyrl4539 int - var yyrt4539 bool - if yyl4539 > cap(yyv4539) { + } else if yyl4582 > 0 { + var yyrr4582, yyrl4582 int + var yyrt4582 bool + if yyl4582 > cap(yyv4582) { - yyrg4539 := len(yyv4539) > 0 - yyv24539 := yyv4539 - yyrl4539, yyrt4539 = z.DecInferLen(yyl4539, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4539 { - if yyrl4539 <= cap(yyv4539) { - yyv4539 = yyv4539[:yyrl4539] + yyrg4582 := len(yyv4582) > 0 + yyv24582 := yyv4582 + yyrl4582, yyrt4582 = z.DecInferLen(yyl4582, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4582 { + if yyrl4582 <= cap(yyv4582) { + yyv4582 = yyv4582[:yyrl4582] } else { - yyv4539 = make([]ReplicationController, yyrl4539) + yyv4582 = make([]ReplicationController, yyrl4582) } } else { - yyv4539 = make([]ReplicationController, yyrl4539) + yyv4582 = make([]ReplicationController, yyrl4582) } - yyc4539 = true - yyrr4539 = len(yyv4539) - if yyrg4539 { - copy(yyv4539, yyv24539) + yyc4582 = true + yyrr4582 = len(yyv4582) + if yyrg4582 { + copy(yyv4582, yyv24582) } - } else if yyl4539 != len(yyv4539) { - yyv4539 = yyv4539[:yyl4539] - yyc4539 = true + } else if yyl4582 != len(yyv4582) { + yyv4582 = yyv4582[:yyl4582] + yyc4582 = true } - yyj4539 := 0 - for ; yyj4539 < yyrr4539; yyj4539++ { - yyh4539.ElemContainerState(yyj4539) + yyj4582 := 0 + for ; yyj4582 < yyrr4582; yyj4582++ { + yyh4582.ElemContainerState(yyj4582) if r.TryDecodeAsNil() { - yyv4539[yyj4539] = ReplicationController{} + yyv4582[yyj4582] = ReplicationController{} } else { - yyv4540 := &yyv4539[yyj4539] - yyv4540.CodecDecodeSelf(d) + yyv4583 := &yyv4582[yyj4582] + yyv4583.CodecDecodeSelf(d) } } - if yyrt4539 { - for ; yyj4539 < yyl4539; yyj4539++ { - yyv4539 = append(yyv4539, ReplicationController{}) - yyh4539.ElemContainerState(yyj4539) + if yyrt4582 { + for ; yyj4582 < yyl4582; yyj4582++ { + yyv4582 = append(yyv4582, ReplicationController{}) + yyh4582.ElemContainerState(yyj4582) if r.TryDecodeAsNil() { - yyv4539[yyj4539] = ReplicationController{} + yyv4582[yyj4582] = ReplicationController{} } else { - yyv4541 := &yyv4539[yyj4539] - yyv4541.CodecDecodeSelf(d) + yyv4584 := &yyv4582[yyj4582] + yyv4584.CodecDecodeSelf(d) } } } } else { - yyj4539 := 0 - for ; !r.CheckBreak(); yyj4539++ { + yyj4582 := 0 + for ; !r.CheckBreak(); yyj4582++ { - if yyj4539 >= len(yyv4539) { - yyv4539 = append(yyv4539, ReplicationController{}) // var yyz4539 ReplicationController - yyc4539 = true + if yyj4582 >= len(yyv4582) { + yyv4582 = append(yyv4582, ReplicationController{}) // var yyz4582 ReplicationController + yyc4582 = true } - yyh4539.ElemContainerState(yyj4539) - if yyj4539 < len(yyv4539) { + yyh4582.ElemContainerState(yyj4582) + if yyj4582 < len(yyv4582) { if r.TryDecodeAsNil() { - yyv4539[yyj4539] = ReplicationController{} + yyv4582[yyj4582] = ReplicationController{} } else { - yyv4542 := &yyv4539[yyj4539] - yyv4542.CodecDecodeSelf(d) + yyv4585 := &yyv4582[yyj4582] + yyv4585.CodecDecodeSelf(d) } } else { @@ -57406,17 +58017,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4539 < len(yyv4539) { - yyv4539 = yyv4539[:yyj4539] - yyc4539 = true - } else if yyj4539 == 0 && yyv4539 == nil { - yyv4539 = []ReplicationController{} - yyc4539 = true + if yyj4582 < len(yyv4582) { + yyv4582 = yyv4582[:yyj4582] + yyc4582 = true + } else if yyj4582 == 0 && yyv4582 == nil { + yyv4582 = []ReplicationController{} + yyc4582 = true } } - yyh4539.End() - if yyc4539 { - *v = yyv4539 + yyh4582.End() + if yyc4582 { + *v = yyv4582 } } @@ -57425,10 +58036,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4543 := range v { + for _, yyv4586 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4544 := &yyv4543 - yy4544.CodecEncodeSelf(e) + yy4587 := &yyv4586 + yy4587.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57438,83 +58049,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4545 := *v - yyh4545, yyl4545 := z.DecSliceHelperStart() - var yyc4545 bool - if yyl4545 == 0 { - if yyv4545 == nil { - yyv4545 = []LoadBalancerIngress{} - yyc4545 = true - } else if len(yyv4545) != 0 { - yyv4545 = yyv4545[:0] - yyc4545 = true + yyv4588 := *v + yyh4588, yyl4588 := z.DecSliceHelperStart() + var yyc4588 bool + if yyl4588 == 0 { + if yyv4588 == nil { + yyv4588 = []LoadBalancerIngress{} + yyc4588 = true + } else if len(yyv4588) != 0 { + yyv4588 = yyv4588[:0] + yyc4588 = true } - } else if yyl4545 > 0 { - var yyrr4545, yyrl4545 int - var yyrt4545 bool - if yyl4545 > cap(yyv4545) { + } else if yyl4588 > 0 { + var yyrr4588, yyrl4588 int + var yyrt4588 bool + if yyl4588 > cap(yyv4588) { - yyrg4545 := len(yyv4545) > 0 - yyv24545 := yyv4545 - yyrl4545, yyrt4545 = z.DecInferLen(yyl4545, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4545 { - if yyrl4545 <= cap(yyv4545) { - yyv4545 = yyv4545[:yyrl4545] + yyrg4588 := len(yyv4588) > 0 + yyv24588 := yyv4588 + yyrl4588, yyrt4588 = z.DecInferLen(yyl4588, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4588 { + if yyrl4588 <= cap(yyv4588) { + yyv4588 = yyv4588[:yyrl4588] } else { - yyv4545 = make([]LoadBalancerIngress, yyrl4545) + yyv4588 = make([]LoadBalancerIngress, yyrl4588) } } else { - yyv4545 = make([]LoadBalancerIngress, yyrl4545) + yyv4588 = make([]LoadBalancerIngress, yyrl4588) } - yyc4545 = true - yyrr4545 = len(yyv4545) - if yyrg4545 { - copy(yyv4545, yyv24545) + yyc4588 = true + yyrr4588 = len(yyv4588) + if yyrg4588 { + copy(yyv4588, yyv24588) } - } else if yyl4545 != len(yyv4545) { - yyv4545 = yyv4545[:yyl4545] - yyc4545 = true + } else if yyl4588 != len(yyv4588) { + yyv4588 = yyv4588[:yyl4588] + yyc4588 = true } - yyj4545 := 0 - for ; yyj4545 < yyrr4545; yyj4545++ { - yyh4545.ElemContainerState(yyj4545) + yyj4588 := 0 + for ; yyj4588 < yyrr4588; yyj4588++ { + yyh4588.ElemContainerState(yyj4588) if r.TryDecodeAsNil() { - yyv4545[yyj4545] = LoadBalancerIngress{} + yyv4588[yyj4588] = LoadBalancerIngress{} } else { - yyv4546 := &yyv4545[yyj4545] - yyv4546.CodecDecodeSelf(d) + yyv4589 := &yyv4588[yyj4588] + yyv4589.CodecDecodeSelf(d) } } - if yyrt4545 { - for ; yyj4545 < yyl4545; yyj4545++ { - yyv4545 = append(yyv4545, LoadBalancerIngress{}) - yyh4545.ElemContainerState(yyj4545) + if yyrt4588 { + for ; yyj4588 < yyl4588; yyj4588++ { + yyv4588 = append(yyv4588, LoadBalancerIngress{}) + yyh4588.ElemContainerState(yyj4588) if r.TryDecodeAsNil() { - yyv4545[yyj4545] = LoadBalancerIngress{} + yyv4588[yyj4588] = LoadBalancerIngress{} } else { - yyv4547 := &yyv4545[yyj4545] - yyv4547.CodecDecodeSelf(d) + yyv4590 := &yyv4588[yyj4588] + yyv4590.CodecDecodeSelf(d) } } } } else { - yyj4545 := 0 - for ; !r.CheckBreak(); yyj4545++ { + yyj4588 := 0 + for ; !r.CheckBreak(); yyj4588++ { - if yyj4545 >= len(yyv4545) { - yyv4545 = append(yyv4545, LoadBalancerIngress{}) // var yyz4545 LoadBalancerIngress - yyc4545 = true + if yyj4588 >= len(yyv4588) { + yyv4588 = append(yyv4588, LoadBalancerIngress{}) // var yyz4588 LoadBalancerIngress + yyc4588 = true } - yyh4545.ElemContainerState(yyj4545) - if yyj4545 < len(yyv4545) { + yyh4588.ElemContainerState(yyj4588) + if yyj4588 < len(yyv4588) { if r.TryDecodeAsNil() { - yyv4545[yyj4545] = LoadBalancerIngress{} + yyv4588[yyj4588] = LoadBalancerIngress{} } else { - yyv4548 := &yyv4545[yyj4545] - yyv4548.CodecDecodeSelf(d) + yyv4591 := &yyv4588[yyj4588] + yyv4591.CodecDecodeSelf(d) } } else { @@ -57522,17 +58133,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4545 < len(yyv4545) { - yyv4545 = yyv4545[:yyj4545] - yyc4545 = true - } else if yyj4545 == 0 && yyv4545 == nil { - yyv4545 = []LoadBalancerIngress{} - yyc4545 = true + if yyj4588 < len(yyv4588) { + yyv4588 = yyv4588[:yyj4588] + yyc4588 = true + } else if yyj4588 == 0 && yyv4588 == nil { + yyv4588 = []LoadBalancerIngress{} + yyc4588 = true } } - yyh4545.End() - if yyc4545 { - *v = yyv4545 + yyh4588.End() + if yyc4588 { + *v = yyv4588 } } @@ -57541,10 +58152,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4549 := range v { + for _, yyv4592 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4550 := &yyv4549 - yy4550.CodecEncodeSelf(e) + yy4593 := &yyv4592 + yy4593.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57554,83 +58165,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4551 := *v - yyh4551, yyl4551 := z.DecSliceHelperStart() - var yyc4551 bool - if yyl4551 == 0 { - if yyv4551 == nil { - yyv4551 = []ServicePort{} - yyc4551 = true - } else if len(yyv4551) != 0 { - yyv4551 = yyv4551[:0] - yyc4551 = true + yyv4594 := *v + yyh4594, yyl4594 := z.DecSliceHelperStart() + var yyc4594 bool + if yyl4594 == 0 { + if yyv4594 == nil { + yyv4594 = []ServicePort{} + yyc4594 = true + } else if len(yyv4594) != 0 { + yyv4594 = yyv4594[:0] + yyc4594 = true } - } else if yyl4551 > 0 { - var yyrr4551, yyrl4551 int - var yyrt4551 bool - if yyl4551 > cap(yyv4551) { + } else if yyl4594 > 0 { + var yyrr4594, yyrl4594 int + var yyrt4594 bool + if yyl4594 > cap(yyv4594) { - yyrg4551 := len(yyv4551) > 0 - yyv24551 := yyv4551 - yyrl4551, yyrt4551 = z.DecInferLen(yyl4551, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4551 { - if yyrl4551 <= cap(yyv4551) { - yyv4551 = yyv4551[:yyrl4551] + yyrg4594 := len(yyv4594) > 0 + yyv24594 := yyv4594 + yyrl4594, yyrt4594 = z.DecInferLen(yyl4594, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4594 { + if yyrl4594 <= cap(yyv4594) { + yyv4594 = yyv4594[:yyrl4594] } else { - yyv4551 = make([]ServicePort, yyrl4551) + yyv4594 = make([]ServicePort, yyrl4594) } } else { - yyv4551 = make([]ServicePort, yyrl4551) + yyv4594 = make([]ServicePort, yyrl4594) } - yyc4551 = true - yyrr4551 = len(yyv4551) - if yyrg4551 { - copy(yyv4551, yyv24551) + yyc4594 = true + yyrr4594 = len(yyv4594) + if yyrg4594 { + copy(yyv4594, yyv24594) } - } else if yyl4551 != len(yyv4551) { - yyv4551 = yyv4551[:yyl4551] - yyc4551 = true + } else if yyl4594 != len(yyv4594) { + yyv4594 = yyv4594[:yyl4594] + yyc4594 = true } - yyj4551 := 0 - for ; yyj4551 < yyrr4551; yyj4551++ { - yyh4551.ElemContainerState(yyj4551) + yyj4594 := 0 + for ; yyj4594 < yyrr4594; yyj4594++ { + yyh4594.ElemContainerState(yyj4594) if r.TryDecodeAsNil() { - yyv4551[yyj4551] = ServicePort{} + yyv4594[yyj4594] = ServicePort{} } else { - yyv4552 := &yyv4551[yyj4551] - yyv4552.CodecDecodeSelf(d) + yyv4595 := &yyv4594[yyj4594] + yyv4595.CodecDecodeSelf(d) } } - if yyrt4551 { - for ; yyj4551 < yyl4551; yyj4551++ { - yyv4551 = append(yyv4551, ServicePort{}) - yyh4551.ElemContainerState(yyj4551) + if yyrt4594 { + for ; yyj4594 < yyl4594; yyj4594++ { + yyv4594 = append(yyv4594, ServicePort{}) + yyh4594.ElemContainerState(yyj4594) if r.TryDecodeAsNil() { - yyv4551[yyj4551] = ServicePort{} + yyv4594[yyj4594] = ServicePort{} } else { - yyv4553 := &yyv4551[yyj4551] - yyv4553.CodecDecodeSelf(d) + yyv4596 := &yyv4594[yyj4594] + yyv4596.CodecDecodeSelf(d) } } } } else { - yyj4551 := 0 - for ; !r.CheckBreak(); yyj4551++ { + yyj4594 := 0 + for ; !r.CheckBreak(); yyj4594++ { - if yyj4551 >= len(yyv4551) { - yyv4551 = append(yyv4551, ServicePort{}) // var yyz4551 ServicePort - yyc4551 = true + if yyj4594 >= len(yyv4594) { + yyv4594 = append(yyv4594, ServicePort{}) // var yyz4594 ServicePort + yyc4594 = true } - yyh4551.ElemContainerState(yyj4551) - if yyj4551 < len(yyv4551) { + yyh4594.ElemContainerState(yyj4594) + if yyj4594 < len(yyv4594) { if r.TryDecodeAsNil() { - yyv4551[yyj4551] = ServicePort{} + yyv4594[yyj4594] = ServicePort{} } else { - yyv4554 := &yyv4551[yyj4551] - yyv4554.CodecDecodeSelf(d) + yyv4597 := &yyv4594[yyj4594] + yyv4597.CodecDecodeSelf(d) } } else { @@ -57638,17 +58249,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4551 < len(yyv4551) { - yyv4551 = yyv4551[:yyj4551] - yyc4551 = true - } else if yyj4551 == 0 && yyv4551 == nil { - yyv4551 = []ServicePort{} - yyc4551 = true + if yyj4594 < len(yyv4594) { + yyv4594 = yyv4594[:yyj4594] + yyc4594 = true + } else if yyj4594 == 0 && yyv4594 == nil { + yyv4594 = []ServicePort{} + yyc4594 = true } } - yyh4551.End() - if yyc4551 { - *v = yyv4551 + yyh4594.End() + if yyc4594 { + *v = yyv4594 } } @@ -57657,10 +58268,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4555 := range v { + for _, yyv4598 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4556 := &yyv4555 - yy4556.CodecEncodeSelf(e) + yy4599 := &yyv4598 + yy4599.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57670,83 +58281,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4557 := *v - yyh4557, yyl4557 := z.DecSliceHelperStart() - var yyc4557 bool - if yyl4557 == 0 { - if yyv4557 == nil { - yyv4557 = []Service{} - yyc4557 = true - } else if len(yyv4557) != 0 { - yyv4557 = yyv4557[:0] - yyc4557 = true + yyv4600 := *v + yyh4600, yyl4600 := z.DecSliceHelperStart() + var yyc4600 bool + if yyl4600 == 0 { + if yyv4600 == nil { + yyv4600 = []Service{} + yyc4600 = true + } else if len(yyv4600) != 0 { + yyv4600 = yyv4600[:0] + yyc4600 = true } - } else if yyl4557 > 0 { - var yyrr4557, yyrl4557 int - var yyrt4557 bool - if yyl4557 > cap(yyv4557) { + } else if yyl4600 > 0 { + var yyrr4600, yyrl4600 int + var yyrt4600 bool + if yyl4600 > cap(yyv4600) { - yyrg4557 := len(yyv4557) > 0 - yyv24557 := yyv4557 - yyrl4557, yyrt4557 = z.DecInferLen(yyl4557, z.DecBasicHandle().MaxInitLen, 432) - if yyrt4557 { - if yyrl4557 <= cap(yyv4557) { - yyv4557 = yyv4557[:yyrl4557] + yyrg4600 := len(yyv4600) > 0 + yyv24600 := yyv4600 + yyrl4600, yyrt4600 = z.DecInferLen(yyl4600, z.DecBasicHandle().MaxInitLen, 432) + if yyrt4600 { + if yyrl4600 <= cap(yyv4600) { + yyv4600 = yyv4600[:yyrl4600] } else { - yyv4557 = make([]Service, yyrl4557) + yyv4600 = make([]Service, yyrl4600) } } else { - yyv4557 = make([]Service, yyrl4557) + yyv4600 = make([]Service, yyrl4600) } - yyc4557 = true - yyrr4557 = len(yyv4557) - if yyrg4557 { - copy(yyv4557, yyv24557) + yyc4600 = true + yyrr4600 = len(yyv4600) + if yyrg4600 { + copy(yyv4600, yyv24600) } - } else if yyl4557 != len(yyv4557) { - yyv4557 = yyv4557[:yyl4557] - yyc4557 = true + } else if yyl4600 != len(yyv4600) { + yyv4600 = yyv4600[:yyl4600] + yyc4600 = true } - yyj4557 := 0 - for ; yyj4557 < yyrr4557; yyj4557++ { - yyh4557.ElemContainerState(yyj4557) + yyj4600 := 0 + for ; yyj4600 < yyrr4600; yyj4600++ { + yyh4600.ElemContainerState(yyj4600) if r.TryDecodeAsNil() { - yyv4557[yyj4557] = Service{} + yyv4600[yyj4600] = Service{} } else { - yyv4558 := &yyv4557[yyj4557] - yyv4558.CodecDecodeSelf(d) + yyv4601 := &yyv4600[yyj4600] + yyv4601.CodecDecodeSelf(d) } } - if yyrt4557 { - for ; yyj4557 < yyl4557; yyj4557++ { - yyv4557 = append(yyv4557, Service{}) - yyh4557.ElemContainerState(yyj4557) + if yyrt4600 { + for ; yyj4600 < yyl4600; yyj4600++ { + yyv4600 = append(yyv4600, Service{}) + yyh4600.ElemContainerState(yyj4600) if r.TryDecodeAsNil() { - yyv4557[yyj4557] = Service{} + yyv4600[yyj4600] = Service{} } else { - yyv4559 := &yyv4557[yyj4557] - yyv4559.CodecDecodeSelf(d) + yyv4602 := &yyv4600[yyj4600] + yyv4602.CodecDecodeSelf(d) } } } } else { - yyj4557 := 0 - for ; !r.CheckBreak(); yyj4557++ { + yyj4600 := 0 + for ; !r.CheckBreak(); yyj4600++ { - if yyj4557 >= len(yyv4557) { - yyv4557 = append(yyv4557, Service{}) // var yyz4557 Service - yyc4557 = true + if yyj4600 >= len(yyv4600) { + yyv4600 = append(yyv4600, Service{}) // var yyz4600 Service + yyc4600 = true } - yyh4557.ElemContainerState(yyj4557) - if yyj4557 < len(yyv4557) { + yyh4600.ElemContainerState(yyj4600) + if yyj4600 < len(yyv4600) { if r.TryDecodeAsNil() { - yyv4557[yyj4557] = Service{} + yyv4600[yyj4600] = Service{} } else { - yyv4560 := &yyv4557[yyj4557] - yyv4560.CodecDecodeSelf(d) + yyv4603 := &yyv4600[yyj4600] + yyv4603.CodecDecodeSelf(d) } } else { @@ -57754,17 +58365,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4557 < len(yyv4557) { - yyv4557 = yyv4557[:yyj4557] - yyc4557 = true - } else if yyj4557 == 0 && yyv4557 == nil { - yyv4557 = []Service{} - yyc4557 = true + if yyj4600 < len(yyv4600) { + yyv4600 = yyv4600[:yyj4600] + yyc4600 = true + } else if yyj4600 == 0 && yyv4600 == nil { + yyv4600 = []Service{} + yyc4600 = true } } - yyh4557.End() - if yyc4557 { - *v = yyv4557 + yyh4600.End() + if yyc4600 { + *v = yyv4600 } } @@ -57773,10 +58384,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4561 := range v { + for _, yyv4604 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4562 := &yyv4561 - yy4562.CodecEncodeSelf(e) + yy4605 := &yyv4604 + yy4605.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57786,83 +58397,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4563 := *v - yyh4563, yyl4563 := z.DecSliceHelperStart() - var yyc4563 bool - if yyl4563 == 0 { - if yyv4563 == nil { - yyv4563 = []ObjectReference{} - yyc4563 = true - } else if len(yyv4563) != 0 { - yyv4563 = yyv4563[:0] - yyc4563 = true + yyv4606 := *v + yyh4606, yyl4606 := z.DecSliceHelperStart() + var yyc4606 bool + if yyl4606 == 0 { + if yyv4606 == nil { + yyv4606 = []ObjectReference{} + yyc4606 = true + } else if len(yyv4606) != 0 { + yyv4606 = yyv4606[:0] + yyc4606 = true } - } else if yyl4563 > 0 { - var yyrr4563, yyrl4563 int - var yyrt4563 bool - if yyl4563 > cap(yyv4563) { + } else if yyl4606 > 0 { + var yyrr4606, yyrl4606 int + var yyrt4606 bool + if yyl4606 > cap(yyv4606) { - yyrg4563 := len(yyv4563) > 0 - yyv24563 := yyv4563 - yyrl4563, yyrt4563 = z.DecInferLen(yyl4563, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4563 { - if yyrl4563 <= cap(yyv4563) { - yyv4563 = yyv4563[:yyrl4563] + yyrg4606 := len(yyv4606) > 0 + yyv24606 := yyv4606 + yyrl4606, yyrt4606 = z.DecInferLen(yyl4606, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4606 { + if yyrl4606 <= cap(yyv4606) { + yyv4606 = yyv4606[:yyrl4606] } else { - yyv4563 = make([]ObjectReference, yyrl4563) + yyv4606 = make([]ObjectReference, yyrl4606) } } else { - yyv4563 = make([]ObjectReference, yyrl4563) + yyv4606 = make([]ObjectReference, yyrl4606) } - yyc4563 = true - yyrr4563 = len(yyv4563) - if yyrg4563 { - copy(yyv4563, yyv24563) + yyc4606 = true + yyrr4606 = len(yyv4606) + if yyrg4606 { + copy(yyv4606, yyv24606) } - } else if yyl4563 != len(yyv4563) { - yyv4563 = yyv4563[:yyl4563] - yyc4563 = true + } else if yyl4606 != len(yyv4606) { + yyv4606 = yyv4606[:yyl4606] + yyc4606 = true } - yyj4563 := 0 - for ; yyj4563 < yyrr4563; yyj4563++ { - yyh4563.ElemContainerState(yyj4563) + yyj4606 := 0 + for ; yyj4606 < yyrr4606; yyj4606++ { + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4563[yyj4563] = ObjectReference{} + yyv4606[yyj4606] = ObjectReference{} } else { - yyv4564 := &yyv4563[yyj4563] - yyv4564.CodecDecodeSelf(d) + yyv4607 := &yyv4606[yyj4606] + yyv4607.CodecDecodeSelf(d) } } - if yyrt4563 { - for ; yyj4563 < yyl4563; yyj4563++ { - yyv4563 = append(yyv4563, ObjectReference{}) - yyh4563.ElemContainerState(yyj4563) + if yyrt4606 { + for ; yyj4606 < yyl4606; yyj4606++ { + yyv4606 = append(yyv4606, ObjectReference{}) + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4563[yyj4563] = ObjectReference{} + yyv4606[yyj4606] = ObjectReference{} } else { - yyv4565 := &yyv4563[yyj4563] - yyv4565.CodecDecodeSelf(d) + yyv4608 := &yyv4606[yyj4606] + yyv4608.CodecDecodeSelf(d) } } } } else { - yyj4563 := 0 - for ; !r.CheckBreak(); yyj4563++ { + yyj4606 := 0 + for ; !r.CheckBreak(); yyj4606++ { - if yyj4563 >= len(yyv4563) { - yyv4563 = append(yyv4563, ObjectReference{}) // var yyz4563 ObjectReference - yyc4563 = true + if yyj4606 >= len(yyv4606) { + yyv4606 = append(yyv4606, ObjectReference{}) // var yyz4606 ObjectReference + yyc4606 = true } - yyh4563.ElemContainerState(yyj4563) - if yyj4563 < len(yyv4563) { + yyh4606.ElemContainerState(yyj4606) + if yyj4606 < len(yyv4606) { if r.TryDecodeAsNil() { - yyv4563[yyj4563] = ObjectReference{} + yyv4606[yyj4606] = ObjectReference{} } else { - yyv4566 := &yyv4563[yyj4563] - yyv4566.CodecDecodeSelf(d) + yyv4609 := &yyv4606[yyj4606] + yyv4609.CodecDecodeSelf(d) } } else { @@ -57870,17 +58481,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4563 < len(yyv4563) { - yyv4563 = yyv4563[:yyj4563] - yyc4563 = true - } else if yyj4563 == 0 && yyv4563 == nil { - yyv4563 = []ObjectReference{} - yyc4563 = true + if yyj4606 < len(yyv4606) { + yyv4606 = yyv4606[:yyj4606] + yyc4606 = true + } else if yyj4606 == 0 && yyv4606 == nil { + yyv4606 = []ObjectReference{} + yyc4606 = true } } - yyh4563.End() - if yyc4563 { - *v = yyv4563 + yyh4606.End() + if yyc4606 { + *v = yyv4606 } } @@ -57889,10 +58500,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4567 := range v { + for _, yyv4610 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4568 := &yyv4567 - yy4568.CodecEncodeSelf(e) + yy4611 := &yyv4610 + yy4611.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57902,83 +58513,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4569 := *v - yyh4569, yyl4569 := z.DecSliceHelperStart() - var yyc4569 bool - if yyl4569 == 0 { - if yyv4569 == nil { - yyv4569 = []ServiceAccount{} - yyc4569 = true - } else if len(yyv4569) != 0 { - yyv4569 = yyv4569[:0] - yyc4569 = true + yyv4612 := *v + yyh4612, yyl4612 := z.DecSliceHelperStart() + var yyc4612 bool + if yyl4612 == 0 { + if yyv4612 == nil { + yyv4612 = []ServiceAccount{} + yyc4612 = true + } else if len(yyv4612) != 0 { + yyv4612 = yyv4612[:0] + yyc4612 = true } - } else if yyl4569 > 0 { - var yyrr4569, yyrl4569 int - var yyrt4569 bool - if yyl4569 > cap(yyv4569) { + } else if yyl4612 > 0 { + var yyrr4612, yyrl4612 int + var yyrt4612 bool + if yyl4612 > cap(yyv4612) { - yyrg4569 := len(yyv4569) > 0 - yyv24569 := yyv4569 - yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4569 { - if yyrl4569 <= cap(yyv4569) { - yyv4569 = yyv4569[:yyrl4569] + yyrg4612 := len(yyv4612) > 0 + yyv24612 := yyv4612 + yyrl4612, yyrt4612 = z.DecInferLen(yyl4612, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4612 { + if yyrl4612 <= cap(yyv4612) { + yyv4612 = yyv4612[:yyrl4612] } else { - yyv4569 = make([]ServiceAccount, yyrl4569) + yyv4612 = make([]ServiceAccount, yyrl4612) } } else { - yyv4569 = make([]ServiceAccount, yyrl4569) + yyv4612 = make([]ServiceAccount, yyrl4612) } - yyc4569 = true - yyrr4569 = len(yyv4569) - if yyrg4569 { - copy(yyv4569, yyv24569) + yyc4612 = true + yyrr4612 = len(yyv4612) + if yyrg4612 { + copy(yyv4612, yyv24612) } - } else if yyl4569 != len(yyv4569) { - yyv4569 = yyv4569[:yyl4569] - yyc4569 = true + } else if yyl4612 != len(yyv4612) { + yyv4612 = yyv4612[:yyl4612] + yyc4612 = true } - yyj4569 := 0 - for ; yyj4569 < yyrr4569; yyj4569++ { - yyh4569.ElemContainerState(yyj4569) + yyj4612 := 0 + for ; yyj4612 < yyrr4612; yyj4612++ { + yyh4612.ElemContainerState(yyj4612) if r.TryDecodeAsNil() { - yyv4569[yyj4569] = ServiceAccount{} + yyv4612[yyj4612] = ServiceAccount{} } else { - yyv4570 := &yyv4569[yyj4569] - yyv4570.CodecDecodeSelf(d) + yyv4613 := &yyv4612[yyj4612] + yyv4613.CodecDecodeSelf(d) } } - if yyrt4569 { - for ; yyj4569 < yyl4569; yyj4569++ { - yyv4569 = append(yyv4569, ServiceAccount{}) - yyh4569.ElemContainerState(yyj4569) + if yyrt4612 { + for ; yyj4612 < yyl4612; yyj4612++ { + yyv4612 = append(yyv4612, ServiceAccount{}) + yyh4612.ElemContainerState(yyj4612) if r.TryDecodeAsNil() { - yyv4569[yyj4569] = ServiceAccount{} + yyv4612[yyj4612] = ServiceAccount{} } else { - yyv4571 := &yyv4569[yyj4569] - yyv4571.CodecDecodeSelf(d) + yyv4614 := &yyv4612[yyj4612] + yyv4614.CodecDecodeSelf(d) } } } } else { - yyj4569 := 0 - for ; !r.CheckBreak(); yyj4569++ { + yyj4612 := 0 + for ; !r.CheckBreak(); yyj4612++ { - if yyj4569 >= len(yyv4569) { - yyv4569 = append(yyv4569, ServiceAccount{}) // var yyz4569 ServiceAccount - yyc4569 = true + if yyj4612 >= len(yyv4612) { + yyv4612 = append(yyv4612, ServiceAccount{}) // var yyz4612 ServiceAccount + yyc4612 = true } - yyh4569.ElemContainerState(yyj4569) - if yyj4569 < len(yyv4569) { + yyh4612.ElemContainerState(yyj4612) + if yyj4612 < len(yyv4612) { if r.TryDecodeAsNil() { - yyv4569[yyj4569] = ServiceAccount{} + yyv4612[yyj4612] = ServiceAccount{} } else { - yyv4572 := &yyv4569[yyj4569] - yyv4572.CodecDecodeSelf(d) + yyv4615 := &yyv4612[yyj4612] + yyv4615.CodecDecodeSelf(d) } } else { @@ -57986,17 +58597,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4569 < len(yyv4569) { - yyv4569 = yyv4569[:yyj4569] - yyc4569 = true - } else if yyj4569 == 0 && yyv4569 == nil { - yyv4569 = []ServiceAccount{} - yyc4569 = true + if yyj4612 < len(yyv4612) { + yyv4612 = yyv4612[:yyj4612] + yyc4612 = true + } else if yyj4612 == 0 && yyv4612 == nil { + yyv4612 = []ServiceAccount{} + yyc4612 = true } } - yyh4569.End() - if yyc4569 { - *v = yyv4569 + yyh4612.End() + if yyc4612 { + *v = yyv4612 } } @@ -58005,10 +58616,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4573 := range v { + for _, yyv4616 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4574 := &yyv4573 - yy4574.CodecEncodeSelf(e) + yy4617 := &yyv4616 + yy4617.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58018,83 +58629,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4575 := *v - yyh4575, yyl4575 := z.DecSliceHelperStart() - var yyc4575 bool - if yyl4575 == 0 { - if yyv4575 == nil { - yyv4575 = []EndpointSubset{} - yyc4575 = true - } else if len(yyv4575) != 0 { - yyv4575 = yyv4575[:0] - yyc4575 = true + yyv4618 := *v + yyh4618, yyl4618 := z.DecSliceHelperStart() + var yyc4618 bool + if yyl4618 == 0 { + if yyv4618 == nil { + yyv4618 = []EndpointSubset{} + yyc4618 = true + } else if len(yyv4618) != 0 { + yyv4618 = yyv4618[:0] + yyc4618 = true } - } else if yyl4575 > 0 { - var yyrr4575, yyrl4575 int - var yyrt4575 bool - if yyl4575 > cap(yyv4575) { + } else if yyl4618 > 0 { + var yyrr4618, yyrl4618 int + var yyrt4618 bool + if yyl4618 > cap(yyv4618) { - yyrg4575 := len(yyv4575) > 0 - yyv24575 := yyv4575 - yyrl4575, yyrt4575 = z.DecInferLen(yyl4575, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4575 { - if yyrl4575 <= cap(yyv4575) { - yyv4575 = yyv4575[:yyrl4575] + yyrg4618 := len(yyv4618) > 0 + yyv24618 := yyv4618 + yyrl4618, yyrt4618 = z.DecInferLen(yyl4618, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4618 { + if yyrl4618 <= cap(yyv4618) { + yyv4618 = yyv4618[:yyrl4618] } else { - yyv4575 = make([]EndpointSubset, yyrl4575) + yyv4618 = make([]EndpointSubset, yyrl4618) } } else { - yyv4575 = make([]EndpointSubset, yyrl4575) + yyv4618 = make([]EndpointSubset, yyrl4618) } - yyc4575 = true - yyrr4575 = len(yyv4575) - if yyrg4575 { - copy(yyv4575, yyv24575) + yyc4618 = true + yyrr4618 = len(yyv4618) + if yyrg4618 { + copy(yyv4618, yyv24618) } - } else if yyl4575 != len(yyv4575) { - yyv4575 = yyv4575[:yyl4575] - yyc4575 = true + } else if yyl4618 != len(yyv4618) { + yyv4618 = yyv4618[:yyl4618] + yyc4618 = true } - yyj4575 := 0 - for ; yyj4575 < yyrr4575; yyj4575++ { - yyh4575.ElemContainerState(yyj4575) + yyj4618 := 0 + for ; yyj4618 < yyrr4618; yyj4618++ { + yyh4618.ElemContainerState(yyj4618) if r.TryDecodeAsNil() { - yyv4575[yyj4575] = EndpointSubset{} + yyv4618[yyj4618] = EndpointSubset{} } else { - yyv4576 := &yyv4575[yyj4575] - yyv4576.CodecDecodeSelf(d) + yyv4619 := &yyv4618[yyj4618] + yyv4619.CodecDecodeSelf(d) } } - if yyrt4575 { - for ; yyj4575 < yyl4575; yyj4575++ { - yyv4575 = append(yyv4575, EndpointSubset{}) - yyh4575.ElemContainerState(yyj4575) + if yyrt4618 { + for ; yyj4618 < yyl4618; yyj4618++ { + yyv4618 = append(yyv4618, EndpointSubset{}) + yyh4618.ElemContainerState(yyj4618) if r.TryDecodeAsNil() { - yyv4575[yyj4575] = EndpointSubset{} + yyv4618[yyj4618] = EndpointSubset{} } else { - yyv4577 := &yyv4575[yyj4575] - yyv4577.CodecDecodeSelf(d) + yyv4620 := &yyv4618[yyj4618] + yyv4620.CodecDecodeSelf(d) } } } } else { - yyj4575 := 0 - for ; !r.CheckBreak(); yyj4575++ { + yyj4618 := 0 + for ; !r.CheckBreak(); yyj4618++ { - if yyj4575 >= len(yyv4575) { - yyv4575 = append(yyv4575, EndpointSubset{}) // var yyz4575 EndpointSubset - yyc4575 = true + if yyj4618 >= len(yyv4618) { + yyv4618 = append(yyv4618, EndpointSubset{}) // var yyz4618 EndpointSubset + yyc4618 = true } - yyh4575.ElemContainerState(yyj4575) - if yyj4575 < len(yyv4575) { + yyh4618.ElemContainerState(yyj4618) + if yyj4618 < len(yyv4618) { if r.TryDecodeAsNil() { - yyv4575[yyj4575] = EndpointSubset{} + yyv4618[yyj4618] = EndpointSubset{} } else { - yyv4578 := &yyv4575[yyj4575] - yyv4578.CodecDecodeSelf(d) + yyv4621 := &yyv4618[yyj4618] + yyv4621.CodecDecodeSelf(d) } } else { @@ -58102,17 +58713,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4575 < len(yyv4575) { - yyv4575 = yyv4575[:yyj4575] - yyc4575 = true - } else if yyj4575 == 0 && yyv4575 == nil { - yyv4575 = []EndpointSubset{} - yyc4575 = true + if yyj4618 < len(yyv4618) { + yyv4618 = yyv4618[:yyj4618] + yyc4618 = true + } else if yyj4618 == 0 && yyv4618 == nil { + yyv4618 = []EndpointSubset{} + yyc4618 = true } } - yyh4575.End() - if yyc4575 { - *v = yyv4575 + yyh4618.End() + if yyc4618 { + *v = yyv4618 } } @@ -58121,10 +58732,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4579 := range v { + for _, yyv4622 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4580 := &yyv4579 - yy4580.CodecEncodeSelf(e) + yy4623 := &yyv4622 + yy4623.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58134,83 +58745,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4581 := *v - yyh4581, yyl4581 := z.DecSliceHelperStart() - var yyc4581 bool - if yyl4581 == 0 { - if yyv4581 == nil { - yyv4581 = []EndpointAddress{} - yyc4581 = true - } else if len(yyv4581) != 0 { - yyv4581 = yyv4581[:0] - yyc4581 = true + yyv4624 := *v + yyh4624, yyl4624 := z.DecSliceHelperStart() + var yyc4624 bool + if yyl4624 == 0 { + if yyv4624 == nil { + yyv4624 = []EndpointAddress{} + yyc4624 = true + } else if len(yyv4624) != 0 { + yyv4624 = yyv4624[:0] + yyc4624 = true } - } else if yyl4581 > 0 { - var yyrr4581, yyrl4581 int - var yyrt4581 bool - if yyl4581 > cap(yyv4581) { + } else if yyl4624 > 0 { + var yyrr4624, yyrl4624 int + var yyrt4624 bool + if yyl4624 > cap(yyv4624) { - yyrg4581 := len(yyv4581) > 0 - yyv24581 := yyv4581 - yyrl4581, yyrt4581 = z.DecInferLen(yyl4581, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4581 { - if yyrl4581 <= cap(yyv4581) { - yyv4581 = yyv4581[:yyrl4581] + yyrg4624 := len(yyv4624) > 0 + yyv24624 := yyv4624 + yyrl4624, yyrt4624 = z.DecInferLen(yyl4624, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4624 { + if yyrl4624 <= cap(yyv4624) { + yyv4624 = yyv4624[:yyrl4624] } else { - yyv4581 = make([]EndpointAddress, yyrl4581) + yyv4624 = make([]EndpointAddress, yyrl4624) } } else { - yyv4581 = make([]EndpointAddress, yyrl4581) + yyv4624 = make([]EndpointAddress, yyrl4624) } - yyc4581 = true - yyrr4581 = len(yyv4581) - if yyrg4581 { - copy(yyv4581, yyv24581) + yyc4624 = true + yyrr4624 = len(yyv4624) + if yyrg4624 { + copy(yyv4624, yyv24624) } - } else if yyl4581 != len(yyv4581) { - yyv4581 = yyv4581[:yyl4581] - yyc4581 = true + } else if yyl4624 != len(yyv4624) { + yyv4624 = yyv4624[:yyl4624] + yyc4624 = true } - yyj4581 := 0 - for ; yyj4581 < yyrr4581; yyj4581++ { - yyh4581.ElemContainerState(yyj4581) + yyj4624 := 0 + for ; yyj4624 < yyrr4624; yyj4624++ { + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4581[yyj4581] = EndpointAddress{} + yyv4624[yyj4624] = EndpointAddress{} } else { - yyv4582 := &yyv4581[yyj4581] - yyv4582.CodecDecodeSelf(d) + yyv4625 := &yyv4624[yyj4624] + yyv4625.CodecDecodeSelf(d) } } - if yyrt4581 { - for ; yyj4581 < yyl4581; yyj4581++ { - yyv4581 = append(yyv4581, EndpointAddress{}) - yyh4581.ElemContainerState(yyj4581) + if yyrt4624 { + for ; yyj4624 < yyl4624; yyj4624++ { + yyv4624 = append(yyv4624, EndpointAddress{}) + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4581[yyj4581] = EndpointAddress{} + yyv4624[yyj4624] = EndpointAddress{} } else { - yyv4583 := &yyv4581[yyj4581] - yyv4583.CodecDecodeSelf(d) + yyv4626 := &yyv4624[yyj4624] + yyv4626.CodecDecodeSelf(d) } } } } else { - yyj4581 := 0 - for ; !r.CheckBreak(); yyj4581++ { + yyj4624 := 0 + for ; !r.CheckBreak(); yyj4624++ { - if yyj4581 >= len(yyv4581) { - yyv4581 = append(yyv4581, EndpointAddress{}) // var yyz4581 EndpointAddress - yyc4581 = true + if yyj4624 >= len(yyv4624) { + yyv4624 = append(yyv4624, EndpointAddress{}) // var yyz4624 EndpointAddress + yyc4624 = true } - yyh4581.ElemContainerState(yyj4581) - if yyj4581 < len(yyv4581) { + yyh4624.ElemContainerState(yyj4624) + if yyj4624 < len(yyv4624) { if r.TryDecodeAsNil() { - yyv4581[yyj4581] = EndpointAddress{} + yyv4624[yyj4624] = EndpointAddress{} } else { - yyv4584 := &yyv4581[yyj4581] - yyv4584.CodecDecodeSelf(d) + yyv4627 := &yyv4624[yyj4624] + yyv4627.CodecDecodeSelf(d) } } else { @@ -58218,17 +58829,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4581 < len(yyv4581) { - yyv4581 = yyv4581[:yyj4581] - yyc4581 = true - } else if yyj4581 == 0 && yyv4581 == nil { - yyv4581 = []EndpointAddress{} - yyc4581 = true + if yyj4624 < len(yyv4624) { + yyv4624 = yyv4624[:yyj4624] + yyc4624 = true + } else if yyj4624 == 0 && yyv4624 == nil { + yyv4624 = []EndpointAddress{} + yyc4624 = true } } - yyh4581.End() - if yyc4581 { - *v = yyv4581 + yyh4624.End() + if yyc4624 { + *v = yyv4624 } } @@ -58237,10 +58848,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4585 := range v { + for _, yyv4628 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4586 := &yyv4585 - yy4586.CodecEncodeSelf(e) + yy4629 := &yyv4628 + yy4629.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58250,83 +58861,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4587 := *v - yyh4587, yyl4587 := z.DecSliceHelperStart() - var yyc4587 bool - if yyl4587 == 0 { - if yyv4587 == nil { - yyv4587 = []EndpointPort{} - yyc4587 = true - } else if len(yyv4587) != 0 { - yyv4587 = yyv4587[:0] - yyc4587 = true + yyv4630 := *v + yyh4630, yyl4630 := z.DecSliceHelperStart() + var yyc4630 bool + if yyl4630 == 0 { + if yyv4630 == nil { + yyv4630 = []EndpointPort{} + yyc4630 = true + } else if len(yyv4630) != 0 { + yyv4630 = yyv4630[:0] + yyc4630 = true } - } else if yyl4587 > 0 { - var yyrr4587, yyrl4587 int - var yyrt4587 bool - if yyl4587 > cap(yyv4587) { + } else if yyl4630 > 0 { + var yyrr4630, yyrl4630 int + var yyrt4630 bool + if yyl4630 > cap(yyv4630) { - yyrg4587 := len(yyv4587) > 0 - yyv24587 := yyv4587 - yyrl4587, yyrt4587 = z.DecInferLen(yyl4587, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4587 { - if yyrl4587 <= cap(yyv4587) { - yyv4587 = yyv4587[:yyrl4587] + yyrg4630 := len(yyv4630) > 0 + yyv24630 := yyv4630 + yyrl4630, yyrt4630 = z.DecInferLen(yyl4630, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4630 { + if yyrl4630 <= cap(yyv4630) { + yyv4630 = yyv4630[:yyrl4630] } else { - yyv4587 = make([]EndpointPort, yyrl4587) + yyv4630 = make([]EndpointPort, yyrl4630) } } else { - yyv4587 = make([]EndpointPort, yyrl4587) + yyv4630 = make([]EndpointPort, yyrl4630) } - yyc4587 = true - yyrr4587 = len(yyv4587) - if yyrg4587 { - copy(yyv4587, yyv24587) + yyc4630 = true + yyrr4630 = len(yyv4630) + if yyrg4630 { + copy(yyv4630, yyv24630) } - } else if yyl4587 != len(yyv4587) { - yyv4587 = yyv4587[:yyl4587] - yyc4587 = true + } else if yyl4630 != len(yyv4630) { + yyv4630 = yyv4630[:yyl4630] + yyc4630 = true } - yyj4587 := 0 - for ; yyj4587 < yyrr4587; yyj4587++ { - yyh4587.ElemContainerState(yyj4587) + yyj4630 := 0 + for ; yyj4630 < yyrr4630; yyj4630++ { + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4587[yyj4587] = EndpointPort{} + yyv4630[yyj4630] = EndpointPort{} } else { - yyv4588 := &yyv4587[yyj4587] - yyv4588.CodecDecodeSelf(d) + yyv4631 := &yyv4630[yyj4630] + yyv4631.CodecDecodeSelf(d) } } - if yyrt4587 { - for ; yyj4587 < yyl4587; yyj4587++ { - yyv4587 = append(yyv4587, EndpointPort{}) - yyh4587.ElemContainerState(yyj4587) + if yyrt4630 { + for ; yyj4630 < yyl4630; yyj4630++ { + yyv4630 = append(yyv4630, EndpointPort{}) + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4587[yyj4587] = EndpointPort{} + yyv4630[yyj4630] = EndpointPort{} } else { - yyv4589 := &yyv4587[yyj4587] - yyv4589.CodecDecodeSelf(d) + yyv4632 := &yyv4630[yyj4630] + yyv4632.CodecDecodeSelf(d) } } } } else { - yyj4587 := 0 - for ; !r.CheckBreak(); yyj4587++ { + yyj4630 := 0 + for ; !r.CheckBreak(); yyj4630++ { - if yyj4587 >= len(yyv4587) { - yyv4587 = append(yyv4587, EndpointPort{}) // var yyz4587 EndpointPort - yyc4587 = true + if yyj4630 >= len(yyv4630) { + yyv4630 = append(yyv4630, EndpointPort{}) // var yyz4630 EndpointPort + yyc4630 = true } - yyh4587.ElemContainerState(yyj4587) - if yyj4587 < len(yyv4587) { + yyh4630.ElemContainerState(yyj4630) + if yyj4630 < len(yyv4630) { if r.TryDecodeAsNil() { - yyv4587[yyj4587] = EndpointPort{} + yyv4630[yyj4630] = EndpointPort{} } else { - yyv4590 := &yyv4587[yyj4587] - yyv4590.CodecDecodeSelf(d) + yyv4633 := &yyv4630[yyj4630] + yyv4633.CodecDecodeSelf(d) } } else { @@ -58334,17 +58945,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4587 < len(yyv4587) { - yyv4587 = yyv4587[:yyj4587] - yyc4587 = true - } else if yyj4587 == 0 && yyv4587 == nil { - yyv4587 = []EndpointPort{} - yyc4587 = true + if yyj4630 < len(yyv4630) { + yyv4630 = yyv4630[:yyj4630] + yyc4630 = true + } else if yyj4630 == 0 && yyv4630 == nil { + yyv4630 = []EndpointPort{} + yyc4630 = true } } - yyh4587.End() - if yyc4587 { - *v = yyv4587 + yyh4630.End() + if yyc4630 { + *v = yyv4630 } } @@ -58353,10 +58964,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4591 := range v { + for _, yyv4634 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4592 := &yyv4591 - yy4592.CodecEncodeSelf(e) + yy4635 := &yyv4634 + yy4635.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58366,83 +58977,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4593 := *v - yyh4593, yyl4593 := z.DecSliceHelperStart() - var yyc4593 bool - if yyl4593 == 0 { - if yyv4593 == nil { - yyv4593 = []Endpoints{} - yyc4593 = true - } else if len(yyv4593) != 0 { - yyv4593 = yyv4593[:0] - yyc4593 = true + yyv4636 := *v + yyh4636, yyl4636 := z.DecSliceHelperStart() + var yyc4636 bool + if yyl4636 == 0 { + if yyv4636 == nil { + yyv4636 = []Endpoints{} + yyc4636 = true + } else if len(yyv4636) != 0 { + yyv4636 = yyv4636[:0] + yyc4636 = true } - } else if yyl4593 > 0 { - var yyrr4593, yyrl4593 int - var yyrt4593 bool - if yyl4593 > cap(yyv4593) { + } else if yyl4636 > 0 { + var yyrr4636, yyrl4636 int + var yyrt4636 bool + if yyl4636 > cap(yyv4636) { - yyrg4593 := len(yyv4593) > 0 - yyv24593 := yyv4593 - yyrl4593, yyrt4593 = z.DecInferLen(yyl4593, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4593 { - if yyrl4593 <= cap(yyv4593) { - yyv4593 = yyv4593[:yyrl4593] + yyrg4636 := len(yyv4636) > 0 + yyv24636 := yyv4636 + yyrl4636, yyrt4636 = z.DecInferLen(yyl4636, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4636 { + if yyrl4636 <= cap(yyv4636) { + yyv4636 = yyv4636[:yyrl4636] } else { - yyv4593 = make([]Endpoints, yyrl4593) + yyv4636 = make([]Endpoints, yyrl4636) } } else { - yyv4593 = make([]Endpoints, yyrl4593) + yyv4636 = make([]Endpoints, yyrl4636) } - yyc4593 = true - yyrr4593 = len(yyv4593) - if yyrg4593 { - copy(yyv4593, yyv24593) + yyc4636 = true + yyrr4636 = len(yyv4636) + if yyrg4636 { + copy(yyv4636, yyv24636) } - } else if yyl4593 != len(yyv4593) { - yyv4593 = yyv4593[:yyl4593] - yyc4593 = true + } else if yyl4636 != len(yyv4636) { + yyv4636 = yyv4636[:yyl4636] + yyc4636 = true } - yyj4593 := 0 - for ; yyj4593 < yyrr4593; yyj4593++ { - yyh4593.ElemContainerState(yyj4593) + yyj4636 := 0 + for ; yyj4636 < yyrr4636; yyj4636++ { + yyh4636.ElemContainerState(yyj4636) if r.TryDecodeAsNil() { - yyv4593[yyj4593] = Endpoints{} + yyv4636[yyj4636] = Endpoints{} } else { - yyv4594 := &yyv4593[yyj4593] - yyv4594.CodecDecodeSelf(d) + yyv4637 := &yyv4636[yyj4636] + yyv4637.CodecDecodeSelf(d) } } - if yyrt4593 { - for ; yyj4593 < yyl4593; yyj4593++ { - yyv4593 = append(yyv4593, Endpoints{}) - yyh4593.ElemContainerState(yyj4593) + if yyrt4636 { + for ; yyj4636 < yyl4636; yyj4636++ { + yyv4636 = append(yyv4636, Endpoints{}) + yyh4636.ElemContainerState(yyj4636) if r.TryDecodeAsNil() { - yyv4593[yyj4593] = Endpoints{} + yyv4636[yyj4636] = Endpoints{} } else { - yyv4595 := &yyv4593[yyj4593] - yyv4595.CodecDecodeSelf(d) + yyv4638 := &yyv4636[yyj4636] + yyv4638.CodecDecodeSelf(d) } } } } else { - yyj4593 := 0 - for ; !r.CheckBreak(); yyj4593++ { + yyj4636 := 0 + for ; !r.CheckBreak(); yyj4636++ { - if yyj4593 >= len(yyv4593) { - yyv4593 = append(yyv4593, Endpoints{}) // var yyz4593 Endpoints - yyc4593 = true + if yyj4636 >= len(yyv4636) { + yyv4636 = append(yyv4636, Endpoints{}) // var yyz4636 Endpoints + yyc4636 = true } - yyh4593.ElemContainerState(yyj4593) - if yyj4593 < len(yyv4593) { + yyh4636.ElemContainerState(yyj4636) + if yyj4636 < len(yyv4636) { if r.TryDecodeAsNil() { - yyv4593[yyj4593] = Endpoints{} + yyv4636[yyj4636] = Endpoints{} } else { - yyv4596 := &yyv4593[yyj4593] - yyv4596.CodecDecodeSelf(d) + yyv4639 := &yyv4636[yyj4636] + yyv4639.CodecDecodeSelf(d) } } else { @@ -58450,17 +59061,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4593 < len(yyv4593) { - yyv4593 = yyv4593[:yyj4593] - yyc4593 = true - } else if yyj4593 == 0 && yyv4593 == nil { - yyv4593 = []Endpoints{} - yyc4593 = true + if yyj4636 < len(yyv4636) { + yyv4636 = yyv4636[:yyj4636] + yyc4636 = true + } else if yyj4636 == 0 && yyv4636 == nil { + yyv4636 = []Endpoints{} + yyc4636 = true } } - yyh4593.End() - if yyc4593 { - *v = yyv4593 + yyh4636.End() + if yyc4636 { + *v = yyv4636 } } @@ -58469,10 +59080,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4597 := range v { + for _, yyv4640 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4598 := &yyv4597 - yy4598.CodecEncodeSelf(e) + yy4641 := &yyv4640 + yy4641.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58482,83 +59093,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4599 := *v - yyh4599, yyl4599 := z.DecSliceHelperStart() - var yyc4599 bool - if yyl4599 == 0 { - if yyv4599 == nil { - yyv4599 = []NodeCondition{} - yyc4599 = true - } else if len(yyv4599) != 0 { - yyv4599 = yyv4599[:0] - yyc4599 = true + yyv4642 := *v + yyh4642, yyl4642 := z.DecSliceHelperStart() + var yyc4642 bool + if yyl4642 == 0 { + if yyv4642 == nil { + yyv4642 = []NodeCondition{} + yyc4642 = true + } else if len(yyv4642) != 0 { + yyv4642 = yyv4642[:0] + yyc4642 = true } - } else if yyl4599 > 0 { - var yyrr4599, yyrl4599 int - var yyrt4599 bool - if yyl4599 > cap(yyv4599) { + } else if yyl4642 > 0 { + var yyrr4642, yyrl4642 int + var yyrt4642 bool + if yyl4642 > cap(yyv4642) { - yyrg4599 := len(yyv4599) > 0 - yyv24599 := yyv4599 - yyrl4599, yyrt4599 = z.DecInferLen(yyl4599, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4599 { - if yyrl4599 <= cap(yyv4599) { - yyv4599 = yyv4599[:yyrl4599] + yyrg4642 := len(yyv4642) > 0 + yyv24642 := yyv4642 + yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4642 { + if yyrl4642 <= cap(yyv4642) { + yyv4642 = yyv4642[:yyrl4642] } else { - yyv4599 = make([]NodeCondition, yyrl4599) + yyv4642 = make([]NodeCondition, yyrl4642) } } else { - yyv4599 = make([]NodeCondition, yyrl4599) + yyv4642 = make([]NodeCondition, yyrl4642) } - yyc4599 = true - yyrr4599 = len(yyv4599) - if yyrg4599 { - copy(yyv4599, yyv24599) + yyc4642 = true + yyrr4642 = len(yyv4642) + if yyrg4642 { + copy(yyv4642, yyv24642) } - } else if yyl4599 != len(yyv4599) { - yyv4599 = yyv4599[:yyl4599] - yyc4599 = true + } else if yyl4642 != len(yyv4642) { + yyv4642 = yyv4642[:yyl4642] + yyc4642 = true } - yyj4599 := 0 - for ; yyj4599 < yyrr4599; yyj4599++ { - yyh4599.ElemContainerState(yyj4599) + yyj4642 := 0 + for ; yyj4642 < yyrr4642; yyj4642++ { + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4599[yyj4599] = NodeCondition{} + yyv4642[yyj4642] = NodeCondition{} } else { - yyv4600 := &yyv4599[yyj4599] - yyv4600.CodecDecodeSelf(d) + yyv4643 := &yyv4642[yyj4642] + yyv4643.CodecDecodeSelf(d) } } - if yyrt4599 { - for ; yyj4599 < yyl4599; yyj4599++ { - yyv4599 = append(yyv4599, NodeCondition{}) - yyh4599.ElemContainerState(yyj4599) + if yyrt4642 { + for ; yyj4642 < yyl4642; yyj4642++ { + yyv4642 = append(yyv4642, NodeCondition{}) + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4599[yyj4599] = NodeCondition{} + yyv4642[yyj4642] = NodeCondition{} } else { - yyv4601 := &yyv4599[yyj4599] - yyv4601.CodecDecodeSelf(d) + yyv4644 := &yyv4642[yyj4642] + yyv4644.CodecDecodeSelf(d) } } } } else { - yyj4599 := 0 - for ; !r.CheckBreak(); yyj4599++ { + yyj4642 := 0 + for ; !r.CheckBreak(); yyj4642++ { - if yyj4599 >= len(yyv4599) { - yyv4599 = append(yyv4599, NodeCondition{}) // var yyz4599 NodeCondition - yyc4599 = true + if yyj4642 >= len(yyv4642) { + yyv4642 = append(yyv4642, NodeCondition{}) // var yyz4642 NodeCondition + yyc4642 = true } - yyh4599.ElemContainerState(yyj4599) - if yyj4599 < len(yyv4599) { + yyh4642.ElemContainerState(yyj4642) + if yyj4642 < len(yyv4642) { if r.TryDecodeAsNil() { - yyv4599[yyj4599] = NodeCondition{} + yyv4642[yyj4642] = NodeCondition{} } else { - yyv4602 := &yyv4599[yyj4599] - yyv4602.CodecDecodeSelf(d) + yyv4645 := &yyv4642[yyj4642] + yyv4645.CodecDecodeSelf(d) } } else { @@ -58566,17 +59177,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4599 < len(yyv4599) { - yyv4599 = yyv4599[:yyj4599] - yyc4599 = true - } else if yyj4599 == 0 && yyv4599 == nil { - yyv4599 = []NodeCondition{} - yyc4599 = true + if yyj4642 < len(yyv4642) { + yyv4642 = yyv4642[:yyj4642] + yyc4642 = true + } else if yyj4642 == 0 && yyv4642 == nil { + yyv4642 = []NodeCondition{} + yyc4642 = true } } - yyh4599.End() - if yyc4599 { - *v = yyv4599 + yyh4642.End() + if yyc4642 { + *v = yyv4642 } } @@ -58585,10 +59196,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4603 := range v { + for _, yyv4646 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4604 := &yyv4603 - yy4604.CodecEncodeSelf(e) + yy4647 := &yyv4646 + yy4647.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58598,83 +59209,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4605 := *v - yyh4605, yyl4605 := z.DecSliceHelperStart() - var yyc4605 bool - if yyl4605 == 0 { - if yyv4605 == nil { - yyv4605 = []NodeAddress{} - yyc4605 = true - } else if len(yyv4605) != 0 { - yyv4605 = yyv4605[:0] - yyc4605 = true + yyv4648 := *v + yyh4648, yyl4648 := z.DecSliceHelperStart() + var yyc4648 bool + if yyl4648 == 0 { + if yyv4648 == nil { + yyv4648 = []NodeAddress{} + yyc4648 = true + } else if len(yyv4648) != 0 { + yyv4648 = yyv4648[:0] + yyc4648 = true } - } else if yyl4605 > 0 { - var yyrr4605, yyrl4605 int - var yyrt4605 bool - if yyl4605 > cap(yyv4605) { + } else if yyl4648 > 0 { + var yyrr4648, yyrl4648 int + var yyrt4648 bool + if yyl4648 > cap(yyv4648) { - yyrg4605 := len(yyv4605) > 0 - yyv24605 := yyv4605 - yyrl4605, yyrt4605 = z.DecInferLen(yyl4605, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4605 { - if yyrl4605 <= cap(yyv4605) { - yyv4605 = yyv4605[:yyrl4605] + yyrg4648 := len(yyv4648) > 0 + yyv24648 := yyv4648 + yyrl4648, yyrt4648 = z.DecInferLen(yyl4648, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4648 { + if yyrl4648 <= cap(yyv4648) { + yyv4648 = yyv4648[:yyrl4648] } else { - yyv4605 = make([]NodeAddress, yyrl4605) + yyv4648 = make([]NodeAddress, yyrl4648) } } else { - yyv4605 = make([]NodeAddress, yyrl4605) + yyv4648 = make([]NodeAddress, yyrl4648) } - yyc4605 = true - yyrr4605 = len(yyv4605) - if yyrg4605 { - copy(yyv4605, yyv24605) + yyc4648 = true + yyrr4648 = len(yyv4648) + if yyrg4648 { + copy(yyv4648, yyv24648) } - } else if yyl4605 != len(yyv4605) { - yyv4605 = yyv4605[:yyl4605] - yyc4605 = true + } else if yyl4648 != len(yyv4648) { + yyv4648 = yyv4648[:yyl4648] + yyc4648 = true } - yyj4605 := 0 - for ; yyj4605 < yyrr4605; yyj4605++ { - yyh4605.ElemContainerState(yyj4605) + yyj4648 := 0 + for ; yyj4648 < yyrr4648; yyj4648++ { + yyh4648.ElemContainerState(yyj4648) if r.TryDecodeAsNil() { - yyv4605[yyj4605] = NodeAddress{} + yyv4648[yyj4648] = NodeAddress{} } else { - yyv4606 := &yyv4605[yyj4605] - yyv4606.CodecDecodeSelf(d) + yyv4649 := &yyv4648[yyj4648] + yyv4649.CodecDecodeSelf(d) } } - if yyrt4605 { - for ; yyj4605 < yyl4605; yyj4605++ { - yyv4605 = append(yyv4605, NodeAddress{}) - yyh4605.ElemContainerState(yyj4605) + if yyrt4648 { + for ; yyj4648 < yyl4648; yyj4648++ { + yyv4648 = append(yyv4648, NodeAddress{}) + yyh4648.ElemContainerState(yyj4648) if r.TryDecodeAsNil() { - yyv4605[yyj4605] = NodeAddress{} + yyv4648[yyj4648] = NodeAddress{} } else { - yyv4607 := &yyv4605[yyj4605] - yyv4607.CodecDecodeSelf(d) + yyv4650 := &yyv4648[yyj4648] + yyv4650.CodecDecodeSelf(d) } } } } else { - yyj4605 := 0 - for ; !r.CheckBreak(); yyj4605++ { + yyj4648 := 0 + for ; !r.CheckBreak(); yyj4648++ { - if yyj4605 >= len(yyv4605) { - yyv4605 = append(yyv4605, NodeAddress{}) // var yyz4605 NodeAddress - yyc4605 = true + if yyj4648 >= len(yyv4648) { + yyv4648 = append(yyv4648, NodeAddress{}) // var yyz4648 NodeAddress + yyc4648 = true } - yyh4605.ElemContainerState(yyj4605) - if yyj4605 < len(yyv4605) { + yyh4648.ElemContainerState(yyj4648) + if yyj4648 < len(yyv4648) { if r.TryDecodeAsNil() { - yyv4605[yyj4605] = NodeAddress{} + yyv4648[yyj4648] = NodeAddress{} } else { - yyv4608 := &yyv4605[yyj4605] - yyv4608.CodecDecodeSelf(d) + yyv4651 := &yyv4648[yyj4648] + yyv4651.CodecDecodeSelf(d) } } else { @@ -58682,17 +59293,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4605 < len(yyv4605) { - yyv4605 = yyv4605[:yyj4605] - yyc4605 = true - } else if yyj4605 == 0 && yyv4605 == nil { - yyv4605 = []NodeAddress{} - yyc4605 = true + if yyj4648 < len(yyv4648) { + yyv4648 = yyv4648[:yyj4648] + yyc4648 = true + } else if yyj4648 == 0 && yyv4648 == nil { + yyv4648 = []NodeAddress{} + yyc4648 = true } } - yyh4605.End() - if yyc4605 { - *v = yyv4605 + yyh4648.End() + if yyc4648 { + *v = yyv4648 } } @@ -58701,10 +59312,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4609 := range v { + for _, yyv4652 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4610 := &yyv4609 - yy4610.CodecEncodeSelf(e) + yy4653 := &yyv4652 + yy4653.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58714,83 +59325,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4611 := *v - yyh4611, yyl4611 := z.DecSliceHelperStart() - var yyc4611 bool - if yyl4611 == 0 { - if yyv4611 == nil { - yyv4611 = []ContainerImage{} - yyc4611 = true - } else if len(yyv4611) != 0 { - yyv4611 = yyv4611[:0] - yyc4611 = true + yyv4654 := *v + yyh4654, yyl4654 := z.DecSliceHelperStart() + var yyc4654 bool + if yyl4654 == 0 { + if yyv4654 == nil { + yyv4654 = []ContainerImage{} + yyc4654 = true + } else if len(yyv4654) != 0 { + yyv4654 = yyv4654[:0] + yyc4654 = true } - } else if yyl4611 > 0 { - var yyrr4611, yyrl4611 int - var yyrt4611 bool - if yyl4611 > cap(yyv4611) { + } else if yyl4654 > 0 { + var yyrr4654, yyrl4654 int + var yyrt4654 bool + if yyl4654 > cap(yyv4654) { - yyrg4611 := len(yyv4611) > 0 - yyv24611 := yyv4611 - yyrl4611, yyrt4611 = z.DecInferLen(yyl4611, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4611 { - if yyrl4611 <= cap(yyv4611) { - yyv4611 = yyv4611[:yyrl4611] + yyrg4654 := len(yyv4654) > 0 + yyv24654 := yyv4654 + yyrl4654, yyrt4654 = z.DecInferLen(yyl4654, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4654 { + if yyrl4654 <= cap(yyv4654) { + yyv4654 = yyv4654[:yyrl4654] } else { - yyv4611 = make([]ContainerImage, yyrl4611) + yyv4654 = make([]ContainerImage, yyrl4654) } } else { - yyv4611 = make([]ContainerImage, yyrl4611) + yyv4654 = make([]ContainerImage, yyrl4654) } - yyc4611 = true - yyrr4611 = len(yyv4611) - if yyrg4611 { - copy(yyv4611, yyv24611) + yyc4654 = true + yyrr4654 = len(yyv4654) + if yyrg4654 { + copy(yyv4654, yyv24654) } - } else if yyl4611 != len(yyv4611) { - yyv4611 = yyv4611[:yyl4611] - yyc4611 = true + } else if yyl4654 != len(yyv4654) { + yyv4654 = yyv4654[:yyl4654] + yyc4654 = true } - yyj4611 := 0 - for ; yyj4611 < yyrr4611; yyj4611++ { - yyh4611.ElemContainerState(yyj4611) + yyj4654 := 0 + for ; yyj4654 < yyrr4654; yyj4654++ { + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = ContainerImage{} + yyv4654[yyj4654] = ContainerImage{} } else { - yyv4612 := &yyv4611[yyj4611] - yyv4612.CodecDecodeSelf(d) + yyv4655 := &yyv4654[yyj4654] + yyv4655.CodecDecodeSelf(d) } } - if yyrt4611 { - for ; yyj4611 < yyl4611; yyj4611++ { - yyv4611 = append(yyv4611, ContainerImage{}) - yyh4611.ElemContainerState(yyj4611) + if yyrt4654 { + for ; yyj4654 < yyl4654; yyj4654++ { + yyv4654 = append(yyv4654, ContainerImage{}) + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = ContainerImage{} + yyv4654[yyj4654] = ContainerImage{} } else { - yyv4613 := &yyv4611[yyj4611] - yyv4613.CodecDecodeSelf(d) + yyv4656 := &yyv4654[yyj4654] + yyv4656.CodecDecodeSelf(d) } } } } else { - yyj4611 := 0 - for ; !r.CheckBreak(); yyj4611++ { + yyj4654 := 0 + for ; !r.CheckBreak(); yyj4654++ { - if yyj4611 >= len(yyv4611) { - yyv4611 = append(yyv4611, ContainerImage{}) // var yyz4611 ContainerImage - yyc4611 = true + if yyj4654 >= len(yyv4654) { + yyv4654 = append(yyv4654, ContainerImage{}) // var yyz4654 ContainerImage + yyc4654 = true } - yyh4611.ElemContainerState(yyj4611) - if yyj4611 < len(yyv4611) { + yyh4654.ElemContainerState(yyj4654) + if yyj4654 < len(yyv4654) { if r.TryDecodeAsNil() { - yyv4611[yyj4611] = ContainerImage{} + yyv4654[yyj4654] = ContainerImage{} } else { - yyv4614 := &yyv4611[yyj4611] - yyv4614.CodecDecodeSelf(d) + yyv4657 := &yyv4654[yyj4654] + yyv4657.CodecDecodeSelf(d) } } else { @@ -58798,17 +59409,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4611 < len(yyv4611) { - yyv4611 = yyv4611[:yyj4611] - yyc4611 = true - } else if yyj4611 == 0 && yyv4611 == nil { - yyv4611 = []ContainerImage{} - yyc4611 = true + if yyj4654 < len(yyv4654) { + yyv4654 = yyv4654[:yyj4654] + yyc4654 = true + } else if yyj4654 == 0 && yyv4654 == nil { + yyv4654 = []ContainerImage{} + yyc4654 = true } } - yyh4611.End() - if yyc4611 { - *v = yyv4611 + yyh4654.End() + if yyc4654 { + *v = yyv4654 } } @@ -58817,9 +59428,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4615 := range v { + for _, yyv4658 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4615.CodecEncodeSelf(e) + yyv4658.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58829,75 +59440,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4616 := *v - yyh4616, yyl4616 := z.DecSliceHelperStart() - var yyc4616 bool - if yyl4616 == 0 { - if yyv4616 == nil { - yyv4616 = []UniqueVolumeName{} - yyc4616 = true - } else if len(yyv4616) != 0 { - yyv4616 = yyv4616[:0] - yyc4616 = true + yyv4659 := *v + yyh4659, yyl4659 := z.DecSliceHelperStart() + var yyc4659 bool + if yyl4659 == 0 { + if yyv4659 == nil { + yyv4659 = []UniqueVolumeName{} + yyc4659 = true + } else if len(yyv4659) != 0 { + yyv4659 = yyv4659[:0] + yyc4659 = true } - } else if yyl4616 > 0 { - var yyrr4616, yyrl4616 int - var yyrt4616 bool - if yyl4616 > cap(yyv4616) { + } else if yyl4659 > 0 { + var yyrr4659, yyrl4659 int + var yyrt4659 bool + if yyl4659 > cap(yyv4659) { - yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4616 { - if yyrl4616 <= cap(yyv4616) { - yyv4616 = yyv4616[:yyrl4616] + yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4659 { + if yyrl4659 <= cap(yyv4659) { + yyv4659 = yyv4659[:yyrl4659] } else { - yyv4616 = make([]UniqueVolumeName, yyrl4616) + yyv4659 = make([]UniqueVolumeName, yyrl4659) } } else { - yyv4616 = make([]UniqueVolumeName, yyrl4616) + yyv4659 = make([]UniqueVolumeName, yyrl4659) } - yyc4616 = true - yyrr4616 = len(yyv4616) - } else if yyl4616 != len(yyv4616) { - yyv4616 = yyv4616[:yyl4616] - yyc4616 = true + yyc4659 = true + yyrr4659 = len(yyv4659) + } else if yyl4659 != len(yyv4659) { + yyv4659 = yyv4659[:yyl4659] + yyc4659 = true } - yyj4616 := 0 - for ; yyj4616 < yyrr4616; yyj4616++ { - yyh4616.ElemContainerState(yyj4616) + yyj4659 := 0 + for ; yyj4659 < yyrr4659; yyj4659++ { + yyh4659.ElemContainerState(yyj4659) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = "" + yyv4659[yyj4659] = "" } else { - yyv4616[yyj4616] = UniqueVolumeName(r.DecodeString()) + yyv4659[yyj4659] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4616 { - for ; yyj4616 < yyl4616; yyj4616++ { - yyv4616 = append(yyv4616, "") - yyh4616.ElemContainerState(yyj4616) + if yyrt4659 { + for ; yyj4659 < yyl4659; yyj4659++ { + yyv4659 = append(yyv4659, "") + yyh4659.ElemContainerState(yyj4659) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = "" + yyv4659[yyj4659] = "" } else { - yyv4616[yyj4616] = UniqueVolumeName(r.DecodeString()) + yyv4659[yyj4659] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4616 := 0 - for ; !r.CheckBreak(); yyj4616++ { + yyj4659 := 0 + for ; !r.CheckBreak(); yyj4659++ { - if yyj4616 >= len(yyv4616) { - yyv4616 = append(yyv4616, "") // var yyz4616 UniqueVolumeName - yyc4616 = true + if yyj4659 >= len(yyv4659) { + yyv4659 = append(yyv4659, "") // var yyz4659 UniqueVolumeName + yyc4659 = true } - yyh4616.ElemContainerState(yyj4616) - if yyj4616 < len(yyv4616) { + yyh4659.ElemContainerState(yyj4659) + if yyj4659 < len(yyv4659) { if r.TryDecodeAsNil() { - yyv4616[yyj4616] = "" + yyv4659[yyj4659] = "" } else { - yyv4616[yyj4616] = UniqueVolumeName(r.DecodeString()) + yyv4659[yyj4659] = UniqueVolumeName(r.DecodeString()) } } else { @@ -58905,17 +59516,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4616 < len(yyv4616) { - yyv4616 = yyv4616[:yyj4616] - yyc4616 = true - } else if yyj4616 == 0 && yyv4616 == nil { - yyv4616 = []UniqueVolumeName{} - yyc4616 = true + if yyj4659 < len(yyv4659) { + yyv4659 = yyv4659[:yyj4659] + yyc4659 = true + } else if yyj4659 == 0 && yyv4659 == nil { + yyv4659 = []UniqueVolumeName{} + yyc4659 = true } } - yyh4616.End() - if yyc4616 { - *v = yyv4616 + yyh4659.End() + if yyc4659 { + *v = yyv4659 } } @@ -58924,10 +59535,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4620 := range v { + for _, yyv4663 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4621 := &yyv4620 - yy4621.CodecEncodeSelf(e) + yy4664 := &yyv4663 + yy4664.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58937,83 +59548,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4622 := *v - yyh4622, yyl4622 := z.DecSliceHelperStart() - var yyc4622 bool - if yyl4622 == 0 { - if yyv4622 == nil { - yyv4622 = []AttachedVolume{} - yyc4622 = true - } else if len(yyv4622) != 0 { - yyv4622 = yyv4622[:0] - yyc4622 = true + yyv4665 := *v + yyh4665, yyl4665 := z.DecSliceHelperStart() + var yyc4665 bool + if yyl4665 == 0 { + if yyv4665 == nil { + yyv4665 = []AttachedVolume{} + yyc4665 = true + } else if len(yyv4665) != 0 { + yyv4665 = yyv4665[:0] + yyc4665 = true } - } else if yyl4622 > 0 { - var yyrr4622, yyrl4622 int - var yyrt4622 bool - if yyl4622 > cap(yyv4622) { + } else if yyl4665 > 0 { + var yyrr4665, yyrl4665 int + var yyrt4665 bool + if yyl4665 > cap(yyv4665) { - yyrg4622 := len(yyv4622) > 0 - yyv24622 := yyv4622 - yyrl4622, yyrt4622 = z.DecInferLen(yyl4622, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4622 { - if yyrl4622 <= cap(yyv4622) { - yyv4622 = yyv4622[:yyrl4622] + yyrg4665 := len(yyv4665) > 0 + yyv24665 := yyv4665 + yyrl4665, yyrt4665 = z.DecInferLen(yyl4665, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4665 { + if yyrl4665 <= cap(yyv4665) { + yyv4665 = yyv4665[:yyrl4665] } else { - yyv4622 = make([]AttachedVolume, yyrl4622) + yyv4665 = make([]AttachedVolume, yyrl4665) } } else { - yyv4622 = make([]AttachedVolume, yyrl4622) + yyv4665 = make([]AttachedVolume, yyrl4665) } - yyc4622 = true - yyrr4622 = len(yyv4622) - if yyrg4622 { - copy(yyv4622, yyv24622) + yyc4665 = true + yyrr4665 = len(yyv4665) + if yyrg4665 { + copy(yyv4665, yyv24665) } - } else if yyl4622 != len(yyv4622) { - yyv4622 = yyv4622[:yyl4622] - yyc4622 = true + } else if yyl4665 != len(yyv4665) { + yyv4665 = yyv4665[:yyl4665] + yyc4665 = true } - yyj4622 := 0 - for ; yyj4622 < yyrr4622; yyj4622++ { - yyh4622.ElemContainerState(yyj4622) + yyj4665 := 0 + for ; yyj4665 < yyrr4665; yyj4665++ { + yyh4665.ElemContainerState(yyj4665) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = AttachedVolume{} + yyv4665[yyj4665] = AttachedVolume{} } else { - yyv4623 := &yyv4622[yyj4622] - yyv4623.CodecDecodeSelf(d) + yyv4666 := &yyv4665[yyj4665] + yyv4666.CodecDecodeSelf(d) } } - if yyrt4622 { - for ; yyj4622 < yyl4622; yyj4622++ { - yyv4622 = append(yyv4622, AttachedVolume{}) - yyh4622.ElemContainerState(yyj4622) + if yyrt4665 { + for ; yyj4665 < yyl4665; yyj4665++ { + yyv4665 = append(yyv4665, AttachedVolume{}) + yyh4665.ElemContainerState(yyj4665) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = AttachedVolume{} + yyv4665[yyj4665] = AttachedVolume{} } else { - yyv4624 := &yyv4622[yyj4622] - yyv4624.CodecDecodeSelf(d) + yyv4667 := &yyv4665[yyj4665] + yyv4667.CodecDecodeSelf(d) } } } } else { - yyj4622 := 0 - for ; !r.CheckBreak(); yyj4622++ { + yyj4665 := 0 + for ; !r.CheckBreak(); yyj4665++ { - if yyj4622 >= len(yyv4622) { - yyv4622 = append(yyv4622, AttachedVolume{}) // var yyz4622 AttachedVolume - yyc4622 = true + if yyj4665 >= len(yyv4665) { + yyv4665 = append(yyv4665, AttachedVolume{}) // var yyz4665 AttachedVolume + yyc4665 = true } - yyh4622.ElemContainerState(yyj4622) - if yyj4622 < len(yyv4622) { + yyh4665.ElemContainerState(yyj4665) + if yyj4665 < len(yyv4665) { if r.TryDecodeAsNil() { - yyv4622[yyj4622] = AttachedVolume{} + yyv4665[yyj4665] = AttachedVolume{} } else { - yyv4625 := &yyv4622[yyj4622] - yyv4625.CodecDecodeSelf(d) + yyv4668 := &yyv4665[yyj4665] + yyv4668.CodecDecodeSelf(d) } } else { @@ -59021,17 +59632,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4622 < len(yyv4622) { - yyv4622 = yyv4622[:yyj4622] - yyc4622 = true - } else if yyj4622 == 0 && yyv4622 == nil { - yyv4622 = []AttachedVolume{} - yyc4622 = true + if yyj4665 < len(yyv4665) { + yyv4665 = yyv4665[:yyj4665] + yyc4665 = true + } else if yyj4665 == 0 && yyv4665 == nil { + yyv4665 = []AttachedVolume{} + yyc4665 = true } } - yyh4622.End() - if yyc4622 { - *v = yyv4622 + yyh4665.End() + if yyc4665 { + *v = yyv4665 } } @@ -59040,10 +59651,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4626 := range v { + for _, yyv4669 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4627 := &yyv4626 - yy4627.CodecEncodeSelf(e) + yy4670 := &yyv4669 + yy4670.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59053,83 +59664,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4628 := *v - yyh4628, yyl4628 := z.DecSliceHelperStart() - var yyc4628 bool - if yyl4628 == 0 { - if yyv4628 == nil { - yyv4628 = []PreferAvoidPodsEntry{} - yyc4628 = true - } else if len(yyv4628) != 0 { - yyv4628 = yyv4628[:0] - yyc4628 = true + yyv4671 := *v + yyh4671, yyl4671 := z.DecSliceHelperStart() + var yyc4671 bool + if yyl4671 == 0 { + if yyv4671 == nil { + yyv4671 = []PreferAvoidPodsEntry{} + yyc4671 = true + } else if len(yyv4671) != 0 { + yyv4671 = yyv4671[:0] + yyc4671 = true } - } else if yyl4628 > 0 { - var yyrr4628, yyrl4628 int - var yyrt4628 bool - if yyl4628 > cap(yyv4628) { + } else if yyl4671 > 0 { + var yyrr4671, yyrl4671 int + var yyrt4671 bool + if yyl4671 > cap(yyv4671) { - yyrg4628 := len(yyv4628) > 0 - yyv24628 := yyv4628 - yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4628 { - if yyrl4628 <= cap(yyv4628) { - yyv4628 = yyv4628[:yyrl4628] + yyrg4671 := len(yyv4671) > 0 + yyv24671 := yyv4671 + yyrl4671, yyrt4671 = z.DecInferLen(yyl4671, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4671 { + if yyrl4671 <= cap(yyv4671) { + yyv4671 = yyv4671[:yyrl4671] } else { - yyv4628 = make([]PreferAvoidPodsEntry, yyrl4628) + yyv4671 = make([]PreferAvoidPodsEntry, yyrl4671) } } else { - yyv4628 = make([]PreferAvoidPodsEntry, yyrl4628) + yyv4671 = make([]PreferAvoidPodsEntry, yyrl4671) } - yyc4628 = true - yyrr4628 = len(yyv4628) - if yyrg4628 { - copy(yyv4628, yyv24628) + yyc4671 = true + yyrr4671 = len(yyv4671) + if yyrg4671 { + copy(yyv4671, yyv24671) } - } else if yyl4628 != len(yyv4628) { - yyv4628 = yyv4628[:yyl4628] - yyc4628 = true + } else if yyl4671 != len(yyv4671) { + yyv4671 = yyv4671[:yyl4671] + yyc4671 = true } - yyj4628 := 0 - for ; yyj4628 < yyrr4628; yyj4628++ { - yyh4628.ElemContainerState(yyj4628) + yyj4671 := 0 + for ; yyj4671 < yyrr4671; yyj4671++ { + yyh4671.ElemContainerState(yyj4671) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PreferAvoidPodsEntry{} + yyv4671[yyj4671] = PreferAvoidPodsEntry{} } else { - yyv4629 := &yyv4628[yyj4628] - yyv4629.CodecDecodeSelf(d) + yyv4672 := &yyv4671[yyj4671] + yyv4672.CodecDecodeSelf(d) } } - if yyrt4628 { - for ; yyj4628 < yyl4628; yyj4628++ { - yyv4628 = append(yyv4628, PreferAvoidPodsEntry{}) - yyh4628.ElemContainerState(yyj4628) + if yyrt4671 { + for ; yyj4671 < yyl4671; yyj4671++ { + yyv4671 = append(yyv4671, PreferAvoidPodsEntry{}) + yyh4671.ElemContainerState(yyj4671) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PreferAvoidPodsEntry{} + yyv4671[yyj4671] = PreferAvoidPodsEntry{} } else { - yyv4630 := &yyv4628[yyj4628] - yyv4630.CodecDecodeSelf(d) + yyv4673 := &yyv4671[yyj4671] + yyv4673.CodecDecodeSelf(d) } } } } else { - yyj4628 := 0 - for ; !r.CheckBreak(); yyj4628++ { + yyj4671 := 0 + for ; !r.CheckBreak(); yyj4671++ { - if yyj4628 >= len(yyv4628) { - yyv4628 = append(yyv4628, PreferAvoidPodsEntry{}) // var yyz4628 PreferAvoidPodsEntry - yyc4628 = true + if yyj4671 >= len(yyv4671) { + yyv4671 = append(yyv4671, PreferAvoidPodsEntry{}) // var yyz4671 PreferAvoidPodsEntry + yyc4671 = true } - yyh4628.ElemContainerState(yyj4628) - if yyj4628 < len(yyv4628) { + yyh4671.ElemContainerState(yyj4671) + if yyj4671 < len(yyv4671) { if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PreferAvoidPodsEntry{} + yyv4671[yyj4671] = PreferAvoidPodsEntry{} } else { - yyv4631 := &yyv4628[yyj4628] - yyv4631.CodecDecodeSelf(d) + yyv4674 := &yyv4671[yyj4671] + yyv4674.CodecDecodeSelf(d) } } else { @@ -59137,17 +59748,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4628 < len(yyv4628) { - yyv4628 = yyv4628[:yyj4628] - yyc4628 = true - } else if yyj4628 == 0 && yyv4628 == nil { - yyv4628 = []PreferAvoidPodsEntry{} - yyc4628 = true + if yyj4671 < len(yyv4671) { + yyv4671 = yyv4671[:yyj4671] + yyc4671 = true + } else if yyj4671 == 0 && yyv4671 == nil { + yyv4671 = []PreferAvoidPodsEntry{} + yyc4671 = true } } - yyh4628.End() - if yyc4628 { - *v = yyv4628 + yyh4671.End() + if yyc4671 { + *v = yyv4671 } } @@ -59156,19 +59767,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4632, yyv4632 := range v { + for yyk4675, yyv4675 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4632.CodecEncodeSelf(e) + yyk4675.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4633 := &yyv4632 - yym4634 := z.EncBinary() - _ = yym4634 + yy4676 := &yyv4675 + yym4677 := z.EncBinary() + _ = yym4677 if false { - } else if z.HasExtensions() && z.EncExt(yy4633) { - } else if !yym4634 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4633) + } else if z.HasExtensions() && z.EncExt(yy4676) { + } else if !yym4677 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4676) } else { - z.EncFallback(yy4633) + z.EncFallback(yy4676) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -59179,86 +59790,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4635 := *v - yyl4635 := r.ReadMapStart() - yybh4635 := z.DecBasicHandle() - if yyv4635 == nil { - yyrl4635, _ := z.DecInferLen(yyl4635, yybh4635.MaxInitLen, 72) - yyv4635 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4635) - *v = yyv4635 + yyv4678 := *v + yyl4678 := r.ReadMapStart() + yybh4678 := z.DecBasicHandle() + if yyv4678 == nil { + yyrl4678, _ := z.DecInferLen(yyl4678, yybh4678.MaxInitLen, 72) + yyv4678 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4678) + *v = yyv4678 } - var yymk4635 ResourceName - var yymv4635 pkg3_resource.Quantity - var yymg4635 bool - if yybh4635.MapValueReset { - yymg4635 = true + var yymk4678 ResourceName + var yymv4678 pkg3_resource.Quantity + var yymg4678 bool + if yybh4678.MapValueReset { + yymg4678 = true } - if yyl4635 > 0 { - for yyj4635 := 0; yyj4635 < yyl4635; yyj4635++ { + if yyl4678 > 0 { + for yyj4678 := 0; yyj4678 < yyl4678; yyj4678++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4635 = "" + yymk4678 = "" } else { - yymk4635 = ResourceName(r.DecodeString()) + yymk4678 = ResourceName(r.DecodeString()) } - if yymg4635 { - yymv4635 = yyv4635[yymk4635] + if yymg4678 { + yymv4678 = yyv4678[yymk4678] } else { - yymv4635 = pkg3_resource.Quantity{} + yymv4678 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4635 = pkg3_resource.Quantity{} + yymv4678 = pkg3_resource.Quantity{} } else { - yyv4637 := &yymv4635 - yym4638 := z.DecBinary() - _ = yym4638 + yyv4680 := &yymv4678 + yym4681 := z.DecBinary() + _ = yym4681 if false { - } else if z.HasExtensions() && z.DecExt(yyv4637) { - } else if !yym4638 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4637) + } else if z.HasExtensions() && z.DecExt(yyv4680) { + } else if !yym4681 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4680) } else { - z.DecFallback(yyv4637, false) + z.DecFallback(yyv4680, false) } } - if yyv4635 != nil { - yyv4635[yymk4635] = yymv4635 + if yyv4678 != nil { + yyv4678[yymk4678] = yymv4678 } } - } else if yyl4635 < 0 { - for yyj4635 := 0; !r.CheckBreak(); yyj4635++ { + } else if yyl4678 < 0 { + for yyj4678 := 0; !r.CheckBreak(); yyj4678++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4635 = "" + yymk4678 = "" } else { - yymk4635 = ResourceName(r.DecodeString()) + yymk4678 = ResourceName(r.DecodeString()) } - if yymg4635 { - yymv4635 = yyv4635[yymk4635] + if yymg4678 { + yymv4678 = yyv4678[yymk4678] } else { - yymv4635 = pkg3_resource.Quantity{} + yymv4678 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4635 = pkg3_resource.Quantity{} + yymv4678 = pkg3_resource.Quantity{} } else { - yyv4640 := &yymv4635 - yym4641 := z.DecBinary() - _ = yym4641 + yyv4683 := &yymv4678 + yym4684 := z.DecBinary() + _ = yym4684 if false { - } else if z.HasExtensions() && z.DecExt(yyv4640) { - } else if !yym4641 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4640) + } else if z.HasExtensions() && z.DecExt(yyv4683) { + } else if !yym4684 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4683) } else { - z.DecFallback(yyv4640, false) + z.DecFallback(yyv4683, false) } } - if yyv4635 != nil { - yyv4635[yymk4635] = yymv4635 + if yyv4678 != nil { + yyv4678[yymk4678] = yymv4678 } } } // else len==0: TODO: Should we clear map entries? @@ -59270,10 +59881,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4642 := range v { + for _, yyv4685 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4643 := &yyv4642 - yy4643.CodecEncodeSelf(e) + yy4686 := &yyv4685 + yy4686.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59283,83 +59894,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4644 := *v - yyh4644, yyl4644 := z.DecSliceHelperStart() - var yyc4644 bool - if yyl4644 == 0 { - if yyv4644 == nil { - yyv4644 = []Node{} - yyc4644 = true - } else if len(yyv4644) != 0 { - yyv4644 = yyv4644[:0] - yyc4644 = true + yyv4687 := *v + yyh4687, yyl4687 := z.DecSliceHelperStart() + var yyc4687 bool + if yyl4687 == 0 { + if yyv4687 == nil { + yyv4687 = []Node{} + yyc4687 = true + } else if len(yyv4687) != 0 { + yyv4687 = yyv4687[:0] + yyc4687 = true } - } else if yyl4644 > 0 { - var yyrr4644, yyrl4644 int - var yyrt4644 bool - if yyl4644 > cap(yyv4644) { + } else if yyl4687 > 0 { + var yyrr4687, yyrl4687 int + var yyrt4687 bool + if yyl4687 > cap(yyv4687) { - yyrg4644 := len(yyv4644) > 0 - yyv24644 := yyv4644 - yyrl4644, yyrt4644 = z.DecInferLen(yyl4644, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4644 { - if yyrl4644 <= cap(yyv4644) { - yyv4644 = yyv4644[:yyrl4644] + yyrg4687 := len(yyv4687) > 0 + yyv24687 := yyv4687 + yyrl4687, yyrt4687 = z.DecInferLen(yyl4687, z.DecBasicHandle().MaxInitLen, 616) + if yyrt4687 { + if yyrl4687 <= cap(yyv4687) { + yyv4687 = yyv4687[:yyrl4687] } else { - yyv4644 = make([]Node, yyrl4644) + yyv4687 = make([]Node, yyrl4687) } } else { - yyv4644 = make([]Node, yyrl4644) + yyv4687 = make([]Node, yyrl4687) } - yyc4644 = true - yyrr4644 = len(yyv4644) - if yyrg4644 { - copy(yyv4644, yyv24644) + yyc4687 = true + yyrr4687 = len(yyv4687) + if yyrg4687 { + copy(yyv4687, yyv24687) } - } else if yyl4644 != len(yyv4644) { - yyv4644 = yyv4644[:yyl4644] - yyc4644 = true + } else if yyl4687 != len(yyv4687) { + yyv4687 = yyv4687[:yyl4687] + yyc4687 = true } - yyj4644 := 0 - for ; yyj4644 < yyrr4644; yyj4644++ { - yyh4644.ElemContainerState(yyj4644) + yyj4687 := 0 + for ; yyj4687 < yyrr4687; yyj4687++ { + yyh4687.ElemContainerState(yyj4687) if r.TryDecodeAsNil() { - yyv4644[yyj4644] = Node{} + yyv4687[yyj4687] = Node{} } else { - yyv4645 := &yyv4644[yyj4644] - yyv4645.CodecDecodeSelf(d) + yyv4688 := &yyv4687[yyj4687] + yyv4688.CodecDecodeSelf(d) } } - if yyrt4644 { - for ; yyj4644 < yyl4644; yyj4644++ { - yyv4644 = append(yyv4644, Node{}) - yyh4644.ElemContainerState(yyj4644) + if yyrt4687 { + for ; yyj4687 < yyl4687; yyj4687++ { + yyv4687 = append(yyv4687, Node{}) + yyh4687.ElemContainerState(yyj4687) if r.TryDecodeAsNil() { - yyv4644[yyj4644] = Node{} + yyv4687[yyj4687] = Node{} } else { - yyv4646 := &yyv4644[yyj4644] - yyv4646.CodecDecodeSelf(d) + yyv4689 := &yyv4687[yyj4687] + yyv4689.CodecDecodeSelf(d) } } } } else { - yyj4644 := 0 - for ; !r.CheckBreak(); yyj4644++ { + yyj4687 := 0 + for ; !r.CheckBreak(); yyj4687++ { - if yyj4644 >= len(yyv4644) { - yyv4644 = append(yyv4644, Node{}) // var yyz4644 Node - yyc4644 = true + if yyj4687 >= len(yyv4687) { + yyv4687 = append(yyv4687, Node{}) // var yyz4687 Node + yyc4687 = true } - yyh4644.ElemContainerState(yyj4644) - if yyj4644 < len(yyv4644) { + yyh4687.ElemContainerState(yyj4687) + if yyj4687 < len(yyv4687) { if r.TryDecodeAsNil() { - yyv4644[yyj4644] = Node{} + yyv4687[yyj4687] = Node{} } else { - yyv4647 := &yyv4644[yyj4644] - yyv4647.CodecDecodeSelf(d) + yyv4690 := &yyv4687[yyj4687] + yyv4690.CodecDecodeSelf(d) } } else { @@ -59367,17 +59978,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4644 < len(yyv4644) { - yyv4644 = yyv4644[:yyj4644] - yyc4644 = true - } else if yyj4644 == 0 && yyv4644 == nil { - yyv4644 = []Node{} - yyc4644 = true + if yyj4687 < len(yyv4687) { + yyv4687 = yyv4687[:yyj4687] + yyc4687 = true + } else if yyj4687 == 0 && yyv4687 == nil { + yyv4687 = []Node{} + yyc4687 = true } } - yyh4644.End() - if yyc4644 { - *v = yyv4644 + yyh4687.End() + if yyc4687 { + *v = yyv4687 } } @@ -59386,9 +59997,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4648 := range v { + for _, yyv4691 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4648.CodecEncodeSelf(e) + yyv4691.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59398,75 +60009,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4649 := *v - yyh4649, yyl4649 := z.DecSliceHelperStart() - var yyc4649 bool - if yyl4649 == 0 { - if yyv4649 == nil { - yyv4649 = []FinalizerName{} - yyc4649 = true - } else if len(yyv4649) != 0 { - yyv4649 = yyv4649[:0] - yyc4649 = true + yyv4692 := *v + yyh4692, yyl4692 := z.DecSliceHelperStart() + var yyc4692 bool + if yyl4692 == 0 { + if yyv4692 == nil { + yyv4692 = []FinalizerName{} + yyc4692 = true + } else if len(yyv4692) != 0 { + yyv4692 = yyv4692[:0] + yyc4692 = true } - } else if yyl4649 > 0 { - var yyrr4649, yyrl4649 int - var yyrt4649 bool - if yyl4649 > cap(yyv4649) { + } else if yyl4692 > 0 { + var yyrr4692, yyrl4692 int + var yyrt4692 bool + if yyl4692 > cap(yyv4692) { - yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4649 { - if yyrl4649 <= cap(yyv4649) { - yyv4649 = yyv4649[:yyrl4649] + yyrl4692, yyrt4692 = z.DecInferLen(yyl4692, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4692 { + if yyrl4692 <= cap(yyv4692) { + yyv4692 = yyv4692[:yyrl4692] } else { - yyv4649 = make([]FinalizerName, yyrl4649) + yyv4692 = make([]FinalizerName, yyrl4692) } } else { - yyv4649 = make([]FinalizerName, yyrl4649) + yyv4692 = make([]FinalizerName, yyrl4692) } - yyc4649 = true - yyrr4649 = len(yyv4649) - } else if yyl4649 != len(yyv4649) { - yyv4649 = yyv4649[:yyl4649] - yyc4649 = true + yyc4692 = true + yyrr4692 = len(yyv4692) + } else if yyl4692 != len(yyv4692) { + yyv4692 = yyv4692[:yyl4692] + yyc4692 = true } - yyj4649 := 0 - for ; yyj4649 < yyrr4649; yyj4649++ { - yyh4649.ElemContainerState(yyj4649) + yyj4692 := 0 + for ; yyj4692 < yyrr4692; yyj4692++ { + yyh4692.ElemContainerState(yyj4692) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = "" + yyv4692[yyj4692] = "" } else { - yyv4649[yyj4649] = FinalizerName(r.DecodeString()) + yyv4692[yyj4692] = FinalizerName(r.DecodeString()) } } - if yyrt4649 { - for ; yyj4649 < yyl4649; yyj4649++ { - yyv4649 = append(yyv4649, "") - yyh4649.ElemContainerState(yyj4649) + if yyrt4692 { + for ; yyj4692 < yyl4692; yyj4692++ { + yyv4692 = append(yyv4692, "") + yyh4692.ElemContainerState(yyj4692) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = "" + yyv4692[yyj4692] = "" } else { - yyv4649[yyj4649] = FinalizerName(r.DecodeString()) + yyv4692[yyj4692] = FinalizerName(r.DecodeString()) } } } } else { - yyj4649 := 0 - for ; !r.CheckBreak(); yyj4649++ { + yyj4692 := 0 + for ; !r.CheckBreak(); yyj4692++ { - if yyj4649 >= len(yyv4649) { - yyv4649 = append(yyv4649, "") // var yyz4649 FinalizerName - yyc4649 = true + if yyj4692 >= len(yyv4692) { + yyv4692 = append(yyv4692, "") // var yyz4692 FinalizerName + yyc4692 = true } - yyh4649.ElemContainerState(yyj4649) - if yyj4649 < len(yyv4649) { + yyh4692.ElemContainerState(yyj4692) + if yyj4692 < len(yyv4692) { if r.TryDecodeAsNil() { - yyv4649[yyj4649] = "" + yyv4692[yyj4692] = "" } else { - yyv4649[yyj4649] = FinalizerName(r.DecodeString()) + yyv4692[yyj4692] = FinalizerName(r.DecodeString()) } } else { @@ -59474,17 +60085,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4649 < len(yyv4649) { - yyv4649 = yyv4649[:yyj4649] - yyc4649 = true - } else if yyj4649 == 0 && yyv4649 == nil { - yyv4649 = []FinalizerName{} - yyc4649 = true + if yyj4692 < len(yyv4692) { + yyv4692 = yyv4692[:yyj4692] + yyc4692 = true + } else if yyj4692 == 0 && yyv4692 == nil { + yyv4692 = []FinalizerName{} + yyc4692 = true } } - yyh4649.End() - if yyc4649 { - *v = yyv4649 + yyh4692.End() + if yyc4692 { + *v = yyv4692 } } @@ -59493,10 +60104,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4653 := range v { + for _, yyv4696 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4654 := &yyv4653 - yy4654.CodecEncodeSelf(e) + yy4697 := &yyv4696 + yy4697.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59506,83 +60117,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4655 := *v - yyh4655, yyl4655 := z.DecSliceHelperStart() - var yyc4655 bool - if yyl4655 == 0 { - if yyv4655 == nil { - yyv4655 = []Namespace{} - yyc4655 = true - } else if len(yyv4655) != 0 { - yyv4655 = yyv4655[:0] - yyc4655 = true + yyv4698 := *v + yyh4698, yyl4698 := z.DecSliceHelperStart() + var yyc4698 bool + if yyl4698 == 0 { + if yyv4698 == nil { + yyv4698 = []Namespace{} + yyc4698 = true + } else if len(yyv4698) != 0 { + yyv4698 = yyv4698[:0] + yyc4698 = true } - } else if yyl4655 > 0 { - var yyrr4655, yyrl4655 int - var yyrt4655 bool - if yyl4655 > cap(yyv4655) { + } else if yyl4698 > 0 { + var yyrr4698, yyrl4698 int + var yyrt4698 bool + if yyl4698 > cap(yyv4698) { - yyrg4655 := len(yyv4655) > 0 - yyv24655 := yyv4655 - yyrl4655, yyrt4655 = z.DecInferLen(yyl4655, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4655 { - if yyrl4655 <= cap(yyv4655) { - yyv4655 = yyv4655[:yyrl4655] + yyrg4698 := len(yyv4698) > 0 + yyv24698 := yyv4698 + yyrl4698, yyrt4698 = z.DecInferLen(yyl4698, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4698 { + if yyrl4698 <= cap(yyv4698) { + yyv4698 = yyv4698[:yyrl4698] } else { - yyv4655 = make([]Namespace, yyrl4655) + yyv4698 = make([]Namespace, yyrl4698) } } else { - yyv4655 = make([]Namespace, yyrl4655) + yyv4698 = make([]Namespace, yyrl4698) } - yyc4655 = true - yyrr4655 = len(yyv4655) - if yyrg4655 { - copy(yyv4655, yyv24655) + yyc4698 = true + yyrr4698 = len(yyv4698) + if yyrg4698 { + copy(yyv4698, yyv24698) } - } else if yyl4655 != len(yyv4655) { - yyv4655 = yyv4655[:yyl4655] - yyc4655 = true + } else if yyl4698 != len(yyv4698) { + yyv4698 = yyv4698[:yyl4698] + yyc4698 = true } - yyj4655 := 0 - for ; yyj4655 < yyrr4655; yyj4655++ { - yyh4655.ElemContainerState(yyj4655) + yyj4698 := 0 + for ; yyj4698 < yyrr4698; yyj4698++ { + yyh4698.ElemContainerState(yyj4698) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = Namespace{} + yyv4698[yyj4698] = Namespace{} } else { - yyv4656 := &yyv4655[yyj4655] - yyv4656.CodecDecodeSelf(d) + yyv4699 := &yyv4698[yyj4698] + yyv4699.CodecDecodeSelf(d) } } - if yyrt4655 { - for ; yyj4655 < yyl4655; yyj4655++ { - yyv4655 = append(yyv4655, Namespace{}) - yyh4655.ElemContainerState(yyj4655) + if yyrt4698 { + for ; yyj4698 < yyl4698; yyj4698++ { + yyv4698 = append(yyv4698, Namespace{}) + yyh4698.ElemContainerState(yyj4698) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = Namespace{} + yyv4698[yyj4698] = Namespace{} } else { - yyv4657 := &yyv4655[yyj4655] - yyv4657.CodecDecodeSelf(d) + yyv4700 := &yyv4698[yyj4698] + yyv4700.CodecDecodeSelf(d) } } } } else { - yyj4655 := 0 - for ; !r.CheckBreak(); yyj4655++ { + yyj4698 := 0 + for ; !r.CheckBreak(); yyj4698++ { - if yyj4655 >= len(yyv4655) { - yyv4655 = append(yyv4655, Namespace{}) // var yyz4655 Namespace - yyc4655 = true + if yyj4698 >= len(yyv4698) { + yyv4698 = append(yyv4698, Namespace{}) // var yyz4698 Namespace + yyc4698 = true } - yyh4655.ElemContainerState(yyj4655) - if yyj4655 < len(yyv4655) { + yyh4698.ElemContainerState(yyj4698) + if yyj4698 < len(yyv4698) { if r.TryDecodeAsNil() { - yyv4655[yyj4655] = Namespace{} + yyv4698[yyj4698] = Namespace{} } else { - yyv4658 := &yyv4655[yyj4655] - yyv4658.CodecDecodeSelf(d) + yyv4701 := &yyv4698[yyj4698] + yyv4701.CodecDecodeSelf(d) } } else { @@ -59590,17 +60201,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4655 < len(yyv4655) { - yyv4655 = yyv4655[:yyj4655] - yyc4655 = true - } else if yyj4655 == 0 && yyv4655 == nil { - yyv4655 = []Namespace{} - yyc4655 = true + if yyj4698 < len(yyv4698) { + yyv4698 = yyv4698[:yyj4698] + yyc4698 = true + } else if yyj4698 == 0 && yyv4698 == nil { + yyv4698 = []Namespace{} + yyc4698 = true } } - yyh4655.End() - if yyc4655 { - *v = yyv4655 + yyh4698.End() + if yyc4698 { + *v = yyv4698 } } @@ -59609,10 +60220,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4659 := range v { + for _, yyv4702 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4660 := &yyv4659 - yy4660.CodecEncodeSelf(e) + yy4703 := &yyv4702 + yy4703.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59622,83 +60233,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4661 := *v - yyh4661, yyl4661 := z.DecSliceHelperStart() - var yyc4661 bool - if yyl4661 == 0 { - if yyv4661 == nil { - yyv4661 = []Event{} - yyc4661 = true - } else if len(yyv4661) != 0 { - yyv4661 = yyv4661[:0] - yyc4661 = true + yyv4704 := *v + yyh4704, yyl4704 := z.DecSliceHelperStart() + var yyc4704 bool + if yyl4704 == 0 { + if yyv4704 == nil { + yyv4704 = []Event{} + yyc4704 = true + } else if len(yyv4704) != 0 { + yyv4704 = yyv4704[:0] + yyc4704 = true } - } else if yyl4661 > 0 { - var yyrr4661, yyrl4661 int - var yyrt4661 bool - if yyl4661 > cap(yyv4661) { + } else if yyl4704 > 0 { + var yyrr4704, yyrl4704 int + var yyrt4704 bool + if yyl4704 > cap(yyv4704) { - yyrg4661 := len(yyv4661) > 0 - yyv24661 := yyv4661 - yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4661 { - if yyrl4661 <= cap(yyv4661) { - yyv4661 = yyv4661[:yyrl4661] + yyrg4704 := len(yyv4704) > 0 + yyv24704 := yyv4704 + yyrl4704, yyrt4704 = z.DecInferLen(yyl4704, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4704 { + if yyrl4704 <= cap(yyv4704) { + yyv4704 = yyv4704[:yyrl4704] } else { - yyv4661 = make([]Event, yyrl4661) + yyv4704 = make([]Event, yyrl4704) } } else { - yyv4661 = make([]Event, yyrl4661) + yyv4704 = make([]Event, yyrl4704) } - yyc4661 = true - yyrr4661 = len(yyv4661) - if yyrg4661 { - copy(yyv4661, yyv24661) + yyc4704 = true + yyrr4704 = len(yyv4704) + if yyrg4704 { + copy(yyv4704, yyv24704) } - } else if yyl4661 != len(yyv4661) { - yyv4661 = yyv4661[:yyl4661] - yyc4661 = true + } else if yyl4704 != len(yyv4704) { + yyv4704 = yyv4704[:yyl4704] + yyc4704 = true } - yyj4661 := 0 - for ; yyj4661 < yyrr4661; yyj4661++ { - yyh4661.ElemContainerState(yyj4661) + yyj4704 := 0 + for ; yyj4704 < yyrr4704; yyj4704++ { + yyh4704.ElemContainerState(yyj4704) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = Event{} + yyv4704[yyj4704] = Event{} } else { - yyv4662 := &yyv4661[yyj4661] - yyv4662.CodecDecodeSelf(d) + yyv4705 := &yyv4704[yyj4704] + yyv4705.CodecDecodeSelf(d) } } - if yyrt4661 { - for ; yyj4661 < yyl4661; yyj4661++ { - yyv4661 = append(yyv4661, Event{}) - yyh4661.ElemContainerState(yyj4661) + if yyrt4704 { + for ; yyj4704 < yyl4704; yyj4704++ { + yyv4704 = append(yyv4704, Event{}) + yyh4704.ElemContainerState(yyj4704) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = Event{} + yyv4704[yyj4704] = Event{} } else { - yyv4663 := &yyv4661[yyj4661] - yyv4663.CodecDecodeSelf(d) + yyv4706 := &yyv4704[yyj4704] + yyv4706.CodecDecodeSelf(d) } } } } else { - yyj4661 := 0 - for ; !r.CheckBreak(); yyj4661++ { + yyj4704 := 0 + for ; !r.CheckBreak(); yyj4704++ { - if yyj4661 >= len(yyv4661) { - yyv4661 = append(yyv4661, Event{}) // var yyz4661 Event - yyc4661 = true + if yyj4704 >= len(yyv4704) { + yyv4704 = append(yyv4704, Event{}) // var yyz4704 Event + yyc4704 = true } - yyh4661.ElemContainerState(yyj4661) - if yyj4661 < len(yyv4661) { + yyh4704.ElemContainerState(yyj4704) + if yyj4704 < len(yyv4704) { if r.TryDecodeAsNil() { - yyv4661[yyj4661] = Event{} + yyv4704[yyj4704] = Event{} } else { - yyv4664 := &yyv4661[yyj4661] - yyv4664.CodecDecodeSelf(d) + yyv4707 := &yyv4704[yyj4704] + yyv4707.CodecDecodeSelf(d) } } else { @@ -59706,17 +60317,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4661 < len(yyv4661) { - yyv4661 = yyv4661[:yyj4661] - yyc4661 = true - } else if yyj4661 == 0 && yyv4661 == nil { - yyv4661 = []Event{} - yyc4661 = true + if yyj4704 < len(yyv4704) { + yyv4704 = yyv4704[:yyj4704] + yyc4704 = true + } else if yyj4704 == 0 && yyv4704 == nil { + yyv4704 = []Event{} + yyc4704 = true } } - yyh4661.End() - if yyc4661 { - *v = yyv4661 + yyh4704.End() + if yyc4704 { + *v = yyv4704 } } @@ -59725,17 +60336,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4665 := range v { + for _, yyv4708 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4666 := &yyv4665 - yym4667 := z.EncBinary() - _ = yym4667 + yy4709 := &yyv4708 + yym4710 := z.EncBinary() + _ = yym4710 if false { - } else if z.HasExtensions() && z.EncExt(yy4666) { - } else if !yym4667 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4666) + } else if z.HasExtensions() && z.EncExt(yy4709) { + } else if !yym4710 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4709) } else { - z.EncFallback(yy4666) + z.EncFallback(yy4709) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -59746,78 +60357,78 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4668 := *v - yyh4668, yyl4668 := z.DecSliceHelperStart() - var yyc4668 bool - if yyl4668 == 0 { - if yyv4668 == nil { - yyv4668 = []pkg5_runtime.RawExtension{} - yyc4668 = true - } else if len(yyv4668) != 0 { - yyv4668 = yyv4668[:0] - yyc4668 = true + yyv4711 := *v + yyh4711, yyl4711 := z.DecSliceHelperStart() + var yyc4711 bool + if yyl4711 == 0 { + if yyv4711 == nil { + yyv4711 = []pkg5_runtime.RawExtension{} + yyc4711 = true + } else if len(yyv4711) != 0 { + yyv4711 = yyv4711[:0] + yyc4711 = true } - } else if yyl4668 > 0 { - var yyrr4668, yyrl4668 int - var yyrt4668 bool - if yyl4668 > cap(yyv4668) { + } else if yyl4711 > 0 { + var yyrr4711, yyrl4711 int + var yyrt4711 bool + if yyl4711 > cap(yyv4711) { - yyrg4668 := len(yyv4668) > 0 - yyv24668 := yyv4668 - yyrl4668, yyrt4668 = z.DecInferLen(yyl4668, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4668 { - if yyrl4668 <= cap(yyv4668) { - yyv4668 = yyv4668[:yyrl4668] + yyrg4711 := len(yyv4711) > 0 + yyv24711 := yyv4711 + yyrl4711, yyrt4711 = z.DecInferLen(yyl4711, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4711 { + if yyrl4711 <= cap(yyv4711) { + yyv4711 = yyv4711[:yyrl4711] } else { - yyv4668 = make([]pkg5_runtime.RawExtension, yyrl4668) + yyv4711 = make([]pkg5_runtime.RawExtension, yyrl4711) } } else { - yyv4668 = make([]pkg5_runtime.RawExtension, yyrl4668) + yyv4711 = make([]pkg5_runtime.RawExtension, yyrl4711) } - yyc4668 = true - yyrr4668 = len(yyv4668) - if yyrg4668 { - copy(yyv4668, yyv24668) + yyc4711 = true + yyrr4711 = len(yyv4711) + if yyrg4711 { + copy(yyv4711, yyv24711) } - } else if yyl4668 != len(yyv4668) { - yyv4668 = yyv4668[:yyl4668] - yyc4668 = true + } else if yyl4711 != len(yyv4711) { + yyv4711 = yyv4711[:yyl4711] + yyc4711 = true } - yyj4668 := 0 - for ; yyj4668 < yyrr4668; yyj4668++ { - yyh4668.ElemContainerState(yyj4668) + yyj4711 := 0 + for ; yyj4711 < yyrr4711; yyj4711++ { + yyh4711.ElemContainerState(yyj4711) if r.TryDecodeAsNil() { - yyv4668[yyj4668] = pkg5_runtime.RawExtension{} + yyv4711[yyj4711] = pkg5_runtime.RawExtension{} } else { - yyv4669 := &yyv4668[yyj4668] - yym4670 := z.DecBinary() - _ = yym4670 + yyv4712 := &yyv4711[yyj4711] + yym4713 := z.DecBinary() + _ = yym4713 if false { - } else if z.HasExtensions() && z.DecExt(yyv4669) { - } else if !yym4670 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4669) + } else if z.HasExtensions() && z.DecExt(yyv4712) { + } else if !yym4713 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4712) } else { - z.DecFallback(yyv4669, false) + z.DecFallback(yyv4712, false) } } } - if yyrt4668 { - for ; yyj4668 < yyl4668; yyj4668++ { - yyv4668 = append(yyv4668, pkg5_runtime.RawExtension{}) - yyh4668.ElemContainerState(yyj4668) + if yyrt4711 { + for ; yyj4711 < yyl4711; yyj4711++ { + yyv4711 = append(yyv4711, pkg5_runtime.RawExtension{}) + yyh4711.ElemContainerState(yyj4711) if r.TryDecodeAsNil() { - yyv4668[yyj4668] = pkg5_runtime.RawExtension{} + yyv4711[yyj4711] = pkg5_runtime.RawExtension{} } else { - yyv4671 := &yyv4668[yyj4668] - yym4672 := z.DecBinary() - _ = yym4672 + yyv4714 := &yyv4711[yyj4711] + yym4715 := z.DecBinary() + _ = yym4715 if false { - } else if z.HasExtensions() && z.DecExt(yyv4671) { - } else if !yym4672 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4671) + } else if z.HasExtensions() && z.DecExt(yyv4714) { + } else if !yym4715 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4714) } else { - z.DecFallback(yyv4671, false) + z.DecFallback(yyv4714, false) } } @@ -59825,27 +60436,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } else { - yyj4668 := 0 - for ; !r.CheckBreak(); yyj4668++ { + yyj4711 := 0 + for ; !r.CheckBreak(); yyj4711++ { - if yyj4668 >= len(yyv4668) { - yyv4668 = append(yyv4668, pkg5_runtime.RawExtension{}) // var yyz4668 pkg5_runtime.RawExtension - yyc4668 = true + if yyj4711 >= len(yyv4711) { + yyv4711 = append(yyv4711, pkg5_runtime.RawExtension{}) // var yyz4711 pkg5_runtime.RawExtension + yyc4711 = true } - yyh4668.ElemContainerState(yyj4668) - if yyj4668 < len(yyv4668) { + yyh4711.ElemContainerState(yyj4711) + if yyj4711 < len(yyv4711) { if r.TryDecodeAsNil() { - yyv4668[yyj4668] = pkg5_runtime.RawExtension{} + yyv4711[yyj4711] = pkg5_runtime.RawExtension{} } else { - yyv4673 := &yyv4668[yyj4668] - yym4674 := z.DecBinary() - _ = yym4674 + yyv4716 := &yyv4711[yyj4711] + yym4717 := z.DecBinary() + _ = yym4717 if false { - } else if z.HasExtensions() && z.DecExt(yyv4673) { - } else if !yym4674 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4673) + } else if z.HasExtensions() && z.DecExt(yyv4716) { + } else if !yym4717 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4716) } else { - z.DecFallback(yyv4673, false) + z.DecFallback(yyv4716, false) } } @@ -59854,17 +60465,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4668 < len(yyv4668) { - yyv4668 = yyv4668[:yyj4668] - yyc4668 = true - } else if yyj4668 == 0 && yyv4668 == nil { - yyv4668 = []pkg5_runtime.RawExtension{} - yyc4668 = true + if yyj4711 < len(yyv4711) { + yyv4711 = yyv4711[:yyj4711] + yyc4711 = true + } else if yyj4711 == 0 && yyv4711 == nil { + yyv4711 = []pkg5_runtime.RawExtension{} + yyc4711 = true } } - yyh4668.End() - if yyc4668 { - *v = yyv4668 + yyh4711.End() + if yyc4711 { + *v = yyv4711 } } @@ -59873,10 +60484,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4675 := range v { + for _, yyv4718 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4676 := &yyv4675 - yy4676.CodecEncodeSelf(e) + yy4719 := &yyv4718 + yy4719.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59886,83 +60497,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4677 := *v - yyh4677, yyl4677 := z.DecSliceHelperStart() - var yyc4677 bool - if yyl4677 == 0 { - if yyv4677 == nil { - yyv4677 = []LimitRangeItem{} - yyc4677 = true - } else if len(yyv4677) != 0 { - yyv4677 = yyv4677[:0] - yyc4677 = true + yyv4720 := *v + yyh4720, yyl4720 := z.DecSliceHelperStart() + var yyc4720 bool + if yyl4720 == 0 { + if yyv4720 == nil { + yyv4720 = []LimitRangeItem{} + yyc4720 = true + } else if len(yyv4720) != 0 { + yyv4720 = yyv4720[:0] + yyc4720 = true } - } else if yyl4677 > 0 { - var yyrr4677, yyrl4677 int - var yyrt4677 bool - if yyl4677 > cap(yyv4677) { + } else if yyl4720 > 0 { + var yyrr4720, yyrl4720 int + var yyrt4720 bool + if yyl4720 > cap(yyv4720) { - yyrg4677 := len(yyv4677) > 0 - yyv24677 := yyv4677 - yyrl4677, yyrt4677 = z.DecInferLen(yyl4677, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4677 { - if yyrl4677 <= cap(yyv4677) { - yyv4677 = yyv4677[:yyrl4677] + yyrg4720 := len(yyv4720) > 0 + yyv24720 := yyv4720 + yyrl4720, yyrt4720 = z.DecInferLen(yyl4720, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4720 { + if yyrl4720 <= cap(yyv4720) { + yyv4720 = yyv4720[:yyrl4720] } else { - yyv4677 = make([]LimitRangeItem, yyrl4677) + yyv4720 = make([]LimitRangeItem, yyrl4720) } } else { - yyv4677 = make([]LimitRangeItem, yyrl4677) + yyv4720 = make([]LimitRangeItem, yyrl4720) } - yyc4677 = true - yyrr4677 = len(yyv4677) - if yyrg4677 { - copy(yyv4677, yyv24677) + yyc4720 = true + yyrr4720 = len(yyv4720) + if yyrg4720 { + copy(yyv4720, yyv24720) } - } else if yyl4677 != len(yyv4677) { - yyv4677 = yyv4677[:yyl4677] - yyc4677 = true + } else if yyl4720 != len(yyv4720) { + yyv4720 = yyv4720[:yyl4720] + yyc4720 = true } - yyj4677 := 0 - for ; yyj4677 < yyrr4677; yyj4677++ { - yyh4677.ElemContainerState(yyj4677) + yyj4720 := 0 + for ; yyj4720 < yyrr4720; yyj4720++ { + yyh4720.ElemContainerState(yyj4720) if r.TryDecodeAsNil() { - yyv4677[yyj4677] = LimitRangeItem{} + yyv4720[yyj4720] = LimitRangeItem{} } else { - yyv4678 := &yyv4677[yyj4677] - yyv4678.CodecDecodeSelf(d) + yyv4721 := &yyv4720[yyj4720] + yyv4721.CodecDecodeSelf(d) } } - if yyrt4677 { - for ; yyj4677 < yyl4677; yyj4677++ { - yyv4677 = append(yyv4677, LimitRangeItem{}) - yyh4677.ElemContainerState(yyj4677) + if yyrt4720 { + for ; yyj4720 < yyl4720; yyj4720++ { + yyv4720 = append(yyv4720, LimitRangeItem{}) + yyh4720.ElemContainerState(yyj4720) if r.TryDecodeAsNil() { - yyv4677[yyj4677] = LimitRangeItem{} + yyv4720[yyj4720] = LimitRangeItem{} } else { - yyv4679 := &yyv4677[yyj4677] - yyv4679.CodecDecodeSelf(d) + yyv4722 := &yyv4720[yyj4720] + yyv4722.CodecDecodeSelf(d) } } } } else { - yyj4677 := 0 - for ; !r.CheckBreak(); yyj4677++ { + yyj4720 := 0 + for ; !r.CheckBreak(); yyj4720++ { - if yyj4677 >= len(yyv4677) { - yyv4677 = append(yyv4677, LimitRangeItem{}) // var yyz4677 LimitRangeItem - yyc4677 = true + if yyj4720 >= len(yyv4720) { + yyv4720 = append(yyv4720, LimitRangeItem{}) // var yyz4720 LimitRangeItem + yyc4720 = true } - yyh4677.ElemContainerState(yyj4677) - if yyj4677 < len(yyv4677) { + yyh4720.ElemContainerState(yyj4720) + if yyj4720 < len(yyv4720) { if r.TryDecodeAsNil() { - yyv4677[yyj4677] = LimitRangeItem{} + yyv4720[yyj4720] = LimitRangeItem{} } else { - yyv4680 := &yyv4677[yyj4677] - yyv4680.CodecDecodeSelf(d) + yyv4723 := &yyv4720[yyj4720] + yyv4723.CodecDecodeSelf(d) } } else { @@ -59970,17 +60581,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4677 < len(yyv4677) { - yyv4677 = yyv4677[:yyj4677] - yyc4677 = true - } else if yyj4677 == 0 && yyv4677 == nil { - yyv4677 = []LimitRangeItem{} - yyc4677 = true + if yyj4720 < len(yyv4720) { + yyv4720 = yyv4720[:yyj4720] + yyc4720 = true + } else if yyj4720 == 0 && yyv4720 == nil { + yyv4720 = []LimitRangeItem{} + yyc4720 = true } } - yyh4677.End() - if yyc4677 { - *v = yyv4677 + yyh4720.End() + if yyc4720 { + *v = yyv4720 } } @@ -59989,10 +60600,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4681 := range v { + for _, yyv4724 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4682 := &yyv4681 - yy4682.CodecEncodeSelf(e) + yy4725 := &yyv4724 + yy4725.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60002,83 +60613,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4683 := *v - yyh4683, yyl4683 := z.DecSliceHelperStart() - var yyc4683 bool - if yyl4683 == 0 { - if yyv4683 == nil { - yyv4683 = []LimitRange{} - yyc4683 = true - } else if len(yyv4683) != 0 { - yyv4683 = yyv4683[:0] - yyc4683 = true + yyv4726 := *v + yyh4726, yyl4726 := z.DecSliceHelperStart() + var yyc4726 bool + if yyl4726 == 0 { + if yyv4726 == nil { + yyv4726 = []LimitRange{} + yyc4726 = true + } else if len(yyv4726) != 0 { + yyv4726 = yyv4726[:0] + yyc4726 = true } - } else if yyl4683 > 0 { - var yyrr4683, yyrl4683 int - var yyrt4683 bool - if yyl4683 > cap(yyv4683) { + } else if yyl4726 > 0 { + var yyrr4726, yyrl4726 int + var yyrt4726 bool + if yyl4726 > cap(yyv4726) { - yyrg4683 := len(yyv4683) > 0 - yyv24683 := yyv4683 - yyrl4683, yyrt4683 = z.DecInferLen(yyl4683, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4683 { - if yyrl4683 <= cap(yyv4683) { - yyv4683 = yyv4683[:yyrl4683] + yyrg4726 := len(yyv4726) > 0 + yyv24726 := yyv4726 + yyrl4726, yyrt4726 = z.DecInferLen(yyl4726, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4726 { + if yyrl4726 <= cap(yyv4726) { + yyv4726 = yyv4726[:yyrl4726] } else { - yyv4683 = make([]LimitRange, yyrl4683) + yyv4726 = make([]LimitRange, yyrl4726) } } else { - yyv4683 = make([]LimitRange, yyrl4683) + yyv4726 = make([]LimitRange, yyrl4726) } - yyc4683 = true - yyrr4683 = len(yyv4683) - if yyrg4683 { - copy(yyv4683, yyv24683) + yyc4726 = true + yyrr4726 = len(yyv4726) + if yyrg4726 { + copy(yyv4726, yyv24726) } - } else if yyl4683 != len(yyv4683) { - yyv4683 = yyv4683[:yyl4683] - yyc4683 = true + } else if yyl4726 != len(yyv4726) { + yyv4726 = yyv4726[:yyl4726] + yyc4726 = true } - yyj4683 := 0 - for ; yyj4683 < yyrr4683; yyj4683++ { - yyh4683.ElemContainerState(yyj4683) + yyj4726 := 0 + for ; yyj4726 < yyrr4726; yyj4726++ { + yyh4726.ElemContainerState(yyj4726) if r.TryDecodeAsNil() { - yyv4683[yyj4683] = LimitRange{} + yyv4726[yyj4726] = LimitRange{} } else { - yyv4684 := &yyv4683[yyj4683] - yyv4684.CodecDecodeSelf(d) + yyv4727 := &yyv4726[yyj4726] + yyv4727.CodecDecodeSelf(d) } } - if yyrt4683 { - for ; yyj4683 < yyl4683; yyj4683++ { - yyv4683 = append(yyv4683, LimitRange{}) - yyh4683.ElemContainerState(yyj4683) + if yyrt4726 { + for ; yyj4726 < yyl4726; yyj4726++ { + yyv4726 = append(yyv4726, LimitRange{}) + yyh4726.ElemContainerState(yyj4726) if r.TryDecodeAsNil() { - yyv4683[yyj4683] = LimitRange{} + yyv4726[yyj4726] = LimitRange{} } else { - yyv4685 := &yyv4683[yyj4683] - yyv4685.CodecDecodeSelf(d) + yyv4728 := &yyv4726[yyj4726] + yyv4728.CodecDecodeSelf(d) } } } } else { - yyj4683 := 0 - for ; !r.CheckBreak(); yyj4683++ { + yyj4726 := 0 + for ; !r.CheckBreak(); yyj4726++ { - if yyj4683 >= len(yyv4683) { - yyv4683 = append(yyv4683, LimitRange{}) // var yyz4683 LimitRange - yyc4683 = true + if yyj4726 >= len(yyv4726) { + yyv4726 = append(yyv4726, LimitRange{}) // var yyz4726 LimitRange + yyc4726 = true } - yyh4683.ElemContainerState(yyj4683) - if yyj4683 < len(yyv4683) { + yyh4726.ElemContainerState(yyj4726) + if yyj4726 < len(yyv4726) { if r.TryDecodeAsNil() { - yyv4683[yyj4683] = LimitRange{} + yyv4726[yyj4726] = LimitRange{} } else { - yyv4686 := &yyv4683[yyj4683] - yyv4686.CodecDecodeSelf(d) + yyv4729 := &yyv4726[yyj4726] + yyv4729.CodecDecodeSelf(d) } } else { @@ -60086,17 +60697,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4683 < len(yyv4683) { - yyv4683 = yyv4683[:yyj4683] - yyc4683 = true - } else if yyj4683 == 0 && yyv4683 == nil { - yyv4683 = []LimitRange{} - yyc4683 = true + if yyj4726 < len(yyv4726) { + yyv4726 = yyv4726[:yyj4726] + yyc4726 = true + } else if yyj4726 == 0 && yyv4726 == nil { + yyv4726 = []LimitRange{} + yyc4726 = true } } - yyh4683.End() - if yyc4683 { - *v = yyv4683 + yyh4726.End() + if yyc4726 { + *v = yyv4726 } } @@ -60105,9 +60716,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4687 := range v { + for _, yyv4730 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4687.CodecEncodeSelf(e) + yyv4730.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60117,75 +60728,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4688 := *v - yyh4688, yyl4688 := z.DecSliceHelperStart() - var yyc4688 bool - if yyl4688 == 0 { - if yyv4688 == nil { - yyv4688 = []ResourceQuotaScope{} - yyc4688 = true - } else if len(yyv4688) != 0 { - yyv4688 = yyv4688[:0] - yyc4688 = true + yyv4731 := *v + yyh4731, yyl4731 := z.DecSliceHelperStart() + var yyc4731 bool + if yyl4731 == 0 { + if yyv4731 == nil { + yyv4731 = []ResourceQuotaScope{} + yyc4731 = true + } else if len(yyv4731) != 0 { + yyv4731 = yyv4731[:0] + yyc4731 = true } - } else if yyl4688 > 0 { - var yyrr4688, yyrl4688 int - var yyrt4688 bool - if yyl4688 > cap(yyv4688) { + } else if yyl4731 > 0 { + var yyrr4731, yyrl4731 int + var yyrt4731 bool + if yyl4731 > cap(yyv4731) { - yyrl4688, yyrt4688 = z.DecInferLen(yyl4688, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4688 { - if yyrl4688 <= cap(yyv4688) { - yyv4688 = yyv4688[:yyrl4688] + yyrl4731, yyrt4731 = z.DecInferLen(yyl4731, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4731 { + if yyrl4731 <= cap(yyv4731) { + yyv4731 = yyv4731[:yyrl4731] } else { - yyv4688 = make([]ResourceQuotaScope, yyrl4688) + yyv4731 = make([]ResourceQuotaScope, yyrl4731) } } else { - yyv4688 = make([]ResourceQuotaScope, yyrl4688) + yyv4731 = make([]ResourceQuotaScope, yyrl4731) } - yyc4688 = true - yyrr4688 = len(yyv4688) - } else if yyl4688 != len(yyv4688) { - yyv4688 = yyv4688[:yyl4688] - yyc4688 = true + yyc4731 = true + yyrr4731 = len(yyv4731) + } else if yyl4731 != len(yyv4731) { + yyv4731 = yyv4731[:yyl4731] + yyc4731 = true } - yyj4688 := 0 - for ; yyj4688 < yyrr4688; yyj4688++ { - yyh4688.ElemContainerState(yyj4688) + yyj4731 := 0 + for ; yyj4731 < yyrr4731; yyj4731++ { + yyh4731.ElemContainerState(yyj4731) if r.TryDecodeAsNil() { - yyv4688[yyj4688] = "" + yyv4731[yyj4731] = "" } else { - yyv4688[yyj4688] = ResourceQuotaScope(r.DecodeString()) + yyv4731[yyj4731] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4688 { - for ; yyj4688 < yyl4688; yyj4688++ { - yyv4688 = append(yyv4688, "") - yyh4688.ElemContainerState(yyj4688) + if yyrt4731 { + for ; yyj4731 < yyl4731; yyj4731++ { + yyv4731 = append(yyv4731, "") + yyh4731.ElemContainerState(yyj4731) if r.TryDecodeAsNil() { - yyv4688[yyj4688] = "" + yyv4731[yyj4731] = "" } else { - yyv4688[yyj4688] = ResourceQuotaScope(r.DecodeString()) + yyv4731[yyj4731] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4688 := 0 - for ; !r.CheckBreak(); yyj4688++ { + yyj4731 := 0 + for ; !r.CheckBreak(); yyj4731++ { - if yyj4688 >= len(yyv4688) { - yyv4688 = append(yyv4688, "") // var yyz4688 ResourceQuotaScope - yyc4688 = true + if yyj4731 >= len(yyv4731) { + yyv4731 = append(yyv4731, "") // var yyz4731 ResourceQuotaScope + yyc4731 = true } - yyh4688.ElemContainerState(yyj4688) - if yyj4688 < len(yyv4688) { + yyh4731.ElemContainerState(yyj4731) + if yyj4731 < len(yyv4731) { if r.TryDecodeAsNil() { - yyv4688[yyj4688] = "" + yyv4731[yyj4731] = "" } else { - yyv4688[yyj4688] = ResourceQuotaScope(r.DecodeString()) + yyv4731[yyj4731] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -60193,17 +60804,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4688 < len(yyv4688) { - yyv4688 = yyv4688[:yyj4688] - yyc4688 = true - } else if yyj4688 == 0 && yyv4688 == nil { - yyv4688 = []ResourceQuotaScope{} - yyc4688 = true + if yyj4731 < len(yyv4731) { + yyv4731 = yyv4731[:yyj4731] + yyc4731 = true + } else if yyj4731 == 0 && yyv4731 == nil { + yyv4731 = []ResourceQuotaScope{} + yyc4731 = true } } - yyh4688.End() - if yyc4688 { - *v = yyv4688 + yyh4731.End() + if yyc4731 { + *v = yyv4731 } } @@ -60212,10 +60823,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4692 := range v { + for _, yyv4735 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4693 := &yyv4692 - yy4693.CodecEncodeSelf(e) + yy4736 := &yyv4735 + yy4736.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60225,83 +60836,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4694 := *v - yyh4694, yyl4694 := z.DecSliceHelperStart() - var yyc4694 bool - if yyl4694 == 0 { - if yyv4694 == nil { - yyv4694 = []ResourceQuota{} - yyc4694 = true - } else if len(yyv4694) != 0 { - yyv4694 = yyv4694[:0] - yyc4694 = true + yyv4737 := *v + yyh4737, yyl4737 := z.DecSliceHelperStart() + var yyc4737 bool + if yyl4737 == 0 { + if yyv4737 == nil { + yyv4737 = []ResourceQuota{} + yyc4737 = true + } else if len(yyv4737) != 0 { + yyv4737 = yyv4737[:0] + yyc4737 = true } - } else if yyl4694 > 0 { - var yyrr4694, yyrl4694 int - var yyrt4694 bool - if yyl4694 > cap(yyv4694) { + } else if yyl4737 > 0 { + var yyrr4737, yyrl4737 int + var yyrt4737 bool + if yyl4737 > cap(yyv4737) { - yyrg4694 := len(yyv4694) > 0 - yyv24694 := yyv4694 - yyrl4694, yyrt4694 = z.DecInferLen(yyl4694, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4694 { - if yyrl4694 <= cap(yyv4694) { - yyv4694 = yyv4694[:yyrl4694] + yyrg4737 := len(yyv4737) > 0 + yyv24737 := yyv4737 + yyrl4737, yyrt4737 = z.DecInferLen(yyl4737, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4737 { + if yyrl4737 <= cap(yyv4737) { + yyv4737 = yyv4737[:yyrl4737] } else { - yyv4694 = make([]ResourceQuota, yyrl4694) + yyv4737 = make([]ResourceQuota, yyrl4737) } } else { - yyv4694 = make([]ResourceQuota, yyrl4694) + yyv4737 = make([]ResourceQuota, yyrl4737) } - yyc4694 = true - yyrr4694 = len(yyv4694) - if yyrg4694 { - copy(yyv4694, yyv24694) + yyc4737 = true + yyrr4737 = len(yyv4737) + if yyrg4737 { + copy(yyv4737, yyv24737) } - } else if yyl4694 != len(yyv4694) { - yyv4694 = yyv4694[:yyl4694] - yyc4694 = true + } else if yyl4737 != len(yyv4737) { + yyv4737 = yyv4737[:yyl4737] + yyc4737 = true } - yyj4694 := 0 - for ; yyj4694 < yyrr4694; yyj4694++ { - yyh4694.ElemContainerState(yyj4694) + yyj4737 := 0 + for ; yyj4737 < yyrr4737; yyj4737++ { + yyh4737.ElemContainerState(yyj4737) if r.TryDecodeAsNil() { - yyv4694[yyj4694] = ResourceQuota{} + yyv4737[yyj4737] = ResourceQuota{} } else { - yyv4695 := &yyv4694[yyj4694] - yyv4695.CodecDecodeSelf(d) + yyv4738 := &yyv4737[yyj4737] + yyv4738.CodecDecodeSelf(d) } } - if yyrt4694 { - for ; yyj4694 < yyl4694; yyj4694++ { - yyv4694 = append(yyv4694, ResourceQuota{}) - yyh4694.ElemContainerState(yyj4694) + if yyrt4737 { + for ; yyj4737 < yyl4737; yyj4737++ { + yyv4737 = append(yyv4737, ResourceQuota{}) + yyh4737.ElemContainerState(yyj4737) if r.TryDecodeAsNil() { - yyv4694[yyj4694] = ResourceQuota{} + yyv4737[yyj4737] = ResourceQuota{} } else { - yyv4696 := &yyv4694[yyj4694] - yyv4696.CodecDecodeSelf(d) + yyv4739 := &yyv4737[yyj4737] + yyv4739.CodecDecodeSelf(d) } } } } else { - yyj4694 := 0 - for ; !r.CheckBreak(); yyj4694++ { + yyj4737 := 0 + for ; !r.CheckBreak(); yyj4737++ { - if yyj4694 >= len(yyv4694) { - yyv4694 = append(yyv4694, ResourceQuota{}) // var yyz4694 ResourceQuota - yyc4694 = true + if yyj4737 >= len(yyv4737) { + yyv4737 = append(yyv4737, ResourceQuota{}) // var yyz4737 ResourceQuota + yyc4737 = true } - yyh4694.ElemContainerState(yyj4694) - if yyj4694 < len(yyv4694) { + yyh4737.ElemContainerState(yyj4737) + if yyj4737 < len(yyv4737) { if r.TryDecodeAsNil() { - yyv4694[yyj4694] = ResourceQuota{} + yyv4737[yyj4737] = ResourceQuota{} } else { - yyv4697 := &yyv4694[yyj4694] - yyv4697.CodecDecodeSelf(d) + yyv4740 := &yyv4737[yyj4737] + yyv4740.CodecDecodeSelf(d) } } else { @@ -60309,17 +60920,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4694 < len(yyv4694) { - yyv4694 = yyv4694[:yyj4694] - yyc4694 = true - } else if yyj4694 == 0 && yyv4694 == nil { - yyv4694 = []ResourceQuota{} - yyc4694 = true + if yyj4737 < len(yyv4737) { + yyv4737 = yyv4737[:yyj4737] + yyc4737 = true + } else if yyj4737 == 0 && yyv4737 == nil { + yyv4737 = []ResourceQuota{} + yyc4737 = true } } - yyh4694.End() - if yyc4694 { - *v = yyv4694 + yyh4737.End() + if yyc4737 { + *v = yyv4737 } } @@ -60328,23 +60939,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4698, yyv4698 := range v { + for yyk4741, yyv4741 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4699 := z.EncBinary() - _ = yym4699 + yym4742 := z.EncBinary() + _ = yym4742 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4698)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4741)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4698 == nil { + if yyv4741 == nil { r.EncodeNil() } else { - yym4700 := z.EncBinary() - _ = yym4700 + yym4743 := z.EncBinary() + _ = yym4743 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4698)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4741)) } } } @@ -60356,80 +60967,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4701 := *v - yyl4701 := r.ReadMapStart() - yybh4701 := z.DecBasicHandle() - if yyv4701 == nil { - yyrl4701, _ := z.DecInferLen(yyl4701, yybh4701.MaxInitLen, 40) - yyv4701 = make(map[string][]uint8, yyrl4701) - *v = yyv4701 + yyv4744 := *v + yyl4744 := r.ReadMapStart() + yybh4744 := z.DecBasicHandle() + if yyv4744 == nil { + yyrl4744, _ := z.DecInferLen(yyl4744, yybh4744.MaxInitLen, 40) + yyv4744 = make(map[string][]uint8, yyrl4744) + *v = yyv4744 } - var yymk4701 string - var yymv4701 []uint8 - var yymg4701 bool - if yybh4701.MapValueReset { - yymg4701 = true + var yymk4744 string + var yymv4744 []uint8 + var yymg4744 bool + if yybh4744.MapValueReset { + yymg4744 = true } - if yyl4701 > 0 { - for yyj4701 := 0; yyj4701 < yyl4701; yyj4701++ { + if yyl4744 > 0 { + for yyj4744 := 0; yyj4744 < yyl4744; yyj4744++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4701 = "" + yymk4744 = "" } else { - yymk4701 = string(r.DecodeString()) + yymk4744 = string(r.DecodeString()) } - if yymg4701 { - yymv4701 = yyv4701[yymk4701] + if yymg4744 { + yymv4744 = yyv4744[yymk4744] } else { - yymv4701 = nil + yymv4744 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4701 = nil + yymv4744 = nil } else { - yyv4703 := &yymv4701 - yym4704 := z.DecBinary() - _ = yym4704 + yyv4746 := &yymv4744 + yym4747 := z.DecBinary() + _ = yym4747 if false { } else { - *yyv4703 = r.DecodeBytes(*(*[]byte)(yyv4703), false, false) + *yyv4746 = r.DecodeBytes(*(*[]byte)(yyv4746), false, false) } } - if yyv4701 != nil { - yyv4701[yymk4701] = yymv4701 + if yyv4744 != nil { + yyv4744[yymk4744] = yymv4744 } } - } else if yyl4701 < 0 { - for yyj4701 := 0; !r.CheckBreak(); yyj4701++ { + } else if yyl4744 < 0 { + for yyj4744 := 0; !r.CheckBreak(); yyj4744++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4701 = "" + yymk4744 = "" } else { - yymk4701 = string(r.DecodeString()) + yymk4744 = string(r.DecodeString()) } - if yymg4701 { - yymv4701 = yyv4701[yymk4701] + if yymg4744 { + yymv4744 = yyv4744[yymk4744] } else { - yymv4701 = nil + yymv4744 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4701 = nil + yymv4744 = nil } else { - yyv4706 := &yymv4701 - yym4707 := z.DecBinary() - _ = yym4707 + yyv4749 := &yymv4744 + yym4750 := z.DecBinary() + _ = yym4750 if false { } else { - *yyv4706 = r.DecodeBytes(*(*[]byte)(yyv4706), false, false) + *yyv4749 = r.DecodeBytes(*(*[]byte)(yyv4749), false, false) } } - if yyv4701 != nil { - yyv4701[yymk4701] = yymv4701 + if yyv4744 != nil { + yyv4744[yymk4744] = yymv4744 } } } // else len==0: TODO: Should we clear map entries? @@ -60441,10 +61052,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4708 := range v { + for _, yyv4751 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4709 := &yyv4708 - yy4709.CodecEncodeSelf(e) + yy4752 := &yyv4751 + yy4752.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60454,83 +61065,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4710 := *v - yyh4710, yyl4710 := z.DecSliceHelperStart() - var yyc4710 bool - if yyl4710 == 0 { - if yyv4710 == nil { - yyv4710 = []Secret{} - yyc4710 = true - } else if len(yyv4710) != 0 { - yyv4710 = yyv4710[:0] - yyc4710 = true + yyv4753 := *v + yyh4753, yyl4753 := z.DecSliceHelperStart() + var yyc4753 bool + if yyl4753 == 0 { + if yyv4753 == nil { + yyv4753 = []Secret{} + yyc4753 = true + } else if len(yyv4753) != 0 { + yyv4753 = yyv4753[:0] + yyc4753 = true } - } else if yyl4710 > 0 { - var yyrr4710, yyrl4710 int - var yyrt4710 bool - if yyl4710 > cap(yyv4710) { + } else if yyl4753 > 0 { + var yyrr4753, yyrl4753 int + var yyrt4753 bool + if yyl4753 > cap(yyv4753) { - yyrg4710 := len(yyv4710) > 0 - yyv24710 := yyv4710 - yyrl4710, yyrt4710 = z.DecInferLen(yyl4710, z.DecBasicHandle().MaxInitLen, 272) - if yyrt4710 { - if yyrl4710 <= cap(yyv4710) { - yyv4710 = yyv4710[:yyrl4710] + yyrg4753 := len(yyv4753) > 0 + yyv24753 := yyv4753 + yyrl4753, yyrt4753 = z.DecInferLen(yyl4753, z.DecBasicHandle().MaxInitLen, 272) + if yyrt4753 { + if yyrl4753 <= cap(yyv4753) { + yyv4753 = yyv4753[:yyrl4753] } else { - yyv4710 = make([]Secret, yyrl4710) + yyv4753 = make([]Secret, yyrl4753) } } else { - yyv4710 = make([]Secret, yyrl4710) + yyv4753 = make([]Secret, yyrl4753) } - yyc4710 = true - yyrr4710 = len(yyv4710) - if yyrg4710 { - copy(yyv4710, yyv24710) + yyc4753 = true + yyrr4753 = len(yyv4753) + if yyrg4753 { + copy(yyv4753, yyv24753) } - } else if yyl4710 != len(yyv4710) { - yyv4710 = yyv4710[:yyl4710] - yyc4710 = true + } else if yyl4753 != len(yyv4753) { + yyv4753 = yyv4753[:yyl4753] + yyc4753 = true } - yyj4710 := 0 - for ; yyj4710 < yyrr4710; yyj4710++ { - yyh4710.ElemContainerState(yyj4710) + yyj4753 := 0 + for ; yyj4753 < yyrr4753; yyj4753++ { + yyh4753.ElemContainerState(yyj4753) if r.TryDecodeAsNil() { - yyv4710[yyj4710] = Secret{} + yyv4753[yyj4753] = Secret{} } else { - yyv4711 := &yyv4710[yyj4710] - yyv4711.CodecDecodeSelf(d) + yyv4754 := &yyv4753[yyj4753] + yyv4754.CodecDecodeSelf(d) } } - if yyrt4710 { - for ; yyj4710 < yyl4710; yyj4710++ { - yyv4710 = append(yyv4710, Secret{}) - yyh4710.ElemContainerState(yyj4710) + if yyrt4753 { + for ; yyj4753 < yyl4753; yyj4753++ { + yyv4753 = append(yyv4753, Secret{}) + yyh4753.ElemContainerState(yyj4753) if r.TryDecodeAsNil() { - yyv4710[yyj4710] = Secret{} + yyv4753[yyj4753] = Secret{} } else { - yyv4712 := &yyv4710[yyj4710] - yyv4712.CodecDecodeSelf(d) + yyv4755 := &yyv4753[yyj4753] + yyv4755.CodecDecodeSelf(d) } } } } else { - yyj4710 := 0 - for ; !r.CheckBreak(); yyj4710++ { + yyj4753 := 0 + for ; !r.CheckBreak(); yyj4753++ { - if yyj4710 >= len(yyv4710) { - yyv4710 = append(yyv4710, Secret{}) // var yyz4710 Secret - yyc4710 = true + if yyj4753 >= len(yyv4753) { + yyv4753 = append(yyv4753, Secret{}) // var yyz4753 Secret + yyc4753 = true } - yyh4710.ElemContainerState(yyj4710) - if yyj4710 < len(yyv4710) { + yyh4753.ElemContainerState(yyj4753) + if yyj4753 < len(yyv4753) { if r.TryDecodeAsNil() { - yyv4710[yyj4710] = Secret{} + yyv4753[yyj4753] = Secret{} } else { - yyv4713 := &yyv4710[yyj4710] - yyv4713.CodecDecodeSelf(d) + yyv4756 := &yyv4753[yyj4753] + yyv4756.CodecDecodeSelf(d) } } else { @@ -60538,17 +61149,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4710 < len(yyv4710) { - yyv4710 = yyv4710[:yyj4710] - yyc4710 = true - } else if yyj4710 == 0 && yyv4710 == nil { - yyv4710 = []Secret{} - yyc4710 = true + if yyj4753 < len(yyv4753) { + yyv4753 = yyv4753[:yyj4753] + yyc4753 = true + } else if yyj4753 == 0 && yyv4753 == nil { + yyv4753 = []Secret{} + yyc4753 = true } } - yyh4710.End() - if yyc4710 { - *v = yyv4710 + yyh4753.End() + if yyc4753 { + *v = yyv4753 } } @@ -60557,10 +61168,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4714 := range v { + for _, yyv4757 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4715 := &yyv4714 - yy4715.CodecEncodeSelf(e) + yy4758 := &yyv4757 + yy4758.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60570,83 +61181,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4716 := *v - yyh4716, yyl4716 := z.DecSliceHelperStart() - var yyc4716 bool - if yyl4716 == 0 { - if yyv4716 == nil { - yyv4716 = []ConfigMap{} - yyc4716 = true - } else if len(yyv4716) != 0 { - yyv4716 = yyv4716[:0] - yyc4716 = true + yyv4759 := *v + yyh4759, yyl4759 := z.DecSliceHelperStart() + var yyc4759 bool + if yyl4759 == 0 { + if yyv4759 == nil { + yyv4759 = []ConfigMap{} + yyc4759 = true + } else if len(yyv4759) != 0 { + yyv4759 = yyv4759[:0] + yyc4759 = true } - } else if yyl4716 > 0 { - var yyrr4716, yyrl4716 int - var yyrt4716 bool - if yyl4716 > cap(yyv4716) { + } else if yyl4759 > 0 { + var yyrr4759, yyrl4759 int + var yyrt4759 bool + if yyl4759 > cap(yyv4759) { - yyrg4716 := len(yyv4716) > 0 - yyv24716 := yyv4716 - yyrl4716, yyrt4716 = z.DecInferLen(yyl4716, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4716 { - if yyrl4716 <= cap(yyv4716) { - yyv4716 = yyv4716[:yyrl4716] + yyrg4759 := len(yyv4759) > 0 + yyv24759 := yyv4759 + yyrl4759, yyrt4759 = z.DecInferLen(yyl4759, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4759 { + if yyrl4759 <= cap(yyv4759) { + yyv4759 = yyv4759[:yyrl4759] } else { - yyv4716 = make([]ConfigMap, yyrl4716) + yyv4759 = make([]ConfigMap, yyrl4759) } } else { - yyv4716 = make([]ConfigMap, yyrl4716) + yyv4759 = make([]ConfigMap, yyrl4759) } - yyc4716 = true - yyrr4716 = len(yyv4716) - if yyrg4716 { - copy(yyv4716, yyv24716) + yyc4759 = true + yyrr4759 = len(yyv4759) + if yyrg4759 { + copy(yyv4759, yyv24759) } - } else if yyl4716 != len(yyv4716) { - yyv4716 = yyv4716[:yyl4716] - yyc4716 = true + } else if yyl4759 != len(yyv4759) { + yyv4759 = yyv4759[:yyl4759] + yyc4759 = true } - yyj4716 := 0 - for ; yyj4716 < yyrr4716; yyj4716++ { - yyh4716.ElemContainerState(yyj4716) + yyj4759 := 0 + for ; yyj4759 < yyrr4759; yyj4759++ { + yyh4759.ElemContainerState(yyj4759) if r.TryDecodeAsNil() { - yyv4716[yyj4716] = ConfigMap{} + yyv4759[yyj4759] = ConfigMap{} } else { - yyv4717 := &yyv4716[yyj4716] - yyv4717.CodecDecodeSelf(d) + yyv4760 := &yyv4759[yyj4759] + yyv4760.CodecDecodeSelf(d) } } - if yyrt4716 { - for ; yyj4716 < yyl4716; yyj4716++ { - yyv4716 = append(yyv4716, ConfigMap{}) - yyh4716.ElemContainerState(yyj4716) + if yyrt4759 { + for ; yyj4759 < yyl4759; yyj4759++ { + yyv4759 = append(yyv4759, ConfigMap{}) + yyh4759.ElemContainerState(yyj4759) if r.TryDecodeAsNil() { - yyv4716[yyj4716] = ConfigMap{} + yyv4759[yyj4759] = ConfigMap{} } else { - yyv4718 := &yyv4716[yyj4716] - yyv4718.CodecDecodeSelf(d) + yyv4761 := &yyv4759[yyj4759] + yyv4761.CodecDecodeSelf(d) } } } } else { - yyj4716 := 0 - for ; !r.CheckBreak(); yyj4716++ { + yyj4759 := 0 + for ; !r.CheckBreak(); yyj4759++ { - if yyj4716 >= len(yyv4716) { - yyv4716 = append(yyv4716, ConfigMap{}) // var yyz4716 ConfigMap - yyc4716 = true + if yyj4759 >= len(yyv4759) { + yyv4759 = append(yyv4759, ConfigMap{}) // var yyz4759 ConfigMap + yyc4759 = true } - yyh4716.ElemContainerState(yyj4716) - if yyj4716 < len(yyv4716) { + yyh4759.ElemContainerState(yyj4759) + if yyj4759 < len(yyv4759) { if r.TryDecodeAsNil() { - yyv4716[yyj4716] = ConfigMap{} + yyv4759[yyj4759] = ConfigMap{} } else { - yyv4719 := &yyv4716[yyj4716] - yyv4719.CodecDecodeSelf(d) + yyv4762 := &yyv4759[yyj4759] + yyv4762.CodecDecodeSelf(d) } } else { @@ -60654,17 +61265,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4716 < len(yyv4716) { - yyv4716 = yyv4716[:yyj4716] - yyc4716 = true - } else if yyj4716 == 0 && yyv4716 == nil { - yyv4716 = []ConfigMap{} - yyc4716 = true + if yyj4759 < len(yyv4759) { + yyv4759 = yyv4759[:yyj4759] + yyc4759 = true + } else if yyj4759 == 0 && yyv4759 == nil { + yyv4759 = []ConfigMap{} + yyc4759 = true } } - yyh4716.End() - if yyc4716 { - *v = yyv4716 + yyh4759.End() + if yyc4759 { + *v = yyv4759 } } @@ -60673,10 +61284,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4720 := range v { + for _, yyv4763 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4721 := &yyv4720 - yy4721.CodecEncodeSelf(e) + yy4764 := &yyv4763 + yy4764.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60686,83 +61297,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4722 := *v - yyh4722, yyl4722 := z.DecSliceHelperStart() - var yyc4722 bool - if yyl4722 == 0 { - if yyv4722 == nil { - yyv4722 = []ComponentCondition{} - yyc4722 = true - } else if len(yyv4722) != 0 { - yyv4722 = yyv4722[:0] - yyc4722 = true + yyv4765 := *v + yyh4765, yyl4765 := z.DecSliceHelperStart() + var yyc4765 bool + if yyl4765 == 0 { + if yyv4765 == nil { + yyv4765 = []ComponentCondition{} + yyc4765 = true + } else if len(yyv4765) != 0 { + yyv4765 = yyv4765[:0] + yyc4765 = true } - } else if yyl4722 > 0 { - var yyrr4722, yyrl4722 int - var yyrt4722 bool - if yyl4722 > cap(yyv4722) { + } else if yyl4765 > 0 { + var yyrr4765, yyrl4765 int + var yyrt4765 bool + if yyl4765 > cap(yyv4765) { - yyrg4722 := len(yyv4722) > 0 - yyv24722 := yyv4722 - yyrl4722, yyrt4722 = z.DecInferLen(yyl4722, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4722 { - if yyrl4722 <= cap(yyv4722) { - yyv4722 = yyv4722[:yyrl4722] + yyrg4765 := len(yyv4765) > 0 + yyv24765 := yyv4765 + yyrl4765, yyrt4765 = z.DecInferLen(yyl4765, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4765 { + if yyrl4765 <= cap(yyv4765) { + yyv4765 = yyv4765[:yyrl4765] } else { - yyv4722 = make([]ComponentCondition, yyrl4722) + yyv4765 = make([]ComponentCondition, yyrl4765) } } else { - yyv4722 = make([]ComponentCondition, yyrl4722) + yyv4765 = make([]ComponentCondition, yyrl4765) } - yyc4722 = true - yyrr4722 = len(yyv4722) - if yyrg4722 { - copy(yyv4722, yyv24722) + yyc4765 = true + yyrr4765 = len(yyv4765) + if yyrg4765 { + copy(yyv4765, yyv24765) } - } else if yyl4722 != len(yyv4722) { - yyv4722 = yyv4722[:yyl4722] - yyc4722 = true + } else if yyl4765 != len(yyv4765) { + yyv4765 = yyv4765[:yyl4765] + yyc4765 = true } - yyj4722 := 0 - for ; yyj4722 < yyrr4722; yyj4722++ { - yyh4722.ElemContainerState(yyj4722) + yyj4765 := 0 + for ; yyj4765 < yyrr4765; yyj4765++ { + yyh4765.ElemContainerState(yyj4765) if r.TryDecodeAsNil() { - yyv4722[yyj4722] = ComponentCondition{} + yyv4765[yyj4765] = ComponentCondition{} } else { - yyv4723 := &yyv4722[yyj4722] - yyv4723.CodecDecodeSelf(d) + yyv4766 := &yyv4765[yyj4765] + yyv4766.CodecDecodeSelf(d) } } - if yyrt4722 { - for ; yyj4722 < yyl4722; yyj4722++ { - yyv4722 = append(yyv4722, ComponentCondition{}) - yyh4722.ElemContainerState(yyj4722) + if yyrt4765 { + for ; yyj4765 < yyl4765; yyj4765++ { + yyv4765 = append(yyv4765, ComponentCondition{}) + yyh4765.ElemContainerState(yyj4765) if r.TryDecodeAsNil() { - yyv4722[yyj4722] = ComponentCondition{} + yyv4765[yyj4765] = ComponentCondition{} } else { - yyv4724 := &yyv4722[yyj4722] - yyv4724.CodecDecodeSelf(d) + yyv4767 := &yyv4765[yyj4765] + yyv4767.CodecDecodeSelf(d) } } } } else { - yyj4722 := 0 - for ; !r.CheckBreak(); yyj4722++ { + yyj4765 := 0 + for ; !r.CheckBreak(); yyj4765++ { - if yyj4722 >= len(yyv4722) { - yyv4722 = append(yyv4722, ComponentCondition{}) // var yyz4722 ComponentCondition - yyc4722 = true + if yyj4765 >= len(yyv4765) { + yyv4765 = append(yyv4765, ComponentCondition{}) // var yyz4765 ComponentCondition + yyc4765 = true } - yyh4722.ElemContainerState(yyj4722) - if yyj4722 < len(yyv4722) { + yyh4765.ElemContainerState(yyj4765) + if yyj4765 < len(yyv4765) { if r.TryDecodeAsNil() { - yyv4722[yyj4722] = ComponentCondition{} + yyv4765[yyj4765] = ComponentCondition{} } else { - yyv4725 := &yyv4722[yyj4722] - yyv4725.CodecDecodeSelf(d) + yyv4768 := &yyv4765[yyj4765] + yyv4768.CodecDecodeSelf(d) } } else { @@ -60770,17 +61381,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4722 < len(yyv4722) { - yyv4722 = yyv4722[:yyj4722] - yyc4722 = true - } else if yyj4722 == 0 && yyv4722 == nil { - yyv4722 = []ComponentCondition{} - yyc4722 = true + if yyj4765 < len(yyv4765) { + yyv4765 = yyv4765[:yyj4765] + yyc4765 = true + } else if yyj4765 == 0 && yyv4765 == nil { + yyv4765 = []ComponentCondition{} + yyc4765 = true } } - yyh4722.End() - if yyc4722 { - *v = yyv4722 + yyh4765.End() + if yyc4765 { + *v = yyv4765 } } @@ -60789,10 +61400,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4726 := range v { + for _, yyv4769 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4727 := &yyv4726 - yy4727.CodecEncodeSelf(e) + yy4770 := &yyv4769 + yy4770.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60802,83 +61413,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4728 := *v - yyh4728, yyl4728 := z.DecSliceHelperStart() - var yyc4728 bool - if yyl4728 == 0 { - if yyv4728 == nil { - yyv4728 = []ComponentStatus{} - yyc4728 = true - } else if len(yyv4728) != 0 { - yyv4728 = yyv4728[:0] - yyc4728 = true + yyv4771 := *v + yyh4771, yyl4771 := z.DecSliceHelperStart() + var yyc4771 bool + if yyl4771 == 0 { + if yyv4771 == nil { + yyv4771 = []ComponentStatus{} + yyc4771 = true + } else if len(yyv4771) != 0 { + yyv4771 = yyv4771[:0] + yyc4771 = true } - } else if yyl4728 > 0 { - var yyrr4728, yyrl4728 int - var yyrt4728 bool - if yyl4728 > cap(yyv4728) { + } else if yyl4771 > 0 { + var yyrr4771, yyrl4771 int + var yyrt4771 bool + if yyl4771 > cap(yyv4771) { - yyrg4728 := len(yyv4728) > 0 - yyv24728 := yyv4728 - yyrl4728, yyrt4728 = z.DecInferLen(yyl4728, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4728 { - if yyrl4728 <= cap(yyv4728) { - yyv4728 = yyv4728[:yyrl4728] + yyrg4771 := len(yyv4771) > 0 + yyv24771 := yyv4771 + yyrl4771, yyrt4771 = z.DecInferLen(yyl4771, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4771 { + if yyrl4771 <= cap(yyv4771) { + yyv4771 = yyv4771[:yyrl4771] } else { - yyv4728 = make([]ComponentStatus, yyrl4728) + yyv4771 = make([]ComponentStatus, yyrl4771) } } else { - yyv4728 = make([]ComponentStatus, yyrl4728) + yyv4771 = make([]ComponentStatus, yyrl4771) } - yyc4728 = true - yyrr4728 = len(yyv4728) - if yyrg4728 { - copy(yyv4728, yyv24728) + yyc4771 = true + yyrr4771 = len(yyv4771) + if yyrg4771 { + copy(yyv4771, yyv24771) } - } else if yyl4728 != len(yyv4728) { - yyv4728 = yyv4728[:yyl4728] - yyc4728 = true + } else if yyl4771 != len(yyv4771) { + yyv4771 = yyv4771[:yyl4771] + yyc4771 = true } - yyj4728 := 0 - for ; yyj4728 < yyrr4728; yyj4728++ { - yyh4728.ElemContainerState(yyj4728) + yyj4771 := 0 + for ; yyj4771 < yyrr4771; yyj4771++ { + yyh4771.ElemContainerState(yyj4771) if r.TryDecodeAsNil() { - yyv4728[yyj4728] = ComponentStatus{} + yyv4771[yyj4771] = ComponentStatus{} } else { - yyv4729 := &yyv4728[yyj4728] - yyv4729.CodecDecodeSelf(d) + yyv4772 := &yyv4771[yyj4771] + yyv4772.CodecDecodeSelf(d) } } - if yyrt4728 { - for ; yyj4728 < yyl4728; yyj4728++ { - yyv4728 = append(yyv4728, ComponentStatus{}) - yyh4728.ElemContainerState(yyj4728) + if yyrt4771 { + for ; yyj4771 < yyl4771; yyj4771++ { + yyv4771 = append(yyv4771, ComponentStatus{}) + yyh4771.ElemContainerState(yyj4771) if r.TryDecodeAsNil() { - yyv4728[yyj4728] = ComponentStatus{} + yyv4771[yyj4771] = ComponentStatus{} } else { - yyv4730 := &yyv4728[yyj4728] - yyv4730.CodecDecodeSelf(d) + yyv4773 := &yyv4771[yyj4771] + yyv4773.CodecDecodeSelf(d) } } } } else { - yyj4728 := 0 - for ; !r.CheckBreak(); yyj4728++ { + yyj4771 := 0 + for ; !r.CheckBreak(); yyj4771++ { - if yyj4728 >= len(yyv4728) { - yyv4728 = append(yyv4728, ComponentStatus{}) // var yyz4728 ComponentStatus - yyc4728 = true + if yyj4771 >= len(yyv4771) { + yyv4771 = append(yyv4771, ComponentStatus{}) // var yyz4771 ComponentStatus + yyc4771 = true } - yyh4728.ElemContainerState(yyj4728) - if yyj4728 < len(yyv4728) { + yyh4771.ElemContainerState(yyj4771) + if yyj4771 < len(yyv4771) { if r.TryDecodeAsNil() { - yyv4728[yyj4728] = ComponentStatus{} + yyv4771[yyj4771] = ComponentStatus{} } else { - yyv4731 := &yyv4728[yyj4728] - yyv4731.CodecDecodeSelf(d) + yyv4774 := &yyv4771[yyj4771] + yyv4774.CodecDecodeSelf(d) } } else { @@ -60886,17 +61497,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4728 < len(yyv4728) { - yyv4728 = yyv4728[:yyj4728] - yyc4728 = true - } else if yyj4728 == 0 && yyv4728 == nil { - yyv4728 = []ComponentStatus{} - yyc4728 = true + if yyj4771 < len(yyv4771) { + yyv4771 = yyv4771[:yyj4771] + yyc4771 = true + } else if yyj4771 == 0 && yyv4771 == nil { + yyv4771 = []ComponentStatus{} + yyc4771 = true } } - yyh4728.End() - if yyc4728 { - *v = yyv4728 + yyh4771.End() + if yyc4771 { + *v = yyv4771 } } @@ -60905,10 +61516,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4732 := range v { + for _, yyv4775 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4733 := &yyv4732 - yy4733.CodecEncodeSelf(e) + yy4776 := &yyv4775 + yy4776.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60918,83 +61529,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4734 := *v - yyh4734, yyl4734 := z.DecSliceHelperStart() - var yyc4734 bool - if yyl4734 == 0 { - if yyv4734 == nil { - yyv4734 = []DownwardAPIVolumeFile{} - yyc4734 = true - } else if len(yyv4734) != 0 { - yyv4734 = yyv4734[:0] - yyc4734 = true + yyv4777 := *v + yyh4777, yyl4777 := z.DecSliceHelperStart() + var yyc4777 bool + if yyl4777 == 0 { + if yyv4777 == nil { + yyv4777 = []DownwardAPIVolumeFile{} + yyc4777 = true + } else if len(yyv4777) != 0 { + yyv4777 = yyv4777[:0] + yyc4777 = true } - } else if yyl4734 > 0 { - var yyrr4734, yyrl4734 int - var yyrt4734 bool - if yyl4734 > cap(yyv4734) { + } else if yyl4777 > 0 { + var yyrr4777, yyrl4777 int + var yyrt4777 bool + if yyl4777 > cap(yyv4777) { - yyrg4734 := len(yyv4734) > 0 - yyv24734 := yyv4734 - yyrl4734, yyrt4734 = z.DecInferLen(yyl4734, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4734 { - if yyrl4734 <= cap(yyv4734) { - yyv4734 = yyv4734[:yyrl4734] + yyrg4777 := len(yyv4777) > 0 + yyv24777 := yyv4777 + yyrl4777, yyrt4777 = z.DecInferLen(yyl4777, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4777 { + if yyrl4777 <= cap(yyv4777) { + yyv4777 = yyv4777[:yyrl4777] } else { - yyv4734 = make([]DownwardAPIVolumeFile, yyrl4734) + yyv4777 = make([]DownwardAPIVolumeFile, yyrl4777) } } else { - yyv4734 = make([]DownwardAPIVolumeFile, yyrl4734) + yyv4777 = make([]DownwardAPIVolumeFile, yyrl4777) } - yyc4734 = true - yyrr4734 = len(yyv4734) - if yyrg4734 { - copy(yyv4734, yyv24734) + yyc4777 = true + yyrr4777 = len(yyv4777) + if yyrg4777 { + copy(yyv4777, yyv24777) } - } else if yyl4734 != len(yyv4734) { - yyv4734 = yyv4734[:yyl4734] - yyc4734 = true + } else if yyl4777 != len(yyv4777) { + yyv4777 = yyv4777[:yyl4777] + yyc4777 = true } - yyj4734 := 0 - for ; yyj4734 < yyrr4734; yyj4734++ { - yyh4734.ElemContainerState(yyj4734) + yyj4777 := 0 + for ; yyj4777 < yyrr4777; yyj4777++ { + yyh4777.ElemContainerState(yyj4777) if r.TryDecodeAsNil() { - yyv4734[yyj4734] = DownwardAPIVolumeFile{} + yyv4777[yyj4777] = DownwardAPIVolumeFile{} } else { - yyv4735 := &yyv4734[yyj4734] - yyv4735.CodecDecodeSelf(d) + yyv4778 := &yyv4777[yyj4777] + yyv4778.CodecDecodeSelf(d) } } - if yyrt4734 { - for ; yyj4734 < yyl4734; yyj4734++ { - yyv4734 = append(yyv4734, DownwardAPIVolumeFile{}) - yyh4734.ElemContainerState(yyj4734) + if yyrt4777 { + for ; yyj4777 < yyl4777; yyj4777++ { + yyv4777 = append(yyv4777, DownwardAPIVolumeFile{}) + yyh4777.ElemContainerState(yyj4777) if r.TryDecodeAsNil() { - yyv4734[yyj4734] = DownwardAPIVolumeFile{} + yyv4777[yyj4777] = DownwardAPIVolumeFile{} } else { - yyv4736 := &yyv4734[yyj4734] - yyv4736.CodecDecodeSelf(d) + yyv4779 := &yyv4777[yyj4777] + yyv4779.CodecDecodeSelf(d) } } } } else { - yyj4734 := 0 - for ; !r.CheckBreak(); yyj4734++ { + yyj4777 := 0 + for ; !r.CheckBreak(); yyj4777++ { - if yyj4734 >= len(yyv4734) { - yyv4734 = append(yyv4734, DownwardAPIVolumeFile{}) // var yyz4734 DownwardAPIVolumeFile - yyc4734 = true + if yyj4777 >= len(yyv4777) { + yyv4777 = append(yyv4777, DownwardAPIVolumeFile{}) // var yyz4777 DownwardAPIVolumeFile + yyc4777 = true } - yyh4734.ElemContainerState(yyj4734) - if yyj4734 < len(yyv4734) { + yyh4777.ElemContainerState(yyj4777) + if yyj4777 < len(yyv4777) { if r.TryDecodeAsNil() { - yyv4734[yyj4734] = DownwardAPIVolumeFile{} + yyv4777[yyj4777] = DownwardAPIVolumeFile{} } else { - yyv4737 := &yyv4734[yyj4734] - yyv4737.CodecDecodeSelf(d) + yyv4780 := &yyv4777[yyj4777] + yyv4780.CodecDecodeSelf(d) } } else { @@ -61002,16 +61613,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4734 < len(yyv4734) { - yyv4734 = yyv4734[:yyj4734] - yyc4734 = true - } else if yyj4734 == 0 && yyv4734 == nil { - yyv4734 = []DownwardAPIVolumeFile{} - yyc4734 = true + if yyj4777 < len(yyv4777) { + yyv4777 = yyv4777[:yyj4777] + yyc4777 = true + } else if yyj4777 == 0 && yyv4777 == nil { + yyv4777 = []DownwardAPIVolumeFile{} + yyc4777 = true } } - yyh4734.End() - if yyc4734 { - *v = yyv4734 + yyh4777.End() + if yyc4777 { + *v = yyv4777 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 8735c7de4a0f9..5ee10f8fbb9e7 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -259,13 +259,10 @@ type VolumeSource struct { // Cinder represents a cinder volume attached and mounted on kubelets host machine // More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"` - // CephFS represents a Ceph FS mount on the host that shares a pod's lifetime CephFS *CephFSVolumeSource `json:"cephfs,omitempty" protobuf:"bytes,14,opt,name=cephfs"` - // Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running Flocker *FlockerVolumeSource `json:"flocker,omitempty" protobuf:"bytes,15,opt,name=flocker"` - // DownwardAPI represents downward API about the pod that should populate this volume DownwardAPI *DownwardAPIVolumeSource `json:"downwardAPI,omitempty" protobuf:"bytes,16,opt,name=downwardAPI"` // FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. @@ -276,6 +273,8 @@ type VolumeSource struct { ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty" protobuf:"bytes,19,opt,name=configMap"` // VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" protobuf:"bytes,20,opt,name=vsphereVolume"` + // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,21,opt,name=quobyte"` } // PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. @@ -338,6 +337,8 @@ type PersistentVolumeSource struct { AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,13,opt,name=azureFile"` // VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" protobuf:"bytes,14,opt,name=vsphereVolume"` + // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,15,opt,name=quobyte"` } // +genclient=true @@ -688,6 +689,30 @@ type GCEPersistentDiskVolumeSource struct { ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,4,opt,name=readOnly"` } +// Represents a Quobyte mount that lasts the lifetime of a pod. +// Quobyte volumes do not support ownership management or SELinux relabeling. +type QuobyteVolumeSource struct { + // Registry represents a single or multiple Quobyte Registry services + // specified as a string as host:port pair (multiple entries are separated with commas) + // which acts as the central registry for volumes + Registry string `json:"registry" protobuf:"bytes,1,opt,name=registry"` + + // Volume is a string that references an already created Quobyte volume by name. + Volume string `json:"volume" protobuf:"bytes,2,opt,name=volume"` + + // ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. + // Defaults to false. + ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"` + + // User to map volume access to + // Defaults to serivceaccount user + User string `json:"user,omitempty" protobuf:"bytes,4,opt,name=user"` + + // Group to map volume access to + // Default is no group + Group string `json:"group,omitempty" protobuf:"bytes,5,opt,name=group"` +} + // FlexVolume represents a generic volume resource that is // provisioned/attached using a exec based plugin. This is an alpha feature and may change in future. type FlexVolumeSource struct { diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 4308625586a69..fc559468e97e4 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1081,6 +1081,7 @@ var map_PersistentVolumeSource = map[string]string{ "flexVolume": "FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plugin. This is an alpha feature and may change in future.", "azureFile": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "vsphereVolume": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + "quobyte": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", } func (PersistentVolumeSource) SwaggerDoc() map[string]string { @@ -1375,6 +1376,19 @@ func (Probe) SwaggerDoc() map[string]string { return map_Probe } +var map_QuobyteVolumeSource = map[string]string{ + "": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + "registry": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", + "volume": "Volume is a string that references an already created Quobyte volume by name.", + "readOnly": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", + "user": "User to map volume access to Defaults to serivceaccount user", + "group": "Group to map volume access to Default is no group", +} + +func (QuobyteVolumeSource) SwaggerDoc() map[string]string { + return map_QuobyteVolumeSource +} + var map_RBDVolumeSource = map[string]string{ "": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "monitors": "A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", @@ -1749,6 +1763,7 @@ var map_VolumeSource = map[string]string{ "azureFile": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "configMap": "ConfigMap represents a configMap that should populate this volume", "vsphereVolume": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + "quobyte": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", } func (VolumeSource) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index 3bba3d8e30dee..188f1bfd1c33d 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -270,6 +270,8 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_api_PreferredSchedulingTerm_To_v1_PreferredSchedulingTerm, Convert_v1_Probe_To_api_Probe, Convert_api_Probe_To_v1_Probe, + Convert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource, + Convert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource, Convert_v1_RBDVolumeSource_To_api_RBDVolumeSource, Convert_api_RBDVolumeSource_To_v1_RBDVolumeSource, Convert_v1_RangeAllocation_To_api_RangeAllocation, @@ -4197,6 +4199,15 @@ func autoConvert_v1_PersistentVolumeSource_To_api_PersistentVolumeSource(in *Per } else { out.VsphereVolume = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(api.QuobyteVolumeSource) + if err := Convert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.Quobyte = nil + } return nil } @@ -4259,6 +4270,15 @@ func autoConvert_api_PersistentVolumeSource_To_v1_PersistentVolumeSource(in *api } else { out.RBD = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(QuobyteVolumeSource) + if err := Convert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.Quobyte = nil + } if in.ISCSI != nil { in, out := &in.ISCSI, &out.ISCSI *out = new(ISCSIVolumeSource) @@ -5359,6 +5379,32 @@ func Convert_api_Probe_To_v1_Probe(in *api.Probe, out *Probe, s conversion.Scope return autoConvert_api_Probe_To_v1_Probe(in, out, s) } +func autoConvert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource(in *QuobyteVolumeSource, out *api.QuobyteVolumeSource, s conversion.Scope) error { + out.Registry = in.Registry + out.Volume = in.Volume + out.ReadOnly = in.ReadOnly + out.User = in.User + out.Group = in.Group + return nil +} + +func Convert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource(in *QuobyteVolumeSource, out *api.QuobyteVolumeSource, s conversion.Scope) error { + return autoConvert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource(in, out, s) +} + +func autoConvert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource(in *api.QuobyteVolumeSource, out *QuobyteVolumeSource, s conversion.Scope) error { + out.Registry = in.Registry + out.Volume = in.Volume + out.ReadOnly = in.ReadOnly + out.User = in.User + out.Group = in.Group + return nil +} + +func Convert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource(in *api.QuobyteVolumeSource, out *QuobyteVolumeSource, s conversion.Scope) error { + return autoConvert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource(in, out, s) +} + func autoConvert_v1_RBDVolumeSource_To_api_RBDVolumeSource(in *RBDVolumeSource, out *api.RBDVolumeSource, s conversion.Scope) error { SetDefaults_RBDVolumeSource(in) out.CephMonitors = in.CephMonitors @@ -6742,6 +6788,15 @@ func autoConvert_v1_VolumeSource_To_api_VolumeSource(in *VolumeSource, out *api. } else { out.VsphereVolume = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(api.QuobyteVolumeSource) + if err := Convert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.Quobyte = nil + } return nil } @@ -6849,6 +6904,15 @@ func autoConvert_api_VolumeSource_To_v1_VolumeSource(in *api.VolumeSource, out * } else { out.RBD = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(QuobyteVolumeSource) + if err := Convert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.Quobyte = nil + } if in.FlexVolume != nil { in, out := &in.FlexVolume, &out.FlexVolume *out = new(FlexVolumeSource) diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 718d5c56c58c3..32d8c265ba01a 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -153,6 +153,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_PreferAvoidPodsEntry, InType: reflect.TypeOf(&PreferAvoidPodsEntry{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_PreferredSchedulingTerm, InType: reflect.TypeOf(&PreferredSchedulingTerm{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_Probe, InType: reflect.TypeOf(&Probe{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_QuobyteVolumeSource, InType: reflect.TypeOf(&QuobyteVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_RBDVolumeSource, InType: reflect.TypeOf(&RBDVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_RangeAllocation, InType: reflect.TypeOf(&RangeAllocation{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ReplicationController, InType: reflect.TypeOf(&ReplicationController{})}, @@ -2179,6 +2180,13 @@ func DeepCopy_v1_PersistentVolumeSource(in interface{}, out interface{}, c *conv } else { out.VsphereVolume = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(QuobyteVolumeSource) + **out = **in + } else { + out.Quobyte = nil + } return nil } } @@ -2782,6 +2790,19 @@ func DeepCopy_v1_Probe(in interface{}, out interface{}, c *conversion.Cloner) er } } +func DeepCopy_v1_QuobyteVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*QuobyteVolumeSource) + out := out.(*QuobyteVolumeSource) + out.Registry = in.Registry + out.Volume = in.Volume + out.ReadOnly = in.ReadOnly + out.User = in.User + out.Group = in.Group + return nil + } +} + func DeepCopy_v1_RBDVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*RBDVolumeSource) @@ -3595,6 +3616,13 @@ func DeepCopy_v1_VolumeSource(in interface{}, out interface{}, c *conversion.Clo } else { out.VsphereVolume = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(QuobyteVolumeSource) + **out = **in + } else { + out.Quobyte = nil + } return nil } } diff --git a/pkg/api/validation/validation.go b/pkg/api/validation/validation.go index b365bb4bd0547..c1b992cf85751 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -534,6 +534,14 @@ func validateVolumeSource(source *api.VolumeSource, fldPath *field.Path) field.E allErrs = append(allErrs, validateCephFSVolumeSource(source.CephFS, fldPath.Child("cephfs"))...) } } + if source.Quobyte != nil { + if numVolumes > 0 { + allErrs = append(allErrs, field.Forbidden(fldPath.Child("quobyte"), "may not specify more than 1 volume type")) + } else { + numVolumes++ + allErrs = append(allErrs, validateQuobyteVolumeSource(source.Quobyte, fldPath.Child("quobyte"))...) + } + } if source.DownwardAPI != nil { if numVolumes > 0 { allErrs = append(allErrs, field.Forbidden(fldPath.Child("downwarAPI"), "may not specify more than 1 volume type")) @@ -732,6 +740,24 @@ func validateNFSVolumeSource(nfs *api.NFSVolumeSource, fldPath *field.Path) fiel return allErrs } +func validateQuobyteVolumeSource(quobyte *api.QuobyteVolumeSource, fldPath *field.Path) field.ErrorList { + allErrs := field.ErrorList{} + if len(quobyte.Registry) == 0 { + allErrs = append(allErrs, field.Required(fldPath.Child("registry"), "must be a host:port pair or multiple pairs seperated by commas")) + } else { + for _, hostPortPair := range strings.Split(quobyte.Registry, ",") { + if _, _, err := net.SplitHostPort(hostPortPair); err != nil { + allErrs = append(allErrs, field.Invalid(fldPath.Child("registry"), quobyte.Registry, "must be a host:port pair or multiple pairs seperated by commas")) + } + } + } + + if len(quobyte.Volume) == 0 { + allErrs = append(allErrs, field.Required(fldPath.Child("volume"), "")) + } + return allErrs +} + func validateGlusterfs(glusterfs *api.GlusterfsVolumeSource, fldPath *field.Path) field.ErrorList { allErrs := field.ErrorList{} if len(glusterfs.EndpointsName) == 0 { @@ -966,6 +992,14 @@ func ValidatePersistentVolume(pv *api.PersistentVolume) field.ErrorList { allErrs = append(allErrs, validateRBDVolumeSource(pv.Spec.RBD, specPath.Child("rbd"))...) } } + if pv.Spec.Quobyte != nil { + if numVolumes > 0 { + allErrs = append(allErrs, field.Forbidden(specPath.Child("quobyte"), "may not specify more than 1 volume type")) + } else { + numVolumes++ + allErrs = append(allErrs, validateQuobyteVolumeSource(pv.Spec.Quobyte, specPath.Child("quobyte"))...) + } + } if pv.Spec.CephFS != nil { if numVolumes > 0 { allErrs = append(allErrs, field.Forbidden(specPath.Child("cephFS"), "may not specify more than 1 volume type")) diff --git a/pkg/api/validation/validation_test.go b/pkg/api/validation/validation_test.go index 15f6e7a6cf568..b754cca923129 100644 --- a/pkg/api/validation/validation_test.go +++ b/pkg/api/validation/validation_test.go @@ -1970,6 +1970,76 @@ func TestValidateVolumes(t *testing.T) { errtype: field.ErrorTypeRequired, errfield: "azureFile.shareName", }, + // Quobyte + { + name: "valid Quobyte", + vol: api.Volume{ + Name: "quobyte", + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{ + Registry: "registry:7861", + Volume: "volume", + ReadOnly: false, + User: "root", + Group: "root", + }, + }, + }, + }, + { + name: "empty registry quobyte", + vol: api.Volume{ + Name: "quobyte", + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{ + Volume: "/test", + }, + }, + }, + errtype: field.ErrorTypeRequired, + errfield: "quobyte.registry", + }, + { + name: "wrong format registry quobyte", + vol: api.Volume{ + Name: "quobyte", + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{ + Registry: "registry7861", + Volume: "/test", + }, + }, + }, + errtype: field.ErrorTypeInvalid, + errfield: "quobyte.registry", + }, + { + name: "wrong format multiple registries quobyte", + vol: api.Volume{ + Name: "quobyte", + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{ + Registry: "registry:7861,reg2", + Volume: "/test", + }, + }, + }, + errtype: field.ErrorTypeInvalid, + errfield: "quobyte.registry", + }, + { + name: "empty volume quobyte", + vol: api.Volume{ + Name: "quobyte", + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{ + Registry: "registry:7861", + }, + }, + }, + errtype: field.ErrorTypeRequired, + errfield: "quobyte.volume", + }, } for i, tc := range testCases { diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index 286b192a766c1..7f6f878855e9c 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -157,6 +157,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_PreferAvoidPodsEntry, InType: reflect.TypeOf(&PreferAvoidPodsEntry{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_PreferredSchedulingTerm, InType: reflect.TypeOf(&PreferredSchedulingTerm{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_Probe, InType: reflect.TypeOf(&Probe{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_QuobyteVolumeSource, InType: reflect.TypeOf(&QuobyteVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_RBDVolumeSource, InType: reflect.TypeOf(&RBDVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_RangeAllocation, InType: reflect.TypeOf(&RangeAllocation{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ReplicationController, InType: reflect.TypeOf(&ReplicationController{})}, @@ -2175,6 +2176,13 @@ func DeepCopy_api_PersistentVolumeSource(in interface{}, out interface{}, c *con } else { out.RBD = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(QuobyteVolumeSource) + **out = **in + } else { + out.Quobyte = nil + } if in.ISCSI != nil { in, out := &in.ISCSI, &out.ISCSI *out = new(ISCSIVolumeSource) @@ -2839,6 +2847,19 @@ func DeepCopy_api_Probe(in interface{}, out interface{}, c *conversion.Cloner) e } } +func DeepCopy_api_QuobyteVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*QuobyteVolumeSource) + out := out.(*QuobyteVolumeSource) + out.Registry = in.Registry + out.Volume = in.Volume + out.ReadOnly = in.ReadOnly + out.User = in.User + out.Group = in.Group + return nil + } +} + func DeepCopy_api_RBDVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*RBDVolumeSource) @@ -3557,6 +3578,13 @@ func DeepCopy_api_VolumeSource(in interface{}, out interface{}, c *conversion.Cl } else { out.RBD = nil } + if in.Quobyte != nil { + in, out := &in.Quobyte, &out.Quobyte + *out = new(QuobyteVolumeSource) + **out = **in + } else { + out.Quobyte = nil + } if in.FlexVolume != nil { in, out := &in.FlexVolume, &out.FlexVolume *out = new(FlexVolumeSource) diff --git a/pkg/apis/extensions/types.go b/pkg/apis/extensions/types.go index 95b1b935fb94a..18b0113873eab 100644 --- a/pkg/apis/extensions/types.go +++ b/pkg/apis/extensions/types.go @@ -714,6 +714,7 @@ var ( FC FSType = "fc" ConfigMap FSType = "configMap" VsphereVolume FSType = "vsphereVolume" + Quobyte FSType = "quobyte" All FSType = "*" ) diff --git a/pkg/apis/extensions/v1beta1/types.go b/pkg/apis/extensions/v1beta1/types.go index db6f35745893c..0b60492fb0c56 100644 --- a/pkg/apis/extensions/v1beta1/types.go +++ b/pkg/apis/extensions/v1beta1/types.go @@ -992,6 +992,7 @@ var ( DownwardAPI FSType = "downwardAPI" FC FSType = "fc" ConfigMap FSType = "configMap" + Quobyte FSType = "quobyte" All FSType = "*" ) diff --git a/pkg/kubectl/describe.go b/pkg/kubectl/describe.go index ccf9db8c12d78..0c545d00d624a 100644 --- a/pkg/kubectl/describe.go +++ b/pkg/kubectl/describe.go @@ -604,6 +604,8 @@ func describeVolumes(volumes []api.Volume, out io.Writer, space string) { printPersistentVolumeClaimVolumeSource(volume.VolumeSource.PersistentVolumeClaim, out) case volume.VolumeSource.RBD != nil: printRBDVolumeSource(volume.VolumeSource.RBD, out) + case volume.VolumeSource.Quobyte != nil: + printQuobyteVolumeSource(volume.VolumeSource.Quobyte, out) case volume.VolumeSource.DownwardAPI != nil: printDownwardAPIVolumeSource(volume.VolumeSource.DownwardAPI, out) default: @@ -665,6 +667,14 @@ func printNFSVolumeSource(nfs *api.NFSVolumeSource, out io.Writer) { nfs.Server, nfs.Path, nfs.ReadOnly) } +func printQuobyteVolumeSource(quobyte *api.QuobyteVolumeSource, out io.Writer) { + fmt.Fprintf(out, " Type:\tQuobyte (a Quobyte mount on the host that shares a pod's lifetime)\n"+ + " Registry:\t%v\n"+ + " Volume:\t%v\n"+ + " ReadOnly:\t%v\n", + quobyte.Registry, quobyte.Volume, quobyte.ReadOnly) +} + func printISCSIVolumeSource(iscsi *api.ISCSIVolumeSource, out io.Writer) { fmt.Fprintf(out, " Type:\tISCSI (an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod)\n"+ " TargetPortal:\t%v\n"+ @@ -765,6 +775,8 @@ func (d *PersistentVolumeDescriber) Describe(namespace, name string, describerSe printGlusterfsVolumeSource(pv.Spec.Glusterfs, out) case pv.Spec.RBD != nil: printRBDVolumeSource(pv.Spec.RBD, out) + case pv.Spec.Quobyte != nil: + printQuobyteVolumeSource(pv.Spec.Quobyte, out) } if events != nil { diff --git a/pkg/kubectl/describe_test.go b/pkg/kubectl/describe_test.go index fab6ccf6c4f37..6c66180f47f59 100644 --- a/pkg/kubectl/describe_test.go +++ b/pkg/kubectl/describe_test.go @@ -530,6 +530,13 @@ func TestPersistentVolumeDescriber(t *testing.T) { }, }, }, + "quobyte": { + Spec: api.PersistentVolumeSpec{ + PersistentVolumeSource: api.PersistentVolumeSource{ + Quobyte: &api.QuobyteVolumeSource{}, + }, + }, + }, } for name, pv := range tests { diff --git a/pkg/security/podsecuritypolicy/util/util.go b/pkg/security/podsecuritypolicy/util/util.go index 0af4ad060b35e..c2b7e00599e60 100644 --- a/pkg/security/podsecuritypolicy/util/util.go +++ b/pkg/security/podsecuritypolicy/util/util.go @@ -58,7 +58,8 @@ func GetAllFSTypesAsSet() sets.String { string(extensions.DownwardAPI), string(extensions.FC), string(extensions.ConfigMap), - string(extensions.VsphereVolume)) + string(extensions.VsphereVolume), + string(extensions.Quobyte)) return fstypes } @@ -105,6 +106,8 @@ func GetVolumeFSType(v api.Volume) (extensions.FSType, error) { return extensions.ConfigMap, nil case v.VsphereVolume != nil: return extensions.VsphereVolume, nil + case v.Quobyte != nil: + return extensions.Quobyte, nil } return "", fmt.Errorf("unknown volume type for volume: %#v", v) diff --git a/pkg/volume/quobyte/OWNERS b/pkg/volume/quobyte/OWNERS new file mode 100644 index 0000000000000..3b914ad385d5e --- /dev/null +++ b/pkg/volume/quobyte/OWNERS @@ -0,0 +1,3 @@ +maintainers: +- johscheuer +- quofelix diff --git a/pkg/volume/quobyte/doc.go b/pkg/volume/quobyte/doc.go new file mode 100644 index 0000000000000..ca09dd738903f --- /dev/null +++ b/pkg/volume/quobyte/doc.go @@ -0,0 +1,19 @@ +/* +Copyright 2016 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +// Package quobyte contains the internal representation of Quobyte +// volumes. +package quobyte diff --git a/pkg/volume/quobyte/quobyte.go b/pkg/volume/quobyte/quobyte.go new file mode 100644 index 0000000000000..45883a2b40fae --- /dev/null +++ b/pkg/volume/quobyte/quobyte.go @@ -0,0 +1,260 @@ +/* +Copyright 2016 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package quobyte + +import ( + "fmt" + "os" + "path" + + "github.com/golang/glog" + "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/types" + "k8s.io/kubernetes/pkg/util/exec" + "k8s.io/kubernetes/pkg/util/mount" + "k8s.io/kubernetes/pkg/util/strings" + "k8s.io/kubernetes/pkg/volume" +) + +// ProbeVolumePlugins is the primary entrypoint for volume plugins. +func ProbeVolumePlugins() []volume.VolumePlugin { + return []volume.VolumePlugin{&quobytePlugin{nil}} +} + +type quobytePlugin struct { + host volume.VolumeHost +} + +var _ volume.VolumePlugin = &quobytePlugin{} +var _ volume.PersistentVolumePlugin = &quobytePlugin{} + +const ( + quobytePluginName = "kubernetes.io/quobyte" +) + +func (plugin *quobytePlugin) Init(host volume.VolumeHost) error { + plugin.host = host + return nil +} + +func (plugin *quobytePlugin) GetPluginName() string { + return quobytePluginName +} + +func (plugin *quobytePlugin) GetVolumeName(spec *volume.Spec) (string, error) { + volumeSource, _, err := getVolumeSource(spec) + if err != nil { + return "", err + } + + return fmt.Sprintf( + "%v:%v", + volumeSource.Registry, + volumeSource.Volume), nil +} + +func (plugin *quobytePlugin) CanSupport(spec *volume.Spec) bool { + if (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.Quobyte == nil) || + (spec.Volume != nil && spec.Volume.Quobyte == nil) { + return false + } + + // If Quobyte is already mounted we don't need to check if the binary is installed + if mounter, err := plugin.newMounterInternal(spec, nil, plugin.host.GetMounter()); err == nil { + qm, _ := mounter.(*quobyteMounter) + pluginDir := plugin.host.GetPluginDir(strings.EscapeQualifiedNameForDisk(quobytePluginName)) + if mounted, err := qm.pluginDirIsMounted(pluginDir); mounted && err == nil { + glog.V(4).Infof("quobyte: can support") + return true + } + } else { + glog.V(4).Infof("quobyte: Error: %v", err) + } + + if out, err := exec.New().Command("ls", "/sbin/mount.quobyte").CombinedOutput(); err == nil { + glog.V(4).Infof("quobyte: can support: %s", string(out)) + return true + } + + return false +} + +func (plugin *quobytePlugin) RequiresRemount() bool { + return false +} + +func (plugin *quobytePlugin) GetAccessModes() []api.PersistentVolumeAccessMode { + return []api.PersistentVolumeAccessMode{ + api.ReadWriteOnce, + api.ReadOnlyMany, + api.ReadWriteMany, + } +} + +func getVolumeSource(spec *volume.Spec) (*api.QuobyteVolumeSource, bool, error) { + if spec.Volume != nil && spec.Volume.Quobyte != nil { + return spec.Volume.Quobyte, spec.Volume.Quobyte.ReadOnly, nil + } else if spec.PersistentVolume != nil && + spec.PersistentVolume.Spec.Quobyte != nil { + return spec.PersistentVolume.Spec.Quobyte, spec.ReadOnly, nil + } + + return nil, false, fmt.Errorf("Spec does not reference a Quobyte volume type") +} + +func (plugin *quobytePlugin) ConstructVolumeSpec(volumeName, mountPath string) (*volume.Spec, error) { + quobyteVolume := &api.Volume{ + Name: volumeName, + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{ + Volume: volumeName, + }, + }, + } + return volume.NewSpecFromVolume(quobyteVolume), nil +} + +func (plugin *quobytePlugin) NewMounter(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Mounter, error) { + return plugin.newMounterInternal(spec, pod, plugin.host.GetMounter()) +} + +func (plugin *quobytePlugin) newMounterInternal(spec *volume.Spec, pod *api.Pod, mounter mount.Interface) (volume.Mounter, error) { + source, readOnly, err := getVolumeSource(spec) + if err != nil { + return nil, err + } + + return &quobyteMounter{ + quobyte: &quobyte{ + volName: spec.Name(), + user: source.User, + group: source.Group, + mounter: mounter, + pod: pod, + volume: source.Volume, + plugin: plugin, + }, + registry: source.Registry, + readOnly: readOnly}, nil +} + +func (plugin *quobytePlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) { + return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter()) +} + +func (plugin *quobytePlugin) newUnmounterInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Unmounter, error) { + return &quobyteUnmounter{&quobyte{ + volName: volName, + mounter: mounter, + pod: &api.Pod{ObjectMeta: api.ObjectMeta{UID: podUID}}, + plugin: plugin, + }}, nil +} + +// Quobyte volumes represent a bare host directory mount of an quobyte export. +type quobyte struct { + volName string + pod *api.Pod + user string + group string + volume string + mounter mount.Interface + plugin *quobytePlugin + volume.MetricsNil +} + +type quobyteMounter struct { + *quobyte + registry string + readOnly bool +} + +var _ volume.Mounter = &quobyteMounter{} + +func (mounter *quobyteMounter) GetAttributes() volume.Attributes { + return volume.Attributes{ + ReadOnly: mounter.readOnly, + Managed: false, + SupportsSELinux: false, + } +} + +// SetUp attaches the disk and bind mounts to the volume path. +func (mounter *quobyteMounter) SetUp(fsGroup *int64) error { + pluginDir := mounter.plugin.host.GetPluginDir(strings.EscapeQualifiedNameForDisk(quobytePluginName)) + return mounter.SetUpAt(pluginDir, fsGroup) +} + +func (mounter *quobyteMounter) SetUpAt(dir string, fsGroup *int64) error { + // Check if Quobyte is already mounted on the host in the Plugin Dir + // if so we can use this mountpoint instead of creating a new one + // IsLikelyNotMountPoint wouldn't check the mount type + if mounted, err := mounter.pluginDirIsMounted(dir); err != nil { + return err + } else if mounted { + return nil + } + + os.MkdirAll(dir, 0750) + var options []string + if mounter.readOnly { + options = append(options, "ro") + } + + //if a trailling slash is missing we add it here + if err := mounter.mounter.Mount(mounter.correctTraillingSlash(mounter.registry), dir, "quobyte", options); err != nil { + return fmt.Errorf("quobyte: mount failed: %v", err) + } + + glog.V(4).Infof("quobyte: mount set up: %s", dir) + + return nil +} + +// GetPath returns the path to the user specific mount of a Quobyte volume +// Returns a path in the format ../user@volume e.g. ../root@MyVolume +// or if a group is set ../user#group@volume +func (quobyteVolume *quobyte) GetPath() string { + user := quobyteVolume.user + if len(user) == 0 { + user = "root" + } + + // Quobyte has only one mount in the PluginDir where all Volumes are mounted + // The Quobyte client does a fixed-user mapping + pluginDir := quobyteVolume.plugin.host.GetPluginDir(strings.EscapeQualifiedNameForDisk(quobytePluginName)) + if len(quobyteVolume.group) > 0 { + return path.Join(pluginDir, fmt.Sprintf("%s#%s@%s", user, quobyteVolume.group, quobyteVolume.volume)) + } + + return path.Join(pluginDir, fmt.Sprintf("%s@%s", user, quobyteVolume.volume)) +} + +type quobyteUnmounter struct { + *quobyte +} + +var _ volume.Unmounter = &quobyteUnmounter{} + +func (unmounter *quobyteUnmounter) TearDown() error { + return unmounter.TearDownAt(unmounter.GetPath()) +} + +// We don't need to unmount on the host because only one mount exists +func (unmounter *quobyteUnmounter) TearDownAt(dir string) error { + return nil +} diff --git a/pkg/volume/quobyte/quobyte_test.go b/pkg/volume/quobyte/quobyte_test.go new file mode 100644 index 0000000000000..e6e8223b2e409 --- /dev/null +++ b/pkg/volume/quobyte/quobyte_test.go @@ -0,0 +1,200 @@ +/* +Copyright 2016 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package quobyte + +import ( + "fmt" + "os" + "testing" + + "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/fake" + "k8s.io/kubernetes/pkg/types" + "k8s.io/kubernetes/pkg/util/mount" + utiltesting "k8s.io/kubernetes/pkg/util/testing" + "k8s.io/kubernetes/pkg/volume" + volumetest "k8s.io/kubernetes/pkg/volume/testing" +) + +func TestCanSupport(t *testing.T) { + tmpDir, err := utiltesting.MkTmpdir("quobyte_test") + if err != nil { + t.Fatalf("error creating temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + plugMgr := volume.VolumePluginMgr{} + plugMgr.InitPlugins(ProbeVolumePlugins(), volumetest.NewFakeVolumeHost(tmpDir, nil, nil, "")) + plug, err := plugMgr.FindPluginByName("kubernetes.io/quobyte") + if err != nil { + t.Errorf("Can't find the plugin by name") + } + if plug.GetPluginName() != "kubernetes.io/quobyte" { + t.Errorf("Wrong name: %s", plug.GetPluginName()) + } + if plug.CanSupport(&volume.Spec{PersistentVolume: &api.PersistentVolume{Spec: api.PersistentVolumeSpec{PersistentVolumeSource: api.PersistentVolumeSource{}}}}) { + t.Errorf("Expected false") + } + if plug.CanSupport(&volume.Spec{Volume: &api.Volume{VolumeSource: api.VolumeSource{}}}) { + t.Errorf("Expected false") + } +} + +func TestGetAccessModes(t *testing.T) { + tmpDir, err := utiltesting.MkTmpdir("quobyte_test") + if err != nil { + t.Fatalf("error creating temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + plugMgr := volume.VolumePluginMgr{} + plugMgr.InitPlugins(ProbeVolumePlugins(), volumetest.NewFakeVolumeHost(tmpDir, nil, nil, "")) + + plug, err := plugMgr.FindPersistentPluginByName("kubernetes.io/quobyte") + if err != nil { + t.Errorf("Can't find the plugin by name") + } + if !contains(plug.GetAccessModes(), api.ReadWriteOnce) || !contains(plug.GetAccessModes(), api.ReadOnlyMany) || !contains(plug.GetAccessModes(), api.ReadWriteMany) { + t.Errorf("Expected three AccessModeTypes: %s, %s, and %s", api.ReadWriteOnce, api.ReadOnlyMany, api.ReadWriteMany) + } +} + +func contains(modes []api.PersistentVolumeAccessMode, mode api.PersistentVolumeAccessMode) bool { + for _, m := range modes { + if m == mode { + return true + } + } + return false +} + +func doTestPlugin(t *testing.T, spec *volume.Spec) { + tmpDir, err := utiltesting.MkTmpdir("quobyte_test") + if err != nil { + t.Fatalf("error creating temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + plugMgr := volume.VolumePluginMgr{} + plugMgr.InitPlugins(ProbeVolumePlugins(), volumetest.NewFakeVolumeHost(tmpDir, nil, nil, "")) + plug, err := plugMgr.FindPluginByName("kubernetes.io/quobyte") + if err != nil { + t.Errorf("Can't find the plugin by name") + } + + pod := &api.Pod{ObjectMeta: api.ObjectMeta{UID: types.UID("poduid")}} + mounter, err := plug.(*quobytePlugin).newMounterInternal(spec, pod, &mount.FakeMounter{}) + volumePath := mounter.GetPath() + if err != nil { + t.Errorf("Failed to make a new Mounter: %v", err) + } + if mounter == nil { + t.Error("Got a nil Mounter") + } + + if volumePath != fmt.Sprintf("%s/plugins/kubernetes.io~quobyte/root#root@vol", tmpDir) { + t.Errorf("Got unexpected path: %s expected: %s", volumePath, fmt.Sprintf("%s/plugins/kubernetes.io~quobyte/root#root@vol", tmpDir)) + } + if err := mounter.SetUp(nil); err != nil { + t.Errorf("Expected success, got: %v", err) + } + unmounter, err := plug.(*quobytePlugin).newUnmounterInternal("vol", types.UID("poduid"), &mount.FakeMounter{}) + if err != nil { + t.Errorf("Failed to make a new unmounter: %v", err) + } + if unmounter == nil { + t.Error("Got a nil unmounter") + } + if err := unmounter.TearDown(); err != nil { + t.Errorf("Expected success, got: %v", err) + } + // We don't need to check tear down, we don't unmount quobyte +} + +func TestPluginVolume(t *testing.T) { + vol := &api.Volume{ + Name: "vol1", + VolumeSource: api.VolumeSource{ + Quobyte: &api.QuobyteVolumeSource{Registry: "reg:7861", Volume: "vol", ReadOnly: false, User: "root", Group: "root"}, + }, + } + doTestPlugin(t, volume.NewSpecFromVolume(vol)) +} + +func TestPluginPersistentVolume(t *testing.T) { + vol := &api.PersistentVolume{ + ObjectMeta: api.ObjectMeta{ + Name: "vol1", + }, + Spec: api.PersistentVolumeSpec{ + PersistentVolumeSource: api.PersistentVolumeSource{ + Quobyte: &api.QuobyteVolumeSource{Registry: "reg:7861", Volume: "vol", ReadOnly: false, User: "root", Group: "root"}, + }, + }, + } + + doTestPlugin(t, volume.NewSpecFromPersistentVolume(vol, false)) +} + +func TestPersistentClaimReadOnlyFlag(t *testing.T) { + pv := &api.PersistentVolume{ + ObjectMeta: api.ObjectMeta{ + Name: "pvA", + }, + Spec: api.PersistentVolumeSpec{ + PersistentVolumeSource: api.PersistentVolumeSource{ + Quobyte: &api.QuobyteVolumeSource{Registry: "reg:7861", Volume: "vol", ReadOnly: false, User: "root", Group: "root"}, + }, + ClaimRef: &api.ObjectReference{ + Name: "claimA", + }, + }, + } + + claim := &api.PersistentVolumeClaim{ + ObjectMeta: api.ObjectMeta{ + Name: "claimA", + Namespace: "nsA", + }, + Spec: api.PersistentVolumeClaimSpec{ + VolumeName: "pvA", + }, + Status: api.PersistentVolumeClaimStatus{ + Phase: api.ClaimBound, + }, + } + + tmpDir, err := utiltesting.MkTmpdir("quobyte_test") + if err != nil { + t.Fatalf("error creating temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + client := fake.NewSimpleClientset(pv, claim) + plugMgr := volume.VolumePluginMgr{} + plugMgr.InitPlugins(ProbeVolumePlugins(), volumetest.NewFakeVolumeHost(tmpDir, client, nil, "")) + plug, _ := plugMgr.FindPluginByName(quobytePluginName) + + // readOnly bool is supplied by persistent-claim volume source when its mounter creates other volumes + spec := volume.NewSpecFromPersistentVolume(pv, true) + pod := &api.Pod{ObjectMeta: api.ObjectMeta{UID: types.UID("poduid")}} + mounter, _ := plug.NewMounter(spec, pod, volume.VolumeOptions{}) + + if !mounter.GetAttributes().ReadOnly { + t.Errorf("Expected true for mounter.IsReadOnly") + } +} diff --git a/pkg/volume/quobyte/quobyte_util.go b/pkg/volume/quobyte/quobyte_util.go new file mode 100644 index 0000000000000..c26febe1a05a9 --- /dev/null +++ b/pkg/volume/quobyte/quobyte_util.go @@ -0,0 +1,48 @@ +/* +Copyright 2016 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package quobyte + +import ( + "path" + "strings" + + "github.com/golang/glog" +) + +func (mounter *quobyteMounter) pluginDirIsMounted(pluginDir string) (bool, error) { + mounts, err := mounter.mounter.List() + if err != nil { + return false, err + } + + for _, mountPoint := range mounts { + if strings.HasPrefix(mountPoint.Type, "quobyte") { + continue + } + + if mountPoint.Path == pluginDir { + glog.V(4).Infof("quobyte: found mountpoint %s in /proc/mounts", mountPoint.Path) + return true, nil + } + } + + return false, nil +} + +func (mounter *quobyteMounter) correctTraillingSlash(regStr string) string { + return path.Clean(regStr) + "/" +}