diff --git a/api/swagger-spec/apps_v1alpha1.json b/api/swagger-spec/apps_v1alpha1.json index ab3bc7e07b3..ee00f282c1c 100644 --- a/api/swagger-spec/apps_v1alpha1.json +++ b/api/swagger-spec/apps_v1alpha1.json @@ -1425,6 +1425,10 @@ "quobyte": { "$ref": "v1.QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + }, + "azureDisk": { + "$ref": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." } } }, @@ -2023,6 +2027,40 @@ } } }, + "v1.AzureDiskVolumeSource": { + "id": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "required": [ + "diskName", + "diskURI" + ], + "properties": { + "diskName": { + "type": "string", + "description": "The Name of the data disk in the blob storage" + }, + "diskURI": { + "type": "string", + "description": "The URI the data disk in the blob storage" + }, + "cachingMode": { + "$ref": "v1.AzureDataDiskCachingMode", + "description": "Host Caching mode: None, Read Only, Read Write." + }, + "fsType": { + "type": "string", + "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified." + }, + "readOnly": { + "type": "boolean", + "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." + } + } + }, + "v1.AzureDataDiskCachingMode": { + "id": "v1.AzureDataDiskCachingMode", + "properties": {} + }, "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 6dde52ee70a..f9cddc777fb 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -1430,6 +1430,10 @@ "quobyte": { "$ref": "v1.QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + }, + "azureDisk": { + "$ref": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." } } }, @@ -2028,6 +2032,40 @@ } } }, + "v1.AzureDiskVolumeSource": { + "id": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "required": [ + "diskName", + "diskURI" + ], + "properties": { + "diskName": { + "type": "string", + "description": "The Name of the data disk in the blob storage" + }, + "diskURI": { + "type": "string", + "description": "The URI the data disk in the blob storage" + }, + "cachingMode": { + "$ref": "v1.AzureDataDiskCachingMode", + "description": "Host Caching mode: None, Read Only, Read Write." + }, + "fsType": { + "type": "string", + "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified." + }, + "readOnly": { + "type": "boolean", + "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." + } + } + }, + "v1.AzureDataDiskCachingMode": { + "id": "v1.AzureDataDiskCachingMode", + "properties": {} + }, "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 91ba7642fcd..7cd25a016e9 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -8594,6 +8594,10 @@ "quobyte": { "$ref": "v1.QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + }, + "azureDisk": { + "$ref": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." } } }, @@ -9192,6 +9196,40 @@ } } }, + "v1.AzureDiskVolumeSource": { + "id": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "required": [ + "diskName", + "diskURI" + ], + "properties": { + "diskName": { + "type": "string", + "description": "The Name of the data disk in the blob storage" + }, + "diskURI": { + "type": "string", + "description": "The URI the data disk in the blob storage" + }, + "cachingMode": { + "$ref": "v1.AzureDataDiskCachingMode", + "description": "Host Caching mode: None, Read Only, Read Write." + }, + "fsType": { + "type": "string", + "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified." + }, + "readOnly": { + "type": "boolean", + "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." + } + } + }, + "v1.AzureDataDiskCachingMode": { + "id": "v1.AzureDataDiskCachingMode", + "properties": {} + }, "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 d63d26aca57..a02af0949d0 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -17317,6 +17317,10 @@ "$ref": "v1.QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, + "azureDisk": { + "$ref": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." + }, "accessModes": { "type": "array", "items": { @@ -17732,6 +17736,40 @@ } } }, + "v1.AzureDiskVolumeSource": { + "id": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "required": [ + "diskName", + "diskURI" + ], + "properties": { + "diskName": { + "type": "string", + "description": "The Name of the data disk in the blob storage" + }, + "diskURI": { + "type": "string", + "description": "The URI the data disk in the blob storage" + }, + "cachingMode": { + "$ref": "v1.AzureDataDiskCachingMode", + "description": "Host Caching mode: None, Read Only, Read Write." + }, + "fsType": { + "type": "string", + "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified." + }, + "readOnly": { + "type": "boolean", + "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." + } + } + }, + "v1.AzureDataDiskCachingMode": { + "id": "v1.AzureDataDiskCachingMode", + "properties": {} + }, "v1.PersistentVolumeStatus": { "id": "v1.PersistentVolumeStatus", "description": "PersistentVolumeStatus is the current status of a persistent volume.", @@ -17986,6 +18024,10 @@ "quobyte": { "$ref": "v1.QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" + }, + "azureDisk": { + "$ref": "v1.AzureDiskVolumeSource", + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." } } }, diff --git a/cmd/kube-controller-manager/app/plugins.go b/cmd/kube-controller-manager/app/plugins.go index d015bb5b11a..0d0dc539367 100644 --- a/cmd/kube-controller-manager/app/plugins.go +++ b/cmd/kube-controller-manager/app/plugins.go @@ -37,6 +37,7 @@ import ( "k8s.io/kubernetes/pkg/util/io" "k8s.io/kubernetes/pkg/volume" "k8s.io/kubernetes/pkg/volume/aws_ebs" + "k8s.io/kubernetes/pkg/volume/azure_dd" "k8s.io/kubernetes/pkg/volume/cinder" "k8s.io/kubernetes/pkg/volume/flexvolume" "k8s.io/kubernetes/pkg/volume/gce_pd" @@ -60,6 +61,7 @@ func ProbeAttachableVolumePlugins(config componentconfig.VolumeConfiguration) [] allPlugins = append(allPlugins, cinder.ProbeVolumePlugins()...) allPlugins = append(allPlugins, flexvolume.ProbeVolumePlugins(config.FlexVolumePluginDir)...) allPlugins = append(allPlugins, vsphere_volume.ProbeVolumePlugins()...) + allPlugins = append(allPlugins, azure_dd.ProbeVolumePlugins()...) return allPlugins } diff --git a/cmd/kubelet/app/plugins.go b/cmd/kubelet/app/plugins.go index b71a87ca33d..a3c6343f4c8 100644 --- a/cmd/kubelet/app/plugins.go +++ b/cmd/kubelet/app/plugins.go @@ -29,6 +29,7 @@ import ( // Volume plugins "k8s.io/kubernetes/pkg/volume" "k8s.io/kubernetes/pkg/volume/aws_ebs" + "k8s.io/kubernetes/pkg/volume/azure_dd" "k8s.io/kubernetes/pkg/volume/azure_file" "k8s.io/kubernetes/pkg/volume/cephfs" "k8s.io/kubernetes/pkg/volume/cinder" @@ -84,6 +85,7 @@ func ProbeVolumePlugins(pluginDir string) []volume.VolumePlugin { allPlugins = append(allPlugins, azure_file.ProbeVolumePlugins()...) allPlugins = append(allPlugins, configmap.ProbeVolumePlugins()...) allPlugins = append(allPlugins, vsphere_volume.ProbeVolumePlugins()...) + allPlugins = append(allPlugins, azure_dd.ProbeVolumePlugins()...) return allPlugins } diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index 7e44b782df8..b2ccf35765c 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -2963,6 +2963,68 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.AzureDiskVolumeSource

+
+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

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

diskName

The Name of the data disk in the blob storage

true

string

diskURI

The URI the data disk in the blob storage

true

string

cachingMode

Host Caching mode: None, Read Only, Read Write.

false

v1.AzureDataDiskCachingMode

fsType

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

false

string

readOnly

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

false

boolean

false

+

v1.VsphereVirtualDiskVolumeSource

@@ -3313,6 +3375,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.QuobyteVolumeSource

+ +

azureDisk

+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

+

false

+

v1.AzureDiskVolumeSource

+ + @@ -4119,6 +4188,10 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.AzureDataDiskCachingMode

+

v1.RBDVolumeSource

@@ -4214,7 +4287,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index ae297fdefaa..1a630b20c27 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -2789,6 +2789,68 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.AzureDiskVolumeSource

+
+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

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

diskName

The Name of the data disk in the blob storage

true

string

diskURI

The URI the data disk in the blob storage

true

string

cachingMode

Host Caching mode: None, Read Only, Read Write.

false

v1.AzureDataDiskCachingMode

fsType

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

false

string

readOnly

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

false

boolean

false

+

v1.KeyToPath

@@ -3118,6 +3180,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.QuobyteVolumeSource

+ +

azureDisk

+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

+

false

+

v1.AzureDiskVolumeSource

+ + @@ -6597,6 +6666,10 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.AzureDataDiskCachingMode

+

any

@@ -6609,7 +6682,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 02860c6b33d..3f728944438 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -3158,6 +3158,68 @@ The resulting set of endpoints can be viewed as:
+ +
+

v1.AzureDiskVolumeSource

+
+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

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

diskName

The Name of the data disk in the blob storage

true

string

diskURI

The URI the data disk in the blob storage

true

string

cachingMode

Host Caching mode: None, Read Only, Read Write.

false

v1.AzureDataDiskCachingMode

fsType

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

false

string

readOnly

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

false

boolean

false

+

v1.KeyToPath

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

v1.QuobyteVolumeSource

+ +

azureDisk

+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

+

false

+

v1.AzureDiskVolumeSource

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

azureDisk

+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

+

false

+

v1.AzureDiskVolumeSource

+ + +

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

@@ -8342,6 +8418,10 @@ The resulting set of endpoints can be viewed as:
+
+
+

v1.AzureDataDiskCachingMode

+

any

@@ -8354,7 +8434,7 @@ The resulting set of endpoints can be viewed as:
diff --git a/examples/examples_test.go b/examples/examples_test.go index 5e87df65627..0bbd4e9117a 100644 --- a/examples/examples_test.go +++ b/examples/examples_test.go @@ -404,6 +404,9 @@ func TestExampleObjectSchemas(t *testing.T) { "../examples/volumes/azure_file": { "azure": &api.Pod{}, }, + "../examples/volumes/azure_disk": { + "azure": &api.Pod{}, + }, } capabilities.SetForTests(capabilities.Capabilities{ diff --git a/examples/volumes/azure_disk/README.md b/examples/volumes/azure_disk/README.md new file mode 100644 index 00000000000..a0b97fc62a4 --- /dev/null +++ b/examples/volumes/azure_disk/README.md @@ -0,0 +1,51 @@ + + + + +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). + +-- + + + + + +# How to Use it? + +On Azure VM, create a Pod using the volume spec based on [azure](azure.yaml). + +In the pod, you need to provide the following information: + +- *diskName*: (required) the name of the VHD blob object. +- *diskURI*: (required) the URI of the vhd blob object. +- *cachingMode*: (optional) disk caching mode. Must be one of None, ReadOnly, or ReadWrite. Default is None. +- *fsType*: (optional) the filesytem type to mount. Default is ext4. +- *readOnly*: (optional) whether the filesystem is used as readOnly. Default is false. + + +Launch the Pod: + +```console + # kubectl create -f examples/volumes/azure_disk/azure.yaml +``` + + +[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/examples/volumes/azure_disk/README.md?pixel)]() + diff --git a/examples/volumes/azure_disk/azure.yaml b/examples/volumes/azure_disk/azure.yaml new file mode 100644 index 00000000000..04df7fb9b46 --- /dev/null +++ b/examples/volumes/azure_disk/azure.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Pod +metadata: + name: azure +spec: + containers: + - image: kubernetes/pause + name: azure + volumeMounts: + - name: azure + mountPath: /mnt/azure + volumes: + - name: azure + azureDisk: + diskName: test.vhd + diskURI: https://someaccount.blob.microsoft.net/vhds/test.vhd diff --git a/pkg/api/testing/fuzzer.go b/pkg/api/testing/fuzzer.go index 50b22739a7a..86dac4b645a 100644 --- a/pkg/api/testing/fuzzer.go +++ b/pkg/api/testing/fuzzer.go @@ -416,6 +416,20 @@ func FuzzerFor(t *testing.T, version unversioned.GroupVersion, src rand.Source) types := []api.PersistentVolumeClaimPhase{api.ClaimBound, api.ClaimPending, api.ClaimLost} pvc.Status.Phase = types[c.Rand.Intn(len(types))] }, + func(obj *api.AzureDiskVolumeSource, c fuzz.Continue) { + if obj.CachingMode == nil { + obj.CachingMode = new(api.AzureDataDiskCachingMode) + *obj.CachingMode = api.AzureDataDiskCachingNone + } + if obj.FSType == nil { + obj.FSType = new(string) + *obj.FSType = "ext4" + } + if obj.ReadOnly == nil { + obj.ReadOnly = new(bool) + *obj.ReadOnly = false + } + }, func(s *api.NamespaceSpec, c fuzz.Continue) { s.Finalizers = []api.FinalizerName{api.FinalizerKubernetes} }, diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 7881a82399c..6d56a80d902 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -1128,7 +1128,7 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep101 := !z.EncBinary() yy2arr101 := z.EncBasicHandle().StructToArray - var yyq101 [22]bool + var yyq101 [23]bool _, _, _ = yysep101, yyq101, yy2arr101 const yyr101 bool = false yyq101[1] = x.VolumeSource.HostPath != nil && x.HostPath != nil @@ -1152,9 +1152,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { yyq101[19] = x.VolumeSource.AzureFile != nil && x.AzureFile != nil yyq101[20] = x.VolumeSource.ConfigMap != nil && x.ConfigMap != nil yyq101[21] = x.VolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq101[22] = x.VolumeSource.AzureDisk != nil && x.AzureDisk != nil var yynn101 int if yyr101 || yy2arr101 { - r.EncodeArrayStart(22) + r.EncodeArrayStart(23) } else { yynn101 = 1 for _, b := range yyq101 { @@ -1961,6 +1962,43 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } } } + var yyn126 bool + if x.VolumeSource.AzureDisk == nil { + yyn126 = true + goto LABEL126 + } + LABEL126: + if yyr101 || yy2arr101 { + if yyn126 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq101[22] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq101[22] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn126 { + r.EncodeNil() + } else { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + } if yyr101 || yy2arr101 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -1974,25 +2012,25 @@ func (x *Volume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym126 := z.DecBinary() - _ = yym126 + yym127 := z.DecBinary() + _ = yym127 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct127 := r.ContainerType() - if yyct127 == codecSelferValueTypeMap1234 { - yyl127 := r.ReadMapStart() - if yyl127 == 0 { + yyct128 := r.ContainerType() + if yyct128 == codecSelferValueTypeMap1234 { + yyl128 := r.ReadMapStart() + if yyl128 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl127, d) + x.codecDecodeSelfFromMap(yyl128, d) } - } else if yyct127 == codecSelferValueTypeArray1234 { - yyl127 := r.ReadArrayStart() - if yyl127 == 0 { + } else if yyct128 == codecSelferValueTypeArray1234 { + yyl128 := r.ReadArrayStart() + if yyl128 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl127, d) + x.codecDecodeSelfFromArray(yyl128, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -2004,12 +2042,12 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys128Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys128Slc - var yyhl128 bool = l >= 0 - for yyj128 := 0; ; yyj128++ { - if yyhl128 { - if yyj128 >= l { + var yys129Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys129Slc + var yyhl129 bool = l >= 0 + for yyj129 := 0; ; yyj129++ { + if yyhl129 { + if yyj129 >= l { break } } else { @@ -2018,10 +2056,10 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys128Slc = r.DecodeBytes(yys128Slc, true, true) - yys128 := string(yys128Slc) + yys129Slc = r.DecodeBytes(yys129Slc, true, true) + yys129 := string(yys129Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys128 { + switch yys129 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -2322,10 +2360,24 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } + case "azureDisk": + if x.VolumeSource.AzureDisk == nil { + x.VolumeSource.AzureDisk = new(AzureDiskVolumeSource) + } + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys128) - } // end switch yys128 - } // end for yyj128 + z.DecStructFieldNotFound(-1, yys129) + } // end switch yys129 + } // end for yyj129 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -2333,16 +2385,16 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj151 int - var yyb151 bool - var yyhl151 bool = l >= 0 - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + var yyj153 int + var yyb153 bool + var yyhl153 bool = l >= 0 + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2355,13 +2407,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.HostPath == nil { x.VolumeSource.HostPath = new(HostPathVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2379,13 +2431,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.EmptyDir == nil { x.VolumeSource.EmptyDir = new(EmptyDirVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2403,13 +2455,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GCEPersistentDisk == nil { x.VolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2427,13 +2479,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AWSElasticBlockStore == nil { x.VolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2451,13 +2503,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GitRepo == nil { x.VolumeSource.GitRepo = new(GitRepoVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2475,13 +2527,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Secret == nil { x.VolumeSource.Secret = new(SecretVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2499,13 +2551,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.NFS == nil { x.VolumeSource.NFS = new(NFSVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2523,13 +2575,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ISCSI == nil { x.VolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2547,13 +2599,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Glusterfs == nil { x.VolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2571,13 +2623,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.PersistentVolumeClaim == nil { x.VolumeSource.PersistentVolumeClaim = new(PersistentVolumeClaimVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2595,13 +2647,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.RBD == nil { x.VolumeSource.RBD = new(RBDVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2619,13 +2671,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Quobyte == nil { x.VolumeSource.Quobyte = new(QuobyteVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2643,13 +2695,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FlexVolume == nil { x.VolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2667,13 +2719,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Cinder == nil { x.VolumeSource.Cinder = new(CinderVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2691,13 +2743,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.CephFS == nil { x.VolumeSource.CephFS = new(CephFSVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2715,13 +2767,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Flocker == nil { x.VolumeSource.Flocker = new(FlockerVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2739,13 +2791,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.DownwardAPI == nil { x.VolumeSource.DownwardAPI = new(DownwardAPIVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2763,13 +2815,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FC == nil { x.VolumeSource.FC = new(FCVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2787,13 +2839,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AzureFile == nil { x.VolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2811,13 +2863,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ConfigMap == nil { x.VolumeSource.ConfigMap = new(ConfigMapVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2835,13 +2887,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.VsphereVolume == nil { x.VolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2856,18 +2908,42 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } - for { - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l - } else { - yyb151 = r.CheckBreak() + if x.VolumeSource.AzureDisk == nil { + x.VolumeSource.AzureDisk = new(AzureDiskVolumeSource) + } + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l + } else { + yyb153 = r.CheckBreak() + } + if yyb153 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil } - if yyb151 { + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + for { + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l + } else { + yyb153 = r.CheckBreak() + } + if yyb153 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj151-1, "") + z.DecStructFieldNotFound(yyj153-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -2879,53 +2955,54 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym174 := z.EncBinary() - _ = yym174 + yym177 := z.EncBinary() + _ = yym177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep175 := !z.EncBinary() - yy2arr175 := z.EncBasicHandle().StructToArray - var yyq175 [21]bool - _, _, _ = yysep175, yyq175, yy2arr175 - const yyr175 bool = false - yyq175[0] = x.HostPath != nil - yyq175[1] = x.EmptyDir != nil - yyq175[2] = x.GCEPersistentDisk != nil - yyq175[3] = x.AWSElasticBlockStore != nil - yyq175[4] = x.GitRepo != nil - yyq175[5] = x.Secret != nil - yyq175[6] = x.NFS != nil - yyq175[7] = x.ISCSI != nil - yyq175[8] = x.Glusterfs != nil - yyq175[9] = x.PersistentVolumeClaim != nil - yyq175[10] = x.RBD != nil - yyq175[11] = x.Quobyte != nil - yyq175[12] = x.FlexVolume != nil - yyq175[13] = x.Cinder != nil - yyq175[14] = x.CephFS != nil - yyq175[15] = x.Flocker != nil - yyq175[16] = x.DownwardAPI != nil - yyq175[17] = x.FC != nil - yyq175[18] = x.AzureFile != nil - yyq175[19] = x.ConfigMap != nil - yyq175[20] = x.VsphereVolume != nil - var yynn175 int - if yyr175 || yy2arr175 { - r.EncodeArrayStart(21) + yysep178 := !z.EncBinary() + yy2arr178 := z.EncBasicHandle().StructToArray + var yyq178 [22]bool + _, _, _ = yysep178, yyq178, yy2arr178 + const yyr178 bool = false + yyq178[0] = x.HostPath != nil + yyq178[1] = x.EmptyDir != nil + yyq178[2] = x.GCEPersistentDisk != nil + yyq178[3] = x.AWSElasticBlockStore != nil + yyq178[4] = x.GitRepo != nil + yyq178[5] = x.Secret != nil + yyq178[6] = x.NFS != nil + yyq178[7] = x.ISCSI != nil + yyq178[8] = x.Glusterfs != nil + yyq178[9] = x.PersistentVolumeClaim != nil + yyq178[10] = x.RBD != nil + yyq178[11] = x.Quobyte != nil + yyq178[12] = x.FlexVolume != nil + yyq178[13] = x.Cinder != nil + yyq178[14] = x.CephFS != nil + yyq178[15] = x.Flocker != nil + yyq178[16] = x.DownwardAPI != nil + yyq178[17] = x.FC != nil + yyq178[18] = x.AzureFile != nil + yyq178[19] = x.ConfigMap != nil + yyq178[20] = x.VsphereVolume != nil + yyq178[21] = x.AzureDisk != nil + var yynn178 int + if yyr178 || yy2arr178 { + r.EncodeArrayStart(22) } else { - yynn175 = 0 - for _, b := range yyq175 { + yynn178 = 0 + for _, b := range yyq178 { if b { - yynn175++ + yynn178++ } } - r.EncodeMapStart(yynn175) - yynn175 = 0 + r.EncodeMapStart(yynn178) + yynn178 = 0 } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[0] { + if yyq178[0] { if x.HostPath == nil { r.EncodeNil() } else { @@ -2935,7 +3012,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[0] { + if yyq178[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2946,9 +3023,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[1] { + if yyq178[1] { if x.EmptyDir == nil { r.EncodeNil() } else { @@ -2958,7 +3035,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[1] { + if yyq178[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("emptyDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2969,9 +3046,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[2] { + if yyq178[2] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -2981,7 +3058,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[2] { + if yyq178[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2992,9 +3069,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[3] { + if yyq178[3] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -3004,7 +3081,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[3] { + if yyq178[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3015,9 +3092,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[4] { + if yyq178[4] { if x.GitRepo == nil { r.EncodeNil() } else { @@ -3027,7 +3104,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[4] { + if yyq178[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gitRepo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3038,9 +3115,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[5] { + if yyq178[5] { if x.Secret == nil { r.EncodeNil() } else { @@ -3050,7 +3127,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[5] { + if yyq178[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secret")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3061,9 +3138,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[6] { + if yyq178[6] { if x.NFS == nil { r.EncodeNil() } else { @@ -3073,7 +3150,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[6] { + if yyq178[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3084,9 +3161,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[7] { + if yyq178[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -3096,7 +3173,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[7] { + if yyq178[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3107,9 +3184,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[8] { + if yyq178[8] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -3119,7 +3196,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[8] { + if yyq178[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3130,9 +3207,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[9] { + if yyq178[9] { if x.PersistentVolumeClaim == nil { r.EncodeNil() } else { @@ -3142,7 +3219,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[9] { + if yyq178[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeClaim")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3153,9 +3230,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[10] { + if yyq178[10] { if x.RBD == nil { r.EncodeNil() } else { @@ -3165,7 +3242,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[10] { + if yyq178[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3176,9 +3253,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[11] { + if yyq178[11] { if x.Quobyte == nil { r.EncodeNil() } else { @@ -3188,7 +3265,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[11] { + if yyq178[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("quobyte")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3199,9 +3276,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[12] { + if yyq178[12] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -3211,7 +3288,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[12] { + if yyq178[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3222,9 +3299,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[13] { + if yyq178[13] { if x.Cinder == nil { r.EncodeNil() } else { @@ -3234,7 +3311,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[13] { + if yyq178[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3245,9 +3322,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[14] { + if yyq178[14] { if x.CephFS == nil { r.EncodeNil() } else { @@ -3257,7 +3334,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[14] { + if yyq178[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3268,9 +3345,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[15] { + if yyq178[15] { if x.Flocker == nil { r.EncodeNil() } else { @@ -3280,7 +3357,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[15] { + if yyq178[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3291,9 +3368,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[16] { + if yyq178[16] { if x.DownwardAPI == nil { r.EncodeNil() } else { @@ -3303,7 +3380,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[16] { + if yyq178[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("downwardAPI")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3314,9 +3391,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[17] { + if yyq178[17] { if x.FC == nil { r.EncodeNil() } else { @@ -3326,7 +3403,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[17] { + if yyq178[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3337,9 +3414,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[18] { + if yyq178[18] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -3349,7 +3426,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[18] { + if yyq178[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3360,9 +3437,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[19] { + if yyq178[19] { if x.ConfigMap == nil { r.EncodeNil() } else { @@ -3372,7 +3449,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[19] { + if yyq178[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMap")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3383,9 +3460,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[20] { + if yyq178[20] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -3395,7 +3472,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[20] { + if yyq178[20] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3406,7 +3483,30 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq178[21] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq178[21] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -3419,25 +3519,25 @@ func (x *VolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym197 := z.DecBinary() - _ = yym197 + yym201 := z.DecBinary() + _ = yym201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct198 := r.ContainerType() - if yyct198 == codecSelferValueTypeMap1234 { - yyl198 := r.ReadMapStart() - if yyl198 == 0 { + yyct202 := r.ContainerType() + if yyct202 == codecSelferValueTypeMap1234 { + yyl202 := r.ReadMapStart() + if yyl202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl198, d) + x.codecDecodeSelfFromMap(yyl202, d) } - } else if yyct198 == codecSelferValueTypeArray1234 { - yyl198 := r.ReadArrayStart() - if yyl198 == 0 { + } else if yyct202 == codecSelferValueTypeArray1234 { + yyl202 := r.ReadArrayStart() + if yyl202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl198, d) + x.codecDecodeSelfFromArray(yyl202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -3449,12 +3549,12 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys199Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys199Slc - var yyhl199 bool = l >= 0 - for yyj199 := 0; ; yyj199++ { - if yyhl199 { - if yyj199 >= l { + var yys203Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys203Slc + var yyhl203 bool = l >= 0 + for yyj203 := 0; ; yyj203++ { + if yyhl203 { + if yyj203 >= l { break } } else { @@ -3463,10 +3563,10 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys199Slc = r.DecodeBytes(yys199Slc, true, true) - yys199 := string(yys199Slc) + yys203Slc = r.DecodeBytes(yys203Slc, true, true) + yys203 := string(yys203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys199 { + switch yys203 { case "hostPath": if r.TryDecodeAsNil() { if x.HostPath != nil { @@ -3698,10 +3798,21 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } + case "azureDisk": + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys199) - } // end switch yys199 - } // end for yyj199 + z.DecStructFieldNotFound(-1, yys203) + } // end switch yys203 + } // end for yyj203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -3709,16 +3820,16 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj221 int - var yyb221 bool - var yyhl221 bool = l >= 0 - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + var yyj226 int + var yyb226 bool + var yyhl226 bool = l >= 0 + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3733,13 +3844,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HostPath.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3754,13 +3865,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.EmptyDir.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3775,13 +3886,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3796,13 +3907,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3817,13 +3928,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GitRepo.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3838,13 +3949,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Secret.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3859,13 +3970,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NFS.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3880,13 +3991,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ISCSI.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3901,13 +4012,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Glusterfs.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3922,13 +4033,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PersistentVolumeClaim.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3943,13 +4054,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3964,13 +4075,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Quobyte.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3985,13 +4096,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FlexVolume.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4006,13 +4117,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Cinder.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4027,13 +4138,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.CephFS.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4048,13 +4159,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Flocker.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4069,13 +4180,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.DownwardAPI.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4090,13 +4201,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FC.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4111,13 +4222,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AzureFile.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4132,13 +4243,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMap.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4153,18 +4264,39 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } - for { - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l - } else { - yyb221 = r.CheckBreak() + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l + } else { + yyb226 = r.CheckBreak() + } + if yyb226 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil } - if yyb221 { + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + for { + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l + } else { + yyb226 = r.CheckBreak() + } + if yyb226 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj221-1, "") + z.DecStructFieldNotFound(yyj226-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -4176,47 +4308,48 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym243 := z.EncBinary() - _ = yym243 + yym249 := z.EncBinary() + _ = yym249 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep244 := !z.EncBinary() - yy2arr244 := z.EncBasicHandle().StructToArray - var yyq244 [15]bool - _, _, _ = yysep244, yyq244, yy2arr244 - const yyr244 bool = false - yyq244[0] = x.GCEPersistentDisk != nil - yyq244[1] = x.AWSElasticBlockStore != nil - yyq244[2] = x.HostPath != nil - yyq244[3] = x.Glusterfs != nil - yyq244[4] = x.NFS != nil - yyq244[5] = x.RBD != nil - yyq244[6] = x.Quobyte != nil - yyq244[7] = x.ISCSI != nil - yyq244[8] = x.FlexVolume != nil - yyq244[9] = x.Cinder != nil - yyq244[10] = x.CephFS != nil - yyq244[11] = x.FC != nil - yyq244[12] = x.Flocker != nil - yyq244[13] = x.AzureFile != nil - yyq244[14] = x.VsphereVolume != nil - var yynn244 int - if yyr244 || yy2arr244 { - r.EncodeArrayStart(15) + yysep250 := !z.EncBinary() + yy2arr250 := z.EncBasicHandle().StructToArray + var yyq250 [16]bool + _, _, _ = yysep250, yyq250, yy2arr250 + const yyr250 bool = false + yyq250[0] = x.GCEPersistentDisk != nil + yyq250[1] = x.AWSElasticBlockStore != nil + yyq250[2] = x.HostPath != nil + yyq250[3] = x.Glusterfs != nil + yyq250[4] = x.NFS != nil + yyq250[5] = x.RBD != nil + yyq250[6] = x.Quobyte != nil + yyq250[7] = x.ISCSI != nil + yyq250[8] = x.FlexVolume != nil + yyq250[9] = x.Cinder != nil + yyq250[10] = x.CephFS != nil + yyq250[11] = x.FC != nil + yyq250[12] = x.Flocker != nil + yyq250[13] = x.AzureFile != nil + yyq250[14] = x.VsphereVolume != nil + yyq250[15] = x.AzureDisk != nil + var yynn250 int + if yyr250 || yy2arr250 { + r.EncodeArrayStart(16) } else { - yynn244 = 0 - for _, b := range yyq244 { + yynn250 = 0 + for _, b := range yyq250 { if b { - yynn244++ + yynn250++ } } - r.EncodeMapStart(yynn244) - yynn244 = 0 + r.EncodeMapStart(yynn250) + yynn250 = 0 } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[0] { + if yyq250[0] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -4226,7 +4359,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[0] { + if yyq250[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4237,9 +4370,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[1] { + if yyq250[1] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -4249,7 +4382,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[1] { + if yyq250[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4260,9 +4393,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[2] { + if yyq250[2] { if x.HostPath == nil { r.EncodeNil() } else { @@ -4272,7 +4405,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[2] { + if yyq250[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4283,9 +4416,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[3] { + if yyq250[3] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -4295,7 +4428,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[3] { + if yyq250[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4306,9 +4439,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[4] { + if yyq250[4] { if x.NFS == nil { r.EncodeNil() } else { @@ -4318,7 +4451,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[4] { + if yyq250[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4329,9 +4462,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[5] { + if yyq250[5] { if x.RBD == nil { r.EncodeNil() } else { @@ -4341,7 +4474,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[5] { + if yyq250[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4352,9 +4485,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[6] { + if yyq250[6] { if x.Quobyte == nil { r.EncodeNil() } else { @@ -4364,7 +4497,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[6] { + if yyq250[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("quobyte")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4375,9 +4508,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[7] { + if yyq250[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -4387,7 +4520,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[7] { + if yyq250[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4398,9 +4531,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[8] { + if yyq250[8] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -4410,7 +4543,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[8] { + if yyq250[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4421,9 +4554,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[9] { + if yyq250[9] { if x.Cinder == nil { r.EncodeNil() } else { @@ -4433,7 +4566,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[9] { + if yyq250[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4444,9 +4577,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[10] { + if yyq250[10] { if x.CephFS == nil { r.EncodeNil() } else { @@ -4456,7 +4589,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[10] { + if yyq250[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4467,9 +4600,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[11] { + if yyq250[11] { if x.FC == nil { r.EncodeNil() } else { @@ -4479,7 +4612,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[11] { + if yyq250[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4490,9 +4623,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[12] { + if yyq250[12] { if x.Flocker == nil { r.EncodeNil() } else { @@ -4502,7 +4635,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[12] { + if yyq250[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4513,9 +4646,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[13] { + if yyq250[13] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -4525,7 +4658,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[13] { + if yyq250[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4536,9 +4669,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[14] { + if yyq250[14] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -4548,7 +4681,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq244[14] { + if yyq250[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4559,7 +4692,30 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq250[15] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq250[15] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4572,25 +4728,25 @@ func (x *PersistentVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym260 := z.DecBinary() - _ = yym260 + yym267 := z.DecBinary() + _ = yym267 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct261 := r.ContainerType() - if yyct261 == codecSelferValueTypeMap1234 { - yyl261 := r.ReadMapStart() - if yyl261 == 0 { + yyct268 := r.ContainerType() + if yyct268 == codecSelferValueTypeMap1234 { + yyl268 := r.ReadMapStart() + if yyl268 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl261, d) + x.codecDecodeSelfFromMap(yyl268, d) } - } else if yyct261 == codecSelferValueTypeArray1234 { - yyl261 := r.ReadArrayStart() - if yyl261 == 0 { + } else if yyct268 == codecSelferValueTypeArray1234 { + yyl268 := r.ReadArrayStart() + if yyl268 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl261, d) + x.codecDecodeSelfFromArray(yyl268, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -4602,12 +4758,12 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys262Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys262Slc - var yyhl262 bool = l >= 0 - for yyj262 := 0; ; yyj262++ { - if yyhl262 { - if yyj262 >= l { + var yys269Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys269Slc + var yyhl269 bool = l >= 0 + for yyj269 := 0; ; yyj269++ { + if yyhl269 { + if yyj269 >= l { break } } else { @@ -4616,10 +4772,10 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys262Slc = r.DecodeBytes(yys262Slc, true, true) - yys262 := string(yys262Slc) + yys269Slc = r.DecodeBytes(yys269Slc, true, true) + yys269 := string(yys269Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys262 { + switch yys269 { case "gcePersistentDisk": if r.TryDecodeAsNil() { if x.GCEPersistentDisk != nil { @@ -4785,10 +4941,21 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } x.VsphereVolume.CodecDecodeSelf(d) } + case "azureDisk": + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys262) - } // end switch yys262 - } // end for yyj262 + z.DecStructFieldNotFound(-1, yys269) + } // end switch yys269 + } // end for yyj269 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4796,16 +4963,16 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj278 int - var yyb278 bool - var yyhl278 bool = l >= 0 - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + var yyj286 int + var yyb286 bool + var yyhl286 bool = l >= 0 + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4820,13 +4987,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4841,13 +5008,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4862,13 +5029,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.HostPath.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4883,13 +5050,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Glusterfs.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4904,13 +5071,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.NFS.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4925,13 +5092,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.RBD.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4946,13 +5113,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Quobyte.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4967,13 +5134,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.ISCSI.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4988,13 +5155,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FlexVolume.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5009,13 +5176,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Cinder.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5030,13 +5197,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.CephFS.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5051,13 +5218,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FC.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5072,13 +5239,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Flocker.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5093,13 +5260,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AzureFile.CodecDecodeSelf(d) } - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l } else { - yyb278 = r.CheckBreak() + yyb286 = r.CheckBreak() } - if yyb278 { + if yyb286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5114,18 +5281,39 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.VsphereVolume.CodecDecodeSelf(d) } - for { - yyj278++ - if yyhl278 { - yyb278 = yyj278 > l - } else { - yyb278 = r.CheckBreak() + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l + } else { + yyb286 = r.CheckBreak() + } + if yyb286 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil } - if yyb278 { + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + for { + yyj286++ + if yyhl286 { + yyb286 = yyj286 > l + } else { + yyb286 = r.CheckBreak() + } + if yyb286 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj278-1, "") + z.DecStructFieldNotFound(yyj286-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5137,34 +5325,34 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym294 := z.EncBinary() - _ = yym294 + yym303 := z.EncBinary() + _ = yym303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep295 := !z.EncBinary() - yy2arr295 := z.EncBasicHandle().StructToArray - var yyq295 [2]bool - _, _, _ = yysep295, yyq295, yy2arr295 - const yyr295 bool = false - yyq295[1] = x.ReadOnly != false - var yynn295 int - if yyr295 || yy2arr295 { + yysep304 := !z.EncBinary() + yy2arr304 := z.EncBasicHandle().StructToArray + var yyq304 [2]bool + _, _, _ = yysep304, yyq304, yy2arr304 + const yyr304 bool = false + yyq304[1] = x.ReadOnly != false + var yynn304 int + if yyr304 || yy2arr304 { r.EncodeArrayStart(2) } else { - yynn295 = 1 - for _, b := range yyq295 { + yynn304 = 1 + for _, b := range yyq304 { if b { - yynn295++ + yynn304++ } } - r.EncodeMapStart(yynn295) - yynn295 = 0 + r.EncodeMapStart(yynn304) + yynn304 = 0 } - if yyr295 || yy2arr295 { + if yyr304 || yy2arr304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym297 := z.EncBinary() - _ = yym297 + yym306 := z.EncBinary() + _ = yym306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) @@ -5173,18 +5361,18 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym298 := z.EncBinary() - _ = yym298 + yym307 := z.EncBinary() + _ = yym307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) } } - if yyr295 || yy2arr295 { + if yyr304 || yy2arr304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq295[1] { - yym300 := z.EncBinary() - _ = yym300 + if yyq304[1] { + yym309 := z.EncBinary() + _ = yym309 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -5193,19 +5381,19 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder r.EncodeBool(false) } } else { - if yyq295[1] { + if yyq304[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym301 := z.EncBinary() - _ = yym301 + yym310 := z.EncBinary() + _ = yym310 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr295 || yy2arr295 { + if yyr304 || yy2arr304 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -5218,25 +5406,25 @@ func (x *PersistentVolumeClaimVolumeSource) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym302 := z.DecBinary() - _ = yym302 + yym311 := z.DecBinary() + _ = yym311 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct303 := r.ContainerType() - if yyct303 == codecSelferValueTypeMap1234 { - yyl303 := r.ReadMapStart() - if yyl303 == 0 { + yyct312 := r.ContainerType() + if yyct312 == codecSelferValueTypeMap1234 { + yyl312 := r.ReadMapStart() + if yyl312 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl303, d) + x.codecDecodeSelfFromMap(yyl312, d) } - } else if yyct303 == codecSelferValueTypeArray1234 { - yyl303 := r.ReadArrayStart() - if yyl303 == 0 { + } else if yyct312 == codecSelferValueTypeArray1234 { + yyl312 := r.ReadArrayStart() + if yyl312 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl303, d) + x.codecDecodeSelfFromArray(yyl312, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -5248,12 +5436,12 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys304Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys304Slc - var yyhl304 bool = l >= 0 - for yyj304 := 0; ; yyj304++ { - if yyhl304 { - if yyj304 >= l { + var yys313Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys313Slc + var yyhl313 bool = l >= 0 + for yyj313 := 0; ; yyj313++ { + if yyhl313 { + if yyj313 >= l { break } } else { @@ -5262,10 +5450,10 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys304Slc = r.DecodeBytes(yys304Slc, true, true) - yys304 := string(yys304Slc) + yys313Slc = r.DecodeBytes(yys313Slc, true, true) + yys313 := string(yys313Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys304 { + switch yys313 { case "claimName": if r.TryDecodeAsNil() { x.ClaimName = "" @@ -5279,9 +5467,9 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys304) - } // end switch yys304 - } // end for yyj304 + z.DecStructFieldNotFound(-1, yys313) + } // end switch yys313 + } // end for yyj313 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5289,16 +5477,16 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj307 int - var yyb307 bool - var yyhl307 bool = l >= 0 - yyj307++ - if yyhl307 { - yyb307 = yyj307 > l + var yyj316 int + var yyb316 bool + var yyhl316 bool = l >= 0 + yyj316++ + if yyhl316 { + yyb316 = yyj316 > l } else { - yyb307 = r.CheckBreak() + yyb316 = r.CheckBreak() } - if yyb307 { + if yyb316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5308,13 +5496,13 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c } else { x.ClaimName = string(r.DecodeString()) } - yyj307++ - if yyhl307 { - yyb307 = yyj307 > l + yyj316++ + if yyhl316 { + yyb316 = yyj316 > l } else { - yyb307 = r.CheckBreak() + yyb316 = r.CheckBreak() } - if yyb307 { + if yyb316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5325,17 +5513,17 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c x.ReadOnly = bool(r.DecodeBool()) } for { - yyj307++ - if yyhl307 { - yyb307 = yyj307 > l + yyj316++ + if yyhl316 { + yyb316 = yyj316 > l } else { - yyb307 = r.CheckBreak() + yyb316 = r.CheckBreak() } - if yyb307 { + if yyb316 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj307-1, "") + z.DecStructFieldNotFound(yyj316-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5347,39 +5535,39 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym310 := z.EncBinary() - _ = yym310 + yym319 := z.EncBinary() + _ = yym319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep311 := !z.EncBinary() - yy2arr311 := z.EncBasicHandle().StructToArray - var yyq311 [5]bool - _, _, _ = yysep311, yyq311, yy2arr311 - const yyr311 bool = false - yyq311[0] = x.Kind != "" - yyq311[1] = x.APIVersion != "" - yyq311[2] = true - yyq311[3] = true - yyq311[4] = true - var yynn311 int - if yyr311 || yy2arr311 { + yysep320 := !z.EncBinary() + yy2arr320 := z.EncBasicHandle().StructToArray + var yyq320 [5]bool + _, _, _ = yysep320, yyq320, yy2arr320 + const yyr320 bool = false + yyq320[0] = x.Kind != "" + yyq320[1] = x.APIVersion != "" + yyq320[2] = true + yyq320[3] = true + yyq320[4] = true + var yynn320 int + if yyr320 || yy2arr320 { r.EncodeArrayStart(5) } else { - yynn311 = 0 - for _, b := range yyq311 { + yynn320 = 0 + for _, b := range yyq320 { if b { - yynn311++ + yynn320++ } } - r.EncodeMapStart(yynn311) - yynn311 = 0 + r.EncodeMapStart(yynn320) + yynn320 = 0 } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[0] { - yym313 := z.EncBinary() - _ = yym313 + if yyq320[0] { + yym322 := z.EncBinary() + _ = yym322 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -5388,23 +5576,23 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq311[0] { + if yyq320[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym314 := z.EncBinary() - _ = yym314 + yym323 := z.EncBinary() + _ = yym323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[1] { - yym316 := z.EncBinary() - _ = yym316 + if yyq320[1] { + yym325 := z.EncBinary() + _ = yym325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -5413,70 +5601,70 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq311[1] { + if yyq320[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym317 := z.EncBinary() - _ = yym317 + yym326 := z.EncBinary() + _ = yym326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[2] { - yy319 := &x.ObjectMeta - yy319.CodecEncodeSelf(e) + if yyq320[2] { + yy328 := &x.ObjectMeta + yy328.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq311[2] { + if yyq320[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy320 := &x.ObjectMeta - yy320.CodecEncodeSelf(e) + yy329 := &x.ObjectMeta + yy329.CodecEncodeSelf(e) } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[3] { - yy322 := &x.Spec - yy322.CodecEncodeSelf(e) + if yyq320[3] { + yy331 := &x.Spec + yy331.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq311[3] { + if yyq320[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy323 := &x.Spec - yy323.CodecEncodeSelf(e) + yy332 := &x.Spec + yy332.CodecEncodeSelf(e) } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[4] { - yy325 := &x.Status - yy325.CodecEncodeSelf(e) + if yyq320[4] { + yy334 := &x.Status + yy334.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq311[4] { + if yyq320[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy326 := &x.Status - yy326.CodecEncodeSelf(e) + yy335 := &x.Status + yy335.CodecEncodeSelf(e) } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -5489,25 +5677,25 @@ func (x *PersistentVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym327 := z.DecBinary() - _ = yym327 + yym336 := z.DecBinary() + _ = yym336 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct328 := r.ContainerType() - if yyct328 == codecSelferValueTypeMap1234 { - yyl328 := r.ReadMapStart() - if yyl328 == 0 { + yyct337 := r.ContainerType() + if yyct337 == codecSelferValueTypeMap1234 { + yyl337 := r.ReadMapStart() + if yyl337 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl328, d) + x.codecDecodeSelfFromMap(yyl337, d) } - } else if yyct328 == codecSelferValueTypeArray1234 { - yyl328 := r.ReadArrayStart() - if yyl328 == 0 { + } else if yyct337 == codecSelferValueTypeArray1234 { + yyl337 := r.ReadArrayStart() + if yyl337 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl328, d) + x.codecDecodeSelfFromArray(yyl337, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -5519,12 +5707,12 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys329Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys329Slc - var yyhl329 bool = l >= 0 - for yyj329 := 0; ; yyj329++ { - if yyhl329 { - if yyj329 >= l { + var yys338Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys338Slc + var yyhl338 bool = l >= 0 + for yyj338 := 0; ; yyj338++ { + if yyhl338 { + if yyj338 >= l { break } } else { @@ -5533,10 +5721,10 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys329Slc = r.DecodeBytes(yys329Slc, true, true) - yys329 := string(yys329Slc) + yys338Slc = r.DecodeBytes(yys338Slc, true, true) + yys338 := string(yys338Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys329 { + switch yys338 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -5553,27 +5741,27 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv332 := &x.ObjectMeta - yyv332.CodecDecodeSelf(d) + yyv341 := &x.ObjectMeta + yyv341.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv333 := &x.Spec - yyv333.CodecDecodeSelf(d) + yyv342 := &x.Spec + yyv342.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv334 := &x.Status - yyv334.CodecDecodeSelf(d) + yyv343 := &x.Status + yyv343.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys329) - } // end switch yys329 - } // end for yyj329 + z.DecStructFieldNotFound(-1, yys338) + } // end switch yys338 + } // end for yyj338 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5581,16 +5769,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj335 int - var yyb335 bool - var yyhl335 bool = l >= 0 - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + var yyj344 int + var yyb344 bool + var yyhl344 bool = l >= 0 + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5600,13 +5788,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5616,13 +5804,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5630,16 +5818,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv338 := &x.ObjectMeta - yyv338.CodecDecodeSelf(d) + yyv347 := &x.ObjectMeta + yyv347.CodecDecodeSelf(d) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5647,16 +5835,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv339 := &x.Spec - yyv339.CodecDecodeSelf(d) + yyv348 := &x.Spec + yyv348.CodecDecodeSelf(d) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5664,21 +5852,21 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv340 := &x.Status - yyv340.CodecDecodeSelf(d) + yyv349 := &x.Status + yyv349.CodecDecodeSelf(d) } for { - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj335-1, "") + z.DecStructFieldNotFound(yyj344-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5690,48 +5878,49 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym341 := z.EncBinary() - _ = yym341 + yym350 := z.EncBinary() + _ = yym350 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep342 := !z.EncBinary() - yy2arr342 := z.EncBasicHandle().StructToArray - var yyq342 [19]bool - _, _, _ = yysep342, yyq342, yy2arr342 - const yyr342 bool = false - yyq342[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil - yyq342[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil - yyq342[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil - yyq342[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil - yyq342[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil - yyq342[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil - yyq342[7] = x.PersistentVolumeSource.Quobyte != nil && x.Quobyte != nil - yyq342[8] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil - yyq342[9] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil - yyq342[10] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil - yyq342[11] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil - yyq342[12] = x.PersistentVolumeSource.FC != nil && x.FC != nil - yyq342[13] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil - yyq342[14] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil - yyq342[15] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil - yyq342[16] = len(x.AccessModes) != 0 - yyq342[17] = x.ClaimRef != nil - yyq342[18] = x.PersistentVolumeReclaimPolicy != "" - var yynn342 int - if yyr342 || yy2arr342 { - r.EncodeArrayStart(19) + yysep351 := !z.EncBinary() + yy2arr351 := z.EncBasicHandle().StructToArray + var yyq351 [20]bool + _, _, _ = yysep351, yyq351, yy2arr351 + const yyr351 bool = false + yyq351[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil + yyq351[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil + yyq351[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil + yyq351[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil + yyq351[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil + yyq351[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil + yyq351[7] = x.PersistentVolumeSource.Quobyte != nil && x.Quobyte != nil + yyq351[8] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil + yyq351[9] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil + yyq351[10] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil + yyq351[11] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil + yyq351[12] = x.PersistentVolumeSource.FC != nil && x.FC != nil + yyq351[13] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil + yyq351[14] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil + yyq351[15] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq351[16] = x.PersistentVolumeSource.AzureDisk != nil && x.AzureDisk != nil + yyq351[17] = len(x.AccessModes) != 0 + yyq351[18] = x.ClaimRef != nil + yyq351[19] = x.PersistentVolumeReclaimPolicy != "" + var yynn351 int + if yyr351 || yy2arr351 { + r.EncodeArrayStart(20) } else { - yynn342 = 1 - for _, b := range yyq342 { + yynn351 = 1 + for _, b := range yyq351 { if b { - yynn342++ + yynn351++ } } - r.EncodeMapStart(yynn342) - yynn342 = 0 + r.EncodeMapStart(yynn351) + yynn351 = 0 } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Capacity == nil { r.EncodeNil() @@ -5748,536 +5937,536 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { x.Capacity.CodecEncodeSelf(e) } } - var yyn344 bool - if x.PersistentVolumeSource.GCEPersistentDisk == nil { - yyn344 = true - goto LABEL344 - } - LABEL344: - if yyr342 || yy2arr342 { - if yyn344 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[1] { - if x.GCEPersistentDisk == nil { - r.EncodeNil() - } else { - x.GCEPersistentDisk.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn344 { - r.EncodeNil() - } else { - if x.GCEPersistentDisk == nil { - r.EncodeNil() - } else { - x.GCEPersistentDisk.CodecEncodeSelf(e) - } - } - } - } - var yyn345 bool - if x.PersistentVolumeSource.AWSElasticBlockStore == nil { - yyn345 = true - goto LABEL345 - } - LABEL345: - if yyr342 || yy2arr342 { - if yyn345 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[2] { - if x.AWSElasticBlockStore == nil { - r.EncodeNil() - } else { - x.AWSElasticBlockStore.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn345 { - r.EncodeNil() - } else { - if x.AWSElasticBlockStore == nil { - r.EncodeNil() - } else { - x.AWSElasticBlockStore.CodecEncodeSelf(e) - } - } - } - } - var yyn346 bool - if x.PersistentVolumeSource.HostPath == nil { - yyn346 = true - goto LABEL346 - } - LABEL346: - if yyr342 || yy2arr342 { - if yyn346 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[3] { - if x.HostPath == nil { - r.EncodeNil() - } else { - x.HostPath.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostPath")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn346 { - r.EncodeNil() - } else { - if x.HostPath == nil { - r.EncodeNil() - } else { - x.HostPath.CodecEncodeSelf(e) - } - } - } - } - var yyn347 bool - if x.PersistentVolumeSource.Glusterfs == nil { - yyn347 = true - goto LABEL347 - } - LABEL347: - if yyr342 || yy2arr342 { - if yyn347 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[4] { - if x.Glusterfs == nil { - r.EncodeNil() - } else { - x.Glusterfs.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn347 { - r.EncodeNil() - } else { - if x.Glusterfs == nil { - r.EncodeNil() - } else { - x.Glusterfs.CodecEncodeSelf(e) - } - } - } - } - var yyn348 bool - if x.PersistentVolumeSource.NFS == nil { - yyn348 = true - goto LABEL348 - } - LABEL348: - if yyr342 || yy2arr342 { - if yyn348 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[5] { - if x.NFS == nil { - r.EncodeNil() - } else { - x.NFS.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nfs")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn348 { - r.EncodeNil() - } else { - if x.NFS == nil { - r.EncodeNil() - } else { - x.NFS.CodecEncodeSelf(e) - } - } - } - } - var yyn349 bool - if x.PersistentVolumeSource.RBD == nil { - yyn349 = true - goto LABEL349 - } - LABEL349: - if yyr342 || yy2arr342 { - if yyn349 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[6] { - if x.RBD == nil { - r.EncodeNil() - } else { - x.RBD.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("rbd")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn349 { - r.EncodeNil() - } else { - if x.RBD == nil { - r.EncodeNil() - } else { - x.RBD.CodecEncodeSelf(e) - } - } - } - } - var yyn350 bool - if x.PersistentVolumeSource.Quobyte == nil { - yyn350 = true - goto LABEL350 - } - LABEL350: - if yyr342 || yy2arr342 { - if yyn350 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[7] { - if x.Quobyte == nil { - r.EncodeNil() - } else { - x.Quobyte.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[7] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("quobyte")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn350 { - r.EncodeNil() - } else { - if x.Quobyte == nil { - r.EncodeNil() - } else { - x.Quobyte.CodecEncodeSelf(e) - } - } - } - } - var yyn351 bool - if x.PersistentVolumeSource.ISCSI == nil { - yyn351 = true - goto LABEL351 - } - LABEL351: - if yyr342 || yy2arr342 { - if yyn351 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[8] { - if x.ISCSI == nil { - r.EncodeNil() - } else { - x.ISCSI.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[8] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("iscsi")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn351 { - r.EncodeNil() - } else { - if x.ISCSI == nil { - r.EncodeNil() - } else { - x.ISCSI.CodecEncodeSelf(e) - } - } - } - } - var yyn352 bool - if x.PersistentVolumeSource.FlexVolume == nil { - yyn352 = true - goto LABEL352 - } - LABEL352: - if yyr342 || yy2arr342 { - if yyn352 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[9] { - if x.FlexVolume == nil { - r.EncodeNil() - } else { - x.FlexVolume.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[9] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn352 { - r.EncodeNil() - } else { - if x.FlexVolume == nil { - r.EncodeNil() - } else { - x.FlexVolume.CodecEncodeSelf(e) - } - } - } - } var yyn353 bool - if x.PersistentVolumeSource.Cinder == nil { + if x.PersistentVolumeSource.GCEPersistentDisk == nil { yyn353 = true goto LABEL353 } LABEL353: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn353 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[10] { - if x.Cinder == nil { + if yyq351[1] { + if x.GCEPersistentDisk == nil { r.EncodeNil() } else { - x.Cinder.CodecEncodeSelf(e) + x.GCEPersistentDisk.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[10] { + if yyq351[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cinder")) + r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn353 { r.EncodeNil() } else { - if x.Cinder == nil { + if x.GCEPersistentDisk == nil { r.EncodeNil() } else { - x.Cinder.CodecEncodeSelf(e) + x.GCEPersistentDisk.CodecEncodeSelf(e) } } } } var yyn354 bool - if x.PersistentVolumeSource.CephFS == nil { + if x.PersistentVolumeSource.AWSElasticBlockStore == nil { yyn354 = true goto LABEL354 } LABEL354: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn354 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[11] { - if x.CephFS == nil { + if yyq351[2] { + if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { - x.CephFS.CodecEncodeSelf(e) + x.AWSElasticBlockStore.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[11] { + if yyq351[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cephfs")) + r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn354 { r.EncodeNil() } else { - if x.CephFS == nil { + if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { - x.CephFS.CodecEncodeSelf(e) + x.AWSElasticBlockStore.CodecEncodeSelf(e) } } } } var yyn355 bool - if x.PersistentVolumeSource.FC == nil { + if x.PersistentVolumeSource.HostPath == nil { yyn355 = true goto LABEL355 } LABEL355: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn355 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[12] { - if x.FC == nil { + if yyq351[3] { + if x.HostPath == nil { r.EncodeNil() } else { - x.FC.CodecEncodeSelf(e) + x.HostPath.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[12] { + if yyq351[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fc")) + r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn355 { r.EncodeNil() } else { - if x.FC == nil { + if x.HostPath == nil { r.EncodeNil() } else { - x.FC.CodecEncodeSelf(e) + x.HostPath.CodecEncodeSelf(e) } } } } var yyn356 bool - if x.PersistentVolumeSource.Flocker == nil { + if x.PersistentVolumeSource.Glusterfs == nil { yyn356 = true goto LABEL356 } LABEL356: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn356 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[13] { - if x.Flocker == nil { + if yyq351[4] { + if x.Glusterfs == nil { r.EncodeNil() } else { - x.Flocker.CodecEncodeSelf(e) + x.Glusterfs.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[13] { + if yyq351[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("flocker")) + r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn356 { r.EncodeNil() } else { - if x.Flocker == nil { + if x.Glusterfs == nil { r.EncodeNil() } else { - x.Flocker.CodecEncodeSelf(e) + x.Glusterfs.CodecEncodeSelf(e) } } } } var yyn357 bool - if x.PersistentVolumeSource.AzureFile == nil { + if x.PersistentVolumeSource.NFS == nil { yyn357 = true goto LABEL357 } LABEL357: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn357 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[14] { - if x.AzureFile == nil { + if yyq351[5] { + if x.NFS == nil { r.EncodeNil() } else { - x.AzureFile.CodecEncodeSelf(e) + x.NFS.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[14] { + if yyq351[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("azureFile")) + r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn357 { r.EncodeNil() } else { - if x.AzureFile == nil { + if x.NFS == nil { r.EncodeNil() } else { - x.AzureFile.CodecEncodeSelf(e) + x.NFS.CodecEncodeSelf(e) } } } } var yyn358 bool - if x.PersistentVolumeSource.VsphereVolume == nil { + if x.PersistentVolumeSource.RBD == nil { yyn358 = true goto LABEL358 } LABEL358: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn358 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[15] { + if yyq351[6] { + if x.RBD == nil { + r.EncodeNil() + } else { + x.RBD.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("rbd")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn358 { + r.EncodeNil() + } else { + if x.RBD == nil { + r.EncodeNil() + } else { + x.RBD.CodecEncodeSelf(e) + } + } + } + } + var yyn359 bool + if x.PersistentVolumeSource.Quobyte == nil { + yyn359 = true + goto LABEL359 + } + LABEL359: + if yyr351 || yy2arr351 { + if yyn359 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[7] { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[7] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("quobyte")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn359 { + r.EncodeNil() + } else { + if x.Quobyte == nil { + r.EncodeNil() + } else { + x.Quobyte.CodecEncodeSelf(e) + } + } + } + } + var yyn360 bool + if x.PersistentVolumeSource.ISCSI == nil { + yyn360 = true + goto LABEL360 + } + LABEL360: + if yyr351 || yy2arr351 { + if yyn360 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[8] { + if x.ISCSI == nil { + r.EncodeNil() + } else { + x.ISCSI.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[8] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("iscsi")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn360 { + r.EncodeNil() + } else { + if x.ISCSI == nil { + r.EncodeNil() + } else { + x.ISCSI.CodecEncodeSelf(e) + } + } + } + } + var yyn361 bool + if x.PersistentVolumeSource.FlexVolume == nil { + yyn361 = true + goto LABEL361 + } + LABEL361: + if yyr351 || yy2arr351 { + if yyn361 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[9] { + if x.FlexVolume == nil { + r.EncodeNil() + } else { + x.FlexVolume.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[9] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn361 { + r.EncodeNil() + } else { + if x.FlexVolume == nil { + r.EncodeNil() + } else { + x.FlexVolume.CodecEncodeSelf(e) + } + } + } + } + var yyn362 bool + if x.PersistentVolumeSource.Cinder == nil { + yyn362 = true + goto LABEL362 + } + LABEL362: + if yyr351 || yy2arr351 { + if yyn362 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[10] { + if x.Cinder == nil { + r.EncodeNil() + } else { + x.Cinder.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[10] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cinder")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn362 { + r.EncodeNil() + } else { + if x.Cinder == nil { + r.EncodeNil() + } else { + x.Cinder.CodecEncodeSelf(e) + } + } + } + } + var yyn363 bool + if x.PersistentVolumeSource.CephFS == nil { + yyn363 = true + goto LABEL363 + } + LABEL363: + if yyr351 || yy2arr351 { + if yyn363 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[11] { + if x.CephFS == nil { + r.EncodeNil() + } else { + x.CephFS.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[11] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cephfs")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn363 { + r.EncodeNil() + } else { + if x.CephFS == nil { + r.EncodeNil() + } else { + x.CephFS.CodecEncodeSelf(e) + } + } + } + } + var yyn364 bool + if x.PersistentVolumeSource.FC == nil { + yyn364 = true + goto LABEL364 + } + LABEL364: + if yyr351 || yy2arr351 { + if yyn364 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[12] { + if x.FC == nil { + r.EncodeNil() + } else { + x.FC.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[12] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fc")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn364 { + r.EncodeNil() + } else { + if x.FC == nil { + r.EncodeNil() + } else { + x.FC.CodecEncodeSelf(e) + } + } + } + } + var yyn365 bool + if x.PersistentVolumeSource.Flocker == nil { + yyn365 = true + goto LABEL365 + } + LABEL365: + if yyr351 || yy2arr351 { + if yyn365 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[13] { + if x.Flocker == nil { + r.EncodeNil() + } else { + x.Flocker.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[13] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("flocker")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn365 { + r.EncodeNil() + } else { + if x.Flocker == nil { + r.EncodeNil() + } else { + x.Flocker.CodecEncodeSelf(e) + } + } + } + } + var yyn366 bool + if x.PersistentVolumeSource.AzureFile == nil { + yyn366 = true + goto LABEL366 + } + LABEL366: + if yyr351 || yy2arr351 { + if yyn366 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[14] { + if x.AzureFile == nil { + r.EncodeNil() + } else { + x.AzureFile.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[14] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureFile")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn366 { + r.EncodeNil() + } else { + if x.AzureFile == nil { + r.EncodeNil() + } else { + x.AzureFile.CodecEncodeSelf(e) + } + } + } + } + var yyn367 bool + if x.PersistentVolumeSource.VsphereVolume == nil { + yyn367 = true + goto LABEL367 + } + LABEL367: + if yyr351 || yy2arr351 { + if yyn367 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[15] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -6288,11 +6477,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq342[15] { + if yyq351[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn358 { + if yyn367 { r.EncodeNil() } else { if x.VsphereVolume == nil { @@ -6303,14 +6492,51 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr342 || yy2arr342 { + var yyn368 bool + if x.PersistentVolumeSource.AzureDisk == nil { + yyn368 = true + goto LABEL368 + } + LABEL368: + if yyr351 || yy2arr351 { + if yyn368 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[16] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[16] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn368 { + r.EncodeNil() + } else { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + } + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[16] { + if yyq351[17] { if x.AccessModes == nil { r.EncodeNil() } else { - yym360 := z.EncBinary() - _ = yym360 + yym370 := z.EncBinary() + _ = yym370 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6320,15 +6546,15 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq342[16] { + if yyq351[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym361 := z.EncBinary() - _ = yym361 + yym371 := z.EncBinary() + _ = yym371 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6336,9 +6562,9 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[17] { + if yyq351[18] { if x.ClaimRef == nil { r.EncodeNil() } else { @@ -6348,7 +6574,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq342[17] { + if yyq351[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -6359,22 +6585,22 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[18] { + if yyq351[19] { x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq342[18] { + if yyq351[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeReclaimPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6387,25 +6613,25 @@ func (x *PersistentVolumeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym364 := z.DecBinary() - _ = yym364 + yym374 := z.DecBinary() + _ = yym374 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct365 := r.ContainerType() - if yyct365 == codecSelferValueTypeMap1234 { - yyl365 := r.ReadMapStart() - if yyl365 == 0 { + yyct375 := r.ContainerType() + if yyct375 == codecSelferValueTypeMap1234 { + yyl375 := r.ReadMapStart() + if yyl375 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl365, d) + x.codecDecodeSelfFromMap(yyl375, d) } - } else if yyct365 == codecSelferValueTypeArray1234 { - yyl365 := r.ReadArrayStart() - if yyl365 == 0 { + } else if yyct375 == codecSelferValueTypeArray1234 { + yyl375 := r.ReadArrayStart() + if yyl375 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl365, d) + x.codecDecodeSelfFromArray(yyl375, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -6417,12 +6643,12 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys366Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys366Slc - var yyhl366 bool = l >= 0 - for yyj366 := 0; ; yyj366++ { - if yyhl366 { - if yyj366 >= l { + var yys376Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys376Slc + var yyhl376 bool = l >= 0 + for yyj376 := 0; ; yyj376++ { + if yyhl376 { + if yyj376 >= l { break } } else { @@ -6431,16 +6657,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys366Slc = r.DecodeBytes(yys366Slc, true, true) - yys366 := string(yys366Slc) + yys376Slc = r.DecodeBytes(yys376Slc, true, true) + yys376 := string(yys376Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys366 { + switch yys376 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv367 := &x.Capacity - yyv367.CodecDecodeSelf(d) + yyv377 := &x.Capacity + yyv377.CodecDecodeSelf(d) } case "gcePersistentDisk": if x.PersistentVolumeSource.GCEPersistentDisk == nil { @@ -6652,16 +6878,30 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } x.VsphereVolume.CodecDecodeSelf(d) } + case "azureDisk": + if x.PersistentVolumeSource.AzureDisk == nil { + x.PersistentVolumeSource.AzureDisk = new(AzureDiskVolumeSource) + } + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv383 := &x.AccessModes - yym384 := z.DecBinary() - _ = yym384 + yyv394 := &x.AccessModes + yym395 := z.DecBinary() + _ = yym395 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv383), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv394), d) } } case "claimRef": @@ -6682,9 +6922,9 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys366) - } // end switch yys366 - } // end for yyj366 + z.DecStructFieldNotFound(-1, yys376) + } // end switch yys376 + } // end for yyj376 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -6692,16 +6932,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj387 int - var yyb387 bool - var yyhl387 bool = l >= 0 - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + var yyj398 int + var yyb398 bool + var yyhl398 bool = l >= 0 + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6709,19 +6949,19 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv388 := &x.Capacity - yyv388.CodecDecodeSelf(d) + yyv399 := &x.Capacity + yyv399.CodecDecodeSelf(d) } if x.PersistentVolumeSource.GCEPersistentDisk == nil { x.PersistentVolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6739,13 +6979,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AWSElasticBlockStore == nil { x.PersistentVolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6763,13 +7003,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.HostPath == nil { x.PersistentVolumeSource.HostPath = new(HostPathVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6787,13 +7027,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Glusterfs == nil { x.PersistentVolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6811,13 +7051,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.NFS == nil { x.PersistentVolumeSource.NFS = new(NFSVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6835,13 +7075,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.RBD == nil { x.PersistentVolumeSource.RBD = new(RBDVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6859,13 +7099,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Quobyte == nil { x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6883,13 +7123,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.ISCSI == nil { x.PersistentVolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6907,13 +7147,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FlexVolume == nil { x.PersistentVolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6931,13 +7171,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Cinder == nil { x.PersistentVolumeSource.Cinder = new(CinderVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6955,13 +7195,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.CephFS == nil { x.PersistentVolumeSource.CephFS = new(CephFSVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6979,13 +7219,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FC == nil { x.PersistentVolumeSource.FC = new(FCVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7003,13 +7243,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Flocker == nil { x.PersistentVolumeSource.Flocker = new(FlockerVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7027,13 +7267,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AzureFile == nil { x.PersistentVolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7051,13 +7291,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.VsphereVolume == nil { x.PersistentVolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7072,13 +7312,37 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.VsphereVolume.CodecDecodeSelf(d) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l - } else { - yyb387 = r.CheckBreak() + if x.PersistentVolumeSource.AzureDisk == nil { + x.PersistentVolumeSource.AzureDisk = new(AzureDiskVolumeSource) } - if yyb387 { + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l + } else { + yyb398 = r.CheckBreak() + } + if yyb398 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l + } else { + yyb398 = r.CheckBreak() + } + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7086,21 +7350,21 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv404 := &x.AccessModes - yym405 := z.DecBinary() - _ = yym405 + yyv416 := &x.AccessModes + yym417 := z.DecBinary() + _ = yym417 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv404), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv416), d) } } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7115,13 +7379,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.ClaimRef.CodecDecodeSelf(d) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7132,17 +7396,17 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } for { - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj387-1, "") + z.DecStructFieldNotFound(yyj398-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7151,8 +7415,8 @@ func (x PersistentVolumeReclaimPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym408 := z.EncBinary() - _ = yym408 + yym420 := z.EncBinary() + _ = yym420 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -7164,8 +7428,8 @@ func (x *PersistentVolumeReclaimPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym409 := z.DecBinary() - _ = yym409 + yym421 := z.DecBinary() + _ = yym421 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -7180,52 +7444,52 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym410 := z.EncBinary() - _ = yym410 + yym422 := z.EncBinary() + _ = yym422 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep411 := !z.EncBinary() - yy2arr411 := z.EncBasicHandle().StructToArray - var yyq411 [3]bool - _, _, _ = yysep411, yyq411, yy2arr411 - const yyr411 bool = false - yyq411[0] = x.Phase != "" - yyq411[1] = x.Message != "" - yyq411[2] = x.Reason != "" - var yynn411 int - if yyr411 || yy2arr411 { + yysep423 := !z.EncBinary() + yy2arr423 := z.EncBasicHandle().StructToArray + var yyq423 [3]bool + _, _, _ = yysep423, yyq423, yy2arr423 + const yyr423 bool = false + yyq423[0] = x.Phase != "" + yyq423[1] = x.Message != "" + yyq423[2] = x.Reason != "" + var yynn423 int + if yyr423 || yy2arr423 { r.EncodeArrayStart(3) } else { - yynn411 = 0 - for _, b := range yyq411 { + yynn423 = 0 + for _, b := range yyq423 { if b { - yynn411++ + yynn423++ } } - r.EncodeMapStart(yynn411) - yynn411 = 0 + r.EncodeMapStart(yynn423) + yynn423 = 0 } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq411[0] { + if yyq423[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq411[0] { + if yyq423[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq411[1] { - yym414 := z.EncBinary() - _ = yym414 + if yyq423[1] { + yym426 := z.EncBinary() + _ = yym426 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -7234,23 +7498,23 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq411[1] { + if yyq423[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym415 := z.EncBinary() - _ = yym415 + yym427 := z.EncBinary() + _ = yym427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq411[2] { - yym417 := z.EncBinary() - _ = yym417 + if yyq423[2] { + yym429 := z.EncBinary() + _ = yym429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -7259,19 +7523,19 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq411[2] { + if yyq423[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym418 := z.EncBinary() - _ = yym418 + yym430 := z.EncBinary() + _ = yym430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7284,25 +7548,25 @@ func (x *PersistentVolumeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym419 := z.DecBinary() - _ = yym419 + yym431 := z.DecBinary() + _ = yym431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct420 := r.ContainerType() - if yyct420 == codecSelferValueTypeMap1234 { - yyl420 := r.ReadMapStart() - if yyl420 == 0 { + yyct432 := r.ContainerType() + if yyct432 == codecSelferValueTypeMap1234 { + yyl432 := r.ReadMapStart() + if yyl432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl420, d) + x.codecDecodeSelfFromMap(yyl432, d) } - } else if yyct420 == codecSelferValueTypeArray1234 { - yyl420 := r.ReadArrayStart() - if yyl420 == 0 { + } else if yyct432 == codecSelferValueTypeArray1234 { + yyl432 := r.ReadArrayStart() + if yyl432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl420, d) + x.codecDecodeSelfFromArray(yyl432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7314,12 +7578,12 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys421Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys421Slc - var yyhl421 bool = l >= 0 - for yyj421 := 0; ; yyj421++ { - if yyhl421 { - if yyj421 >= l { + var yys433Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys433Slc + var yyhl433 bool = l >= 0 + for yyj433 := 0; ; yyj433++ { + if yyhl433 { + if yyj433 >= l { break } } else { @@ -7328,10 +7592,10 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys421Slc = r.DecodeBytes(yys421Slc, true, true) - yys421 := string(yys421Slc) + yys433Slc = r.DecodeBytes(yys433Slc, true, true) + yys433 := string(yys433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys421 { + switch yys433 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -7351,9 +7615,9 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.Reason = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys421) - } // end switch yys421 - } // end for yyj421 + z.DecStructFieldNotFound(-1, yys433) + } // end switch yys433 + } // end for yyj433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7361,16 +7625,16 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj425 int - var yyb425 bool - var yyhl425 bool = l >= 0 - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + var yyj437 int + var yyb437 bool + var yyhl437 bool = l >= 0 + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7380,13 +7644,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Phase = PersistentVolumePhase(r.DecodeString()) } - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7396,13 +7660,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Message = string(r.DecodeString()) } - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7413,17 +7677,17 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De x.Reason = string(r.DecodeString()) } for { - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj425-1, "") + z.DecStructFieldNotFound(yyj437-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7435,37 +7699,37 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym429 := z.EncBinary() - _ = yym429 + yym441 := z.EncBinary() + _ = yym441 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep430 := !z.EncBinary() - yy2arr430 := z.EncBasicHandle().StructToArray - var yyq430 [4]bool - _, _, _ = yysep430, yyq430, yy2arr430 - const yyr430 bool = false - yyq430[0] = x.Kind != "" - yyq430[1] = x.APIVersion != "" - yyq430[2] = true - var yynn430 int - if yyr430 || yy2arr430 { + yysep442 := !z.EncBinary() + yy2arr442 := z.EncBasicHandle().StructToArray + var yyq442 [4]bool + _, _, _ = yysep442, yyq442, yy2arr442 + const yyr442 bool = false + yyq442[0] = x.Kind != "" + yyq442[1] = x.APIVersion != "" + yyq442[2] = true + var yynn442 int + if yyr442 || yy2arr442 { r.EncodeArrayStart(4) } else { - yynn430 = 1 - for _, b := range yyq430 { + yynn442 = 1 + for _, b := range yyq442 { if b { - yynn430++ + yynn442++ } } - r.EncodeMapStart(yynn430) - yynn430 = 0 + r.EncodeMapStart(yynn442) + yynn442 = 0 } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq430[0] { - yym432 := z.EncBinary() - _ = yym432 + if yyq442[0] { + yym444 := z.EncBinary() + _ = yym444 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7474,23 +7738,23 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq430[0] { + if yyq442[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym433 := z.EncBinary() - _ = yym433 + yym445 := z.EncBinary() + _ = yym445 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq430[1] { - yym435 := z.EncBinary() - _ = yym435 + if yyq442[1] { + yym447 := z.EncBinary() + _ = yym447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7499,54 +7763,54 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq430[1] { + if yyq442[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym436 := z.EncBinary() - _ = yym436 + yym448 := z.EncBinary() + _ = yym448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq430[2] { - yy438 := &x.ListMeta - yym439 := z.EncBinary() - _ = yym439 + if yyq442[2] { + yy450 := &x.ListMeta + yym451 := z.EncBinary() + _ = yym451 if false { - } else if z.HasExtensions() && z.EncExt(yy438) { + } else if z.HasExtensions() && z.EncExt(yy450) { } else { - z.EncFallback(yy438) + z.EncFallback(yy450) } } else { r.EncodeNil() } } else { - if yyq430[2] { + if yyq442[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy440 := &x.ListMeta - yym441 := z.EncBinary() - _ = yym441 + yy452 := &x.ListMeta + yym453 := z.EncBinary() + _ = yym453 if false { - } else if z.HasExtensions() && z.EncExt(yy440) { + } else if z.HasExtensions() && z.EncExt(yy452) { } else { - z.EncFallback(yy440) + z.EncFallback(yy452) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym443 := z.EncBinary() - _ = yym443 + yym455 := z.EncBinary() + _ = yym455 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) @@ -7559,15 +7823,15 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym444 := z.EncBinary() - _ = yym444 + yym456 := z.EncBinary() + _ = yym456 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7580,25 +7844,25 @@ func (x *PersistentVolumeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym445 := z.DecBinary() - _ = yym445 + yym457 := z.DecBinary() + _ = yym457 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct446 := r.ContainerType() - if yyct446 == codecSelferValueTypeMap1234 { - yyl446 := r.ReadMapStart() - if yyl446 == 0 { + yyct458 := r.ContainerType() + if yyct458 == codecSelferValueTypeMap1234 { + yyl458 := r.ReadMapStart() + if yyl458 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl446, d) + x.codecDecodeSelfFromMap(yyl458, d) } - } else if yyct446 == codecSelferValueTypeArray1234 { - yyl446 := r.ReadArrayStart() - if yyl446 == 0 { + } else if yyct458 == codecSelferValueTypeArray1234 { + yyl458 := r.ReadArrayStart() + if yyl458 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl446, d) + x.codecDecodeSelfFromArray(yyl458, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7610,12 +7874,12 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys447Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys447Slc - var yyhl447 bool = l >= 0 - for yyj447 := 0; ; yyj447++ { - if yyhl447 { - if yyj447 >= l { + var yys459Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys459Slc + var yyhl459 bool = l >= 0 + for yyj459 := 0; ; yyj459++ { + if yyhl459 { + if yyj459 >= l { break } } else { @@ -7624,10 +7888,10 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys447Slc = r.DecodeBytes(yys447Slc, true, true) - yys447 := string(yys447Slc) + yys459Slc = r.DecodeBytes(yys459Slc, true, true) + yys459 := string(yys459Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys447 { + switch yys459 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7644,31 +7908,31 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv450 := &x.ListMeta - yym451 := z.DecBinary() - _ = yym451 + yyv462 := &x.ListMeta + yym463 := z.DecBinary() + _ = yym463 if false { - } else if z.HasExtensions() && z.DecExt(yyv450) { + } else if z.HasExtensions() && z.DecExt(yyv462) { } else { - z.DecFallback(yyv450, false) + z.DecFallback(yyv462, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv452 := &x.Items - yym453 := z.DecBinary() - _ = yym453 + yyv464 := &x.Items + yym465 := z.DecBinary() + _ = yym465 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv452), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv464), d) } } default: - z.DecStructFieldNotFound(-1, yys447) - } // end switch yys447 - } // end for yyj447 + z.DecStructFieldNotFound(-1, yys459) + } // end switch yys459 + } // end for yyj459 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7676,16 +7940,16 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj454 int - var yyb454 bool - var yyhl454 bool = l >= 0 - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + var yyj466 int + var yyb466 bool + var yyhl466 bool = l >= 0 + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7695,13 +7959,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Kind = string(r.DecodeString()) } - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7711,13 +7975,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.APIVersion = string(r.DecodeString()) } - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7725,22 +7989,22 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv457 := &x.ListMeta - yym458 := z.DecBinary() - _ = yym458 + yyv469 := &x.ListMeta + yym470 := z.DecBinary() + _ = yym470 if false { - } else if z.HasExtensions() && z.DecExt(yyv457) { + } else if z.HasExtensions() && z.DecExt(yyv469) { } else { - z.DecFallback(yyv457, false) + z.DecFallback(yyv469, false) } } - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7748,26 +8012,26 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Items = nil } else { - yyv459 := &x.Items - yym460 := z.DecBinary() - _ = yym460 + yyv471 := &x.Items + yym472 := z.DecBinary() + _ = yym472 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv459), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv471), d) } } for { - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj454-1, "") + z.DecStructFieldNotFound(yyj466-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7779,39 +8043,39 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym461 := z.EncBinary() - _ = yym461 + yym473 := z.EncBinary() + _ = yym473 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep462 := !z.EncBinary() - yy2arr462 := z.EncBasicHandle().StructToArray - var yyq462 [5]bool - _, _, _ = yysep462, yyq462, yy2arr462 - const yyr462 bool = false - yyq462[0] = x.Kind != "" - yyq462[1] = x.APIVersion != "" - yyq462[2] = true - yyq462[3] = true - yyq462[4] = true - var yynn462 int - if yyr462 || yy2arr462 { + yysep474 := !z.EncBinary() + yy2arr474 := z.EncBasicHandle().StructToArray + var yyq474 [5]bool + _, _, _ = yysep474, yyq474, yy2arr474 + const yyr474 bool = false + yyq474[0] = x.Kind != "" + yyq474[1] = x.APIVersion != "" + yyq474[2] = true + yyq474[3] = true + yyq474[4] = true + var yynn474 int + if yyr474 || yy2arr474 { r.EncodeArrayStart(5) } else { - yynn462 = 0 - for _, b := range yyq462 { + yynn474 = 0 + for _, b := range yyq474 { if b { - yynn462++ + yynn474++ } } - r.EncodeMapStart(yynn462) - yynn462 = 0 + r.EncodeMapStart(yynn474) + yynn474 = 0 } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[0] { - yym464 := z.EncBinary() - _ = yym464 + if yyq474[0] { + yym476 := z.EncBinary() + _ = yym476 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7820,23 +8084,23 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq462[0] { + if yyq474[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym465 := z.EncBinary() - _ = yym465 + yym477 := z.EncBinary() + _ = yym477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[1] { - yym467 := z.EncBinary() - _ = yym467 + if yyq474[1] { + yym479 := z.EncBinary() + _ = yym479 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7845,70 +8109,70 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq462[1] { + if yyq474[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym468 := z.EncBinary() - _ = yym468 + yym480 := z.EncBinary() + _ = yym480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[2] { - yy470 := &x.ObjectMeta - yy470.CodecEncodeSelf(e) + if yyq474[2] { + yy482 := &x.ObjectMeta + yy482.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq462[2] { + if yyq474[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy471 := &x.ObjectMeta - yy471.CodecEncodeSelf(e) + yy483 := &x.ObjectMeta + yy483.CodecEncodeSelf(e) } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[3] { - yy473 := &x.Spec - yy473.CodecEncodeSelf(e) + if yyq474[3] { + yy485 := &x.Spec + yy485.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq462[3] { + if yyq474[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy474 := &x.Spec - yy474.CodecEncodeSelf(e) + yy486 := &x.Spec + yy486.CodecEncodeSelf(e) } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[4] { - yy476 := &x.Status - yy476.CodecEncodeSelf(e) + if yyq474[4] { + yy488 := &x.Status + yy488.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq462[4] { + if yyq474[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy477 := &x.Status - yy477.CodecEncodeSelf(e) + yy489 := &x.Status + yy489.CodecEncodeSelf(e) } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7921,25 +8185,25 @@ func (x *PersistentVolumeClaim) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym478 := z.DecBinary() - _ = yym478 + yym490 := z.DecBinary() + _ = yym490 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct479 := r.ContainerType() - if yyct479 == codecSelferValueTypeMap1234 { - yyl479 := r.ReadMapStart() - if yyl479 == 0 { + yyct491 := r.ContainerType() + if yyct491 == codecSelferValueTypeMap1234 { + yyl491 := r.ReadMapStart() + if yyl491 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl479, d) + x.codecDecodeSelfFromMap(yyl491, d) } - } else if yyct479 == codecSelferValueTypeArray1234 { - yyl479 := r.ReadArrayStart() - if yyl479 == 0 { + } else if yyct491 == codecSelferValueTypeArray1234 { + yyl491 := r.ReadArrayStart() + if yyl491 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl479, d) + x.codecDecodeSelfFromArray(yyl491, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7951,12 +8215,12 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys480Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys480Slc - var yyhl480 bool = l >= 0 - for yyj480 := 0; ; yyj480++ { - if yyhl480 { - if yyj480 >= l { + var yys492Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys492Slc + var yyhl492 bool = l >= 0 + for yyj492 := 0; ; yyj492++ { + if yyhl492 { + if yyj492 >= l { break } } else { @@ -7965,10 +8229,10 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys480Slc = r.DecodeBytes(yys480Slc, true, true) - yys480 := string(yys480Slc) + yys492Slc = r.DecodeBytes(yys492Slc, true, true) + yys492 := string(yys492Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys480 { + switch yys492 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7985,27 +8249,27 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv483 := &x.ObjectMeta - yyv483.CodecDecodeSelf(d) + yyv495 := &x.ObjectMeta + yyv495.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv484 := &x.Spec - yyv484.CodecDecodeSelf(d) + yyv496 := &x.Spec + yyv496.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv485 := &x.Status - yyv485.CodecDecodeSelf(d) + yyv497 := &x.Status + yyv497.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys480) - } // end switch yys480 - } // end for yyj480 + z.DecStructFieldNotFound(-1, yys492) + } // end switch yys492 + } // end for yyj492 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8013,16 +8277,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj486 int - var yyb486 bool - var yyhl486 bool = l >= 0 - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + var yyj498 int + var yyb498 bool + var yyhl498 bool = l >= 0 + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8032,13 +8296,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8048,13 +8312,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8062,16 +8326,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv489 := &x.ObjectMeta - yyv489.CodecDecodeSelf(d) + yyv501 := &x.ObjectMeta + yyv501.CodecDecodeSelf(d) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8079,16 +8343,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv490 := &x.Spec - yyv490.CodecDecodeSelf(d) + yyv502 := &x.Spec + yyv502.CodecDecodeSelf(d) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8096,21 +8360,21 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv491 := &x.Status - yyv491.CodecDecodeSelf(d) + yyv503 := &x.Status + yyv503.CodecDecodeSelf(d) } for { - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj486-1, "") + z.DecStructFieldNotFound(yyj498-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8122,37 +8386,37 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym492 := z.EncBinary() - _ = yym492 + yym504 := z.EncBinary() + _ = yym504 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep493 := !z.EncBinary() - yy2arr493 := z.EncBasicHandle().StructToArray - var yyq493 [4]bool - _, _, _ = yysep493, yyq493, yy2arr493 - const yyr493 bool = false - yyq493[0] = x.Kind != "" - yyq493[1] = x.APIVersion != "" - yyq493[2] = true - var yynn493 int - if yyr493 || yy2arr493 { + yysep505 := !z.EncBinary() + yy2arr505 := z.EncBasicHandle().StructToArray + var yyq505 [4]bool + _, _, _ = yysep505, yyq505, yy2arr505 + const yyr505 bool = false + yyq505[0] = x.Kind != "" + yyq505[1] = x.APIVersion != "" + yyq505[2] = true + var yynn505 int + if yyr505 || yy2arr505 { r.EncodeArrayStart(4) } else { - yynn493 = 1 - for _, b := range yyq493 { + yynn505 = 1 + for _, b := range yyq505 { if b { - yynn493++ + yynn505++ } } - r.EncodeMapStart(yynn493) - yynn493 = 0 + r.EncodeMapStart(yynn505) + yynn505 = 0 } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq493[0] { - yym495 := z.EncBinary() - _ = yym495 + if yyq505[0] { + yym507 := z.EncBinary() + _ = yym507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -8161,23 +8425,23 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq493[0] { + if yyq505[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym496 := z.EncBinary() - _ = yym496 + yym508 := z.EncBinary() + _ = yym508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq493[1] { - yym498 := z.EncBinary() - _ = yym498 + if yyq505[1] { + yym510 := z.EncBinary() + _ = yym510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -8186,54 +8450,54 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq493[1] { + if yyq505[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym499 := z.EncBinary() - _ = yym499 + yym511 := z.EncBinary() + _ = yym511 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq493[2] { - yy501 := &x.ListMeta - yym502 := z.EncBinary() - _ = yym502 + if yyq505[2] { + yy513 := &x.ListMeta + yym514 := z.EncBinary() + _ = yym514 if false { - } else if z.HasExtensions() && z.EncExt(yy501) { + } else if z.HasExtensions() && z.EncExt(yy513) { } else { - z.EncFallback(yy501) + z.EncFallback(yy513) } } else { r.EncodeNil() } } else { - if yyq493[2] { + if yyq505[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy503 := &x.ListMeta - yym504 := z.EncBinary() - _ = yym504 + yy515 := &x.ListMeta + yym516 := z.EncBinary() + _ = yym516 if false { - } else if z.HasExtensions() && z.EncExt(yy503) { + } else if z.HasExtensions() && z.EncExt(yy515) { } else { - z.EncFallback(yy503) + z.EncFallback(yy515) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym506 := z.EncBinary() - _ = yym506 + yym518 := z.EncBinary() + _ = yym518 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) @@ -8246,15 +8510,15 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym507 := z.EncBinary() - _ = yym507 + yym519 := z.EncBinary() + _ = yym519 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8267,25 +8531,25 @@ func (x *PersistentVolumeClaimList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym508 := z.DecBinary() - _ = yym508 + yym520 := z.DecBinary() + _ = yym520 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct509 := r.ContainerType() - if yyct509 == codecSelferValueTypeMap1234 { - yyl509 := r.ReadMapStart() - if yyl509 == 0 { + yyct521 := r.ContainerType() + if yyct521 == codecSelferValueTypeMap1234 { + yyl521 := r.ReadMapStart() + if yyl521 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl509, d) + x.codecDecodeSelfFromMap(yyl521, d) } - } else if yyct509 == codecSelferValueTypeArray1234 { - yyl509 := r.ReadArrayStart() - if yyl509 == 0 { + } else if yyct521 == codecSelferValueTypeArray1234 { + yyl521 := r.ReadArrayStart() + if yyl521 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl509, d) + x.codecDecodeSelfFromArray(yyl521, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8297,12 +8561,12 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys510Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys510Slc - var yyhl510 bool = l >= 0 - for yyj510 := 0; ; yyj510++ { - if yyhl510 { - if yyj510 >= l { + var yys522Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys522Slc + var yyhl522 bool = l >= 0 + for yyj522 := 0; ; yyj522++ { + if yyhl522 { + if yyj522 >= l { break } } else { @@ -8311,10 +8575,10 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys510Slc = r.DecodeBytes(yys510Slc, true, true) - yys510 := string(yys510Slc) + yys522Slc = r.DecodeBytes(yys522Slc, true, true) + yys522 := string(yys522Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys510 { + switch yys522 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -8331,31 +8595,31 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv513 := &x.ListMeta - yym514 := z.DecBinary() - _ = yym514 + yyv525 := &x.ListMeta + yym526 := z.DecBinary() + _ = yym526 if false { - } else if z.HasExtensions() && z.DecExt(yyv513) { + } else if z.HasExtensions() && z.DecExt(yyv525) { } else { - z.DecFallback(yyv513, false) + z.DecFallback(yyv525, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv515 := &x.Items - yym516 := z.DecBinary() - _ = yym516 + yyv527 := &x.Items + yym528 := z.DecBinary() + _ = yym528 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv515), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv527), d) } } default: - z.DecStructFieldNotFound(-1, yys510) - } // end switch yys510 - } // end for yyj510 + z.DecStructFieldNotFound(-1, yys522) + } // end switch yys522 + } // end for yyj522 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8363,16 +8627,16 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj517 int - var yyb517 bool - var yyhl517 bool = l >= 0 - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + var yyj529 int + var yyb529 bool + var yyhl529 bool = l >= 0 + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8382,13 +8646,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8398,13 +8662,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8412,22 +8676,22 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv520 := &x.ListMeta - yym521 := z.DecBinary() - _ = yym521 + yyv532 := &x.ListMeta + yym533 := z.DecBinary() + _ = yym533 if false { - } else if z.HasExtensions() && z.DecExt(yyv520) { + } else if z.HasExtensions() && z.DecExt(yyv532) { } else { - z.DecFallback(yyv520, false) + z.DecFallback(yyv532, false) } } - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8435,26 +8699,26 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv522 := &x.Items - yym523 := z.DecBinary() - _ = yym523 + yyv534 := &x.Items + yym535 := z.DecBinary() + _ = yym535 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv522), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv534), d) } } for { - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj517-1, "") + z.DecStructFieldNotFound(yyj529-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8466,41 +8730,41 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym524 := z.EncBinary() - _ = yym524 + yym536 := z.EncBinary() + _ = yym536 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep525 := !z.EncBinary() - yy2arr525 := z.EncBasicHandle().StructToArray - var yyq525 [4]bool - _, _, _ = yysep525, yyq525, yy2arr525 - const yyr525 bool = false - yyq525[0] = len(x.AccessModes) != 0 - yyq525[1] = x.Selector != nil - yyq525[2] = true - yyq525[3] = x.VolumeName != "" - var yynn525 int - if yyr525 || yy2arr525 { + yysep537 := !z.EncBinary() + yy2arr537 := z.EncBasicHandle().StructToArray + var yyq537 [4]bool + _, _, _ = yysep537, yyq537, yy2arr537 + const yyr537 bool = false + yyq537[0] = len(x.AccessModes) != 0 + yyq537[1] = x.Selector != nil + yyq537[2] = true + yyq537[3] = x.VolumeName != "" + var yynn537 int + if yyr537 || yy2arr537 { r.EncodeArrayStart(4) } else { - yynn525 = 0 - for _, b := range yyq525 { + yynn537 = 0 + for _, b := range yyq537 { if b { - yynn525++ + yynn537++ } } - r.EncodeMapStart(yynn525) - yynn525 = 0 + r.EncodeMapStart(yynn537) + yynn537 = 0 } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[0] { + if yyq537[0] { if x.AccessModes == nil { r.EncodeNil() } else { - yym527 := z.EncBinary() - _ = yym527 + yym539 := z.EncBinary() + _ = yym539 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8510,15 +8774,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq525[0] { + if yyq537[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym528 := z.EncBinary() - _ = yym528 + yym540 := z.EncBinary() + _ = yym540 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8526,14 +8790,14 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[1] { + if yyq537[1] { if x.Selector == nil { r.EncodeNil() } else { - yym530 := z.EncBinary() - _ = yym530 + yym542 := z.EncBinary() + _ = yym542 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8544,15 +8808,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq525[1] { + if yyq537[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym531 := z.EncBinary() - _ = yym531 + yym543 := z.EncBinary() + _ = yym543 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8561,28 +8825,28 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[2] { - yy533 := &x.Resources - yy533.CodecEncodeSelf(e) + if yyq537[2] { + yy545 := &x.Resources + yy545.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq525[2] { + if yyq537[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy534 := &x.Resources - yy534.CodecEncodeSelf(e) + yy546 := &x.Resources + yy546.CodecEncodeSelf(e) } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[3] { - yym536 := z.EncBinary() - _ = yym536 + if yyq537[3] { + yym548 := z.EncBinary() + _ = yym548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) @@ -8591,19 +8855,19 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq525[3] { + if yyq537[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym537 := z.EncBinary() - _ = yym537 + yym549 := z.EncBinary() + _ = yym549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) } } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8616,25 +8880,25 @@ func (x *PersistentVolumeClaimSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym538 := z.DecBinary() - _ = yym538 + yym550 := z.DecBinary() + _ = yym550 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct539 := r.ContainerType() - if yyct539 == codecSelferValueTypeMap1234 { - yyl539 := r.ReadMapStart() - if yyl539 == 0 { + yyct551 := r.ContainerType() + if yyct551 == codecSelferValueTypeMap1234 { + yyl551 := r.ReadMapStart() + if yyl551 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl539, d) + x.codecDecodeSelfFromMap(yyl551, d) } - } else if yyct539 == codecSelferValueTypeArray1234 { - yyl539 := r.ReadArrayStart() - if yyl539 == 0 { + } else if yyct551 == codecSelferValueTypeArray1234 { + yyl551 := r.ReadArrayStart() + if yyl551 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl539, d) + x.codecDecodeSelfFromArray(yyl551, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8646,12 +8910,12 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys540Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys540Slc - var yyhl540 bool = l >= 0 - for yyj540 := 0; ; yyj540++ { - if yyhl540 { - if yyj540 >= l { + var yys552Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys552Slc + var yyhl552 bool = l >= 0 + for yyj552 := 0; ; yyj552++ { + if yyhl552 { + if yyj552 >= l { break } } else { @@ -8660,20 +8924,20 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys540Slc = r.DecodeBytes(yys540Slc, true, true) - yys540 := string(yys540Slc) + yys552Slc = r.DecodeBytes(yys552Slc, true, true) + yys552 := string(yys552Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys540 { + switch yys552 { case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv541 := &x.AccessModes - yym542 := z.DecBinary() - _ = yym542 + yyv553 := &x.AccessModes + yym554 := z.DecBinary() + _ = yym554 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv541), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv553), d) } } case "selector": @@ -8685,8 +8949,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym544 := z.DecBinary() - _ = yym544 + yym556 := z.DecBinary() + _ = yym556 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { @@ -8697,8 +8961,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv545 := &x.Resources - yyv545.CodecDecodeSelf(d) + yyv557 := &x.Resources + yyv557.CodecDecodeSelf(d) } case "volumeName": if r.TryDecodeAsNil() { @@ -8707,9 +8971,9 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.VolumeName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys540) - } // end switch yys540 - } // end for yyj540 + z.DecStructFieldNotFound(-1, yys552) + } // end switch yys552 + } // end for yyj552 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8717,16 +8981,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj547 int - var yyb547 bool - var yyhl547 bool = l >= 0 - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + var yyj559 int + var yyb559 bool + var yyhl559 bool = l >= 0 + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8734,21 +8998,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(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) } } - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8761,21 +9025,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym551 := z.DecBinary() - _ = yym551 + yym563 := z.DecBinary() + _ = yym563 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { z.DecFallback(x.Selector, false) } } - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8783,16 +9047,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv552 := &x.Resources - yyv552.CodecDecodeSelf(d) + yyv564 := &x.Resources + yyv564.CodecDecodeSelf(d) } - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8803,17 +9067,17 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.VolumeName = string(r.DecodeString()) } for { - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj547-1, "") + z.DecStructFieldNotFound(yyj559-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8825,55 +9089,55 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym554 := z.EncBinary() - _ = yym554 + yym566 := z.EncBinary() + _ = yym566 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep555 := !z.EncBinary() - yy2arr555 := z.EncBasicHandle().StructToArray - var yyq555 [3]bool - _, _, _ = yysep555, yyq555, yy2arr555 - const yyr555 bool = false - yyq555[0] = x.Phase != "" - yyq555[1] = len(x.AccessModes) != 0 - yyq555[2] = len(x.Capacity) != 0 - var yynn555 int - if yyr555 || yy2arr555 { + yysep567 := !z.EncBinary() + yy2arr567 := z.EncBasicHandle().StructToArray + var yyq567 [3]bool + _, _, _ = yysep567, yyq567, yy2arr567 + const yyr567 bool = false + yyq567[0] = x.Phase != "" + yyq567[1] = len(x.AccessModes) != 0 + yyq567[2] = len(x.Capacity) != 0 + var yynn567 int + if yyr567 || yy2arr567 { r.EncodeArrayStart(3) } else { - yynn555 = 0 - for _, b := range yyq555 { + yynn567 = 0 + for _, b := range yyq567 { if b { - yynn555++ + yynn567++ } } - r.EncodeMapStart(yynn555) - yynn555 = 0 + r.EncodeMapStart(yynn567) + yynn567 = 0 } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq555[0] { + if yyq567[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq555[0] { + if yyq567[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq555[1] { + if yyq567[1] { if x.AccessModes == nil { r.EncodeNil() } else { - yym558 := z.EncBinary() - _ = yym558 + yym570 := z.EncBinary() + _ = yym570 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8883,15 +9147,15 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq555[1] { + if yyq567[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym559 := z.EncBinary() - _ = yym559 + yym571 := z.EncBinary() + _ = yym571 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8899,9 +9163,9 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq555[2] { + if yyq567[2] { if x.Capacity == nil { r.EncodeNil() } else { @@ -8911,7 +9175,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq555[2] { + if yyq567[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -8922,7 +9186,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8935,25 +9199,25 @@ func (x *PersistentVolumeClaimStatus) 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 { - yyct562 := r.ContainerType() - if yyct562 == codecSelferValueTypeMap1234 { - yyl562 := r.ReadMapStart() - if yyl562 == 0 { + yyct574 := r.ContainerType() + if yyct574 == codecSelferValueTypeMap1234 { + yyl574 := r.ReadMapStart() + if yyl574 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl562, d) + x.codecDecodeSelfFromMap(yyl574, d) } - } else if yyct562 == codecSelferValueTypeArray1234 { - yyl562 := r.ReadArrayStart() - if yyl562 == 0 { + } else if yyct574 == codecSelferValueTypeArray1234 { + yyl574 := r.ReadArrayStart() + if yyl574 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl562, d) + x.codecDecodeSelfFromArray(yyl574, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8965,12 +9229,12 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys563Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys563Slc - var yyhl563 bool = l >= 0 - for yyj563 := 0; ; yyj563++ { - if yyhl563 { - if yyj563 >= l { + var yys575Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys575Slc + var yyhl575 bool = l >= 0 + for yyj575 := 0; ; yyj575++ { + if yyhl575 { + if yyj575 >= l { break } } else { @@ -8979,10 +9243,10 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys563Slc = r.DecodeBytes(yys563Slc, true, true) - yys563 := string(yys563Slc) + yys575Slc = r.DecodeBytes(yys575Slc, true, true) + yys575 := string(yys575Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys563 { + switch yys575 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -8993,25 +9257,25 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv565 := &x.AccessModes - yym566 := z.DecBinary() - _ = yym566 + yyv577 := &x.AccessModes + yym578 := z.DecBinary() + _ = yym578 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv565), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv577), d) } } case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv567 := &x.Capacity - yyv567.CodecDecodeSelf(d) + yyv579 := &x.Capacity + yyv579.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys563) - } // end switch yys563 - } // end for yyj563 + z.DecStructFieldNotFound(-1, yys575) + } // end switch yys575 + } // end for yyj575 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9019,16 +9283,16 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj568 int - var yyb568 bool - var yyhl568 bool = l >= 0 - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + var yyj580 int + var yyb580 bool + var yyhl580 bool = l >= 0 + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9038,13 +9302,13 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Phase = PersistentVolumeClaimPhase(r.DecodeString()) } - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9052,21 +9316,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv570 := &x.AccessModes - yym571 := z.DecBinary() - _ = yym571 + yyv582 := &x.AccessModes + yym583 := z.DecBinary() + _ = yym583 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv570), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv582), d) } } - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9074,21 +9338,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv572 := &x.Capacity - yyv572.CodecDecodeSelf(d) + yyv584 := &x.Capacity + yyv584.CodecDecodeSelf(d) } for { - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj568-1, "") + z.DecStructFieldNotFound(yyj580-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9097,8 +9361,8 @@ func (x PersistentVolumeAccessMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym573 := z.EncBinary() - _ = yym573 + yym585 := z.EncBinary() + _ = yym585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9110,8 +9374,8 @@ func (x *PersistentVolumeAccessMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym574 := z.DecBinary() - _ = yym574 + yym586 := z.DecBinary() + _ = yym586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9123,8 +9387,8 @@ func (x PersistentVolumePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym575 := z.EncBinary() - _ = yym575 + yym587 := z.EncBinary() + _ = yym587 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9136,8 +9400,8 @@ func (x *PersistentVolumePhase) 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 { @@ -9149,8 +9413,8 @@ func (x PersistentVolumeClaimPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym577 := z.EncBinary() - _ = yym577 + yym589 := z.EncBinary() + _ = yym589 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9162,8 +9426,8 @@ func (x *PersistentVolumeClaimPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym578 := z.DecBinary() - _ = yym578 + yym590 := z.DecBinary() + _ = yym590 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9178,33 +9442,33 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym579 := z.EncBinary() - _ = yym579 + yym591 := z.EncBinary() + _ = yym591 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep580 := !z.EncBinary() - yy2arr580 := z.EncBasicHandle().StructToArray - var yyq580 [1]bool - _, _, _ = yysep580, yyq580, yy2arr580 - const yyr580 bool = false - var yynn580 int - if yyr580 || yy2arr580 { + yysep592 := !z.EncBinary() + yy2arr592 := z.EncBasicHandle().StructToArray + var yyq592 [1]bool + _, _, _ = yysep592, yyq592, yy2arr592 + const yyr592 bool = false + var yynn592 int + if yyr592 || yy2arr592 { r.EncodeArrayStart(1) } else { - yynn580 = 1 - for _, b := range yyq580 { + yynn592 = 1 + for _, b := range yyq592 { if b { - yynn580++ + yynn592++ } } - r.EncodeMapStart(yynn580) - yynn580 = 0 + r.EncodeMapStart(yynn592) + yynn592 = 0 } - if yyr580 || yy2arr580 { + if yyr592 || yy2arr592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym582 := z.EncBinary() - _ = yym582 + yym594 := z.EncBinary() + _ = yym594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -9213,14 +9477,14 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym583 := z.EncBinary() - _ = yym583 + yym595 := z.EncBinary() + _ = yym595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr580 || yy2arr580 { + if yyr592 || yy2arr592 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9233,25 +9497,25 @@ func (x *HostPathVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym584 := z.DecBinary() - _ = yym584 + yym596 := z.DecBinary() + _ = yym596 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct585 := r.ContainerType() - if yyct585 == codecSelferValueTypeMap1234 { - yyl585 := r.ReadMapStart() - if yyl585 == 0 { + yyct597 := r.ContainerType() + if yyct597 == codecSelferValueTypeMap1234 { + yyl597 := r.ReadMapStart() + if yyl597 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl585, d) + x.codecDecodeSelfFromMap(yyl597, d) } - } else if yyct585 == codecSelferValueTypeArray1234 { - yyl585 := r.ReadArrayStart() - if yyl585 == 0 { + } else if yyct597 == codecSelferValueTypeArray1234 { + yyl597 := r.ReadArrayStart() + if yyl597 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl585, d) + x.codecDecodeSelfFromArray(yyl597, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9263,12 +9527,12 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys586Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys586Slc - var yyhl586 bool = l >= 0 - for yyj586 := 0; ; yyj586++ { - if yyhl586 { - if yyj586 >= l { + var yys598Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys598Slc + var yyhl598 bool = l >= 0 + for yyj598 := 0; ; yyj598++ { + if yyhl598 { + if yyj598 >= l { break } } else { @@ -9277,10 +9541,10 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys586Slc = r.DecodeBytes(yys586Slc, true, true) - yys586 := string(yys586Slc) + yys598Slc = r.DecodeBytes(yys598Slc, true, true) + yys598 := string(yys598Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys586 { + switch yys598 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -9288,9 +9552,9 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys586) - } // end switch yys586 - } // end for yyj586 + z.DecStructFieldNotFound(-1, yys598) + } // end switch yys598 + } // end for yyj598 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9298,16 +9562,16 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj588 int - var yyb588 bool - var yyhl588 bool = l >= 0 - yyj588++ - if yyhl588 { - yyb588 = yyj588 > l + var yyj600 int + var yyb600 bool + var yyhl600 bool = l >= 0 + yyj600++ + if yyhl600 { + yyb600 = yyj600 > l } else { - yyb588 = r.CheckBreak() + yyb600 = r.CheckBreak() } - if yyb588 { + if yyb600 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9318,17 +9582,17 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Path = string(r.DecodeString()) } for { - yyj588++ - if yyhl588 { - yyb588 = yyj588 > l + yyj600++ + if yyhl600 { + yyb600 = yyj600 > l } else { - yyb588 = r.CheckBreak() + yyb600 = r.CheckBreak() } - if yyb588 { + if yyb600 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj588-1, "") + z.DecStructFieldNotFound(yyj600-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9340,46 +9604,46 @@ func (x *EmptyDirVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym590 := z.EncBinary() - _ = yym590 + yym602 := z.EncBinary() + _ = yym602 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep591 := !z.EncBinary() - yy2arr591 := z.EncBasicHandle().StructToArray - var yyq591 [1]bool - _, _, _ = yysep591, yyq591, yy2arr591 - const yyr591 bool = false - yyq591[0] = x.Medium != "" - var yynn591 int - if yyr591 || yy2arr591 { + yysep603 := !z.EncBinary() + yy2arr603 := z.EncBasicHandle().StructToArray + var yyq603 [1]bool + _, _, _ = yysep603, yyq603, yy2arr603 + const yyr603 bool = false + yyq603[0] = x.Medium != "" + var yynn603 int + if yyr603 || yy2arr603 { r.EncodeArrayStart(1) } else { - yynn591 = 0 - for _, b := range yyq591 { + yynn603 = 0 + for _, b := range yyq603 { if b { - yynn591++ + yynn603++ } } - r.EncodeMapStart(yynn591) - yynn591 = 0 + r.EncodeMapStart(yynn603) + yynn603 = 0 } - if yyr591 || yy2arr591 { + if yyr603 || yy2arr603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq591[0] { + if yyq603[0] { x.Medium.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq591[0] { + if yyq603[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("medium")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Medium.CodecEncodeSelf(e) } } - if yyr591 || yy2arr591 { + if yyr603 || yy2arr603 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9392,25 +9656,25 @@ func (x *EmptyDirVolumeSource) 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) @@ -9422,12 +9686,12 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode 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 { @@ -9436,10 +9700,10 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } 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 "medium": if r.TryDecodeAsNil() { x.Medium = "" @@ -9447,9 +9711,9 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Medium = StorageMedium(r.DecodeString()) } 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) } @@ -9457,16 +9721,16 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj597 int - var yyb597 bool - var yyhl597 bool = l >= 0 - yyj597++ - if yyhl597 { - yyb597 = yyj597 > l + var yyj609 int + var yyb609 bool + var yyhl609 bool = l >= 0 + yyj609++ + if yyhl609 { + yyb609 = yyj609 > l } else { - yyb597 = r.CheckBreak() + yyb609 = r.CheckBreak() } - if yyb597 { + if yyb609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9477,17 +9741,17 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Medium = StorageMedium(r.DecodeString()) } for { - yyj597++ - if yyhl597 { - yyb597 = yyj597 > l + yyj609++ + if yyhl609 { + yyb609 = yyj609 > l } else { - yyb597 = r.CheckBreak() + yyb609 = r.CheckBreak() } - if yyb597 { + if yyb609 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj597-1, "") + z.DecStructFieldNotFound(yyj609-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9496,8 +9760,8 @@ func (x StorageMedium) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym599 := z.EncBinary() - _ = yym599 + yym611 := z.EncBinary() + _ = yym611 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9509,8 +9773,8 @@ func (x *StorageMedium) 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 { @@ -9522,8 +9786,8 @@ func (x Protocol) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym601 := z.EncBinary() - _ = yym601 + yym613 := z.EncBinary() + _ = yym613 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9535,8 +9799,8 @@ func (x *Protocol) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym602 := z.DecBinary() - _ = yym602 + yym614 := z.DecBinary() + _ = yym614 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9551,36 +9815,36 @@ func (x *GCEPersistentDiskVolumeSource) 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 [4]bool - _, _, _ = yysep604, yyq604, yy2arr604 - const yyr604 bool = false - yyq604[1] = x.FSType != "" - yyq604[2] = x.Partition != 0 - yyq604[3] = x.ReadOnly != false - var yynn604 int - if yyr604 || yy2arr604 { + yysep616 := !z.EncBinary() + yy2arr616 := z.EncBasicHandle().StructToArray + var yyq616 [4]bool + _, _, _ = yysep616, yyq616, yy2arr616 + const yyr616 bool = false + yyq616[1] = x.FSType != "" + yyq616[2] = x.Partition != 0 + yyq616[3] = x.ReadOnly != false + var yynn616 int + if yyr616 || yy2arr616 { r.EncodeArrayStart(4) } else { - yynn604 = 1 - for _, b := range yyq604 { + yynn616 = 1 + 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) - yym606 := z.EncBinary() - _ = yym606 + yym618 := z.EncBinary() + _ = yym618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) @@ -9589,18 +9853,18 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pdName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym607 := z.EncBinary() - _ = yym607 + yym619 := z.EncBinary() + _ = yym619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq604[1] { - yym609 := z.EncBinary() - _ = yym609 + if yyq616[1] { + yym621 := z.EncBinary() + _ = yym621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9609,23 +9873,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq604[1] { + if yyq616[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym610 := z.EncBinary() - _ = yym610 + yym622 := z.EncBinary() + _ = yym622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - 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.EncodeInt(int64(x.Partition)) @@ -9634,23 +9898,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq604[2] { + if yyq616[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym613 := z.EncBinary() - _ = yym613 + yym625 := z.EncBinary() + _ = yym625 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - 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.EncodeBool(bool(x.ReadOnly)) @@ -9659,19 +9923,19 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq604[3] { + if yyq616[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym616 := z.EncBinary() - _ = yym616 + yym628 := z.EncBinary() + _ = yym628 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr604 || yy2arr604 { + if yyr616 || yy2arr616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9684,25 +9948,25 @@ func (x *GCEPersistentDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym617 := z.DecBinary() - _ = yym617 + yym629 := z.DecBinary() + _ = yym629 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct618 := r.ContainerType() - if yyct618 == codecSelferValueTypeMap1234 { - yyl618 := r.ReadMapStart() - if yyl618 == 0 { + yyct630 := r.ContainerType() + if yyct630 == codecSelferValueTypeMap1234 { + yyl630 := r.ReadMapStart() + if yyl630 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl618, d) + x.codecDecodeSelfFromMap(yyl630, d) } - } else if yyct618 == codecSelferValueTypeArray1234 { - yyl618 := r.ReadArrayStart() - if yyl618 == 0 { + } else if yyct630 == codecSelferValueTypeArray1234 { + yyl630 := r.ReadArrayStart() + if yyl630 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl618, d) + x.codecDecodeSelfFromArray(yyl630, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9714,12 +9978,12 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys619Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys619Slc - var yyhl619 bool = l >= 0 - for yyj619 := 0; ; yyj619++ { - if yyhl619 { - if yyj619 >= l { + var yys631Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys631Slc + var yyhl631 bool = l >= 0 + for yyj631 := 0; ; yyj631++ { + if yyhl631 { + if yyj631 >= l { break } } else { @@ -9728,10 +9992,10 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys619Slc = r.DecodeBytes(yys619Slc, true, true) - yys619 := string(yys619Slc) + yys631Slc = r.DecodeBytes(yys631Slc, true, true) + yys631 := string(yys631Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys619 { + switch yys631 { case "pdName": if r.TryDecodeAsNil() { x.PDName = "" @@ -9757,9 +10021,9 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys619) - } // end switch yys619 - } // end for yyj619 + z.DecStructFieldNotFound(-1, yys631) + } // end switch yys631 + } // end for yyj631 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9767,16 +10031,16 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj624 int - var yyb624 bool - var yyhl624 bool = l >= 0 - yyj624++ - if yyhl624 { - yyb624 = yyj624 > l + var yyj636 int + var yyb636 bool + var yyhl636 bool = l >= 0 + yyj636++ + if yyhl636 { + yyb636 = yyj636 > l } else { - yyb624 = r.CheckBreak() + yyb636 = r.CheckBreak() } - if yyb624 { + if yyb636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9786,13 +10050,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.PDName = string(r.DecodeString()) } - yyj624++ - if yyhl624 { - yyb624 = yyj624 > l + yyj636++ + if yyhl636 { + yyb636 = yyj636 > l } else { - yyb624 = r.CheckBreak() + yyb636 = r.CheckBreak() } - if yyb624 { + if yyb636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9802,13 +10066,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.FSType = string(r.DecodeString()) } - yyj624++ - if yyhl624 { - yyb624 = yyj624 > l + yyj636++ + if yyhl636 { + yyb636 = yyj636 > l } else { - yyb624 = r.CheckBreak() + yyb636 = r.CheckBreak() } - if yyb624 { + if yyb636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9818,13 +10082,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.Partition = int32(r.DecodeInt(32)) } - yyj624++ - if yyhl624 { - yyb624 = yyj624 > l + yyj636++ + if yyhl636 { + yyb636 = yyj636 > l } else { - yyb624 = r.CheckBreak() + yyb636 = r.CheckBreak() } - if yyb624 { + if yyb636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9835,17 +10099,17 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj624++ - if yyhl624 { - yyb624 = yyj624 > l + yyj636++ + if yyhl636 { + yyb636 = yyj636 > l } else { - yyb624 = r.CheckBreak() + yyb636 = r.CheckBreak() } - if yyb624 { + if yyb636 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj624-1, "") + z.DecStructFieldNotFound(yyj636-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9857,40 +10121,40 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym629 := z.EncBinary() - _ = yym629 + yym641 := z.EncBinary() + _ = yym641 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep630 := !z.EncBinary() - yy2arr630 := z.EncBasicHandle().StructToArray - var yyq630 [6]bool - _, _, _ = yysep630, yyq630, yy2arr630 - const yyr630 bool = false - yyq630[0] = x.TargetPortal != "" - yyq630[1] = x.IQN != "" - yyq630[2] = x.Lun != 0 - yyq630[3] = x.ISCSIInterface != "" - yyq630[4] = x.FSType != "" - yyq630[5] = x.ReadOnly != false - var yynn630 int - if yyr630 || yy2arr630 { + yysep642 := !z.EncBinary() + yy2arr642 := z.EncBasicHandle().StructToArray + var yyq642 [6]bool + _, _, _ = yysep642, yyq642, yy2arr642 + const yyr642 bool = false + yyq642[0] = x.TargetPortal != "" + yyq642[1] = x.IQN != "" + yyq642[2] = x.Lun != 0 + yyq642[3] = x.ISCSIInterface != "" + yyq642[4] = x.FSType != "" + yyq642[5] = x.ReadOnly != false + var yynn642 int + if yyr642 || yy2arr642 { r.EncodeArrayStart(6) } else { - yynn630 = 0 - for _, b := range yyq630 { + yynn642 = 0 + for _, b := range yyq642 { if b { - yynn630++ + yynn642++ } } - r.EncodeMapStart(yynn630) - yynn630 = 0 + r.EncodeMapStart(yynn642) + yynn642 = 0 } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq630[0] { - yym632 := z.EncBinary() - _ = yym632 + if yyq642[0] { + yym644 := z.EncBinary() + _ = yym644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) @@ -9899,23 +10163,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq630[0] { + if yyq642[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPortal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym633 := z.EncBinary() - _ = yym633 + yym645 := z.EncBinary() + _ = yym645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) } } } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq630[1] { - yym635 := z.EncBinary() - _ = yym635 + if yyq642[1] { + yym647 := z.EncBinary() + _ = yym647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) @@ -9924,23 +10188,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq630[1] { + if yyq642[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iqn")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym636 := z.EncBinary() - _ = yym636 + yym648 := z.EncBinary() + _ = yym648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) } } } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq630[2] { - yym638 := z.EncBinary() - _ = yym638 + if yyq642[2] { + yym650 := z.EncBinary() + _ = yym650 if false { } else { r.EncodeInt(int64(x.Lun)) @@ -9949,23 +10213,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq630[2] { + if yyq642[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lun")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym639 := z.EncBinary() - _ = yym639 + yym651 := z.EncBinary() + _ = yym651 if false { } else { r.EncodeInt(int64(x.Lun)) } } } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq630[3] { - yym641 := z.EncBinary() - _ = yym641 + if yyq642[3] { + yym653 := z.EncBinary() + _ = yym653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) @@ -9974,23 +10238,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq630[3] { + if yyq642[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsiInterface")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym642 := z.EncBinary() - _ = yym642 + yym654 := z.EncBinary() + _ = yym654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) } } } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq630[4] { - yym644 := z.EncBinary() - _ = yym644 + if yyq642[4] { + yym656 := z.EncBinary() + _ = yym656 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9999,23 +10263,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq630[4] { + if yyq642[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym645 := z.EncBinary() - _ = yym645 + yym657 := z.EncBinary() + _ = yym657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq630[5] { - yym647 := z.EncBinary() - _ = yym647 + if yyq642[5] { + yym659 := z.EncBinary() + _ = yym659 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10024,19 +10288,19 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq630[5] { + if yyq642[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym648 := z.EncBinary() - _ = yym648 + yym660 := z.EncBinary() + _ = yym660 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr630 || yy2arr630 { + if yyr642 || yy2arr642 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10049,25 +10313,25 @@ func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym649 := z.DecBinary() - _ = yym649 + yym661 := z.DecBinary() + _ = yym661 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct650 := r.ContainerType() - if yyct650 == codecSelferValueTypeMap1234 { - yyl650 := r.ReadMapStart() - if yyl650 == 0 { + yyct662 := r.ContainerType() + if yyct662 == codecSelferValueTypeMap1234 { + yyl662 := r.ReadMapStart() + if yyl662 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl650, d) + x.codecDecodeSelfFromMap(yyl662, d) } - } else if yyct650 == codecSelferValueTypeArray1234 { - yyl650 := r.ReadArrayStart() - if yyl650 == 0 { + } else if yyct662 == codecSelferValueTypeArray1234 { + yyl662 := r.ReadArrayStart() + if yyl662 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl650, d) + x.codecDecodeSelfFromArray(yyl662, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10079,12 +10343,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys651Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys651Slc - var yyhl651 bool = l >= 0 - for yyj651 := 0; ; yyj651++ { - if yyhl651 { - if yyj651 >= l { + var yys663Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys663Slc + var yyhl663 bool = l >= 0 + for yyj663 := 0; ; yyj663++ { + if yyhl663 { + if yyj663 >= l { break } } else { @@ -10093,10 +10357,10 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys651Slc = r.DecodeBytes(yys651Slc, true, true) - yys651 := string(yys651Slc) + yys663Slc = r.DecodeBytes(yys663Slc, true, true) + yys663 := string(yys663Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys651 { + switch yys663 { case "targetPortal": if r.TryDecodeAsNil() { x.TargetPortal = "" @@ -10134,9 +10398,9 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys651) - } // end switch yys651 - } // end for yyj651 + z.DecStructFieldNotFound(-1, yys663) + } // end switch yys663 + } // end for yyj663 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10144,16 +10408,16 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj658 int - var yyb658 bool - var yyhl658 bool = l >= 0 - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + var yyj670 int + var yyb670 bool + var yyhl670 bool = l >= 0 + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10163,13 +10427,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.TargetPortal = string(r.DecodeString()) } - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10179,13 +10443,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.IQN = string(r.DecodeString()) } - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10195,13 +10459,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Lun = int32(r.DecodeInt(32)) } - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10211,13 +10475,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.ISCSIInterface = string(r.DecodeString()) } - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10227,13 +10491,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.FSType = string(r.DecodeString()) } - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10244,17 +10508,17 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.ReadOnly = bool(r.DecodeBool()) } for { - yyj658++ - if yyhl658 { - yyb658 = yyj658 > l + yyj670++ + if yyhl670 { + yyb670 = yyj670 > l } else { - yyb658 = r.CheckBreak() + yyb670 = r.CheckBreak() } - if yyb658 { + if yyb670 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj658-1, "") + z.DecStructFieldNotFound(yyj670-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10266,38 +10530,38 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym665 := z.EncBinary() - _ = yym665 + yym677 := z.EncBinary() + _ = yym677 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep666 := !z.EncBinary() - yy2arr666 := z.EncBasicHandle().StructToArray - var yyq666 [4]bool - _, _, _ = yysep666, yyq666, yy2arr666 - const yyr666 bool = false - yyq666[2] = x.FSType != "" - yyq666[3] = x.ReadOnly != false - var yynn666 int - if yyr666 || yy2arr666 { + yysep678 := !z.EncBinary() + yy2arr678 := z.EncBasicHandle().StructToArray + var yyq678 [4]bool + _, _, _ = yysep678, yyq678, yy2arr678 + const yyr678 bool = false + yyq678[2] = x.FSType != "" + yyq678[3] = x.ReadOnly != false + var yynn678 int + if yyr678 || yy2arr678 { r.EncodeArrayStart(4) } else { - yynn666 = 2 - for _, b := range yyq666 { + yynn678 = 2 + for _, b := range yyq678 { if b { - yynn666++ + yynn678++ } } - r.EncodeMapStart(yynn666) - yynn666 = 0 + r.EncodeMapStart(yynn678) + yynn678 = 0 } - if yyr666 || yy2arr666 { + if yyr678 || yy2arr678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetWWNs == nil { r.EncodeNil() } else { - yym668 := z.EncBinary() - _ = yym668 + yym680 := z.EncBinary() + _ = yym680 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) @@ -10310,25 +10574,25 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.TargetWWNs == nil { r.EncodeNil() } else { - yym669 := z.EncBinary() - _ = yym669 + yym681 := z.EncBinary() + _ = yym681 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) } } } - if yyr666 || yy2arr666 { + if yyr678 || yy2arr678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Lun == nil { r.EncodeNil() } else { - yy671 := *x.Lun - yym672 := z.EncBinary() - _ = yym672 + yy683 := *x.Lun + yym684 := z.EncBinary() + _ = yym684 if false { } else { - r.EncodeInt(int64(yy671)) + r.EncodeInt(int64(yy683)) } } } else { @@ -10338,20 +10602,20 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Lun == nil { r.EncodeNil() } else { - yy673 := *x.Lun - yym674 := z.EncBinary() - _ = yym674 + yy685 := *x.Lun + yym686 := z.EncBinary() + _ = yym686 if false { } else { - r.EncodeInt(int64(yy673)) + r.EncodeInt(int64(yy685)) } } } - if yyr666 || yy2arr666 { + if yyr678 || yy2arr678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq666[2] { - yym676 := z.EncBinary() - _ = yym676 + if yyq678[2] { + yym688 := z.EncBinary() + _ = yym688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10360,23 +10624,23 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq666[2] { + if yyq678[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym677 := z.EncBinary() - _ = yym677 + yym689 := z.EncBinary() + _ = yym689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr666 || yy2arr666 { + if yyr678 || yy2arr678 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq666[3] { - yym679 := z.EncBinary() - _ = yym679 + if yyq678[3] { + yym691 := z.EncBinary() + _ = yym691 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10385,19 +10649,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq666[3] { + if yyq678[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym680 := z.EncBinary() - _ = yym680 + yym692 := z.EncBinary() + _ = yym692 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr666 || yy2arr666 { + if yyr678 || yy2arr678 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10410,25 +10674,25 @@ func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym681 := z.DecBinary() - _ = yym681 + yym693 := z.DecBinary() + _ = yym693 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct682 := r.ContainerType() - if yyct682 == codecSelferValueTypeMap1234 { - yyl682 := r.ReadMapStart() - if yyl682 == 0 { + yyct694 := r.ContainerType() + if yyct694 == codecSelferValueTypeMap1234 { + yyl694 := r.ReadMapStart() + if yyl694 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl682, d) + x.codecDecodeSelfFromMap(yyl694, d) } - } else if yyct682 == codecSelferValueTypeArray1234 { - yyl682 := r.ReadArrayStart() - if yyl682 == 0 { + } else if yyct694 == codecSelferValueTypeArray1234 { + yyl694 := r.ReadArrayStart() + if yyl694 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl682, d) + x.codecDecodeSelfFromArray(yyl694, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10440,12 +10704,12 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys683Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys683Slc - var yyhl683 bool = l >= 0 - for yyj683 := 0; ; yyj683++ { - if yyhl683 { - if yyj683 >= l { + var yys695Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys695Slc + var yyhl695 bool = l >= 0 + for yyj695 := 0; ; yyj695++ { + if yyhl695 { + if yyj695 >= l { break } } else { @@ -10454,20 +10718,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys683Slc = r.DecodeBytes(yys683Slc, true, true) - yys683 := string(yys683Slc) + yys695Slc = r.DecodeBytes(yys695Slc, true, true) + yys695 := string(yys695Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys683 { + switch yys695 { case "targetWWNs": if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv684 := &x.TargetWWNs - yym685 := z.DecBinary() - _ = yym685 + yyv696 := &x.TargetWWNs + yym697 := z.DecBinary() + _ = yym697 if false { } else { - z.F.DecSliceStringX(yyv684, false, d) + z.F.DecSliceStringX(yyv696, false, d) } } case "lun": @@ -10479,8 +10743,8 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym687 := z.DecBinary() - _ = yym687 + yym699 := z.DecBinary() + _ = yym699 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) @@ -10499,9 +10763,9 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys683) - } // end switch yys683 - } // end for yyj683 + z.DecStructFieldNotFound(-1, yys695) + } // end switch yys695 + } // end for yyj695 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10509,16 +10773,16 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj690 int - var yyb690 bool - var yyhl690 bool = l >= 0 - yyj690++ - if yyhl690 { - yyb690 = yyj690 > l + var yyj702 int + var yyb702 bool + var yyhl702 bool = l >= 0 + yyj702++ + if yyhl702 { + yyb702 = yyj702 > l } else { - yyb690 = r.CheckBreak() + yyb702 = r.CheckBreak() } - if yyb690 { + if yyb702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10526,21 +10790,21 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv691 := &x.TargetWWNs - yym692 := z.DecBinary() - _ = yym692 + yyv703 := &x.TargetWWNs + yym704 := z.DecBinary() + _ = yym704 if false { } else { - z.F.DecSliceStringX(yyv691, false, d) + z.F.DecSliceStringX(yyv703, false, d) } } - yyj690++ - if yyhl690 { - yyb690 = yyj690 > l + yyj702++ + if yyhl702 { + yyb702 = yyj702 > l } else { - yyb690 = r.CheckBreak() + yyb702 = r.CheckBreak() } - if yyb690 { + if yyb702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10553,20 +10817,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym694 := z.DecBinary() - _ = yym694 + yym706 := z.DecBinary() + _ = yym706 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) } } - yyj690++ - if yyhl690 { - yyb690 = yyj690 > l + yyj702++ + if yyhl702 { + yyb702 = yyj702 > l } else { - yyb690 = r.CheckBreak() + yyb702 = r.CheckBreak() } - if yyb690 { + if yyb702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10576,13 +10840,13 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FSType = string(r.DecodeString()) } - yyj690++ - if yyhl690 { - yyb690 = yyj690 > l + yyj702++ + if yyhl702 { + yyb702 = yyj702 > l } else { - yyb690 = r.CheckBreak() + yyb702 = r.CheckBreak() } - if yyb690 { + if yyb702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10593,17 +10857,17 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } for { - yyj690++ - if yyhl690 { - yyb690 = yyj690 > l + yyj702++ + if yyhl702 { + yyb702 = yyj702 > l } else { - yyb690 = r.CheckBreak() + yyb702 = r.CheckBreak() } - if yyb690 { + if yyb702 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj690-1, "") + z.DecStructFieldNotFound(yyj702-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10615,37 +10879,37 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym697 := z.EncBinary() - _ = yym697 + yym709 := z.EncBinary() + _ = yym709 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep698 := !z.EncBinary() - yy2arr698 := z.EncBasicHandle().StructToArray - var yyq698 [5]bool - _, _, _ = yysep698, yyq698, yy2arr698 - const yyr698 bool = false - yyq698[1] = x.FSType != "" - yyq698[2] = x.SecretRef != nil - yyq698[3] = x.ReadOnly != false - yyq698[4] = len(x.Options) != 0 - var yynn698 int - if yyr698 || yy2arr698 { + yysep710 := !z.EncBinary() + yy2arr710 := z.EncBasicHandle().StructToArray + var yyq710 [5]bool + _, _, _ = yysep710, yyq710, yy2arr710 + const yyr710 bool = false + yyq710[1] = x.FSType != "" + yyq710[2] = x.SecretRef != nil + yyq710[3] = x.ReadOnly != false + yyq710[4] = len(x.Options) != 0 + var yynn710 int + if yyr710 || yy2arr710 { r.EncodeArrayStart(5) } else { - yynn698 = 1 - for _, b := range yyq698 { + yynn710 = 1 + for _, b := range yyq710 { if b { - yynn698++ + yynn710++ } } - r.EncodeMapStart(yynn698) - yynn698 = 0 + r.EncodeMapStart(yynn710) + yynn710 = 0 } - if yyr698 || yy2arr698 { + if yyr710 || yy2arr710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym700 := z.EncBinary() - _ = yym700 + yym712 := z.EncBinary() + _ = yym712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) @@ -10654,18 +10918,18 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("driver")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym701 := z.EncBinary() - _ = yym701 + yym713 := z.EncBinary() + _ = yym713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) } } - if yyr698 || yy2arr698 { + if yyr710 || yy2arr710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq698[1] { - yym703 := z.EncBinary() - _ = yym703 + if yyq710[1] { + yym715 := z.EncBinary() + _ = yym715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10674,21 +10938,21 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq698[1] { + if yyq710[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym704 := z.EncBinary() - _ = yym704 + yym716 := z.EncBinary() + _ = yym716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr698 || yy2arr698 { + if yyr710 || yy2arr710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq698[2] { + if yyq710[2] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -10698,7 +10962,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq698[2] { + if yyq710[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -10709,11 +10973,11 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr698 || yy2arr698 { + if yyr710 || yy2arr710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq698[3] { - yym707 := z.EncBinary() - _ = yym707 + if yyq710[3] { + yym719 := z.EncBinary() + _ = yym719 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10722,26 +10986,26 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq698[3] { + if yyq710[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym708 := z.EncBinary() - _ = yym708 + yym720 := z.EncBinary() + _ = yym720 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr698 || yy2arr698 { + if yyr710 || yy2arr710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq698[4] { + if yyq710[4] { if x.Options == nil { r.EncodeNil() } else { - yym710 := z.EncBinary() - _ = yym710 + yym722 := z.EncBinary() + _ = yym722 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -10751,15 +11015,15 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq698[4] { + if yyq710[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("options")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Options == nil { r.EncodeNil() } else { - yym711 := z.EncBinary() - _ = yym711 + yym723 := z.EncBinary() + _ = yym723 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -10767,7 +11031,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr698 || yy2arr698 { + if yyr710 || yy2arr710 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10780,25 +11044,25 @@ func (x *FlexVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym712 := z.DecBinary() - _ = yym712 + yym724 := z.DecBinary() + _ = yym724 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct713 := r.ContainerType() - if yyct713 == codecSelferValueTypeMap1234 { - yyl713 := r.ReadMapStart() - if yyl713 == 0 { + yyct725 := r.ContainerType() + if yyct725 == codecSelferValueTypeMap1234 { + yyl725 := r.ReadMapStart() + if yyl725 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl713, d) + x.codecDecodeSelfFromMap(yyl725, d) } - } else if yyct713 == codecSelferValueTypeArray1234 { - yyl713 := r.ReadArrayStart() - if yyl713 == 0 { + } else if yyct725 == codecSelferValueTypeArray1234 { + yyl725 := r.ReadArrayStart() + if yyl725 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl713, d) + x.codecDecodeSelfFromArray(yyl725, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10810,12 +11074,12 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys714Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys714Slc - var yyhl714 bool = l >= 0 - for yyj714 := 0; ; yyj714++ { - if yyhl714 { - if yyj714 >= l { + var yys726Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys726Slc + var yyhl726 bool = l >= 0 + for yyj726 := 0; ; yyj726++ { + if yyhl726 { + if yyj726 >= l { break } } else { @@ -10824,10 +11088,10 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys714Slc = r.DecodeBytes(yys714Slc, true, true) - yys714 := string(yys714Slc) + yys726Slc = r.DecodeBytes(yys726Slc, true, true) + yys726 := string(yys726Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys714 { + switch yys726 { case "driver": if r.TryDecodeAsNil() { x.Driver = "" @@ -10861,18 +11125,18 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Options = nil } else { - yyv719 := &x.Options - yym720 := z.DecBinary() - _ = yym720 + yyv731 := &x.Options + yym732 := z.DecBinary() + _ = yym732 if false { } else { - z.F.DecMapStringStringX(yyv719, false, d) + z.F.DecMapStringStringX(yyv731, false, d) } } default: - z.DecStructFieldNotFound(-1, yys714) - } // end switch yys714 - } // end for yyj714 + z.DecStructFieldNotFound(-1, yys726) + } // end switch yys726 + } // end for yyj726 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10880,16 +11144,16 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj721 int - var yyb721 bool - var yyhl721 bool = l >= 0 - yyj721++ - if yyhl721 { - yyb721 = yyj721 > l + var yyj733 int + var yyb733 bool + var yyhl733 bool = l >= 0 + yyj733++ + if yyhl733 { + yyb733 = yyj733 > l } else { - yyb721 = r.CheckBreak() + yyb733 = r.CheckBreak() } - if yyb721 { + if yyb733 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10899,13 +11163,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Driver = string(r.DecodeString()) } - yyj721++ - if yyhl721 { - yyb721 = yyj721 > l + yyj733++ + if yyhl733 { + yyb733 = yyj733 > l } else { - yyb721 = r.CheckBreak() + yyb733 = r.CheckBreak() } - if yyb721 { + if yyb733 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10915,13 +11179,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj721++ - if yyhl721 { - yyb721 = yyj721 > l + yyj733++ + if yyhl733 { + yyb733 = yyj733 > l } else { - yyb721 = r.CheckBreak() + yyb733 = r.CheckBreak() } - if yyb721 { + if yyb733 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10936,13 +11200,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj721++ - if yyhl721 { - yyb721 = yyj721 > l + yyj733++ + if yyhl733 { + yyb733 = yyj733 > l } else { - yyb721 = r.CheckBreak() + yyb733 = r.CheckBreak() } - if yyb721 { + if yyb733 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10952,13 +11216,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj721++ - if yyhl721 { - yyb721 = yyj721 > l + yyj733++ + if yyhl733 { + yyb733 = yyj733 > l } else { - yyb721 = r.CheckBreak() + yyb733 = r.CheckBreak() } - if yyb721 { + if yyb733 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10966,26 +11230,26 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Options = nil } else { - yyv726 := &x.Options - yym727 := z.DecBinary() - _ = yym727 + yyv738 := &x.Options + yym739 := z.DecBinary() + _ = yym739 if false { } else { - z.F.DecMapStringStringX(yyv726, false, d) + z.F.DecMapStringStringX(yyv738, false, d) } } for { - yyj721++ - if yyhl721 { - yyb721 = yyj721 > l + yyj733++ + if yyhl733 { + yyb733 = yyj733 > l } else { - yyb721 = r.CheckBreak() + yyb733 = r.CheckBreak() } - if yyb721 { + if yyb733 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj721-1, "") + z.DecStructFieldNotFound(yyj733-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10997,36 +11261,36 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) if x == nil { r.EncodeNil() } else { - yym728 := z.EncBinary() - _ = yym728 + yym740 := z.EncBinary() + _ = yym740 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep729 := !z.EncBinary() - yy2arr729 := z.EncBasicHandle().StructToArray - var yyq729 [4]bool - _, _, _ = yysep729, yyq729, yy2arr729 - const yyr729 bool = false - yyq729[1] = x.FSType != "" - yyq729[2] = x.Partition != 0 - yyq729[3] = x.ReadOnly != false - var yynn729 int - if yyr729 || yy2arr729 { + yysep741 := !z.EncBinary() + yy2arr741 := z.EncBasicHandle().StructToArray + var yyq741 [4]bool + _, _, _ = yysep741, yyq741, yy2arr741 + const yyr741 bool = false + yyq741[1] = x.FSType != "" + yyq741[2] = x.Partition != 0 + yyq741[3] = x.ReadOnly != false + var yynn741 int + if yyr741 || yy2arr741 { r.EncodeArrayStart(4) } else { - yynn729 = 1 - for _, b := range yyq729 { + yynn741 = 1 + for _, b := range yyq741 { if b { - yynn729++ + yynn741++ } } - r.EncodeMapStart(yynn729) - yynn729 = 0 + r.EncodeMapStart(yynn741) + yynn741 = 0 } - if yyr729 || yy2arr729 { + if yyr741 || yy2arr741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym731 := z.EncBinary() - _ = yym731 + yym743 := z.EncBinary() + _ = yym743 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -11035,18 +11299,18 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym732 := z.EncBinary() - _ = yym732 + yym744 := z.EncBinary() + _ = yym744 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr729 || yy2arr729 { + if yyr741 || yy2arr741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq729[1] { - yym734 := z.EncBinary() - _ = yym734 + if yyq741[1] { + yym746 := z.EncBinary() + _ = yym746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11055,23 +11319,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq729[1] { + if yyq741[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym735 := z.EncBinary() - _ = yym735 + yym747 := z.EncBinary() + _ = yym747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr729 || yy2arr729 { + if yyr741 || yy2arr741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq729[2] { - yym737 := z.EncBinary() - _ = yym737 + if yyq741[2] { + yym749 := z.EncBinary() + _ = yym749 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -11080,23 +11344,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeInt(0) } } else { - if yyq729[2] { + if yyq741[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym738 := z.EncBinary() - _ = yym738 + yym750 := z.EncBinary() + _ = yym750 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr729 || yy2arr729 { + if yyr741 || yy2arr741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq729[3] { - yym740 := z.EncBinary() - _ = yym740 + if yyq741[3] { + yym752 := z.EncBinary() + _ = yym752 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11105,19 +11369,19 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeBool(false) } } else { - if yyq729[3] { + if yyq741[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym741 := z.EncBinary() - _ = yym741 + yym753 := z.EncBinary() + _ = yym753 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr729 || yy2arr729 { + if yyr741 || yy2arr741 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11130,25 +11394,25 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym742 := z.DecBinary() - _ = yym742 + yym754 := z.DecBinary() + _ = yym754 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct743 := r.ContainerType() - if yyct743 == codecSelferValueTypeMap1234 { - yyl743 := r.ReadMapStart() - if yyl743 == 0 { + yyct755 := r.ContainerType() + if yyct755 == codecSelferValueTypeMap1234 { + yyl755 := r.ReadMapStart() + if yyl755 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl743, d) + x.codecDecodeSelfFromMap(yyl755, d) } - } else if yyct743 == codecSelferValueTypeArray1234 { - yyl743 := r.ReadArrayStart() - if yyl743 == 0 { + } else if yyct755 == codecSelferValueTypeArray1234 { + yyl755 := r.ReadArrayStart() + if yyl755 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl743, d) + x.codecDecodeSelfFromArray(yyl755, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11160,12 +11424,12 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys744Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys744Slc - var yyhl744 bool = l >= 0 - for yyj744 := 0; ; yyj744++ { - if yyhl744 { - if yyj744 >= l { + var yys756Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys756Slc + var yyhl756 bool = l >= 0 + for yyj756 := 0; ; yyj756++ { + if yyhl756 { + if yyj756 >= l { break } } else { @@ -11174,10 +11438,10 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys744Slc = r.DecodeBytes(yys744Slc, true, true) - yys744 := string(yys744Slc) + yys756Slc = r.DecodeBytes(yys756Slc, true, true) + yys756 := string(yys756Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys744 { + switch yys756 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -11203,9 +11467,9 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys744) - } // end switch yys744 - } // end for yyj744 + z.DecStructFieldNotFound(-1, yys756) + } // end switch yys756 + } // end for yyj756 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11213,16 +11477,16 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj749 int - var yyb749 bool - var yyhl749 bool = l >= 0 - yyj749++ - if yyhl749 { - yyb749 = yyj749 > l + var yyj761 int + var yyb761 bool + var yyhl761 bool = l >= 0 + yyj761++ + if yyhl761 { + yyb761 = yyj761 > l } else { - yyb749 = r.CheckBreak() + yyb761 = r.CheckBreak() } - if yyb749 { + if yyb761 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11232,13 +11496,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.VolumeID = string(r.DecodeString()) } - yyj749++ - if yyhl749 { - yyb749 = yyj749 > l + yyj761++ + if yyhl761 { + yyb761 = yyj761 > l } else { - yyb749 = r.CheckBreak() + yyb761 = r.CheckBreak() } - if yyb749 { + if yyb761 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11248,13 +11512,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.FSType = string(r.DecodeString()) } - yyj749++ - if yyhl749 { - yyb749 = yyj749 > l + yyj761++ + if yyhl761 { + yyb761 = yyj761 > l } else { - yyb749 = r.CheckBreak() + yyb761 = r.CheckBreak() } - if yyb749 { + if yyb761 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11264,13 +11528,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.Partition = int32(r.DecodeInt(32)) } - yyj749++ - if yyhl749 { - yyb749 = yyj749 > l + yyj761++ + if yyhl761 { + yyb761 = yyj761 > l } else { - yyb749 = r.CheckBreak() + yyb761 = r.CheckBreak() } - if yyb749 { + if yyb761 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11281,17 +11545,17 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co x.ReadOnly = bool(r.DecodeBool()) } for { - yyj749++ - if yyhl749 { - yyb749 = yyj749 > l + yyj761++ + if yyhl761 { + yyb761 = yyj761 > l } else { - yyb749 = r.CheckBreak() + yyb761 = r.CheckBreak() } - if yyb749 { + if yyb761 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj749-1, "") + z.DecStructFieldNotFound(yyj761-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11303,35 +11567,35 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym754 := z.EncBinary() - _ = yym754 + yym766 := z.EncBinary() + _ = yym766 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep755 := !z.EncBinary() - yy2arr755 := z.EncBasicHandle().StructToArray - var yyq755 [3]bool - _, _, _ = yysep755, yyq755, yy2arr755 - const yyr755 bool = false - yyq755[1] = x.Revision != "" - yyq755[2] = x.Directory != "" - var yynn755 int - if yyr755 || yy2arr755 { + yysep767 := !z.EncBinary() + yy2arr767 := z.EncBasicHandle().StructToArray + var yyq767 [3]bool + _, _, _ = yysep767, yyq767, yy2arr767 + const yyr767 bool = false + yyq767[1] = x.Revision != "" + yyq767[2] = x.Directory != "" + var yynn767 int + if yyr767 || yy2arr767 { r.EncodeArrayStart(3) } else { - yynn755 = 1 - for _, b := range yyq755 { + yynn767 = 1 + for _, b := range yyq767 { if b { - yynn755++ + yynn767++ } } - r.EncodeMapStart(yynn755) - yynn755 = 0 + r.EncodeMapStart(yynn767) + yynn767 = 0 } - if yyr755 || yy2arr755 { + if yyr767 || yy2arr767 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym757 := z.EncBinary() - _ = yym757 + yym769 := z.EncBinary() + _ = yym769 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) @@ -11340,18 +11604,18 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("repository")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym758 := z.EncBinary() - _ = yym758 + yym770 := z.EncBinary() + _ = yym770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) } } - if yyr755 || yy2arr755 { + if yyr767 || yy2arr767 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq755[1] { - yym760 := z.EncBinary() - _ = yym760 + if yyq767[1] { + yym772 := z.EncBinary() + _ = yym772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) @@ -11360,23 +11624,23 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq755[1] { + if yyq767[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("revision")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym761 := z.EncBinary() - _ = yym761 + yym773 := z.EncBinary() + _ = yym773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) } } } - if yyr755 || yy2arr755 { + if yyr767 || yy2arr767 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq755[2] { - yym763 := z.EncBinary() - _ = yym763 + if yyq767[2] { + yym775 := z.EncBinary() + _ = yym775 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) @@ -11385,19 +11649,19 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq755[2] { + if yyq767[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("directory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym764 := z.EncBinary() - _ = yym764 + yym776 := z.EncBinary() + _ = yym776 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) } } } - if yyr755 || yy2arr755 { + if yyr767 || yy2arr767 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11410,25 +11674,25 @@ func (x *GitRepoVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym765 := z.DecBinary() - _ = yym765 + yym777 := z.DecBinary() + _ = yym777 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct766 := r.ContainerType() - if yyct766 == codecSelferValueTypeMap1234 { - yyl766 := r.ReadMapStart() - if yyl766 == 0 { + yyct778 := r.ContainerType() + if yyct778 == codecSelferValueTypeMap1234 { + yyl778 := r.ReadMapStart() + if yyl778 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl766, d) + x.codecDecodeSelfFromMap(yyl778, d) } - } else if yyct766 == codecSelferValueTypeArray1234 { - yyl766 := r.ReadArrayStart() - if yyl766 == 0 { + } else if yyct778 == codecSelferValueTypeArray1234 { + yyl778 := r.ReadArrayStart() + if yyl778 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl766, d) + x.codecDecodeSelfFromArray(yyl778, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11440,12 +11704,12 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys767Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys767Slc - var yyhl767 bool = l >= 0 - for yyj767 := 0; ; yyj767++ { - if yyhl767 { - if yyj767 >= l { + var yys779Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys779Slc + var yyhl779 bool = l >= 0 + for yyj779 := 0; ; yyj779++ { + if yyhl779 { + if yyj779 >= l { break } } else { @@ -11454,10 +11718,10 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys767Slc = r.DecodeBytes(yys767Slc, true, true) - yys767 := string(yys767Slc) + yys779Slc = r.DecodeBytes(yys779Slc, true, true) + yys779 := string(yys779Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys767 { + switch yys779 { case "repository": if r.TryDecodeAsNil() { x.Repository = "" @@ -11477,9 +11741,9 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Directory = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys767) - } // end switch yys767 - } // end for yyj767 + z.DecStructFieldNotFound(-1, yys779) + } // end switch yys779 + } // end for yyj779 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11487,16 +11751,16 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 yyj783 int + var yyb783 bool + var yyhl783 bool = l >= 0 + yyj783++ + if yyhl783 { + yyb783 = yyj783 > l } else { - yyb771 = r.CheckBreak() + yyb783 = r.CheckBreak() } - if yyb771 { + if yyb783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11506,13 +11770,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Repository = string(r.DecodeString()) } - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj783++ + if yyhl783 { + yyb783 = yyj783 > l } else { - yyb771 = r.CheckBreak() + yyb783 = r.CheckBreak() } - if yyb771 { + if yyb783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11522,13 +11786,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Revision = string(r.DecodeString()) } - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj783++ + if yyhl783 { + yyb783 = yyj783 > l } else { - yyb771 = r.CheckBreak() + yyb783 = r.CheckBreak() } - if yyb771 { + if yyb783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11539,17 +11803,17 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Directory = string(r.DecodeString()) } for { - yyj771++ - if yyhl771 { - yyb771 = yyj771 > l + yyj783++ + if yyhl783 { + yyb783 = yyj783 > l } else { - yyb771 = r.CheckBreak() + yyb783 = r.CheckBreak() } - if yyb771 { + if yyb783 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj771-1, "") + z.DecStructFieldNotFound(yyj783-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11561,37 +11825,37 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym775 := z.EncBinary() - _ = yym775 + yym787 := z.EncBinary() + _ = yym787 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep776 := !z.EncBinary() - yy2arr776 := z.EncBasicHandle().StructToArray - var yyq776 [3]bool - _, _, _ = yysep776, yyq776, yy2arr776 - const yyr776 bool = false - yyq776[0] = x.SecretName != "" - yyq776[1] = len(x.Items) != 0 - yyq776[2] = x.DefaultMode != nil - var yynn776 int - if yyr776 || yy2arr776 { + yysep788 := !z.EncBinary() + yy2arr788 := z.EncBasicHandle().StructToArray + var yyq788 [3]bool + _, _, _ = yysep788, yyq788, yy2arr788 + const yyr788 bool = false + yyq788[0] = x.SecretName != "" + yyq788[1] = len(x.Items) != 0 + yyq788[2] = x.DefaultMode != nil + var yynn788 int + if yyr788 || yy2arr788 { r.EncodeArrayStart(3) } else { - yynn776 = 0 - for _, b := range yyq776 { + yynn788 = 0 + for _, b := range yyq788 { if b { - yynn776++ + yynn788++ } } - r.EncodeMapStart(yynn776) - yynn776 = 0 + r.EncodeMapStart(yynn788) + yynn788 = 0 } - if yyr776 || yy2arr776 { + if yyr788 || yy2arr788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq776[0] { - yym778 := z.EncBinary() - _ = yym778 + if yyq788[0] { + yym790 := z.EncBinary() + _ = yym790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -11600,26 +11864,26 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq776[0] { + if yyq788[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym779 := z.EncBinary() - _ = yym779 + yym791 := z.EncBinary() + _ = yym791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } } - if yyr776 || yy2arr776 { + if yyr788 || yy2arr788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq776[1] { + if yyq788[1] { if x.Items == nil { r.EncodeNil() } else { - yym781 := z.EncBinary() - _ = yym781 + yym793 := z.EncBinary() + _ = yym793 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -11629,15 +11893,15 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq776[1] { + if yyq788[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym782 := z.EncBinary() - _ = yym782 + yym794 := z.EncBinary() + _ = yym794 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -11645,42 +11909,42 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr776 || yy2arr776 { + if yyr788 || yy2arr788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq776[2] { + if yyq788[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy784 := *x.DefaultMode - yym785 := z.EncBinary() - _ = yym785 + yy796 := *x.DefaultMode + yym797 := z.EncBinary() + _ = yym797 if false { } else { - r.EncodeInt(int64(yy784)) + r.EncodeInt(int64(yy796)) } } } else { r.EncodeNil() } } else { - if yyq776[2] { + if yyq788[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy786 := *x.DefaultMode - yym787 := z.EncBinary() - _ = yym787 + yy798 := *x.DefaultMode + yym799 := z.EncBinary() + _ = yym799 if false { } else { - r.EncodeInt(int64(yy786)) + r.EncodeInt(int64(yy798)) } } } } - if yyr776 || yy2arr776 { + if yyr788 || yy2arr788 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11693,25 +11957,25 @@ func (x *SecretVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym788 := z.DecBinary() - _ = yym788 + yym800 := z.DecBinary() + _ = yym800 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct789 := r.ContainerType() - if yyct789 == codecSelferValueTypeMap1234 { - yyl789 := r.ReadMapStart() - if yyl789 == 0 { + yyct801 := r.ContainerType() + if yyct801 == codecSelferValueTypeMap1234 { + yyl801 := r.ReadMapStart() + if yyl801 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl789, d) + x.codecDecodeSelfFromMap(yyl801, d) } - } else if yyct789 == codecSelferValueTypeArray1234 { - yyl789 := r.ReadArrayStart() - if yyl789 == 0 { + } else if yyct801 == codecSelferValueTypeArray1234 { + yyl801 := r.ReadArrayStart() + if yyl801 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl789, d) + x.codecDecodeSelfFromArray(yyl801, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11723,12 +11987,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys790Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys790Slc - var yyhl790 bool = l >= 0 - for yyj790 := 0; ; yyj790++ { - if yyhl790 { - if yyj790 >= l { + var yys802Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys802Slc + var yyhl802 bool = l >= 0 + for yyj802 := 0; ; yyj802++ { + if yyhl802 { + if yyj802 >= l { break } } else { @@ -11737,10 +12001,10 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys790Slc = r.DecodeBytes(yys790Slc, true, true) - yys790 := string(yys790Slc) + yys802Slc = r.DecodeBytes(yys802Slc, true, true) + yys802 := string(yys802Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys790 { + switch yys802 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -11751,12 +12015,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv792 := &x.Items - yym793 := z.DecBinary() - _ = yym793 + yyv804 := &x.Items + yym805 := z.DecBinary() + _ = yym805 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv792), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv804), d) } } case "defaultMode": @@ -11768,17 +12032,17 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym795 := z.DecBinary() - _ = yym795 + yym807 := z.DecBinary() + _ = yym807 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys790) - } // end switch yys790 - } // end for yyj790 + z.DecStructFieldNotFound(-1, yys802) + } // end switch yys802 + } // end for yyj802 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11786,16 +12050,16 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj796 int - var yyb796 bool - var yyhl796 bool = l >= 0 - yyj796++ - if yyhl796 { - yyb796 = yyj796 > l + var yyj808 int + var yyb808 bool + var yyhl808 bool = l >= 0 + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb796 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb796 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11805,13 +12069,13 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretName = string(r.DecodeString()) } - yyj796++ - if yyhl796 { - yyb796 = yyj796 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb796 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb796 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11819,21 +12083,21 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv798 := &x.Items - yym799 := z.DecBinary() - _ = yym799 + yyv810 := &x.Items + yym811 := z.DecBinary() + _ = yym811 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv798), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv810), d) } } - yyj796++ - if yyhl796 { - yyb796 = yyj796 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb796 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb796 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11846,25 +12110,25 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym801 := z.DecBinary() - _ = yym801 + yym813 := z.DecBinary() + _ = yym813 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj796++ - if yyhl796 { - yyb796 = yyj796 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb796 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb796 { + if yyb808 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj796-1, "") + z.DecStructFieldNotFound(yyj808-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11876,34 +12140,34 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym802 := z.EncBinary() - _ = yym802 + yym814 := z.EncBinary() + _ = yym814 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep803 := !z.EncBinary() - yy2arr803 := z.EncBasicHandle().StructToArray - var yyq803 [3]bool - _, _, _ = yysep803, yyq803, yy2arr803 - const yyr803 bool = false - yyq803[2] = x.ReadOnly != false - var yynn803 int - if yyr803 || yy2arr803 { + yysep815 := !z.EncBinary() + yy2arr815 := z.EncBasicHandle().StructToArray + var yyq815 [3]bool + _, _, _ = yysep815, yyq815, yy2arr815 + const yyr815 bool = false + yyq815[2] = x.ReadOnly != false + var yynn815 int + if yyr815 || yy2arr815 { r.EncodeArrayStart(3) } else { - yynn803 = 2 - for _, b := range yyq803 { + yynn815 = 2 + for _, b := range yyq815 { if b { - yynn803++ + yynn815++ } } - r.EncodeMapStart(yynn803) - yynn803 = 0 + r.EncodeMapStart(yynn815) + yynn815 = 0 } - if yyr803 || yy2arr803 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym805 := z.EncBinary() - _ = yym805 + yym817 := z.EncBinary() + _ = yym817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) @@ -11912,17 +12176,17 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("server")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym806 := z.EncBinary() - _ = yym806 + yym818 := z.EncBinary() + _ = yym818 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) } } - if yyr803 || yy2arr803 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym808 := z.EncBinary() - _ = yym808 + yym820 := z.EncBinary() + _ = yym820 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -11931,18 +12195,18 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym809 := z.EncBinary() - _ = yym809 + yym821 := z.EncBinary() + _ = yym821 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr803 || yy2arr803 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq803[2] { - yym811 := z.EncBinary() - _ = yym811 + if yyq815[2] { + yym823 := z.EncBinary() + _ = yym823 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11951,19 +12215,19 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq803[2] { + if yyq815[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym812 := z.EncBinary() - _ = yym812 + yym824 := z.EncBinary() + _ = yym824 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr803 || yy2arr803 { + if yyr815 || yy2arr815 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11976,25 +12240,25 @@ func (x *NFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym813 := z.DecBinary() - _ = yym813 + yym825 := z.DecBinary() + _ = yym825 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct814 := r.ContainerType() - if yyct814 == codecSelferValueTypeMap1234 { - yyl814 := r.ReadMapStart() - if yyl814 == 0 { + yyct826 := r.ContainerType() + if yyct826 == codecSelferValueTypeMap1234 { + yyl826 := r.ReadMapStart() + if yyl826 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl814, d) + x.codecDecodeSelfFromMap(yyl826, d) } - } else if yyct814 == codecSelferValueTypeArray1234 { - yyl814 := r.ReadArrayStart() - if yyl814 == 0 { + } else if yyct826 == codecSelferValueTypeArray1234 { + yyl826 := r.ReadArrayStart() + if yyl826 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl814, d) + x.codecDecodeSelfFromArray(yyl826, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12006,12 +12270,12 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys815Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys815Slc - var yyhl815 bool = l >= 0 - for yyj815 := 0; ; yyj815++ { - if yyhl815 { - if yyj815 >= l { + var yys827Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys827Slc + var yyhl827 bool = l >= 0 + for yyj827 := 0; ; yyj827++ { + if yyhl827 { + if yyj827 >= l { break } } else { @@ -12020,10 +12284,10 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys815Slc = r.DecodeBytes(yys815Slc, true, true) - yys815 := string(yys815Slc) + yys827Slc = r.DecodeBytes(yys827Slc, true, true) + yys827 := string(yys827Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys815 { + switch yys827 { case "server": if r.TryDecodeAsNil() { x.Server = "" @@ -12043,9 +12307,9 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys815) - } // end switch yys815 - } // end for yyj815 + z.DecStructFieldNotFound(-1, yys827) + } // end switch yys827 + } // end for yyj827 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12053,16 +12317,16 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj819 int - var yyb819 bool - var yyhl819 bool = l >= 0 - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + var yyj831 int + var yyb831 bool + var yyhl831 bool = l >= 0 + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12072,13 +12336,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Server = string(r.DecodeString()) } - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12088,13 +12352,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Path = string(r.DecodeString()) } - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12105,17 +12369,17 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj819-1, "") + z.DecStructFieldNotFound(yyj831-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12127,36 +12391,36 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym823 := z.EncBinary() - _ = yym823 + yym835 := z.EncBinary() + _ = yym835 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep824 := !z.EncBinary() - yy2arr824 := z.EncBasicHandle().StructToArray - var yyq824 [5]bool - _, _, _ = yysep824, yyq824, yy2arr824 - const yyr824 bool = false - yyq824[2] = x.ReadOnly != false - yyq824[3] = x.User != "" - yyq824[4] = x.Group != "" - var yynn824 int - if yyr824 || yy2arr824 { + yysep836 := !z.EncBinary() + yy2arr836 := z.EncBasicHandle().StructToArray + var yyq836 [5]bool + _, _, _ = yysep836, yyq836, yy2arr836 + const yyr836 bool = false + yyq836[2] = x.ReadOnly != false + yyq836[3] = x.User != "" + yyq836[4] = x.Group != "" + var yynn836 int + if yyr836 || yy2arr836 { r.EncodeArrayStart(5) } else { - yynn824 = 2 - for _, b := range yyq824 { + yynn836 = 2 + for _, b := range yyq836 { if b { - yynn824++ + yynn836++ } } - r.EncodeMapStart(yynn824) - yynn824 = 0 + r.EncodeMapStart(yynn836) + yynn836 = 0 } - if yyr824 || yy2arr824 { + if yyr836 || yy2arr836 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym826 := z.EncBinary() - _ = yym826 + yym838 := z.EncBinary() + _ = yym838 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) @@ -12165,17 +12429,17 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registry")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym827 := z.EncBinary() - _ = yym827 + yym839 := z.EncBinary() + _ = yym839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) } } - if yyr824 || yy2arr824 { + if yyr836 || yy2arr836 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym829 := z.EncBinary() - _ = yym829 + yym841 := z.EncBinary() + _ = yym841 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) @@ -12184,18 +12448,18 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym830 := z.EncBinary() - _ = yym830 + yym842 := z.EncBinary() + _ = yym842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) } } - if yyr824 || yy2arr824 { + if yyr836 || yy2arr836 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq824[2] { - yym832 := z.EncBinary() - _ = yym832 + if yyq836[2] { + yym844 := z.EncBinary() + _ = yym844 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12204,23 +12468,23 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq824[2] { + if yyq836[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym833 := z.EncBinary() - _ = yym833 + yym845 := z.EncBinary() + _ = yym845 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr824 || yy2arr824 { + if yyr836 || yy2arr836 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq824[3] { - yym835 := z.EncBinary() - _ = yym835 + if yyq836[3] { + yym847 := z.EncBinary() + _ = yym847 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -12229,23 +12493,23 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq824[3] { + if yyq836[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym836 := z.EncBinary() - _ = yym836 + yym848 := z.EncBinary() + _ = yym848 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr824 || yy2arr824 { + if yyr836 || yy2arr836 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq824[4] { - yym838 := z.EncBinary() - _ = yym838 + if yyq836[4] { + yym850 := z.EncBinary() + _ = yym850 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Group)) @@ -12254,19 +12518,19 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq824[4] { + if yyq836[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("group")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym839 := z.EncBinary() - _ = yym839 + yym851 := z.EncBinary() + _ = yym851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Group)) } } } - if yyr824 || yy2arr824 { + if yyr836 || yy2arr836 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12279,25 +12543,25 @@ func (x *QuobyteVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym840 := z.DecBinary() - _ = yym840 + yym852 := z.DecBinary() + _ = yym852 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct841 := r.ContainerType() - if yyct841 == codecSelferValueTypeMap1234 { - yyl841 := r.ReadMapStart() - if yyl841 == 0 { + yyct853 := r.ContainerType() + if yyct853 == codecSelferValueTypeMap1234 { + yyl853 := r.ReadMapStart() + if yyl853 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl841, d) + x.codecDecodeSelfFromMap(yyl853, d) } - } else if yyct841 == codecSelferValueTypeArray1234 { - yyl841 := r.ReadArrayStart() - if yyl841 == 0 { + } else if yyct853 == codecSelferValueTypeArray1234 { + yyl853 := r.ReadArrayStart() + if yyl853 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl841, d) + x.codecDecodeSelfFromArray(yyl853, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12309,12 +12573,12 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys842Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys842Slc - var yyhl842 bool = l >= 0 - for yyj842 := 0; ; yyj842++ { - if yyhl842 { - if yyj842 >= l { + var yys854Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys854Slc + var yyhl854 bool = l >= 0 + for yyj854 := 0; ; yyj854++ { + if yyhl854 { + if yyj854 >= l { break } } else { @@ -12323,10 +12587,10 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys842Slc = r.DecodeBytes(yys842Slc, true, true) - yys842 := string(yys842Slc) + yys854Slc = r.DecodeBytes(yys854Slc, true, true) + yys854 := string(yys854Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys842 { + switch yys854 { case "registry": if r.TryDecodeAsNil() { x.Registry = "" @@ -12358,9 +12622,9 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Group = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys842) - } // end switch yys842 - } // end for yyj842 + z.DecStructFieldNotFound(-1, yys854) + } // end switch yys854 + } // end for yyj854 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12368,16 +12632,16 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj848 int - var yyb848 bool - var yyhl848 bool = l >= 0 - yyj848++ - if yyhl848 { - yyb848 = yyj848 > l + var yyj860 int + var yyb860 bool + var yyhl860 bool = l >= 0 + yyj860++ + if yyhl860 { + yyb860 = yyj860 > l } else { - yyb848 = r.CheckBreak() + yyb860 = r.CheckBreak() } - if yyb848 { + if yyb860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12387,13 +12651,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Registry = string(r.DecodeString()) } - yyj848++ - if yyhl848 { - yyb848 = yyj848 > l + yyj860++ + if yyhl860 { + yyb860 = yyj860 > l } else { - yyb848 = r.CheckBreak() + yyb860 = r.CheckBreak() } - if yyb848 { + if yyb860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12403,13 +12667,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Volume = string(r.DecodeString()) } - yyj848++ - if yyhl848 { - yyb848 = yyj848 > l + yyj860++ + if yyhl860 { + yyb860 = yyj860 > l } else { - yyb848 = r.CheckBreak() + yyb860 = r.CheckBreak() } - if yyb848 { + if yyb860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12419,13 +12683,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj848++ - if yyhl848 { - yyb848 = yyj848 > l + yyj860++ + if yyhl860 { + yyb860 = yyj860 > l } else { - yyb848 = r.CheckBreak() + yyb860 = r.CheckBreak() } - if yyb848 { + if yyb860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12435,13 +12699,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.User = string(r.DecodeString()) } - yyj848++ - if yyhl848 { - yyb848 = yyj848 > l + yyj860++ + if yyhl860 { + yyb860 = yyj860 > l } else { - yyb848 = r.CheckBreak() + yyb860 = r.CheckBreak() } - if yyb848 { + if yyb860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12452,17 +12716,17 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Group = string(r.DecodeString()) } for { - yyj848++ - if yyhl848 { - yyb848 = yyj848 > l + yyj860++ + if yyhl860 { + yyb860 = yyj860 > l } else { - yyb848 = r.CheckBreak() + yyb860 = r.CheckBreak() } - if yyb848 { + if yyb860 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj848-1, "") + z.DecStructFieldNotFound(yyj860-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12474,34 +12738,34 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym854 := z.EncBinary() - _ = yym854 + yym866 := z.EncBinary() + _ = yym866 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep855 := !z.EncBinary() - yy2arr855 := z.EncBasicHandle().StructToArray - var yyq855 [3]bool - _, _, _ = yysep855, yyq855, yy2arr855 - const yyr855 bool = false - yyq855[2] = x.ReadOnly != false - var yynn855 int - if yyr855 || yy2arr855 { + yysep867 := !z.EncBinary() + yy2arr867 := z.EncBasicHandle().StructToArray + var yyq867 [3]bool + _, _, _ = yysep867, yyq867, yy2arr867 + const yyr867 bool = false + yyq867[2] = x.ReadOnly != false + var yynn867 int + if yyr867 || yy2arr867 { r.EncodeArrayStart(3) } else { - yynn855 = 2 - for _, b := range yyq855 { + yynn867 = 2 + for _, b := range yyq867 { if b { - yynn855++ + yynn867++ } } - r.EncodeMapStart(yynn855) - yynn855 = 0 + r.EncodeMapStart(yynn867) + yynn867 = 0 } - if yyr855 || yy2arr855 { + if yyr867 || yy2arr867 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym857 := z.EncBinary() - _ = yym857 + yym869 := z.EncBinary() + _ = yym869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) @@ -12510,17 +12774,17 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("endpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym858 := z.EncBinary() - _ = yym858 + yym870 := z.EncBinary() + _ = yym870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) } } - if yyr855 || yy2arr855 { + if yyr867 || yy2arr867 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym860 := z.EncBinary() - _ = yym860 + yym872 := z.EncBinary() + _ = yym872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -12529,18 +12793,18 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym861 := z.EncBinary() - _ = yym861 + yym873 := z.EncBinary() + _ = yym873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr855 || yy2arr855 { + if yyr867 || yy2arr867 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq855[2] { - yym863 := z.EncBinary() - _ = yym863 + if yyq867[2] { + yym875 := z.EncBinary() + _ = yym875 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12549,19 +12813,19 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq855[2] { + if yyq867[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym864 := z.EncBinary() - _ = yym864 + yym876 := z.EncBinary() + _ = yym876 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr855 || yy2arr855 { + if yyr867 || yy2arr867 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12574,25 +12838,25 @@ func (x *GlusterfsVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym865 := z.DecBinary() - _ = yym865 + yym877 := z.DecBinary() + _ = yym877 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct866 := r.ContainerType() - if yyct866 == codecSelferValueTypeMap1234 { - yyl866 := r.ReadMapStart() - if yyl866 == 0 { + yyct878 := r.ContainerType() + if yyct878 == codecSelferValueTypeMap1234 { + yyl878 := r.ReadMapStart() + if yyl878 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl866, d) + x.codecDecodeSelfFromMap(yyl878, d) } - } else if yyct866 == codecSelferValueTypeArray1234 { - yyl866 := r.ReadArrayStart() - if yyl866 == 0 { + } else if yyct878 == codecSelferValueTypeArray1234 { + yyl878 := r.ReadArrayStart() + if yyl878 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl866, d) + x.codecDecodeSelfFromArray(yyl878, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12604,12 +12868,12 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys867Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys867Slc - var yyhl867 bool = l >= 0 - for yyj867 := 0; ; yyj867++ { - if yyhl867 { - if yyj867 >= l { + var yys879Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys879Slc + var yyhl879 bool = l >= 0 + for yyj879 := 0; ; yyj879++ { + if yyhl879 { + if yyj879 >= l { break } } else { @@ -12618,10 +12882,10 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys867Slc = r.DecodeBytes(yys867Slc, true, true) - yys867 := string(yys867Slc) + yys879Slc = r.DecodeBytes(yys879Slc, true, true) + yys879 := string(yys879Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys867 { + switch yys879 { case "endpoints": if r.TryDecodeAsNil() { x.EndpointsName = "" @@ -12641,9 +12905,9 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys867) - } // end switch yys867 - } // end for yyj867 + z.DecStructFieldNotFound(-1, yys879) + } // end switch yys879 + } // end for yyj879 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12651,16 +12915,16 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj871 int - var yyb871 bool - var yyhl871 bool = l >= 0 - yyj871++ - if yyhl871 { - yyb871 = yyj871 > l + var yyj883 int + var yyb883 bool + var yyhl883 bool = l >= 0 + yyj883++ + if yyhl883 { + yyb883 = yyj883 > l } else { - yyb871 = r.CheckBreak() + yyb883 = r.CheckBreak() } - if yyb871 { + if yyb883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12670,13 +12934,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.EndpointsName = string(r.DecodeString()) } - yyj871++ - if yyhl871 { - yyb871 = yyj871 > l + yyj883++ + if yyhl883 { + yyb883 = yyj883 > l } else { - yyb871 = r.CheckBreak() + yyb883 = r.CheckBreak() } - if yyb871 { + if yyb883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12686,13 +12950,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj871++ - if yyhl871 { - yyb871 = yyj871 > l + yyj883++ + if yyhl883 { + yyb883 = yyj883 > l } else { - yyb871 = r.CheckBreak() + yyb883 = r.CheckBreak() } - if yyb871 { + if yyb883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12703,17 +12967,17 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj871++ - if yyhl871 { - yyb871 = yyj871 > l + yyj883++ + if yyhl883 { + yyb883 = yyj883 > l } else { - yyb871 = r.CheckBreak() + yyb883 = r.CheckBreak() } - if yyb871 { + if yyb883 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj871-1, "") + z.DecStructFieldNotFound(yyj883-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12725,42 +12989,42 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym875 := z.EncBinary() - _ = yym875 + yym887 := z.EncBinary() + _ = yym887 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep876 := !z.EncBinary() - yy2arr876 := z.EncBasicHandle().StructToArray - var yyq876 [8]bool - _, _, _ = yysep876, yyq876, yy2arr876 - const yyr876 bool = false - yyq876[2] = x.FSType != "" - yyq876[3] = x.RBDPool != "" - yyq876[4] = x.RadosUser != "" - yyq876[5] = x.Keyring != "" - yyq876[6] = x.SecretRef != nil - yyq876[7] = x.ReadOnly != false - var yynn876 int - if yyr876 || yy2arr876 { + yysep888 := !z.EncBinary() + yy2arr888 := z.EncBasicHandle().StructToArray + var yyq888 [8]bool + _, _, _ = yysep888, yyq888, yy2arr888 + const yyr888 bool = false + yyq888[2] = x.FSType != "" + yyq888[3] = x.RBDPool != "" + yyq888[4] = x.RadosUser != "" + yyq888[5] = x.Keyring != "" + yyq888[6] = x.SecretRef != nil + yyq888[7] = x.ReadOnly != false + var yynn888 int + if yyr888 || yy2arr888 { r.EncodeArrayStart(8) } else { - yynn876 = 2 - for _, b := range yyq876 { + yynn888 = 2 + for _, b := range yyq888 { if b { - yynn876++ + yynn888++ } } - r.EncodeMapStart(yynn876) - yynn876 = 0 + r.EncodeMapStart(yynn888) + yynn888 = 0 } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.CephMonitors == nil { r.EncodeNil() } else { - yym878 := z.EncBinary() - _ = yym878 + yym890 := z.EncBinary() + _ = yym890 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) @@ -12773,18 +13037,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.CephMonitors == nil { r.EncodeNil() } else { - yym879 := z.EncBinary() - _ = yym879 + yym891 := z.EncBinary() + _ = yym891 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym881 := z.EncBinary() - _ = yym881 + yym893 := z.EncBinary() + _ = yym893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) @@ -12793,18 +13057,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym882 := z.EncBinary() - _ = yym882 + yym894 := z.EncBinary() + _ = yym894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq876[2] { - yym884 := z.EncBinary() - _ = yym884 + if yyq888[2] { + yym896 := z.EncBinary() + _ = yym896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -12813,23 +13077,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq876[2] { + if yyq888[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym885 := z.EncBinary() - _ = yym885 + yym897 := z.EncBinary() + _ = yym897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq876[3] { - yym887 := z.EncBinary() - _ = yym887 + if yyq888[3] { + yym899 := z.EncBinary() + _ = yym899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) @@ -12838,23 +13102,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq876[3] { + if yyq888[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pool")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym888 := z.EncBinary() - _ = yym888 + yym900 := z.EncBinary() + _ = yym900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq876[4] { - yym890 := z.EncBinary() - _ = yym890 + if yyq888[4] { + yym902 := z.EncBinary() + _ = yym902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) @@ -12863,23 +13127,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq876[4] { + if yyq888[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym891 := z.EncBinary() - _ = yym891 + yym903 := z.EncBinary() + _ = yym903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq876[5] { - yym893 := z.EncBinary() - _ = yym893 + if yyq888[5] { + yym905 := z.EncBinary() + _ = yym905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) @@ -12888,21 +13152,21 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq876[5] { + if yyq888[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("keyring")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym894 := z.EncBinary() - _ = yym894 + yym906 := z.EncBinary() + _ = yym906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq876[6] { + if yyq888[6] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -12912,7 +13176,7 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq876[6] { + if yyq888[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -12923,11 +13187,11 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq876[7] { - yym897 := z.EncBinary() - _ = yym897 + if yyq888[7] { + yym909 := z.EncBinary() + _ = yym909 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12936,19 +13200,19 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq876[7] { + if yyq888[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym898 := z.EncBinary() - _ = yym898 + yym910 := z.EncBinary() + _ = yym910 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr876 || yy2arr876 { + if yyr888 || yy2arr888 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12961,25 +13225,25 @@ func (x *RBDVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym899 := z.DecBinary() - _ = yym899 + yym911 := z.DecBinary() + _ = yym911 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct900 := r.ContainerType() - if yyct900 == codecSelferValueTypeMap1234 { - yyl900 := r.ReadMapStart() - if yyl900 == 0 { + yyct912 := r.ContainerType() + if yyct912 == codecSelferValueTypeMap1234 { + yyl912 := r.ReadMapStart() + if yyl912 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl900, d) + x.codecDecodeSelfFromMap(yyl912, d) } - } else if yyct900 == codecSelferValueTypeArray1234 { - yyl900 := r.ReadArrayStart() - if yyl900 == 0 { + } else if yyct912 == codecSelferValueTypeArray1234 { + yyl912 := r.ReadArrayStart() + if yyl912 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl900, d) + x.codecDecodeSelfFromArray(yyl912, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12991,12 +13255,12 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys901Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys901Slc - var yyhl901 bool = l >= 0 - for yyj901 := 0; ; yyj901++ { - if yyhl901 { - if yyj901 >= l { + var yys913Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys913Slc + var yyhl913 bool = l >= 0 + for yyj913 := 0; ; yyj913++ { + if yyhl913 { + if yyj913 >= l { break } } else { @@ -13005,20 +13269,20 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys901Slc = r.DecodeBytes(yys901Slc, true, true) - yys901 := string(yys901Slc) + yys913Slc = r.DecodeBytes(yys913Slc, true, true) + yys913 := string(yys913Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys901 { + switch yys913 { case "monitors": if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv902 := &x.CephMonitors - yym903 := z.DecBinary() - _ = yym903 + yyv914 := &x.CephMonitors + yym915 := z.DecBinary() + _ = yym915 if false { } else { - z.F.DecSliceStringX(yyv902, false, d) + z.F.DecSliceStringX(yyv914, false, d) } } case "image": @@ -13069,9 +13333,9 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys901) - } // end switch yys901 - } // end for yyj901 + z.DecStructFieldNotFound(-1, yys913) + } // end switch yys913 + } // end for yyj913 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13079,16 +13343,16 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj911 int - var yyb911 bool - var yyhl911 bool = l >= 0 - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + var yyj923 int + var yyb923 bool + var yyhl923 bool = l >= 0 + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13096,21 +13360,21 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv912 := &x.CephMonitors - yym913 := z.DecBinary() - _ = yym913 + yyv924 := &x.CephMonitors + yym925 := z.DecBinary() + _ = yym925 if false { } else { - z.F.DecSliceStringX(yyv912, false, d) + z.F.DecSliceStringX(yyv924, false, d) } } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13120,13 +13384,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDImage = string(r.DecodeString()) } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13136,13 +13400,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13152,13 +13416,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDPool = string(r.DecodeString()) } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13168,13 +13432,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RadosUser = string(r.DecodeString()) } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13184,13 +13448,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Keyring = string(r.DecodeString()) } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13205,13 +13469,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13222,17 +13486,17 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj911++ - if yyhl911 { - yyb911 = yyj911 > l + yyj923++ + if yyhl923 { + yyb923 = yyj923 > l } else { - yyb911 = r.CheckBreak() + yyb923 = r.CheckBreak() } - if yyb911 { + if yyb923 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj911-1, "") + z.DecStructFieldNotFound(yyj923-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13244,35 +13508,35 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym921 := z.EncBinary() - _ = yym921 + yym933 := z.EncBinary() + _ = yym933 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep922 := !z.EncBinary() - yy2arr922 := z.EncBasicHandle().StructToArray - var yyq922 [3]bool - _, _, _ = yysep922, yyq922, yy2arr922 - const yyr922 bool = false - yyq922[1] = x.FSType != "" - yyq922[2] = x.ReadOnly != false - var yynn922 int - if yyr922 || yy2arr922 { + yysep934 := !z.EncBinary() + yy2arr934 := z.EncBasicHandle().StructToArray + var yyq934 [3]bool + _, _, _ = yysep934, yyq934, yy2arr934 + const yyr934 bool = false + yyq934[1] = x.FSType != "" + yyq934[2] = x.ReadOnly != false + var yynn934 int + if yyr934 || yy2arr934 { r.EncodeArrayStart(3) } else { - yynn922 = 1 - for _, b := range yyq922 { + yynn934 = 1 + for _, b := range yyq934 { if b { - yynn922++ + yynn934++ } } - r.EncodeMapStart(yynn922) - yynn922 = 0 + r.EncodeMapStart(yynn934) + yynn934 = 0 } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym924 := z.EncBinary() - _ = yym924 + yym936 := z.EncBinary() + _ = yym936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -13281,18 +13545,18 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym925 := z.EncBinary() - _ = yym925 + yym937 := z.EncBinary() + _ = yym937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq922[1] { - yym927 := z.EncBinary() - _ = yym927 + if yyq934[1] { + yym939 := z.EncBinary() + _ = yym939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -13301,23 +13565,23 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq922[1] { + if yyq934[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym928 := z.EncBinary() - _ = yym928 + yym940 := z.EncBinary() + _ = yym940 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq922[2] { - yym930 := z.EncBinary() - _ = yym930 + if yyq934[2] { + yym942 := z.EncBinary() + _ = yym942 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13326,19 +13590,19 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq922[2] { + if yyq934[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym931 := z.EncBinary() - _ = yym931 + yym943 := z.EncBinary() + _ = yym943 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13351,25 +13615,25 @@ func (x *CinderVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym932 := z.DecBinary() - _ = yym932 + yym944 := z.DecBinary() + _ = yym944 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct933 := r.ContainerType() - if yyct933 == codecSelferValueTypeMap1234 { - yyl933 := r.ReadMapStart() - if yyl933 == 0 { + yyct945 := r.ContainerType() + if yyct945 == codecSelferValueTypeMap1234 { + yyl945 := r.ReadMapStart() + if yyl945 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl933, d) + x.codecDecodeSelfFromMap(yyl945, d) } - } else if yyct933 == codecSelferValueTypeArray1234 { - yyl933 := r.ReadArrayStart() - if yyl933 == 0 { + } else if yyct945 == codecSelferValueTypeArray1234 { + yyl945 := r.ReadArrayStart() + if yyl945 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl933, d) + x.codecDecodeSelfFromArray(yyl945, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13381,12 +13645,12 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys934Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys934Slc - var yyhl934 bool = l >= 0 - for yyj934 := 0; ; yyj934++ { - if yyhl934 { - if yyj934 >= l { + var yys946Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys946Slc + var yyhl946 bool = l >= 0 + for yyj946 := 0; ; yyj946++ { + if yyhl946 { + if yyj946 >= l { break } } else { @@ -13395,10 +13659,10 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys934Slc = r.DecodeBytes(yys934Slc, true, true) - yys934 := string(yys934Slc) + yys946Slc = r.DecodeBytes(yys946Slc, true, true) + yys946 := string(yys946Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys934 { + switch yys946 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -13418,9 +13682,9 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys934) - } // end switch yys934 - } // end for yyj934 + z.DecStructFieldNotFound(-1, yys946) + } // end switch yys946 + } // end for yyj946 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13428,16 +13692,16 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj938 int - var yyb938 bool - var yyhl938 bool = l >= 0 - yyj938++ - if yyhl938 { - yyb938 = yyj938 > l + var yyj950 int + var yyb950 bool + var yyhl950 bool = l >= 0 + yyj950++ + if yyhl950 { + yyb950 = yyj950 > l } else { - yyb938 = r.CheckBreak() + yyb950 = r.CheckBreak() } - if yyb938 { + if yyb950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13447,13 +13711,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.VolumeID = string(r.DecodeString()) } - yyj938++ - if yyhl938 { - yyb938 = yyj938 > l + yyj950++ + if yyhl950 { + yyb950 = yyj950 > l } else { - yyb938 = r.CheckBreak() + yyb950 = r.CheckBreak() } - if yyb938 { + if yyb950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13463,13 +13727,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.FSType = string(r.DecodeString()) } - yyj938++ - if yyhl938 { - yyb938 = yyj938 > l + yyj950++ + if yyhl950 { + yyb950 = yyj950 > l } else { - yyb938 = r.CheckBreak() + yyb950 = r.CheckBreak() } - if yyb938 { + if yyb950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13480,17 +13744,17 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj938++ - if yyhl938 { - yyb938 = yyj938 > l + yyj950++ + if yyhl950 { + yyb950 = yyj950 > l } else { - yyb938 = r.CheckBreak() + yyb950 = r.CheckBreak() } - if yyb938 { + if yyb950 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj938-1, "") + z.DecStructFieldNotFound(yyj950-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13502,41 +13766,41 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym942 := z.EncBinary() - _ = yym942 + yym954 := z.EncBinary() + _ = yym954 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep943 := !z.EncBinary() - yy2arr943 := z.EncBasicHandle().StructToArray - var yyq943 [6]bool - _, _, _ = yysep943, yyq943, yy2arr943 - const yyr943 bool = false - yyq943[1] = x.Path != "" - yyq943[2] = x.User != "" - yyq943[3] = x.SecretFile != "" - yyq943[4] = x.SecretRef != nil - yyq943[5] = x.ReadOnly != false - var yynn943 int - if yyr943 || yy2arr943 { + yysep955 := !z.EncBinary() + yy2arr955 := z.EncBasicHandle().StructToArray + var yyq955 [6]bool + _, _, _ = yysep955, yyq955, yy2arr955 + const yyr955 bool = false + yyq955[1] = x.Path != "" + yyq955[2] = x.User != "" + yyq955[3] = x.SecretFile != "" + yyq955[4] = x.SecretRef != nil + yyq955[5] = x.ReadOnly != false + var yynn955 int + if yyr955 || yy2arr955 { r.EncodeArrayStart(6) } else { - yynn943 = 1 - for _, b := range yyq943 { + yynn955 = 1 + for _, b := range yyq955 { if b { - yynn943++ + yynn955++ } } - r.EncodeMapStart(yynn943) - yynn943 = 0 + r.EncodeMapStart(yynn955) + yynn955 = 0 } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Monitors == nil { r.EncodeNil() } else { - yym945 := z.EncBinary() - _ = yym945 + yym957 := z.EncBinary() + _ = yym957 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) @@ -13549,19 +13813,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Monitors == nil { r.EncodeNil() } else { - yym946 := z.EncBinary() - _ = yym946 + yym958 := z.EncBinary() + _ = yym958 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) } } } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[1] { - yym948 := z.EncBinary() - _ = yym948 + if yyq955[1] { + yym960 := z.EncBinary() + _ = yym960 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -13570,23 +13834,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq943[1] { + if yyq955[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym949 := z.EncBinary() - _ = yym949 + yym961 := z.EncBinary() + _ = yym961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[2] { - yym951 := z.EncBinary() - _ = yym951 + if yyq955[2] { + yym963 := z.EncBinary() + _ = yym963 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -13595,23 +13859,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq943[2] { + if yyq955[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym952 := z.EncBinary() - _ = yym952 + yym964 := z.EncBinary() + _ = yym964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[3] { - yym954 := z.EncBinary() - _ = yym954 + if yyq955[3] { + yym966 := z.EncBinary() + _ = yym966 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) @@ -13620,21 +13884,21 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq943[3] { + if yyq955[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym955 := z.EncBinary() - _ = yym955 + yym967 := z.EncBinary() + _ = yym967 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) } } } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[4] { + if yyq955[4] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -13644,7 +13908,7 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq943[4] { + if yyq955[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -13655,11 +13919,11 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[5] { - yym958 := z.EncBinary() - _ = yym958 + if yyq955[5] { + yym970 := z.EncBinary() + _ = yym970 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13668,19 +13932,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq943[5] { + if yyq955[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym959 := z.EncBinary() - _ = yym959 + yym971 := z.EncBinary() + _ = yym971 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr943 || yy2arr943 { + if yyr955 || yy2arr955 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13693,25 +13957,25 @@ func (x *CephFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym960 := z.DecBinary() - _ = yym960 + yym972 := z.DecBinary() + _ = yym972 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct961 := r.ContainerType() - if yyct961 == codecSelferValueTypeMap1234 { - yyl961 := r.ReadMapStart() - if yyl961 == 0 { + yyct973 := r.ContainerType() + if yyct973 == codecSelferValueTypeMap1234 { + yyl973 := r.ReadMapStart() + if yyl973 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl961, d) + x.codecDecodeSelfFromMap(yyl973, d) } - } else if yyct961 == codecSelferValueTypeArray1234 { - yyl961 := r.ReadArrayStart() - if yyl961 == 0 { + } else if yyct973 == codecSelferValueTypeArray1234 { + yyl973 := r.ReadArrayStart() + if yyl973 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl961, d) + x.codecDecodeSelfFromArray(yyl973, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13723,12 +13987,12 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys962Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys962Slc - var yyhl962 bool = l >= 0 - for yyj962 := 0; ; yyj962++ { - if yyhl962 { - if yyj962 >= l { + var yys974Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys974Slc + var yyhl974 bool = l >= 0 + for yyj974 := 0; ; yyj974++ { + if yyhl974 { + if yyj974 >= l { break } } else { @@ -13737,20 +14001,20 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys962Slc = r.DecodeBytes(yys962Slc, true, true) - yys962 := string(yys962Slc) + yys974Slc = r.DecodeBytes(yys974Slc, true, true) + yys974 := string(yys974Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys962 { + switch yys974 { case "monitors": if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv963 := &x.Monitors - yym964 := z.DecBinary() - _ = yym964 + yyv975 := &x.Monitors + yym976 := z.DecBinary() + _ = yym976 if false { } else { - z.F.DecSliceStringX(yyv963, false, d) + z.F.DecSliceStringX(yyv975, false, d) } } case "path": @@ -13789,9 +14053,9 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys962) - } // end switch yys962 - } // end for yyj962 + z.DecStructFieldNotFound(-1, yys974) + } // end switch yys974 + } // end for yyj974 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13799,16 +14063,16 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj970 int - var yyb970 bool - var yyhl970 bool = l >= 0 - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + var yyj982 int + var yyb982 bool + var yyhl982 bool = l >= 0 + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13816,21 +14080,21 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv971 := &x.Monitors - yym972 := z.DecBinary() - _ = yym972 + yyv983 := &x.Monitors + yym984 := z.DecBinary() + _ = yym984 if false { } else { - z.F.DecSliceStringX(yyv971, false, d) + z.F.DecSliceStringX(yyv983, false, d) } } - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13840,13 +14104,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Path = string(r.DecodeString()) } - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13856,13 +14120,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.User = string(r.DecodeString()) } - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13872,13 +14136,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretFile = string(r.DecodeString()) } - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13893,13 +14157,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SecretRef.CodecDecodeSelf(d) } - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13910,17 +14174,17 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj982++ + if yyhl982 { + yyb982 = yyj982 > l } else { - yyb970 = r.CheckBreak() + yyb982 = r.CheckBreak() } - if yyb970 { + if yyb982 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj970-1, "") + z.DecStructFieldNotFound(yyj982-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13932,33 +14196,33 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym978 := z.EncBinary() - _ = yym978 + yym990 := z.EncBinary() + _ = yym990 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep979 := !z.EncBinary() - yy2arr979 := z.EncBasicHandle().StructToArray - var yyq979 [1]bool - _, _, _ = yysep979, yyq979, yy2arr979 - const yyr979 bool = false - var yynn979 int - if yyr979 || yy2arr979 { + yysep991 := !z.EncBinary() + yy2arr991 := z.EncBasicHandle().StructToArray + var yyq991 [1]bool + _, _, _ = yysep991, yyq991, yy2arr991 + const yyr991 bool = false + var yynn991 int + if yyr991 || yy2arr991 { r.EncodeArrayStart(1) } else { - yynn979 = 1 - for _, b := range yyq979 { + yynn991 = 1 + for _, b := range yyq991 { if b { - yynn979++ + yynn991++ } } - r.EncodeMapStart(yynn979) - yynn979 = 0 + r.EncodeMapStart(yynn991) + yynn991 = 0 } - if yyr979 || yy2arr979 { + if yyr991 || yy2arr991 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym981 := z.EncBinary() - _ = yym981 + yym993 := z.EncBinary() + _ = yym993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) @@ -13967,14 +14231,14 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("datasetName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym982 := z.EncBinary() - _ = yym982 + yym994 := z.EncBinary() + _ = yym994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) } } - if yyr979 || yy2arr979 { + if yyr991 || yy2arr991 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13987,25 +14251,25 @@ func (x *FlockerVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym983 := z.DecBinary() - _ = yym983 + yym995 := z.DecBinary() + _ = yym995 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct984 := r.ContainerType() - if yyct984 == codecSelferValueTypeMap1234 { - yyl984 := r.ReadMapStart() - if yyl984 == 0 { + yyct996 := r.ContainerType() + if yyct996 == codecSelferValueTypeMap1234 { + yyl996 := r.ReadMapStart() + if yyl996 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl984, d) + x.codecDecodeSelfFromMap(yyl996, d) } - } else if yyct984 == codecSelferValueTypeArray1234 { - yyl984 := r.ReadArrayStart() - if yyl984 == 0 { + } else if yyct996 == codecSelferValueTypeArray1234 { + yyl996 := r.ReadArrayStart() + if yyl996 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl984, d) + x.codecDecodeSelfFromArray(yyl996, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14017,12 +14281,12 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys985Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys985Slc - var yyhl985 bool = l >= 0 - for yyj985 := 0; ; yyj985++ { - if yyhl985 { - if yyj985 >= 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 { @@ -14031,10 +14295,10 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys985Slc = r.DecodeBytes(yys985Slc, true, true) - yys985 := string(yys985Slc) + yys997Slc = r.DecodeBytes(yys997Slc, true, true) + yys997 := string(yys997Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys985 { + switch yys997 { case "datasetName": if r.TryDecodeAsNil() { x.DatasetName = "" @@ -14042,9 +14306,9 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.DatasetName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys985) - } // end switch yys985 - } // end for yyj985 + z.DecStructFieldNotFound(-1, yys997) + } // end switch yys997 + } // end for yyj997 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14052,16 +14316,16 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj987 int - var yyb987 bool - var yyhl987 bool = l >= 0 - yyj987++ - if yyhl987 { - yyb987 = yyj987 > l + var yyj999 int + var yyb999 bool + var yyhl999 bool = l >= 0 + yyj999++ + if yyhl999 { + yyb999 = yyj999 > l } else { - yyb987 = r.CheckBreak() + yyb999 = r.CheckBreak() } - if yyb987 { + if yyb999 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14072,17 +14336,17 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.DatasetName = string(r.DecodeString()) } for { - yyj987++ - if yyhl987 { - yyb987 = yyj987 > l + yyj999++ + if yyhl999 { + yyb999 = yyj999 > l } else { - yyb987 = r.CheckBreak() + yyb999 = r.CheckBreak() } - if yyb987 { + if yyb999 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj987-1, "") + z.DecStructFieldNotFound(yyj999-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14094,39 +14358,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym989 := z.EncBinary() - _ = yym989 + yym1001 := z.EncBinary() + _ = yym1001 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep990 := !z.EncBinary() - yy2arr990 := z.EncBasicHandle().StructToArray - var yyq990 [2]bool - _, _, _ = yysep990, yyq990, yy2arr990 - const yyr990 bool = false - yyq990[0] = len(x.Items) != 0 - yyq990[1] = x.DefaultMode != nil - var yynn990 int - if yyr990 || yy2arr990 { + yysep1002 := !z.EncBinary() + yy2arr1002 := z.EncBasicHandle().StructToArray + var yyq1002 [2]bool + _, _, _ = yysep1002, yyq1002, yy2arr1002 + const yyr1002 bool = false + yyq1002[0] = len(x.Items) != 0 + yyq1002[1] = x.DefaultMode != nil + var yynn1002 int + if yyr1002 || yy2arr1002 { r.EncodeArrayStart(2) } else { - yynn990 = 0 - for _, b := range yyq990 { + yynn1002 = 0 + for _, b := range yyq1002 { if b { - yynn990++ + yynn1002++ } } - r.EncodeMapStart(yynn990) - yynn990 = 0 + r.EncodeMapStart(yynn1002) + yynn1002 = 0 } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq990[0] { + if yyq1002[0] { if x.Items == nil { r.EncodeNil() } else { - yym992 := z.EncBinary() - _ = yym992 + yym1004 := z.EncBinary() + _ = yym1004 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -14136,15 +14400,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq990[0] { + if yyq1002[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym993 := z.EncBinary() - _ = yym993 + yym1005 := z.EncBinary() + _ = yym1005 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -14152,42 +14416,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq990[1] { + if yyq1002[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy995 := *x.DefaultMode - yym996 := z.EncBinary() - _ = yym996 + yy1007 := *x.DefaultMode + yym1008 := z.EncBinary() + _ = yym1008 if false { } else { - r.EncodeInt(int64(yy995)) + r.EncodeInt(int64(yy1007)) } } } else { r.EncodeNil() } } else { - if yyq990[1] { + if yyq1002[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy997 := *x.DefaultMode - yym998 := z.EncBinary() - _ = yym998 + yy1009 := *x.DefaultMode + yym1010 := z.EncBinary() + _ = yym1010 if false { } else { - r.EncodeInt(int64(yy997)) + r.EncodeInt(int64(yy1009)) } } } } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14200,25 +14464,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym999 := z.DecBinary() - _ = yym999 + yym1011 := z.DecBinary() + _ = yym1011 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1000 := r.ContainerType() - if yyct1000 == codecSelferValueTypeMap1234 { - yyl1000 := r.ReadMapStart() - if yyl1000 == 0 { + yyct1012 := r.ContainerType() + if yyct1012 == codecSelferValueTypeMap1234 { + yyl1012 := r.ReadMapStart() + if yyl1012 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1000, d) + x.codecDecodeSelfFromMap(yyl1012, d) } - } else if yyct1000 == codecSelferValueTypeArray1234 { - yyl1000 := r.ReadArrayStart() - if yyl1000 == 0 { + } else if yyct1012 == codecSelferValueTypeArray1234 { + yyl1012 := r.ReadArrayStart() + if yyl1012 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1000, d) + x.codecDecodeSelfFromArray(yyl1012, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14230,12 +14494,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1001Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1001Slc - var yyhl1001 bool = l >= 0 - for yyj1001 := 0; ; yyj1001++ { - if yyhl1001 { - if yyj1001 >= l { + var yys1013Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1013Slc + var yyhl1013 bool = l >= 0 + for yyj1013 := 0; ; yyj1013++ { + if yyhl1013 { + if yyj1013 >= l { break } } else { @@ -14244,20 +14508,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1001Slc = r.DecodeBytes(yys1001Slc, true, true) - yys1001 := string(yys1001Slc) + yys1013Slc = r.DecodeBytes(yys1013Slc, true, true) + yys1013 := string(yys1013Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1001 { + switch yys1013 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1002 := &x.Items - yym1003 := z.DecBinary() - _ = yym1003 + yyv1014 := &x.Items + yym1015 := z.DecBinary() + _ = yym1015 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv1002), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv1014), d) } } case "defaultMode": @@ -14269,17 +14533,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1005 := z.DecBinary() - _ = yym1005 + yym1017 := z.DecBinary() + _ = yym1017 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1001) - } // end switch yys1001 - } // end for yyj1001 + z.DecStructFieldNotFound(-1, yys1013) + } // end switch yys1013 + } // end for yyj1013 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14287,16 +14551,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D 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 yyj1018 int + var yyb1018 bool + var yyhl1018 bool = l >= 0 + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14304,21 +14568,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1007 := &x.Items - yym1008 := z.DecBinary() - _ = yym1008 + yyv1019 := &x.Items + yym1020 := z.DecBinary() + _ = yym1020 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv1007), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv1019), d) } } - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14331,25 +14595,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1010 := z.DecBinary() - _ = yym1010 + yym1022 := z.DecBinary() + _ = yym1022 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1006-1, "") + z.DecStructFieldNotFound(yyj1018-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14361,36 +14625,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1011 := z.EncBinary() - _ = yym1011 + yym1023 := z.EncBinary() + _ = yym1023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1012 := !z.EncBinary() - yy2arr1012 := z.EncBasicHandle().StructToArray - var yyq1012 [4]bool - _, _, _ = yysep1012, yyq1012, yy2arr1012 - const yyr1012 bool = false - yyq1012[1] = x.FieldRef != nil - yyq1012[2] = x.ResourceFieldRef != nil - yyq1012[3] = x.Mode != nil - var yynn1012 int - if yyr1012 || yy2arr1012 { + yysep1024 := !z.EncBinary() + yy2arr1024 := z.EncBasicHandle().StructToArray + var yyq1024 [4]bool + _, _, _ = yysep1024, yyq1024, yy2arr1024 + const yyr1024 bool = false + yyq1024[1] = x.FieldRef != nil + yyq1024[2] = x.ResourceFieldRef != nil + yyq1024[3] = x.Mode != nil + var yynn1024 int + if yyr1024 || yy2arr1024 { r.EncodeArrayStart(4) } else { - yynn1012 = 1 - for _, b := range yyq1012 { + yynn1024 = 1 + for _, b := range yyq1024 { if b { - yynn1012++ + yynn1024++ } } - r.EncodeMapStart(yynn1012) - yynn1012 = 0 + r.EncodeMapStart(yynn1024) + yynn1024 = 0 } - if yyr1012 || yy2arr1012 { + if yyr1024 || yy2arr1024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1014 := z.EncBinary() - _ = yym1014 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -14399,16 +14663,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1015 := z.EncBinary() - _ = yym1015 + yym1027 := z.EncBinary() + _ = yym1027 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr1012 || yy2arr1012 { + if yyr1024 || yy2arr1024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1012[1] { + if yyq1024[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -14418,7 +14682,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1012[1] { + if yyq1024[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14429,9 +14693,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1012 || yy2arr1012 { + if yyr1024 || yy2arr1024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1012[2] { + if yyq1024[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -14441,7 +14705,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1012[2] { + if yyq1024[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14452,42 +14716,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1012 || yy2arr1012 { + if yyr1024 || yy2arr1024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1012[3] { + if yyq1024[3] { if x.Mode == nil { r.EncodeNil() } else { - yy1019 := *x.Mode - yym1020 := z.EncBinary() - _ = yym1020 + yy1031 := *x.Mode + yym1032 := z.EncBinary() + _ = yym1032 if false { } else { - r.EncodeInt(int64(yy1019)) + r.EncodeInt(int64(yy1031)) } } } else { r.EncodeNil() } } else { - if yyq1012[3] { + if yyq1024[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy1021 := *x.Mode - yym1022 := z.EncBinary() - _ = yym1022 + yy1033 := *x.Mode + yym1034 := z.EncBinary() + _ = yym1034 if false { } else { - r.EncodeInt(int64(yy1021)) + r.EncodeInt(int64(yy1033)) } } } } - if yyr1012 || yy2arr1012 { + if yyr1024 || yy2arr1024 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14500,25 +14764,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1023 := z.DecBinary() - _ = yym1023 + yym1035 := z.DecBinary() + _ = yym1035 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1024 := r.ContainerType() - if yyct1024 == codecSelferValueTypeMap1234 { - yyl1024 := r.ReadMapStart() - if yyl1024 == 0 { + yyct1036 := r.ContainerType() + if yyct1036 == codecSelferValueTypeMap1234 { + yyl1036 := r.ReadMapStart() + if yyl1036 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1024, d) + x.codecDecodeSelfFromMap(yyl1036, d) } - } else if yyct1024 == codecSelferValueTypeArray1234 { - yyl1024 := r.ReadArrayStart() - if yyl1024 == 0 { + } else if yyct1036 == codecSelferValueTypeArray1234 { + yyl1036 := r.ReadArrayStart() + if yyl1036 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1024, d) + x.codecDecodeSelfFromArray(yyl1036, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14530,12 +14794,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1025Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1025Slc - var yyhl1025 bool = l >= 0 - for yyj1025 := 0; ; yyj1025++ { - if yyhl1025 { - if yyj1025 >= l { + var yys1037Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1037Slc + var yyhl1037 bool = l >= 0 + for yyj1037 := 0; ; yyj1037++ { + if yyhl1037 { + if yyj1037 >= l { break } } else { @@ -14544,10 +14808,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1025Slc = r.DecodeBytes(yys1025Slc, true, true) - yys1025 := string(yys1025Slc) + yys1037Slc = r.DecodeBytes(yys1037Slc, true, true) + yys1037 := string(yys1037Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1025 { + switch yys1037 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -14585,17 +14849,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym1030 := z.DecBinary() - _ = yym1030 + yym1042 := z.DecBinary() + _ = yym1042 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1025) - } // end switch yys1025 - } // end for yyj1025 + z.DecStructFieldNotFound(-1, yys1037) + } // end switch yys1037 + } // end for yyj1037 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14603,16 +14867,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1031 int - var yyb1031 bool - var yyhl1031 bool = l >= 0 - yyj1031++ - if yyhl1031 { - yyb1031 = yyj1031 > l + var yyj1043 int + var yyb1043 bool + var yyhl1043 bool = l >= 0 + yyj1043++ + if yyhl1043 { + yyb1043 = yyj1043 > l } else { - yyb1031 = r.CheckBreak() + yyb1043 = r.CheckBreak() } - if yyb1031 { + if yyb1043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14622,13 +14886,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj1031++ - if yyhl1031 { - yyb1031 = yyj1031 > l + yyj1043++ + if yyhl1043 { + yyb1043 = yyj1043 > l } else { - yyb1031 = r.CheckBreak() + yyb1043 = r.CheckBreak() } - if yyb1031 { + if yyb1043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14643,13 +14907,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj1031++ - if yyhl1031 { - yyb1031 = yyj1031 > l + yyj1043++ + if yyhl1043 { + yyb1043 = yyj1043 > l } else { - yyb1031 = r.CheckBreak() + yyb1043 = r.CheckBreak() } - if yyb1031 { + if yyb1043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14664,13 +14928,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj1031++ - if yyhl1031 { - yyb1031 = yyj1031 > l + yyj1043++ + if yyhl1043 { + yyb1043 = yyj1043 > l } else { - yyb1031 = r.CheckBreak() + yyb1043 = r.CheckBreak() } - if yyb1031 { + if yyb1043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14683,25 +14947,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym1036 := z.DecBinary() - _ = yym1036 + yym1048 := z.DecBinary() + _ = yym1048 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj1031++ - if yyhl1031 { - yyb1031 = yyj1031 > l + yyj1043++ + if yyhl1043 { + yyb1043 = yyj1043 > l } else { - yyb1031 = r.CheckBreak() + yyb1043 = r.CheckBreak() } - if yyb1031 { + if yyb1043 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1031-1, "") + z.DecStructFieldNotFound(yyj1043-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14713,34 +14977,34 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1037 := z.EncBinary() - _ = yym1037 + yym1049 := z.EncBinary() + _ = yym1049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1038 := !z.EncBinary() - yy2arr1038 := z.EncBasicHandle().StructToArray - var yyq1038 [3]bool - _, _, _ = yysep1038, yyq1038, yy2arr1038 - const yyr1038 bool = false - yyq1038[2] = x.ReadOnly != false - var yynn1038 int - if yyr1038 || yy2arr1038 { + yysep1050 := !z.EncBinary() + yy2arr1050 := z.EncBasicHandle().StructToArray + var yyq1050 [3]bool + _, _, _ = yysep1050, yyq1050, yy2arr1050 + const yyr1050 bool = false + yyq1050[2] = x.ReadOnly != false + var yynn1050 int + if yyr1050 || yy2arr1050 { r.EncodeArrayStart(3) } else { - yynn1038 = 2 - for _, b := range yyq1038 { + yynn1050 = 2 + for _, b := range yyq1050 { if b { - yynn1038++ + yynn1050++ } } - r.EncodeMapStart(yynn1038) - yynn1038 = 0 + r.EncodeMapStart(yynn1050) + yynn1050 = 0 } - if yyr1038 || yy2arr1038 { + if yyr1050 || yy2arr1050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1040 := z.EncBinary() - _ = yym1040 + yym1052 := z.EncBinary() + _ = yym1052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -14749,17 +15013,17 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1041 := z.EncBinary() - _ = yym1041 + yym1053 := z.EncBinary() + _ = yym1053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } - if yyr1038 || yy2arr1038 { + if yyr1050 || yy2arr1050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1043 := z.EncBinary() - _ = yym1043 + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) @@ -14768,18 +15032,18 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("shareName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1044 := z.EncBinary() - _ = yym1044 + yym1056 := z.EncBinary() + _ = yym1056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) } } - if yyr1038 || yy2arr1038 { + if yyr1050 || yy2arr1050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1038[2] { - yym1046 := z.EncBinary() - _ = yym1046 + if yyq1050[2] { + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -14788,19 +15052,19 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1038[2] { + if yyq1050[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1047 := z.EncBinary() - _ = yym1047 + yym1059 := z.EncBinary() + _ = yym1059 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr1038 || yy2arr1038 { + if yyr1050 || yy2arr1050 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14813,25 +15077,25 @@ func (x *AzureFileVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1048 := z.DecBinary() - _ = yym1048 + yym1060 := z.DecBinary() + _ = yym1060 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1049 := r.ContainerType() - if yyct1049 == codecSelferValueTypeMap1234 { - yyl1049 := r.ReadMapStart() - if yyl1049 == 0 { + yyct1061 := r.ContainerType() + if yyct1061 == codecSelferValueTypeMap1234 { + yyl1061 := r.ReadMapStart() + if yyl1061 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1049, d) + x.codecDecodeSelfFromMap(yyl1061, d) } - } else if yyct1049 == codecSelferValueTypeArray1234 { - yyl1049 := r.ReadArrayStart() - if yyl1049 == 0 { + } else if yyct1061 == codecSelferValueTypeArray1234 { + yyl1061 := r.ReadArrayStart() + if yyl1061 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1049, d) + x.codecDecodeSelfFromArray(yyl1061, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14843,12 +15107,12 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1050Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1050Slc - var yyhl1050 bool = l >= 0 - for yyj1050 := 0; ; yyj1050++ { - if yyhl1050 { - if yyj1050 >= l { + var yys1062Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1062Slc + var yyhl1062 bool = l >= 0 + for yyj1062 := 0; ; yyj1062++ { + if yyhl1062 { + if yyj1062 >= l { break } } else { @@ -14857,10 +15121,10 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1050Slc = r.DecodeBytes(yys1050Slc, true, true) - yys1050 := string(yys1050Slc) + yys1062Slc = r.DecodeBytes(yys1062Slc, true, true) + yys1062 := string(yys1062Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1050 { + switch yys1062 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -14880,9 +15144,9 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1050) - } // end switch yys1050 - } // end for yyj1050 + z.DecStructFieldNotFound(-1, yys1062) + } // end switch yys1062 + } // end for yyj1062 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14890,16 +15154,16 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1054 int - var yyb1054 bool - var yyhl1054 bool = l >= 0 - yyj1054++ - if yyhl1054 { - yyb1054 = yyj1054 > l + var yyj1066 int + var yyb1066 bool + var yyhl1066 bool = l >= 0 + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1054 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1054 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14909,13 +15173,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.SecretName = string(r.DecodeString()) } - yyj1054++ - if yyhl1054 { - yyb1054 = yyj1054 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1054 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1054 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14925,13 +15189,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ShareName = string(r.DecodeString()) } - yyj1054++ - if yyhl1054 { - yyb1054 = yyj1054 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1054 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1054 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14942,17 +15206,17 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj1054++ - if yyhl1054 { - yyb1054 = yyj1054 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1054 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1054 { + if yyb1066 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1054-1, "") + z.DecStructFieldNotFound(yyj1066-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14964,34 +15228,34 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1058 := z.EncBinary() - _ = yym1058 + yym1070 := z.EncBinary() + _ = yym1070 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1059 := !z.EncBinary() - yy2arr1059 := z.EncBasicHandle().StructToArray - var yyq1059 [2]bool - _, _, _ = yysep1059, yyq1059, yy2arr1059 - const yyr1059 bool = false - yyq1059[1] = x.FSType != "" - var yynn1059 int - if yyr1059 || yy2arr1059 { + yysep1071 := !z.EncBinary() + yy2arr1071 := z.EncBasicHandle().StructToArray + var yyq1071 [2]bool + _, _, _ = yysep1071, yyq1071, yy2arr1071 + const yyr1071 bool = false + yyq1071[1] = x.FSType != "" + var yynn1071 int + if yyr1071 || yy2arr1071 { r.EncodeArrayStart(2) } else { - yynn1059 = 1 - for _, b := range yyq1059 { + yynn1071 = 1 + for _, b := range yyq1071 { if b { - yynn1059++ + yynn1071++ } } - r.EncodeMapStart(yynn1059) - yynn1059 = 0 + r.EncodeMapStart(yynn1071) + yynn1071 = 0 } - if yyr1059 || yy2arr1059 { + if yyr1071 || yy2arr1071 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1061 := z.EncBinary() - _ = yym1061 + yym1073 := z.EncBinary() + _ = yym1073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) @@ -15000,18 +15264,18 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1062 := z.EncBinary() - _ = yym1062 + yym1074 := z.EncBinary() + _ = yym1074 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) } } - if yyr1059 || yy2arr1059 { + if yyr1071 || yy2arr1071 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1059[1] { - yym1064 := z.EncBinary() - _ = yym1064 + if yyq1071[1] { + yym1076 := z.EncBinary() + _ = yym1076 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -15020,19 +15284,19 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1059[1] { + if yyq1071[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1065 := z.EncBinary() - _ = yym1065 + yym1077 := z.EncBinary() + _ = yym1077 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr1059 || yy2arr1059 { + if yyr1071 || yy2arr1071 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15045,25 +15309,25 @@ func (x *VsphereVirtualDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1066 := z.DecBinary() - _ = yym1066 + yym1078 := z.DecBinary() + _ = yym1078 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1067 := r.ContainerType() - if yyct1067 == codecSelferValueTypeMap1234 { - yyl1067 := r.ReadMapStart() - if yyl1067 == 0 { + yyct1079 := r.ContainerType() + if yyct1079 == codecSelferValueTypeMap1234 { + yyl1079 := r.ReadMapStart() + if yyl1079 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1067, d) + x.codecDecodeSelfFromMap(yyl1079, d) } - } else if yyct1067 == codecSelferValueTypeArray1234 { - yyl1067 := r.ReadArrayStart() - if yyl1067 == 0 { + } else if yyct1079 == codecSelferValueTypeArray1234 { + yyl1079 := r.ReadArrayStart() + if yyl1079 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1067, d) + x.codecDecodeSelfFromArray(yyl1079, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15075,12 +15339,12 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 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 yys1080Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1080Slc + var yyhl1080 bool = l >= 0 + for yyj1080 := 0; ; yyj1080++ { + if yyhl1080 { + if yyj1080 >= l { break } } else { @@ -15089,10 +15353,10 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1068Slc = r.DecodeBytes(yys1068Slc, true, true) - yys1068 := string(yys1068Slc) + yys1080Slc = r.DecodeBytes(yys1080Slc, true, true) + yys1080 := string(yys1080Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1068 { + switch yys1080 { case "volumePath": if r.TryDecodeAsNil() { x.VolumePath = "" @@ -15106,9 +15370,9 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 x.FSType = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1068) - } // end switch yys1068 - } // end for yyj1068 + z.DecStructFieldNotFound(-1, yys1080) + } // end switch yys1080 + } // end for yyj1080 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15116,16 +15380,16 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1071 int - var yyb1071 bool - var yyhl1071 bool = l >= 0 - yyj1071++ - if yyhl1071 { - yyb1071 = yyj1071 > l + var yyj1083 int + var yyb1083 bool + var yyhl1083 bool = l >= 0 + yyj1083++ + if yyhl1083 { + yyb1083 = yyj1083 > l } else { - yyb1071 = r.CheckBreak() + yyb1083 = r.CheckBreak() } - if yyb1071 { + if yyb1083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15135,13 +15399,13 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code } else { x.VolumePath = string(r.DecodeString()) } - yyj1071++ - if yyhl1071 { - yyb1071 = yyj1071 > l + yyj1083++ + if yyhl1083 { + yyb1083 = yyj1083 > l } else { - yyb1071 = r.CheckBreak() + yyb1083 = r.CheckBreak() } - if yyb1071 { + if yyb1083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15152,17 +15416,460 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code x.FSType = string(r.DecodeString()) } for { - yyj1071++ - if yyhl1071 { - yyb1071 = yyj1071 > l + yyj1083++ + if yyhl1083 { + yyb1083 = yyj1083 > l } else { - yyb1071 = r.CheckBreak() + yyb1083 = r.CheckBreak() } - if yyb1071 { + if yyb1083 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1071-1, "") + z.DecStructFieldNotFound(yyj1083-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x AzureDataDiskCachingMode) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1086 := z.EncBinary() + _ = yym1086 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *AzureDataDiskCachingMode) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1087 := z.DecBinary() + _ = yym1087 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *AzureDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1088 := z.EncBinary() + _ = yym1088 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1089 := !z.EncBinary() + yy2arr1089 := z.EncBasicHandle().StructToArray + var yyq1089 [5]bool + _, _, _ = yysep1089, yyq1089, yy2arr1089 + const yyr1089 bool = false + yyq1089[2] = x.CachingMode != nil + yyq1089[3] = x.FSType != nil + yyq1089[4] = x.ReadOnly != nil + var yynn1089 int + if yyr1089 || yy2arr1089 { + r.EncodeArrayStart(5) + } else { + yynn1089 = 2 + for _, b := range yyq1089 { + if b { + yynn1089++ + } + } + r.EncodeMapStart(yynn1089) + yynn1089 = 0 + } + if yyr1089 || yy2arr1089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1091 := z.EncBinary() + _ = yym1091 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DiskName)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("diskName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1092 := z.EncBinary() + _ = yym1092 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DiskName)) + } + } + if yyr1089 || yy2arr1089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1094 := z.EncBinary() + _ = yym1094 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DataDiskURI)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("diskURI")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1095 := z.EncBinary() + _ = yym1095 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DataDiskURI)) + } + } + if yyr1089 || yy2arr1089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1089[2] { + if x.CachingMode == nil { + r.EncodeNil() + } else { + yy1097 := *x.CachingMode + yy1097.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq1089[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cachingMode")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.CachingMode == nil { + r.EncodeNil() + } else { + yy1098 := *x.CachingMode + yy1098.CodecEncodeSelf(e) + } + } + } + if yyr1089 || yy2arr1089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1089[3] { + if x.FSType == nil { + r.EncodeNil() + } else { + yy1100 := *x.FSType + yym1101 := z.EncBinary() + _ = yym1101 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy1100)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1089[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fsType")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.FSType == nil { + r.EncodeNil() + } else { + yy1102 := *x.FSType + yym1103 := z.EncBinary() + _ = yym1103 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy1102)) + } + } + } + } + if yyr1089 || yy2arr1089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1089[4] { + if x.ReadOnly == nil { + r.EncodeNil() + } else { + yy1105 := *x.ReadOnly + yym1106 := z.EncBinary() + _ = yym1106 + if false { + } else { + r.EncodeBool(bool(yy1105)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1089[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("readOnly")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ReadOnly == nil { + r.EncodeNil() + } else { + yy1107 := *x.ReadOnly + yym1108 := z.EncBinary() + _ = yym1108 + if false { + } else { + r.EncodeBool(bool(yy1107)) + } + } + } + } + if yyr1089 || yy2arr1089 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *AzureDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1109 := z.DecBinary() + _ = yym1109 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1110 := r.ContainerType() + if yyct1110 == codecSelferValueTypeMap1234 { + yyl1110 := r.ReadMapStart() + if yyl1110 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1110, d) + } + } else if yyct1110 == codecSelferValueTypeArray1234 { + yyl1110 := r.ReadArrayStart() + if yyl1110 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1110, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *AzureDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + 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 { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1111Slc = r.DecodeBytes(yys1111Slc, true, true) + yys1111 := string(yys1111Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1111 { + case "diskName": + if r.TryDecodeAsNil() { + x.DiskName = "" + } else { + x.DiskName = string(r.DecodeString()) + } + case "diskURI": + if r.TryDecodeAsNil() { + x.DataDiskURI = "" + } else { + x.DataDiskURI = string(r.DecodeString()) + } + case "cachingMode": + if r.TryDecodeAsNil() { + if x.CachingMode != nil { + x.CachingMode = nil + } + } else { + if x.CachingMode == nil { + x.CachingMode = new(AzureDataDiskCachingMode) + } + x.CachingMode.CodecDecodeSelf(d) + } + case "fsType": + if r.TryDecodeAsNil() { + if x.FSType != nil { + x.FSType = nil + } + } else { + if x.FSType == nil { + x.FSType = new(string) + } + yym1116 := z.DecBinary() + _ = yym1116 + if false { + } else { + *((*string)(x.FSType)) = r.DecodeString() + } + } + case "readOnly": + if r.TryDecodeAsNil() { + if x.ReadOnly != nil { + x.ReadOnly = nil + } + } else { + if x.ReadOnly == nil { + x.ReadOnly = new(bool) + } + yym1118 := z.DecBinary() + _ = yym1118 + if false { + } else { + *((*bool)(x.ReadOnly)) = r.DecodeBool() + } + } + default: + z.DecStructFieldNotFound(-1, yys1111) + } // end switch yys1111 + } // end for yyj1111 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *AzureDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1119 int + var yyb1119 bool + var yyhl1119 bool = l >= 0 + yyj1119++ + if yyhl1119 { + yyb1119 = yyj1119 > l + } else { + yyb1119 = r.CheckBreak() + } + if yyb1119 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DiskName = "" + } else { + x.DiskName = string(r.DecodeString()) + } + yyj1119++ + if yyhl1119 { + yyb1119 = yyj1119 > l + } else { + yyb1119 = r.CheckBreak() + } + if yyb1119 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DataDiskURI = "" + } else { + x.DataDiskURI = string(r.DecodeString()) + } + yyj1119++ + if yyhl1119 { + yyb1119 = yyj1119 > l + } else { + yyb1119 = r.CheckBreak() + } + if yyb1119 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.CachingMode != nil { + x.CachingMode = nil + } + } else { + if x.CachingMode == nil { + x.CachingMode = new(AzureDataDiskCachingMode) + } + x.CachingMode.CodecDecodeSelf(d) + } + yyj1119++ + if yyhl1119 { + yyb1119 = yyj1119 > l + } else { + yyb1119 = r.CheckBreak() + } + if yyb1119 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.FSType != nil { + x.FSType = nil + } + } else { + if x.FSType == nil { + x.FSType = new(string) + } + yym1124 := z.DecBinary() + _ = yym1124 + if false { + } else { + *((*string)(x.FSType)) = r.DecodeString() + } + } + yyj1119++ + if yyhl1119 { + yyb1119 = yyj1119 > l + } else { + yyb1119 = r.CheckBreak() + } + if yyb1119 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.ReadOnly != nil { + x.ReadOnly = nil + } + } else { + if x.ReadOnly == nil { + x.ReadOnly = new(bool) + } + yym1126 := z.DecBinary() + _ = yym1126 + if false { + } else { + *((*bool)(x.ReadOnly)) = r.DecodeBool() + } + } + for { + yyj1119++ + if yyhl1119 { + yyb1119 = yyj1119 > l + } else { + yyb1119 = r.CheckBreak() + } + if yyb1119 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1119-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15174,35 +15881,35 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1074 := z.EncBinary() - _ = yym1074 + yym1127 := z.EncBinary() + _ = yym1127 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1075 := !z.EncBinary() - yy2arr1075 := z.EncBasicHandle().StructToArray - var yyq1075 [3]bool - _, _, _ = yysep1075, yyq1075, yy2arr1075 - const yyr1075 bool = false - yyq1075[1] = len(x.Items) != 0 - yyq1075[2] = x.DefaultMode != nil - var yynn1075 int - if yyr1075 || yy2arr1075 { + yysep1128 := !z.EncBinary() + yy2arr1128 := z.EncBasicHandle().StructToArray + var yyq1128 [3]bool + _, _, _ = yysep1128, yyq1128, yy2arr1128 + const yyr1128 bool = false + yyq1128[1] = len(x.Items) != 0 + yyq1128[2] = x.DefaultMode != nil + var yynn1128 int + if yyr1128 || yy2arr1128 { r.EncodeArrayStart(3) } else { - yynn1075 = 1 - for _, b := range yyq1075 { + yynn1128 = 1 + for _, b := range yyq1128 { if b { - yynn1075++ + yynn1128++ } } - r.EncodeMapStart(yynn1075) - yynn1075 = 0 + r.EncodeMapStart(yynn1128) + yynn1128 = 0 } - if yyr1075 || yy2arr1075 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1077 := z.EncBinary() - _ = yym1077 + yym1130 := z.EncBinary() + _ = yym1130 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15211,21 +15918,21 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1078 := z.EncBinary() - _ = yym1078 + yym1131 := z.EncBinary() + _ = yym1131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1075 || yy2arr1075 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1075[1] { + if yyq1128[1] { if x.Items == nil { r.EncodeNil() } else { - yym1080 := z.EncBinary() - _ = yym1080 + yym1133 := z.EncBinary() + _ = yym1133 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -15235,15 +15942,15 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1075[1] { + if yyq1128[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym1081 := z.EncBinary() - _ = yym1081 + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -15251,42 +15958,42 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1075 || yy2arr1075 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1075[2] { + if yyq1128[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy1083 := *x.DefaultMode - yym1084 := z.EncBinary() - _ = yym1084 + yy1136 := *x.DefaultMode + yym1137 := z.EncBinary() + _ = yym1137 if false { } else { - r.EncodeInt(int64(yy1083)) + r.EncodeInt(int64(yy1136)) } } } else { r.EncodeNil() } } else { - if yyq1075[2] { + if yyq1128[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy1085 := *x.DefaultMode - yym1086 := z.EncBinary() - _ = yym1086 + yy1138 := *x.DefaultMode + yym1139 := z.EncBinary() + _ = yym1139 if false { } else { - r.EncodeInt(int64(yy1085)) + r.EncodeInt(int64(yy1138)) } } } } - if yyr1075 || yy2arr1075 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15299,25 +16006,25 @@ func (x *ConfigMapVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1087 := z.DecBinary() - _ = yym1087 + yym1140 := z.DecBinary() + _ = yym1140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1088 := r.ContainerType() - if yyct1088 == codecSelferValueTypeMap1234 { - yyl1088 := r.ReadMapStart() - if yyl1088 == 0 { + yyct1141 := r.ContainerType() + if yyct1141 == codecSelferValueTypeMap1234 { + yyl1141 := r.ReadMapStart() + if yyl1141 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1088, d) + x.codecDecodeSelfFromMap(yyl1141, d) } - } else if yyct1088 == codecSelferValueTypeArray1234 { - yyl1088 := r.ReadArrayStart() - if yyl1088 == 0 { + } else if yyct1141 == codecSelferValueTypeArray1234 { + yyl1141 := r.ReadArrayStart() + if yyl1141 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1088, d) + x.codecDecodeSelfFromArray(yyl1141, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15329,12 +16036,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1089Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1089Slc - var yyhl1089 bool = l >= 0 - for yyj1089 := 0; ; yyj1089++ { - if yyhl1089 { - if yyj1089 >= l { + var yys1142Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1142Slc + var yyhl1142 bool = l >= 0 + for yyj1142 := 0; ; yyj1142++ { + if yyhl1142 { + if yyj1142 >= l { break } } else { @@ -15343,10 +16050,10 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1089Slc = r.DecodeBytes(yys1089Slc, true, true) - yys1089 := string(yys1089Slc) + yys1142Slc = r.DecodeBytes(yys1142Slc, true, true) + yys1142 := string(yys1142Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1089 { + switch yys1142 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -15357,12 +16064,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1091 := &x.Items - yym1092 := z.DecBinary() - _ = yym1092 + yyv1144 := &x.Items + yym1145 := z.DecBinary() + _ = yym1145 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1091), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1144), d) } } case "defaultMode": @@ -15374,17 +16081,17 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1094 := z.DecBinary() - _ = yym1094 + yym1147 := z.DecBinary() + _ = yym1147 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1089) - } // end switch yys1089 - } // end for yyj1089 + z.DecStructFieldNotFound(-1, yys1142) + } // end switch yys1142 + } // end for yyj1142 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15392,16 +16099,16 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1095 int - var yyb1095 bool - var yyhl1095 bool = l >= 0 - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + var yyj1148 int + var yyb1148 bool + var yyhl1148 bool = l >= 0 + yyj1148++ + if yyhl1148 { + yyb1148 = yyj1148 > l } else { - yyb1095 = r.CheckBreak() + yyb1148 = r.CheckBreak() } - if yyb1095 { + if yyb1148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15411,13 +16118,13 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Name = string(r.DecodeString()) } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1148++ + if yyhl1148 { + yyb1148 = yyj1148 > l } else { - yyb1095 = r.CheckBreak() + yyb1148 = r.CheckBreak() } - if yyb1095 { + if yyb1148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15425,21 +16132,21 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1097 := &x.Items - yym1098 := z.DecBinary() - _ = yym1098 + yyv1150 := &x.Items + yym1151 := z.DecBinary() + _ = yym1151 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1097), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1150), d) } } - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1148++ + if yyhl1148 { + yyb1148 = yyj1148 > l } else { - yyb1095 = r.CheckBreak() + yyb1148 = r.CheckBreak() } - if yyb1095 { + if yyb1148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15452,25 +16159,25 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1100 := z.DecBinary() - _ = yym1100 + yym1153 := z.DecBinary() + _ = yym1153 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj1095++ - if yyhl1095 { - yyb1095 = yyj1095 > l + yyj1148++ + if yyhl1148 { + yyb1148 = yyj1148 > l } else { - yyb1095 = r.CheckBreak() + yyb1148 = r.CheckBreak() } - if yyb1095 { + if yyb1148 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1095-1, "") + z.DecStructFieldNotFound(yyj1148-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15482,34 +16189,34 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1101 := z.EncBinary() - _ = yym1101 + yym1154 := z.EncBinary() + _ = yym1154 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1102 := !z.EncBinary() - yy2arr1102 := z.EncBasicHandle().StructToArray - var yyq1102 [3]bool - _, _, _ = yysep1102, yyq1102, yy2arr1102 - const yyr1102 bool = false - yyq1102[2] = x.Mode != nil - var yynn1102 int - if yyr1102 || yy2arr1102 { + yysep1155 := !z.EncBinary() + yy2arr1155 := z.EncBasicHandle().StructToArray + var yyq1155 [3]bool + _, _, _ = yysep1155, yyq1155, yy2arr1155 + const yyr1155 bool = false + yyq1155[2] = x.Mode != nil + var yynn1155 int + if yyr1155 || yy2arr1155 { r.EncodeArrayStart(3) } else { - yynn1102 = 2 - for _, b := range yyq1102 { + yynn1155 = 2 + for _, b := range yyq1155 { if b { - yynn1102++ + yynn1155++ } } - r.EncodeMapStart(yynn1102) - yynn1102 = 0 + r.EncodeMapStart(yynn1155) + yynn1155 = 0 } - if yyr1102 || yy2arr1102 { + if yyr1155 || yy2arr1155 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1104 := z.EncBinary() - _ = yym1104 + yym1157 := z.EncBinary() + _ = yym1157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -15518,17 +16225,17 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1105 := z.EncBinary() - _ = yym1105 + yym1158 := z.EncBinary() + _ = yym1158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1102 || yy2arr1102 { + if yyr1155 || yy2arr1155 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1107 := z.EncBinary() - _ = yym1107 + yym1160 := z.EncBinary() + _ = yym1160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -15537,49 +16244,49 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1108 := z.EncBinary() - _ = yym1108 + yym1161 := z.EncBinary() + _ = yym1161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr1102 || yy2arr1102 { + if yyr1155 || yy2arr1155 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1102[2] { + if yyq1155[2] { if x.Mode == nil { r.EncodeNil() } else { - yy1110 := *x.Mode - yym1111 := z.EncBinary() - _ = yym1111 + yy1163 := *x.Mode + yym1164 := z.EncBinary() + _ = yym1164 if false { } else { - r.EncodeInt(int64(yy1110)) + r.EncodeInt(int64(yy1163)) } } } else { r.EncodeNil() } } else { - if yyq1102[2] { + if yyq1155[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy1112 := *x.Mode - yym1113 := z.EncBinary() - _ = yym1113 + yy1165 := *x.Mode + yym1166 := z.EncBinary() + _ = yym1166 if false { } else { - r.EncodeInt(int64(yy1112)) + r.EncodeInt(int64(yy1165)) } } } } - if yyr1102 || yy2arr1102 { + if yyr1155 || yy2arr1155 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15592,25 +16299,25 @@ func (x *KeyToPath) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1114 := z.DecBinary() - _ = yym1114 + yym1167 := z.DecBinary() + _ = yym1167 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1115 := r.ContainerType() - if yyct1115 == codecSelferValueTypeMap1234 { - yyl1115 := r.ReadMapStart() - if yyl1115 == 0 { + yyct1168 := r.ContainerType() + if yyct1168 == codecSelferValueTypeMap1234 { + yyl1168 := r.ReadMapStart() + if yyl1168 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1115, d) + x.codecDecodeSelfFromMap(yyl1168, d) } - } else if yyct1115 == codecSelferValueTypeArray1234 { - yyl1115 := r.ReadArrayStart() - if yyl1115 == 0 { + } else if yyct1168 == codecSelferValueTypeArray1234 { + yyl1168 := r.ReadArrayStart() + if yyl1168 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1115, d) + x.codecDecodeSelfFromArray(yyl1168, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15622,12 +16329,12 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1116Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1116Slc - var yyhl1116 bool = l >= 0 - for yyj1116 := 0; ; yyj1116++ { - if yyhl1116 { - if yyj1116 >= l { + var yys1169Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1169Slc + var yyhl1169 bool = l >= 0 + for yyj1169 := 0; ; yyj1169++ { + if yyhl1169 { + if yyj1169 >= l { break } } else { @@ -15636,10 +16343,10 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1116Slc = r.DecodeBytes(yys1116Slc, true, true) - yys1116 := string(yys1116Slc) + yys1169Slc = r.DecodeBytes(yys1169Slc, true, true) + yys1169 := string(yys1169Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1116 { + switch yys1169 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -15661,17 +16368,17 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1120 := z.DecBinary() - _ = yym1120 + yym1173 := z.DecBinary() + _ = yym1173 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1116) - } // end switch yys1116 - } // end for yyj1116 + z.DecStructFieldNotFound(-1, yys1169) + } // end switch yys1169 + } // end for yyj1169 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15679,16 +16386,16 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1121 int - var yyb1121 bool - var yyhl1121 bool = l >= 0 - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + var yyj1174 int + var yyb1174 bool + var yyhl1174 bool = l >= 0 + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1121 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1121 { + if yyb1174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15698,13 +16405,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1121 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1121 { + if yyb1174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15714,13 +16421,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1121 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1121 { + if yyb1174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15733,25 +16440,25 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1125 := z.DecBinary() - _ = yym1125 + yym1178 := z.DecBinary() + _ = yym1178 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1121 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1121 { + if yyb1174 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1121-1, "") + z.DecStructFieldNotFound(yyj1174-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15763,38 +16470,38 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1126 := z.EncBinary() - _ = yym1126 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1127 := !z.EncBinary() - yy2arr1127 := z.EncBasicHandle().StructToArray - var yyq1127 [5]bool - _, _, _ = yysep1127, yyq1127, yy2arr1127 - const yyr1127 bool = false - yyq1127[0] = x.Name != "" - yyq1127[1] = x.HostPort != 0 - yyq1127[3] = x.Protocol != "" - yyq1127[4] = x.HostIP != "" - var yynn1127 int - if yyr1127 || yy2arr1127 { + yysep1180 := !z.EncBinary() + yy2arr1180 := z.EncBasicHandle().StructToArray + var yyq1180 [5]bool + _, _, _ = yysep1180, yyq1180, yy2arr1180 + const yyr1180 bool = false + yyq1180[0] = x.Name != "" + yyq1180[1] = x.HostPort != 0 + yyq1180[3] = x.Protocol != "" + yyq1180[4] = x.HostIP != "" + var yynn1180 int + if yyr1180 || yy2arr1180 { r.EncodeArrayStart(5) } else { - yynn1127 = 1 - for _, b := range yyq1127 { + yynn1180 = 1 + for _, b := range yyq1180 { if b { - yynn1127++ + yynn1180++ } } - r.EncodeMapStart(yynn1127) - yynn1127 = 0 + r.EncodeMapStart(yynn1180) + yynn1180 = 0 } - if yyr1127 || yy2arr1127 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[0] { - yym1129 := z.EncBinary() - _ = yym1129 + if yyq1180[0] { + yym1182 := z.EncBinary() + _ = yym1182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15803,23 +16510,23 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1127[0] { + if yyq1180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1130 := z.EncBinary() - _ = yym1130 + yym1183 := z.EncBinary() + _ = yym1183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1127 || yy2arr1127 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[1] { - yym1132 := z.EncBinary() - _ = yym1132 + if yyq1180[1] { + yym1185 := z.EncBinary() + _ = yym1185 if false { } else { r.EncodeInt(int64(x.HostPort)) @@ -15828,22 +16535,22 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1127[1] { + if yyq1180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1133 := z.EncBinary() - _ = yym1133 + yym1186 := z.EncBinary() + _ = yym1186 if false { } else { r.EncodeInt(int64(x.HostPort)) } } } - if yyr1127 || yy2arr1127 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1135 := z.EncBinary() - _ = yym1135 + yym1188 := z.EncBinary() + _ = yym1188 if false { } else { r.EncodeInt(int64(x.ContainerPort)) @@ -15852,33 +16559,33 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1136 := z.EncBinary() - _ = yym1136 + yym1189 := z.EncBinary() + _ = yym1189 if false { } else { r.EncodeInt(int64(x.ContainerPort)) } } - if yyr1127 || yy2arr1127 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[3] { + if yyq1180[3] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1127[3] { + if yyq1180[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr1127 || yy2arr1127 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[4] { - yym1139 := z.EncBinary() - _ = yym1139 + if yyq1180[4] { + yym1192 := z.EncBinary() + _ = yym1192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -15887,19 +16594,19 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1127[4] { + if yyq1180[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1140 := z.EncBinary() - _ = yym1140 + yym1193 := z.EncBinary() + _ = yym1193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1127 || yy2arr1127 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15912,25 +16619,25 @@ func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1141 := z.DecBinary() - _ = yym1141 + yym1194 := z.DecBinary() + _ = yym1194 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1142 := r.ContainerType() - if yyct1142 == codecSelferValueTypeMap1234 { - yyl1142 := r.ReadMapStart() - if yyl1142 == 0 { + yyct1195 := r.ContainerType() + if yyct1195 == codecSelferValueTypeMap1234 { + yyl1195 := r.ReadMapStart() + if yyl1195 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1142, d) + x.codecDecodeSelfFromMap(yyl1195, d) } - } else if yyct1142 == codecSelferValueTypeArray1234 { - yyl1142 := r.ReadArrayStart() - if yyl1142 == 0 { + } else if yyct1195 == codecSelferValueTypeArray1234 { + yyl1195 := r.ReadArrayStart() + if yyl1195 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1142, d) + x.codecDecodeSelfFromArray(yyl1195, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15942,12 +16649,12 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1143Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1143Slc - var yyhl1143 bool = l >= 0 - for yyj1143 := 0; ; yyj1143++ { - if yyhl1143 { - if yyj1143 >= 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 { @@ -15956,10 +16663,10 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1143Slc = r.DecodeBytes(yys1143Slc, true, true) - yys1143 := string(yys1143Slc) + yys1196Slc = r.DecodeBytes(yys1196Slc, true, true) + yys1196 := string(yys1196Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1143 { + switch yys1196 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15991,9 +16698,9 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1143) - } // end switch yys1143 - } // end for yyj1143 + z.DecStructFieldNotFound(-1, yys1196) + } // end switch yys1196 + } // end for yyj1196 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16001,16 +16708,16 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1149 int - var yyb1149 bool - var yyhl1149 bool = l >= 0 - yyj1149++ - if yyhl1149 { - yyb1149 = yyj1149 > l + var yyj1202 int + var yyb1202 bool + var yyhl1202 bool = l >= 0 + yyj1202++ + if yyhl1202 { + yyb1202 = yyj1202 > l } else { - yyb1149 = r.CheckBreak() + yyb1202 = r.CheckBreak() } - if yyb1149 { + if yyb1202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16020,13 +16727,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1149++ - if yyhl1149 { - yyb1149 = yyj1149 > l + yyj1202++ + if yyhl1202 { + yyb1202 = yyj1202 > l } else { - yyb1149 = r.CheckBreak() + yyb1202 = r.CheckBreak() } - if yyb1149 { + if yyb1202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16036,13 +16743,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPort = int32(r.DecodeInt(32)) } - yyj1149++ - if yyhl1149 { - yyb1149 = yyj1149 > l + yyj1202++ + if yyhl1202 { + yyb1202 = yyj1202 > l } else { - yyb1149 = r.CheckBreak() + yyb1202 = r.CheckBreak() } - if yyb1149 { + if yyb1202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16052,13 +16759,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerPort = int32(r.DecodeInt(32)) } - yyj1149++ - if yyhl1149 { - yyb1149 = yyj1149 > l + yyj1202++ + if yyhl1202 { + yyb1202 = yyj1202 > l } else { - yyb1149 = r.CheckBreak() + yyb1202 = r.CheckBreak() } - if yyb1149 { + if yyb1202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16068,13 +16775,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1149++ - if yyhl1149 { - yyb1149 = yyj1149 > l + yyj1202++ + if yyhl1202 { + yyb1202 = yyj1202 > l } else { - yyb1149 = r.CheckBreak() + yyb1202 = r.CheckBreak() } - if yyb1149 { + if yyb1202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16085,17 +16792,17 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } for { - yyj1149++ - if yyhl1149 { - yyb1149 = yyj1149 > l + yyj1202++ + if yyhl1202 { + yyb1202 = yyj1202 > l } else { - yyb1149 = r.CheckBreak() + yyb1202 = r.CheckBreak() } - if yyb1149 { + if yyb1202 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1149-1, "") + z.DecStructFieldNotFound(yyj1202-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16107,35 +16814,35 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1155 := z.EncBinary() - _ = yym1155 + yym1208 := z.EncBinary() + _ = yym1208 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1156 := !z.EncBinary() - yy2arr1156 := z.EncBasicHandle().StructToArray - var yyq1156 [4]bool - _, _, _ = yysep1156, yyq1156, yy2arr1156 - const yyr1156 bool = false - yyq1156[1] = x.ReadOnly != false - yyq1156[3] = x.SubPath != "" - var yynn1156 int - if yyr1156 || yy2arr1156 { + yysep1209 := !z.EncBinary() + yy2arr1209 := z.EncBasicHandle().StructToArray + var yyq1209 [4]bool + _, _, _ = yysep1209, yyq1209, yy2arr1209 + const yyr1209 bool = false + yyq1209[1] = x.ReadOnly != false + yyq1209[3] = x.SubPath != "" + var yynn1209 int + if yyr1209 || yy2arr1209 { r.EncodeArrayStart(4) } else { - yynn1156 = 2 - for _, b := range yyq1156 { + yynn1209 = 2 + for _, b := range yyq1209 { if b { - yynn1156++ + yynn1209++ } } - r.EncodeMapStart(yynn1156) - yynn1156 = 0 + r.EncodeMapStart(yynn1209) + yynn1209 = 0 } - if yyr1156 || yy2arr1156 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1158 := z.EncBinary() - _ = yym1158 + yym1211 := z.EncBinary() + _ = yym1211 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16144,18 +16851,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1159 := z.EncBinary() - _ = yym1159 + yym1212 := z.EncBinary() + _ = yym1212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1156 || yy2arr1156 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1156[1] { - yym1161 := z.EncBinary() - _ = yym1161 + if yyq1209[1] { + yym1214 := z.EncBinary() + _ = yym1214 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -16164,22 +16871,22 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1156[1] { + if yyq1209[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1162 := z.EncBinary() - _ = yym1162 + yym1215 := z.EncBinary() + _ = yym1215 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr1156 || yy2arr1156 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1164 := z.EncBinary() - _ = yym1164 + yym1217 := z.EncBinary() + _ = yym1217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) @@ -16188,18 +16895,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mountPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1165 := z.EncBinary() - _ = yym1165 + yym1218 := z.EncBinary() + _ = yym1218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) } } - if yyr1156 || yy2arr1156 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1156[3] { - yym1167 := z.EncBinary() - _ = yym1167 + if yyq1209[3] { + yym1220 := z.EncBinary() + _ = yym1220 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) @@ -16208,19 +16915,19 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1156[3] { + if yyq1209[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1168 := z.EncBinary() - _ = yym1168 + yym1221 := z.EncBinary() + _ = yym1221 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) } } } - if yyr1156 || yy2arr1156 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16233,25 +16940,25 @@ func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1169 := z.DecBinary() - _ = yym1169 + yym1222 := z.DecBinary() + _ = yym1222 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1170 := r.ContainerType() - if yyct1170 == codecSelferValueTypeMap1234 { - yyl1170 := r.ReadMapStart() - if yyl1170 == 0 { + yyct1223 := r.ContainerType() + if yyct1223 == codecSelferValueTypeMap1234 { + yyl1223 := r.ReadMapStart() + if yyl1223 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1170, d) + x.codecDecodeSelfFromMap(yyl1223, d) } - } else if yyct1170 == codecSelferValueTypeArray1234 { - yyl1170 := r.ReadArrayStart() - if yyl1170 == 0 { + } else if yyct1223 == codecSelferValueTypeArray1234 { + yyl1223 := r.ReadArrayStart() + if yyl1223 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1170, d) + x.codecDecodeSelfFromArray(yyl1223, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16263,12 +16970,12 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1171Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1171Slc - var yyhl1171 bool = l >= 0 - for yyj1171 := 0; ; yyj1171++ { - if yyhl1171 { - if yyj1171 >= l { + var yys1224Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1224Slc + var yyhl1224 bool = l >= 0 + for yyj1224 := 0; ; yyj1224++ { + if yyhl1224 { + if yyj1224 >= l { break } } else { @@ -16277,10 +16984,10 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1171Slc = r.DecodeBytes(yys1171Slc, true, true) - yys1171 := string(yys1171Slc) + yys1224Slc = r.DecodeBytes(yys1224Slc, true, true) + yys1224 := string(yys1224Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1171 { + switch yys1224 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16306,9 +17013,9 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1171) - } // end switch yys1171 - } // end for yyj1171 + z.DecStructFieldNotFound(-1, yys1224) + } // end switch yys1224 + } // end for yyj1224 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16316,16 +17023,16 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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 yyj1229 int + var yyb1229 bool + var yyhl1229 bool = l >= 0 + yyj1229++ + if yyhl1229 { + yyb1229 = yyj1229 > l } else { - yyb1176 = r.CheckBreak() + yyb1229 = r.CheckBreak() } - if yyb1176 { + if yyb1229 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16335,13 +17042,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + yyj1229++ + if yyhl1229 { + yyb1229 = yyj1229 > l } else { - yyb1176 = r.CheckBreak() + yyb1229 = r.CheckBreak() } - if yyb1176 { + if yyb1229 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16351,13 +17058,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + yyj1229++ + if yyhl1229 { + yyb1229 = yyj1229 > l } else { - yyb1176 = r.CheckBreak() + yyb1229 = r.CheckBreak() } - if yyb1176 { + if yyb1229 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16367,13 +17074,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MountPath = string(r.DecodeString()) } - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + yyj1229++ + if yyhl1229 { + yyb1229 = yyj1229 > l } else { - yyb1176 = r.CheckBreak() + yyb1229 = r.CheckBreak() } - if yyb1176 { + if yyb1229 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16384,17 +17091,17 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } for { - yyj1176++ - if yyhl1176 { - yyb1176 = yyj1176 > l + yyj1229++ + if yyhl1229 { + yyb1229 = yyj1229 > l } else { - yyb1176 = r.CheckBreak() + yyb1229 = r.CheckBreak() } - if yyb1176 { + if yyb1229 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1176-1, "") + z.DecStructFieldNotFound(yyj1229-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16406,35 +17113,35 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1181 := z.EncBinary() - _ = yym1181 + yym1234 := z.EncBinary() + _ = yym1234 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1182 := !z.EncBinary() - yy2arr1182 := z.EncBasicHandle().StructToArray - var yyq1182 [3]bool - _, _, _ = yysep1182, yyq1182, yy2arr1182 - const yyr1182 bool = false - yyq1182[1] = x.Value != "" - yyq1182[2] = x.ValueFrom != nil - var yynn1182 int - if yyr1182 || yy2arr1182 { + yysep1235 := !z.EncBinary() + yy2arr1235 := z.EncBasicHandle().StructToArray + var yyq1235 [3]bool + _, _, _ = yysep1235, yyq1235, yy2arr1235 + const yyr1235 bool = false + yyq1235[1] = x.Value != "" + yyq1235[2] = x.ValueFrom != nil + var yynn1235 int + if yyr1235 || yy2arr1235 { r.EncodeArrayStart(3) } else { - yynn1182 = 1 - for _, b := range yyq1182 { + yynn1235 = 1 + for _, b := range yyq1235 { if b { - yynn1182++ + yynn1235++ } } - r.EncodeMapStart(yynn1182) - yynn1182 = 0 + r.EncodeMapStart(yynn1235) + yynn1235 = 0 } - if yyr1182 || yy2arr1182 { + if yyr1235 || yy2arr1235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1184 := z.EncBinary() - _ = yym1184 + yym1237 := z.EncBinary() + _ = yym1237 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16443,18 +17150,18 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1185 := z.EncBinary() - _ = yym1185 + yym1238 := z.EncBinary() + _ = yym1238 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1182 || yy2arr1182 { + if yyr1235 || yy2arr1235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1182[1] { - yym1187 := z.EncBinary() - _ = yym1187 + if yyq1235[1] { + yym1240 := z.EncBinary() + _ = yym1240 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -16463,21 +17170,21 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1182[1] { + if yyq1235[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1188 := z.EncBinary() - _ = yym1188 + yym1241 := z.EncBinary() + _ = yym1241 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1182 || yy2arr1182 { + if yyr1235 || yy2arr1235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1182[2] { + if yyq1235[2] { if x.ValueFrom == nil { r.EncodeNil() } else { @@ -16487,7 +17194,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1182[2] { + if yyq1235[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("valueFrom")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16498,7 +17205,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1182 || yy2arr1182 { + if yyr1235 || yy2arr1235 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16511,25 +17218,25 @@ func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1190 := z.DecBinary() - _ = yym1190 + yym1243 := z.DecBinary() + _ = yym1243 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1191 := r.ContainerType() - if yyct1191 == codecSelferValueTypeMap1234 { - yyl1191 := r.ReadMapStart() - if yyl1191 == 0 { + yyct1244 := r.ContainerType() + if yyct1244 == codecSelferValueTypeMap1234 { + yyl1244 := r.ReadMapStart() + if yyl1244 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1191, d) + x.codecDecodeSelfFromMap(yyl1244, d) } - } else if yyct1191 == codecSelferValueTypeArray1234 { - yyl1191 := r.ReadArrayStart() - if yyl1191 == 0 { + } else if yyct1244 == codecSelferValueTypeArray1234 { + yyl1244 := r.ReadArrayStart() + if yyl1244 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1191, d) + x.codecDecodeSelfFromArray(yyl1244, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16541,12 +17248,12 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1192Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1192Slc - var yyhl1192 bool = l >= 0 - for yyj1192 := 0; ; yyj1192++ { - if yyhl1192 { - if yyj1192 >= l { + var yys1245Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1245Slc + var yyhl1245 bool = l >= 0 + for yyj1245 := 0; ; yyj1245++ { + if yyhl1245 { + if yyj1245 >= l { break } } else { @@ -16555,10 +17262,10 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1192Slc = r.DecodeBytes(yys1192Slc, true, true) - yys1192 := string(yys1192Slc) + yys1245Slc = r.DecodeBytes(yys1245Slc, true, true) + yys1245 := string(yys1245Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1192 { + switch yys1245 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16583,9 +17290,9 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1192) - } // end switch yys1192 - } // end for yyj1192 + z.DecStructFieldNotFound(-1, yys1245) + } // end switch yys1245 + } // end for yyj1245 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16593,16 +17300,16 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1196 int - var yyb1196 bool - var yyhl1196 bool = l >= 0 - yyj1196++ - if yyhl1196 { - yyb1196 = yyj1196 > l + var yyj1249 int + var yyb1249 bool + var yyhl1249 bool = l >= 0 + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1196 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1196 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16612,13 +17319,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1196++ - if yyhl1196 { - yyb1196 = yyj1196 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1196 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1196 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16628,13 +17335,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1196++ - if yyhl1196 { - yyb1196 = yyj1196 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1196 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1196 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16650,17 +17357,17 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } for { - yyj1196++ - if yyhl1196 { - yyb1196 = yyj1196 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1196 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1196 { + if yyb1249 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1196-1, "") + z.DecStructFieldNotFound(yyj1249-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16672,36 +17379,36 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1200 := z.EncBinary() - _ = yym1200 + yym1253 := z.EncBinary() + _ = yym1253 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1201 := !z.EncBinary() - yy2arr1201 := z.EncBasicHandle().StructToArray - var yyq1201 [4]bool - _, _, _ = yysep1201, yyq1201, yy2arr1201 - const yyr1201 bool = false - yyq1201[0] = x.FieldRef != nil - yyq1201[1] = x.ResourceFieldRef != nil - yyq1201[2] = x.ConfigMapKeyRef != nil - yyq1201[3] = x.SecretKeyRef != nil - var yynn1201 int - if yyr1201 || yy2arr1201 { + yysep1254 := !z.EncBinary() + yy2arr1254 := z.EncBasicHandle().StructToArray + var yyq1254 [4]bool + _, _, _ = yysep1254, yyq1254, yy2arr1254 + const yyr1254 bool = false + yyq1254[0] = x.FieldRef != nil + yyq1254[1] = x.ResourceFieldRef != nil + yyq1254[2] = x.ConfigMapKeyRef != nil + yyq1254[3] = x.SecretKeyRef != nil + var yynn1254 int + if yyr1254 || yy2arr1254 { r.EncodeArrayStart(4) } else { - yynn1201 = 0 - for _, b := range yyq1201 { + yynn1254 = 0 + for _, b := range yyq1254 { if b { - yynn1201++ + yynn1254++ } } - r.EncodeMapStart(yynn1201) - yynn1201 = 0 + r.EncodeMapStart(yynn1254) + yynn1254 = 0 } - if yyr1201 || yy2arr1201 { + if yyr1254 || yy2arr1254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1201[0] { + if yyq1254[0] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -16711,7 +17418,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1201[0] { + if yyq1254[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16722,9 +17429,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1201 || yy2arr1201 { + if yyr1254 || yy2arr1254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1201[1] { + if yyq1254[1] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -16734,7 +17441,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1201[1] { + if yyq1254[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16745,9 +17452,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1201 || yy2arr1201 { + if yyr1254 || yy2arr1254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1201[2] { + if yyq1254[2] { if x.ConfigMapKeyRef == nil { r.EncodeNil() } else { @@ -16757,7 +17464,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1201[2] { + if yyq1254[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMapKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16768,9 +17475,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1201 || yy2arr1201 { + if yyr1254 || yy2arr1254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1201[3] { + if yyq1254[3] { if x.SecretKeyRef == nil { r.EncodeNil() } else { @@ -16780,7 +17487,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1201[3] { + if yyq1254[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16791,7 +17498,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1201 || yy2arr1201 { + if yyr1254 || yy2arr1254 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16804,25 +17511,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1206 := z.DecBinary() - _ = yym1206 + yym1259 := z.DecBinary() + _ = yym1259 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1207 := r.ContainerType() - if yyct1207 == codecSelferValueTypeMap1234 { - yyl1207 := r.ReadMapStart() - if yyl1207 == 0 { + yyct1260 := r.ContainerType() + if yyct1260 == codecSelferValueTypeMap1234 { + yyl1260 := r.ReadMapStart() + if yyl1260 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1207, d) + x.codecDecodeSelfFromMap(yyl1260, d) } - } else if yyct1207 == codecSelferValueTypeArray1234 { - yyl1207 := r.ReadArrayStart() - if yyl1207 == 0 { + } else if yyct1260 == codecSelferValueTypeArray1234 { + yyl1260 := r.ReadArrayStart() + if yyl1260 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1207, d) + x.codecDecodeSelfFromArray(yyl1260, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16834,12 +17541,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1208Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1208Slc - var yyhl1208 bool = l >= 0 - for yyj1208 := 0; ; yyj1208++ { - if yyhl1208 { - if yyj1208 >= l { + var yys1261Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1261Slc + var yyhl1261 bool = l >= 0 + for yyj1261 := 0; ; yyj1261++ { + if yyhl1261 { + if yyj1261 >= l { break } } else { @@ -16848,10 +17555,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1208Slc = r.DecodeBytes(yys1208Slc, true, true) - yys1208 := string(yys1208Slc) + yys1261Slc = r.DecodeBytes(yys1261Slc, true, true) + yys1261 := string(yys1261Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1208 { + switch yys1261 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -16897,9 +17604,9 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1208) - } // end switch yys1208 - } // end for yyj1208 + z.DecStructFieldNotFound(-1, yys1261) + } // end switch yys1261 + } // end for yyj1261 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16907,16 +17614,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1213 int - var yyb1213 bool - var yyhl1213 bool = l >= 0 - yyj1213++ - if yyhl1213 { - yyb1213 = yyj1213 > l + var yyj1266 int + var yyb1266 bool + var yyhl1266 bool = l >= 0 + yyj1266++ + if yyhl1266 { + yyb1266 = yyj1266 > l } else { - yyb1213 = r.CheckBreak() + yyb1266 = r.CheckBreak() } - if yyb1213 { + if yyb1266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16931,13 +17638,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } - yyj1213++ - if yyhl1213 { - yyb1213 = yyj1213 > l + yyj1266++ + if yyhl1266 { + yyb1266 = yyj1266 > l } else { - yyb1213 = r.CheckBreak() + yyb1266 = r.CheckBreak() } - if yyb1213 { + if yyb1266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16952,13 +17659,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj1213++ - if yyhl1213 { - yyb1213 = yyj1213 > l + yyj1266++ + if yyhl1266 { + yyb1266 = yyj1266 > l } else { - yyb1213 = r.CheckBreak() + yyb1266 = r.CheckBreak() } - if yyb1213 { + if yyb1266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16973,13 +17680,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMapKeyRef.CodecDecodeSelf(d) } - yyj1213++ - if yyhl1213 { - yyb1213 = yyj1213 > l + yyj1266++ + if yyhl1266 { + yyb1266 = yyj1266 > l } else { - yyb1213 = r.CheckBreak() + yyb1266 = r.CheckBreak() } - if yyb1213 { + if yyb1266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16995,17 +17702,17 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } for { - yyj1213++ - if yyhl1213 { - yyb1213 = yyj1213 > l + yyj1266++ + if yyhl1266 { + yyb1266 = yyj1266 > l } else { - yyb1213 = r.CheckBreak() + yyb1266 = r.CheckBreak() } - if yyb1213 { + if yyb1266 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1213-1, "") + z.DecStructFieldNotFound(yyj1266-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17017,33 +17724,33 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1218 := z.EncBinary() - _ = yym1218 + yym1271 := z.EncBinary() + _ = yym1271 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1219 := !z.EncBinary() - yy2arr1219 := z.EncBasicHandle().StructToArray - var yyq1219 [2]bool - _, _, _ = yysep1219, yyq1219, yy2arr1219 - const yyr1219 bool = false - var yynn1219 int - if yyr1219 || yy2arr1219 { + yysep1272 := !z.EncBinary() + yy2arr1272 := z.EncBasicHandle().StructToArray + var yyq1272 [2]bool + _, _, _ = yysep1272, yyq1272, yy2arr1272 + const yyr1272 bool = false + var yynn1272 int + if yyr1272 || yy2arr1272 { r.EncodeArrayStart(2) } else { - yynn1219 = 2 - for _, b := range yyq1219 { + yynn1272 = 2 + for _, b := range yyq1272 { if b { - yynn1219++ + yynn1272++ } } - r.EncodeMapStart(yynn1219) - yynn1219 = 0 + r.EncodeMapStart(yynn1272) + yynn1272 = 0 } - if yyr1219 || yy2arr1219 { + if yyr1272 || yy2arr1272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1221 := z.EncBinary() - _ = yym1221 + yym1274 := z.EncBinary() + _ = yym1274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -17052,17 +17759,17 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1222 := z.EncBinary() - _ = yym1222 + yym1275 := z.EncBinary() + _ = yym1275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr1219 || yy2arr1219 { + if yyr1272 || yy2arr1272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1224 := z.EncBinary() - _ = yym1224 + yym1277 := z.EncBinary() + _ = yym1277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -17071,14 +17778,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1225 := z.EncBinary() - _ = yym1225 + yym1278 := z.EncBinary() + _ = yym1278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr1219 || yy2arr1219 { + if yyr1272 || yy2arr1272 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17091,25 +17798,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1226 := z.DecBinary() - _ = yym1226 + yym1279 := z.DecBinary() + _ = yym1279 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1227 := r.ContainerType() - if yyct1227 == codecSelferValueTypeMap1234 { - yyl1227 := r.ReadMapStart() - if yyl1227 == 0 { + yyct1280 := r.ContainerType() + if yyct1280 == codecSelferValueTypeMap1234 { + yyl1280 := r.ReadMapStart() + if yyl1280 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1227, d) + x.codecDecodeSelfFromMap(yyl1280, d) } - } else if yyct1227 == codecSelferValueTypeArray1234 { - yyl1227 := r.ReadArrayStart() - if yyl1227 == 0 { + } else if yyct1280 == codecSelferValueTypeArray1234 { + yyl1280 := r.ReadArrayStart() + if yyl1280 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1227, d) + x.codecDecodeSelfFromArray(yyl1280, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17121,12 +17828,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1228Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1228Slc - var yyhl1228 bool = l >= 0 - for yyj1228 := 0; ; yyj1228++ { - if yyhl1228 { - if yyj1228 >= l { + var yys1281Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1281Slc + var yyhl1281 bool = l >= 0 + for yyj1281 := 0; ; yyj1281++ { + if yyhl1281 { + if yyj1281 >= l { break } } else { @@ -17135,10 +17842,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1228Slc = r.DecodeBytes(yys1228Slc, true, true) - yys1228 := string(yys1228Slc) + yys1281Slc = r.DecodeBytes(yys1281Slc, true, true) + yys1281 := string(yys1281Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1228 { + switch yys1281 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -17152,9 +17859,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1228) - } // end switch yys1228 - } // end for yyj1228 + z.DecStructFieldNotFound(-1, yys1281) + } // end switch yys1281 + } // end for yyj1281 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17162,16 +17869,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1231 int - var yyb1231 bool - var yyhl1231 bool = l >= 0 - yyj1231++ - if yyhl1231 { - yyb1231 = yyj1231 > l + var yyj1284 int + var yyb1284 bool + var yyhl1284 bool = l >= 0 + yyj1284++ + if yyhl1284 { + yyb1284 = yyj1284 > l } else { - yyb1231 = r.CheckBreak() + yyb1284 = r.CheckBreak() } - if yyb1231 { + if yyb1284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17181,13 +17888,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj1231++ - if yyhl1231 { - yyb1231 = yyj1231 > l + yyj1284++ + if yyhl1284 { + yyb1284 = yyj1284 > l } else { - yyb1231 = r.CheckBreak() + yyb1284 = r.CheckBreak() } - if yyb1231 { + if yyb1284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17198,17 +17905,17 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj1231++ - if yyhl1231 { - yyb1231 = yyj1231 > l + yyj1284++ + if yyhl1284 { + yyb1284 = yyj1284 > l } else { - yyb1231 = r.CheckBreak() + yyb1284 = r.CheckBreak() } - if yyb1231 { + if yyb1284 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1231-1, "") + z.DecStructFieldNotFound(yyj1284-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17220,36 +17927,36 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1234 := z.EncBinary() - _ = yym1234 + yym1287 := z.EncBinary() + _ = yym1287 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1235 := !z.EncBinary() - yy2arr1235 := z.EncBasicHandle().StructToArray - var yyq1235 [3]bool - _, _, _ = yysep1235, yyq1235, yy2arr1235 - const yyr1235 bool = false - yyq1235[0] = x.ContainerName != "" - yyq1235[2] = true - var yynn1235 int - if yyr1235 || yy2arr1235 { + yysep1288 := !z.EncBinary() + yy2arr1288 := z.EncBasicHandle().StructToArray + var yyq1288 [3]bool + _, _, _ = yysep1288, yyq1288, yy2arr1288 + const yyr1288 bool = false + yyq1288[0] = x.ContainerName != "" + yyq1288[2] = true + var yynn1288 int + if yyr1288 || yy2arr1288 { r.EncodeArrayStart(3) } else { - yynn1235 = 1 - for _, b := range yyq1235 { + yynn1288 = 1 + for _, b := range yyq1288 { if b { - yynn1235++ + yynn1288++ } } - r.EncodeMapStart(yynn1235) - yynn1235 = 0 + r.EncodeMapStart(yynn1288) + yynn1288 = 0 } - if yyr1235 || yy2arr1235 { + if yyr1288 || yy2arr1288 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[0] { - yym1237 := z.EncBinary() - _ = yym1237 + if yyq1288[0] { + yym1290 := z.EncBinary() + _ = yym1290 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) @@ -17258,22 +17965,22 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1235[0] { + if yyq1288[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1238 := z.EncBinary() - _ = yym1238 + yym1291 := z.EncBinary() + _ = yym1291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) } } } - if yyr1235 || yy2arr1235 { + if yyr1288 || yy2arr1288 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1240 := z.EncBinary() - _ = yym1240 + yym1293 := z.EncBinary() + _ = yym1293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) @@ -17282,47 +17989,47 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resource")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1241 := z.EncBinary() - _ = yym1241 + yym1294 := z.EncBinary() + _ = yym1294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) } } - if yyr1235 || yy2arr1235 { + if yyr1288 || yy2arr1288 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[2] { - yy1243 := &x.Divisor - yym1244 := z.EncBinary() - _ = yym1244 + if yyq1288[2] { + yy1296 := &x.Divisor + yym1297 := z.EncBinary() + _ = yym1297 if false { - } else if z.HasExtensions() && z.EncExt(yy1243) { - } else if !yym1244 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1243) + } else if z.HasExtensions() && z.EncExt(yy1296) { + } else if !yym1297 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1296) } else { - z.EncFallback(yy1243) + z.EncFallback(yy1296) } } else { r.EncodeNil() } } else { - if yyq1235[2] { + if yyq1288[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("divisor")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1245 := &x.Divisor - yym1246 := z.EncBinary() - _ = yym1246 + yy1298 := &x.Divisor + yym1299 := z.EncBinary() + _ = yym1299 if false { - } else if z.HasExtensions() && z.EncExt(yy1245) { - } else if !yym1246 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1245) + } else if z.HasExtensions() && z.EncExt(yy1298) { + } else if !yym1299 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1298) } else { - z.EncFallback(yy1245) + z.EncFallback(yy1298) } } } - if yyr1235 || yy2arr1235 { + if yyr1288 || yy2arr1288 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17335,25 +18042,25 @@ func (x *ResourceFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1247 := z.DecBinary() - _ = yym1247 + yym1300 := z.DecBinary() + _ = yym1300 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1248 := r.ContainerType() - if yyct1248 == codecSelferValueTypeMap1234 { - yyl1248 := r.ReadMapStart() - if yyl1248 == 0 { + yyct1301 := r.ContainerType() + if yyct1301 == codecSelferValueTypeMap1234 { + yyl1301 := r.ReadMapStart() + if yyl1301 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1248, d) + x.codecDecodeSelfFromMap(yyl1301, d) } - } else if yyct1248 == codecSelferValueTypeArray1234 { - yyl1248 := r.ReadArrayStart() - if yyl1248 == 0 { + } else if yyct1301 == codecSelferValueTypeArray1234 { + yyl1301 := r.ReadArrayStart() + if yyl1301 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1248, d) + x.codecDecodeSelfFromArray(yyl1301, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17365,12 +18072,12 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1249Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1249Slc - var yyhl1249 bool = l >= 0 - for yyj1249 := 0; ; yyj1249++ { - if yyhl1249 { - if yyj1249 >= l { + var yys1302Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1302Slc + var yyhl1302 bool = l >= 0 + for yyj1302 := 0; ; yyj1302++ { + if yyhl1302 { + if yyj1302 >= l { break } } else { @@ -17379,10 +18086,10 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1249Slc = r.DecodeBytes(yys1249Slc, true, true) - yys1249 := string(yys1249Slc) + yys1302Slc = r.DecodeBytes(yys1302Slc, true, true) + yys1302 := string(yys1302Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1249 { + switch yys1302 { case "containerName": if r.TryDecodeAsNil() { x.ContainerName = "" @@ -17399,21 +18106,21 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Divisor = pkg3_resource.Quantity{} } else { - yyv1252 := &x.Divisor - yym1253 := z.DecBinary() - _ = yym1253 + yyv1305 := &x.Divisor + yym1306 := z.DecBinary() + _ = yym1306 if false { - } else if z.HasExtensions() && z.DecExt(yyv1252) { - } else if !yym1253 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1252) + } else if z.HasExtensions() && z.DecExt(yyv1305) { + } else if !yym1306 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1305) } else { - z.DecFallback(yyv1252, false) + z.DecFallback(yyv1305, false) } } default: - z.DecStructFieldNotFound(-1, yys1249) - } // end switch yys1249 - } // end for yyj1249 + z.DecStructFieldNotFound(-1, yys1302) + } // end switch yys1302 + } // end for yyj1302 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17421,16 +18128,16 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1254 int - var yyb1254 bool - var yyhl1254 bool = l >= 0 - yyj1254++ - if yyhl1254 { - yyb1254 = yyj1254 > l + var yyj1307 int + var yyb1307 bool + var yyhl1307 bool = l >= 0 + yyj1307++ + if yyhl1307 { + yyb1307 = yyj1307 > l } else { - yyb1254 = r.CheckBreak() + yyb1307 = r.CheckBreak() } - if yyb1254 { + if yyb1307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17440,13 +18147,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ContainerName = string(r.DecodeString()) } - yyj1254++ - if yyhl1254 { - yyb1254 = yyj1254 > l + yyj1307++ + if yyhl1307 { + yyb1307 = yyj1307 > l } else { - yyb1254 = r.CheckBreak() + yyb1307 = r.CheckBreak() } - if yyb1254 { + if yyb1307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17456,13 +18163,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Resource = string(r.DecodeString()) } - yyj1254++ - if yyhl1254 { - yyb1254 = yyj1254 > l + yyj1307++ + if yyhl1307 { + yyb1307 = yyj1307 > l } else { - yyb1254 = r.CheckBreak() + yyb1307 = r.CheckBreak() } - if yyb1254 { + if yyb1307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17470,29 +18177,29 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Divisor = pkg3_resource.Quantity{} } else { - yyv1257 := &x.Divisor - yym1258 := z.DecBinary() - _ = yym1258 + yyv1310 := &x.Divisor + yym1311 := z.DecBinary() + _ = yym1311 if false { - } else if z.HasExtensions() && z.DecExt(yyv1257) { - } else if !yym1258 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1257) + } else if z.HasExtensions() && z.DecExt(yyv1310) { + } else if !yym1311 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1310) } else { - z.DecFallback(yyv1257, false) + z.DecFallback(yyv1310, false) } } for { - yyj1254++ - if yyhl1254 { - yyb1254 = yyj1254 > l + yyj1307++ + if yyhl1307 { + yyb1307 = yyj1307 > l } else { - yyb1254 = r.CheckBreak() + yyb1307 = r.CheckBreak() } - if yyb1254 { + if yyb1307 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1254-1, "") + z.DecStructFieldNotFound(yyj1307-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17504,33 +18211,33 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1259 := z.EncBinary() - _ = yym1259 + yym1312 := z.EncBinary() + _ = yym1312 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1260 := !z.EncBinary() - yy2arr1260 := z.EncBasicHandle().StructToArray - var yyq1260 [2]bool - _, _, _ = yysep1260, yyq1260, yy2arr1260 - const yyr1260 bool = false - var yynn1260 int - if yyr1260 || yy2arr1260 { + yysep1313 := !z.EncBinary() + yy2arr1313 := z.EncBasicHandle().StructToArray + var yyq1313 [2]bool + _, _, _ = yysep1313, yyq1313, yy2arr1313 + const yyr1313 bool = false + var yynn1313 int + if yyr1313 || yy2arr1313 { r.EncodeArrayStart(2) } else { - yynn1260 = 2 - for _, b := range yyq1260 { + yynn1313 = 2 + for _, b := range yyq1313 { if b { - yynn1260++ + yynn1313++ } } - r.EncodeMapStart(yynn1260) - yynn1260 = 0 + r.EncodeMapStart(yynn1313) + yynn1313 = 0 } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1262 := z.EncBinary() - _ = yym1262 + yym1315 := z.EncBinary() + _ = yym1315 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17539,17 +18246,17 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1263 := z.EncBinary() - _ = yym1263 + yym1316 := z.EncBinary() + _ = yym1316 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1265 := z.EncBinary() - _ = yym1265 + yym1318 := z.EncBinary() + _ = yym1318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -17558,14 +18265,14 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1266 := z.EncBinary() - _ = yym1266 + yym1319 := z.EncBinary() + _ = yym1319 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17578,25 +18285,25 @@ func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1267 := z.DecBinary() - _ = yym1267 + yym1320 := z.DecBinary() + _ = yym1320 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1268 := r.ContainerType() - if yyct1268 == codecSelferValueTypeMap1234 { - yyl1268 := r.ReadMapStart() - if yyl1268 == 0 { + yyct1321 := r.ContainerType() + if yyct1321 == codecSelferValueTypeMap1234 { + yyl1321 := r.ReadMapStart() + if yyl1321 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1268, d) + x.codecDecodeSelfFromMap(yyl1321, d) } - } else if yyct1268 == codecSelferValueTypeArray1234 { - yyl1268 := r.ReadArrayStart() - if yyl1268 == 0 { + } else if yyct1321 == codecSelferValueTypeArray1234 { + yyl1321 := r.ReadArrayStart() + if yyl1321 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1268, d) + x.codecDecodeSelfFromArray(yyl1321, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17608,12 +18315,12 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1269Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1269Slc - var yyhl1269 bool = l >= 0 - for yyj1269 := 0; ; yyj1269++ { - if yyhl1269 { - if yyj1269 >= l { + var yys1322Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1322Slc + var yyhl1322 bool = l >= 0 + for yyj1322 := 0; ; yyj1322++ { + if yyhl1322 { + if yyj1322 >= l { break } } else { @@ -17622,10 +18329,10 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1269Slc = r.DecodeBytes(yys1269Slc, true, true) - yys1269 := string(yys1269Slc) + yys1322Slc = r.DecodeBytes(yys1322Slc, true, true) + yys1322 := string(yys1322Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1269 { + switch yys1322 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -17639,9 +18346,9 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Key = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1269) - } // end switch yys1269 - } // end for yyj1269 + z.DecStructFieldNotFound(-1, yys1322) + } // end switch yys1322 + } // end for yyj1322 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17649,16 +18356,16 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1272 int - var yyb1272 bool - var yyhl1272 bool = l >= 0 - yyj1272++ - if yyhl1272 { - yyb1272 = yyj1272 > l + var yyj1325 int + var yyb1325 bool + var yyhl1325 bool = l >= 0 + yyj1325++ + if yyhl1325 { + yyb1325 = yyj1325 > l } else { - yyb1272 = r.CheckBreak() + yyb1325 = r.CheckBreak() } - if yyb1272 { + if yyb1325 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17668,13 +18375,13 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Name = string(r.DecodeString()) } - yyj1272++ - if yyhl1272 { - yyb1272 = yyj1272 > l + yyj1325++ + if yyhl1325 { + yyb1325 = yyj1325 > l } else { - yyb1272 = r.CheckBreak() + yyb1325 = r.CheckBreak() } - if yyb1272 { + if yyb1325 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17685,17 +18392,17 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Key = string(r.DecodeString()) } for { - yyj1272++ - if yyhl1272 { - yyb1272 = yyj1272 > l + yyj1325++ + if yyhl1325 { + yyb1325 = yyj1325 > l } else { - yyb1272 = r.CheckBreak() + yyb1325 = r.CheckBreak() } - if yyb1272 { + if yyb1325 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1272-1, "") + z.DecStructFieldNotFound(yyj1325-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17707,33 +18414,33 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1275 := z.EncBinary() - _ = yym1275 + yym1328 := z.EncBinary() + _ = yym1328 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1276 := !z.EncBinary() - yy2arr1276 := z.EncBasicHandle().StructToArray - var yyq1276 [2]bool - _, _, _ = yysep1276, yyq1276, yy2arr1276 - const yyr1276 bool = false - var yynn1276 int - if yyr1276 || yy2arr1276 { + yysep1329 := !z.EncBinary() + yy2arr1329 := z.EncBasicHandle().StructToArray + var yyq1329 [2]bool + _, _, _ = yysep1329, yyq1329, yy2arr1329 + const yyr1329 bool = false + var yynn1329 int + if yyr1329 || yy2arr1329 { r.EncodeArrayStart(2) } else { - yynn1276 = 2 - for _, b := range yyq1276 { + yynn1329 = 2 + for _, b := range yyq1329 { if b { - yynn1276++ + yynn1329++ } } - r.EncodeMapStart(yynn1276) - yynn1276 = 0 + r.EncodeMapStart(yynn1329) + yynn1329 = 0 } - if yyr1276 || yy2arr1276 { + if yyr1329 || yy2arr1329 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1278 := z.EncBinary() - _ = yym1278 + yym1331 := z.EncBinary() + _ = yym1331 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17742,17 +18449,17 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1279 := z.EncBinary() - _ = yym1279 + yym1332 := z.EncBinary() + _ = yym1332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1276 || yy2arr1276 { + if yyr1329 || yy2arr1329 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1281 := z.EncBinary() - _ = yym1281 + yym1334 := z.EncBinary() + _ = yym1334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -17761,14 +18468,14 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1282 := z.EncBinary() - _ = yym1282 + yym1335 := z.EncBinary() + _ = yym1335 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1276 || yy2arr1276 { + if yyr1329 || yy2arr1329 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17781,25 +18488,25 @@ func (x *SecretKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1283 := z.DecBinary() - _ = yym1283 + yym1336 := z.DecBinary() + _ = yym1336 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1284 := r.ContainerType() - if yyct1284 == codecSelferValueTypeMap1234 { - yyl1284 := r.ReadMapStart() - if yyl1284 == 0 { + yyct1337 := r.ContainerType() + if yyct1337 == codecSelferValueTypeMap1234 { + yyl1337 := r.ReadMapStart() + if yyl1337 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1284, d) + x.codecDecodeSelfFromMap(yyl1337, d) } - } else if yyct1284 == codecSelferValueTypeArray1234 { - yyl1284 := r.ReadArrayStart() - if yyl1284 == 0 { + } else if yyct1337 == codecSelferValueTypeArray1234 { + yyl1337 := r.ReadArrayStart() + if yyl1337 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1284, d) + x.codecDecodeSelfFromArray(yyl1337, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17811,12 +18518,12 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1285Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1285Slc - var yyhl1285 bool = l >= 0 - for yyj1285 := 0; ; yyj1285++ { - if yyhl1285 { - if yyj1285 >= l { + var yys1338Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1338Slc + var yyhl1338 bool = l >= 0 + for yyj1338 := 0; ; yyj1338++ { + if yyhl1338 { + if yyj1338 >= l { break } } else { @@ -17825,10 +18532,10 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1285Slc = r.DecodeBytes(yys1285Slc, true, true) - yys1285 := string(yys1285Slc) + yys1338Slc = r.DecodeBytes(yys1338Slc, true, true) + yys1338 := string(yys1338Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1285 { + switch yys1338 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -17842,9 +18549,9 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Key = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1285) - } // end switch yys1285 - } // end for yyj1285 + z.DecStructFieldNotFound(-1, yys1338) + } // end switch yys1338 + } // end for yyj1338 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17852,16 +18559,16 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1288 int - var yyb1288 bool - var yyhl1288 bool = l >= 0 - yyj1288++ - if yyhl1288 { - yyb1288 = yyj1288 > l + var yyj1341 int + var yyb1341 bool + var yyhl1341 bool = l >= 0 + yyj1341++ + if yyhl1341 { + yyb1341 = yyj1341 > l } else { - yyb1288 = r.CheckBreak() + yyb1341 = r.CheckBreak() } - if yyb1288 { + if yyb1341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17871,13 +18578,13 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Name = string(r.DecodeString()) } - yyj1288++ - if yyhl1288 { - yyb1288 = yyj1288 > l + yyj1341++ + if yyhl1341 { + yyb1341 = yyj1341 > l } else { - yyb1288 = r.CheckBreak() + yyb1341 = r.CheckBreak() } - if yyb1288 { + if yyb1341 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17888,17 +18595,17 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.Key = string(r.DecodeString()) } for { - yyj1288++ - if yyhl1288 { - yyb1288 = yyj1288 > l + yyj1341++ + if yyhl1341 { + yyb1341 = yyj1341 > l } else { - yyb1288 = r.CheckBreak() + yyb1341 = r.CheckBreak() } - if yyb1288 { + if yyb1341 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1288-1, "") + z.DecStructFieldNotFound(yyj1341-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17910,33 +18617,33 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1291 := z.EncBinary() - _ = yym1291 + yym1344 := z.EncBinary() + _ = yym1344 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1292 := !z.EncBinary() - yy2arr1292 := z.EncBasicHandle().StructToArray - var yyq1292 [2]bool - _, _, _ = yysep1292, yyq1292, yy2arr1292 - const yyr1292 bool = false - var yynn1292 int - if yyr1292 || yy2arr1292 { + yysep1345 := !z.EncBinary() + yy2arr1345 := z.EncBasicHandle().StructToArray + var yyq1345 [2]bool + _, _, _ = yysep1345, yyq1345, yy2arr1345 + const yyr1345 bool = false + var yynn1345 int + if yyr1345 || yy2arr1345 { r.EncodeArrayStart(2) } else { - yynn1292 = 2 - for _, b := range yyq1292 { + yynn1345 = 2 + for _, b := range yyq1345 { if b { - yynn1292++ + yynn1345++ } } - r.EncodeMapStart(yynn1292) - yynn1292 = 0 + r.EncodeMapStart(yynn1345) + yynn1345 = 0 } - if yyr1292 || yy2arr1292 { + if yyr1345 || yy2arr1345 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1294 := z.EncBinary() - _ = yym1294 + yym1347 := z.EncBinary() + _ = yym1347 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17945,17 +18652,17 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1295 := z.EncBinary() - _ = yym1295 + yym1348 := z.EncBinary() + _ = yym1348 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1292 || yy2arr1292 { + if yyr1345 || yy2arr1345 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1297 := z.EncBinary() - _ = yym1297 + yym1350 := z.EncBinary() + _ = yym1350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -17964,14 +18671,14 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1298 := z.EncBinary() - _ = yym1298 + yym1351 := z.EncBinary() + _ = yym1351 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } - if yyr1292 || yy2arr1292 { + if yyr1345 || yy2arr1345 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17984,25 +18691,25 @@ func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1299 := z.DecBinary() - _ = yym1299 + yym1352 := z.DecBinary() + _ = yym1352 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1300 := r.ContainerType() - if yyct1300 == codecSelferValueTypeMap1234 { - yyl1300 := r.ReadMapStart() - if yyl1300 == 0 { + yyct1353 := r.ContainerType() + if yyct1353 == codecSelferValueTypeMap1234 { + yyl1353 := r.ReadMapStart() + if yyl1353 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1300, d) + x.codecDecodeSelfFromMap(yyl1353, d) } - } else if yyct1300 == codecSelferValueTypeArray1234 { - yyl1300 := r.ReadArrayStart() - if yyl1300 == 0 { + } else if yyct1353 == codecSelferValueTypeArray1234 { + yyl1353 := r.ReadArrayStart() + if yyl1353 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1300, d) + x.codecDecodeSelfFromArray(yyl1353, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18014,12 +18721,12 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1301Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1301Slc - var yyhl1301 bool = l >= 0 - for yyj1301 := 0; ; yyj1301++ { - if yyhl1301 { - if yyj1301 >= l { + var yys1354Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1354Slc + var yyhl1354 bool = l >= 0 + for yyj1354 := 0; ; yyj1354++ { + if yyhl1354 { + if yyj1354 >= l { break } } else { @@ -18028,10 +18735,10 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1301Slc = r.DecodeBytes(yys1301Slc, true, true) - yys1301 := string(yys1301Slc) + yys1354Slc = r.DecodeBytes(yys1354Slc, true, true) + yys1354 := string(yys1354Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1301 { + switch yys1354 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -18045,9 +18752,9 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1301) - } // end switch yys1301 - } // end for yyj1301 + z.DecStructFieldNotFound(-1, yys1354) + } // end switch yys1354 + } // end for yyj1354 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18055,16 +18762,16 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1304 int - var yyb1304 bool - var yyhl1304 bool = l >= 0 - yyj1304++ - if yyhl1304 { - yyb1304 = yyj1304 > l + var yyj1357 int + var yyb1357 bool + var yyhl1357 bool = l >= 0 + yyj1357++ + if yyhl1357 { + yyb1357 = yyj1357 > l } else { - yyb1304 = r.CheckBreak() + yyb1357 = r.CheckBreak() } - if yyb1304 { + if yyb1357 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18074,13 +18781,13 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1304++ - if yyhl1304 { - yyb1304 = yyj1304 > l + yyj1357++ + if yyhl1357 { + yyb1357 = yyj1357 > l } else { - yyb1304 = r.CheckBreak() + yyb1357 = r.CheckBreak() } - if yyb1304 { + if yyb1357 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18091,17 +18798,17 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } for { - yyj1304++ - if yyhl1304 { - yyb1304 = yyj1304 > l + yyj1357++ + if yyhl1357 { + yyb1357 = yyj1357 > l } else { - yyb1304 = r.CheckBreak() + yyb1357 = r.CheckBreak() } - if yyb1304 { + if yyb1357 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1304-1, "") + z.DecStructFieldNotFound(yyj1357-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18113,39 +18820,39 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1307 := z.EncBinary() - _ = yym1307 + yym1360 := z.EncBinary() + _ = yym1360 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1308 := !z.EncBinary() - yy2arr1308 := z.EncBasicHandle().StructToArray - var yyq1308 [5]bool - _, _, _ = yysep1308, yyq1308, yy2arr1308 - const yyr1308 bool = false - yyq1308[0] = x.Path != "" - yyq1308[1] = true - yyq1308[2] = x.Host != "" - yyq1308[3] = x.Scheme != "" - yyq1308[4] = len(x.HTTPHeaders) != 0 - var yynn1308 int - if yyr1308 || yy2arr1308 { + yysep1361 := !z.EncBinary() + yy2arr1361 := z.EncBasicHandle().StructToArray + var yyq1361 [5]bool + _, _, _ = yysep1361, yyq1361, yy2arr1361 + const yyr1361 bool = false + yyq1361[0] = x.Path != "" + yyq1361[1] = true + yyq1361[2] = x.Host != "" + yyq1361[3] = x.Scheme != "" + yyq1361[4] = len(x.HTTPHeaders) != 0 + var yynn1361 int + if yyr1361 || yy2arr1361 { r.EncodeArrayStart(5) } else { - yynn1308 = 0 - for _, b := range yyq1308 { + yynn1361 = 0 + for _, b := range yyq1361 { if b { - yynn1308++ + yynn1361++ } } - r.EncodeMapStart(yynn1308) - yynn1308 = 0 + r.EncodeMapStart(yynn1361) + yynn1361 = 0 } - if yyr1308 || yy2arr1308 { + if yyr1361 || yy2arr1361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1308[0] { - yym1310 := z.EncBinary() - _ = yym1310 + if yyq1361[0] { + yym1363 := z.EncBinary() + _ = yym1363 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -18154,56 +18861,56 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1308[0] { + if yyq1361[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1311 := z.EncBinary() - _ = yym1311 + yym1364 := z.EncBinary() + _ = yym1364 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr1308 || yy2arr1308 { + if yyr1361 || yy2arr1361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1308[1] { - yy1313 := &x.Port - yym1314 := z.EncBinary() - _ = yym1314 + if yyq1361[1] { + yy1366 := &x.Port + yym1367 := z.EncBinary() + _ = yym1367 if false { - } else if z.HasExtensions() && z.EncExt(yy1313) { - } else if !yym1314 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1313) + } else if z.HasExtensions() && z.EncExt(yy1366) { + } else if !yym1367 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1366) } else { - z.EncFallback(yy1313) + z.EncFallback(yy1366) } } else { r.EncodeNil() } } else { - if yyq1308[1] { + if yyq1361[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1315 := &x.Port - yym1316 := z.EncBinary() - _ = yym1316 + yy1368 := &x.Port + yym1369 := z.EncBinary() + _ = yym1369 if false { - } else if z.HasExtensions() && z.EncExt(yy1315) { - } else if !yym1316 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1315) + } else if z.HasExtensions() && z.EncExt(yy1368) { + } else if !yym1369 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1368) } else { - z.EncFallback(yy1315) + z.EncFallback(yy1368) } } } - if yyr1308 || yy2arr1308 { + if yyr1361 || yy2arr1361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1308[2] { - yym1318 := z.EncBinary() - _ = yym1318 + if yyq1361[2] { + yym1371 := z.EncBinary() + _ = yym1371 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -18212,41 +18919,41 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1308[2] { + if yyq1361[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1319 := z.EncBinary() - _ = yym1319 + yym1372 := z.EncBinary() + _ = yym1372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr1308 || yy2arr1308 { + if yyr1361 || yy2arr1361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1308[3] { + if yyq1361[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1308[3] { + if yyq1361[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr1308 || yy2arr1308 { + if yyr1361 || yy2arr1361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1308[4] { + if yyq1361[4] { if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1322 := z.EncBinary() - _ = yym1322 + yym1375 := z.EncBinary() + _ = yym1375 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -18256,15 +18963,15 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1308[4] { + if yyq1361[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1323 := z.EncBinary() - _ = yym1323 + yym1376 := z.EncBinary() + _ = yym1376 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -18272,7 +18979,7 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1308 || yy2arr1308 { + if yyr1361 || yy2arr1361 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18285,25 +18992,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1324 := z.DecBinary() - _ = yym1324 + yym1377 := z.DecBinary() + _ = yym1377 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1325 := r.ContainerType() - if yyct1325 == codecSelferValueTypeMap1234 { - yyl1325 := r.ReadMapStart() - if yyl1325 == 0 { + yyct1378 := r.ContainerType() + if yyct1378 == codecSelferValueTypeMap1234 { + yyl1378 := r.ReadMapStart() + if yyl1378 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1325, d) + x.codecDecodeSelfFromMap(yyl1378, d) } - } else if yyct1325 == codecSelferValueTypeArray1234 { - yyl1325 := r.ReadArrayStart() - if yyl1325 == 0 { + } else if yyct1378 == codecSelferValueTypeArray1234 { + yyl1378 := r.ReadArrayStart() + if yyl1378 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1325, d) + x.codecDecodeSelfFromArray(yyl1378, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18315,12 +19022,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1326Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1326Slc - var yyhl1326 bool = l >= 0 - for yyj1326 := 0; ; yyj1326++ { - if yyhl1326 { - if yyj1326 >= l { + var yys1379Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1379Slc + var yyhl1379 bool = l >= 0 + for yyj1379 := 0; ; yyj1379++ { + if yyhl1379 { + if yyj1379 >= l { break } } else { @@ -18329,10 +19036,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1326Slc = r.DecodeBytes(yys1326Slc, true, true) - yys1326 := string(yys1326Slc) + yys1379Slc = r.DecodeBytes(yys1379Slc, true, true) + yys1379 := string(yys1379Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1326 { + switch yys1379 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -18343,15 +19050,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1328 := &x.Port - yym1329 := z.DecBinary() - _ = yym1329 + yyv1381 := &x.Port + yym1382 := z.DecBinary() + _ = yym1382 if false { - } else if z.HasExtensions() && z.DecExt(yyv1328) { - } else if !yym1329 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1328) + } else if z.HasExtensions() && z.DecExt(yyv1381) { + } else if !yym1382 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1381) } else { - z.DecFallback(yyv1328, false) + z.DecFallback(yyv1381, false) } } case "host": @@ -18370,18 +19077,18 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1332 := &x.HTTPHeaders - yym1333 := z.DecBinary() - _ = yym1333 + yyv1385 := &x.HTTPHeaders + yym1386 := z.DecBinary() + _ = yym1386 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1332), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1385), d) } } default: - z.DecStructFieldNotFound(-1, yys1326) - } // end switch yys1326 - } // end for yyj1326 + z.DecStructFieldNotFound(-1, yys1379) + } // end switch yys1379 + } // end for yyj1379 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18389,16 +19096,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1334 int - var yyb1334 bool - var yyhl1334 bool = l >= 0 - yyj1334++ - if yyhl1334 { - yyb1334 = yyj1334 > l + var yyj1387 int + var yyb1387 bool + var yyhl1387 bool = l >= 0 + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1334 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1334 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18408,13 +19115,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1334++ - if yyhl1334 { - yyb1334 = yyj1334 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1334 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1334 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18422,24 +19129,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1336 := &x.Port - yym1337 := z.DecBinary() - _ = yym1337 + yyv1389 := &x.Port + yym1390 := z.DecBinary() + _ = yym1390 if false { - } else if z.HasExtensions() && z.DecExt(yyv1336) { - } else if !yym1337 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1336) + } else if z.HasExtensions() && z.DecExt(yyv1389) { + } else if !yym1390 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1389) } else { - z.DecFallback(yyv1336, false) + z.DecFallback(yyv1389, false) } } - yyj1334++ - if yyhl1334 { - yyb1334 = yyj1334 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1334 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1334 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18449,13 +19156,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1334++ - if yyhl1334 { - yyb1334 = yyj1334 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1334 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1334 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18465,13 +19172,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - yyj1334++ - if yyhl1334 { - yyb1334 = yyj1334 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1334 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1334 { + if yyb1387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18479,26 +19186,26 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1340 := &x.HTTPHeaders - yym1341 := z.DecBinary() - _ = yym1341 + yyv1393 := &x.HTTPHeaders + yym1394 := z.DecBinary() + _ = yym1394 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1340), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1393), d) } } for { - yyj1334++ - if yyhl1334 { - yyb1334 = yyj1334 > l + yyj1387++ + if yyhl1387 { + yyb1387 = yyj1387 > l } else { - yyb1334 = r.CheckBreak() + yyb1387 = r.CheckBreak() } - if yyb1334 { + if yyb1387 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1334-1, "") + z.DecStructFieldNotFound(yyj1387-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18507,8 +19214,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1342 := z.EncBinary() - _ = yym1342 + yym1395 := z.EncBinary() + _ = yym1395 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18520,8 +19227,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1343 := z.DecBinary() - _ = yym1343 + yym1396 := z.DecBinary() + _ = yym1396 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18536,64 +19243,64 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1344 := z.EncBinary() - _ = yym1344 + yym1397 := z.EncBinary() + _ = yym1397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1345 := !z.EncBinary() - yy2arr1345 := z.EncBasicHandle().StructToArray - var yyq1345 [1]bool - _, _, _ = yysep1345, yyq1345, yy2arr1345 - const yyr1345 bool = false - yyq1345[0] = true - var yynn1345 int - if yyr1345 || yy2arr1345 { + yysep1398 := !z.EncBinary() + yy2arr1398 := z.EncBasicHandle().StructToArray + var yyq1398 [1]bool + _, _, _ = yysep1398, yyq1398, yy2arr1398 + const yyr1398 bool = false + yyq1398[0] = true + var yynn1398 int + if yyr1398 || yy2arr1398 { r.EncodeArrayStart(1) } else { - yynn1345 = 0 - for _, b := range yyq1345 { + yynn1398 = 0 + for _, b := range yyq1398 { if b { - yynn1345++ + yynn1398++ } } - r.EncodeMapStart(yynn1345) - yynn1345 = 0 + r.EncodeMapStart(yynn1398) + yynn1398 = 0 } - if yyr1345 || yy2arr1345 { + if yyr1398 || yy2arr1398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1345[0] { - yy1347 := &x.Port - yym1348 := z.EncBinary() - _ = yym1348 + if yyq1398[0] { + yy1400 := &x.Port + yym1401 := z.EncBinary() + _ = yym1401 if false { - } else if z.HasExtensions() && z.EncExt(yy1347) { - } else if !yym1348 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1347) + } else if z.HasExtensions() && z.EncExt(yy1400) { + } else if !yym1401 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1400) } else { - z.EncFallback(yy1347) + z.EncFallback(yy1400) } } else { r.EncodeNil() } } else { - if yyq1345[0] { + if yyq1398[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1349 := &x.Port - yym1350 := z.EncBinary() - _ = yym1350 + yy1402 := &x.Port + yym1403 := z.EncBinary() + _ = yym1403 if false { - } else if z.HasExtensions() && z.EncExt(yy1349) { - } else if !yym1350 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1349) + } else if z.HasExtensions() && z.EncExt(yy1402) { + } else if !yym1403 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1402) } else { - z.EncFallback(yy1349) + z.EncFallback(yy1402) } } } - if yyr1345 || yy2arr1345 { + if yyr1398 || yy2arr1398 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18606,25 +19313,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1351 := z.DecBinary() - _ = yym1351 + yym1404 := z.DecBinary() + _ = yym1404 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1352 := r.ContainerType() - if yyct1352 == codecSelferValueTypeMap1234 { - yyl1352 := r.ReadMapStart() - if yyl1352 == 0 { + yyct1405 := r.ContainerType() + if yyct1405 == codecSelferValueTypeMap1234 { + yyl1405 := r.ReadMapStart() + if yyl1405 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1352, d) + x.codecDecodeSelfFromMap(yyl1405, d) } - } else if yyct1352 == codecSelferValueTypeArray1234 { - yyl1352 := r.ReadArrayStart() - if yyl1352 == 0 { + } else if yyct1405 == codecSelferValueTypeArray1234 { + yyl1405 := r.ReadArrayStart() + if yyl1405 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1352, d) + x.codecDecodeSelfFromArray(yyl1405, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18636,12 +19343,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1353Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1353Slc - var yyhl1353 bool = l >= 0 - for yyj1353 := 0; ; yyj1353++ { - if yyhl1353 { - if yyj1353 >= l { + var yys1406Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1406Slc + var yyhl1406 bool = l >= 0 + for yyj1406 := 0; ; yyj1406++ { + if yyhl1406 { + if yyj1406 >= l { break } } else { @@ -18650,29 +19357,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1353Slc = r.DecodeBytes(yys1353Slc, true, true) - yys1353 := string(yys1353Slc) + yys1406Slc = r.DecodeBytes(yys1406Slc, true, true) + yys1406 := string(yys1406Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1353 { + switch yys1406 { case "port": if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1354 := &x.Port - yym1355 := z.DecBinary() - _ = yym1355 + yyv1407 := &x.Port + yym1408 := z.DecBinary() + _ = yym1408 if false { - } else if z.HasExtensions() && z.DecExt(yyv1354) { - } else if !yym1355 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1354) + } else if z.HasExtensions() && z.DecExt(yyv1407) { + } else if !yym1408 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1407) } else { - z.DecFallback(yyv1354, false) + z.DecFallback(yyv1407, false) } } default: - z.DecStructFieldNotFound(-1, yys1353) - } // end switch yys1353 - } // end for yyj1353 + z.DecStructFieldNotFound(-1, yys1406) + } // end switch yys1406 + } // end for yyj1406 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18680,16 +19387,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1356 int - var yyb1356 bool - var yyhl1356 bool = l >= 0 - yyj1356++ - if yyhl1356 { - yyb1356 = yyj1356 > l + var yyj1409 int + var yyb1409 bool + var yyhl1409 bool = l >= 0 + yyj1409++ + if yyhl1409 { + yyb1409 = yyj1409 > l } else { - yyb1356 = r.CheckBreak() + yyb1409 = r.CheckBreak() } - if yyb1356 { + if yyb1409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18697,29 +19404,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1357 := &x.Port - yym1358 := z.DecBinary() - _ = yym1358 + yyv1410 := &x.Port + yym1411 := z.DecBinary() + _ = yym1411 if false { - } else if z.HasExtensions() && z.DecExt(yyv1357) { - } else if !yym1358 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1357) + } else if z.HasExtensions() && z.DecExt(yyv1410) { + } else if !yym1411 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1410) } else { - z.DecFallback(yyv1357, false) + z.DecFallback(yyv1410, false) } } for { - yyj1356++ - if yyhl1356 { - yyb1356 = yyj1356 > l + yyj1409++ + if yyhl1409 { + yyb1409 = yyj1409 > l } else { - yyb1356 = r.CheckBreak() + yyb1409 = r.CheckBreak() } - if yyb1356 { + if yyb1409 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1356-1, "") + z.DecStructFieldNotFound(yyj1409-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18731,38 +19438,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1359 := z.EncBinary() - _ = yym1359 + yym1412 := z.EncBinary() + _ = yym1412 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1360 := !z.EncBinary() - yy2arr1360 := z.EncBasicHandle().StructToArray - var yyq1360 [1]bool - _, _, _ = yysep1360, yyq1360, yy2arr1360 - const yyr1360 bool = false - yyq1360[0] = len(x.Command) != 0 - var yynn1360 int - if yyr1360 || yy2arr1360 { + yysep1413 := !z.EncBinary() + yy2arr1413 := z.EncBasicHandle().StructToArray + var yyq1413 [1]bool + _, _, _ = yysep1413, yyq1413, yy2arr1413 + const yyr1413 bool = false + yyq1413[0] = len(x.Command) != 0 + var yynn1413 int + if yyr1413 || yy2arr1413 { r.EncodeArrayStart(1) } else { - yynn1360 = 0 - for _, b := range yyq1360 { + yynn1413 = 0 + for _, b := range yyq1413 { if b { - yynn1360++ + yynn1413++ } } - r.EncodeMapStart(yynn1360) - yynn1360 = 0 + r.EncodeMapStart(yynn1413) + yynn1413 = 0 } - if yyr1360 || yy2arr1360 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1360[0] { + if yyq1413[0] { if x.Command == nil { r.EncodeNil() } else { - yym1362 := z.EncBinary() - _ = yym1362 + yym1415 := z.EncBinary() + _ = yym1415 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18772,15 +19479,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1360[0] { + if yyq1413[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1363 := z.EncBinary() - _ = yym1363 + yym1416 := z.EncBinary() + _ = yym1416 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18788,7 +19495,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1360 || yy2arr1360 { + if yyr1413 || yy2arr1413 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18801,25 +19508,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1364 := z.DecBinary() - _ = yym1364 + yym1417 := z.DecBinary() + _ = yym1417 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1365 := r.ContainerType() - if yyct1365 == codecSelferValueTypeMap1234 { - yyl1365 := r.ReadMapStart() - if yyl1365 == 0 { + yyct1418 := r.ContainerType() + if yyct1418 == codecSelferValueTypeMap1234 { + yyl1418 := r.ReadMapStart() + if yyl1418 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1365, d) + x.codecDecodeSelfFromMap(yyl1418, d) } - } else if yyct1365 == codecSelferValueTypeArray1234 { - yyl1365 := r.ReadArrayStart() - if yyl1365 == 0 { + } else if yyct1418 == codecSelferValueTypeArray1234 { + yyl1418 := r.ReadArrayStart() + if yyl1418 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1365, d) + x.codecDecodeSelfFromArray(yyl1418, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18831,12 +19538,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1366Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1366Slc - var yyhl1366 bool = l >= 0 - for yyj1366 := 0; ; yyj1366++ { - if yyhl1366 { - if yyj1366 >= l { + var yys1419Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1419Slc + var yyhl1419 bool = l >= 0 + for yyj1419 := 0; ; yyj1419++ { + if yyhl1419 { + if yyj1419 >= l { break } } else { @@ -18845,26 +19552,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1366Slc = r.DecodeBytes(yys1366Slc, true, true) - yys1366 := string(yys1366Slc) + yys1419Slc = r.DecodeBytes(yys1419Slc, true, true) + yys1419 := string(yys1419Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1366 { + switch yys1419 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1367 := &x.Command - yym1368 := z.DecBinary() - _ = yym1368 + yyv1420 := &x.Command + yym1421 := z.DecBinary() + _ = yym1421 if false { } else { - z.F.DecSliceStringX(yyv1367, false, d) + z.F.DecSliceStringX(yyv1420, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1366) - } // end switch yys1366 - } // end for yyj1366 + z.DecStructFieldNotFound(-1, yys1419) + } // end switch yys1419 + } // end for yyj1419 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18872,16 +19579,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1369 int - var yyb1369 bool - var yyhl1369 bool = l >= 0 - yyj1369++ - if yyhl1369 { - yyb1369 = yyj1369 > l + var yyj1422 int + var yyb1422 bool + var yyhl1422 bool = l >= 0 + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1369 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1369 { + if yyb1422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18889,26 +19596,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1370 := &x.Command - yym1371 := z.DecBinary() - _ = yym1371 + yyv1423 := &x.Command + yym1424 := z.DecBinary() + _ = yym1424 if false { } else { - z.F.DecSliceStringX(yyv1370, false, d) + z.F.DecSliceStringX(yyv1423, false, d) } } for { - yyj1369++ - if yyhl1369 { - yyb1369 = yyj1369 > l + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1369 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1369 { + if yyb1422 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1369-1, "") + z.DecStructFieldNotFound(yyj1422-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18920,49 +19627,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1372 := z.EncBinary() - _ = yym1372 + yym1425 := z.EncBinary() + _ = yym1425 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1373 := !z.EncBinary() - yy2arr1373 := z.EncBasicHandle().StructToArray - var yyq1373 [8]bool - _, _, _ = yysep1373, yyq1373, yy2arr1373 - const yyr1373 bool = false - yyq1373[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1373[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1373[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1373[3] = x.InitialDelaySeconds != 0 - yyq1373[4] = x.TimeoutSeconds != 0 - yyq1373[5] = x.PeriodSeconds != 0 - yyq1373[6] = x.SuccessThreshold != 0 - yyq1373[7] = x.FailureThreshold != 0 - var yynn1373 int - if yyr1373 || yy2arr1373 { + yysep1426 := !z.EncBinary() + yy2arr1426 := z.EncBasicHandle().StructToArray + var yyq1426 [8]bool + _, _, _ = yysep1426, yyq1426, yy2arr1426 + const yyr1426 bool = false + yyq1426[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1426[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1426[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1426[3] = x.InitialDelaySeconds != 0 + yyq1426[4] = x.TimeoutSeconds != 0 + yyq1426[5] = x.PeriodSeconds != 0 + yyq1426[6] = x.SuccessThreshold != 0 + yyq1426[7] = x.FailureThreshold != 0 + var yynn1426 int + if yyr1426 || yy2arr1426 { r.EncodeArrayStart(8) } else { - yynn1373 = 0 - for _, b := range yyq1373 { + yynn1426 = 0 + for _, b := range yyq1426 { if b { - yynn1373++ + yynn1426++ } } - r.EncodeMapStart(yynn1373) - yynn1373 = 0 + r.EncodeMapStart(yynn1426) + yynn1426 = 0 } - var yyn1374 bool + var yyn1427 bool if x.Handler.Exec == nil { - yyn1374 = true - goto LABEL1374 + yyn1427 = true + goto LABEL1427 } - LABEL1374: - if yyr1373 || yy2arr1373 { - if yyn1374 { + LABEL1427: + if yyr1426 || yy2arr1426 { + if yyn1427 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[0] { + if yyq1426[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -18973,11 +19680,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1373[0] { + if yyq1426[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1374 { + if yyn1427 { r.EncodeNil() } else { if x.Exec == nil { @@ -18988,18 +19695,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1375 bool + var yyn1428 bool if x.Handler.HTTPGet == nil { - yyn1375 = true - goto LABEL1375 + yyn1428 = true + goto LABEL1428 } - LABEL1375: - if yyr1373 || yy2arr1373 { - if yyn1375 { + LABEL1428: + if yyr1426 || yy2arr1426 { + if yyn1428 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[1] { + if yyq1426[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -19010,11 +19717,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1373[1] { + if yyq1426[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1375 { + if yyn1428 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -19025,18 +19732,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1376 bool + var yyn1429 bool if x.Handler.TCPSocket == nil { - yyn1376 = true - goto LABEL1376 + yyn1429 = true + goto LABEL1429 } - LABEL1376: - if yyr1373 || yy2arr1373 { - if yyn1376 { + LABEL1429: + if yyr1426 || yy2arr1426 { + if yyn1429 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[2] { + if yyq1426[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -19047,11 +19754,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1373[2] { + if yyq1426[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1376 { + if yyn1429 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -19062,11 +19769,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1373 || yy2arr1373 { + if yyr1426 || yy2arr1426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[3] { - yym1378 := z.EncBinary() - _ = yym1378 + if yyq1426[3] { + yym1431 := z.EncBinary() + _ = yym1431 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -19075,23 +19782,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1373[3] { + if yyq1426[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1379 := z.EncBinary() - _ = yym1379 + yym1432 := z.EncBinary() + _ = yym1432 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1373 || yy2arr1373 { + if yyr1426 || yy2arr1426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[4] { - yym1381 := z.EncBinary() - _ = yym1381 + if yyq1426[4] { + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -19100,23 +19807,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1373[4] { + if yyq1426[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1382 := z.EncBinary() - _ = yym1382 + yym1435 := z.EncBinary() + _ = yym1435 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1373 || yy2arr1373 { + if yyr1426 || yy2arr1426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[5] { - yym1384 := z.EncBinary() - _ = yym1384 + if yyq1426[5] { + yym1437 := z.EncBinary() + _ = yym1437 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -19125,23 +19832,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1373[5] { + if yyq1426[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1385 := z.EncBinary() - _ = yym1385 + yym1438 := z.EncBinary() + _ = yym1438 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1373 || yy2arr1373 { + if yyr1426 || yy2arr1426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[6] { - yym1387 := z.EncBinary() - _ = yym1387 + if yyq1426[6] { + yym1440 := z.EncBinary() + _ = yym1440 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -19150,23 +19857,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1373[6] { + if yyq1426[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1388 := z.EncBinary() - _ = yym1388 + yym1441 := z.EncBinary() + _ = yym1441 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1373 || yy2arr1373 { + if yyr1426 || yy2arr1426 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1373[7] { - yym1390 := z.EncBinary() - _ = yym1390 + if yyq1426[7] { + yym1443 := z.EncBinary() + _ = yym1443 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -19175,19 +19882,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1373[7] { + if yyq1426[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1391 := z.EncBinary() - _ = yym1391 + yym1444 := z.EncBinary() + _ = yym1444 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1373 || yy2arr1373 { + if yyr1426 || yy2arr1426 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19200,25 +19907,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1392 := z.DecBinary() - _ = yym1392 + yym1445 := z.DecBinary() + _ = yym1445 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1393 := r.ContainerType() - if yyct1393 == codecSelferValueTypeMap1234 { - yyl1393 := r.ReadMapStart() - if yyl1393 == 0 { + yyct1446 := r.ContainerType() + if yyct1446 == codecSelferValueTypeMap1234 { + yyl1446 := r.ReadMapStart() + if yyl1446 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1393, d) + x.codecDecodeSelfFromMap(yyl1446, d) } - } else if yyct1393 == codecSelferValueTypeArray1234 { - yyl1393 := r.ReadArrayStart() - if yyl1393 == 0 { + } else if yyct1446 == codecSelferValueTypeArray1234 { + yyl1446 := r.ReadArrayStart() + if yyl1446 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1393, d) + x.codecDecodeSelfFromArray(yyl1446, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19230,12 +19937,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { 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 yys1447Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1447Slc + var yyhl1447 bool = l >= 0 + for yyj1447 := 0; ; yyj1447++ { + if yyhl1447 { + if yyj1447 >= l { break } } else { @@ -19244,10 +19951,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1394Slc = r.DecodeBytes(yys1394Slc, true, true) - yys1394 := string(yys1394Slc) + yys1447Slc = r.DecodeBytes(yys1447Slc, true, true) + yys1447 := string(yys1447Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1394 { + switch yys1447 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -19321,9 +20028,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1394) - } // end switch yys1394 - } // end for yyj1394 + z.DecStructFieldNotFound(-1, yys1447) + } // end switch yys1447 + } // end for yyj1447 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19331,19 +20038,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1403 int - var yyb1403 bool - var yyhl1403 bool = l >= 0 + var yyj1456 int + var yyb1456 bool + var yyhl1456 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19361,13 +20068,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19385,13 +20092,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19406,13 +20113,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19422,13 +20129,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19438,13 +20145,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19454,13 +20161,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19470,13 +20177,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19487,17 +20194,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1403++ - if yyhl1403 { - yyb1403 = yyj1403 > l + yyj1456++ + if yyhl1456 { + yyb1456 = yyj1456 > l } else { - yyb1403 = r.CheckBreak() + yyb1456 = r.CheckBreak() } - if yyb1403 { + if yyb1456 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1403-1, "") + z.DecStructFieldNotFound(yyj1456-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19506,8 +20213,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1412 := z.EncBinary() - _ = yym1412 + yym1465 := z.EncBinary() + _ = yym1465 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19519,8 +20226,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1413 := z.DecBinary() - _ = yym1413 + yym1466 := z.DecBinary() + _ = yym1466 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19532,8 +20239,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1414 := z.EncBinary() - _ = yym1414 + yym1467 := z.EncBinary() + _ = yym1467 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19545,8 +20252,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1415 := z.DecBinary() - _ = yym1415 + yym1468 := z.DecBinary() + _ = yym1468 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19561,39 +20268,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1416 := z.EncBinary() - _ = yym1416 + yym1469 := z.EncBinary() + _ = yym1469 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1417 := !z.EncBinary() - yy2arr1417 := z.EncBasicHandle().StructToArray - var yyq1417 [2]bool - _, _, _ = yysep1417, yyq1417, yy2arr1417 - const yyr1417 bool = false - yyq1417[0] = len(x.Add) != 0 - yyq1417[1] = len(x.Drop) != 0 - var yynn1417 int - if yyr1417 || yy2arr1417 { + yysep1470 := !z.EncBinary() + yy2arr1470 := z.EncBasicHandle().StructToArray + var yyq1470 [2]bool + _, _, _ = yysep1470, yyq1470, yy2arr1470 + const yyr1470 bool = false + yyq1470[0] = len(x.Add) != 0 + yyq1470[1] = len(x.Drop) != 0 + var yynn1470 int + if yyr1470 || yy2arr1470 { r.EncodeArrayStart(2) } else { - yynn1417 = 0 - for _, b := range yyq1417 { + yynn1470 = 0 + for _, b := range yyq1470 { if b { - yynn1417++ + yynn1470++ } } - r.EncodeMapStart(yynn1417) - yynn1417 = 0 + r.EncodeMapStart(yynn1470) + yynn1470 = 0 } - if yyr1417 || yy2arr1417 { + if yyr1470 || yy2arr1470 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1417[0] { + if yyq1470[0] { if x.Add == nil { r.EncodeNil() } else { - yym1419 := z.EncBinary() - _ = yym1419 + yym1472 := z.EncBinary() + _ = yym1472 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -19603,15 +20310,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1417[0] { + if yyq1470[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1420 := z.EncBinary() - _ = yym1420 + yym1473 := z.EncBinary() + _ = yym1473 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -19619,14 +20326,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1417 || yy2arr1417 { + if yyr1470 || yy2arr1470 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1417[1] { + if yyq1470[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1422 := z.EncBinary() - _ = yym1422 + yym1475 := z.EncBinary() + _ = yym1475 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -19636,15 +20343,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1417[1] { + if yyq1470[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1423 := z.EncBinary() - _ = yym1423 + yym1476 := z.EncBinary() + _ = yym1476 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -19652,7 +20359,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1417 || yy2arr1417 { + if yyr1470 || yy2arr1470 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19665,25 +20372,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1424 := z.DecBinary() - _ = yym1424 + yym1477 := z.DecBinary() + _ = yym1477 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1425 := r.ContainerType() - if yyct1425 == codecSelferValueTypeMap1234 { - yyl1425 := r.ReadMapStart() - if yyl1425 == 0 { + yyct1478 := r.ContainerType() + if yyct1478 == codecSelferValueTypeMap1234 { + yyl1478 := r.ReadMapStart() + if yyl1478 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1425, d) + x.codecDecodeSelfFromMap(yyl1478, d) } - } else if yyct1425 == codecSelferValueTypeArray1234 { - yyl1425 := r.ReadArrayStart() - if yyl1425 == 0 { + } else if yyct1478 == codecSelferValueTypeArray1234 { + yyl1478 := r.ReadArrayStart() + if yyl1478 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1425, d) + x.codecDecodeSelfFromArray(yyl1478, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19695,12 +20402,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1426Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1426Slc - var yyhl1426 bool = l >= 0 - for yyj1426 := 0; ; yyj1426++ { - if yyhl1426 { - if yyj1426 >= l { + var yys1479Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1479Slc + var yyhl1479 bool = l >= 0 + for yyj1479 := 0; ; yyj1479++ { + if yyhl1479 { + if yyj1479 >= l { break } } else { @@ -19709,38 +20416,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1426Slc = r.DecodeBytes(yys1426Slc, true, true) - yys1426 := string(yys1426Slc) + yys1479Slc = r.DecodeBytes(yys1479Slc, true, true) + yys1479 := string(yys1479Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1426 { + switch yys1479 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1427 := &x.Add - yym1428 := z.DecBinary() - _ = yym1428 + yyv1480 := &x.Add + yym1481 := z.DecBinary() + _ = yym1481 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1427), d) + h.decSliceCapability((*[]Capability)(yyv1480), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1429 := &x.Drop - yym1430 := z.DecBinary() - _ = yym1430 + yyv1482 := &x.Drop + yym1483 := z.DecBinary() + _ = yym1483 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1429), d) + h.decSliceCapability((*[]Capability)(yyv1482), d) } } default: - z.DecStructFieldNotFound(-1, yys1426) - } // end switch yys1426 - } // end for yyj1426 + z.DecStructFieldNotFound(-1, yys1479) + } // end switch yys1479 + } // end for yyj1479 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19748,16 +20455,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1431 int - var yyb1431 bool - var yyhl1431 bool = l >= 0 - yyj1431++ - if yyhl1431 { - yyb1431 = yyj1431 > l + var yyj1484 int + var yyb1484 bool + var yyhl1484 bool = l >= 0 + yyj1484++ + if yyhl1484 { + yyb1484 = yyj1484 > l } else { - yyb1431 = r.CheckBreak() + yyb1484 = r.CheckBreak() } - if yyb1431 { + if yyb1484 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19765,21 +20472,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1432 := &x.Add - yym1433 := z.DecBinary() - _ = yym1433 + yyv1485 := &x.Add + yym1486 := z.DecBinary() + _ = yym1486 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1432), d) + h.decSliceCapability((*[]Capability)(yyv1485), d) } } - yyj1431++ - if yyhl1431 { - yyb1431 = yyj1431 > l + yyj1484++ + if yyhl1484 { + yyb1484 = yyj1484 > l } else { - yyb1431 = r.CheckBreak() + yyb1484 = r.CheckBreak() } - if yyb1431 { + if yyb1484 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19787,26 +20494,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1434 := &x.Drop - yym1435 := z.DecBinary() - _ = yym1435 + yyv1487 := &x.Drop + yym1488 := z.DecBinary() + _ = yym1488 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1434), d) + h.decSliceCapability((*[]Capability)(yyv1487), d) } } for { - yyj1431++ - if yyhl1431 { - yyb1431 = yyj1431 > l + yyj1484++ + if yyhl1484 { + yyb1484 = yyj1484 > l } else { - yyb1431 = r.CheckBreak() + yyb1484 = r.CheckBreak() } - if yyb1431 { + if yyb1484 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1431-1, "") + z.DecStructFieldNotFound(yyj1484-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19818,34 +20525,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1436 := z.EncBinary() - _ = yym1436 + yym1489 := z.EncBinary() + _ = yym1489 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1437 := !z.EncBinary() - yy2arr1437 := z.EncBasicHandle().StructToArray - var yyq1437 [2]bool - _, _, _ = yysep1437, yyq1437, yy2arr1437 - const yyr1437 bool = false - yyq1437[0] = len(x.Limits) != 0 - yyq1437[1] = len(x.Requests) != 0 - var yynn1437 int - if yyr1437 || yy2arr1437 { + yysep1490 := !z.EncBinary() + yy2arr1490 := z.EncBasicHandle().StructToArray + var yyq1490 [2]bool + _, _, _ = yysep1490, yyq1490, yy2arr1490 + const yyr1490 bool = false + yyq1490[0] = len(x.Limits) != 0 + yyq1490[1] = len(x.Requests) != 0 + var yynn1490 int + if yyr1490 || yy2arr1490 { r.EncodeArrayStart(2) } else { - yynn1437 = 0 - for _, b := range yyq1437 { + yynn1490 = 0 + for _, b := range yyq1490 { if b { - yynn1437++ + yynn1490++ } } - r.EncodeMapStart(yynn1437) - yynn1437 = 0 + r.EncodeMapStart(yynn1490) + yynn1490 = 0 } - if yyr1437 || yy2arr1437 { + if yyr1490 || yy2arr1490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1437[0] { + if yyq1490[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -19855,7 +20562,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1437[0] { + if yyq1490[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19866,9 +20573,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1437 || yy2arr1437 { + if yyr1490 || yy2arr1490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1437[1] { + if yyq1490[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -19878,7 +20585,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1437[1] { + if yyq1490[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19889,7 +20596,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1437 || yy2arr1437 { + if yyr1490 || yy2arr1490 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19902,25 +20609,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1440 := z.DecBinary() - _ = yym1440 + yym1493 := z.DecBinary() + _ = yym1493 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1441 := r.ContainerType() - if yyct1441 == codecSelferValueTypeMap1234 { - yyl1441 := r.ReadMapStart() - if yyl1441 == 0 { + yyct1494 := r.ContainerType() + if yyct1494 == codecSelferValueTypeMap1234 { + yyl1494 := r.ReadMapStart() + if yyl1494 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1441, d) + x.codecDecodeSelfFromMap(yyl1494, d) } - } else if yyct1441 == codecSelferValueTypeArray1234 { - yyl1441 := r.ReadArrayStart() - if yyl1441 == 0 { + } else if yyct1494 == codecSelferValueTypeArray1234 { + yyl1494 := r.ReadArrayStart() + if yyl1494 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1441, d) + x.codecDecodeSelfFromArray(yyl1494, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19932,12 +20639,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1442Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1442Slc - var yyhl1442 bool = l >= 0 - for yyj1442 := 0; ; yyj1442++ { - if yyhl1442 { - if yyj1442 >= l { + var yys1495Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1495Slc + var yyhl1495 bool = l >= 0 + for yyj1495 := 0; ; yyj1495++ { + if yyhl1495 { + if yyj1495 >= l { break } } else { @@ -19946,28 +20653,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1442Slc = r.DecodeBytes(yys1442Slc, true, true) - yys1442 := string(yys1442Slc) + yys1495Slc = r.DecodeBytes(yys1495Slc, true, true) + yys1495 := string(yys1495Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1442 { + switch yys1495 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1443 := &x.Limits - yyv1443.CodecDecodeSelf(d) + yyv1496 := &x.Limits + yyv1496.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1444 := &x.Requests - yyv1444.CodecDecodeSelf(d) + yyv1497 := &x.Requests + yyv1497.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1442) - } // end switch yys1442 - } // end for yyj1442 + z.DecStructFieldNotFound(-1, yys1495) + } // end switch yys1495 + } // end for yyj1495 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19975,16 +20682,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1445 int - var yyb1445 bool - var yyhl1445 bool = l >= 0 - yyj1445++ - if yyhl1445 { - yyb1445 = yyj1445 > l + var yyj1498 int + var yyb1498 bool + var yyhl1498 bool = l >= 0 + yyj1498++ + if yyhl1498 { + yyb1498 = yyj1498 > l } else { - yyb1445 = r.CheckBreak() + yyb1498 = r.CheckBreak() } - if yyb1445 { + if yyb1498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19992,16 +20699,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1446 := &x.Limits - yyv1446.CodecDecodeSelf(d) + yyv1499 := &x.Limits + yyv1499.CodecDecodeSelf(d) } - yyj1445++ - if yyhl1445 { - yyb1445 = yyj1445 > l + yyj1498++ + if yyhl1498 { + yyb1498 = yyj1498 > l } else { - yyb1445 = r.CheckBreak() + yyb1498 = r.CheckBreak() } - if yyb1445 { + if yyb1498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20009,21 +20716,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1447 := &x.Requests - yyv1447.CodecDecodeSelf(d) + yyv1500 := &x.Requests + yyv1500.CodecDecodeSelf(d) } for { - yyj1445++ - if yyhl1445 { - yyb1445 = yyj1445 > l + yyj1498++ + if yyhl1498 { + yyb1498 = yyj1498 > l } else { - yyb1445 = r.CheckBreak() + yyb1498 = r.CheckBreak() } - if yyb1445 { + if yyb1498 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1445-1, "") + z.DecStructFieldNotFound(yyj1498-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20035,48 +20742,48 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1448 := z.EncBinary() - _ = yym1448 + yym1501 := z.EncBinary() + _ = yym1501 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1449 := !z.EncBinary() - yy2arr1449 := z.EncBasicHandle().StructToArray - var yyq1449 [18]bool - _, _, _ = yysep1449, yyq1449, yy2arr1449 - const yyr1449 bool = false - yyq1449[2] = len(x.Command) != 0 - yyq1449[3] = len(x.Args) != 0 - yyq1449[4] = x.WorkingDir != "" - yyq1449[5] = len(x.Ports) != 0 - yyq1449[6] = len(x.Env) != 0 - yyq1449[7] = true - yyq1449[8] = len(x.VolumeMounts) != 0 - yyq1449[9] = x.LivenessProbe != nil - yyq1449[10] = x.ReadinessProbe != nil - yyq1449[11] = x.Lifecycle != nil - yyq1449[12] = x.TerminationMessagePath != "" - yyq1449[14] = x.SecurityContext != nil - yyq1449[15] = x.Stdin != false - yyq1449[16] = x.StdinOnce != false - yyq1449[17] = x.TTY != false - var yynn1449 int - if yyr1449 || yy2arr1449 { + yysep1502 := !z.EncBinary() + yy2arr1502 := z.EncBasicHandle().StructToArray + var yyq1502 [18]bool + _, _, _ = yysep1502, yyq1502, yy2arr1502 + const yyr1502 bool = false + yyq1502[2] = len(x.Command) != 0 + yyq1502[3] = len(x.Args) != 0 + yyq1502[4] = x.WorkingDir != "" + yyq1502[5] = len(x.Ports) != 0 + yyq1502[6] = len(x.Env) != 0 + yyq1502[7] = true + yyq1502[8] = len(x.VolumeMounts) != 0 + yyq1502[9] = x.LivenessProbe != nil + yyq1502[10] = x.ReadinessProbe != nil + yyq1502[11] = x.Lifecycle != nil + yyq1502[12] = x.TerminationMessagePath != "" + yyq1502[14] = x.SecurityContext != nil + yyq1502[15] = x.Stdin != false + yyq1502[16] = x.StdinOnce != false + yyq1502[17] = x.TTY != false + var yynn1502 int + if yyr1502 || yy2arr1502 { r.EncodeArrayStart(18) } else { - yynn1449 = 3 - for _, b := range yyq1449 { + yynn1502 = 3 + for _, b := range yyq1502 { if b { - yynn1449++ + yynn1502++ } } - r.EncodeMapStart(yynn1449) - yynn1449 = 0 + r.EncodeMapStart(yynn1502) + yynn1502 = 0 } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1451 := z.EncBinary() - _ = yym1451 + yym1504 := z.EncBinary() + _ = yym1504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -20085,17 +20792,17 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1452 := z.EncBinary() - _ = yym1452 + yym1505 := z.EncBinary() + _ = yym1505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1454 := z.EncBinary() - _ = yym1454 + yym1507 := z.EncBinary() + _ = yym1507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -20104,21 +20811,21 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1455 := z.EncBinary() - _ = yym1455 + yym1508 := z.EncBinary() + _ = yym1508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[2] { + if yyq1502[2] { if x.Command == nil { r.EncodeNil() } else { - yym1457 := z.EncBinary() - _ = yym1457 + yym1510 := z.EncBinary() + _ = yym1510 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -20128,15 +20835,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[2] { + if yyq1502[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1458 := z.EncBinary() - _ = yym1458 + yym1511 := z.EncBinary() + _ = yym1511 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -20144,14 +20851,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[3] { + if yyq1502[3] { if x.Args == nil { r.EncodeNil() } else { - yym1460 := z.EncBinary() - _ = yym1460 + yym1513 := z.EncBinary() + _ = yym1513 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -20161,15 +20868,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[3] { + if yyq1502[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1461 := z.EncBinary() - _ = yym1461 + yym1514 := z.EncBinary() + _ = yym1514 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -20177,11 +20884,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[4] { - yym1463 := z.EncBinary() - _ = yym1463 + if yyq1502[4] { + yym1516 := z.EncBinary() + _ = yym1516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -20190,26 +20897,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1449[4] { + if yyq1502[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1464 := z.EncBinary() - _ = yym1464 + yym1517 := z.EncBinary() + _ = yym1517 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[5] { + if yyq1502[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1466 := z.EncBinary() - _ = yym1466 + yym1519 := z.EncBinary() + _ = yym1519 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -20219,15 +20926,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[5] { + if yyq1502[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1467 := z.EncBinary() - _ = yym1467 + yym1520 := z.EncBinary() + _ = yym1520 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -20235,14 +20942,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[6] { + if yyq1502[6] { if x.Env == nil { r.EncodeNil() } else { - yym1469 := z.EncBinary() - _ = yym1469 + yym1522 := z.EncBinary() + _ = yym1522 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -20252,15 +20959,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[6] { + if yyq1502[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1470 := z.EncBinary() - _ = yym1470 + yym1523 := z.EncBinary() + _ = yym1523 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -20268,31 +20975,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[7] { - yy1472 := &x.Resources - yy1472.CodecEncodeSelf(e) + if yyq1502[7] { + yy1525 := &x.Resources + yy1525.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1449[7] { + if yyq1502[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1473 := &x.Resources - yy1473.CodecEncodeSelf(e) + yy1526 := &x.Resources + yy1526.CodecEncodeSelf(e) } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[8] { + if yyq1502[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1475 := z.EncBinary() - _ = yym1475 + yym1528 := z.EncBinary() + _ = yym1528 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -20302,15 +21009,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[8] { + if yyq1502[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1476 := z.EncBinary() - _ = yym1476 + yym1529 := z.EncBinary() + _ = yym1529 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -20318,9 +21025,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[9] { + if yyq1502[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -20330,7 +21037,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[9] { + if yyq1502[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20341,9 +21048,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[10] { + if yyq1502[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -20353,7 +21060,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[10] { + if yyq1502[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20364,9 +21071,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[11] { + if yyq1502[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -20376,7 +21083,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[11] { + if yyq1502[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20387,11 +21094,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[12] { - yym1481 := z.EncBinary() - _ = yym1481 + if yyq1502[12] { + yym1534 := z.EncBinary() + _ = yym1534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -20400,19 +21107,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1449[12] { + if yyq1502[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1482 := z.EncBinary() - _ = yym1482 + yym1535 := z.EncBinary() + _ = yym1535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.ImagePullPolicy.CodecEncodeSelf(e) } else { @@ -20421,9 +21128,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[14] { + if yyq1502[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -20433,7 +21140,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1449[14] { + if yyq1502[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20444,11 +21151,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[15] { - yym1486 := z.EncBinary() - _ = yym1486 + if yyq1502[15] { + yym1539 := z.EncBinary() + _ = yym1539 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -20457,23 +21164,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1449[15] { + if yyq1502[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1487 := z.EncBinary() - _ = yym1487 + yym1540 := z.EncBinary() + _ = yym1540 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[16] { - yym1489 := z.EncBinary() - _ = yym1489 + if yyq1502[16] { + yym1542 := z.EncBinary() + _ = yym1542 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -20482,23 +21189,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1449[16] { + if yyq1502[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1490 := z.EncBinary() - _ = yym1490 + yym1543 := z.EncBinary() + _ = yym1543 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1449[17] { - yym1492 := z.EncBinary() - _ = yym1492 + if yyq1502[17] { + yym1545 := z.EncBinary() + _ = yym1545 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -20507,19 +21214,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1449[17] { + if yyq1502[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1493 := z.EncBinary() - _ = yym1493 + yym1546 := z.EncBinary() + _ = yym1546 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1449 || yy2arr1449 { + if yyr1502 || yy2arr1502 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20532,25 +21239,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1494 := z.DecBinary() - _ = yym1494 + yym1547 := z.DecBinary() + _ = yym1547 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1495 := r.ContainerType() - if yyct1495 == codecSelferValueTypeMap1234 { - yyl1495 := r.ReadMapStart() - if yyl1495 == 0 { + yyct1548 := r.ContainerType() + if yyct1548 == codecSelferValueTypeMap1234 { + yyl1548 := r.ReadMapStart() + if yyl1548 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1495, d) + x.codecDecodeSelfFromMap(yyl1548, d) } - } else if yyct1495 == codecSelferValueTypeArray1234 { - yyl1495 := r.ReadArrayStart() - if yyl1495 == 0 { + } else if yyct1548 == codecSelferValueTypeArray1234 { + yyl1548 := r.ReadArrayStart() + if yyl1548 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1495, d) + x.codecDecodeSelfFromArray(yyl1548, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20562,12 +21269,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1496Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1496Slc - var yyhl1496 bool = l >= 0 - for yyj1496 := 0; ; yyj1496++ { - if yyhl1496 { - if yyj1496 >= l { + var yys1549Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1549Slc + var yyhl1549 bool = l >= 0 + for yyj1549 := 0; ; yyj1549++ { + if yyhl1549 { + if yyj1549 >= l { break } } else { @@ -20576,10 +21283,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1496Slc = r.DecodeBytes(yys1496Slc, true, true) - yys1496 := string(yys1496Slc) + yys1549Slc = r.DecodeBytes(yys1549Slc, true, true) + yys1549 := string(yys1549Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1496 { + switch yys1549 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -20596,24 +21303,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1499 := &x.Command - yym1500 := z.DecBinary() - _ = yym1500 + yyv1552 := &x.Command + yym1553 := z.DecBinary() + _ = yym1553 if false { } else { - z.F.DecSliceStringX(yyv1499, false, d) + z.F.DecSliceStringX(yyv1552, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1501 := &x.Args - yym1502 := z.DecBinary() - _ = yym1502 + yyv1554 := &x.Args + yym1555 := z.DecBinary() + _ = yym1555 if false { } else { - z.F.DecSliceStringX(yyv1501, false, d) + z.F.DecSliceStringX(yyv1554, false, d) } } case "workingDir": @@ -20626,43 +21333,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1504 := &x.Ports - yym1505 := z.DecBinary() - _ = yym1505 + yyv1557 := &x.Ports + yym1558 := z.DecBinary() + _ = yym1558 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1504), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1557), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1506 := &x.Env - yym1507 := z.DecBinary() - _ = yym1507 + yyv1559 := &x.Env + yym1560 := z.DecBinary() + _ = yym1560 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1506), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1559), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1508 := &x.Resources - yyv1508.CodecDecodeSelf(d) + yyv1561 := &x.Resources + yyv1561.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1509 := &x.VolumeMounts - yym1510 := z.DecBinary() - _ = yym1510 + yyv1562 := &x.VolumeMounts + yym1563 := z.DecBinary() + _ = yym1563 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1509), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1562), d) } } case "livenessProbe": @@ -20740,9 +21447,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1496) - } // end switch yys1496 - } // end for yyj1496 + z.DecStructFieldNotFound(-1, yys1549) + } // end switch yys1549 + } // end for yyj1549 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20750,16 +21457,16 @@ func (x *Container) 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 yyj1573 int + var yyb1573 bool + var yyhl1573 bool = l >= 0 + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20769,13 +21476,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20785,13 +21492,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20799,21 +21506,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1523 := &x.Command - yym1524 := z.DecBinary() - _ = yym1524 + yyv1576 := &x.Command + yym1577 := z.DecBinary() + _ = yym1577 if false { } else { - z.F.DecSliceStringX(yyv1523, false, d) + z.F.DecSliceStringX(yyv1576, false, d) } } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20821,21 +21528,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1525 := &x.Args - yym1526 := z.DecBinary() - _ = yym1526 + yyv1578 := &x.Args + yym1579 := z.DecBinary() + _ = yym1579 if false { } else { - z.F.DecSliceStringX(yyv1525, false, d) + z.F.DecSliceStringX(yyv1578, false, d) } } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20845,13 +21552,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20859,21 +21566,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1528 := &x.Ports - yym1529 := z.DecBinary() - _ = yym1529 + yyv1581 := &x.Ports + yym1582 := z.DecBinary() + _ = yym1582 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1528), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1581), d) } } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20881,21 +21588,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1530 := &x.Env - yym1531 := z.DecBinary() - _ = yym1531 + yyv1583 := &x.Env + yym1584 := z.DecBinary() + _ = yym1584 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1530), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1583), d) } } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20903,16 +21610,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1532 := &x.Resources - yyv1532.CodecDecodeSelf(d) + yyv1585 := &x.Resources + yyv1585.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20920,21 +21627,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1533 := &x.VolumeMounts - yym1534 := z.DecBinary() - _ = yym1534 + yyv1586 := &x.VolumeMounts + yym1587 := z.DecBinary() + _ = yym1587 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1533), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1586), d) } } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20949,13 +21656,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20970,13 +21677,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20991,13 +21698,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21007,13 +21714,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21023,13 +21730,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21044,13 +21751,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21060,13 +21767,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21076,13 +21783,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21093,17 +21800,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1520-1, "") + z.DecStructFieldNotFound(yyj1573-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21115,35 +21822,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1544 := z.EncBinary() - _ = yym1544 + yym1597 := z.EncBinary() + _ = yym1597 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1545 := !z.EncBinary() - yy2arr1545 := z.EncBasicHandle().StructToArray - var yyq1545 [3]bool - _, _, _ = yysep1545, yyq1545, yy2arr1545 - const yyr1545 bool = false - yyq1545[0] = x.Exec != nil - yyq1545[1] = x.HTTPGet != nil - yyq1545[2] = x.TCPSocket != nil - var yynn1545 int - if yyr1545 || yy2arr1545 { + yysep1598 := !z.EncBinary() + yy2arr1598 := z.EncBasicHandle().StructToArray + var yyq1598 [3]bool + _, _, _ = yysep1598, yyq1598, yy2arr1598 + const yyr1598 bool = false + yyq1598[0] = x.Exec != nil + yyq1598[1] = x.HTTPGet != nil + yyq1598[2] = x.TCPSocket != nil + var yynn1598 int + if yyr1598 || yy2arr1598 { r.EncodeArrayStart(3) } else { - yynn1545 = 0 - for _, b := range yyq1545 { + yynn1598 = 0 + for _, b := range yyq1598 { if b { - yynn1545++ + yynn1598++ } } - r.EncodeMapStart(yynn1545) - yynn1545 = 0 + r.EncodeMapStart(yynn1598) + yynn1598 = 0 } - if yyr1545 || yy2arr1545 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1545[0] { + if yyq1598[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -21153,7 +21860,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1545[0] { + if yyq1598[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21164,9 +21871,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1545 || yy2arr1545 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1545[1] { + if yyq1598[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -21176,7 +21883,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1545[1] { + if yyq1598[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21187,9 +21894,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1545 || yy2arr1545 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1545[2] { + if yyq1598[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -21199,7 +21906,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1545[2] { + if yyq1598[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21210,7 +21917,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1545 || yy2arr1545 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21223,25 +21930,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1549 := z.DecBinary() - _ = yym1549 + yym1602 := z.DecBinary() + _ = yym1602 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1550 := r.ContainerType() - if yyct1550 == codecSelferValueTypeMap1234 { - yyl1550 := r.ReadMapStart() - if yyl1550 == 0 { + yyct1603 := r.ContainerType() + if yyct1603 == codecSelferValueTypeMap1234 { + yyl1603 := r.ReadMapStart() + if yyl1603 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1550, d) + x.codecDecodeSelfFromMap(yyl1603, d) } - } else if yyct1550 == codecSelferValueTypeArray1234 { - yyl1550 := r.ReadArrayStart() - if yyl1550 == 0 { + } else if yyct1603 == codecSelferValueTypeArray1234 { + yyl1603 := r.ReadArrayStart() + if yyl1603 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1550, d) + x.codecDecodeSelfFromArray(yyl1603, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21253,12 +21960,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1551Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1551Slc - var yyhl1551 bool = l >= 0 - for yyj1551 := 0; ; yyj1551++ { - if yyhl1551 { - if yyj1551 >= l { + var yys1604Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1604Slc + var yyhl1604 bool = l >= 0 + for yyj1604 := 0; ; yyj1604++ { + if yyhl1604 { + if yyj1604 >= l { break } } else { @@ -21267,10 +21974,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1551Slc = r.DecodeBytes(yys1551Slc, true, true) - yys1551 := string(yys1551Slc) + yys1604Slc = r.DecodeBytes(yys1604Slc, true, true) + yys1604 := string(yys1604Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1551 { + switch yys1604 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -21305,9 +22012,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1551) - } // end switch yys1551 - } // end for yyj1551 + z.DecStructFieldNotFound(-1, yys1604) + } // end switch yys1604 + } // end for yyj1604 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21315,16 +22022,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1555 int - var yyb1555 bool - var yyhl1555 bool = l >= 0 - yyj1555++ - if yyhl1555 { - yyb1555 = yyj1555 > l + var yyj1608 int + var yyb1608 bool + var yyhl1608 bool = l >= 0 + yyj1608++ + if yyhl1608 { + yyb1608 = yyj1608 > l } else { - yyb1555 = r.CheckBreak() + yyb1608 = r.CheckBreak() } - if yyb1555 { + if yyb1608 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21339,13 +22046,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1555++ - if yyhl1555 { - yyb1555 = yyj1555 > l + yyj1608++ + if yyhl1608 { + yyb1608 = yyj1608 > l } else { - yyb1555 = r.CheckBreak() + yyb1608 = r.CheckBreak() } - if yyb1555 { + if yyb1608 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21360,13 +22067,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1555++ - if yyhl1555 { - yyb1555 = yyj1555 > l + yyj1608++ + if yyhl1608 { + yyb1608 = yyj1608 > l } else { - yyb1555 = r.CheckBreak() + yyb1608 = r.CheckBreak() } - if yyb1555 { + if yyb1608 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21382,17 +22089,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1555++ - if yyhl1555 { - yyb1555 = yyj1555 > l + yyj1608++ + if yyhl1608 { + yyb1608 = yyj1608 > l } else { - yyb1555 = r.CheckBreak() + yyb1608 = r.CheckBreak() } - if yyb1555 { + if yyb1608 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1555-1, "") + z.DecStructFieldNotFound(yyj1608-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21404,34 +22111,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1559 := z.EncBinary() - _ = yym1559 + yym1612 := z.EncBinary() + _ = yym1612 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1560 := !z.EncBinary() - yy2arr1560 := z.EncBasicHandle().StructToArray - var yyq1560 [2]bool - _, _, _ = yysep1560, yyq1560, yy2arr1560 - const yyr1560 bool = false - yyq1560[0] = x.PostStart != nil - yyq1560[1] = x.PreStop != nil - var yynn1560 int - if yyr1560 || yy2arr1560 { + yysep1613 := !z.EncBinary() + yy2arr1613 := z.EncBasicHandle().StructToArray + var yyq1613 [2]bool + _, _, _ = yysep1613, yyq1613, yy2arr1613 + const yyr1613 bool = false + yyq1613[0] = x.PostStart != nil + yyq1613[1] = x.PreStop != nil + var yynn1613 int + if yyr1613 || yy2arr1613 { r.EncodeArrayStart(2) } else { - yynn1560 = 0 - for _, b := range yyq1560 { + yynn1613 = 0 + for _, b := range yyq1613 { if b { - yynn1560++ + yynn1613++ } } - r.EncodeMapStart(yynn1560) - yynn1560 = 0 + r.EncodeMapStart(yynn1613) + yynn1613 = 0 } - if yyr1560 || yy2arr1560 { + if yyr1613 || yy2arr1613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1560[0] { + if yyq1613[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -21441,7 +22148,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1560[0] { + if yyq1613[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21452,9 +22159,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1560 || yy2arr1560 { + if yyr1613 || yy2arr1613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1560[1] { + if yyq1613[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -21464,7 +22171,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1560[1] { + if yyq1613[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21475,7 +22182,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1560 || yy2arr1560 { + if yyr1613 || yy2arr1613 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21488,25 +22195,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1563 := z.DecBinary() - _ = yym1563 + yym1616 := z.DecBinary() + _ = yym1616 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1564 := r.ContainerType() - if yyct1564 == codecSelferValueTypeMap1234 { - yyl1564 := r.ReadMapStart() - if yyl1564 == 0 { + yyct1617 := r.ContainerType() + if yyct1617 == codecSelferValueTypeMap1234 { + yyl1617 := r.ReadMapStart() + if yyl1617 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1564, d) + x.codecDecodeSelfFromMap(yyl1617, d) } - } else if yyct1564 == codecSelferValueTypeArray1234 { - yyl1564 := r.ReadArrayStart() - if yyl1564 == 0 { + } else if yyct1617 == codecSelferValueTypeArray1234 { + yyl1617 := r.ReadArrayStart() + if yyl1617 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1564, d) + x.codecDecodeSelfFromArray(yyl1617, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21518,12 +22225,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1565Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1565Slc - var yyhl1565 bool = l >= 0 - for yyj1565 := 0; ; yyj1565++ { - if yyhl1565 { - if yyj1565 >= l { + var yys1618Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1618Slc + var yyhl1618 bool = l >= 0 + for yyj1618 := 0; ; yyj1618++ { + if yyhl1618 { + if yyj1618 >= l { break } } else { @@ -21532,10 +22239,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1565Slc = r.DecodeBytes(yys1565Slc, true, true) - yys1565 := string(yys1565Slc) + yys1618Slc = r.DecodeBytes(yys1618Slc, true, true) + yys1618 := string(yys1618Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1565 { + switch yys1618 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -21559,9 +22266,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1565) - } // end switch yys1565 - } // end for yyj1565 + z.DecStructFieldNotFound(-1, yys1618) + } // end switch yys1618 + } // end for yyj1618 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21569,16 +22276,16 @@ func (x *Lifecycle) 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 yyj1621 int + var yyb1621 bool + var yyhl1621 bool = l >= 0 + yyj1621++ + if yyhl1621 { + yyb1621 = yyj1621 > l } else { - yyb1568 = r.CheckBreak() + yyb1621 = r.CheckBreak() } - if yyb1568 { + if yyb1621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21593,13 +22300,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1621++ + if yyhl1621 { + yyb1621 = yyj1621 > l } else { - yyb1568 = r.CheckBreak() + yyb1621 = r.CheckBreak() } - if yyb1568 { + if yyb1621 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21615,17 +22322,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1621++ + if yyhl1621 { + yyb1621 = yyj1621 > l } else { - yyb1568 = r.CheckBreak() + yyb1621 = r.CheckBreak() } - if yyb1568 { + if yyb1621 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1568-1, "") + z.DecStructFieldNotFound(yyj1621-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21634,8 +22341,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1571 := z.EncBinary() - _ = yym1571 + yym1624 := z.EncBinary() + _ = yym1624 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -21647,8 +22354,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1572 := z.DecBinary() - _ = yym1572 + yym1625 := z.DecBinary() + _ = yym1625 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -21663,36 +22370,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1573 := z.EncBinary() - _ = yym1573 + yym1626 := z.EncBinary() + _ = yym1626 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1574 := !z.EncBinary() - yy2arr1574 := z.EncBasicHandle().StructToArray - var yyq1574 [2]bool - _, _, _ = yysep1574, yyq1574, yy2arr1574 - const yyr1574 bool = false - yyq1574[0] = x.Reason != "" - yyq1574[1] = x.Message != "" - var yynn1574 int - if yyr1574 || yy2arr1574 { + yysep1627 := !z.EncBinary() + yy2arr1627 := z.EncBasicHandle().StructToArray + var yyq1627 [2]bool + _, _, _ = yysep1627, yyq1627, yy2arr1627 + const yyr1627 bool = false + yyq1627[0] = x.Reason != "" + yyq1627[1] = x.Message != "" + var yynn1627 int + if yyr1627 || yy2arr1627 { r.EncodeArrayStart(2) } else { - yynn1574 = 0 - for _, b := range yyq1574 { + yynn1627 = 0 + for _, b := range yyq1627 { if b { - yynn1574++ + yynn1627++ } } - r.EncodeMapStart(yynn1574) - yynn1574 = 0 + r.EncodeMapStart(yynn1627) + yynn1627 = 0 } - if yyr1574 || yy2arr1574 { + if yyr1627 || yy2arr1627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[0] { - yym1576 := z.EncBinary() - _ = yym1576 + if yyq1627[0] { + yym1629 := z.EncBinary() + _ = yym1629 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -21701,23 +22408,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1574[0] { + if yyq1627[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1577 := z.EncBinary() - _ = yym1577 + yym1630 := z.EncBinary() + _ = yym1630 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1574 || yy2arr1574 { + if yyr1627 || yy2arr1627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[1] { - yym1579 := z.EncBinary() - _ = yym1579 + if yyq1627[1] { + yym1632 := z.EncBinary() + _ = yym1632 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -21726,19 +22433,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1574[1] { + if yyq1627[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1580 := z.EncBinary() - _ = yym1580 + yym1633 := z.EncBinary() + _ = yym1633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1574 || yy2arr1574 { + if yyr1627 || yy2arr1627 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21751,25 +22458,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1581 := z.DecBinary() - _ = yym1581 + yym1634 := z.DecBinary() + _ = yym1634 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1582 := r.ContainerType() - if yyct1582 == codecSelferValueTypeMap1234 { - yyl1582 := r.ReadMapStart() - if yyl1582 == 0 { + yyct1635 := r.ContainerType() + if yyct1635 == codecSelferValueTypeMap1234 { + yyl1635 := r.ReadMapStart() + if yyl1635 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1582, d) + x.codecDecodeSelfFromMap(yyl1635, d) } - } else if yyct1582 == codecSelferValueTypeArray1234 { - yyl1582 := r.ReadArrayStart() - if yyl1582 == 0 { + } else if yyct1635 == codecSelferValueTypeArray1234 { + yyl1635 := r.ReadArrayStart() + if yyl1635 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1582, d) + x.codecDecodeSelfFromArray(yyl1635, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21781,12 +22488,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1583Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1583Slc - var yyhl1583 bool = l >= 0 - for yyj1583 := 0; ; yyj1583++ { - if yyhl1583 { - if yyj1583 >= l { + var yys1636Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1636Slc + var yyhl1636 bool = l >= 0 + for yyj1636 := 0; ; yyj1636++ { + if yyhl1636 { + if yyj1636 >= l { break } } else { @@ -21795,10 +22502,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1583Slc = r.DecodeBytes(yys1583Slc, true, true) - yys1583 := string(yys1583Slc) + yys1636Slc = r.DecodeBytes(yys1636Slc, true, true) + yys1636 := string(yys1636Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1583 { + switch yys1636 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -21812,9 +22519,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1583) - } // end switch yys1583 - } // end for yyj1583 + z.DecStructFieldNotFound(-1, yys1636) + } // end switch yys1636 + } // end for yyj1636 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21822,16 +22529,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1586 int - var yyb1586 bool - var yyhl1586 bool = l >= 0 - yyj1586++ - if yyhl1586 { - yyb1586 = yyj1586 > l + var yyj1639 int + var yyb1639 bool + var yyhl1639 bool = l >= 0 + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1586 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1586 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21841,13 +22548,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1586++ - if yyhl1586 { - yyb1586 = yyj1586 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1586 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1586 { + if yyb1639 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21858,17 +22565,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1586++ - if yyhl1586 { - yyb1586 = yyj1586 > l + yyj1639++ + if yyhl1639 { + yyb1639 = yyj1639 > l } else { - yyb1586 = r.CheckBreak() + yyb1639 = r.CheckBreak() } - if yyb1586 { + if yyb1639 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1586-1, "") + z.DecStructFieldNotFound(yyj1639-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21880,68 +22587,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1589 := z.EncBinary() - _ = yym1589 + yym1642 := z.EncBinary() + _ = yym1642 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1590 := !z.EncBinary() - yy2arr1590 := z.EncBasicHandle().StructToArray - var yyq1590 [1]bool - _, _, _ = yysep1590, yyq1590, yy2arr1590 - const yyr1590 bool = false - yyq1590[0] = true - var yynn1590 int - if yyr1590 || yy2arr1590 { + yysep1643 := !z.EncBinary() + yy2arr1643 := z.EncBasicHandle().StructToArray + var yyq1643 [1]bool + _, _, _ = yysep1643, yyq1643, yy2arr1643 + const yyr1643 bool = false + yyq1643[0] = true + var yynn1643 int + if yyr1643 || yy2arr1643 { r.EncodeArrayStart(1) } else { - yynn1590 = 0 - for _, b := range yyq1590 { + yynn1643 = 0 + for _, b := range yyq1643 { if b { - yynn1590++ + yynn1643++ } } - r.EncodeMapStart(yynn1590) - yynn1590 = 0 + r.EncodeMapStart(yynn1643) + yynn1643 = 0 } - if yyr1590 || yy2arr1590 { + if yyr1643 || yy2arr1643 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1590[0] { - yy1592 := &x.StartedAt - yym1593 := z.EncBinary() - _ = yym1593 + if yyq1643[0] { + yy1645 := &x.StartedAt + yym1646 := z.EncBinary() + _ = yym1646 if false { - } else if z.HasExtensions() && z.EncExt(yy1592) { - } else if yym1593 { - z.EncBinaryMarshal(yy1592) - } else if !yym1593 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1592) + } else if z.HasExtensions() && z.EncExt(yy1645) { + } else if yym1646 { + z.EncBinaryMarshal(yy1645) + } else if !yym1646 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1645) } else { - z.EncFallback(yy1592) + z.EncFallback(yy1645) } } else { r.EncodeNil() } } else { - if yyq1590[0] { + if yyq1643[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1594 := &x.StartedAt - yym1595 := z.EncBinary() - _ = yym1595 + yy1647 := &x.StartedAt + yym1648 := z.EncBinary() + _ = yym1648 if false { - } else if z.HasExtensions() && z.EncExt(yy1594) { - } else if yym1595 { - z.EncBinaryMarshal(yy1594) - } else if !yym1595 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1594) + } else if z.HasExtensions() && z.EncExt(yy1647) { + } else if yym1648 { + z.EncBinaryMarshal(yy1647) + } else if !yym1648 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1647) } else { - z.EncFallback(yy1594) + z.EncFallback(yy1647) } } } - if yyr1590 || yy2arr1590 { + if yyr1643 || yy2arr1643 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21954,25 +22661,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1596 := z.DecBinary() - _ = yym1596 + yym1649 := z.DecBinary() + _ = yym1649 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1597 := r.ContainerType() - if yyct1597 == codecSelferValueTypeMap1234 { - yyl1597 := r.ReadMapStart() - if yyl1597 == 0 { + yyct1650 := r.ContainerType() + if yyct1650 == codecSelferValueTypeMap1234 { + yyl1650 := r.ReadMapStart() + if yyl1650 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1597, d) + x.codecDecodeSelfFromMap(yyl1650, d) } - } else if yyct1597 == codecSelferValueTypeArray1234 { - yyl1597 := r.ReadArrayStart() - if yyl1597 == 0 { + } else if yyct1650 == codecSelferValueTypeArray1234 { + yyl1650 := r.ReadArrayStart() + if yyl1650 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1597, d) + x.codecDecodeSelfFromArray(yyl1650, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21984,12 +22691,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1598Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1598Slc - var yyhl1598 bool = l >= 0 - for yyj1598 := 0; ; yyj1598++ { - if yyhl1598 { - if yyj1598 >= l { + var yys1651Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1651Slc + var yyhl1651 bool = l >= 0 + for yyj1651 := 0; ; yyj1651++ { + if yyhl1651 { + if yyj1651 >= l { break } } else { @@ -21998,31 +22705,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1598Slc = r.DecodeBytes(yys1598Slc, true, true) - yys1598 := string(yys1598Slc) + yys1651Slc = r.DecodeBytes(yys1651Slc, true, true) + yys1651 := string(yys1651Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1598 { + switch yys1651 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1599 := &x.StartedAt - yym1600 := z.DecBinary() - _ = yym1600 + yyv1652 := &x.StartedAt + yym1653 := z.DecBinary() + _ = yym1653 if false { - } else if z.HasExtensions() && z.DecExt(yyv1599) { - } else if yym1600 { - z.DecBinaryUnmarshal(yyv1599) - } else if !yym1600 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1599) + } else if z.HasExtensions() && z.DecExt(yyv1652) { + } else if yym1653 { + z.DecBinaryUnmarshal(yyv1652) + } else if !yym1653 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1652) } else { - z.DecFallback(yyv1599, false) + z.DecFallback(yyv1652, false) } } default: - z.DecStructFieldNotFound(-1, yys1598) - } // end switch yys1598 - } // end for yyj1598 + z.DecStructFieldNotFound(-1, yys1651) + } // end switch yys1651 + } // end for yyj1651 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22030,16 +22737,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1601 int - var yyb1601 bool - var yyhl1601 bool = l >= 0 - yyj1601++ - if yyhl1601 { - yyb1601 = yyj1601 > l + var yyj1654 int + var yyb1654 bool + var yyhl1654 bool = l >= 0 + yyj1654++ + if yyhl1654 { + yyb1654 = yyj1654 > l } else { - yyb1601 = r.CheckBreak() + yyb1654 = r.CheckBreak() } - if yyb1601 { + if yyb1654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22047,31 +22754,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1602 := &x.StartedAt - yym1603 := z.DecBinary() - _ = yym1603 + yyv1655 := &x.StartedAt + yym1656 := z.DecBinary() + _ = yym1656 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(yyv1655) { + } else if yym1656 { + z.DecBinaryUnmarshal(yyv1655) + } else if !yym1656 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1655) } else { - z.DecFallback(yyv1602, false) + z.DecFallback(yyv1655, false) } } for { - yyj1601++ - if yyhl1601 { - yyb1601 = yyj1601 > l + yyj1654++ + if yyhl1654 { + yyb1654 = yyj1654 > l } else { - yyb1601 = r.CheckBreak() + yyb1654 = r.CheckBreak() } - if yyb1601 { + if yyb1654 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1601-1, "") + z.DecStructFieldNotFound(yyj1654-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22083,39 +22790,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1604 := z.EncBinary() - _ = yym1604 + yym1657 := z.EncBinary() + _ = yym1657 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1605 := !z.EncBinary() - yy2arr1605 := z.EncBasicHandle().StructToArray - var yyq1605 [7]bool - _, _, _ = yysep1605, yyq1605, yy2arr1605 - const yyr1605 bool = false - yyq1605[1] = x.Signal != 0 - yyq1605[2] = x.Reason != "" - yyq1605[3] = x.Message != "" - yyq1605[4] = true - yyq1605[5] = true - yyq1605[6] = x.ContainerID != "" - var yynn1605 int - if yyr1605 || yy2arr1605 { + yysep1658 := !z.EncBinary() + yy2arr1658 := z.EncBasicHandle().StructToArray + var yyq1658 [7]bool + _, _, _ = yysep1658, yyq1658, yy2arr1658 + const yyr1658 bool = false + yyq1658[1] = x.Signal != 0 + yyq1658[2] = x.Reason != "" + yyq1658[3] = x.Message != "" + yyq1658[4] = true + yyq1658[5] = true + yyq1658[6] = x.ContainerID != "" + var yynn1658 int + if yyr1658 || yy2arr1658 { r.EncodeArrayStart(7) } else { - yynn1605 = 1 - for _, b := range yyq1605 { + yynn1658 = 1 + for _, b := range yyq1658 { if b { - yynn1605++ + yynn1658++ } } - r.EncodeMapStart(yynn1605) - yynn1605 = 0 + r.EncodeMapStart(yynn1658) + yynn1658 = 0 } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1607 := z.EncBinary() - _ = yym1607 + yym1660 := z.EncBinary() + _ = yym1660 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -22124,18 +22831,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1608 := z.EncBinary() - _ = yym1608 + yym1661 := z.EncBinary() + _ = yym1661 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[1] { - yym1610 := z.EncBinary() - _ = yym1610 + if yyq1658[1] { + yym1663 := z.EncBinary() + _ = yym1663 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -22144,23 +22851,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1605[1] { + if yyq1658[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1611 := z.EncBinary() - _ = yym1611 + yym1664 := z.EncBinary() + _ = yym1664 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[2] { - yym1613 := z.EncBinary() - _ = yym1613 + if yyq1658[2] { + yym1666 := z.EncBinary() + _ = yym1666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -22169,23 +22876,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1605[2] { + if yyq1658[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1614 := z.EncBinary() - _ = yym1614 + yym1667 := z.EncBinary() + _ = yym1667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[3] { - yym1616 := z.EncBinary() - _ = yym1616 + if yyq1658[3] { + yym1669 := z.EncBinary() + _ = yym1669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -22194,97 +22901,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1605[3] { + if yyq1658[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1617 := z.EncBinary() - _ = yym1617 + yym1670 := z.EncBinary() + _ = yym1670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[4] { - yy1619 := &x.StartedAt - yym1620 := z.EncBinary() - _ = yym1620 + if yyq1658[4] { + yy1672 := &x.StartedAt + yym1673 := z.EncBinary() + _ = yym1673 if false { - } else if z.HasExtensions() && z.EncExt(yy1619) { - } else if yym1620 { - z.EncBinaryMarshal(yy1619) - } else if !yym1620 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1619) + } else if z.HasExtensions() && z.EncExt(yy1672) { + } else if yym1673 { + z.EncBinaryMarshal(yy1672) + } else if !yym1673 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1672) } else { - z.EncFallback(yy1619) + z.EncFallback(yy1672) } } else { r.EncodeNil() } } else { - if yyq1605[4] { + if yyq1658[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1621 := &x.StartedAt - yym1622 := z.EncBinary() - _ = yym1622 + yy1674 := &x.StartedAt + yym1675 := z.EncBinary() + _ = yym1675 if false { - } else if z.HasExtensions() && z.EncExt(yy1621) { - } else if yym1622 { - z.EncBinaryMarshal(yy1621) - } else if !yym1622 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1621) + } else if z.HasExtensions() && z.EncExt(yy1674) { + } else if yym1675 { + z.EncBinaryMarshal(yy1674) + } else if !yym1675 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1674) } else { - z.EncFallback(yy1621) + z.EncFallback(yy1674) } } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[5] { - yy1624 := &x.FinishedAt - yym1625 := z.EncBinary() - _ = yym1625 + if yyq1658[5] { + yy1677 := &x.FinishedAt + yym1678 := z.EncBinary() + _ = yym1678 if false { - } else if z.HasExtensions() && z.EncExt(yy1624) { - } else if yym1625 { - z.EncBinaryMarshal(yy1624) - } else if !yym1625 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1624) + } else if z.HasExtensions() && z.EncExt(yy1677) { + } else if yym1678 { + z.EncBinaryMarshal(yy1677) + } else if !yym1678 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1677) } else { - z.EncFallback(yy1624) + z.EncFallback(yy1677) } } else { r.EncodeNil() } } else { - if yyq1605[5] { + if yyq1658[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1626 := &x.FinishedAt - yym1627 := z.EncBinary() - _ = yym1627 + yy1679 := &x.FinishedAt + yym1680 := z.EncBinary() + _ = yym1680 if false { - } else if z.HasExtensions() && z.EncExt(yy1626) { - } else if yym1627 { - z.EncBinaryMarshal(yy1626) - } else if !yym1627 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1626) + } else if z.HasExtensions() && z.EncExt(yy1679) { + } else if yym1680 { + z.EncBinaryMarshal(yy1679) + } else if !yym1680 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1679) } else { - z.EncFallback(yy1626) + z.EncFallback(yy1679) } } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[6] { - yym1629 := z.EncBinary() - _ = yym1629 + if yyq1658[6] { + yym1682 := z.EncBinary() + _ = yym1682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -22293,19 +23000,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1605[6] { + if yyq1658[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1630 := z.EncBinary() - _ = yym1630 + yym1683 := z.EncBinary() + _ = yym1683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1605 || yy2arr1605 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22318,25 +23025,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1631 := z.DecBinary() - _ = yym1631 + yym1684 := z.DecBinary() + _ = yym1684 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1632 := r.ContainerType() - if yyct1632 == codecSelferValueTypeMap1234 { - yyl1632 := r.ReadMapStart() - if yyl1632 == 0 { + yyct1685 := r.ContainerType() + if yyct1685 == codecSelferValueTypeMap1234 { + yyl1685 := r.ReadMapStart() + if yyl1685 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1632, d) + x.codecDecodeSelfFromMap(yyl1685, d) } - } else if yyct1632 == codecSelferValueTypeArray1234 { - yyl1632 := r.ReadArrayStart() - if yyl1632 == 0 { + } else if yyct1685 == codecSelferValueTypeArray1234 { + yyl1685 := r.ReadArrayStart() + if yyl1685 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1632, d) + x.codecDecodeSelfFromArray(yyl1685, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22348,12 +23055,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1633Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1633Slc - var yyhl1633 bool = l >= 0 - for yyj1633 := 0; ; yyj1633++ { - if yyhl1633 { - if yyj1633 >= l { + var yys1686Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1686Slc + var yyhl1686 bool = l >= 0 + for yyj1686 := 0; ; yyj1686++ { + if yyhl1686 { + if yyj1686 >= l { break } } else { @@ -22362,10 +23069,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1633Slc = r.DecodeBytes(yys1633Slc, true, true) - yys1633 := string(yys1633Slc) + yys1686Slc = r.DecodeBytes(yys1686Slc, true, true) + yys1686 := string(yys1686Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1633 { + switch yys1686 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -22394,34 +23101,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1638 := &x.StartedAt - yym1639 := z.DecBinary() - _ = yym1639 + yyv1691 := &x.StartedAt + yym1692 := z.DecBinary() + _ = yym1692 if false { - } else if z.HasExtensions() && z.DecExt(yyv1638) { - } else if yym1639 { - z.DecBinaryUnmarshal(yyv1638) - } else if !yym1639 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1638) + } else if z.HasExtensions() && z.DecExt(yyv1691) { + } else if yym1692 { + z.DecBinaryUnmarshal(yyv1691) + } else if !yym1692 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1691) } else { - z.DecFallback(yyv1638, false) + z.DecFallback(yyv1691, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1640 := &x.FinishedAt - yym1641 := z.DecBinary() - _ = yym1641 + yyv1693 := &x.FinishedAt + yym1694 := z.DecBinary() + _ = yym1694 if false { - } else if z.HasExtensions() && z.DecExt(yyv1640) { - } else if yym1641 { - z.DecBinaryUnmarshal(yyv1640) - } else if !yym1641 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1640) + } else if z.HasExtensions() && z.DecExt(yyv1693) { + } else if yym1694 { + z.DecBinaryUnmarshal(yyv1693) + } else if !yym1694 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1693) } else { - z.DecFallback(yyv1640, false) + z.DecFallback(yyv1693, false) } } case "containerID": @@ -22431,9 +23138,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1633) - } // end switch yys1633 - } // end for yyj1633 + z.DecStructFieldNotFound(-1, yys1686) + } // end switch yys1686 + } // end for yyj1686 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22441,16 +23148,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1643 int - var yyb1643 bool - var yyhl1643 bool = l >= 0 - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + var yyj1696 int + var yyb1696 bool + var yyhl1696 bool = l >= 0 + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22460,13 +23167,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22476,13 +23183,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22492,13 +23199,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22508,13 +23215,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22522,26 +23229,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1648 := &x.StartedAt - yym1649 := z.DecBinary() - _ = yym1649 + yyv1701 := &x.StartedAt + yym1702 := z.DecBinary() + _ = yym1702 if false { - } else if z.HasExtensions() && z.DecExt(yyv1648) { - } else if yym1649 { - z.DecBinaryUnmarshal(yyv1648) - } else if !yym1649 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1648) + } else if z.HasExtensions() && z.DecExt(yyv1701) { + } else if yym1702 { + z.DecBinaryUnmarshal(yyv1701) + } else if !yym1702 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1701) } else { - z.DecFallback(yyv1648, false) + z.DecFallback(yyv1701, false) } } - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22549,26 +23256,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1650 := &x.FinishedAt - yym1651 := z.DecBinary() - _ = yym1651 + yyv1703 := &x.FinishedAt + yym1704 := z.DecBinary() + _ = yym1704 if false { - } else if z.HasExtensions() && z.DecExt(yyv1650) { - } else if yym1651 { - z.DecBinaryUnmarshal(yyv1650) - } else if !yym1651 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1650) + } else if z.HasExtensions() && z.DecExt(yyv1703) { + } else if yym1704 { + z.DecBinaryUnmarshal(yyv1703) + } else if !yym1704 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1703) } else { - z.DecFallback(yyv1650, false) + z.DecFallback(yyv1703, false) } } - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22579,17 +23286,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1643++ - if yyhl1643 { - yyb1643 = yyj1643 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1643 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1643 { + if yyb1696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1643-1, "") + z.DecStructFieldNotFound(yyj1696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22601,35 +23308,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1653 := z.EncBinary() - _ = yym1653 + yym1706 := z.EncBinary() + _ = yym1706 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1654 := !z.EncBinary() - yy2arr1654 := z.EncBasicHandle().StructToArray - var yyq1654 [3]bool - _, _, _ = yysep1654, yyq1654, yy2arr1654 - const yyr1654 bool = false - yyq1654[0] = x.Waiting != nil - yyq1654[1] = x.Running != nil - yyq1654[2] = x.Terminated != nil - var yynn1654 int - if yyr1654 || yy2arr1654 { + yysep1707 := !z.EncBinary() + yy2arr1707 := z.EncBasicHandle().StructToArray + var yyq1707 [3]bool + _, _, _ = yysep1707, yyq1707, yy2arr1707 + const yyr1707 bool = false + yyq1707[0] = x.Waiting != nil + yyq1707[1] = x.Running != nil + yyq1707[2] = x.Terminated != nil + var yynn1707 int + if yyr1707 || yy2arr1707 { r.EncodeArrayStart(3) } else { - yynn1654 = 0 - for _, b := range yyq1654 { + yynn1707 = 0 + for _, b := range yyq1707 { if b { - yynn1654++ + yynn1707++ } } - r.EncodeMapStart(yynn1654) - yynn1654 = 0 + r.EncodeMapStart(yynn1707) + yynn1707 = 0 } - if yyr1654 || yy2arr1654 { + if yyr1707 || yy2arr1707 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1654[0] { + if yyq1707[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -22639,7 +23346,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1654[0] { + if yyq1707[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22650,9 +23357,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1654 || yy2arr1654 { + if yyr1707 || yy2arr1707 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1654[1] { + if yyq1707[1] { if x.Running == nil { r.EncodeNil() } else { @@ -22662,7 +23369,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1654[1] { + if yyq1707[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22673,9 +23380,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1654 || yy2arr1654 { + if yyr1707 || yy2arr1707 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1654[2] { + if yyq1707[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -22685,7 +23392,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1654[2] { + if yyq1707[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22696,7 +23403,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1654 || yy2arr1654 { + if yyr1707 || yy2arr1707 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22709,25 +23416,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1658 := z.DecBinary() - _ = yym1658 + yym1711 := z.DecBinary() + _ = yym1711 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1659 := r.ContainerType() - if yyct1659 == codecSelferValueTypeMap1234 { - yyl1659 := r.ReadMapStart() - if yyl1659 == 0 { + yyct1712 := r.ContainerType() + if yyct1712 == codecSelferValueTypeMap1234 { + yyl1712 := r.ReadMapStart() + if yyl1712 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1659, d) + x.codecDecodeSelfFromMap(yyl1712, d) } - } else if yyct1659 == codecSelferValueTypeArray1234 { - yyl1659 := r.ReadArrayStart() - if yyl1659 == 0 { + } else if yyct1712 == codecSelferValueTypeArray1234 { + yyl1712 := r.ReadArrayStart() + if yyl1712 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1659, d) + x.codecDecodeSelfFromArray(yyl1712, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22739,12 +23446,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1660Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1660Slc - var yyhl1660 bool = l >= 0 - for yyj1660 := 0; ; yyj1660++ { - if yyhl1660 { - if yyj1660 >= l { + var yys1713Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1713Slc + var yyhl1713 bool = l >= 0 + for yyj1713 := 0; ; yyj1713++ { + if yyhl1713 { + if yyj1713 >= l { break } } else { @@ -22753,10 +23460,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1660Slc = r.DecodeBytes(yys1660Slc, true, true) - yys1660 := string(yys1660Slc) + yys1713Slc = r.DecodeBytes(yys1713Slc, true, true) + yys1713 := string(yys1713Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1660 { + switch yys1713 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -22791,9 +23498,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1660) - } // end switch yys1660 - } // end for yyj1660 + z.DecStructFieldNotFound(-1, yys1713) + } // end switch yys1713 + } // end for yyj1713 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22801,16 +23508,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1664 int - var yyb1664 bool - var yyhl1664 bool = l >= 0 - yyj1664++ - if yyhl1664 { - yyb1664 = yyj1664 > l + var yyj1717 int + var yyb1717 bool + var yyhl1717 bool = l >= 0 + yyj1717++ + if yyhl1717 { + yyb1717 = yyj1717 > l } else { - yyb1664 = r.CheckBreak() + yyb1717 = r.CheckBreak() } - if yyb1664 { + if yyb1717 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22825,13 +23532,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1664++ - if yyhl1664 { - yyb1664 = yyj1664 > l + yyj1717++ + if yyhl1717 { + yyb1717 = yyj1717 > l } else { - yyb1664 = r.CheckBreak() + yyb1717 = r.CheckBreak() } - if yyb1664 { + if yyb1717 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22846,13 +23553,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1664++ - if yyhl1664 { - yyb1664 = yyj1664 > l + yyj1717++ + if yyhl1717 { + yyb1717 = yyj1717 > l } else { - yyb1664 = r.CheckBreak() + yyb1717 = r.CheckBreak() } - if yyb1664 { + if yyb1717 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22868,17 +23575,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1664++ - if yyhl1664 { - yyb1664 = yyj1664 > l + yyj1717++ + if yyhl1717 { + yyb1717 = yyj1717 > l } else { - yyb1664 = r.CheckBreak() + yyb1717 = r.CheckBreak() } - if yyb1664 { + if yyb1717 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1664-1, "") + z.DecStructFieldNotFound(yyj1717-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22890,36 +23597,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1668 := z.EncBinary() - _ = yym1668 + yym1721 := z.EncBinary() + _ = yym1721 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1669 := !z.EncBinary() - yy2arr1669 := z.EncBasicHandle().StructToArray - var yyq1669 [8]bool - _, _, _ = yysep1669, yyq1669, yy2arr1669 - const yyr1669 bool = false - yyq1669[1] = true - yyq1669[2] = true - yyq1669[7] = x.ContainerID != "" - var yynn1669 int - if yyr1669 || yy2arr1669 { + yysep1722 := !z.EncBinary() + yy2arr1722 := z.EncBasicHandle().StructToArray + var yyq1722 [8]bool + _, _, _ = yysep1722, yyq1722, yy2arr1722 + const yyr1722 bool = false + yyq1722[1] = true + yyq1722[2] = true + yyq1722[7] = x.ContainerID != "" + var yynn1722 int + if yyr1722 || yy2arr1722 { r.EncodeArrayStart(8) } else { - yynn1669 = 5 - for _, b := range yyq1669 { + yynn1722 = 5 + for _, b := range yyq1722 { if b { - yynn1669++ + yynn1722++ } } - r.EncodeMapStart(yynn1669) - yynn1669 = 0 + r.EncodeMapStart(yynn1722) + yynn1722 = 0 } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1671 := z.EncBinary() - _ = yym1671 + yym1724 := z.EncBinary() + _ = yym1724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -22928,51 +23635,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1672 := z.EncBinary() - _ = yym1672 + yym1725 := z.EncBinary() + _ = yym1725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1669[1] { - yy1674 := &x.State - yy1674.CodecEncodeSelf(e) + if yyq1722[1] { + yy1727 := &x.State + yy1727.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1669[1] { + if yyq1722[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1675 := &x.State - yy1675.CodecEncodeSelf(e) + yy1728 := &x.State + yy1728.CodecEncodeSelf(e) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1669[2] { - yy1677 := &x.LastTerminationState - yy1677.CodecEncodeSelf(e) + if yyq1722[2] { + yy1730 := &x.LastTerminationState + yy1730.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1669[2] { + if yyq1722[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1678 := &x.LastTerminationState - yy1678.CodecEncodeSelf(e) + yy1731 := &x.LastTerminationState + yy1731.CodecEncodeSelf(e) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1680 := z.EncBinary() - _ = yym1680 + yym1733 := z.EncBinary() + _ = yym1733 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -22981,17 +23688,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1681 := z.EncBinary() - _ = yym1681 + yym1734 := z.EncBinary() + _ = yym1734 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1683 := z.EncBinary() - _ = yym1683 + yym1736 := z.EncBinary() + _ = yym1736 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -23000,17 +23707,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1684 := z.EncBinary() - _ = yym1684 + yym1737 := z.EncBinary() + _ = yym1737 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1686 := z.EncBinary() - _ = yym1686 + yym1739 := z.EncBinary() + _ = yym1739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -23019,17 +23726,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1687 := z.EncBinary() - _ = yym1687 + yym1740 := z.EncBinary() + _ = yym1740 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1689 := z.EncBinary() - _ = yym1689 + yym1742 := z.EncBinary() + _ = yym1742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -23038,18 +23745,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1690 := z.EncBinary() - _ = yym1690 + yym1743 := z.EncBinary() + _ = yym1743 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1669[7] { - yym1692 := z.EncBinary() - _ = yym1692 + if yyq1722[7] { + yym1745 := z.EncBinary() + _ = yym1745 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -23058,19 +23765,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1669[7] { + if yyq1722[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1693 := z.EncBinary() - _ = yym1693 + yym1746 := z.EncBinary() + _ = yym1746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1669 || yy2arr1669 { + if yyr1722 || yy2arr1722 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23083,25 +23790,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1694 := z.DecBinary() - _ = yym1694 + yym1747 := z.DecBinary() + _ = yym1747 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1695 := r.ContainerType() - if yyct1695 == codecSelferValueTypeMap1234 { - yyl1695 := r.ReadMapStart() - if yyl1695 == 0 { + yyct1748 := r.ContainerType() + if yyct1748 == codecSelferValueTypeMap1234 { + yyl1748 := r.ReadMapStart() + if yyl1748 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1695, d) + x.codecDecodeSelfFromMap(yyl1748, d) } - } else if yyct1695 == codecSelferValueTypeArray1234 { - yyl1695 := r.ReadArrayStart() - if yyl1695 == 0 { + } else if yyct1748 == codecSelferValueTypeArray1234 { + yyl1748 := r.ReadArrayStart() + if yyl1748 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1695, d) + x.codecDecodeSelfFromArray(yyl1748, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23113,12 +23820,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1696Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1696Slc - var yyhl1696 bool = l >= 0 - for yyj1696 := 0; ; yyj1696++ { - if yyhl1696 { - if yyj1696 >= l { + var yys1749Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1749Slc + var yyhl1749 bool = l >= 0 + for yyj1749 := 0; ; yyj1749++ { + if yyhl1749 { + if yyj1749 >= l { break } } else { @@ -23127,10 +23834,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1696Slc = r.DecodeBytes(yys1696Slc, true, true) - yys1696 := string(yys1696Slc) + yys1749Slc = r.DecodeBytes(yys1749Slc, true, true) + yys1749 := string(yys1749Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1696 { + switch yys1749 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -23141,15 +23848,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1698 := &x.State - yyv1698.CodecDecodeSelf(d) + yyv1751 := &x.State + yyv1751.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1699 := &x.LastTerminationState - yyv1699.CodecDecodeSelf(d) + yyv1752 := &x.LastTerminationState + yyv1752.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -23182,9 +23889,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1696) - } // end switch yys1696 - } // end for yyj1696 + z.DecStructFieldNotFound(-1, yys1749) + } // end switch yys1749 + } // end for yyj1749 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23192,16 +23899,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1705 int - var yyb1705 bool - var yyhl1705 bool = l >= 0 - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + var yyj1758 int + var yyb1758 bool + var yyhl1758 bool = l >= 0 + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23211,13 +23918,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23225,16 +23932,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1707 := &x.State - yyv1707.CodecDecodeSelf(d) + yyv1760 := &x.State + yyv1760.CodecDecodeSelf(d) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23242,16 +23949,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1708 := &x.LastTerminationState - yyv1708.CodecDecodeSelf(d) + yyv1761 := &x.LastTerminationState + yyv1761.CodecDecodeSelf(d) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23261,13 +23968,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23277,13 +23984,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23293,13 +24000,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23309,13 +24016,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23326,17 +24033,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1705++ - if yyhl1705 { - yyb1705 = yyj1705 > l + yyj1758++ + if yyhl1758 { + yyb1758 = yyj1758 > l } else { - yyb1705 = r.CheckBreak() + yyb1758 = r.CheckBreak() } - if yyb1705 { + if yyb1758 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1705-1, "") + z.DecStructFieldNotFound(yyj1758-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23345,8 +24052,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1714 := z.EncBinary() - _ = yym1714 + yym1767 := z.EncBinary() + _ = yym1767 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23358,8 +24065,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1715 := z.DecBinary() - _ = yym1715 + yym1768 := z.DecBinary() + _ = yym1768 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23371,8 +24078,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1716 := z.EncBinary() - _ = yym1716 + yym1769 := z.EncBinary() + _ = yym1769 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23384,8 +24091,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1717 := z.DecBinary() - _ = yym1717 + yym1770 := z.DecBinary() + _ = yym1770 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23400,34 +24107,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1718 := z.EncBinary() - _ = yym1718 + yym1771 := z.EncBinary() + _ = yym1771 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1719 := !z.EncBinary() - yy2arr1719 := z.EncBasicHandle().StructToArray - var yyq1719 [6]bool - _, _, _ = yysep1719, yyq1719, yy2arr1719 - const yyr1719 bool = false - yyq1719[2] = true - yyq1719[3] = true - yyq1719[4] = x.Reason != "" - yyq1719[5] = x.Message != "" - var yynn1719 int - if yyr1719 || yy2arr1719 { + yysep1772 := !z.EncBinary() + yy2arr1772 := z.EncBasicHandle().StructToArray + var yyq1772 [6]bool + _, _, _ = yysep1772, yyq1772, yy2arr1772 + const yyr1772 bool = false + yyq1772[2] = true + yyq1772[3] = true + yyq1772[4] = x.Reason != "" + yyq1772[5] = x.Message != "" + var yynn1772 int + if yyr1772 || yy2arr1772 { r.EncodeArrayStart(6) } else { - yynn1719 = 2 - for _, b := range yyq1719 { + yynn1772 = 2 + for _, b := range yyq1772 { if b { - yynn1719++ + yynn1772++ } } - r.EncodeMapStart(yynn1719) - yynn1719 = 0 + r.EncodeMapStart(yynn1772) + yynn1772 = 0 } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -23436,7 +24143,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -23445,85 +24152,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1719[2] { - yy1723 := &x.LastProbeTime - yym1724 := z.EncBinary() - _ = yym1724 + if yyq1772[2] { + yy1776 := &x.LastProbeTime + yym1777 := z.EncBinary() + _ = yym1777 if false { - } else if z.HasExtensions() && z.EncExt(yy1723) { - } else if yym1724 { - z.EncBinaryMarshal(yy1723) - } else if !yym1724 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1723) + } else if z.HasExtensions() && z.EncExt(yy1776) { + } else if yym1777 { + z.EncBinaryMarshal(yy1776) + } else if !yym1777 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1776) } else { - z.EncFallback(yy1723) + z.EncFallback(yy1776) } } else { r.EncodeNil() } } else { - if yyq1719[2] { + if yyq1772[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1725 := &x.LastProbeTime - yym1726 := z.EncBinary() - _ = yym1726 + yy1778 := &x.LastProbeTime + yym1779 := z.EncBinary() + _ = yym1779 if false { - } else if z.HasExtensions() && z.EncExt(yy1725) { - } else if yym1726 { - z.EncBinaryMarshal(yy1725) - } else if !yym1726 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1725) + } else if z.HasExtensions() && z.EncExt(yy1778) { + } else if yym1779 { + z.EncBinaryMarshal(yy1778) + } else if !yym1779 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1778) } else { - z.EncFallback(yy1725) + z.EncFallback(yy1778) } } } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1719[3] { - yy1728 := &x.LastTransitionTime - yym1729 := z.EncBinary() - _ = yym1729 + if yyq1772[3] { + yy1781 := &x.LastTransitionTime + yym1782 := z.EncBinary() + _ = yym1782 if false { - } else if z.HasExtensions() && z.EncExt(yy1728) { - } else if yym1729 { - z.EncBinaryMarshal(yy1728) - } else if !yym1729 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1728) + } else if z.HasExtensions() && z.EncExt(yy1781) { + } else if yym1782 { + z.EncBinaryMarshal(yy1781) + } else if !yym1782 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1781) } else { - z.EncFallback(yy1728) + z.EncFallback(yy1781) } } else { r.EncodeNil() } } else { - if yyq1719[3] { + if yyq1772[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1730 := &x.LastTransitionTime - yym1731 := z.EncBinary() - _ = yym1731 + yy1783 := &x.LastTransitionTime + yym1784 := z.EncBinary() + _ = yym1784 if false { - } else if z.HasExtensions() && z.EncExt(yy1730) { - } else if yym1731 { - z.EncBinaryMarshal(yy1730) - } else if !yym1731 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1730) + } else if z.HasExtensions() && z.EncExt(yy1783) { + } else if yym1784 { + z.EncBinaryMarshal(yy1783) + } else if !yym1784 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1783) } else { - z.EncFallback(yy1730) + z.EncFallback(yy1783) } } } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1719[4] { - yym1733 := z.EncBinary() - _ = yym1733 + if yyq1772[4] { + yym1786 := z.EncBinary() + _ = yym1786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -23532,23 +24239,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1719[4] { + if yyq1772[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1734 := z.EncBinary() - _ = yym1734 + yym1787 := z.EncBinary() + _ = yym1787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1719[5] { - yym1736 := z.EncBinary() - _ = yym1736 + if yyq1772[5] { + yym1789 := z.EncBinary() + _ = yym1789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -23557,19 +24264,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1719[5] { + if yyq1772[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1737 := z.EncBinary() - _ = yym1737 + yym1790 := z.EncBinary() + _ = yym1790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1719 || yy2arr1719 { + if yyr1772 || yy2arr1772 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23582,25 +24289,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1738 := z.DecBinary() - _ = yym1738 + yym1791 := z.DecBinary() + _ = yym1791 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1739 := r.ContainerType() - if yyct1739 == codecSelferValueTypeMap1234 { - yyl1739 := r.ReadMapStart() - if yyl1739 == 0 { + yyct1792 := r.ContainerType() + if yyct1792 == codecSelferValueTypeMap1234 { + yyl1792 := r.ReadMapStart() + if yyl1792 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1739, d) + x.codecDecodeSelfFromMap(yyl1792, d) } - } else if yyct1739 == codecSelferValueTypeArray1234 { - yyl1739 := r.ReadArrayStart() - if yyl1739 == 0 { + } else if yyct1792 == codecSelferValueTypeArray1234 { + yyl1792 := r.ReadArrayStart() + if yyl1792 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1739, d) + x.codecDecodeSelfFromArray(yyl1792, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23612,12 +24319,12 @@ func (x *PodCondition) 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 yys1793Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1793Slc + var yyhl1793 bool = l >= 0 + for yyj1793 := 0; ; yyj1793++ { + if yyhl1793 { + if yyj1793 >= l { break } } else { @@ -23626,10 +24333,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1740Slc = r.DecodeBytes(yys1740Slc, true, true) - yys1740 := string(yys1740Slc) + yys1793Slc = r.DecodeBytes(yys1793Slc, true, true) + yys1793 := string(yys1793Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1740 { + switch yys1793 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -23646,34 +24353,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1743 := &x.LastProbeTime - yym1744 := z.DecBinary() - _ = yym1744 + yyv1796 := &x.LastProbeTime + yym1797 := z.DecBinary() + _ = yym1797 if false { - } else if z.HasExtensions() && z.DecExt(yyv1743) { - } else if yym1744 { - z.DecBinaryUnmarshal(yyv1743) - } else if !yym1744 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1743) + } else if z.HasExtensions() && z.DecExt(yyv1796) { + } else if yym1797 { + z.DecBinaryUnmarshal(yyv1796) + } else if !yym1797 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1796) } else { - z.DecFallback(yyv1743, false) + z.DecFallback(yyv1796, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1745 := &x.LastTransitionTime - yym1746 := z.DecBinary() - _ = yym1746 + yyv1798 := &x.LastTransitionTime + yym1799 := z.DecBinary() + _ = yym1799 if false { - } else if z.HasExtensions() && z.DecExt(yyv1745) { - } else if yym1746 { - z.DecBinaryUnmarshal(yyv1745) - } else if !yym1746 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1745) + } else if z.HasExtensions() && z.DecExt(yyv1798) { + } else if yym1799 { + z.DecBinaryUnmarshal(yyv1798) + } else if !yym1799 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1798) } else { - z.DecFallback(yyv1745, false) + z.DecFallback(yyv1798, false) } } case "reason": @@ -23689,9 +24396,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1740) - } // end switch yys1740 - } // end for yyj1740 + z.DecStructFieldNotFound(-1, yys1793) + } // end switch yys1793 + } // end for yyj1793 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23699,16 +24406,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1749 int - var yyb1749 bool - var yyhl1749 bool = l >= 0 - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + var yyj1802 int + var yyb1802 bool + var yyhl1802 bool = l >= 0 + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23718,13 +24425,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23734,13 +24441,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23748,26 +24455,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1752 := &x.LastProbeTime - yym1753 := z.DecBinary() - _ = yym1753 + yyv1805 := &x.LastProbeTime + yym1806 := z.DecBinary() + _ = yym1806 if false { - } else if z.HasExtensions() && z.DecExt(yyv1752) { - } else if yym1753 { - z.DecBinaryUnmarshal(yyv1752) - } else if !yym1753 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1752) + } else if z.HasExtensions() && z.DecExt(yyv1805) { + } else if yym1806 { + z.DecBinaryUnmarshal(yyv1805) + } else if !yym1806 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1805) } else { - z.DecFallback(yyv1752, false) + z.DecFallback(yyv1805, false) } } - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23775,26 +24482,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1754 := &x.LastTransitionTime - yym1755 := z.DecBinary() - _ = yym1755 + yyv1807 := &x.LastTransitionTime + yym1808 := z.DecBinary() + _ = yym1808 if false { - } else if z.HasExtensions() && z.DecExt(yyv1754) { - } else if yym1755 { - z.DecBinaryUnmarshal(yyv1754) - } else if !yym1755 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1754) + } else if z.HasExtensions() && z.DecExt(yyv1807) { + } else if yym1808 { + z.DecBinaryUnmarshal(yyv1807) + } else if !yym1808 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1807) } else { - z.DecFallback(yyv1754, false) + z.DecFallback(yyv1807, false) } } - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23804,13 +24511,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23821,17 +24528,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1749++ - if yyhl1749 { - yyb1749 = yyj1749 > l + yyj1802++ + if yyhl1802 { + yyb1802 = yyj1802 > l } else { - yyb1749 = r.CheckBreak() + yyb1802 = r.CheckBreak() } - if yyb1749 { + if yyb1802 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1749-1, "") + z.DecStructFieldNotFound(yyj1802-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23840,8 +24547,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1758 := z.EncBinary() - _ = yym1758 + yym1811 := z.EncBinary() + _ = yym1811 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23853,8 +24560,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1759 := z.DecBinary() - _ = yym1759 + yym1812 := z.DecBinary() + _ = yym1812 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23869,37 +24576,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1760 := z.EncBinary() - _ = yym1760 + yym1813 := z.EncBinary() + _ = yym1813 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1761 := !z.EncBinary() - yy2arr1761 := z.EncBasicHandle().StructToArray - var yyq1761 [4]bool - _, _, _ = yysep1761, yyq1761, yy2arr1761 - const yyr1761 bool = false - yyq1761[0] = x.Kind != "" - yyq1761[1] = x.APIVersion != "" - yyq1761[2] = true - var yynn1761 int - if yyr1761 || yy2arr1761 { + yysep1814 := !z.EncBinary() + yy2arr1814 := z.EncBasicHandle().StructToArray + var yyq1814 [4]bool + _, _, _ = yysep1814, yyq1814, yy2arr1814 + const yyr1814 bool = false + yyq1814[0] = x.Kind != "" + yyq1814[1] = x.APIVersion != "" + yyq1814[2] = true + var yynn1814 int + if yyr1814 || yy2arr1814 { r.EncodeArrayStart(4) } else { - yynn1761 = 1 - for _, b := range yyq1761 { + yynn1814 = 1 + for _, b := range yyq1814 { if b { - yynn1761++ + yynn1814++ } } - r.EncodeMapStart(yynn1761) - yynn1761 = 0 + r.EncodeMapStart(yynn1814) + yynn1814 = 0 } - if yyr1761 || yy2arr1761 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1761[0] { - yym1763 := z.EncBinary() - _ = yym1763 + if yyq1814[0] { + yym1816 := z.EncBinary() + _ = yym1816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23908,23 +24615,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1761[0] { + if yyq1814[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1764 := z.EncBinary() - _ = yym1764 + yym1817 := z.EncBinary() + _ = yym1817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1761 || yy2arr1761 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1761[1] { - yym1766 := z.EncBinary() - _ = yym1766 + if yyq1814[1] { + yym1819 := z.EncBinary() + _ = yym1819 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23933,54 +24640,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1761[1] { + if yyq1814[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1767 := z.EncBinary() - _ = yym1767 + yym1820 := z.EncBinary() + _ = yym1820 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1761 || yy2arr1761 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1761[2] { - yy1769 := &x.ListMeta - yym1770 := z.EncBinary() - _ = yym1770 + if yyq1814[2] { + yy1822 := &x.ListMeta + yym1823 := z.EncBinary() + _ = yym1823 if false { - } else if z.HasExtensions() && z.EncExt(yy1769) { + } else if z.HasExtensions() && z.EncExt(yy1822) { } else { - z.EncFallback(yy1769) + z.EncFallback(yy1822) } } else { r.EncodeNil() } } else { - if yyq1761[2] { + if yyq1814[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1771 := &x.ListMeta - yym1772 := z.EncBinary() - _ = yym1772 + yy1824 := &x.ListMeta + yym1825 := z.EncBinary() + _ = yym1825 if false { - } else if z.HasExtensions() && z.EncExt(yy1771) { + } else if z.HasExtensions() && z.EncExt(yy1824) { } else { - z.EncFallback(yy1771) + z.EncFallback(yy1824) } } } - if yyr1761 || yy2arr1761 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1774 := z.EncBinary() - _ = yym1774 + yym1827 := z.EncBinary() + _ = yym1827 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -23993,15 +24700,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1775 := z.EncBinary() - _ = yym1775 + yym1828 := z.EncBinary() + _ = yym1828 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1761 || yy2arr1761 { + if yyr1814 || yy2arr1814 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24011,693 +24718,6 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1776 := z.DecBinary() - _ = yym1776 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1777 := r.ContainerType() - if yyct1777 == codecSelferValueTypeMap1234 { - yyl1777 := r.ReadMapStart() - if yyl1777 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1777, d) - } - } else if yyct1777 == codecSelferValueTypeArray1234 { - yyl1777 := r.ReadArrayStart() - if yyl1777 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1777, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1778Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1778Slc - var yyhl1778 bool = l >= 0 - for yyj1778 := 0; ; yyj1778++ { - if yyhl1778 { - if yyj1778 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1778Slc = r.DecodeBytes(yys1778Slc, true, true) - yys1778 := string(yys1778Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1778 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv1781 := &x.ListMeta - yym1782 := z.DecBinary() - _ = yym1782 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1781) { - } else { - z.DecFallback(yyv1781, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv1783 := &x.Items - yym1784 := z.DecBinary() - _ = yym1784 - if false { - } else { - h.decSlicePod((*[]Pod)(yyv1783), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1778) - } // end switch yys1778 - } // end for yyj1778 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1785 int - var yyb1785 bool - var yyhl1785 bool = l >= 0 - yyj1785++ - if yyhl1785 { - yyb1785 = yyj1785 > l - } else { - yyb1785 = r.CheckBreak() - } - if yyb1785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj1785++ - if yyhl1785 { - yyb1785 = yyj1785 > l - } else { - yyb1785 = r.CheckBreak() - } - if yyb1785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj1785++ - if yyhl1785 { - yyb1785 = yyj1785 > l - } else { - yyb1785 = r.CheckBreak() - } - if yyb1785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv1788 := &x.ListMeta - yym1789 := z.DecBinary() - _ = yym1789 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1788) { - } else { - z.DecFallback(yyv1788, false) - } - } - yyj1785++ - if yyhl1785 { - yyb1785 = yyj1785 > l - } else { - yyb1785 = r.CheckBreak() - } - if yyb1785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv1790 := &x.Items - yym1791 := z.DecBinary() - _ = yym1791 - if false { - } else { - h.decSlicePod((*[]Pod)(yyv1790), d) - } - } - for { - yyj1785++ - if yyhl1785 { - yyb1785 = yyj1785 > l - } else { - yyb1785 = r.CheckBreak() - } - if yyb1785 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1785-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym1792 := z.EncBinary() - _ = yym1792 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1793 := z.DecBinary() - _ = yym1793 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1794 := z.EncBinary() - _ = yym1794 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1795 := !z.EncBinary() - yy2arr1795 := z.EncBasicHandle().StructToArray - var yyq1795 [1]bool - _, _, _ = yysep1795, yyq1795, yy2arr1795 - const yyr1795 bool = false - var yynn1795 int - if yyr1795 || yy2arr1795 { - r.EncodeArrayStart(1) - } else { - yynn1795 = 1 - for _, b := range yyq1795 { - if b { - yynn1795++ - } - } - r.EncodeMapStart(yynn1795) - yynn1795 = 0 - } - if yyr1795 || yy2arr1795 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.NodeSelectorTerms == nil { - r.EncodeNil() - } else { - yym1797 := z.EncBinary() - _ = yym1797 - if false { - } else { - h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeSelectorTerms")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NodeSelectorTerms == nil { - r.EncodeNil() - } else { - yym1798 := z.EncBinary() - _ = yym1798 - if false { - } else { - h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) - } - } - } - if yyr1795 || yy2arr1795 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1799 := z.DecBinary() - _ = yym1799 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1800 := r.ContainerType() - if yyct1800 == codecSelferValueTypeMap1234 { - yyl1800 := r.ReadMapStart() - if yyl1800 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1800, d) - } - } else if yyct1800 == codecSelferValueTypeArray1234 { - yyl1800 := r.ReadArrayStart() - if yyl1800 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1800, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1801Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1801Slc - var yyhl1801 bool = l >= 0 - for yyj1801 := 0; ; yyj1801++ { - if yyhl1801 { - if yyj1801 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1801Slc = r.DecodeBytes(yys1801Slc, true, true) - yys1801 := string(yys1801Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1801 { - case "nodeSelectorTerms": - if r.TryDecodeAsNil() { - x.NodeSelectorTerms = nil - } else { - yyv1802 := &x.NodeSelectorTerms - yym1803 := z.DecBinary() - _ = yym1803 - if false { - } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1802), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1801) - } // end switch yys1801 - } // end for yyj1801 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1804 int - var yyb1804 bool - var yyhl1804 bool = l >= 0 - yyj1804++ - if yyhl1804 { - yyb1804 = yyj1804 > l - } else { - yyb1804 = r.CheckBreak() - } - if yyb1804 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NodeSelectorTerms = nil - } else { - yyv1805 := &x.NodeSelectorTerms - yym1806 := z.DecBinary() - _ = yym1806 - if false { - } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1805), d) - } - } - for { - yyj1804++ - if yyhl1804 { - yyb1804 = yyj1804 > l - } else { - yyb1804 = r.CheckBreak() - } - if yyb1804 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1804-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1807 := z.EncBinary() - _ = yym1807 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1808 := !z.EncBinary() - yy2arr1808 := z.EncBasicHandle().StructToArray - var yyq1808 [1]bool - _, _, _ = yysep1808, yyq1808, yy2arr1808 - const yyr1808 bool = false - var yynn1808 int - if yyr1808 || yy2arr1808 { - r.EncodeArrayStart(1) - } else { - yynn1808 = 1 - for _, b := range yyq1808 { - if b { - yynn1808++ - } - } - r.EncodeMapStart(yynn1808) - yynn1808 = 0 - } - if yyr1808 || yy2arr1808 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.MatchExpressions == nil { - r.EncodeNil() - } else { - yym1810 := z.EncBinary() - _ = yym1810 - if false { - } else { - h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("matchExpressions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.MatchExpressions == nil { - r.EncodeNil() - } else { - yym1811 := z.EncBinary() - _ = yym1811 - if false { - } else { - h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) - } - } - } - if yyr1808 || yy2arr1808 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1812 := z.DecBinary() - _ = yym1812 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1813 := r.ContainerType() - if yyct1813 == codecSelferValueTypeMap1234 { - yyl1813 := r.ReadMapStart() - if yyl1813 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1813, d) - } - } else if yyct1813 == codecSelferValueTypeArray1234 { - yyl1813 := r.ReadArrayStart() - if yyl1813 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1813, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1814Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1814Slc - var yyhl1814 bool = l >= 0 - for yyj1814 := 0; ; yyj1814++ { - if yyhl1814 { - if yyj1814 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1814Slc = r.DecodeBytes(yys1814Slc, true, true) - yys1814 := string(yys1814Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1814 { - case "matchExpressions": - if r.TryDecodeAsNil() { - x.MatchExpressions = nil - } else { - yyv1815 := &x.MatchExpressions - yym1816 := z.DecBinary() - _ = yym1816 - if false { - } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1815), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1814) - } // end switch yys1814 - } // end for yyj1814 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1817 int - var yyb1817 bool - var yyhl1817 bool = l >= 0 - yyj1817++ - if yyhl1817 { - yyb1817 = yyj1817 > l - } else { - yyb1817 = r.CheckBreak() - } - if yyb1817 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.MatchExpressions = nil - } else { - yyv1818 := &x.MatchExpressions - yym1819 := z.DecBinary() - _ = yym1819 - if false { - } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1818), d) - } - } - for { - yyj1817++ - if yyhl1817 { - yyb1817 = yyj1817 > l - } else { - yyb1817 = r.CheckBreak() - } - if yyb1817 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1817-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1820 := z.EncBinary() - _ = yym1820 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1821 := !z.EncBinary() - yy2arr1821 := z.EncBasicHandle().StructToArray - var yyq1821 [3]bool - _, _, _ = yysep1821, yyq1821, yy2arr1821 - const yyr1821 bool = false - yyq1821[2] = len(x.Values) != 0 - var yynn1821 int - if yyr1821 || yy2arr1821 { - r.EncodeArrayStart(3) - } else { - yynn1821 = 2 - for _, b := range yyq1821 { - if b { - yynn1821++ - } - } - r.EncodeMapStart(yynn1821) - yynn1821 = 0 - } - if yyr1821 || yy2arr1821 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1823 := z.EncBinary() - _ = yym1823 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("key")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1824 := z.EncBinary() - _ = yym1824 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) - } - } - if yyr1821 || yy2arr1821 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - x.Operator.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("operator")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Operator.CodecEncodeSelf(e) - } - if yyr1821 || yy2arr1821 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1821[2] { - if x.Values == nil { - r.EncodeNil() - } else { - yym1827 := z.EncBinary() - _ = yym1827 - if false { - } else { - z.F.EncSliceStringV(x.Values, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1821[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("values")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Values == nil { - r.EncodeNil() - } else { - yym1828 := z.EncBinary() - _ = yym1828 - if false { - } else { - z.F.EncSliceStringV(x.Values, false, e) - } - } - } - } - if yyr1821 || yy2arr1821 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -24727,7 +24747,7 @@ func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -24749,6 +24769,693 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec yys1831 := string(yys1831Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys1831 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv1834 := &x.ListMeta + yym1835 := z.DecBinary() + _ = yym1835 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1834) { + } else { + z.DecFallback(yyv1834, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv1836 := &x.Items + yym1837 := z.DecBinary() + _ = yym1837 + if false { + } else { + h.decSlicePod((*[]Pod)(yyv1836), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1831) + } // end switch yys1831 + } // end for yyj1831 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1838 int + var yyb1838 bool + var yyhl1838 bool = l >= 0 + yyj1838++ + if yyhl1838 { + yyb1838 = yyj1838 > l + } else { + yyb1838 = r.CheckBreak() + } + if yyb1838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj1838++ + if yyhl1838 { + yyb1838 = yyj1838 > l + } else { + yyb1838 = r.CheckBreak() + } + if yyb1838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj1838++ + if yyhl1838 { + yyb1838 = yyj1838 > l + } else { + yyb1838 = r.CheckBreak() + } + if yyb1838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv1841 := &x.ListMeta + yym1842 := z.DecBinary() + _ = yym1842 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1841) { + } else { + z.DecFallback(yyv1841, false) + } + } + yyj1838++ + if yyhl1838 { + yyb1838 = yyj1838 > l + } else { + yyb1838 = r.CheckBreak() + } + if yyb1838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv1843 := &x.Items + yym1844 := z.DecBinary() + _ = yym1844 + if false { + } else { + h.decSlicePod((*[]Pod)(yyv1843), d) + } + } + for { + yyj1838++ + if yyhl1838 { + yyb1838 = yyj1838 > l + } else { + yyb1838 = r.CheckBreak() + } + if yyb1838 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1838-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1845 := z.EncBinary() + _ = yym1845 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1846 := z.DecBinary() + _ = yym1846 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1847 := z.EncBinary() + _ = yym1847 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1848 := !z.EncBinary() + yy2arr1848 := z.EncBasicHandle().StructToArray + var yyq1848 [1]bool + _, _, _ = yysep1848, yyq1848, yy2arr1848 + const yyr1848 bool = false + var yynn1848 int + if yyr1848 || yy2arr1848 { + r.EncodeArrayStart(1) + } else { + yynn1848 = 1 + for _, b := range yyq1848 { + if b { + yynn1848++ + } + } + r.EncodeMapStart(yynn1848) + yynn1848 = 0 + } + if yyr1848 || yy2arr1848 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.NodeSelectorTerms == nil { + r.EncodeNil() + } else { + yym1850 := z.EncBinary() + _ = yym1850 + if false { + } else { + h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeSelectorTerms")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NodeSelectorTerms == nil { + r.EncodeNil() + } else { + yym1851 := z.EncBinary() + _ = yym1851 + if false { + } else { + h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) + } + } + } + if yyr1848 || yy2arr1848 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1852 := z.DecBinary() + _ = yym1852 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1853 := r.ContainerType() + if yyct1853 == codecSelferValueTypeMap1234 { + yyl1853 := r.ReadMapStart() + if yyl1853 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1853, d) + } + } else if yyct1853 == codecSelferValueTypeArray1234 { + yyl1853 := r.ReadArrayStart() + if yyl1853 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1853, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1854Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1854Slc + var yyhl1854 bool = l >= 0 + for yyj1854 := 0; ; yyj1854++ { + if yyhl1854 { + if yyj1854 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1854Slc = r.DecodeBytes(yys1854Slc, true, true) + yys1854 := string(yys1854Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1854 { + case "nodeSelectorTerms": + if r.TryDecodeAsNil() { + x.NodeSelectorTerms = nil + } else { + yyv1855 := &x.NodeSelectorTerms + yym1856 := z.DecBinary() + _ = yym1856 + if false { + } else { + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1855), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1854) + } // end switch yys1854 + } // end for yyj1854 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1857 int + var yyb1857 bool + var yyhl1857 bool = l >= 0 + yyj1857++ + if yyhl1857 { + yyb1857 = yyj1857 > l + } else { + yyb1857 = r.CheckBreak() + } + if yyb1857 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NodeSelectorTerms = nil + } else { + yyv1858 := &x.NodeSelectorTerms + yym1859 := z.DecBinary() + _ = yym1859 + if false { + } else { + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1858), d) + } + } + for { + yyj1857++ + if yyhl1857 { + yyb1857 = yyj1857 > l + } else { + yyb1857 = r.CheckBreak() + } + if yyb1857 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1857-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1860 := z.EncBinary() + _ = yym1860 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1861 := !z.EncBinary() + yy2arr1861 := z.EncBasicHandle().StructToArray + var yyq1861 [1]bool + _, _, _ = yysep1861, yyq1861, yy2arr1861 + const yyr1861 bool = false + var yynn1861 int + if yyr1861 || yy2arr1861 { + r.EncodeArrayStart(1) + } else { + yynn1861 = 1 + for _, b := range yyq1861 { + if b { + yynn1861++ + } + } + r.EncodeMapStart(yynn1861) + yynn1861 = 0 + } + if yyr1861 || yy2arr1861 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.MatchExpressions == nil { + r.EncodeNil() + } else { + yym1863 := z.EncBinary() + _ = yym1863 + if false { + } else { + h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("matchExpressions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.MatchExpressions == nil { + r.EncodeNil() + } else { + yym1864 := z.EncBinary() + _ = yym1864 + if false { + } else { + h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) + } + } + } + if yyr1861 || yy2arr1861 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1865 := z.DecBinary() + _ = yym1865 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1866 := r.ContainerType() + if yyct1866 == codecSelferValueTypeMap1234 { + yyl1866 := r.ReadMapStart() + if yyl1866 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1866, d) + } + } else if yyct1866 == codecSelferValueTypeArray1234 { + yyl1866 := r.ReadArrayStart() + if yyl1866 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1866, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1867Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1867Slc + var yyhl1867 bool = l >= 0 + for yyj1867 := 0; ; yyj1867++ { + if yyhl1867 { + if yyj1867 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1867Slc = r.DecodeBytes(yys1867Slc, true, true) + yys1867 := string(yys1867Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1867 { + case "matchExpressions": + if r.TryDecodeAsNil() { + x.MatchExpressions = nil + } else { + yyv1868 := &x.MatchExpressions + yym1869 := z.DecBinary() + _ = yym1869 + if false { + } else { + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1868), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1867) + } // end switch yys1867 + } // end for yyj1867 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1870 int + var yyb1870 bool + var yyhl1870 bool = l >= 0 + yyj1870++ + if yyhl1870 { + yyb1870 = yyj1870 > l + } else { + yyb1870 = r.CheckBreak() + } + if yyb1870 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.MatchExpressions = nil + } else { + yyv1871 := &x.MatchExpressions + yym1872 := z.DecBinary() + _ = yym1872 + if false { + } else { + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1871), d) + } + } + for { + yyj1870++ + if yyhl1870 { + yyb1870 = yyj1870 > l + } else { + yyb1870 = r.CheckBreak() + } + if yyb1870 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1870-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1873 := z.EncBinary() + _ = yym1873 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1874 := !z.EncBinary() + yy2arr1874 := z.EncBasicHandle().StructToArray + var yyq1874 [3]bool + _, _, _ = yysep1874, yyq1874, yy2arr1874 + const yyr1874 bool = false + yyq1874[2] = len(x.Values) != 0 + var yynn1874 int + if yyr1874 || yy2arr1874 { + r.EncodeArrayStart(3) + } else { + yynn1874 = 2 + for _, b := range yyq1874 { + if b { + yynn1874++ + } + } + r.EncodeMapStart(yynn1874) + yynn1874 = 0 + } + if yyr1874 || yy2arr1874 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1876 := z.EncBinary() + _ = yym1876 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("key")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1877 := z.EncBinary() + _ = yym1877 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } + if yyr1874 || yy2arr1874 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Operator.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("operator")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Operator.CodecEncodeSelf(e) + } + if yyr1874 || yy2arr1874 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1874[2] { + if x.Values == nil { + r.EncodeNil() + } else { + yym1880 := z.EncBinary() + _ = yym1880 + if false { + } else { + z.F.EncSliceStringV(x.Values, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1874[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("values")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Values == nil { + r.EncodeNil() + } else { + yym1881 := z.EncBinary() + _ = yym1881 + if false { + } else { + z.F.EncSliceStringV(x.Values, false, e) + } + } + } + } + if yyr1874 || yy2arr1874 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1882 := z.DecBinary() + _ = yym1882 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1883 := r.ContainerType() + if yyct1883 == codecSelferValueTypeMap1234 { + yyl1883 := r.ReadMapStart() + if yyl1883 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1883, d) + } + } else if yyct1883 == codecSelferValueTypeArray1234 { + yyl1883 := r.ReadArrayStart() + if yyl1883 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1883, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1884Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1884Slc + var yyhl1884 bool = l >= 0 + for yyj1884 := 0; ; yyj1884++ { + if yyhl1884 { + if yyj1884 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1884Slc = r.DecodeBytes(yys1884Slc, true, true) + yys1884 := string(yys1884Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1884 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -24765,18 +25472,18 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1834 := &x.Values - yym1835 := z.DecBinary() - _ = yym1835 + yyv1887 := &x.Values + yym1888 := z.DecBinary() + _ = yym1888 if false { } else { - z.F.DecSliceStringX(yyv1834, false, d) + z.F.DecSliceStringX(yyv1887, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1831) - } // end switch yys1831 - } // end for yyj1831 + z.DecStructFieldNotFound(-1, yys1884) + } // end switch yys1884 + } // end for yyj1884 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24784,16 +25491,16 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1836 int - var yyb1836 bool - var yyhl1836 bool = l >= 0 - yyj1836++ - if yyhl1836 { - yyb1836 = yyj1836 > l + var yyj1889 int + var yyb1889 bool + var yyhl1889 bool = l >= 0 + yyj1889++ + if yyhl1889 { + yyb1889 = yyj1889 > l } else { - yyb1836 = r.CheckBreak() + yyb1889 = r.CheckBreak() } - if yyb1836 { + if yyb1889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24803,13 +25510,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Key = string(r.DecodeString()) } - yyj1836++ - if yyhl1836 { - yyb1836 = yyj1836 > l + yyj1889++ + if yyhl1889 { + yyb1889 = yyj1889 > l } else { - yyb1836 = r.CheckBreak() + yyb1889 = r.CheckBreak() } - if yyb1836 { + if yyb1889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24819,13 +25526,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Operator = NodeSelectorOperator(r.DecodeString()) } - yyj1836++ - if yyhl1836 { - yyb1836 = yyj1836 > l + yyj1889++ + if yyhl1889 { + yyb1889 = yyj1889 > l } else { - yyb1836 = r.CheckBreak() + yyb1889 = r.CheckBreak() } - if yyb1836 { + if yyb1889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24833,26 +25540,26 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1839 := &x.Values - yym1840 := z.DecBinary() - _ = yym1840 + yyv1892 := &x.Values + yym1893 := z.DecBinary() + _ = yym1893 if false { } else { - z.F.DecSliceStringX(yyv1839, false, d) + z.F.DecSliceStringX(yyv1892, false, d) } } for { - yyj1836++ - if yyhl1836 { - yyb1836 = yyj1836 > l + yyj1889++ + if yyhl1889 { + yyb1889 = yyj1889 > l } else { - yyb1836 = r.CheckBreak() + yyb1889 = r.CheckBreak() } - if yyb1836 { + if yyb1889 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1836-1, "") + z.DecStructFieldNotFound(yyj1889-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24861,8 +25568,8 @@ func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1841 := z.EncBinary() - _ = yym1841 + yym1894 := z.EncBinary() + _ = yym1894 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24874,8 +25581,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1842 := z.DecBinary() - _ = yym1842 + yym1895 := z.DecBinary() + _ = yym1895 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24890,35 +25597,35 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1843 := z.EncBinary() - _ = yym1843 + yym1896 := z.EncBinary() + _ = yym1896 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[0] = x.NodeAffinity != nil - yyq1844[1] = x.PodAffinity != nil - yyq1844[2] = x.PodAntiAffinity != nil - var yynn1844 int - if yyr1844 || yy2arr1844 { + yysep1897 := !z.EncBinary() + yy2arr1897 := z.EncBasicHandle().StructToArray + var yyq1897 [3]bool + _, _, _ = yysep1897, yyq1897, yy2arr1897 + const yyr1897 bool = false + yyq1897[0] = x.NodeAffinity != nil + yyq1897[1] = x.PodAffinity != nil + yyq1897[2] = x.PodAntiAffinity != nil + var yynn1897 int + if yyr1897 || yy2arr1897 { r.EncodeArrayStart(3) } else { - yynn1844 = 0 - for _, b := range yyq1844 { + yynn1897 = 0 + for _, b := range yyq1897 { if b { - yynn1844++ + yynn1897++ } } - r.EncodeMapStart(yynn1844) - yynn1844 = 0 + r.EncodeMapStart(yynn1897) + yynn1897 = 0 } - if yyr1844 || yy2arr1844 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1844[0] { + if yyq1897[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -24928,7 +25635,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1844[0] { + if yyq1897[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24939,9 +25646,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1844 || yy2arr1844 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1844[1] { + if yyq1897[1] { if x.PodAffinity == nil { r.EncodeNil() } else { @@ -24951,7 +25658,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1844[1] { + if yyq1897[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24962,9 +25669,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1844 || yy2arr1844 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1844[2] { + if yyq1897[2] { if x.PodAntiAffinity == nil { r.EncodeNil() } else { @@ -24974,7 +25681,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1844[2] { + if yyq1897[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAntiAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24985,7 +25692,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1844 || yy2arr1844 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24998,25 +25705,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1848 := z.DecBinary() - _ = yym1848 + yym1901 := z.DecBinary() + _ = yym1901 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1849 := r.ContainerType() - if yyct1849 == codecSelferValueTypeMap1234 { - yyl1849 := r.ReadMapStart() - if yyl1849 == 0 { + yyct1902 := r.ContainerType() + if yyct1902 == codecSelferValueTypeMap1234 { + yyl1902 := r.ReadMapStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1849, d) + x.codecDecodeSelfFromMap(yyl1902, d) } - } else if yyct1849 == codecSelferValueTypeArray1234 { - yyl1849 := r.ReadArrayStart() - if yyl1849 == 0 { + } else if yyct1902 == codecSelferValueTypeArray1234 { + yyl1902 := r.ReadArrayStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1849, d) + x.codecDecodeSelfFromArray(yyl1902, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25028,12 +25735,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1850Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1850Slc - var yyhl1850 bool = l >= 0 - for yyj1850 := 0; ; yyj1850++ { - if yyhl1850 { - if yyj1850 >= 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 { @@ -25042,10 +25749,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1850Slc = r.DecodeBytes(yys1850Slc, true, true) - yys1850 := string(yys1850Slc) + yys1903Slc = r.DecodeBytes(yys1903Slc, true, true) + yys1903 := string(yys1903Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1850 { + switch yys1903 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -25080,9 +25787,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1850) - } // end switch yys1850 - } // end for yyj1850 + z.DecStructFieldNotFound(-1, yys1903) + } // end switch yys1903 + } // end for yyj1903 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25090,16 +25797,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1854 int - var yyb1854 bool - var yyhl1854 bool = l >= 0 - yyj1854++ - if yyhl1854 { - yyb1854 = yyj1854 > l + var yyj1907 int + var yyb1907 bool + var yyhl1907 bool = l >= 0 + yyj1907++ + if yyhl1907 { + yyb1907 = yyj1907 > l } else { - yyb1854 = r.CheckBreak() + yyb1907 = r.CheckBreak() } - if yyb1854 { + if yyb1907 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25114,13 +25821,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NodeAffinity.CodecDecodeSelf(d) } - yyj1854++ - if yyhl1854 { - yyb1854 = yyj1854 > l + yyj1907++ + if yyhl1907 { + yyb1907 = yyj1907 > l } else { - yyb1854 = r.CheckBreak() + yyb1907 = r.CheckBreak() } - if yyb1854 { + if yyb1907 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25135,13 +25842,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PodAffinity.CodecDecodeSelf(d) } - yyj1854++ - if yyhl1854 { - yyb1854 = yyj1854 > l + yyj1907++ + if yyhl1907 { + yyb1907 = yyj1907 > l } else { - yyb1854 = r.CheckBreak() + yyb1907 = r.CheckBreak() } - if yyb1854 { + if yyb1907 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25157,17 +25864,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } for { - yyj1854++ - if yyhl1854 { - yyb1854 = yyj1854 > l + yyj1907++ + if yyhl1907 { + yyb1907 = yyj1907 > l } else { - yyb1854 = r.CheckBreak() + yyb1907 = r.CheckBreak() } - if yyb1854 { + if yyb1907 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1854-1, "") + z.DecStructFieldNotFound(yyj1907-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25179,39 +25886,39 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1858 := z.EncBinary() - _ = yym1858 + yym1911 := z.EncBinary() + _ = yym1911 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1859 := !z.EncBinary() - yy2arr1859 := z.EncBasicHandle().StructToArray - var yyq1859 [2]bool - _, _, _ = yysep1859, yyq1859, yy2arr1859 - const yyr1859 bool = false - yyq1859[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1859[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1859 int - if yyr1859 || yy2arr1859 { + yysep1912 := !z.EncBinary() + yy2arr1912 := z.EncBasicHandle().StructToArray + var yyq1912 [2]bool + _, _, _ = yysep1912, yyq1912, yy2arr1912 + const yyr1912 bool = false + yyq1912[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1912[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1912 int + if yyr1912 || yy2arr1912 { r.EncodeArrayStart(2) } else { - yynn1859 = 0 - for _, b := range yyq1859 { + yynn1912 = 0 + for _, b := range yyq1912 { if b { - yynn1859++ + yynn1912++ } } - r.EncodeMapStart(yynn1859) - yynn1859 = 0 + r.EncodeMapStart(yynn1912) + yynn1912 = 0 } - if yyr1859 || yy2arr1859 { + if yyr1912 || yy2arr1912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[0] { + if yyq1912[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1861 := z.EncBinary() - _ = yym1861 + yym1914 := z.EncBinary() + _ = yym1914 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25221,15 +25928,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1859[0] { + if yyq1912[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1862 := z.EncBinary() - _ = yym1862 + yym1915 := z.EncBinary() + _ = yym1915 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25237,14 +25944,14 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1859 || yy2arr1859 { + if yyr1912 || yy2arr1912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[1] { + if yyq1912[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1864 := z.EncBinary() - _ = yym1864 + yym1917 := z.EncBinary() + _ = yym1917 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25254,15 +25961,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1859[1] { + if yyq1912[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1865 := z.EncBinary() - _ = yym1865 + yym1918 := z.EncBinary() + _ = yym1918 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25270,7 +25977,7 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1859 || yy2arr1859 { + if yyr1912 || yy2arr1912 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25283,25 +25990,25 @@ func (x *PodAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1866 := z.DecBinary() - _ = yym1866 + yym1919 := z.DecBinary() + _ = yym1919 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1867 := r.ContainerType() - if yyct1867 == codecSelferValueTypeMap1234 { - yyl1867 := r.ReadMapStart() - if yyl1867 == 0 { + yyct1920 := r.ContainerType() + if yyct1920 == codecSelferValueTypeMap1234 { + yyl1920 := r.ReadMapStart() + if yyl1920 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1867, d) + x.codecDecodeSelfFromMap(yyl1920, d) } - } else if yyct1867 == codecSelferValueTypeArray1234 { - yyl1867 := r.ReadArrayStart() - if yyl1867 == 0 { + } else if yyct1920 == codecSelferValueTypeArray1234 { + yyl1920 := r.ReadArrayStart() + if yyl1920 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1867, d) + x.codecDecodeSelfFromArray(yyl1920, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25313,12 +26020,12 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1868Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1868Slc - var yyhl1868 bool = l >= 0 - for yyj1868 := 0; ; yyj1868++ { - if yyhl1868 { - if yyj1868 >= l { + var yys1921Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1921Slc + var yyhl1921 bool = l >= 0 + for yyj1921 := 0; ; yyj1921++ { + if yyhl1921 { + if yyj1921 >= l { break } } else { @@ -25327,38 +26034,38 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1868Slc = r.DecodeBytes(yys1868Slc, true, true) - yys1868 := string(yys1868Slc) + yys1921Slc = r.DecodeBytes(yys1921Slc, true, true) + yys1921 := string(yys1921Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1868 { + switch yys1921 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1869 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1870 := z.DecBinary() - _ = yym1870 + yyv1922 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1923 := z.DecBinary() + _ = yym1923 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1869), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1922), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1871 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1872 := z.DecBinary() - _ = yym1872 + yyv1924 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1925 := z.DecBinary() + _ = yym1925 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1871), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1924), d) } } default: - z.DecStructFieldNotFound(-1, yys1868) - } // end switch yys1868 - } // end for yyj1868 + z.DecStructFieldNotFound(-1, yys1921) + } // end switch yys1921 + } // end for yyj1921 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25366,16 +26073,16 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1873 int - var yyb1873 bool - var yyhl1873 bool = l >= 0 - yyj1873++ - if yyhl1873 { - yyb1873 = yyj1873 > l + var yyj1926 int + var yyb1926 bool + var yyhl1926 bool = l >= 0 + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1873 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1873 { + if yyb1926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25383,21 +26090,21 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1874 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1875 := z.DecBinary() - _ = yym1875 + yyv1927 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1928 := z.DecBinary() + _ = yym1928 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1874), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1927), d) } } - yyj1873++ - if yyhl1873 { - yyb1873 = yyj1873 > l + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1873 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1873 { + if yyb1926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25405,26 +26112,26 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1876 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1877 := z.DecBinary() - _ = yym1877 + yyv1929 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1930 := z.DecBinary() + _ = yym1930 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1876), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1929), d) } } for { - yyj1873++ - if yyhl1873 { - yyb1873 = yyj1873 > l + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1873 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1873 { + if yyb1926 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1873-1, "") + z.DecStructFieldNotFound(yyj1926-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25436,39 +26143,39 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1878 := z.EncBinary() - _ = yym1878 + yym1931 := z.EncBinary() + _ = yym1931 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1879 := !z.EncBinary() - yy2arr1879 := z.EncBasicHandle().StructToArray - var yyq1879 [2]bool - _, _, _ = yysep1879, yyq1879, yy2arr1879 - const yyr1879 bool = false - yyq1879[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1879[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1879 int - if yyr1879 || yy2arr1879 { + yysep1932 := !z.EncBinary() + yy2arr1932 := z.EncBasicHandle().StructToArray + var yyq1932 [2]bool + _, _, _ = yysep1932, yyq1932, yy2arr1932 + const yyr1932 bool = false + yyq1932[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1932[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1932 int + if yyr1932 || yy2arr1932 { r.EncodeArrayStart(2) } else { - yynn1879 = 0 - for _, b := range yyq1879 { + yynn1932 = 0 + for _, b := range yyq1932 { if b { - yynn1879++ + yynn1932++ } } - r.EncodeMapStart(yynn1879) - yynn1879 = 0 + r.EncodeMapStart(yynn1932) + yynn1932 = 0 } - if yyr1879 || yy2arr1879 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1879[0] { + if yyq1932[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1881 := z.EncBinary() - _ = yym1881 + yym1934 := z.EncBinary() + _ = yym1934 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25478,15 +26185,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1879[0] { + if yyq1932[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1882 := z.EncBinary() - _ = yym1882 + yym1935 := z.EncBinary() + _ = yym1935 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25494,14 +26201,14 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1879 || yy2arr1879 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1879[1] { + if yyq1932[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1884 := z.EncBinary() - _ = yym1884 + yym1937 := z.EncBinary() + _ = yym1937 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25511,15 +26218,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1879[1] { + if yyq1932[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1885 := z.EncBinary() - _ = yym1885 + yym1938 := z.EncBinary() + _ = yym1938 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25527,7 +26234,7 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1879 || yy2arr1879 { + if yyr1932 || yy2arr1932 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25540,25 +26247,25 @@ func (x *PodAntiAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1886 := z.DecBinary() - _ = yym1886 + yym1939 := z.DecBinary() + _ = yym1939 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1887 := r.ContainerType() - if yyct1887 == codecSelferValueTypeMap1234 { - yyl1887 := r.ReadMapStart() - if yyl1887 == 0 { + yyct1940 := r.ContainerType() + if yyct1940 == codecSelferValueTypeMap1234 { + yyl1940 := r.ReadMapStart() + if yyl1940 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1887, d) + x.codecDecodeSelfFromMap(yyl1940, d) } - } else if yyct1887 == codecSelferValueTypeArray1234 { - yyl1887 := r.ReadArrayStart() - if yyl1887 == 0 { + } else if yyct1940 == codecSelferValueTypeArray1234 { + yyl1940 := r.ReadArrayStart() + if yyl1940 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1887, d) + x.codecDecodeSelfFromArray(yyl1940, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25570,12 +26277,12 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1888Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1888Slc - var yyhl1888 bool = l >= 0 - for yyj1888 := 0; ; yyj1888++ { - if yyhl1888 { - if yyj1888 >= l { + var yys1941Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1941Slc + var yyhl1941 bool = l >= 0 + for yyj1941 := 0; ; yyj1941++ { + if yyhl1941 { + if yyj1941 >= l { break } } else { @@ -25584,38 +26291,38 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1888Slc = r.DecodeBytes(yys1888Slc, true, true) - yys1888 := string(yys1888Slc) + yys1941Slc = r.DecodeBytes(yys1941Slc, true, true) + yys1941 := string(yys1941Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1888 { + switch yys1941 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1889 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1890 := z.DecBinary() - _ = yym1890 + yyv1942 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1943 := z.DecBinary() + _ = yym1943 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1889), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1942), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1891 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1892 := z.DecBinary() - _ = yym1892 + yyv1944 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1945 := z.DecBinary() + _ = yym1945 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1891), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1944), d) } } default: - z.DecStructFieldNotFound(-1, yys1888) - } // end switch yys1888 - } // end for yyj1888 + z.DecStructFieldNotFound(-1, yys1941) + } // end switch yys1941 + } // end for yyj1941 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25623,16 +26330,16 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1893 int - var yyb1893 bool - var yyhl1893 bool = l >= 0 - yyj1893++ - if yyhl1893 { - yyb1893 = yyj1893 > l + var yyj1946 int + var yyb1946 bool + var yyhl1946 bool = l >= 0 + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1893 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1893 { + if yyb1946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25640,21 +26347,21 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1894 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1895 := z.DecBinary() - _ = yym1895 + yyv1947 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1948 := z.DecBinary() + _ = yym1948 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1894), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1947), d) } } - yyj1893++ - if yyhl1893 { - yyb1893 = yyj1893 > l + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1893 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1893 { + if yyb1946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25662,26 +26369,26 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1896 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1897 := z.DecBinary() - _ = yym1897 + yyv1949 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1950 := z.DecBinary() + _ = yym1950 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1896), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1949), d) } } for { - yyj1893++ - if yyhl1893 { - yyb1893 = yyj1893 > l + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1893 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1893 { + if yyb1946 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1893-1, "") + z.DecStructFieldNotFound(yyj1946-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25693,33 +26400,33 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1898 := z.EncBinary() - _ = yym1898 + yym1951 := z.EncBinary() + _ = yym1951 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1899 := !z.EncBinary() - yy2arr1899 := z.EncBasicHandle().StructToArray - var yyq1899 [2]bool - _, _, _ = yysep1899, yyq1899, yy2arr1899 - const yyr1899 bool = false - var yynn1899 int - if yyr1899 || yy2arr1899 { + yysep1952 := !z.EncBinary() + yy2arr1952 := z.EncBasicHandle().StructToArray + var yyq1952 [2]bool + _, _, _ = yysep1952, yyq1952, yy2arr1952 + const yyr1952 bool = false + var yynn1952 int + if yyr1952 || yy2arr1952 { r.EncodeArrayStart(2) } else { - yynn1899 = 2 - for _, b := range yyq1899 { + yynn1952 = 2 + for _, b := range yyq1952 { if b { - yynn1899++ + yynn1952++ } } - r.EncodeMapStart(yynn1899) - yynn1899 = 0 + r.EncodeMapStart(yynn1952) + yynn1952 = 0 } - if yyr1899 || yy2arr1899 { + if yyr1952 || yy2arr1952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1901 := z.EncBinary() - _ = yym1901 + yym1954 := z.EncBinary() + _ = yym1954 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -25728,25 +26435,25 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1902 := z.EncBinary() - _ = yym1902 + yym1955 := z.EncBinary() + _ = yym1955 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1899 || yy2arr1899 { + if yyr1952 || yy2arr1952 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1904 := &x.PodAffinityTerm - yy1904.CodecEncodeSelf(e) + yy1957 := &x.PodAffinityTerm + yy1957.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinityTerm")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1905 := &x.PodAffinityTerm - yy1905.CodecEncodeSelf(e) + yy1958 := &x.PodAffinityTerm + yy1958.CodecEncodeSelf(e) } - if yyr1899 || yy2arr1899 { + if yyr1952 || yy2arr1952 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25759,25 +26466,25 @@ func (x *WeightedPodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1906 := z.DecBinary() - _ = yym1906 + yym1959 := z.DecBinary() + _ = yym1959 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1907 := r.ContainerType() - if yyct1907 == codecSelferValueTypeMap1234 { - yyl1907 := r.ReadMapStart() - if yyl1907 == 0 { + yyct1960 := r.ContainerType() + if yyct1960 == codecSelferValueTypeMap1234 { + yyl1960 := r.ReadMapStart() + if yyl1960 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1907, d) + x.codecDecodeSelfFromMap(yyl1960, d) } - } else if yyct1907 == codecSelferValueTypeArray1234 { - yyl1907 := r.ReadArrayStart() - if yyl1907 == 0 { + } else if yyct1960 == codecSelferValueTypeArray1234 { + yyl1960 := r.ReadArrayStart() + if yyl1960 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1907, d) + x.codecDecodeSelfFromArray(yyl1960, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25789,12 +26496,12 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1908Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1908Slc - var yyhl1908 bool = l >= 0 - for yyj1908 := 0; ; yyj1908++ { - if yyhl1908 { - if yyj1908 >= l { + var yys1961Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1961Slc + var yyhl1961 bool = l >= 0 + for yyj1961 := 0; ; yyj1961++ { + if yyhl1961 { + if yyj1961 >= l { break } } else { @@ -25803,10 +26510,10 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1908Slc = r.DecodeBytes(yys1908Slc, true, true) - yys1908 := string(yys1908Slc) + yys1961Slc = r.DecodeBytes(yys1961Slc, true, true) + yys1961 := string(yys1961Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1908 { + switch yys1961 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -25817,13 +26524,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1910 := &x.PodAffinityTerm - yyv1910.CodecDecodeSelf(d) + yyv1963 := &x.PodAffinityTerm + yyv1963.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1908) - } // end switch yys1908 - } // end for yyj1908 + z.DecStructFieldNotFound(-1, yys1961) + } // end switch yys1961 + } // end for yyj1961 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25831,16 +26538,16 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1911 int - var yyb1911 bool - var yyhl1911 bool = l >= 0 - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l + var yyj1964 int + var yyb1964 bool + var yyhl1964 bool = l >= 0 + yyj1964++ + if yyhl1964 { + yyb1964 = yyj1964 > l } else { - yyb1911 = r.CheckBreak() + yyb1964 = r.CheckBreak() } - if yyb1911 { + if yyb1964 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25850,13 +26557,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l + yyj1964++ + if yyhl1964 { + yyb1964 = yyj1964 > l } else { - yyb1911 = r.CheckBreak() + yyb1964 = r.CheckBreak() } - if yyb1911 { + if yyb1964 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25864,21 +26571,21 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1913 := &x.PodAffinityTerm - yyv1913.CodecDecodeSelf(d) + yyv1966 := &x.PodAffinityTerm + yyv1966.CodecDecodeSelf(d) } for { - yyj1911++ - if yyhl1911 { - yyb1911 = yyj1911 > l + yyj1964++ + if yyhl1964 { + yyb1964 = yyj1964 > l } else { - yyb1911 = r.CheckBreak() + yyb1964 = r.CheckBreak() } - if yyb1911 { + if yyb1964 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1911-1, "") + z.DecStructFieldNotFound(yyj1964-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25890,39 +26597,39 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1914 := z.EncBinary() - _ = yym1914 + yym1967 := z.EncBinary() + _ = yym1967 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1915 := !z.EncBinary() - yy2arr1915 := z.EncBasicHandle().StructToArray - var yyq1915 [3]bool - _, _, _ = yysep1915, yyq1915, yy2arr1915 - const yyr1915 bool = false - yyq1915[0] = x.LabelSelector != nil - yyq1915[2] = x.TopologyKey != "" - var yynn1915 int - if yyr1915 || yy2arr1915 { + yysep1968 := !z.EncBinary() + yy2arr1968 := z.EncBasicHandle().StructToArray + var yyq1968 [3]bool + _, _, _ = yysep1968, yyq1968, yy2arr1968 + const yyr1968 bool = false + yyq1968[0] = x.LabelSelector != nil + yyq1968[2] = x.TopologyKey != "" + var yynn1968 int + if yyr1968 || yy2arr1968 { r.EncodeArrayStart(3) } else { - yynn1915 = 1 - for _, b := range yyq1915 { + yynn1968 = 1 + for _, b := range yyq1968 { if b { - yynn1915++ + yynn1968++ } } - r.EncodeMapStart(yynn1915) - yynn1915 = 0 + r.EncodeMapStart(yynn1968) + yynn1968 = 0 } - if yyr1915 || yy2arr1915 { + if yyr1968 || yy2arr1968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1915[0] { + if yyq1968[0] { if x.LabelSelector == nil { r.EncodeNil() } else { - yym1917 := z.EncBinary() - _ = yym1917 + yym1970 := z.EncBinary() + _ = yym1970 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -25933,15 +26640,15 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1915[0] { + if yyq1968[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym1918 := z.EncBinary() - _ = yym1918 + yym1971 := z.EncBinary() + _ = yym1971 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -25950,13 +26657,13 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1915 || yy2arr1915 { + if yyr1968 || yy2arr1968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Namespaces == nil { r.EncodeNil() } else { - yym1920 := z.EncBinary() - _ = yym1920 + yym1973 := z.EncBinary() + _ = yym1973 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) @@ -25969,19 +26676,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.Namespaces == nil { r.EncodeNil() } else { - yym1921 := z.EncBinary() - _ = yym1921 + yym1974 := z.EncBinary() + _ = yym1974 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) } } } - if yyr1915 || yy2arr1915 { + if yyr1968 || yy2arr1968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1915[2] { - yym1923 := z.EncBinary() - _ = yym1923 + if yyq1968[2] { + yym1976 := z.EncBinary() + _ = yym1976 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) @@ -25990,19 +26697,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1915[2] { + if yyq1968[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("topologyKey")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1924 := z.EncBinary() - _ = yym1924 + yym1977 := z.EncBinary() + _ = yym1977 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) } } } - if yyr1915 || yy2arr1915 { + if yyr1968 || yy2arr1968 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26015,25 +26722,25 @@ func (x *PodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1925 := z.DecBinary() - _ = yym1925 + yym1978 := z.DecBinary() + _ = yym1978 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1926 := r.ContainerType() - if yyct1926 == codecSelferValueTypeMap1234 { - yyl1926 := r.ReadMapStart() - if yyl1926 == 0 { + yyct1979 := r.ContainerType() + if yyct1979 == codecSelferValueTypeMap1234 { + yyl1979 := r.ReadMapStart() + if yyl1979 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1926, d) + x.codecDecodeSelfFromMap(yyl1979, d) } - } else if yyct1926 == codecSelferValueTypeArray1234 { - yyl1926 := r.ReadArrayStart() - if yyl1926 == 0 { + } else if yyct1979 == codecSelferValueTypeArray1234 { + yyl1979 := r.ReadArrayStart() + if yyl1979 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1926, d) + x.codecDecodeSelfFromArray(yyl1979, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26045,12 +26752,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1927Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1927Slc - var yyhl1927 bool = l >= 0 - for yyj1927 := 0; ; yyj1927++ { - if yyhl1927 { - if yyj1927 >= l { + var yys1980Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1980Slc + var yyhl1980 bool = l >= 0 + for yyj1980 := 0; ; yyj1980++ { + if yyhl1980 { + if yyj1980 >= l { break } } else { @@ -26059,10 +26766,10 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1927Slc = r.DecodeBytes(yys1927Slc, true, true) - yys1927 := string(yys1927Slc) + yys1980Slc = r.DecodeBytes(yys1980Slc, true, true) + yys1980 := string(yys1980Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1927 { + switch yys1980 { case "labelSelector": if r.TryDecodeAsNil() { if x.LabelSelector != nil { @@ -26072,8 +26779,8 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1929 := z.DecBinary() - _ = yym1929 + yym1982 := z.DecBinary() + _ = yym1982 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { @@ -26084,12 +26791,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1930 := &x.Namespaces - yym1931 := z.DecBinary() - _ = yym1931 + yyv1983 := &x.Namespaces + yym1984 := z.DecBinary() + _ = yym1984 if false { } else { - z.F.DecSliceStringX(yyv1930, false, d) + z.F.DecSliceStringX(yyv1983, false, d) } } case "topologyKey": @@ -26099,713 +26806,13 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TopologyKey = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1927) - } // end switch yys1927 - } // end for yyj1927 + z.DecStructFieldNotFound(-1, yys1980) + } // end switch yys1980 + } // end for yyj1980 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1933 int - var yyb1933 bool - var yyhl1933 bool = l >= 0 - yyj1933++ - if yyhl1933 { - yyb1933 = yyj1933 > l - } else { - yyb1933 = r.CheckBreak() - } - if yyb1933 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.LabelSelector != nil { - x.LabelSelector = nil - } - } else { - if x.LabelSelector == nil { - x.LabelSelector = new(pkg2_unversioned.LabelSelector) - } - yym1935 := z.DecBinary() - _ = yym1935 - if false { - } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { - } else { - z.DecFallback(x.LabelSelector, false) - } - } - yyj1933++ - if yyhl1933 { - yyb1933 = yyj1933 > l - } else { - yyb1933 = r.CheckBreak() - } - if yyb1933 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Namespaces = nil - } else { - yyv1936 := &x.Namespaces - yym1937 := z.DecBinary() - _ = yym1937 - if false { - } else { - z.F.DecSliceStringX(yyv1936, false, d) - } - } - yyj1933++ - if yyhl1933 { - yyb1933 = yyj1933 > l - } else { - yyb1933 = r.CheckBreak() - } - if yyb1933 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.TopologyKey = "" - } else { - x.TopologyKey = string(r.DecodeString()) - } - for { - yyj1933++ - if yyhl1933 { - yyb1933 = yyj1933 > l - } else { - yyb1933 = r.CheckBreak() - } - if yyb1933 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1933-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1939 := z.EncBinary() - _ = yym1939 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1940 := !z.EncBinary() - yy2arr1940 := z.EncBasicHandle().StructToArray - var yyq1940 [2]bool - _, _, _ = yysep1940, yyq1940, yy2arr1940 - const yyr1940 bool = false - yyq1940[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1940[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1940 int - if yyr1940 || yy2arr1940 { - r.EncodeArrayStart(2) - } else { - yynn1940 = 0 - for _, b := range yyq1940 { - if b { - yynn1940++ - } - } - r.EncodeMapStart(yynn1940) - yynn1940 = 0 - } - if yyr1940 || yy2arr1940 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1940[0] { - if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { - r.EncodeNil() - } else { - x.RequiredDuringSchedulingIgnoredDuringExecution.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq1940[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { - r.EncodeNil() - } else { - x.RequiredDuringSchedulingIgnoredDuringExecution.CodecEncodeSelf(e) - } - } - } - if yyr1940 || yy2arr1940 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1940[1] { - if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { - r.EncodeNil() - } else { - yym1943 := z.EncBinary() - _ = yym1943 - if false { - } else { - h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1940[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { - r.EncodeNil() - } else { - yym1944 := z.EncBinary() - _ = yym1944 - if false { - } else { - h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) - } - } - } - } - if yyr1940 || yy2arr1940 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1945 := z.DecBinary() - _ = yym1945 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1946 := r.ContainerType() - if yyct1946 == codecSelferValueTypeMap1234 { - yyl1946 := r.ReadMapStart() - if yyl1946 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1946, d) - } - } else if yyct1946 == codecSelferValueTypeArray1234 { - yyl1946 := r.ReadArrayStart() - if yyl1946 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1946, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1947Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1947Slc - var yyhl1947 bool = l >= 0 - for yyj1947 := 0; ; yyj1947++ { - if yyhl1947 { - if yyj1947 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1947Slc = r.DecodeBytes(yys1947Slc, true, true) - yys1947 := string(yys1947Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1947 { - case "requiredDuringSchedulingIgnoredDuringExecution": - if r.TryDecodeAsNil() { - if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { - x.RequiredDuringSchedulingIgnoredDuringExecution = nil - } - } else { - if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { - x.RequiredDuringSchedulingIgnoredDuringExecution = new(NodeSelector) - } - x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) - } - case "preferredDuringSchedulingIgnoredDuringExecution": - if r.TryDecodeAsNil() { - x.PreferredDuringSchedulingIgnoredDuringExecution = nil - } else { - yyv1949 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1950 := z.DecBinary() - _ = yym1950 - if false { - } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1949), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1947) - } // end switch yys1947 - } // end for yyj1947 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1951 int - var yyb1951 bool - var yyhl1951 bool = l >= 0 - yyj1951++ - if yyhl1951 { - yyb1951 = yyj1951 > l - } else { - yyb1951 = r.CheckBreak() - } - if yyb1951 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { - x.RequiredDuringSchedulingIgnoredDuringExecution = nil - } - } else { - if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { - x.RequiredDuringSchedulingIgnoredDuringExecution = new(NodeSelector) - } - x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) - } - yyj1951++ - if yyhl1951 { - yyb1951 = yyj1951 > l - } else { - yyb1951 = r.CheckBreak() - } - if yyb1951 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.PreferredDuringSchedulingIgnoredDuringExecution = nil - } else { - yyv1953 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1954 := z.DecBinary() - _ = yym1954 - if false { - } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1953), d) - } - } - for { - yyj1951++ - if yyhl1951 { - yyb1951 = yyj1951 > l - } else { - yyb1951 = r.CheckBreak() - } - if yyb1951 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1951-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1955 := z.EncBinary() - _ = yym1955 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1956 := !z.EncBinary() - yy2arr1956 := z.EncBasicHandle().StructToArray - var yyq1956 [2]bool - _, _, _ = yysep1956, yyq1956, yy2arr1956 - const yyr1956 bool = false - var yynn1956 int - if yyr1956 || yy2arr1956 { - r.EncodeArrayStart(2) - } else { - yynn1956 = 2 - for _, b := range yyq1956 { - if b { - yynn1956++ - } - } - r.EncodeMapStart(yynn1956) - yynn1956 = 0 - } - if yyr1956 || yy2arr1956 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1958 := z.EncBinary() - _ = yym1958 - if false { - } else { - r.EncodeInt(int64(x.Weight)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("weight")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1959 := z.EncBinary() - _ = yym1959 - if false { - } else { - r.EncodeInt(int64(x.Weight)) - } - } - if yyr1956 || yy2arr1956 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1961 := &x.Preference - yy1961.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("preference")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1962 := &x.Preference - yy1962.CodecEncodeSelf(e) - } - if yyr1956 || yy2arr1956 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1963 := z.DecBinary() - _ = yym1963 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1964 := r.ContainerType() - if yyct1964 == codecSelferValueTypeMap1234 { - yyl1964 := r.ReadMapStart() - if yyl1964 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1964, d) - } - } else if yyct1964 == codecSelferValueTypeArray1234 { - yyl1964 := r.ReadArrayStart() - if yyl1964 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1964, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1965Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1965Slc - var yyhl1965 bool = l >= 0 - for yyj1965 := 0; ; yyj1965++ { - if yyhl1965 { - if yyj1965 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1965Slc = r.DecodeBytes(yys1965Slc, true, true) - yys1965 := string(yys1965Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1965 { - case "weight": - if r.TryDecodeAsNil() { - x.Weight = 0 - } else { - x.Weight = int32(r.DecodeInt(32)) - } - case "preference": - if r.TryDecodeAsNil() { - x.Preference = NodeSelectorTerm{} - } else { - yyv1967 := &x.Preference - yyv1967.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys1965) - } // end switch yys1965 - } // end for yyj1965 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1968 int - var yyb1968 bool - var yyhl1968 bool = l >= 0 - yyj1968++ - if yyhl1968 { - yyb1968 = yyj1968 > l - } else { - yyb1968 = r.CheckBreak() - } - if yyb1968 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Weight = 0 - } else { - x.Weight = int32(r.DecodeInt(32)) - } - yyj1968++ - if yyhl1968 { - yyb1968 = yyj1968 > l - } else { - yyb1968 = r.CheckBreak() - } - if yyb1968 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Preference = NodeSelectorTerm{} - } else { - yyv1970 := &x.Preference - yyv1970.CodecDecodeSelf(d) - } - for { - yyj1968++ - if yyhl1968 { - yyb1968 = yyj1968 > l - } else { - yyb1968 = r.CheckBreak() - } - if yyb1968 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1968-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1971 := z.EncBinary() - _ = yym1971 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1972 := !z.EncBinary() - yy2arr1972 := z.EncBasicHandle().StructToArray - var yyq1972 [3]bool - _, _, _ = yysep1972, yyq1972, yy2arr1972 - const yyr1972 bool = false - yyq1972[1] = x.Value != "" - var yynn1972 int - if yyr1972 || yy2arr1972 { - r.EncodeArrayStart(3) - } else { - yynn1972 = 2 - for _, b := range yyq1972 { - if b { - yynn1972++ - } - } - r.EncodeMapStart(yynn1972) - yynn1972 = 0 - } - if yyr1972 || yy2arr1972 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1974 := z.EncBinary() - _ = yym1974 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("key")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1975 := z.EncBinary() - _ = yym1975 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) - } - } - if yyr1972 || yy2arr1972 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1972[1] { - yym1977 := z.EncBinary() - _ = yym1977 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Value)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1972[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("value")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1978 := z.EncBinary() - _ = yym1978 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Value)) - } - } - } - if yyr1972 || yy2arr1972 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - x.Effect.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("effect")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Effect.CodecEncodeSelf(e) - } - if yyr1972 || yy2arr1972 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1980 := z.DecBinary() - _ = yym1980 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1981 := r.ContainerType() - if yyct1981 == codecSelferValueTypeMap1234 { - yyl1981 := r.ReadMapStart() - if yyl1981 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1981, d) - } - } else if yyct1981 == codecSelferValueTypeArray1234 { - yyl1981 := r.ReadArrayStart() - if yyl1981 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1981, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1982Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1982Slc - var yyhl1982 bool = l >= 0 - for yyj1982 := 0; ; yyj1982++ { - if yyhl1982 { - if yyj1982 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1982Slc = r.DecodeBytes(yys1982Slc, true, true) - yys1982 := string(yys1982Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1982 { - case "key": - if r.TryDecodeAsNil() { - x.Key = "" - } else { - x.Key = string(r.DecodeString()) - } - case "value": - if r.TryDecodeAsNil() { - x.Value = "" - } else { - x.Value = string(r.DecodeString()) - } - case "effect": - if r.TryDecodeAsNil() { - x.Effect = "" - } else { - x.Effect = TaintEffect(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys1982) - } // end switch yys1982 - } // end for yyj1982 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -26824,9 +26831,20 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Key = "" + if x.LabelSelector != nil { + x.LabelSelector = nil + } } else { - x.Key = string(r.DecodeString()) + if x.LabelSelector == nil { + x.LabelSelector = new(pkg2_unversioned.LabelSelector) + } + yym1988 := z.DecBinary() + _ = yym1988 + if false { + } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { + } else { + z.DecFallback(x.LabelSelector, false) + } } yyj1986++ if yyhl1986 { @@ -26840,9 +26858,15 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Value = "" + x.Namespaces = nil } else { - x.Value = string(r.DecodeString()) + yyv1989 := &x.Namespaces + yym1990 := z.DecBinary() + _ = yym1990 + if false { + } else { + z.F.DecSliceStringX(yyv1989, false, d) + } } yyj1986++ if yyhl1986 { @@ -26856,9 +26880,9 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Effect = "" + x.TopologyKey = "" } else { - x.Effect = TaintEffect(r.DecodeString()) + x.TopologyKey = string(r.DecodeString()) } for { yyj1986++ @@ -26876,33 +26900,7 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym1990 := z.EncBinary() - _ = yym1990 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1991 := z.DecBinary() - _ = yym1991 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -26916,16 +26914,14 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep1993 := !z.EncBinary() yy2arr1993 := z.EncBasicHandle().StructToArray - var yyq1993 [4]bool + var yyq1993 [2]bool _, _, _ = yysep1993, yyq1993, yy2arr1993 const yyr1993 bool = false - yyq1993[0] = x.Key != "" - yyq1993[1] = x.Operator != "" - yyq1993[2] = x.Value != "" - yyq1993[3] = x.Effect != "" + yyq1993[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1993[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 var yynn1993 int if yyr1993 || yy2arr1993 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(2) } else { yynn1993 = 0 for _, b := range yyq1993 { @@ -26939,81 +26935,57 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { if yyr1993 || yy2arr1993 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq1993[0] { - yym1995 := z.EncBinary() - _ = yym1995 - if false { + if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + x.RequiredDuringSchedulingIgnoredDuringExecution.CodecEncodeSelf(e) } } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeNil() } } else { if yyq1993[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("key")) + r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1996 := z.EncBinary() - _ = yym1996 - if false { + if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + x.RequiredDuringSchedulingIgnoredDuringExecution.CodecEncodeSelf(e) } } } if yyr1993 || yy2arr1993 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq1993[1] { - x.Operator.CodecEncodeSelf(e) + if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { + r.EncodeNil() + } else { + yym1996 := z.EncBinary() + _ = yym1996 + if false { + } else { + h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) + } + } } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeNil() } } else { if yyq1993[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("operator")) + r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Operator.CodecEncodeSelf(e) - } - } - if yyr1993 || yy2arr1993 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1993[2] { - yym1999 := z.EncBinary() - _ = yym1999 - if false { + if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + yym1997 := z.EncBinary() + _ = yym1997 + if false { + } else { + h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) + } } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1993[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("value")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2000 := z.EncBinary() - _ = yym2000 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Value)) - } - } - } - if yyr1993 || yy2arr1993 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1993[3] { - x.Effect.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1993[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("effect")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Effect.CodecEncodeSelf(e) } } if yyr1993 || yy2arr1993 { @@ -27025,29 +26997,29 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2002 := z.DecBinary() - _ = yym2002 + yym1998 := z.DecBinary() + _ = yym1998 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2003 := r.ContainerType() - if yyct2003 == codecSelferValueTypeMap1234 { - yyl2003 := r.ReadMapStart() - if yyl2003 == 0 { + yyct1999 := r.ContainerType() + if yyct1999 == codecSelferValueTypeMap1234 { + yyl1999 := r.ReadMapStart() + if yyl1999 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2003, d) + x.codecDecodeSelfFromMap(yyl1999, d) } - } else if yyct2003 == codecSelferValueTypeArray1234 { - yyl2003 := r.ReadArrayStart() - if yyl2003 == 0 { + } else if yyct1999 == codecSelferValueTypeArray1234 { + yyl1999 := r.ReadArrayStart() + if yyl1999 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2003, d) + x.codecDecodeSelfFromArray(yyl1999, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27055,16 +27027,16 @@ func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2004Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2004Slc - var yyhl2004 bool = l >= 0 - for yyj2004 := 0; ; yyj2004++ { - if yyhl2004 { - if yyj2004 >= l { + var yys2000Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2000Slc + var yyhl2000 bool = l >= 0 + for yyj2000 := 0; ; yyj2000++ { + if yyhl2000 { + if yyj2000 >= l { break } } else { @@ -27073,22 +27045,454 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2004Slc = r.DecodeBytes(yys2004Slc, true, true) - yys2004 := string(yys2004Slc) + yys2000Slc = r.DecodeBytes(yys2000Slc, true, true) + yys2000 := string(yys2000Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2004 { + switch yys2000 { + case "requiredDuringSchedulingIgnoredDuringExecution": + if r.TryDecodeAsNil() { + if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { + x.RequiredDuringSchedulingIgnoredDuringExecution = nil + } + } else { + if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { + x.RequiredDuringSchedulingIgnoredDuringExecution = new(NodeSelector) + } + x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) + } + case "preferredDuringSchedulingIgnoredDuringExecution": + if r.TryDecodeAsNil() { + x.PreferredDuringSchedulingIgnoredDuringExecution = nil + } else { + yyv2002 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym2003 := z.DecBinary() + _ = yym2003 + if false { + } else { + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv2002), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2000) + } // end switch yys2000 + } // end for yyj2000 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2004 int + var yyb2004 bool + var yyhl2004 bool = l >= 0 + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l + } else { + yyb2004 = r.CheckBreak() + } + if yyb2004 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { + x.RequiredDuringSchedulingIgnoredDuringExecution = nil + } + } else { + if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { + x.RequiredDuringSchedulingIgnoredDuringExecution = new(NodeSelector) + } + x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) + } + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l + } else { + yyb2004 = r.CheckBreak() + } + if yyb2004 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.PreferredDuringSchedulingIgnoredDuringExecution = nil + } else { + yyv2006 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym2007 := z.DecBinary() + _ = yym2007 + if false { + } else { + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv2006), d) + } + } + for { + yyj2004++ + if yyhl2004 { + yyb2004 = yyj2004 > l + } else { + yyb2004 = r.CheckBreak() + } + if yyb2004 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2004-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2008 := z.EncBinary() + _ = yym2008 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2009 := !z.EncBinary() + yy2arr2009 := z.EncBasicHandle().StructToArray + var yyq2009 [2]bool + _, _, _ = yysep2009, yyq2009, yy2arr2009 + const yyr2009 bool = false + var yynn2009 int + if yyr2009 || yy2arr2009 { + r.EncodeArrayStart(2) + } else { + yynn2009 = 2 + for _, b := range yyq2009 { + if b { + yynn2009++ + } + } + r.EncodeMapStart(yynn2009) + yynn2009 = 0 + } + if yyr2009 || yy2arr2009 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2011 := z.EncBinary() + _ = yym2011 + if false { + } else { + r.EncodeInt(int64(x.Weight)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("weight")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2012 := z.EncBinary() + _ = yym2012 + if false { + } else { + r.EncodeInt(int64(x.Weight)) + } + } + if yyr2009 || yy2arr2009 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy2014 := &x.Preference + yy2014.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("preference")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2015 := &x.Preference + yy2015.CodecEncodeSelf(e) + } + if yyr2009 || yy2arr2009 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2016 := z.DecBinary() + _ = yym2016 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2017 := r.ContainerType() + if yyct2017 == codecSelferValueTypeMap1234 { + yyl2017 := r.ReadMapStart() + if yyl2017 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2017, d) + } + } else if yyct2017 == codecSelferValueTypeArray1234 { + yyl2017 := r.ReadArrayStart() + if yyl2017 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2017, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2018Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2018Slc + var yyhl2018 bool = l >= 0 + for yyj2018 := 0; ; yyj2018++ { + if yyhl2018 { + if yyj2018 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2018Slc = r.DecodeBytes(yys2018Slc, true, true) + yys2018 := string(yys2018Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2018 { + case "weight": + if r.TryDecodeAsNil() { + x.Weight = 0 + } else { + x.Weight = int32(r.DecodeInt(32)) + } + case "preference": + if r.TryDecodeAsNil() { + x.Preference = NodeSelectorTerm{} + } else { + yyv2020 := &x.Preference + yyv2020.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2018) + } // end switch yys2018 + } // end for yyj2018 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2021 int + var yyb2021 bool + var yyhl2021 bool = l >= 0 + yyj2021++ + if yyhl2021 { + yyb2021 = yyj2021 > l + } else { + yyb2021 = r.CheckBreak() + } + if yyb2021 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Weight = 0 + } else { + x.Weight = int32(r.DecodeInt(32)) + } + yyj2021++ + if yyhl2021 { + yyb2021 = yyj2021 > l + } else { + yyb2021 = r.CheckBreak() + } + if yyb2021 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Preference = NodeSelectorTerm{} + } else { + yyv2023 := &x.Preference + yyv2023.CodecDecodeSelf(d) + } + for { + yyj2021++ + if yyhl2021 { + yyb2021 = yyj2021 > l + } else { + yyb2021 = r.CheckBreak() + } + if yyb2021 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2021-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2024 := z.EncBinary() + _ = yym2024 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2025 := !z.EncBinary() + yy2arr2025 := z.EncBasicHandle().StructToArray + var yyq2025 [3]bool + _, _, _ = yysep2025, yyq2025, yy2arr2025 + const yyr2025 bool = false + yyq2025[1] = x.Value != "" + var yynn2025 int + if yyr2025 || yy2arr2025 { + r.EncodeArrayStart(3) + } else { + yynn2025 = 2 + for _, b := range yyq2025 { + if b { + yynn2025++ + } + } + r.EncodeMapStart(yynn2025) + yynn2025 = 0 + } + if yyr2025 || yy2arr2025 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2027 := z.EncBinary() + _ = yym2027 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("key")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2028 := z.EncBinary() + _ = yym2028 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } + if yyr2025 || yy2arr2025 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2025[1] { + yym2030 := z.EncBinary() + _ = yym2030 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2025[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("value")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2031 := z.EncBinary() + _ = yym2031 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + } + } + } + if yyr2025 || yy2arr2025 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Effect.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("effect")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Effect.CodecEncodeSelf(e) + } + if yyr2025 || yy2arr2025 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2033 := z.DecBinary() + _ = yym2033 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2034 := r.ContainerType() + if yyct2034 == codecSelferValueTypeMap1234 { + yyl2034 := r.ReadMapStart() + if yyl2034 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2034, d) + } + } else if yyct2034 == codecSelferValueTypeArray1234 { + yyl2034 := r.ReadArrayStart() + if yyl2034 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2034, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2035Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2035Slc + var yyhl2035 bool = l >= 0 + for yyj2035 := 0; ; yyj2035++ { + if yyhl2035 { + if yyj2035 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2035Slc = r.DecodeBytes(yys2035Slc, true, true) + yys2035 := string(yys2035Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2035 { case "key": if r.TryDecodeAsNil() { x.Key = "" } else { x.Key = string(r.DecodeString()) } - case "operator": - if r.TryDecodeAsNil() { - x.Operator = "" - } else { - x.Operator = TolerationOperator(r.DecodeString()) - } case "value": if r.TryDecodeAsNil() { x.Value = "" @@ -27102,26 +27506,26 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2004) - } // end switch yys2004 - } // end for yyj2004 + z.DecStructFieldNotFound(-1, yys2035) + } // end switch yys2035 + } // end for yyj2035 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2009 int - var yyb2009 bool - var yyhl2009 bool = l >= 0 - yyj2009++ - if yyhl2009 { - yyb2009 = yyj2009 > l + var yyj2039 int + var yyb2039 bool + var yyhl2039 bool = l >= 0 + yyj2039++ + if yyhl2039 { + yyb2039 = yyj2039 > l } else { - yyb2009 = r.CheckBreak() + yyb2039 = r.CheckBreak() } - if yyb2009 { + if yyb2039 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27131,29 +27535,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj2009++ - if yyhl2009 { - yyb2009 = yyj2009 > l + yyj2039++ + if yyhl2039 { + yyb2039 = yyj2039 > l } else { - yyb2009 = r.CheckBreak() + yyb2039 = r.CheckBreak() } - if yyb2009 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Operator = "" - } else { - x.Operator = TolerationOperator(r.DecodeString()) - } - yyj2009++ - if yyhl2009 { - yyb2009 = yyj2009 > l - } else { - yyb2009 = r.CheckBreak() - } - if yyb2009 { + if yyb2039 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27163,13 +27551,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj2009++ - if yyhl2009 { - yyb2009 = yyj2009 > l + yyj2039++ + if yyhl2039 { + yyb2039 = yyj2039 > l } else { - yyb2009 = r.CheckBreak() + yyb2039 = r.CheckBreak() } - if yyb2009 { + if yyb2039 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27180,27 +27568,27 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj2009++ - if yyhl2009 { - yyb2009 = yyj2009 > l + yyj2039++ + if yyhl2039 { + yyb2039 = yyj2039 > l } else { - yyb2009 = r.CheckBreak() + yyb2039 = r.CheckBreak() } - if yyb2009 { + if yyb2039 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2009-1, "") + z.DecStructFieldNotFound(yyj2039-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { +func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2014 := z.EncBinary() - _ = yym2014 + yym2043 := z.EncBinary() + _ = yym2043 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -27208,12 +27596,12 @@ func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2015 := z.DecBinary() - _ = yym2015 + yym2044 := z.DecBinary() + _ = yym2044 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -27221,384 +27609,121 @@ func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym2016 := z.EncBinary() - _ = yym2016 + yym2045 := z.EncBinary() + _ = yym2045 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2017 := !z.EncBinary() - yy2arr2017 := z.EncBasicHandle().StructToArray - var yyq2017 [13]bool - _, _, _ = yysep2017, yyq2017, yy2arr2017 - const yyr2017 bool = false - yyq2017[2] = x.RestartPolicy != "" - yyq2017[3] = x.TerminationGracePeriodSeconds != nil - yyq2017[4] = x.ActiveDeadlineSeconds != nil - yyq2017[5] = x.DNSPolicy != "" - yyq2017[6] = len(x.NodeSelector) != 0 - yyq2017[8] = x.NodeName != "" - yyq2017[9] = x.SecurityContext != nil - yyq2017[10] = len(x.ImagePullSecrets) != 0 - yyq2017[11] = x.Hostname != "" - yyq2017[12] = x.Subdomain != "" - var yynn2017 int - if yyr2017 || yy2arr2017 { - r.EncodeArrayStart(13) + yysep2046 := !z.EncBinary() + yy2arr2046 := z.EncBasicHandle().StructToArray + var yyq2046 [4]bool + _, _, _ = yysep2046, yyq2046, yy2arr2046 + const yyr2046 bool = false + yyq2046[0] = x.Key != "" + yyq2046[1] = x.Operator != "" + yyq2046[2] = x.Value != "" + yyq2046[3] = x.Effect != "" + var yynn2046 int + if yyr2046 || yy2arr2046 { + r.EncodeArrayStart(4) } else { - yynn2017 = 3 - for _, b := range yyq2017 { + yynn2046 = 0 + for _, b := range yyq2046 { if b { - yynn2017++ + yynn2046++ } } - r.EncodeMapStart(yynn2017) - yynn2017 = 0 + r.EncodeMapStart(yynn2046) + yynn2046 = 0 } - if yyr2017 || yy2arr2017 { + if yyr2046 || yy2arr2046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Volumes == nil { - r.EncodeNil() - } else { - yym2019 := z.EncBinary() - _ = yym2019 + if yyq2046[0] { + yym2048 := z.EncBinary() + _ = yym2048 if false { } else { - h.encSliceVolume(([]Volume)(x.Volumes), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("volumes")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Volumes == nil { - r.EncodeNil() - } else { - yym2020 := z.EncBinary() - _ = yym2020 - if false { - } else { - h.encSliceVolume(([]Volume)(x.Volumes), e) - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Containers == nil { - r.EncodeNil() - } else { - yym2022 := z.EncBinary() - _ = yym2022 - if false { - } else { - h.encSliceContainer(([]Container)(x.Containers), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("containers")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Containers == nil { - r.EncodeNil() - } else { - yym2023 := z.EncBinary() - _ = yym2023 - if false { - } else { - h.encSliceContainer(([]Container)(x.Containers), e) - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[2] { - x.RestartPolicy.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2017[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.RestartPolicy.CodecEncodeSelf(e) - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[3] { - if x.TerminationGracePeriodSeconds == nil { - r.EncodeNil() - } else { - yy2026 := *x.TerminationGracePeriodSeconds - yym2027 := z.EncBinary() - _ = yym2027 - if false { - } else { - r.EncodeInt(int64(yy2026)) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2017[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.TerminationGracePeriodSeconds == nil { - r.EncodeNil() - } else { - yy2028 := *x.TerminationGracePeriodSeconds - yym2029 := z.EncBinary() - _ = yym2029 - if false { - } else { - r.EncodeInt(int64(yy2028)) - } - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[4] { - if x.ActiveDeadlineSeconds == nil { - r.EncodeNil() - } else { - yy2031 := *x.ActiveDeadlineSeconds - yym2032 := z.EncBinary() - _ = yym2032 - if false { - } else { - r.EncodeInt(int64(yy2031)) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2017[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.ActiveDeadlineSeconds == nil { - r.EncodeNil() - } else { - yy2033 := *x.ActiveDeadlineSeconds - yym2034 := z.EncBinary() - _ = yym2034 - if false { - } else { - r.EncodeInt(int64(yy2033)) - } - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[5] { - x.DNSPolicy.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2017[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.DNSPolicy.CodecEncodeSelf(e) - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[6] { - if x.NodeSelector == nil { - r.EncodeNil() - } else { - yym2037 := z.EncBinary() - _ = yym2037 - if false { - } else { - z.F.EncMapStringStringV(x.NodeSelector, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2017[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NodeSelector == nil { - r.EncodeNil() - } else { - yym2038 := z.EncBinary() - _ = yym2038 - if false { - } else { - z.F.EncMapStringStringV(x.NodeSelector, false, e) - } - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2040 := z.EncBinary() - _ = yym2040 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2041 := z.EncBinary() - _ = yym2041 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[8] { - yym2043 := z.EncBinary() - _ = yym2043 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2017[8] { + if yyq2046[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeName")) + r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2044 := z.EncBinary() - _ = yym2044 + yym2049 := z.EncBinary() + _ = yym2049 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } } - if yyr2017 || yy2arr2017 { + if yyr2046 || yy2arr2046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[9] { - if x.SecurityContext == nil { - r.EncodeNil() - } else { - x.SecurityContext.CodecEncodeSelf(e) - } + if yyq2046[1] { + x.Operator.CodecEncodeSelf(e) } else { - r.EncodeNil() + r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2017[9] { + if yyq2046[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("securityContext")) + r.EncodeString(codecSelferC_UTF81234, string("operator")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.SecurityContext == nil { - r.EncodeNil() - } else { - x.SecurityContext.CodecEncodeSelf(e) - } + x.Operator.CodecEncodeSelf(e) } } - if yyr2017 || yy2arr2017 { + if yyr2046 || yy2arr2046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[10] { - if x.ImagePullSecrets == nil { - r.EncodeNil() - } else { - yym2047 := z.EncBinary() - _ = yym2047 - if false { - } else { - h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2017[10] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.ImagePullSecrets == nil { - r.EncodeNil() - } else { - yym2048 := z.EncBinary() - _ = yym2048 - if false { - } else { - h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) - } - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[11] { - yym2050 := z.EncBinary() - _ = yym2050 + if yyq2046[2] { + yym2052 := z.EncBinary() + _ = yym2052 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2017[11] { + if yyq2046[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostname")) + r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2051 := z.EncBinary() - _ = yym2051 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) - } - } - } - if yyr2017 || yy2arr2017 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2017[12] { yym2053 := z.EncBinary() _ = yym2053 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } + } + } + if yyr2046 || yy2arr2046 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2046[3] { + x.Effect.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2017[12] { + if yyq2046[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("subdomain")) + r.EncodeString(codecSelferC_UTF81234, string("effect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2054 := z.EncBinary() - _ = yym2054 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) - } + x.Effect.CodecEncodeSelf(e) } } - if yyr2017 || yy2arr2017 { + if yyr2046 || yy2arr2046 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27607,7 +27732,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -27637,7 +27762,7 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -27659,28 +27784,610 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys2057 := string(yys2057Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys2057 { + case "key": + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + case "operator": + if r.TryDecodeAsNil() { + x.Operator = "" + } else { + x.Operator = TolerationOperator(r.DecodeString()) + } + case "value": + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + case "effect": + if r.TryDecodeAsNil() { + x.Effect = "" + } else { + x.Effect = TaintEffect(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys2057) + } // end switch yys2057 + } // end for yyj2057 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2062 int + var yyb2062 bool + var yyhl2062 bool = l >= 0 + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l + } else { + yyb2062 = r.CheckBreak() + } + if yyb2062 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l + } else { + yyb2062 = r.CheckBreak() + } + if yyb2062 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Operator = "" + } else { + x.Operator = TolerationOperator(r.DecodeString()) + } + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l + } else { + yyb2062 = r.CheckBreak() + } + if yyb2062 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l + } else { + yyb2062 = r.CheckBreak() + } + if yyb2062 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Effect = "" + } else { + x.Effect = TaintEffect(r.DecodeString()) + } + for { + yyj2062++ + if yyhl2062 { + yyb2062 = yyj2062 > l + } else { + yyb2062 = r.CheckBreak() + } + if yyb2062 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2062-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2067 := z.EncBinary() + _ = yym2067 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2068 := z.DecBinary() + _ = yym2068 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2069 := z.EncBinary() + _ = yym2069 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2070 := !z.EncBinary() + yy2arr2070 := z.EncBasicHandle().StructToArray + var yyq2070 [13]bool + _, _, _ = yysep2070, yyq2070, yy2arr2070 + const yyr2070 bool = false + yyq2070[2] = x.RestartPolicy != "" + yyq2070[3] = x.TerminationGracePeriodSeconds != nil + yyq2070[4] = x.ActiveDeadlineSeconds != nil + yyq2070[5] = x.DNSPolicy != "" + yyq2070[6] = len(x.NodeSelector) != 0 + yyq2070[8] = x.NodeName != "" + yyq2070[9] = x.SecurityContext != nil + yyq2070[10] = len(x.ImagePullSecrets) != 0 + yyq2070[11] = x.Hostname != "" + yyq2070[12] = x.Subdomain != "" + var yynn2070 int + if yyr2070 || yy2arr2070 { + r.EncodeArrayStart(13) + } else { + yynn2070 = 3 + for _, b := range yyq2070 { + if b { + yynn2070++ + } + } + r.EncodeMapStart(yynn2070) + yynn2070 = 0 + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Volumes == nil { + r.EncodeNil() + } else { + yym2072 := z.EncBinary() + _ = yym2072 + if false { + } else { + h.encSliceVolume(([]Volume)(x.Volumes), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("volumes")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Volumes == nil { + r.EncodeNil() + } else { + yym2073 := z.EncBinary() + _ = yym2073 + if false { + } else { + h.encSliceVolume(([]Volume)(x.Volumes), e) + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Containers == nil { + r.EncodeNil() + } else { + yym2075 := z.EncBinary() + _ = yym2075 + if false { + } else { + h.encSliceContainer(([]Container)(x.Containers), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("containers")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Containers == nil { + r.EncodeNil() + } else { + yym2076 := z.EncBinary() + _ = yym2076 + if false { + } else { + h.encSliceContainer(([]Container)(x.Containers), e) + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[2] { + x.RestartPolicy.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2070[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.RestartPolicy.CodecEncodeSelf(e) + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[3] { + if x.TerminationGracePeriodSeconds == nil { + r.EncodeNil() + } else { + yy2079 := *x.TerminationGracePeriodSeconds + yym2080 := z.EncBinary() + _ = yym2080 + if false { + } else { + r.EncodeInt(int64(yy2079)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2070[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.TerminationGracePeriodSeconds == nil { + r.EncodeNil() + } else { + yy2081 := *x.TerminationGracePeriodSeconds + yym2082 := z.EncBinary() + _ = yym2082 + if false { + } else { + r.EncodeInt(int64(yy2081)) + } + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[4] { + if x.ActiveDeadlineSeconds == nil { + r.EncodeNil() + } else { + yy2084 := *x.ActiveDeadlineSeconds + yym2085 := z.EncBinary() + _ = yym2085 + if false { + } else { + r.EncodeInt(int64(yy2084)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2070[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ActiveDeadlineSeconds == nil { + r.EncodeNil() + } else { + yy2086 := *x.ActiveDeadlineSeconds + yym2087 := z.EncBinary() + _ = yym2087 + if false { + } else { + r.EncodeInt(int64(yy2086)) + } + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[5] { + x.DNSPolicy.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2070[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.DNSPolicy.CodecEncodeSelf(e) + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[6] { + if x.NodeSelector == nil { + r.EncodeNil() + } else { + yym2090 := z.EncBinary() + _ = yym2090 + if false { + } else { + z.F.EncMapStringStringV(x.NodeSelector, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2070[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NodeSelector == nil { + r.EncodeNil() + } else { + yym2091 := z.EncBinary() + _ = yym2091 + if false { + } else { + z.F.EncMapStringStringV(x.NodeSelector, false, e) + } + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2093 := z.EncBinary() + _ = yym2093 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2094 := z.EncBinary() + _ = yym2094 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[8] { + yym2096 := z.EncBinary() + _ = yym2096 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2070[8] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2097 := z.EncBinary() + _ = yym2097 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[9] { + if x.SecurityContext == nil { + r.EncodeNil() + } else { + x.SecurityContext.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq2070[9] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("securityContext")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.SecurityContext == nil { + r.EncodeNil() + } else { + x.SecurityContext.CodecEncodeSelf(e) + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[10] { + if x.ImagePullSecrets == nil { + r.EncodeNil() + } else { + yym2100 := z.EncBinary() + _ = yym2100 + if false { + } else { + h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2070[10] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ImagePullSecrets == nil { + r.EncodeNil() + } else { + yym2101 := z.EncBinary() + _ = yym2101 + if false { + } else { + h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) + } + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[11] { + yym2103 := z.EncBinary() + _ = yym2103 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2070[11] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostname")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2104 := z.EncBinary() + _ = yym2104 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2070[12] { + yym2106 := z.EncBinary() + _ = yym2106 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2070[12] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("subdomain")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2107 := z.EncBinary() + _ = yym2107 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) + } + } + } + if yyr2070 || yy2arr2070 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2108 := z.DecBinary() + _ = yym2108 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2109 := r.ContainerType() + if yyct2109 == codecSelferValueTypeMap1234 { + yyl2109 := r.ReadMapStart() + if yyl2109 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2109, d) + } + } else if yyct2109 == codecSelferValueTypeArray1234 { + yyl2109 := r.ReadArrayStart() + if yyl2109 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2109, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2110Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2110Slc + var yyhl2110 bool = l >= 0 + for yyj2110 := 0; ; yyj2110++ { + if yyhl2110 { + if yyj2110 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2110Slc = r.DecodeBytes(yys2110Slc, true, true) + yys2110 := string(yys2110Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2110 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2058 := &x.Volumes - yym2059 := z.DecBinary() - _ = yym2059 + yyv2111 := &x.Volumes + yym2112 := z.DecBinary() + _ = yym2112 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2058), d) + h.decSliceVolume((*[]Volume)(yyv2111), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2060 := &x.Containers - yym2061 := z.DecBinary() - _ = yym2061 + yyv2113 := &x.Containers + yym2114 := z.DecBinary() + _ = yym2114 if false { } else { - h.decSliceContainer((*[]Container)(yyv2060), d) + h.decSliceContainer((*[]Container)(yyv2113), d) } } case "restartPolicy": @@ -27698,8 +28405,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2064 := z.DecBinary() - _ = yym2064 + yym2117 := z.DecBinary() + _ = yym2117 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -27714,8 +28421,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2066 := z.DecBinary() - _ = yym2066 + yym2119 := z.DecBinary() + _ = yym2119 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -27731,12 +28438,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2068 := &x.NodeSelector - yym2069 := z.DecBinary() - _ = yym2069 + yyv2121 := &x.NodeSelector + yym2122 := z.DecBinary() + _ = yym2122 if false { } else { - z.F.DecMapStringStringX(yyv2068, false, d) + z.F.DecMapStringStringX(yyv2121, false, d) } } case "serviceAccountName": @@ -27766,12 +28473,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2073 := &x.ImagePullSecrets - yym2074 := z.DecBinary() - _ = yym2074 + yyv2126 := &x.ImagePullSecrets + yym2127 := z.DecBinary() + _ = yym2127 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2073), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2126), d) } } case "hostname": @@ -27787,9 +28494,9 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2057) - } // end switch yys2057 - } // end for yyj2057 + z.DecStructFieldNotFound(-1, yys2110) + } // end switch yys2110 + } // end for yyj2110 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27797,16 +28504,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2077 int - var yyb2077 bool - var yyhl2077 bool = l >= 0 - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + var yyj2130 int + var yyb2130 bool + var yyhl2130 bool = l >= 0 + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27814,21 +28521,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2078 := &x.Volumes - yym2079 := z.DecBinary() - _ = yym2079 + yyv2131 := &x.Volumes + yym2132 := z.DecBinary() + _ = yym2132 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2078), d) + h.decSliceVolume((*[]Volume)(yyv2131), d) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27836,21 +28543,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2080 := &x.Containers - yym2081 := z.DecBinary() - _ = yym2081 + yyv2133 := &x.Containers + yym2134 := z.DecBinary() + _ = yym2134 if false { } else { - h.decSliceContainer((*[]Container)(yyv2080), d) + h.decSliceContainer((*[]Container)(yyv2133), d) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27860,13 +28567,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27879,20 +28586,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2084 := z.DecBinary() - _ = yym2084 + yym2137 := z.DecBinary() + _ = yym2137 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27905,20 +28612,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2086 := z.DecBinary() - _ = yym2086 + yym2139 := z.DecBinary() + _ = yym2139 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27928,13 +28635,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27942,21 +28649,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2088 := &x.NodeSelector - yym2089 := z.DecBinary() - _ = yym2089 + yyv2141 := &x.NodeSelector + yym2142 := z.DecBinary() + _ = yym2142 if false { } else { - z.F.DecMapStringStringX(yyv2088, false, d) + z.F.DecMapStringStringX(yyv2141, false, d) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27966,13 +28673,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27982,13 +28689,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28003,13 +28710,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28017,21 +28724,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2093 := &x.ImagePullSecrets - yym2094 := z.DecBinary() - _ = yym2094 + yyv2146 := &x.ImagePullSecrets + yym2147 := z.DecBinary() + _ = yym2147 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2093), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2146), d) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28041,13 +28748,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Hostname = string(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28058,17 +28765,17 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } for { - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2130++ + if yyhl2130 { + yyb2130 = yyj2130 > l } else { - yyb2077 = r.CheckBreak() + yyb2130 = r.CheckBreak() } - if yyb2077 { + if yyb2130 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2077-1, "") + z.DecStructFieldNotFound(yyj2130-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28080,42 +28787,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2097 := z.EncBinary() - _ = yym2097 + yym2150 := z.EncBinary() + _ = yym2150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2098 := !z.EncBinary() - yy2arr2098 := z.EncBasicHandle().StructToArray - var yyq2098 [8]bool - _, _, _ = yysep2098, yyq2098, yy2arr2098 - const yyr2098 bool = false - yyq2098[0] = x.HostNetwork != false - yyq2098[1] = x.HostPID != false - yyq2098[2] = x.HostIPC != false - yyq2098[3] = x.SELinuxOptions != nil - yyq2098[4] = x.RunAsUser != nil - yyq2098[5] = x.RunAsNonRoot != nil - yyq2098[6] = len(x.SupplementalGroups) != 0 - yyq2098[7] = x.FSGroup != nil - var yynn2098 int - if yyr2098 || yy2arr2098 { + yysep2151 := !z.EncBinary() + yy2arr2151 := z.EncBasicHandle().StructToArray + var yyq2151 [8]bool + _, _, _ = yysep2151, yyq2151, yy2arr2151 + const yyr2151 bool = false + yyq2151[0] = x.HostNetwork != false + yyq2151[1] = x.HostPID != false + yyq2151[2] = x.HostIPC != false + yyq2151[3] = x.SELinuxOptions != nil + yyq2151[4] = x.RunAsUser != nil + yyq2151[5] = x.RunAsNonRoot != nil + yyq2151[6] = len(x.SupplementalGroups) != 0 + yyq2151[7] = x.FSGroup != nil + var yynn2151 int + if yyr2151 || yy2arr2151 { r.EncodeArrayStart(8) } else { - yynn2098 = 0 - for _, b := range yyq2098 { + yynn2151 = 0 + for _, b := range yyq2151 { if b { - yynn2098++ + yynn2151++ } } - r.EncodeMapStart(yynn2098) - yynn2098 = 0 + r.EncodeMapStart(yynn2151) + yynn2151 = 0 } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[0] { - yym2100 := z.EncBinary() - _ = yym2100 + if yyq2151[0] { + yym2153 := z.EncBinary() + _ = yym2153 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -28124,23 +28831,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2098[0] { + if yyq2151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2101 := z.EncBinary() - _ = yym2101 + yym2154 := z.EncBinary() + _ = yym2154 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[1] { - yym2103 := z.EncBinary() - _ = yym2103 + if yyq2151[1] { + yym2156 := z.EncBinary() + _ = yym2156 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -28149,23 +28856,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2098[1] { + if yyq2151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2104 := z.EncBinary() - _ = yym2104 + yym2157 := z.EncBinary() + _ = yym2157 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[2] { - yym2106 := z.EncBinary() - _ = yym2106 + if yyq2151[2] { + yym2159 := z.EncBinary() + _ = yym2159 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -28174,21 +28881,21 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2098[2] { + if yyq2151[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2107 := z.EncBinary() - _ = yym2107 + yym2160 := z.EncBinary() + _ = yym2160 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[3] { + if yyq2151[3] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -28198,7 +28905,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2098[3] { + if yyq2151[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -28209,84 +28916,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[4] { + if yyq2151[4] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy2110 := *x.RunAsUser - yym2111 := z.EncBinary() - _ = yym2111 + yy2163 := *x.RunAsUser + yym2164 := z.EncBinary() + _ = yym2164 if false { } else { - r.EncodeInt(int64(yy2110)) + r.EncodeInt(int64(yy2163)) } } } else { r.EncodeNil() } } else { - if yyq2098[4] { + if yyq2151[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy2112 := *x.RunAsUser - yym2113 := z.EncBinary() - _ = yym2113 + yy2165 := *x.RunAsUser + yym2166 := z.EncBinary() + _ = yym2166 if false { } else { - r.EncodeInt(int64(yy2112)) + r.EncodeInt(int64(yy2165)) } } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[5] { + if yyq2151[5] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2115 := *x.RunAsNonRoot - yym2116 := z.EncBinary() - _ = yym2116 + yy2168 := *x.RunAsNonRoot + yym2169 := z.EncBinary() + _ = yym2169 if false { } else { - r.EncodeBool(bool(yy2115)) + r.EncodeBool(bool(yy2168)) } } } else { r.EncodeNil() } } else { - if yyq2098[5] { + if yyq2151[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2117 := *x.RunAsNonRoot - yym2118 := z.EncBinary() - _ = yym2118 + yy2170 := *x.RunAsNonRoot + yym2171 := z.EncBinary() + _ = yym2171 if false { } else { - r.EncodeBool(bool(yy2117)) + r.EncodeBool(bool(yy2170)) } } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[6] { + if yyq2151[6] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2120 := z.EncBinary() - _ = yym2120 + yym2173 := z.EncBinary() + _ = yym2173 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -28296,15 +29003,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2098[6] { + if yyq2151[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2121 := z.EncBinary() - _ = yym2121 + yym2174 := z.EncBinary() + _ = yym2174 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -28312,42 +29019,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2098[7] { + if yyq2151[7] { if x.FSGroup == nil { r.EncodeNil() } else { - yy2123 := *x.FSGroup - yym2124 := z.EncBinary() - _ = yym2124 + yy2176 := *x.FSGroup + yym2177 := z.EncBinary() + _ = yym2177 if false { } else { - r.EncodeInt(int64(yy2123)) + r.EncodeInt(int64(yy2176)) } } } else { r.EncodeNil() } } else { - if yyq2098[7] { + if yyq2151[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy2125 := *x.FSGroup - yym2126 := z.EncBinary() - _ = yym2126 + yy2178 := *x.FSGroup + yym2179 := z.EncBinary() + _ = yym2179 if false { } else { - r.EncodeInt(int64(yy2125)) + r.EncodeInt(int64(yy2178)) } } } } - if yyr2098 || yy2arr2098 { + if yyr2151 || yy2arr2151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28360,25 +29067,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2127 := z.DecBinary() - _ = yym2127 + yym2180 := z.DecBinary() + _ = yym2180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2128 := r.ContainerType() - if yyct2128 == codecSelferValueTypeMap1234 { - yyl2128 := r.ReadMapStart() - if yyl2128 == 0 { + yyct2181 := r.ContainerType() + if yyct2181 == codecSelferValueTypeMap1234 { + yyl2181 := r.ReadMapStart() + if yyl2181 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2128, d) + x.codecDecodeSelfFromMap(yyl2181, d) } - } else if yyct2128 == codecSelferValueTypeArray1234 { - yyl2128 := r.ReadArrayStart() - if yyl2128 == 0 { + } else if yyct2181 == codecSelferValueTypeArray1234 { + yyl2181 := r.ReadArrayStart() + if yyl2181 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2128, d) + x.codecDecodeSelfFromArray(yyl2181, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28390,12 +29097,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2129Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2129Slc - var yyhl2129 bool = l >= 0 - for yyj2129 := 0; ; yyj2129++ { - if yyhl2129 { - if yyj2129 >= l { + var yys2182Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2182Slc + var yyhl2182 bool = l >= 0 + for yyj2182 := 0; ; yyj2182++ { + if yyhl2182 { + if yyj2182 >= l { break } } else { @@ -28404,10 +29111,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2129Slc = r.DecodeBytes(yys2129Slc, true, true) - yys2129 := string(yys2129Slc) + yys2182Slc = r.DecodeBytes(yys2182Slc, true, true) + yys2182 := string(yys2182Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2129 { + switch yys2182 { case "hostNetwork": if r.TryDecodeAsNil() { x.HostNetwork = false @@ -28446,8 +29153,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2135 := z.DecBinary() - _ = yym2135 + yym2188 := z.DecBinary() + _ = yym2188 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -28462,8 +29169,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2137 := z.DecBinary() - _ = yym2137 + yym2190 := z.DecBinary() + _ = yym2190 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -28473,12 +29180,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2138 := &x.SupplementalGroups - yym2139 := z.DecBinary() - _ = yym2139 + yyv2191 := &x.SupplementalGroups + yym2192 := z.DecBinary() + _ = yym2192 if false { } else { - z.F.DecSliceInt64X(yyv2138, false, d) + z.F.DecSliceInt64X(yyv2191, false, d) } } case "fsGroup": @@ -28490,17 +29197,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2141 := z.DecBinary() - _ = yym2141 + yym2194 := z.DecBinary() + _ = yym2194 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2129) - } // end switch yys2129 - } // end for yyj2129 + z.DecStructFieldNotFound(-1, yys2182) + } // end switch yys2182 + } // end for yyj2182 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28508,16 +29215,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2142 int - var yyb2142 bool - var yyhl2142 bool = l >= 0 - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + var yyj2195 int + var yyb2195 bool + var yyhl2195 bool = l >= 0 + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28527,13 +29234,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28543,13 +29250,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostPID = bool(r.DecodeBool()) } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28559,13 +29266,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostIPC = bool(r.DecodeBool()) } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28580,13 +29287,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28599,20 +29306,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2148 := z.DecBinary() - _ = yym2148 + yym2201 := z.DecBinary() + _ = yym2201 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28625,20 +29332,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2150 := z.DecBinary() - _ = yym2150 + yym2203 := z.DecBinary() + _ = yym2203 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28646,21 +29353,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2151 := &x.SupplementalGroups - yym2152 := z.DecBinary() - _ = yym2152 + yyv2204 := &x.SupplementalGroups + yym2205 := z.DecBinary() + _ = yym2205 if false { } else { - z.F.DecSliceInt64X(yyv2151, false, d) + z.F.DecSliceInt64X(yyv2204, false, d) } } - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28673,25 +29380,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2154 := z.DecBinary() - _ = yym2154 + yym2207 := z.DecBinary() + _ = yym2207 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj2142++ - if yyhl2142 { - yyb2142 = yyj2142 > l + yyj2195++ + if yyhl2195 { + yyb2195 = yyj2195 > l } else { - yyb2142 = r.CheckBreak() + yyb2195 = r.CheckBreak() } - if yyb2142 { + if yyb2195 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2142-1, "") + z.DecStructFieldNotFound(yyj2195-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28703,60 +29410,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2155 := z.EncBinary() - _ = yym2155 + yym2208 := z.EncBinary() + _ = yym2208 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2156 := !z.EncBinary() - yy2arr2156 := z.EncBasicHandle().StructToArray - var yyq2156 [8]bool - _, _, _ = yysep2156, yyq2156, yy2arr2156 - const yyr2156 bool = false - yyq2156[0] = x.Phase != "" - yyq2156[1] = len(x.Conditions) != 0 - yyq2156[2] = x.Message != "" - yyq2156[3] = x.Reason != "" - yyq2156[4] = x.HostIP != "" - yyq2156[5] = x.PodIP != "" - yyq2156[6] = x.StartTime != nil - yyq2156[7] = len(x.ContainerStatuses) != 0 - var yynn2156 int - if yyr2156 || yy2arr2156 { + yysep2209 := !z.EncBinary() + yy2arr2209 := z.EncBasicHandle().StructToArray + var yyq2209 [8]bool + _, _, _ = yysep2209, yyq2209, yy2arr2209 + const yyr2209 bool = false + yyq2209[0] = x.Phase != "" + yyq2209[1] = len(x.Conditions) != 0 + yyq2209[2] = x.Message != "" + yyq2209[3] = x.Reason != "" + yyq2209[4] = x.HostIP != "" + yyq2209[5] = x.PodIP != "" + yyq2209[6] = x.StartTime != nil + yyq2209[7] = len(x.ContainerStatuses) != 0 + var yynn2209 int + if yyr2209 || yy2arr2209 { r.EncodeArrayStart(8) } else { - yynn2156 = 0 - for _, b := range yyq2156 { + yynn2209 = 0 + for _, b := range yyq2209 { if b { - yynn2156++ + yynn2209++ } } - r.EncodeMapStart(yynn2156) - yynn2156 = 0 + r.EncodeMapStart(yynn2209) + yynn2209 = 0 } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[0] { + if yyq2209[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2156[0] { + if yyq2209[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[1] { + if yyq2209[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym2159 := z.EncBinary() - _ = yym2159 + yym2212 := z.EncBinary() + _ = yym2212 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -28766,15 +29473,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2156[1] { + if yyq2209[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2160 := z.EncBinary() - _ = yym2160 + yym2213 := z.EncBinary() + _ = yym2213 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -28782,11 +29489,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[2] { - yym2162 := z.EncBinary() - _ = yym2162 + if yyq2209[2] { + yym2215 := z.EncBinary() + _ = yym2215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -28795,23 +29502,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2156[2] { + if yyq2209[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2163 := z.EncBinary() - _ = yym2163 + yym2216 := z.EncBinary() + _ = yym2216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[3] { - yym2165 := z.EncBinary() - _ = yym2165 + if yyq2209[3] { + yym2218 := z.EncBinary() + _ = yym2218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -28820,23 +29527,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2156[3] { + if yyq2209[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2166 := z.EncBinary() - _ = yym2166 + yym2219 := z.EncBinary() + _ = yym2219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[4] { - yym2168 := z.EncBinary() - _ = yym2168 + if yyq2209[4] { + yym2221 := z.EncBinary() + _ = yym2221 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -28845,23 +29552,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2156[4] { + if yyq2209[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2169 := z.EncBinary() - _ = yym2169 + yym2222 := z.EncBinary() + _ = yym2222 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[5] { - yym2171 := z.EncBinary() - _ = yym2171 + if yyq2209[5] { + yym2224 := z.EncBinary() + _ = yym2224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -28870,31 +29577,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2156[5] { + if yyq2209[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2172 := z.EncBinary() - _ = yym2172 + yym2225 := z.EncBinary() + _ = yym2225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[6] { + if yyq2209[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym2174 := z.EncBinary() - _ = yym2174 + yym2227 := z.EncBinary() + _ = yym2227 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2174 { + } else if yym2227 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2174 && z.IsJSONHandle() { + } else if !yym2227 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -28904,20 +29611,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2156[6] { + if yyq2209[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym2175 := z.EncBinary() - _ = yym2175 + yym2228 := z.EncBinary() + _ = yym2228 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2175 { + } else if yym2228 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2175 && z.IsJSONHandle() { + } else if !yym2228 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -28925,14 +29632,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2156[7] { + if yyq2209[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2177 := z.EncBinary() - _ = yym2177 + yym2230 := z.EncBinary() + _ = yym2230 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -28942,15 +29649,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2156[7] { + if yyq2209[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2178 := z.EncBinary() - _ = yym2178 + yym2231 := z.EncBinary() + _ = yym2231 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -28958,7 +29665,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2156 || yy2arr2156 { + if yyr2209 || yy2arr2209 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28971,25 +29678,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2179 := z.DecBinary() - _ = yym2179 + yym2232 := z.DecBinary() + _ = yym2232 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2180 := r.ContainerType() - if yyct2180 == codecSelferValueTypeMap1234 { - yyl2180 := r.ReadMapStart() - if yyl2180 == 0 { + yyct2233 := r.ContainerType() + if yyct2233 == codecSelferValueTypeMap1234 { + yyl2233 := r.ReadMapStart() + if yyl2233 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2180, d) + x.codecDecodeSelfFromMap(yyl2233, d) } - } else if yyct2180 == codecSelferValueTypeArray1234 { - yyl2180 := r.ReadArrayStart() - if yyl2180 == 0 { + } else if yyct2233 == codecSelferValueTypeArray1234 { + yyl2233 := r.ReadArrayStart() + if yyl2233 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2180, d) + x.codecDecodeSelfFromArray(yyl2233, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29001,12 +29708,12 @@ func (x *PodStatus) 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 yys2234Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2234Slc + var yyhl2234 bool = l >= 0 + for yyj2234 := 0; ; yyj2234++ { + if yyhl2234 { + if yyj2234 >= l { break } } else { @@ -29015,10 +29722,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2181Slc = r.DecodeBytes(yys2181Slc, true, true) - yys2181 := string(yys2181Slc) + yys2234Slc = r.DecodeBytes(yys2234Slc, true, true) + yys2234 := string(yys2234Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2181 { + switch yys2234 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -29029,12 +29736,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2183 := &x.Conditions - yym2184 := z.DecBinary() - _ = yym2184 + yyv2236 := &x.Conditions + yym2237 := z.DecBinary() + _ = yym2237 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2183), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2236), d) } } case "message": @@ -29070,13 +29777,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2190 := z.DecBinary() - _ = yym2190 + yym2243 := z.DecBinary() + _ = yym2243 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2190 { + } else if yym2243 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2190 && z.IsJSONHandle() { + } else if !yym2243 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -29086,18 +29793,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2191 := &x.ContainerStatuses - yym2192 := z.DecBinary() - _ = yym2192 + yyv2244 := &x.ContainerStatuses + yym2245 := z.DecBinary() + _ = yym2245 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2191), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2244), d) } } default: - z.DecStructFieldNotFound(-1, yys2181) - } // end switch yys2181 - } // end for yyj2181 + z.DecStructFieldNotFound(-1, yys2234) + } // end switch yys2234 + } // end for yyj2234 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29105,16 +29812,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2193 int - var yyb2193 bool - var yyhl2193 bool = l >= 0 - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + var yyj2246 int + var yyb2246 bool + var yyhl2246 bool = l >= 0 + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29124,13 +29831,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29138,21 +29845,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2195 := &x.Conditions - yym2196 := z.DecBinary() - _ = yym2196 + yyv2248 := &x.Conditions + yym2249 := z.DecBinary() + _ = yym2249 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2195), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2248), d) } } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29162,13 +29869,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29178,13 +29885,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29194,13 +29901,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29210,13 +29917,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29229,25 +29936,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2202 := z.DecBinary() - _ = yym2202 + yym2255 := z.DecBinary() + _ = yym2255 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2202 { + } else if yym2255 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2202 && z.IsJSONHandle() { + } else if !yym2255 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29255,26 +29962,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2203 := &x.ContainerStatuses - yym2204 := z.DecBinary() - _ = yym2204 + yyv2256 := &x.ContainerStatuses + yym2257 := z.DecBinary() + _ = yym2257 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2203), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2256), d) } } for { - yyj2193++ - if yyhl2193 { - yyb2193 = yyj2193 > l + yyj2246++ + if yyhl2246 { + yyb2246 = yyj2246 > l } else { - yyb2193 = r.CheckBreak() + yyb2246 = r.CheckBreak() } - if yyb2193 { + if yyb2246 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2193-1, "") + z.DecStructFieldNotFound(yyj2246-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29286,38 +29993,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2205 := z.EncBinary() - _ = yym2205 + yym2258 := z.EncBinary() + _ = yym2258 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2206 := !z.EncBinary() - yy2arr2206 := z.EncBasicHandle().StructToArray - var yyq2206 [4]bool - _, _, _ = yysep2206, yyq2206, yy2arr2206 - const yyr2206 bool = false - yyq2206[0] = x.Kind != "" - yyq2206[1] = x.APIVersion != "" - yyq2206[2] = true - yyq2206[3] = true - var yynn2206 int - if yyr2206 || yy2arr2206 { + yysep2259 := !z.EncBinary() + yy2arr2259 := z.EncBasicHandle().StructToArray + var yyq2259 [4]bool + _, _, _ = yysep2259, yyq2259, yy2arr2259 + const yyr2259 bool = false + yyq2259[0] = x.Kind != "" + yyq2259[1] = x.APIVersion != "" + yyq2259[2] = true + yyq2259[3] = true + var yynn2259 int + if yyr2259 || yy2arr2259 { r.EncodeArrayStart(4) } else { - yynn2206 = 0 - for _, b := range yyq2206 { + yynn2259 = 0 + for _, b := range yyq2259 { if b { - yynn2206++ + yynn2259++ } } - r.EncodeMapStart(yynn2206) - yynn2206 = 0 + r.EncodeMapStart(yynn2259) + yynn2259 = 0 } - if yyr2206 || yy2arr2206 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2206[0] { - yym2208 := z.EncBinary() - _ = yym2208 + if yyq2259[0] { + yym2261 := z.EncBinary() + _ = yym2261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29326,23 +30033,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2206[0] { + if yyq2259[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2209 := z.EncBinary() - _ = yym2209 + yym2262 := z.EncBinary() + _ = yym2262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2206 || yy2arr2206 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2206[1] { - yym2211 := z.EncBinary() - _ = yym2211 + if yyq2259[1] { + yym2264 := z.EncBinary() + _ = yym2264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29351,53 +30058,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2206[1] { + if yyq2259[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2212 := z.EncBinary() - _ = yym2212 + yym2265 := z.EncBinary() + _ = yym2265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2206 || yy2arr2206 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2206[2] { - yy2214 := &x.ObjectMeta - yy2214.CodecEncodeSelf(e) + if yyq2259[2] { + yy2267 := &x.ObjectMeta + yy2267.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2206[2] { + if yyq2259[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2215 := &x.ObjectMeta - yy2215.CodecEncodeSelf(e) + yy2268 := &x.ObjectMeta + yy2268.CodecEncodeSelf(e) } } - if yyr2206 || yy2arr2206 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2206[3] { - yy2217 := &x.Status - yy2217.CodecEncodeSelf(e) + if yyq2259[3] { + yy2270 := &x.Status + yy2270.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2206[3] { + if yyq2259[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2218 := &x.Status - yy2218.CodecEncodeSelf(e) + yy2271 := &x.Status + yy2271.CodecEncodeSelf(e) } } - if yyr2206 || yy2arr2206 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29410,25 +30117,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2219 := z.DecBinary() - _ = yym2219 + yym2272 := z.DecBinary() + _ = yym2272 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2220 := r.ContainerType() - if yyct2220 == codecSelferValueTypeMap1234 { - yyl2220 := r.ReadMapStart() - if yyl2220 == 0 { + yyct2273 := r.ContainerType() + if yyct2273 == codecSelferValueTypeMap1234 { + yyl2273 := r.ReadMapStart() + if yyl2273 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2220, d) + x.codecDecodeSelfFromMap(yyl2273, d) } - } else if yyct2220 == codecSelferValueTypeArray1234 { - yyl2220 := r.ReadArrayStart() - if yyl2220 == 0 { + } else if yyct2273 == codecSelferValueTypeArray1234 { + yyl2273 := r.ReadArrayStart() + if yyl2273 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2220, d) + x.codecDecodeSelfFromArray(yyl2273, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29440,12 +30147,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2221Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2221Slc - var yyhl2221 bool = l >= 0 - for yyj2221 := 0; ; yyj2221++ { - if yyhl2221 { - if yyj2221 >= 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 { @@ -29454,10 +30161,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2221Slc = r.DecodeBytes(yys2221Slc, true, true) - yys2221 := string(yys2221Slc) + yys2274Slc = r.DecodeBytes(yys2274Slc, true, true) + yys2274 := string(yys2274Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2221 { + switch yys2274 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29474,20 +30181,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2224 := &x.ObjectMeta - yyv2224.CodecDecodeSelf(d) + yyv2277 := &x.ObjectMeta + yyv2277.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2225 := &x.Status - yyv2225.CodecDecodeSelf(d) + yyv2278 := &x.Status + yyv2278.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2221) - } // end switch yys2221 - } // end for yyj2221 + z.DecStructFieldNotFound(-1, yys2274) + } // end switch yys2274 + } // end for yyj2274 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29495,16 +30202,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2226 int - var yyb2226 bool - var yyhl2226 bool = l >= 0 - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + var yyj2279 int + var yyb2279 bool + var yyhl2279 bool = l >= 0 + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2226 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2226 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29514,13 +30221,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2226 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2226 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29530,13 +30237,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2226 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2226 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29544,16 +30251,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2229 := &x.ObjectMeta - yyv2229.CodecDecodeSelf(d) + yyv2282 := &x.ObjectMeta + yyv2282.CodecDecodeSelf(d) } - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2226 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2226 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29561,21 +30268,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2230 := &x.Status - yyv2230.CodecDecodeSelf(d) + yyv2283 := &x.Status + yyv2283.CodecDecodeSelf(d) } for { - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2226 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2226 { + if yyb2279 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2226-1, "") + z.DecStructFieldNotFound(yyj2279-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29587,39 +30294,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2231 := z.EncBinary() - _ = yym2231 + yym2284 := z.EncBinary() + _ = yym2284 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2232 := !z.EncBinary() - yy2arr2232 := z.EncBasicHandle().StructToArray - var yyq2232 [5]bool - _, _, _ = yysep2232, yyq2232, yy2arr2232 - const yyr2232 bool = false - yyq2232[0] = x.Kind != "" - yyq2232[1] = x.APIVersion != "" - yyq2232[2] = true - yyq2232[3] = true - yyq2232[4] = true - var yynn2232 int - if yyr2232 || yy2arr2232 { + yysep2285 := !z.EncBinary() + yy2arr2285 := z.EncBasicHandle().StructToArray + var yyq2285 [5]bool + _, _, _ = yysep2285, yyq2285, yy2arr2285 + const yyr2285 bool = false + yyq2285[0] = x.Kind != "" + yyq2285[1] = x.APIVersion != "" + yyq2285[2] = true + yyq2285[3] = true + yyq2285[4] = true + var yynn2285 int + if yyr2285 || yy2arr2285 { r.EncodeArrayStart(5) } else { - yynn2232 = 0 - for _, b := range yyq2232 { + yynn2285 = 0 + for _, b := range yyq2285 { if b { - yynn2232++ + yynn2285++ } } - r.EncodeMapStart(yynn2232) - yynn2232 = 0 + r.EncodeMapStart(yynn2285) + yynn2285 = 0 } - if yyr2232 || yy2arr2232 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2232[0] { - yym2234 := z.EncBinary() - _ = yym2234 + if yyq2285[0] { + yym2287 := z.EncBinary() + _ = yym2287 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29628,23 +30335,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2232[0] { + if yyq2285[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2235 := z.EncBinary() - _ = yym2235 + yym2288 := z.EncBinary() + _ = yym2288 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2232 || yy2arr2232 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2232[1] { - yym2237 := z.EncBinary() - _ = yym2237 + if yyq2285[1] { + yym2290 := z.EncBinary() + _ = yym2290 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29653,70 +30360,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2232[1] { + if yyq2285[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2238 := z.EncBinary() - _ = yym2238 + yym2291 := z.EncBinary() + _ = yym2291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2232 || yy2arr2232 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2232[2] { - yy2240 := &x.ObjectMeta - yy2240.CodecEncodeSelf(e) + if yyq2285[2] { + yy2293 := &x.ObjectMeta + yy2293.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2232[2] { + if yyq2285[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2241 := &x.ObjectMeta - yy2241.CodecEncodeSelf(e) + yy2294 := &x.ObjectMeta + yy2294.CodecEncodeSelf(e) } } - if yyr2232 || yy2arr2232 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2232[3] { - yy2243 := &x.Spec - yy2243.CodecEncodeSelf(e) + if yyq2285[3] { + yy2296 := &x.Spec + yy2296.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2232[3] { + if yyq2285[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2244 := &x.Spec - yy2244.CodecEncodeSelf(e) + yy2297 := &x.Spec + yy2297.CodecEncodeSelf(e) } } - if yyr2232 || yy2arr2232 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2232[4] { - yy2246 := &x.Status - yy2246.CodecEncodeSelf(e) + if yyq2285[4] { + yy2299 := &x.Status + yy2299.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2232[4] { + if yyq2285[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2247 := &x.Status - yy2247.CodecEncodeSelf(e) + yy2300 := &x.Status + yy2300.CodecEncodeSelf(e) } } - if yyr2232 || yy2arr2232 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29729,25 +30436,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2248 := z.DecBinary() - _ = yym2248 + yym2301 := z.DecBinary() + _ = yym2301 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2249 := r.ContainerType() - if yyct2249 == codecSelferValueTypeMap1234 { - yyl2249 := r.ReadMapStart() - if yyl2249 == 0 { + yyct2302 := r.ContainerType() + if yyct2302 == codecSelferValueTypeMap1234 { + yyl2302 := r.ReadMapStart() + if yyl2302 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2249, d) + x.codecDecodeSelfFromMap(yyl2302, d) } - } else if yyct2249 == codecSelferValueTypeArray1234 { - yyl2249 := r.ReadArrayStart() - if yyl2249 == 0 { + } else if yyct2302 == codecSelferValueTypeArray1234 { + yyl2302 := r.ReadArrayStart() + if yyl2302 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2249, d) + x.codecDecodeSelfFromArray(yyl2302, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29759,12 +30466,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2250Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2250Slc - var yyhl2250 bool = l >= 0 - for yyj2250 := 0; ; yyj2250++ { - if yyhl2250 { - if yyj2250 >= l { + var yys2303Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2303Slc + var yyhl2303 bool = l >= 0 + for yyj2303 := 0; ; yyj2303++ { + if yyhl2303 { + if yyj2303 >= l { break } } else { @@ -29773,10 +30480,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2250Slc = r.DecodeBytes(yys2250Slc, true, true) - yys2250 := string(yys2250Slc) + yys2303Slc = r.DecodeBytes(yys2303Slc, true, true) + yys2303 := string(yys2303Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2250 { + switch yys2303 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29793,27 +30500,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2253 := &x.ObjectMeta - yyv2253.CodecDecodeSelf(d) + yyv2306 := &x.ObjectMeta + yyv2306.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2254 := &x.Spec - yyv2254.CodecDecodeSelf(d) + yyv2307 := &x.Spec + yyv2307.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2255 := &x.Status - yyv2255.CodecDecodeSelf(d) + yyv2308 := &x.Status + yyv2308.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2250) - } // end switch yys2250 - } // end for yyj2250 + z.DecStructFieldNotFound(-1, yys2303) + } // end switch yys2303 + } // end for yyj2303 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29821,16 +30528,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2256 int - var yyb2256 bool - var yyhl2256 bool = l >= 0 - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + var yyj2309 int + var yyb2309 bool + var yyhl2309 bool = l >= 0 + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29840,13 +30547,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29856,13 +30563,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29870,16 +30577,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2259 := &x.ObjectMeta - yyv2259.CodecDecodeSelf(d) + yyv2312 := &x.ObjectMeta + yyv2312.CodecDecodeSelf(d) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29887,16 +30594,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2260 := &x.Spec - yyv2260.CodecDecodeSelf(d) + yyv2313 := &x.Spec + yyv2313.CodecDecodeSelf(d) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29904,21 +30611,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2261 := &x.Status - yyv2261.CodecDecodeSelf(d) + yyv2314 := &x.Status + yyv2314.CodecDecodeSelf(d) } for { - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2256-1, "") + z.DecStructFieldNotFound(yyj2309-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29930,66 +30637,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2262 := z.EncBinary() - _ = yym2262 + yym2315 := z.EncBinary() + _ = yym2315 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2263 := !z.EncBinary() - yy2arr2263 := z.EncBasicHandle().StructToArray - var yyq2263 [2]bool - _, _, _ = yysep2263, yyq2263, yy2arr2263 - const yyr2263 bool = false - yyq2263[0] = true - yyq2263[1] = true - var yynn2263 int - if yyr2263 || yy2arr2263 { + yysep2316 := !z.EncBinary() + yy2arr2316 := z.EncBasicHandle().StructToArray + var yyq2316 [2]bool + _, _, _ = yysep2316, yyq2316, yy2arr2316 + const yyr2316 bool = false + yyq2316[0] = true + yyq2316[1] = true + var yynn2316 int + if yyr2316 || yy2arr2316 { r.EncodeArrayStart(2) } else { - yynn2263 = 0 - for _, b := range yyq2263 { + yynn2316 = 0 + for _, b := range yyq2316 { if b { - yynn2263++ + yynn2316++ } } - r.EncodeMapStart(yynn2263) - yynn2263 = 0 + r.EncodeMapStart(yynn2316) + yynn2316 = 0 } - if yyr2263 || yy2arr2263 { + if yyr2316 || yy2arr2316 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2263[0] { - yy2265 := &x.ObjectMeta - yy2265.CodecEncodeSelf(e) + if yyq2316[0] { + yy2318 := &x.ObjectMeta + yy2318.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2263[0] { + if yyq2316[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2266 := &x.ObjectMeta - yy2266.CodecEncodeSelf(e) + yy2319 := &x.ObjectMeta + yy2319.CodecEncodeSelf(e) } } - if yyr2263 || yy2arr2263 { + if yyr2316 || yy2arr2316 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2263[1] { - yy2268 := &x.Spec - yy2268.CodecEncodeSelf(e) + if yyq2316[1] { + yy2321 := &x.Spec + yy2321.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2263[1] { + if yyq2316[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2269 := &x.Spec - yy2269.CodecEncodeSelf(e) + yy2322 := &x.Spec + yy2322.CodecEncodeSelf(e) } } - if yyr2263 || yy2arr2263 { + if yyr2316 || yy2arr2316 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30002,25 +30709,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2270 := z.DecBinary() - _ = yym2270 + yym2323 := z.DecBinary() + _ = yym2323 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2271 := r.ContainerType() - if yyct2271 == codecSelferValueTypeMap1234 { - yyl2271 := r.ReadMapStart() - if yyl2271 == 0 { + yyct2324 := r.ContainerType() + if yyct2324 == codecSelferValueTypeMap1234 { + yyl2324 := r.ReadMapStart() + if yyl2324 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2271, d) + x.codecDecodeSelfFromMap(yyl2324, d) } - } else if yyct2271 == codecSelferValueTypeArray1234 { - yyl2271 := r.ReadArrayStart() - if yyl2271 == 0 { + } else if yyct2324 == codecSelferValueTypeArray1234 { + yyl2324 := r.ReadArrayStart() + if yyl2324 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2271, d) + x.codecDecodeSelfFromArray(yyl2324, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30032,12 +30739,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2272Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2272Slc - var yyhl2272 bool = l >= 0 - for yyj2272 := 0; ; yyj2272++ { - if yyhl2272 { - if yyj2272 >= l { + var yys2325Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2325Slc + var yyhl2325 bool = l >= 0 + for yyj2325 := 0; ; yyj2325++ { + if yyhl2325 { + if yyj2325 >= l { break } } else { @@ -30046,28 +30753,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2272Slc = r.DecodeBytes(yys2272Slc, true, true) - yys2272 := string(yys2272Slc) + yys2325Slc = r.DecodeBytes(yys2325Slc, true, true) + yys2325 := string(yys2325Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2272 { + switch yys2325 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2273 := &x.ObjectMeta - yyv2273.CodecDecodeSelf(d) + yyv2326 := &x.ObjectMeta + yyv2326.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2274 := &x.Spec - yyv2274.CodecDecodeSelf(d) + yyv2327 := &x.Spec + yyv2327.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2272) - } // end switch yys2272 - } // end for yyj2272 + z.DecStructFieldNotFound(-1, yys2325) + } // end switch yys2325 + } // end for yyj2325 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30075,16 +30782,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2275 int - var yyb2275 bool - var yyhl2275 bool = l >= 0 - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + var yyj2328 int + var yyb2328 bool + var yyhl2328 bool = l >= 0 + yyj2328++ + if yyhl2328 { + yyb2328 = yyj2328 > l } else { - yyb2275 = r.CheckBreak() + yyb2328 = r.CheckBreak() } - if yyb2275 { + if yyb2328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30092,16 +30799,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2276 := &x.ObjectMeta - yyv2276.CodecDecodeSelf(d) + yyv2329 := &x.ObjectMeta + yyv2329.CodecDecodeSelf(d) } - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2328++ + if yyhl2328 { + yyb2328 = yyj2328 > l } else { - yyb2275 = r.CheckBreak() + yyb2328 = r.CheckBreak() } - if yyb2275 { + if yyb2328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30109,21 +30816,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2277 := &x.Spec - yyv2277.CodecDecodeSelf(d) + yyv2330 := &x.Spec + yyv2330.CodecDecodeSelf(d) } for { - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2328++ + if yyhl2328 { + yyb2328 = yyj2328 > l } else { - yyb2275 = r.CheckBreak() + yyb2328 = r.CheckBreak() } - if yyb2275 { + if yyb2328 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2275-1, "") + z.DecStructFieldNotFound(yyj2328-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30135,38 +30842,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2278 := z.EncBinary() - _ = yym2278 + yym2331 := z.EncBinary() + _ = yym2331 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2279 := !z.EncBinary() - yy2arr2279 := z.EncBasicHandle().StructToArray - var yyq2279 [4]bool - _, _, _ = yysep2279, yyq2279, yy2arr2279 - const yyr2279 bool = false - yyq2279[0] = x.Kind != "" - yyq2279[1] = x.APIVersion != "" - yyq2279[2] = true - yyq2279[3] = true - var yynn2279 int - if yyr2279 || yy2arr2279 { + yysep2332 := !z.EncBinary() + yy2arr2332 := z.EncBasicHandle().StructToArray + var yyq2332 [4]bool + _, _, _ = yysep2332, yyq2332, yy2arr2332 + const yyr2332 bool = false + yyq2332[0] = x.Kind != "" + yyq2332[1] = x.APIVersion != "" + yyq2332[2] = true + yyq2332[3] = true + var yynn2332 int + if yyr2332 || yy2arr2332 { r.EncodeArrayStart(4) } else { - yynn2279 = 0 - for _, b := range yyq2279 { + yynn2332 = 0 + for _, b := range yyq2332 { if b { - yynn2279++ + yynn2332++ } } - r.EncodeMapStart(yynn2279) - yynn2279 = 0 + r.EncodeMapStart(yynn2332) + yynn2332 = 0 } - if yyr2279 || yy2arr2279 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[0] { - yym2281 := z.EncBinary() - _ = yym2281 + if yyq2332[0] { + yym2334 := z.EncBinary() + _ = yym2334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30175,23 +30882,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2279[0] { + if yyq2332[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2282 := z.EncBinary() - _ = yym2282 + yym2335 := z.EncBinary() + _ = yym2335 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2279 || yy2arr2279 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[1] { - yym2284 := z.EncBinary() - _ = yym2284 + if yyq2332[1] { + yym2337 := z.EncBinary() + _ = yym2337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30200,53 +30907,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2279[1] { + if yyq2332[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2285 := z.EncBinary() - _ = yym2285 + yym2338 := z.EncBinary() + _ = yym2338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2279 || yy2arr2279 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[2] { - yy2287 := &x.ObjectMeta - yy2287.CodecEncodeSelf(e) + if yyq2332[2] { + yy2340 := &x.ObjectMeta + yy2340.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2279[2] { + if yyq2332[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2288 := &x.ObjectMeta - yy2288.CodecEncodeSelf(e) + yy2341 := &x.ObjectMeta + yy2341.CodecEncodeSelf(e) } } - if yyr2279 || yy2arr2279 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[3] { - yy2290 := &x.Template - yy2290.CodecEncodeSelf(e) + if yyq2332[3] { + yy2343 := &x.Template + yy2343.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2279[3] { + if yyq2332[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2291 := &x.Template - yy2291.CodecEncodeSelf(e) + yy2344 := &x.Template + yy2344.CodecEncodeSelf(e) } } - if yyr2279 || yy2arr2279 { + if yyr2332 || yy2arr2332 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30256,633 +30963,6 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2292 := z.DecBinary() - _ = yym2292 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2293 := r.ContainerType() - if yyct2293 == codecSelferValueTypeMap1234 { - yyl2293 := r.ReadMapStart() - if yyl2293 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2293, d) - } - } else if yyct2293 == codecSelferValueTypeArray1234 { - yyl2293 := r.ReadArrayStart() - if yyl2293 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2293, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2294Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2294Slc - var yyhl2294 bool = l >= 0 - for yyj2294 := 0; ; yyj2294++ { - if yyhl2294 { - if yyj2294 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2294Slc = r.DecodeBytes(yys2294Slc, true, true) - yys2294 := string(yys2294Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2294 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2297 := &x.ObjectMeta - yyv2297.CodecDecodeSelf(d) - } - case "template": - if r.TryDecodeAsNil() { - x.Template = PodTemplateSpec{} - } else { - yyv2298 := &x.Template - yyv2298.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2294) - } // end switch yys2294 - } // end for yyj2294 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2299 int - var yyb2299 bool - var yyhl2299 bool = l >= 0 - yyj2299++ - if yyhl2299 { - yyb2299 = yyj2299 > l - } else { - yyb2299 = r.CheckBreak() - } - if yyb2299 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2299++ - if yyhl2299 { - yyb2299 = yyj2299 > l - } else { - yyb2299 = r.CheckBreak() - } - if yyb2299 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2299++ - if yyhl2299 { - yyb2299 = yyj2299 > l - } else { - yyb2299 = r.CheckBreak() - } - if yyb2299 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2302 := &x.ObjectMeta - yyv2302.CodecDecodeSelf(d) - } - yyj2299++ - if yyhl2299 { - yyb2299 = yyj2299 > l - } else { - yyb2299 = r.CheckBreak() - } - if yyb2299 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Template = PodTemplateSpec{} - } else { - yyv2303 := &x.Template - yyv2303.CodecDecodeSelf(d) - } - for { - yyj2299++ - if yyhl2299 { - yyb2299 = yyj2299 > l - } else { - yyb2299 = r.CheckBreak() - } - if yyb2299 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2299-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2304 := z.EncBinary() - _ = yym2304 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2305 := !z.EncBinary() - yy2arr2305 := z.EncBasicHandle().StructToArray - var yyq2305 [4]bool - _, _, _ = yysep2305, yyq2305, yy2arr2305 - const yyr2305 bool = false - yyq2305[0] = x.Kind != "" - yyq2305[1] = x.APIVersion != "" - yyq2305[2] = true - var yynn2305 int - if yyr2305 || yy2arr2305 { - r.EncodeArrayStart(4) - } else { - yynn2305 = 1 - for _, b := range yyq2305 { - if b { - yynn2305++ - } - } - r.EncodeMapStart(yynn2305) - yynn2305 = 0 - } - if yyr2305 || yy2arr2305 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2305[0] { - yym2307 := z.EncBinary() - _ = yym2307 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2305[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2308 := z.EncBinary() - _ = yym2308 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2305 || yy2arr2305 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2305[1] { - yym2310 := z.EncBinary() - _ = yym2310 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2305[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2311 := z.EncBinary() - _ = yym2311 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2305 || yy2arr2305 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2305[2] { - yy2313 := &x.ListMeta - yym2314 := z.EncBinary() - _ = yym2314 - if false { - } else if z.HasExtensions() && z.EncExt(yy2313) { - } else { - z.EncFallback(yy2313) - } - } else { - r.EncodeNil() - } - } else { - if yyq2305[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2315 := &x.ListMeta - yym2316 := z.EncBinary() - _ = yym2316 - if false { - } else if z.HasExtensions() && z.EncExt(yy2315) { - } else { - z.EncFallback(yy2315) - } - } - } - if yyr2305 || yy2arr2305 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2318 := z.EncBinary() - _ = yym2318 - if false { - } else { - h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2319 := z.EncBinary() - _ = yym2319 - if false { - } else { - h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) - } - } - } - if yyr2305 || yy2arr2305 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2320 := z.DecBinary() - _ = yym2320 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2321 := r.ContainerType() - if yyct2321 == codecSelferValueTypeMap1234 { - yyl2321 := r.ReadMapStart() - if yyl2321 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2321, d) - } - } else if yyct2321 == codecSelferValueTypeArray1234 { - yyl2321 := r.ReadArrayStart() - if yyl2321 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2321, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - 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 { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2322Slc = r.DecodeBytes(yys2322Slc, true, true) - yys2322 := string(yys2322Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2322 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv2325 := &x.ListMeta - yym2326 := z.DecBinary() - _ = yym2326 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2325) { - } else { - z.DecFallback(yyv2325, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2327 := &x.Items - yym2328 := z.DecBinary() - _ = yym2328 - if false { - } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2327), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2322) - } // end switch yys2322 - } // end for yyj2322 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2329 int - var yyb2329 bool - var yyhl2329 bool = l >= 0 - yyj2329++ - if yyhl2329 { - yyb2329 = yyj2329 > l - } else { - yyb2329 = r.CheckBreak() - } - if yyb2329 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2329++ - if yyhl2329 { - yyb2329 = yyj2329 > l - } else { - yyb2329 = r.CheckBreak() - } - if yyb2329 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2329++ - if yyhl2329 { - yyb2329 = yyj2329 > l - } else { - yyb2329 = r.CheckBreak() - } - if yyb2329 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv2332 := &x.ListMeta - yym2333 := z.DecBinary() - _ = yym2333 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2332) { - } else { - z.DecFallback(yyv2332, false) - } - } - yyj2329++ - if yyhl2329 { - yyb2329 = yyj2329 > l - } else { - yyb2329 = r.CheckBreak() - } - if yyb2329 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2334 := &x.Items - yym2335 := z.DecBinary() - _ = yym2335 - if false { - } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2334), d) - } - } - for { - yyj2329++ - if yyhl2329 { - yyb2329 = yyj2329 > l - } else { - yyb2329 = r.CheckBreak() - } - if yyb2329 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2329-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2336 := z.EncBinary() - _ = yym2336 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2337 := !z.EncBinary() - yy2arr2337 := z.EncBasicHandle().StructToArray - var yyq2337 [3]bool - _, _, _ = yysep2337, yyq2337, yy2arr2337 - const yyr2337 bool = false - yyq2337[2] = x.Template != nil - var yynn2337 int - if yyr2337 || yy2arr2337 { - r.EncodeArrayStart(3) - } else { - yynn2337 = 2 - for _, b := range yyq2337 { - if b { - yynn2337++ - } - } - r.EncodeMapStart(yynn2337) - yynn2337 = 0 - } - if yyr2337 || yy2arr2337 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2339 := z.EncBinary() - _ = yym2339 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("replicas")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2340 := z.EncBinary() - _ = yym2340 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) - } - } - if yyr2337 || yy2arr2337 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Selector == nil { - r.EncodeNil() - } else { - yym2342 := z.EncBinary() - _ = yym2342 - if false { - } else { - z.F.EncMapStringStringV(x.Selector, false, e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("selector")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Selector == nil { - r.EncodeNil() - } else { - yym2343 := z.EncBinary() - _ = yym2343 - if false { - } else { - z.F.EncMapStringStringV(x.Selector, false, e) - } - } - } - if yyr2337 || yy2arr2337 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2337[2] { - if x.Template == nil { - r.EncodeNil() - } else { - x.Template.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq2337[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("template")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Template == nil { - r.EncodeNil() - } else { - x.Template.CodecEncodeSelf(e) - } - } - } - if yyr2337 || yy2arr2337 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -30912,7 +30992,7 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -30934,34 +31014,31 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D yys2347 := string(yys2347Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys2347 { - case "replicas": + case "kind": if r.TryDecodeAsNil() { - x.Replicas = 0 + x.Kind = "" } else { - x.Replicas = int32(r.DecodeInt(32)) + x.Kind = string(r.DecodeString()) } - case "selector": + case "apiVersion": if r.TryDecodeAsNil() { - x.Selector = nil + x.APIVersion = "" } else { - yyv2349 := &x.Selector - yym2350 := z.DecBinary() - _ = yym2350 - if false { - } else { - z.F.DecMapStringStringX(yyv2349, false, d) - } + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2350 := &x.ObjectMeta + yyv2350.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { - if x.Template != nil { - x.Template = nil - } + x.Template = PodTemplateSpec{} } else { - if x.Template == nil { - x.Template = new(PodTemplateSpec) - } - x.Template.CodecDecodeSelf(d) + yyv2351 := &x.Template + yyv2351.CodecDecodeSelf(d) } default: z.DecStructFieldNotFound(-1, yys2347) @@ -30970,7 +31047,7 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -30989,9 +31066,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Replicas = 0 + x.Kind = "" } else { - x.Replicas = int32(r.DecodeInt(32)) + x.Kind = string(r.DecodeString()) } yyj2352++ if yyhl2352 { @@ -31005,15 +31082,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Selector = nil + x.APIVersion = "" } else { - yyv2354 := &x.Selector - yym2355 := z.DecBinary() - _ = yym2355 - if false { - } else { - z.F.DecMapStringStringX(yyv2354, false, d) - } + x.APIVersion = string(r.DecodeString()) } yyj2352++ if yyhl2352 { @@ -31027,14 +31098,27 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - if x.Template != nil { - x.Template = nil - } + x.ObjectMeta = ObjectMeta{} } else { - if x.Template == nil { - x.Template = new(PodTemplateSpec) - } - x.Template.CodecDecodeSelf(d) + yyv2355 := &x.ObjectMeta + yyv2355.CodecDecodeSelf(d) + } + yyj2352++ + if yyhl2352 { + yyb2352 = yyj2352 > l + } else { + yyb2352 = r.CheckBreak() + } + if yyb2352 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Template = PodTemplateSpec{} + } else { + yyv2356 := &x.Template + yyv2356.CodecDecodeSelf(d) } for { yyj2352++ @@ -31052,7 +31136,7 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -31069,9 +31153,9 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { var yyq2358 [4]bool _, _, _ = yysep2358, yyq2358, yy2arr2358 const yyr2358 bool = false - yyq2358[1] = x.FullyLabeledReplicas != 0 - yyq2358[2] = x.ReadyReplicas != 0 - yyq2358[3] = x.ObservedGeneration != 0 + yyq2358[0] = x.Kind != "" + yyq2358[1] = x.APIVersion != "" + yyq2358[2] = true var yynn2358 int if yyr2358 || yy2arr2358 { r.EncodeArrayStart(4) @@ -31087,21 +31171,27 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2358 || yy2arr2358 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2360 := z.EncBinary() - _ = yym2360 - if false { + if yyq2358[0] { + yym2360 := z.EncBinary() + _ = yym2360 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } } else { - r.EncodeInt(int64(x.Replicas)) + r.EncodeString(codecSelferC_UTF81234, "") } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("replicas")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2361 := z.EncBinary() - _ = yym2361 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) + if yyq2358[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2361 := z.EncBinary() + _ = yym2361 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } } } if yyr2358 || yy2arr2358 { @@ -31111,71 +31201,77 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym2363 if false { } else { - r.EncodeInt(int64(x.FullyLabeledReplicas)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { - r.EncodeInt(0) + r.EncodeString(codecSelferC_UTF81234, "") } } else { if yyq2358[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2364 := z.EncBinary() _ = yym2364 if false { } else { - r.EncodeInt(int64(x.FullyLabeledReplicas)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } if yyr2358 || yy2arr2358 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2358[2] { - yym2366 := z.EncBinary() - _ = yym2366 - if false { - } else { - r.EncodeInt(int64(x.ReadyReplicas)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2358[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2366 := &x.ListMeta yym2367 := z.EncBinary() _ = yym2367 if false { + } else if z.HasExtensions() && z.EncExt(yy2366) { } else { - r.EncodeInt(int64(x.ReadyReplicas)) + z.EncFallback(yy2366) + } + } else { + r.EncodeNil() + } + } else { + if yyq2358[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2368 := &x.ListMeta + yym2369 := z.EncBinary() + _ = yym2369 + if false { + } else if z.HasExtensions() && z.EncExt(yy2368) { + } else { + z.EncFallback(yy2368) } } } if yyr2358 || yy2arr2358 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2358[3] { - yym2369 := z.EncBinary() - _ = yym2369 + if x.Items == nil { + r.EncodeNil() + } else { + yym2371 := z.EncBinary() + _ = yym2371 if false { } else { - r.EncodeInt(int64(x.ObservedGeneration)) + h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } - } else { - r.EncodeInt(0) } } else { - if yyq2358[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2370 := z.EncBinary() - _ = yym2370 + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2372 := z.EncBinary() + _ = yym2372 if false { } else { - r.EncodeInt(int64(x.ObservedGeneration)) + h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } @@ -31188,29 +31284,640 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } +func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2373 := z.DecBinary() + _ = yym2373 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2374 := r.ContainerType() + if yyct2374 == codecSelferValueTypeMap1234 { + yyl2374 := r.ReadMapStart() + if yyl2374 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2374, d) + } + } else if yyct2374 == codecSelferValueTypeArray1234 { + yyl2374 := r.ReadArrayStart() + if yyl2374 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2374, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2375Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2375Slc + var yyhl2375 bool = l >= 0 + for yyj2375 := 0; ; yyj2375++ { + if yyhl2375 { + if yyj2375 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2375Slc = r.DecodeBytes(yys2375Slc, true, true) + yys2375 := string(yys2375Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2375 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv2378 := &x.ListMeta + yym2379 := z.DecBinary() + _ = yym2379 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2378) { + } else { + z.DecFallback(yyv2378, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2380 := &x.Items + yym2381 := z.DecBinary() + _ = yym2381 + if false { + } else { + h.decSlicePodTemplate((*[]PodTemplate)(yyv2380), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2375) + } // end switch yys2375 + } // end for yyj2375 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2382 int + var yyb2382 bool + var yyhl2382 bool = l >= 0 + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv2385 := &x.ListMeta + yym2386 := z.DecBinary() + _ = yym2386 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2385) { + } else { + z.DecFallback(yyv2385, false) + } + } + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2387 := &x.Items + yym2388 := z.DecBinary() + _ = yym2388 + if false { + } else { + h.decSlicePodTemplate((*[]PodTemplate)(yyv2387), d) + } + } + for { + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2382-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2389 := z.EncBinary() + _ = yym2389 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2390 := !z.EncBinary() + yy2arr2390 := z.EncBasicHandle().StructToArray + var yyq2390 [3]bool + _, _, _ = yysep2390, yyq2390, yy2arr2390 + const yyr2390 bool = false + yyq2390[2] = x.Template != nil + var yynn2390 int + if yyr2390 || yy2arr2390 { + r.EncodeArrayStart(3) + } else { + yynn2390 = 2 + for _, b := range yyq2390 { + if b { + yynn2390++ + } + } + r.EncodeMapStart(yynn2390) + yynn2390 = 0 + } + if yyr2390 || yy2arr2390 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2392 := z.EncBinary() + _ = yym2392 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("replicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2393 := z.EncBinary() + _ = yym2393 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } + if yyr2390 || yy2arr2390 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Selector == nil { + r.EncodeNil() + } else { + yym2395 := z.EncBinary() + _ = yym2395 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("selector")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Selector == nil { + r.EncodeNil() + } else { + yym2396 := z.EncBinary() + _ = yym2396 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } + if yyr2390 || yy2arr2390 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2390[2] { + if x.Template == nil { + r.EncodeNil() + } else { + x.Template.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq2390[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("template")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Template == nil { + r.EncodeNil() + } else { + x.Template.CodecEncodeSelf(e) + } + } + } + if yyr2390 || yy2arr2390 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2398 := z.DecBinary() + _ = yym2398 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2399 := r.ContainerType() + if yyct2399 == codecSelferValueTypeMap1234 { + yyl2399 := r.ReadMapStart() + if yyl2399 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2399, d) + } + } else if yyct2399 == codecSelferValueTypeArray1234 { + yyl2399 := r.ReadArrayStart() + if yyl2399 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2399, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2400Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2400Slc + var yyhl2400 bool = l >= 0 + for yyj2400 := 0; ; yyj2400++ { + if yyhl2400 { + if yyj2400 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2400Slc = r.DecodeBytes(yys2400Slc, true, true) + yys2400 := string(yys2400Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2400 { + case "replicas": + if r.TryDecodeAsNil() { + x.Replicas = 0 + } else { + x.Replicas = int32(r.DecodeInt(32)) + } + case "selector": + if r.TryDecodeAsNil() { + x.Selector = nil + } else { + yyv2402 := &x.Selector + yym2403 := z.DecBinary() + _ = yym2403 + if false { + } else { + z.F.DecMapStringStringX(yyv2402, false, d) + } + } + case "template": + if r.TryDecodeAsNil() { + if x.Template != nil { + x.Template = nil + } + } else { + if x.Template == nil { + x.Template = new(PodTemplateSpec) + } + x.Template.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2400) + } // end switch yys2400 + } // end for yyj2400 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2405 int + var yyb2405 bool + var yyhl2405 bool = l >= 0 + yyj2405++ + if yyhl2405 { + yyb2405 = yyj2405 > l + } else { + yyb2405 = r.CheckBreak() + } + if yyb2405 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Replicas = 0 + } else { + x.Replicas = int32(r.DecodeInt(32)) + } + yyj2405++ + if yyhl2405 { + yyb2405 = yyj2405 > l + } else { + yyb2405 = r.CheckBreak() + } + if yyb2405 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Selector = nil + } else { + yyv2407 := &x.Selector + yym2408 := z.DecBinary() + _ = yym2408 + if false { + } else { + z.F.DecMapStringStringX(yyv2407, false, d) + } + } + yyj2405++ + if yyhl2405 { + yyb2405 = yyj2405 > l + } else { + yyb2405 = r.CheckBreak() + } + if yyb2405 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Template != nil { + x.Template = nil + } + } else { + if x.Template == nil { + x.Template = new(PodTemplateSpec) + } + x.Template.CodecDecodeSelf(d) + } + for { + yyj2405++ + if yyhl2405 { + yyb2405 = yyj2405 > l + } else { + yyb2405 = r.CheckBreak() + } + if yyb2405 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2405-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2410 := z.EncBinary() + _ = yym2410 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2411 := !z.EncBinary() + yy2arr2411 := z.EncBasicHandle().StructToArray + var yyq2411 [4]bool + _, _, _ = yysep2411, yyq2411, yy2arr2411 + const yyr2411 bool = false + yyq2411[1] = x.FullyLabeledReplicas != 0 + yyq2411[2] = x.ReadyReplicas != 0 + yyq2411[3] = x.ObservedGeneration != 0 + var yynn2411 int + if yyr2411 || yy2arr2411 { + r.EncodeArrayStart(4) + } else { + yynn2411 = 1 + for _, b := range yyq2411 { + if b { + yynn2411++ + } + } + r.EncodeMapStart(yynn2411) + yynn2411 = 0 + } + if yyr2411 || yy2arr2411 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2413 := z.EncBinary() + _ = yym2413 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("replicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2414 := z.EncBinary() + _ = yym2414 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } + if yyr2411 || yy2arr2411 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2411[1] { + yym2416 := z.EncBinary() + _ = yym2416 + if false { + } else { + r.EncodeInt(int64(x.FullyLabeledReplicas)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2411[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2417 := z.EncBinary() + _ = yym2417 + if false { + } else { + r.EncodeInt(int64(x.FullyLabeledReplicas)) + } + } + } + if yyr2411 || yy2arr2411 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2411[2] { + yym2419 := z.EncBinary() + _ = yym2419 + if false { + } else { + r.EncodeInt(int64(x.ReadyReplicas)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2411[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2420 := z.EncBinary() + _ = yym2420 + if false { + } else { + r.EncodeInt(int64(x.ReadyReplicas)) + } + } + } + if yyr2411 || yy2arr2411 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2411[3] { + yym2422 := z.EncBinary() + _ = yym2422 + if false { + } else { + r.EncodeInt(int64(x.ObservedGeneration)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2411[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2423 := z.EncBinary() + _ = yym2423 + if false { + } else { + r.EncodeInt(int64(x.ObservedGeneration)) + } + } + } + if yyr2411 || yy2arr2411 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2371 := z.DecBinary() - _ = yym2371 + yym2424 := z.DecBinary() + _ = yym2424 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2372 := r.ContainerType() - if yyct2372 == codecSelferValueTypeMap1234 { - yyl2372 := r.ReadMapStart() - if yyl2372 == 0 { + yyct2425 := r.ContainerType() + if yyct2425 == codecSelferValueTypeMap1234 { + yyl2425 := r.ReadMapStart() + if yyl2425 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2372, d) + x.codecDecodeSelfFromMap(yyl2425, d) } - } else if yyct2372 == codecSelferValueTypeArray1234 { - yyl2372 := r.ReadArrayStart() - if yyl2372 == 0 { + } else if yyct2425 == codecSelferValueTypeArray1234 { + yyl2425 := r.ReadArrayStart() + if yyl2425 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2372, d) + x.codecDecodeSelfFromArray(yyl2425, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31222,12 +31929,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2373Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2373Slc - var yyhl2373 bool = l >= 0 - for yyj2373 := 0; ; yyj2373++ { - if yyhl2373 { - if yyj2373 >= l { + var yys2426Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2426Slc + var yyhl2426 bool = l >= 0 + for yyj2426 := 0; ; yyj2426++ { + if yyhl2426 { + if yyj2426 >= l { break } } else { @@ -31236,10 +31943,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2373Slc = r.DecodeBytes(yys2373Slc, true, true) - yys2373 := string(yys2373Slc) + yys2426Slc = r.DecodeBytes(yys2426Slc, true, true) + yys2426 := string(yys2426Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2373 { + switch yys2426 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -31265,9 +31972,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2373) - } // end switch yys2373 - } // end for yyj2373 + z.DecStructFieldNotFound(-1, yys2426) + } // end switch yys2426 + } // end for yyj2426 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31275,16 +31982,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2378 int - var yyb2378 bool - var yyhl2378 bool = l >= 0 - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + var yyj2431 int + var yyb2431 bool + var yyhl2431 bool = l >= 0 + yyj2431++ + if yyhl2431 { + yyb2431 = yyj2431 > l } else { - yyb2378 = r.CheckBreak() + yyb2431 = r.CheckBreak() } - if yyb2378 { + if yyb2431 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31294,13 +32001,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + yyj2431++ + if yyhl2431 { + yyb2431 = yyj2431 > l } else { - yyb2378 = r.CheckBreak() + yyb2431 = r.CheckBreak() } - if yyb2378 { + if yyb2431 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31310,13 +32017,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + yyj2431++ + if yyhl2431 { + yyb2431 = yyj2431 > l } else { - yyb2378 = r.CheckBreak() + yyb2431 = r.CheckBreak() } - if yyb2378 { + if yyb2431 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31326,13 +32033,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + yyj2431++ + if yyhl2431 { + yyb2431 = yyj2431 > l } else { - yyb2378 = r.CheckBreak() + yyb2431 = r.CheckBreak() } - if yyb2378 { + if yyb2431 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31343,17 +32050,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + yyj2431++ + if yyhl2431 { + yyb2431 = yyj2431 > l } else { - yyb2378 = r.CheckBreak() + yyb2431 = r.CheckBreak() } - if yyb2378 { + if yyb2431 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2378-1, "") + z.DecStructFieldNotFound(yyj2431-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31365,39 +32072,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2383 := z.EncBinary() - _ = yym2383 + yym2436 := z.EncBinary() + _ = yym2436 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2384 := !z.EncBinary() - yy2arr2384 := z.EncBasicHandle().StructToArray - var yyq2384 [5]bool - _, _, _ = yysep2384, yyq2384, yy2arr2384 - const yyr2384 bool = false - yyq2384[0] = x.Kind != "" - yyq2384[1] = x.APIVersion != "" - yyq2384[2] = true - yyq2384[3] = true - yyq2384[4] = true - var yynn2384 int - if yyr2384 || yy2arr2384 { + yysep2437 := !z.EncBinary() + yy2arr2437 := z.EncBasicHandle().StructToArray + var yyq2437 [5]bool + _, _, _ = yysep2437, yyq2437, yy2arr2437 + const yyr2437 bool = false + yyq2437[0] = x.Kind != "" + yyq2437[1] = x.APIVersion != "" + yyq2437[2] = true + yyq2437[3] = true + yyq2437[4] = true + var yynn2437 int + if yyr2437 || yy2arr2437 { r.EncodeArrayStart(5) } else { - yynn2384 = 0 - for _, b := range yyq2384 { + yynn2437 = 0 + for _, b := range yyq2437 { if b { - yynn2384++ + yynn2437++ } } - r.EncodeMapStart(yynn2384) - yynn2384 = 0 + r.EncodeMapStart(yynn2437) + yynn2437 = 0 } - if yyr2384 || yy2arr2384 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2384[0] { - yym2386 := z.EncBinary() - _ = yym2386 + if yyq2437[0] { + yym2439 := z.EncBinary() + _ = yym2439 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31406,23 +32113,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2384[0] { + if yyq2437[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2387 := z.EncBinary() - _ = yym2387 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2384 || yy2arr2384 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2384[1] { - yym2389 := z.EncBinary() - _ = yym2389 + if yyq2437[1] { + yym2442 := z.EncBinary() + _ = yym2442 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31431,70 +32138,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2384[1] { + if yyq2437[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2390 := z.EncBinary() - _ = yym2390 + yym2443 := z.EncBinary() + _ = yym2443 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2384 || yy2arr2384 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2384[2] { - yy2392 := &x.ObjectMeta - yy2392.CodecEncodeSelf(e) + if yyq2437[2] { + yy2445 := &x.ObjectMeta + yy2445.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2384[2] { + if yyq2437[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2393 := &x.ObjectMeta - yy2393.CodecEncodeSelf(e) + yy2446 := &x.ObjectMeta + yy2446.CodecEncodeSelf(e) } } - if yyr2384 || yy2arr2384 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2384[3] { - yy2395 := &x.Spec - yy2395.CodecEncodeSelf(e) + if yyq2437[3] { + yy2448 := &x.Spec + yy2448.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2384[3] { + if yyq2437[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2396 := &x.Spec - yy2396.CodecEncodeSelf(e) + yy2449 := &x.Spec + yy2449.CodecEncodeSelf(e) } } - if yyr2384 || yy2arr2384 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2384[4] { - yy2398 := &x.Status - yy2398.CodecEncodeSelf(e) + if yyq2437[4] { + yy2451 := &x.Status + yy2451.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2384[4] { + if yyq2437[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2399 := &x.Status - yy2399.CodecEncodeSelf(e) + yy2452 := &x.Status + yy2452.CodecEncodeSelf(e) } } - if yyr2384 || yy2arr2384 { + if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31507,25 +32214,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2400 := z.DecBinary() - _ = yym2400 + yym2453 := z.DecBinary() + _ = yym2453 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2401 := r.ContainerType() - if yyct2401 == codecSelferValueTypeMap1234 { - yyl2401 := r.ReadMapStart() - if yyl2401 == 0 { + yyct2454 := r.ContainerType() + if yyct2454 == codecSelferValueTypeMap1234 { + yyl2454 := r.ReadMapStart() + if yyl2454 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2401, d) + x.codecDecodeSelfFromMap(yyl2454, d) } - } else if yyct2401 == codecSelferValueTypeArray1234 { - yyl2401 := r.ReadArrayStart() - if yyl2401 == 0 { + } else if yyct2454 == codecSelferValueTypeArray1234 { + yyl2454 := r.ReadArrayStart() + if yyl2454 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2401, d) + x.codecDecodeSelfFromArray(yyl2454, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31537,12 +32244,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2402Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2402Slc - var yyhl2402 bool = l >= 0 - for yyj2402 := 0; ; yyj2402++ { - if yyhl2402 { - if yyj2402 >= l { + var yys2455Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2455Slc + var yyhl2455 bool = l >= 0 + for yyj2455 := 0; ; yyj2455++ { + if yyhl2455 { + if yyj2455 >= l { break } } else { @@ -31551,10 +32258,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2402Slc = r.DecodeBytes(yys2402Slc, true, true) - yys2402 := string(yys2402Slc) + yys2455Slc = r.DecodeBytes(yys2455Slc, true, true) + yys2455 := string(yys2455Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2402 { + switch yys2455 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31571,27 +32278,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2405 := &x.ObjectMeta - yyv2405.CodecDecodeSelf(d) + yyv2458 := &x.ObjectMeta + yyv2458.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2406 := &x.Spec - yyv2406.CodecDecodeSelf(d) + yyv2459 := &x.Spec + yyv2459.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2407 := &x.Status - yyv2407.CodecDecodeSelf(d) + yyv2460 := &x.Status + yyv2460.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2402) - } // end switch yys2402 - } // end for yyj2402 + z.DecStructFieldNotFound(-1, yys2455) + } // end switch yys2455 + } // end for yyj2455 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31599,16 +32306,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2408 int - var yyb2408 bool - var yyhl2408 bool = l >= 0 - yyj2408++ - if yyhl2408 { - yyb2408 = yyj2408 > l + var yyj2461 int + var yyb2461 bool + var yyhl2461 bool = l >= 0 + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2408 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2408 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31618,13 +32325,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj2408++ - if yyhl2408 { - yyb2408 = yyj2408 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2408 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2408 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31634,13 +32341,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj2408++ - if yyhl2408 { - yyb2408 = yyj2408 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2408 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2408 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31648,16 +32355,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2411 := &x.ObjectMeta - yyv2411.CodecDecodeSelf(d) + yyv2464 := &x.ObjectMeta + yyv2464.CodecDecodeSelf(d) } - yyj2408++ - if yyhl2408 { - yyb2408 = yyj2408 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2408 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2408 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31665,16 +32372,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2412 := &x.Spec - yyv2412.CodecDecodeSelf(d) + yyv2465 := &x.Spec + yyv2465.CodecDecodeSelf(d) } - yyj2408++ - if yyhl2408 { - yyb2408 = yyj2408 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2408 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2408 { + if yyb2461 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31682,21 +32389,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2413 := &x.Status - yyv2413.CodecDecodeSelf(d) + yyv2466 := &x.Status + yyv2466.CodecDecodeSelf(d) } for { - yyj2408++ - if yyhl2408 { - yyb2408 = yyj2408 > l + yyj2461++ + if yyhl2461 { + yyb2461 = yyj2461 > l } else { - yyb2408 = r.CheckBreak() + yyb2461 = r.CheckBreak() } - if yyb2408 { + if yyb2461 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2408-1, "") + z.DecStructFieldNotFound(yyj2461-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31708,37 +32415,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2414 := z.EncBinary() - _ = yym2414 + yym2467 := z.EncBinary() + _ = yym2467 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2415 := !z.EncBinary() - yy2arr2415 := z.EncBasicHandle().StructToArray - var yyq2415 [4]bool - _, _, _ = yysep2415, yyq2415, yy2arr2415 - const yyr2415 bool = false - yyq2415[0] = x.Kind != "" - yyq2415[1] = x.APIVersion != "" - yyq2415[2] = true - var yynn2415 int - if yyr2415 || yy2arr2415 { + yysep2468 := !z.EncBinary() + yy2arr2468 := z.EncBasicHandle().StructToArray + var yyq2468 [4]bool + _, _, _ = yysep2468, yyq2468, yy2arr2468 + const yyr2468 bool = false + yyq2468[0] = x.Kind != "" + yyq2468[1] = x.APIVersion != "" + yyq2468[2] = true + var yynn2468 int + if yyr2468 || yy2arr2468 { r.EncodeArrayStart(4) } else { - yynn2415 = 1 - for _, b := range yyq2415 { + yynn2468 = 1 + for _, b := range yyq2468 { if b { - yynn2415++ + yynn2468++ } } - r.EncodeMapStart(yynn2415) - yynn2415 = 0 + r.EncodeMapStart(yynn2468) + yynn2468 = 0 } - if yyr2415 || yy2arr2415 { + if yyr2468 || yy2arr2468 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[0] { - yym2417 := z.EncBinary() - _ = yym2417 + if yyq2468[0] { + yym2470 := z.EncBinary() + _ = yym2470 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31747,23 +32454,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2415[0] { + if yyq2468[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2418 := z.EncBinary() - _ = yym2418 + yym2471 := z.EncBinary() + _ = yym2471 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2415 || yy2arr2415 { + if yyr2468 || yy2arr2468 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[1] { - yym2420 := z.EncBinary() - _ = yym2420 + if yyq2468[1] { + yym2473 := z.EncBinary() + _ = yym2473 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31772,54 +32479,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2415[1] { + if yyq2468[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2421 := z.EncBinary() - _ = yym2421 + yym2474 := z.EncBinary() + _ = yym2474 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2415 || yy2arr2415 { + if yyr2468 || yy2arr2468 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[2] { - yy2423 := &x.ListMeta - yym2424 := z.EncBinary() - _ = yym2424 + if yyq2468[2] { + yy2476 := &x.ListMeta + yym2477 := z.EncBinary() + _ = yym2477 if false { - } else if z.HasExtensions() && z.EncExt(yy2423) { + } else if z.HasExtensions() && z.EncExt(yy2476) { } else { - z.EncFallback(yy2423) + z.EncFallback(yy2476) } } else { r.EncodeNil() } } else { - if yyq2415[2] { + if yyq2468[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2425 := &x.ListMeta - yym2426 := z.EncBinary() - _ = yym2426 + yy2478 := &x.ListMeta + yym2479 := z.EncBinary() + _ = yym2479 if false { - } else if z.HasExtensions() && z.EncExt(yy2425) { + } else if z.HasExtensions() && z.EncExt(yy2478) { } else { - z.EncFallback(yy2425) + z.EncFallback(yy2478) } } } - if yyr2415 || yy2arr2415 { + if yyr2468 || yy2arr2468 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2428 := z.EncBinary() - _ = yym2428 + yym2481 := z.EncBinary() + _ = yym2481 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -31832,15 +32539,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2429 := z.EncBinary() - _ = yym2429 + yym2482 := z.EncBinary() + _ = yym2482 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2415 || yy2arr2415 { + if yyr2468 || yy2arr2468 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31853,25 +32560,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2430 := z.DecBinary() - _ = yym2430 + yym2483 := z.DecBinary() + _ = yym2483 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2431 := r.ContainerType() - if yyct2431 == codecSelferValueTypeMap1234 { - yyl2431 := r.ReadMapStart() - if yyl2431 == 0 { + yyct2484 := r.ContainerType() + if yyct2484 == codecSelferValueTypeMap1234 { + yyl2484 := r.ReadMapStart() + if yyl2484 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2431, d) + x.codecDecodeSelfFromMap(yyl2484, d) } - } else if yyct2431 == codecSelferValueTypeArray1234 { - yyl2431 := r.ReadArrayStart() - if yyl2431 == 0 { + } else if yyct2484 == codecSelferValueTypeArray1234 { + yyl2484 := r.ReadArrayStart() + if yyl2484 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2431, d) + x.codecDecodeSelfFromArray(yyl2484, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31883,12 +32590,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2432Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2432Slc - var yyhl2432 bool = l >= 0 - for yyj2432 := 0; ; yyj2432++ { - if yyhl2432 { - if yyj2432 >= l { + var yys2485Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2485Slc + var yyhl2485 bool = l >= 0 + for yyj2485 := 0; ; yyj2485++ { + if yyhl2485 { + if yyj2485 >= l { break } } else { @@ -31897,10 +32604,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2432Slc = r.DecodeBytes(yys2432Slc, true, true) - yys2432 := string(yys2432Slc) + yys2485Slc = r.DecodeBytes(yys2485Slc, true, true) + yys2485 := string(yys2485Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2432 { + switch yys2485 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31917,31 +32624,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2435 := &x.ListMeta - yym2436 := z.DecBinary() - _ = yym2436 + yyv2488 := &x.ListMeta + yym2489 := z.DecBinary() + _ = yym2489 if false { - } else if z.HasExtensions() && z.DecExt(yyv2435) { + } else if z.HasExtensions() && z.DecExt(yyv2488) { } else { - z.DecFallback(yyv2435, false) + z.DecFallback(yyv2488, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2437 := &x.Items - yym2438 := z.DecBinary() - _ = yym2438 + yyv2490 := &x.Items + yym2491 := z.DecBinary() + _ = yym2491 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2437), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2490), d) } } default: - z.DecStructFieldNotFound(-1, yys2432) - } // end switch yys2432 - } // end for yyj2432 + z.DecStructFieldNotFound(-1, yys2485) + } // end switch yys2485 + } // end for yyj2485 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31949,16 +32656,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2439 int - var yyb2439 bool - var yyhl2439 bool = l >= 0 - yyj2439++ - if yyhl2439 { - yyb2439 = yyj2439 > l + var yyj2492 int + var yyb2492 bool + var yyhl2492 bool = l >= 0 + yyj2492++ + if yyhl2492 { + yyb2492 = yyj2492 > l } else { - yyb2439 = r.CheckBreak() + yyb2492 = r.CheckBreak() } - if yyb2439 { + if yyb2492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31968,13 +32675,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2439++ - if yyhl2439 { - yyb2439 = yyj2439 > l + yyj2492++ + if yyhl2492 { + yyb2492 = yyj2492 > l } else { - yyb2439 = r.CheckBreak() + yyb2492 = r.CheckBreak() } - if yyb2439 { + if yyb2492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31984,13 +32691,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2439++ - if yyhl2439 { - yyb2439 = yyj2439 > l + yyj2492++ + if yyhl2492 { + yyb2492 = yyj2492 > l } else { - yyb2439 = r.CheckBreak() + yyb2492 = r.CheckBreak() } - if yyb2439 { + if yyb2492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31998,22 +32705,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2442 := &x.ListMeta - yym2443 := z.DecBinary() - _ = yym2443 + yyv2495 := &x.ListMeta + yym2496 := z.DecBinary() + _ = yym2496 if false { - } else if z.HasExtensions() && z.DecExt(yyv2442) { + } else if z.HasExtensions() && z.DecExt(yyv2495) { } else { - z.DecFallback(yyv2442, false) + z.DecFallback(yyv2495, false) } } - yyj2439++ - if yyhl2439 { - yyb2439 = yyj2439 > l + yyj2492++ + if yyhl2492 { + yyb2492 = yyj2492 > l } else { - yyb2439 = r.CheckBreak() + yyb2492 = r.CheckBreak() } - if yyb2439 { + if yyb2492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32021,26 +32728,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2444 := &x.Items - yym2445 := z.DecBinary() - _ = yym2445 + yyv2497 := &x.Items + yym2498 := z.DecBinary() + _ = yym2498 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2444), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2497), d) } } for { - yyj2439++ - if yyhl2439 { - yyb2439 = yyj2439 > l + yyj2492++ + if yyhl2492 { + yyb2492 = yyj2492 > l } else { - yyb2439 = r.CheckBreak() + yyb2492 = r.CheckBreak() } - if yyb2439 { + if yyb2492 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2439-1, "") + z.DecStructFieldNotFound(yyj2492-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32052,37 +32759,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2446 := z.EncBinary() - _ = yym2446 + yym2499 := z.EncBinary() + _ = yym2499 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2447 := !z.EncBinary() - yy2arr2447 := z.EncBasicHandle().StructToArray - var yyq2447 [4]bool - _, _, _ = yysep2447, yyq2447, yy2arr2447 - const yyr2447 bool = false - yyq2447[0] = x.Kind != "" - yyq2447[1] = x.APIVersion != "" - yyq2447[2] = true - var yynn2447 int - if yyr2447 || yy2arr2447 { + yysep2500 := !z.EncBinary() + yy2arr2500 := z.EncBasicHandle().StructToArray + var yyq2500 [4]bool + _, _, _ = yysep2500, yyq2500, yy2arr2500 + const yyr2500 bool = false + yyq2500[0] = x.Kind != "" + yyq2500[1] = x.APIVersion != "" + yyq2500[2] = true + var yynn2500 int + if yyr2500 || yy2arr2500 { r.EncodeArrayStart(4) } else { - yynn2447 = 1 - for _, b := range yyq2447 { + yynn2500 = 1 + for _, b := range yyq2500 { if b { - yynn2447++ + yynn2500++ } } - r.EncodeMapStart(yynn2447) - yynn2447 = 0 + r.EncodeMapStart(yynn2500) + yynn2500 = 0 } - if yyr2447 || yy2arr2447 { + if yyr2500 || yy2arr2500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2447[0] { - yym2449 := z.EncBinary() - _ = yym2449 + if yyq2500[0] { + yym2502 := z.EncBinary() + _ = yym2502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32091,23 +32798,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2447[0] { + if yyq2500[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2450 := z.EncBinary() - _ = yym2450 + yym2503 := z.EncBinary() + _ = yym2503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2447 || yy2arr2447 { + if yyr2500 || yy2arr2500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2447[1] { - yym2452 := z.EncBinary() - _ = yym2452 + if yyq2500[1] { + yym2505 := z.EncBinary() + _ = yym2505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32116,54 +32823,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2447[1] { + if yyq2500[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2453 := z.EncBinary() - _ = yym2453 + yym2506 := z.EncBinary() + _ = yym2506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2447 || yy2arr2447 { + if yyr2500 || yy2arr2500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2447[2] { - yy2455 := &x.ListMeta - yym2456 := z.EncBinary() - _ = yym2456 + if yyq2500[2] { + yy2508 := &x.ListMeta + yym2509 := z.EncBinary() + _ = yym2509 if false { - } else if z.HasExtensions() && z.EncExt(yy2455) { + } else if z.HasExtensions() && z.EncExt(yy2508) { } else { - z.EncFallback(yy2455) + z.EncFallback(yy2508) } } else { r.EncodeNil() } } else { - if yyq2447[2] { + if yyq2500[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2457 := &x.ListMeta - yym2458 := z.EncBinary() - _ = yym2458 + yy2510 := &x.ListMeta + yym2511 := z.EncBinary() + _ = yym2511 if false { - } else if z.HasExtensions() && z.EncExt(yy2457) { + } else if z.HasExtensions() && z.EncExt(yy2510) { } else { - z.EncFallback(yy2457) + z.EncFallback(yy2510) } } } - if yyr2447 || yy2arr2447 { + if yyr2500 || yy2arr2500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2460 := z.EncBinary() - _ = yym2460 + yym2513 := z.EncBinary() + _ = yym2513 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -32176,15 +32883,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2461 := z.EncBinary() - _ = yym2461 + yym2514 := z.EncBinary() + _ = yym2514 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2447 || yy2arr2447 { + if yyr2500 || yy2arr2500 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32197,25 +32904,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2462 := z.DecBinary() - _ = yym2462 + yym2515 := z.DecBinary() + _ = yym2515 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2463 := r.ContainerType() - if yyct2463 == codecSelferValueTypeMap1234 { - yyl2463 := r.ReadMapStart() - if yyl2463 == 0 { + yyct2516 := r.ContainerType() + if yyct2516 == codecSelferValueTypeMap1234 { + yyl2516 := r.ReadMapStart() + if yyl2516 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2463, d) + x.codecDecodeSelfFromMap(yyl2516, d) } - } else if yyct2463 == codecSelferValueTypeArray1234 { - yyl2463 := r.ReadArrayStart() - if yyl2463 == 0 { + } else if yyct2516 == codecSelferValueTypeArray1234 { + yyl2516 := r.ReadArrayStart() + if yyl2516 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2463, d) + x.codecDecodeSelfFromArray(yyl2516, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32227,12 +32934,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2464Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2464Slc - var yyhl2464 bool = l >= 0 - for yyj2464 := 0; ; yyj2464++ { - if yyhl2464 { - if yyj2464 >= l { + var 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 { @@ -32241,10 +32948,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2464Slc = r.DecodeBytes(yys2464Slc, true, true) - yys2464 := string(yys2464Slc) + yys2517Slc = r.DecodeBytes(yys2517Slc, true, true) + yys2517 := string(yys2517Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2464 { + switch yys2517 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32261,31 +32968,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2467 := &x.ListMeta - yym2468 := z.DecBinary() - _ = yym2468 + yyv2520 := &x.ListMeta + yym2521 := z.DecBinary() + _ = yym2521 if false { - } else if z.HasExtensions() && z.DecExt(yyv2467) { + } else if z.HasExtensions() && z.DecExt(yyv2520) { } else { - z.DecFallback(yyv2467, false) + z.DecFallback(yyv2520, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2469 := &x.Items - yym2470 := z.DecBinary() - _ = yym2470 + yyv2522 := &x.Items + yym2523 := z.DecBinary() + _ = yym2523 if false { } else { - h.decSliceService((*[]Service)(yyv2469), d) + h.decSliceService((*[]Service)(yyv2522), d) } } default: - z.DecStructFieldNotFound(-1, yys2464) - } // end switch yys2464 - } // end for yyj2464 + z.DecStructFieldNotFound(-1, yys2517) + } // end switch yys2517 + } // end for yyj2517 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32293,16 +33000,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2471 int - var yyb2471 bool - var yyhl2471 bool = l >= 0 - yyj2471++ - if yyhl2471 { - yyb2471 = yyj2471 > l + var yyj2524 int + var yyb2524 bool + var yyhl2524 bool = l >= 0 + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2471 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2471 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32312,13 +33019,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2471++ - if yyhl2471 { - yyb2471 = yyj2471 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2471 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2471 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32328,13 +33035,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2471++ - if yyhl2471 { - yyb2471 = yyj2471 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2471 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2471 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32342,22 +33049,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2474 := &x.ListMeta - yym2475 := z.DecBinary() - _ = yym2475 + yyv2527 := &x.ListMeta + yym2528 := z.DecBinary() + _ = yym2528 if false { - } else if z.HasExtensions() && z.DecExt(yyv2474) { + } else if z.HasExtensions() && z.DecExt(yyv2527) { } else { - z.DecFallback(yyv2474, false) + z.DecFallback(yyv2527, false) } } - yyj2471++ - if yyhl2471 { - yyb2471 = yyj2471 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2471 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2471 { + if yyb2524 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32365,26 +33072,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2476 := &x.Items - yym2477 := z.DecBinary() - _ = yym2477 + yyv2529 := &x.Items + yym2530 := z.DecBinary() + _ = yym2530 if false { } else { - h.decSliceService((*[]Service)(yyv2476), d) + h.decSliceService((*[]Service)(yyv2529), d) } } for { - yyj2471++ - if yyhl2471 { - yyb2471 = yyj2471 > l + yyj2524++ + if yyhl2524 { + yyb2524 = yyj2524 > l } else { - yyb2471 = r.CheckBreak() + yyb2524 = r.CheckBreak() } - if yyb2471 { + if yyb2524 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2471-1, "") + z.DecStructFieldNotFound(yyj2524-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32393,8 +33100,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2478 := z.EncBinary() - _ = yym2478 + yym2531 := z.EncBinary() + _ = yym2531 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32406,8 +33113,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2479 := z.DecBinary() - _ = yym2479 + yym2532 := z.DecBinary() + _ = yym2532 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32419,8 +33126,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2480 := z.EncBinary() - _ = yym2480 + yym2533 := z.EncBinary() + _ = yym2533 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32432,8 +33139,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2481 := z.DecBinary() - _ = yym2481 + yym2534 := z.DecBinary() + _ = yym2534 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32448,48 +33155,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2482 := z.EncBinary() - _ = yym2482 + yym2535 := z.EncBinary() + _ = yym2535 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2483 := !z.EncBinary() - yy2arr2483 := z.EncBasicHandle().StructToArray - var yyq2483 [1]bool - _, _, _ = yysep2483, yyq2483, yy2arr2483 - const yyr2483 bool = false - yyq2483[0] = true - var yynn2483 int - if yyr2483 || yy2arr2483 { + yysep2536 := !z.EncBinary() + yy2arr2536 := z.EncBasicHandle().StructToArray + var yyq2536 [1]bool + _, _, _ = yysep2536, yyq2536, yy2arr2536 + const yyr2536 bool = false + yyq2536[0] = true + var yynn2536 int + if yyr2536 || yy2arr2536 { r.EncodeArrayStart(1) } else { - yynn2483 = 0 - for _, b := range yyq2483 { + yynn2536 = 0 + for _, b := range yyq2536 { if b { - yynn2483++ + yynn2536++ } } - r.EncodeMapStart(yynn2483) - yynn2483 = 0 + r.EncodeMapStart(yynn2536) + yynn2536 = 0 } - if yyr2483 || yy2arr2483 { + if yyr2536 || yy2arr2536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2483[0] { - yy2485 := &x.LoadBalancer - yy2485.CodecEncodeSelf(e) + if yyq2536[0] { + yy2538 := &x.LoadBalancer + yy2538.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2483[0] { + if yyq2536[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2486 := &x.LoadBalancer - yy2486.CodecEncodeSelf(e) + yy2539 := &x.LoadBalancer + yy2539.CodecEncodeSelf(e) } } - if yyr2483 || yy2arr2483 { + if yyr2536 || yy2arr2536 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32502,25 +33209,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2487 := z.DecBinary() - _ = yym2487 + yym2540 := z.DecBinary() + _ = yym2540 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2488 := r.ContainerType() - if yyct2488 == codecSelferValueTypeMap1234 { - yyl2488 := r.ReadMapStart() - if yyl2488 == 0 { + yyct2541 := r.ContainerType() + if yyct2541 == codecSelferValueTypeMap1234 { + yyl2541 := r.ReadMapStart() + if yyl2541 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2488, d) + x.codecDecodeSelfFromMap(yyl2541, d) } - } else if yyct2488 == codecSelferValueTypeArray1234 { - yyl2488 := r.ReadArrayStart() - if yyl2488 == 0 { + } else if yyct2541 == codecSelferValueTypeArray1234 { + yyl2541 := r.ReadArrayStart() + if yyl2541 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2488, d) + x.codecDecodeSelfFromArray(yyl2541, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32532,12 +33239,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2489Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2489Slc - var yyhl2489 bool = l >= 0 - for yyj2489 := 0; ; yyj2489++ { - if yyhl2489 { - if yyj2489 >= l { + var yys2542Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2542Slc + var yyhl2542 bool = l >= 0 + for yyj2542 := 0; ; yyj2542++ { + if yyhl2542 { + if yyj2542 >= l { break } } else { @@ -32546,21 +33253,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2489Slc = r.DecodeBytes(yys2489Slc, true, true) - yys2489 := string(yys2489Slc) + yys2542Slc = r.DecodeBytes(yys2542Slc, true, true) + yys2542 := string(yys2542Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2489 { + switch yys2542 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2490 := &x.LoadBalancer - yyv2490.CodecDecodeSelf(d) + yyv2543 := &x.LoadBalancer + yyv2543.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2489) - } // end switch yys2489 - } // end for yyj2489 + z.DecStructFieldNotFound(-1, yys2542) + } // end switch yys2542 + } // end for yyj2542 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32568,16 +33275,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2491 int - var yyb2491 bool - var yyhl2491 bool = l >= 0 - yyj2491++ - if yyhl2491 { - yyb2491 = yyj2491 > l + var yyj2544 int + var yyb2544 bool + var yyhl2544 bool = l >= 0 + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2491 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2491 { + if yyb2544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32585,21 +33292,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2492 := &x.LoadBalancer - yyv2492.CodecDecodeSelf(d) + yyv2545 := &x.LoadBalancer + yyv2545.CodecDecodeSelf(d) } for { - yyj2491++ - if yyhl2491 { - yyb2491 = yyj2491 > l + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2491 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2491 { + if yyb2544 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2491-1, "") + z.DecStructFieldNotFound(yyj2544-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32611,38 +33318,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2493 := z.EncBinary() - _ = yym2493 + yym2546 := z.EncBinary() + _ = yym2546 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2494 := !z.EncBinary() - yy2arr2494 := z.EncBasicHandle().StructToArray - var yyq2494 [1]bool - _, _, _ = yysep2494, yyq2494, yy2arr2494 - const yyr2494 bool = false - yyq2494[0] = len(x.Ingress) != 0 - var yynn2494 int - if yyr2494 || yy2arr2494 { + yysep2547 := !z.EncBinary() + yy2arr2547 := z.EncBasicHandle().StructToArray + var yyq2547 [1]bool + _, _, _ = yysep2547, yyq2547, yy2arr2547 + const yyr2547 bool = false + yyq2547[0] = len(x.Ingress) != 0 + var yynn2547 int + if yyr2547 || yy2arr2547 { r.EncodeArrayStart(1) } else { - yynn2494 = 0 - for _, b := range yyq2494 { + yynn2547 = 0 + for _, b := range yyq2547 { if b { - yynn2494++ + yynn2547++ } } - r.EncodeMapStart(yynn2494) - yynn2494 = 0 + r.EncodeMapStart(yynn2547) + yynn2547 = 0 } - if yyr2494 || yy2arr2494 { + if yyr2547 || yy2arr2547 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2494[0] { + if yyq2547[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2496 := z.EncBinary() - _ = yym2496 + yym2549 := z.EncBinary() + _ = yym2549 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -32652,15 +33359,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2494[0] { + if yyq2547[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2497 := z.EncBinary() - _ = yym2497 + yym2550 := z.EncBinary() + _ = yym2550 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -32668,7 +33375,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2494 || yy2arr2494 { + if yyr2547 || yy2arr2547 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32681,25 +33388,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2498 := z.DecBinary() - _ = yym2498 + yym2551 := z.DecBinary() + _ = yym2551 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2499 := r.ContainerType() - if yyct2499 == codecSelferValueTypeMap1234 { - yyl2499 := r.ReadMapStart() - if yyl2499 == 0 { + yyct2552 := r.ContainerType() + if yyct2552 == codecSelferValueTypeMap1234 { + yyl2552 := r.ReadMapStart() + if yyl2552 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2499, d) + x.codecDecodeSelfFromMap(yyl2552, d) } - } else if yyct2499 == codecSelferValueTypeArray1234 { - yyl2499 := r.ReadArrayStart() - if yyl2499 == 0 { + } else if yyct2552 == codecSelferValueTypeArray1234 { + yyl2552 := r.ReadArrayStart() + if yyl2552 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2499, d) + x.codecDecodeSelfFromArray(yyl2552, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32711,12 +33418,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2500Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2500Slc - var yyhl2500 bool = l >= 0 - for yyj2500 := 0; ; yyj2500++ { - if yyhl2500 { - if yyj2500 >= l { + var yys2553Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2553Slc + var yyhl2553 bool = l >= 0 + for yyj2553 := 0; ; yyj2553++ { + if yyhl2553 { + if yyj2553 >= l { break } } else { @@ -32725,26 +33432,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2500Slc = r.DecodeBytes(yys2500Slc, true, true) - yys2500 := string(yys2500Slc) + yys2553Slc = r.DecodeBytes(yys2553Slc, true, true) + yys2553 := string(yys2553Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2500 { + switch yys2553 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2501 := &x.Ingress - yym2502 := z.DecBinary() - _ = yym2502 + yyv2554 := &x.Ingress + yym2555 := z.DecBinary() + _ = yym2555 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2501), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2554), d) } } default: - z.DecStructFieldNotFound(-1, yys2500) - } // end switch yys2500 - } // end for yyj2500 + z.DecStructFieldNotFound(-1, yys2553) + } // end switch yys2553 + } // end for yyj2553 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32752,16 +33459,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2503 int - var yyb2503 bool - var yyhl2503 bool = l >= 0 - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + var yyj2556 int + var yyb2556 bool + var yyhl2556 bool = l >= 0 + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2503 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2503 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32769,26 +33476,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2504 := &x.Ingress - yym2505 := z.DecBinary() - _ = yym2505 + yyv2557 := &x.Ingress + yym2558 := z.DecBinary() + _ = yym2558 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2504), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2557), d) } } for { - yyj2503++ - if yyhl2503 { - yyb2503 = yyj2503 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2503 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2503 { + if yyb2556 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2503-1, "") + z.DecStructFieldNotFound(yyj2556-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32800,36 +33507,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2506 := z.EncBinary() - _ = yym2506 + yym2559 := z.EncBinary() + _ = yym2559 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2507 := !z.EncBinary() - yy2arr2507 := z.EncBasicHandle().StructToArray - var yyq2507 [2]bool - _, _, _ = yysep2507, yyq2507, yy2arr2507 - const yyr2507 bool = false - yyq2507[0] = x.IP != "" - yyq2507[1] = x.Hostname != "" - var yynn2507 int - if yyr2507 || yy2arr2507 { + yysep2560 := !z.EncBinary() + yy2arr2560 := z.EncBasicHandle().StructToArray + var yyq2560 [2]bool + _, _, _ = yysep2560, yyq2560, yy2arr2560 + const yyr2560 bool = false + yyq2560[0] = x.IP != "" + yyq2560[1] = x.Hostname != "" + var yynn2560 int + if yyr2560 || yy2arr2560 { r.EncodeArrayStart(2) } else { - yynn2507 = 0 - for _, b := range yyq2507 { + yynn2560 = 0 + for _, b := range yyq2560 { if b { - yynn2507++ + yynn2560++ } } - r.EncodeMapStart(yynn2507) - yynn2507 = 0 + r.EncodeMapStart(yynn2560) + yynn2560 = 0 } - if yyr2507 || yy2arr2507 { + if yyr2560 || yy2arr2560 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2507[0] { - yym2509 := z.EncBinary() - _ = yym2509 + if yyq2560[0] { + yym2562 := z.EncBinary() + _ = yym2562 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -32838,23 +33545,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2507[0] { + if yyq2560[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2510 := z.EncBinary() - _ = yym2510 + yym2563 := z.EncBinary() + _ = yym2563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2507 || yy2arr2507 { + if yyr2560 || yy2arr2560 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2507[1] { - yym2512 := z.EncBinary() - _ = yym2512 + if yyq2560[1] { + yym2565 := z.EncBinary() + _ = yym2565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -32863,19 +33570,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2507[1] { + if yyq2560[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2513 := z.EncBinary() - _ = yym2513 + yym2566 := z.EncBinary() + _ = yym2566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2507 || yy2arr2507 { + if yyr2560 || yy2arr2560 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32888,25 +33595,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2514 := z.DecBinary() - _ = yym2514 + yym2567 := z.DecBinary() + _ = yym2567 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2515 := r.ContainerType() - if yyct2515 == codecSelferValueTypeMap1234 { - yyl2515 := r.ReadMapStart() - if yyl2515 == 0 { + yyct2568 := r.ContainerType() + if yyct2568 == codecSelferValueTypeMap1234 { + yyl2568 := r.ReadMapStart() + if yyl2568 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2515, d) + x.codecDecodeSelfFromMap(yyl2568, d) } - } else if yyct2515 == codecSelferValueTypeArray1234 { - yyl2515 := r.ReadArrayStart() - if yyl2515 == 0 { + } else if yyct2568 == codecSelferValueTypeArray1234 { + yyl2568 := r.ReadArrayStart() + if yyl2568 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2515, d) + x.codecDecodeSelfFromArray(yyl2568, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32918,12 +33625,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2516Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2516Slc - var yyhl2516 bool = l >= 0 - for yyj2516 := 0; ; yyj2516++ { - if yyhl2516 { - if yyj2516 >= l { + var yys2569Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2569Slc + var yyhl2569 bool = l >= 0 + for yyj2569 := 0; ; yyj2569++ { + if yyhl2569 { + if yyj2569 >= l { break } } else { @@ -32932,10 +33639,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2516Slc = r.DecodeBytes(yys2516Slc, true, true) - yys2516 := string(yys2516Slc) + yys2569Slc = r.DecodeBytes(yys2569Slc, true, true) + yys2569 := string(yys2569Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2516 { + switch yys2569 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -32949,9 +33656,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2516) - } // end switch yys2516 - } // end for yyj2516 + z.DecStructFieldNotFound(-1, yys2569) + } // end switch yys2569 + } // end for yyj2569 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32959,16 +33666,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2519 int - var yyb2519 bool - var yyhl2519 bool = l >= 0 - yyj2519++ - if yyhl2519 { - yyb2519 = yyj2519 > l + var yyj2572 int + var yyb2572 bool + var yyhl2572 bool = l >= 0 + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2519 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2519 { + if yyb2572 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32978,13 +33685,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2519++ - if yyhl2519 { - yyb2519 = yyj2519 > l + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2519 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2519 { + if yyb2572 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32995,17 +33702,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2519++ - if yyhl2519 { - yyb2519 = yyj2519 > l + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2519 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2519 { + if yyb2572 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2519-1, "") + z.DecStructFieldNotFound(yyj2572-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33017,57 +33724,57 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2522 := z.EncBinary() - _ = yym2522 + yym2575 := z.EncBinary() + _ = yym2575 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2523 := !z.EncBinary() - yy2arr2523 := z.EncBasicHandle().StructToArray - var yyq2523 [9]bool - _, _, _ = yysep2523, yyq2523, yy2arr2523 - const yyr2523 bool = false - yyq2523[0] = x.Type != "" - yyq2523[3] = x.ClusterIP != "" - yyq2523[5] = len(x.ExternalIPs) != 0 - yyq2523[6] = x.LoadBalancerIP != "" - yyq2523[7] = x.SessionAffinity != "" - yyq2523[8] = len(x.LoadBalancerSourceRanges) != 0 - var yynn2523 int - if yyr2523 || yy2arr2523 { + yysep2576 := !z.EncBinary() + yy2arr2576 := z.EncBasicHandle().StructToArray + var yyq2576 [9]bool + _, _, _ = yysep2576, yyq2576, yy2arr2576 + const yyr2576 bool = false + yyq2576[0] = x.Type != "" + yyq2576[3] = x.ClusterIP != "" + yyq2576[5] = len(x.ExternalIPs) != 0 + yyq2576[6] = x.LoadBalancerIP != "" + yyq2576[7] = x.SessionAffinity != "" + yyq2576[8] = len(x.LoadBalancerSourceRanges) != 0 + var yynn2576 int + if yyr2576 || yy2arr2576 { r.EncodeArrayStart(9) } else { - yynn2523 = 3 - for _, b := range yyq2523 { + yynn2576 = 3 + for _, b := range yyq2576 { if b { - yynn2523++ + yynn2576++ } } - r.EncodeMapStart(yynn2523) - yynn2523 = 0 + r.EncodeMapStart(yynn2576) + yynn2576 = 0 } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2523[0] { + if yyq2576[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2523[0] { + if yyq2576[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2526 := z.EncBinary() - _ = yym2526 + yym2579 := z.EncBinary() + _ = yym2579 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -33080,21 +33787,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2527 := z.EncBinary() - _ = yym2527 + yym2580 := z.EncBinary() + _ = yym2580 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym2529 := z.EncBinary() - _ = yym2529 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -33107,19 +33814,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym2530 := z.EncBinary() - _ = yym2530 + yym2583 := z.EncBinary() + _ = yym2583 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2523[3] { - yym2532 := z.EncBinary() - _ = yym2532 + if yyq2576[3] { + yym2585 := z.EncBinary() + _ = yym2585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -33128,22 +33835,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2523[3] { + if yyq2576[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2533 := z.EncBinary() - _ = yym2533 + yym2586 := z.EncBinary() + _ = yym2586 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2535 := z.EncBinary() - _ = yym2535 + yym2588 := z.EncBinary() + _ = yym2588 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) @@ -33152,21 +33859,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ExternalName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2536 := z.EncBinary() - _ = yym2536 + yym2589 := z.EncBinary() + _ = yym2589 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2523[5] { + if yyq2576[5] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2538 := z.EncBinary() - _ = yym2538 + yym2591 := z.EncBinary() + _ = yym2591 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -33176,15 +33883,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2523[5] { + if yyq2576[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2539 := z.EncBinary() - _ = yym2539 + yym2592 := z.EncBinary() + _ = yym2592 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -33192,11 +33899,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2523[6] { - yym2541 := z.EncBinary() - _ = yym2541 + if yyq2576[6] { + yym2594 := z.EncBinary() + _ = yym2594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -33205,41 +33912,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2523[6] { + if yyq2576[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2542 := z.EncBinary() - _ = yym2542 + yym2595 := z.EncBinary() + _ = yym2595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2523[7] { + if yyq2576[7] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2523[7] { + if yyq2576[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2523[8] { + if yyq2576[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2545 := z.EncBinary() - _ = yym2545 + yym2598 := z.EncBinary() + _ = yym2598 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -33249,15 +33956,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2523[8] { + if yyq2576[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2546 := z.EncBinary() - _ = yym2546 + yym2599 := z.EncBinary() + _ = yym2599 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -33265,7 +33972,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2523 || yy2arr2523 { + if yyr2576 || yy2arr2576 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33278,25 +33985,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2547 := z.DecBinary() - _ = yym2547 + yym2600 := z.DecBinary() + _ = yym2600 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2548 := r.ContainerType() - if yyct2548 == codecSelferValueTypeMap1234 { - yyl2548 := r.ReadMapStart() - if yyl2548 == 0 { + yyct2601 := r.ContainerType() + if yyct2601 == codecSelferValueTypeMap1234 { + yyl2601 := r.ReadMapStart() + if yyl2601 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2548, d) + x.codecDecodeSelfFromMap(yyl2601, d) } - } else if yyct2548 == codecSelferValueTypeArray1234 { - yyl2548 := r.ReadArrayStart() - if yyl2548 == 0 { + } else if yyct2601 == codecSelferValueTypeArray1234 { + yyl2601 := r.ReadArrayStart() + if yyl2601 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2548, d) + x.codecDecodeSelfFromArray(yyl2601, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33308,12 +34015,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2549Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2549Slc - var yyhl2549 bool = l >= 0 - for yyj2549 := 0; ; yyj2549++ { - if yyhl2549 { - if yyj2549 >= l { + var yys2602Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2602Slc + var yyhl2602 bool = l >= 0 + for yyj2602 := 0; ; yyj2602++ { + if yyhl2602 { + if yyj2602 >= l { break } } else { @@ -33322,10 +34029,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2549Slc = r.DecodeBytes(yys2549Slc, true, true) - yys2549 := string(yys2549Slc) + yys2602Slc = r.DecodeBytes(yys2602Slc, true, true) + yys2602 := string(yys2602Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2549 { + switch yys2602 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -33336,24 +34043,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2551 := &x.Ports - yym2552 := z.DecBinary() - _ = yym2552 + yyv2604 := &x.Ports + yym2605 := z.DecBinary() + _ = yym2605 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2551), d) + h.decSliceServicePort((*[]ServicePort)(yyv2604), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2553 := &x.Selector - yym2554 := z.DecBinary() - _ = yym2554 + yyv2606 := &x.Selector + yym2607 := z.DecBinary() + _ = yym2607 if false { } else { - z.F.DecMapStringStringX(yyv2553, false, d) + z.F.DecMapStringStringX(yyv2606, false, d) } } case "clusterIP": @@ -33372,12 +34079,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2557 := &x.ExternalIPs - yym2558 := z.DecBinary() - _ = yym2558 + yyv2610 := &x.ExternalIPs + yym2611 := z.DecBinary() + _ = yym2611 if false { } else { - z.F.DecSliceStringX(yyv2557, false, d) + z.F.DecSliceStringX(yyv2610, false, d) } } case "loadBalancerIP": @@ -33396,18 +34103,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2561 := &x.LoadBalancerSourceRanges - yym2562 := z.DecBinary() - _ = yym2562 + yyv2614 := &x.LoadBalancerSourceRanges + yym2615 := z.DecBinary() + _ = yym2615 if false { } else { - z.F.DecSliceStringX(yyv2561, false, d) + z.F.DecSliceStringX(yyv2614, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2549) - } // end switch yys2549 - } // end for yyj2549 + z.DecStructFieldNotFound(-1, yys2602) + } // end switch yys2602 + } // end for yyj2602 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33415,16 +34122,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2563 int - var yyb2563 bool - var yyhl2563 bool = l >= 0 - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + var yyj2616 int + var yyb2616 bool + var yyhl2616 bool = l >= 0 + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33434,13 +34141,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33448,21 +34155,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2565 := &x.Ports - yym2566 := z.DecBinary() - _ = yym2566 + yyv2618 := &x.Ports + yym2619 := z.DecBinary() + _ = yym2619 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2565), d) + h.decSliceServicePort((*[]ServicePort)(yyv2618), d) } } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33470,21 +34177,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2567 := &x.Selector - yym2568 := z.DecBinary() - _ = yym2568 + yyv2620 := &x.Selector + yym2621 := z.DecBinary() + _ = yym2621 if false { } else { - z.F.DecMapStringStringX(yyv2567, false, d) + z.F.DecMapStringStringX(yyv2620, false, d) } } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33494,13 +34201,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33510,13 +34217,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalName = string(r.DecodeString()) } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33524,21 +34231,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2571 := &x.ExternalIPs - yym2572 := z.DecBinary() - _ = yym2572 + yyv2624 := &x.ExternalIPs + yym2625 := z.DecBinary() + _ = yym2625 if false { } else { - z.F.DecSliceStringX(yyv2571, false, d) + z.F.DecSliceStringX(yyv2624, false, d) } } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33548,13 +34255,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33564,13 +34271,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33578,26 +34285,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2575 := &x.LoadBalancerSourceRanges - yym2576 := z.DecBinary() - _ = yym2576 + yyv2628 := &x.LoadBalancerSourceRanges + yym2629 := z.DecBinary() + _ = yym2629 if false { } else { - z.F.DecSliceStringX(yyv2575, false, d) + z.F.DecSliceStringX(yyv2628, false, d) } } for { - yyj2563++ - if yyhl2563 { - yyb2563 = yyj2563 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2563 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2563 { + if yyb2616 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2563-1, "") + z.DecStructFieldNotFound(yyj2616-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33609,33 +34316,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2577 := z.EncBinary() - _ = yym2577 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2578 := !z.EncBinary() - yy2arr2578 := z.EncBasicHandle().StructToArray - var yyq2578 [5]bool - _, _, _ = yysep2578, yyq2578, yy2arr2578 - const yyr2578 bool = false - var yynn2578 int - if yyr2578 || yy2arr2578 { + yysep2631 := !z.EncBinary() + yy2arr2631 := z.EncBasicHandle().StructToArray + var yyq2631 [5]bool + _, _, _ = yysep2631, yyq2631, yy2arr2631 + const yyr2631 bool = false + var yynn2631 int + if yyr2631 || yy2arr2631 { r.EncodeArrayStart(5) } else { - yynn2578 = 5 - for _, b := range yyq2578 { + yynn2631 = 5 + for _, b := range yyq2631 { if b { - yynn2578++ + yynn2631++ } } - r.EncodeMapStart(yynn2578) - yynn2578 = 0 + r.EncodeMapStart(yynn2631) + yynn2631 = 0 } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2580 := z.EncBinary() - _ = yym2580 + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -33644,14 +34351,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2581 := z.EncBinary() - _ = yym2581 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -33660,10 +34367,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2584 := z.EncBinary() - _ = yym2584 + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { r.EncodeInt(int64(x.Port)) @@ -33672,44 +34379,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2585 := z.EncBinary() - _ = yym2585 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2587 := &x.TargetPort - yym2588 := z.EncBinary() - _ = yym2588 + yy2640 := &x.TargetPort + yym2641 := z.EncBinary() + _ = yym2641 if false { - } else if z.HasExtensions() && z.EncExt(yy2587) { - } else if !yym2588 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2587) + } else if z.HasExtensions() && z.EncExt(yy2640) { + } else if !yym2641 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2640) } else { - z.EncFallback(yy2587) + z.EncFallback(yy2640) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2589 := &x.TargetPort - yym2590 := z.EncBinary() - _ = yym2590 + yy2642 := &x.TargetPort + yym2643 := z.EncBinary() + _ = yym2643 if false { - } else if z.HasExtensions() && z.EncExt(yy2589) { - } else if !yym2590 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2589) + } else if z.HasExtensions() && z.EncExt(yy2642) { + } else if !yym2643 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2642) } else { - z.EncFallback(yy2589) + z.EncFallback(yy2642) } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2592 := z.EncBinary() - _ = yym2592 + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -33718,14 +34425,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2593 := z.EncBinary() - _ = yym2593 + yym2646 := z.EncBinary() + _ = yym2646 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33738,25 +34445,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2594 := z.DecBinary() - _ = yym2594 + yym2647 := z.DecBinary() + _ = yym2647 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2595 := r.ContainerType() - if yyct2595 == codecSelferValueTypeMap1234 { - yyl2595 := r.ReadMapStart() - if yyl2595 == 0 { + yyct2648 := r.ContainerType() + if yyct2648 == codecSelferValueTypeMap1234 { + yyl2648 := r.ReadMapStart() + if yyl2648 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2595, d) + x.codecDecodeSelfFromMap(yyl2648, d) } - } else if yyct2595 == codecSelferValueTypeArray1234 { - yyl2595 := r.ReadArrayStart() - if yyl2595 == 0 { + } else if yyct2648 == codecSelferValueTypeArray1234 { + yyl2648 := r.ReadArrayStart() + if yyl2648 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2595, d) + x.codecDecodeSelfFromArray(yyl2648, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33768,12 +34475,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2596Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2596Slc - var yyhl2596 bool = l >= 0 - for yyj2596 := 0; ; yyj2596++ { - if yyhl2596 { - if yyj2596 >= l { + var yys2649Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2649Slc + var yyhl2649 bool = l >= 0 + for yyj2649 := 0; ; yyj2649++ { + if yyhl2649 { + if yyj2649 >= l { break } } else { @@ -33782,10 +34489,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2596Slc = r.DecodeBytes(yys2596Slc, true, true) - yys2596 := string(yys2596Slc) + yys2649Slc = r.DecodeBytes(yys2649Slc, true, true) + yys2649 := string(yys2649Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2596 { + switch yys2649 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -33808,15 +34515,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2600 := &x.TargetPort - yym2601 := z.DecBinary() - _ = yym2601 + yyv2653 := &x.TargetPort + yym2654 := z.DecBinary() + _ = yym2654 if false { - } else if z.HasExtensions() && z.DecExt(yyv2600) { - } else if !yym2601 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2600) + } else if z.HasExtensions() && z.DecExt(yyv2653) { + } else if !yym2654 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2653) } else { - z.DecFallback(yyv2600, false) + z.DecFallback(yyv2653, false) } } case "nodePort": @@ -33826,9 +34533,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2596) - } // end switch yys2596 - } // end for yyj2596 + z.DecStructFieldNotFound(-1, yys2649) + } // end switch yys2649 + } // end for yyj2649 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33836,16 +34543,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2603 int - var yyb2603 bool - var yyhl2603 bool = l >= 0 - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + var yyj2656 int + var yyb2656 bool + var yyhl2656 bool = l >= 0 + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2603 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2603 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33855,13 +34562,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2603 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2603 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33871,13 +34578,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2603 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2603 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33887,13 +34594,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2603 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2603 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33901,24 +34608,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2607 := &x.TargetPort - yym2608 := z.DecBinary() - _ = yym2608 + yyv2660 := &x.TargetPort + yym2661 := z.DecBinary() + _ = yym2661 if false { - } else if z.HasExtensions() && z.DecExt(yyv2607) { - } else if !yym2608 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2607) + } else if z.HasExtensions() && z.DecExt(yyv2660) { + } else if !yym2661 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2660) } else { - z.DecFallback(yyv2607, false) + z.DecFallback(yyv2660, false) } } - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2603 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2603 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33929,17 +34636,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2603 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2603 { + if yyb2656 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2603-1, "") + z.DecStructFieldNotFound(yyj2656-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33951,39 +34658,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2610 := z.EncBinary() - _ = yym2610 + yym2663 := z.EncBinary() + _ = yym2663 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2611 := !z.EncBinary() - yy2arr2611 := z.EncBasicHandle().StructToArray - var yyq2611 [5]bool - _, _, _ = yysep2611, yyq2611, yy2arr2611 - const yyr2611 bool = false - yyq2611[0] = x.Kind != "" - yyq2611[1] = x.APIVersion != "" - yyq2611[2] = true - yyq2611[3] = true - yyq2611[4] = true - var yynn2611 int - if yyr2611 || yy2arr2611 { + yysep2664 := !z.EncBinary() + yy2arr2664 := z.EncBasicHandle().StructToArray + var yyq2664 [5]bool + _, _, _ = yysep2664, yyq2664, yy2arr2664 + const yyr2664 bool = false + yyq2664[0] = x.Kind != "" + yyq2664[1] = x.APIVersion != "" + yyq2664[2] = true + yyq2664[3] = true + yyq2664[4] = true + var yynn2664 int + if yyr2664 || yy2arr2664 { r.EncodeArrayStart(5) } else { - yynn2611 = 0 - for _, b := range yyq2611 { + yynn2664 = 0 + for _, b := range yyq2664 { if b { - yynn2611++ + yynn2664++ } } - r.EncodeMapStart(yynn2611) - yynn2611 = 0 + r.EncodeMapStart(yynn2664) + yynn2664 = 0 } - if yyr2611 || yy2arr2611 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[0] { - yym2613 := z.EncBinary() - _ = yym2613 + if yyq2664[0] { + yym2666 := z.EncBinary() + _ = yym2666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33992,23 +34699,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2611[0] { + if yyq2664[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2614 := z.EncBinary() - _ = yym2614 + yym2667 := z.EncBinary() + _ = yym2667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2611 || yy2arr2611 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[1] { - yym2616 := z.EncBinary() - _ = yym2616 + if yyq2664[1] { + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34017,70 +34724,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2611[1] { + if yyq2664[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2617 := z.EncBinary() - _ = yym2617 + yym2670 := z.EncBinary() + _ = yym2670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2611 || yy2arr2611 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[2] { - yy2619 := &x.ObjectMeta - yy2619.CodecEncodeSelf(e) + if yyq2664[2] { + yy2672 := &x.ObjectMeta + yy2672.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2611[2] { + if yyq2664[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2620 := &x.ObjectMeta - yy2620.CodecEncodeSelf(e) + yy2673 := &x.ObjectMeta + yy2673.CodecEncodeSelf(e) } } - if yyr2611 || yy2arr2611 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[3] { - yy2622 := &x.Spec - yy2622.CodecEncodeSelf(e) + if yyq2664[3] { + yy2675 := &x.Spec + yy2675.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2611[3] { + if yyq2664[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2623 := &x.Spec - yy2623.CodecEncodeSelf(e) + yy2676 := &x.Spec + yy2676.CodecEncodeSelf(e) } } - if yyr2611 || yy2arr2611 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[4] { - yy2625 := &x.Status - yy2625.CodecEncodeSelf(e) + if yyq2664[4] { + yy2678 := &x.Status + yy2678.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2611[4] { + if yyq2664[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2626 := &x.Status - yy2626.CodecEncodeSelf(e) + yy2679 := &x.Status + yy2679.CodecEncodeSelf(e) } } - if yyr2611 || yy2arr2611 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34093,25 +34800,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2627 := z.DecBinary() - _ = yym2627 + yym2680 := z.DecBinary() + _ = yym2680 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2628 := r.ContainerType() - if yyct2628 == codecSelferValueTypeMap1234 { - yyl2628 := r.ReadMapStart() - if yyl2628 == 0 { + yyct2681 := r.ContainerType() + if yyct2681 == codecSelferValueTypeMap1234 { + yyl2681 := r.ReadMapStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2628, d) + x.codecDecodeSelfFromMap(yyl2681, d) } - } else if yyct2628 == codecSelferValueTypeArray1234 { - yyl2628 := r.ReadArrayStart() - if yyl2628 == 0 { + } else if yyct2681 == codecSelferValueTypeArray1234 { + yyl2681 := r.ReadArrayStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2628, d) + x.codecDecodeSelfFromArray(yyl2681, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34123,12 +34830,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2629Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2629Slc - var yyhl2629 bool = l >= 0 - for yyj2629 := 0; ; yyj2629++ { - if yyhl2629 { - if yyj2629 >= l { + var yys2682Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2682Slc + var yyhl2682 bool = l >= 0 + for yyj2682 := 0; ; yyj2682++ { + if yyhl2682 { + if yyj2682 >= l { break } } else { @@ -34137,10 +34844,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2629Slc = r.DecodeBytes(yys2629Slc, true, true) - yys2629 := string(yys2629Slc) + yys2682Slc = r.DecodeBytes(yys2682Slc, true, true) + yys2682 := string(yys2682Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2629 { + switch yys2682 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34157,27 +34864,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2632 := &x.ObjectMeta - yyv2632.CodecDecodeSelf(d) + yyv2685 := &x.ObjectMeta + yyv2685.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2633 := &x.Spec - yyv2633.CodecDecodeSelf(d) + yyv2686 := &x.Spec + yyv2686.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2634 := &x.Status - yyv2634.CodecDecodeSelf(d) + yyv2687 := &x.Status + yyv2687.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2629) - } // end switch yys2629 - } // end for yyj2629 + z.DecStructFieldNotFound(-1, yys2682) + } // end switch yys2682 + } // end for yyj2682 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34185,16 +34892,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2635 int - var yyb2635 bool - var yyhl2635 bool = l >= 0 - yyj2635++ - if yyhl2635 { - yyb2635 = yyj2635 > l + var yyj2688 int + var yyb2688 bool + var yyhl2688 bool = l >= 0 + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2635 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2635 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34204,13 +34911,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2635++ - if yyhl2635 { - yyb2635 = yyj2635 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2635 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2635 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34220,13 +34927,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2635++ - if yyhl2635 { - yyb2635 = yyj2635 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2635 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2635 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34234,16 +34941,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2638 := &x.ObjectMeta - yyv2638.CodecDecodeSelf(d) + yyv2691 := &x.ObjectMeta + yyv2691.CodecDecodeSelf(d) } - yyj2635++ - if yyhl2635 { - yyb2635 = yyj2635 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2635 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2635 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34251,16 +34958,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2639 := &x.Spec - yyv2639.CodecDecodeSelf(d) + yyv2692 := &x.Spec + yyv2692.CodecDecodeSelf(d) } - yyj2635++ - if yyhl2635 { - yyb2635 = yyj2635 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2635 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2635 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34268,21 +34975,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2640 := &x.Status - yyv2640.CodecDecodeSelf(d) + yyv2693 := &x.Status + yyv2693.CodecDecodeSelf(d) } for { - yyj2635++ - if yyhl2635 { - yyb2635 = yyj2635 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2635 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2635 { + if yyb2688 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2635-1, "") + z.DecStructFieldNotFound(yyj2688-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34294,38 +35001,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2641 := z.EncBinary() - _ = yym2641 + yym2694 := z.EncBinary() + _ = yym2694 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2642 := !z.EncBinary() - yy2arr2642 := z.EncBasicHandle().StructToArray - var yyq2642 [5]bool - _, _, _ = yysep2642, yyq2642, yy2arr2642 - const yyr2642 bool = false - yyq2642[0] = x.Kind != "" - yyq2642[1] = x.APIVersion != "" - yyq2642[2] = true - yyq2642[4] = len(x.ImagePullSecrets) != 0 - var yynn2642 int - if yyr2642 || yy2arr2642 { + yysep2695 := !z.EncBinary() + yy2arr2695 := z.EncBasicHandle().StructToArray + var yyq2695 [5]bool + _, _, _ = yysep2695, yyq2695, yy2arr2695 + const yyr2695 bool = false + yyq2695[0] = x.Kind != "" + yyq2695[1] = x.APIVersion != "" + yyq2695[2] = true + yyq2695[4] = len(x.ImagePullSecrets) != 0 + var yynn2695 int + if yyr2695 || yy2arr2695 { r.EncodeArrayStart(5) } else { - yynn2642 = 1 - for _, b := range yyq2642 { + yynn2695 = 1 + for _, b := range yyq2695 { if b { - yynn2642++ + yynn2695++ } } - r.EncodeMapStart(yynn2642) - yynn2642 = 0 + r.EncodeMapStart(yynn2695) + yynn2695 = 0 } - if yyr2642 || yy2arr2642 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2642[0] { - yym2644 := z.EncBinary() - _ = yym2644 + if yyq2695[0] { + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34334,23 +35041,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2642[0] { + if yyq2695[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2645 := z.EncBinary() - _ = yym2645 + yym2698 := z.EncBinary() + _ = yym2698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2642 || yy2arr2642 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2642[1] { - yym2647 := z.EncBinary() - _ = yym2647 + if yyq2695[1] { + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34359,42 +35066,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2642[1] { + if yyq2695[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2648 := z.EncBinary() - _ = yym2648 + yym2701 := z.EncBinary() + _ = yym2701 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2642 || yy2arr2642 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2642[2] { - yy2650 := &x.ObjectMeta - yy2650.CodecEncodeSelf(e) + if yyq2695[2] { + yy2703 := &x.ObjectMeta + yy2703.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2642[2] { + if yyq2695[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2651 := &x.ObjectMeta - yy2651.CodecEncodeSelf(e) + yy2704 := &x.ObjectMeta + yy2704.CodecEncodeSelf(e) } } - if yyr2642 || yy2arr2642 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2653 := z.EncBinary() - _ = yym2653 + yym2706 := z.EncBinary() + _ = yym2706 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -34407,22 +35114,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2654 := z.EncBinary() - _ = yym2654 + yym2707 := z.EncBinary() + _ = yym2707 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2642 || yy2arr2642 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2642[4] { + if yyq2695[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2656 := z.EncBinary() - _ = yym2656 + yym2709 := z.EncBinary() + _ = yym2709 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34432,15 +35139,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2642[4] { + if yyq2695[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2657 := z.EncBinary() - _ = yym2657 + yym2710 := z.EncBinary() + _ = yym2710 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34448,7 +35155,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2642 || yy2arr2642 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34461,25 +35168,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2658 := z.DecBinary() - _ = yym2658 + yym2711 := z.DecBinary() + _ = yym2711 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2659 := r.ContainerType() - if yyct2659 == codecSelferValueTypeMap1234 { - yyl2659 := r.ReadMapStart() - if yyl2659 == 0 { + yyct2712 := r.ContainerType() + if yyct2712 == codecSelferValueTypeMap1234 { + yyl2712 := r.ReadMapStart() + if yyl2712 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2659, d) + x.codecDecodeSelfFromMap(yyl2712, d) } - } else if yyct2659 == codecSelferValueTypeArray1234 { - yyl2659 := r.ReadArrayStart() - if yyl2659 == 0 { + } else if yyct2712 == codecSelferValueTypeArray1234 { + yyl2712 := r.ReadArrayStart() + if yyl2712 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2659, d) + x.codecDecodeSelfFromArray(yyl2712, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34491,12 +35198,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2660Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2660Slc - var yyhl2660 bool = l >= 0 - for yyj2660 := 0; ; yyj2660++ { - if yyhl2660 { - if yyj2660 >= l { + var yys2713Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2713Slc + var yyhl2713 bool = l >= 0 + for yyj2713 := 0; ; yyj2713++ { + if yyhl2713 { + if yyj2713 >= l { break } } else { @@ -34505,10 +35212,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2660Slc = r.DecodeBytes(yys2660Slc, true, true) - yys2660 := string(yys2660Slc) + yys2713Slc = r.DecodeBytes(yys2713Slc, true, true) + yys2713 := string(yys2713Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2660 { + switch yys2713 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34525,37 +35232,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2663 := &x.ObjectMeta - yyv2663.CodecDecodeSelf(d) + yyv2716 := &x.ObjectMeta + yyv2716.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2664 := &x.Secrets - yym2665 := z.DecBinary() - _ = yym2665 + yyv2717 := &x.Secrets + yym2718 := z.DecBinary() + _ = yym2718 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2664), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2717), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2666 := &x.ImagePullSecrets - yym2667 := z.DecBinary() - _ = yym2667 + yyv2719 := &x.ImagePullSecrets + yym2720 := z.DecBinary() + _ = yym2720 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2666), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2719), d) } } default: - z.DecStructFieldNotFound(-1, yys2660) - } // end switch yys2660 - } // end for yyj2660 + z.DecStructFieldNotFound(-1, yys2713) + } // end switch yys2713 + } // end for yyj2713 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34563,16 +35270,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2668 int - var yyb2668 bool - var yyhl2668 bool = l >= 0 - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + var yyj2721 int + var yyb2721 bool + var yyhl2721 bool = l >= 0 + yyj2721++ + if yyhl2721 { + yyb2721 = yyj2721 > l } else { - yyb2668 = r.CheckBreak() + yyb2721 = r.CheckBreak() } - if yyb2668 { + if yyb2721 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34582,13 +35289,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2721++ + if yyhl2721 { + yyb2721 = yyj2721 > l } else { - yyb2668 = r.CheckBreak() + yyb2721 = r.CheckBreak() } - if yyb2668 { + if yyb2721 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34598,13 +35305,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2721++ + if yyhl2721 { + yyb2721 = yyj2721 > l } else { - yyb2668 = r.CheckBreak() + yyb2721 = r.CheckBreak() } - if yyb2668 { + if yyb2721 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34612,16 +35319,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2671 := &x.ObjectMeta - yyv2671.CodecDecodeSelf(d) + yyv2724 := &x.ObjectMeta + yyv2724.CodecDecodeSelf(d) } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2721++ + if yyhl2721 { + yyb2721 = yyj2721 > l } else { - yyb2668 = r.CheckBreak() + yyb2721 = r.CheckBreak() } - if yyb2668 { + if yyb2721 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34629,21 +35336,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2672 := &x.Secrets - yym2673 := z.DecBinary() - _ = yym2673 + yyv2725 := &x.Secrets + yym2726 := z.DecBinary() + _ = yym2726 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2672), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2725), d) } } - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2721++ + if yyhl2721 { + yyb2721 = yyj2721 > l } else { - yyb2668 = r.CheckBreak() + yyb2721 = r.CheckBreak() } - if yyb2668 { + if yyb2721 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34651,26 +35358,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2674 := &x.ImagePullSecrets - yym2675 := z.DecBinary() - _ = yym2675 + yyv2727 := &x.ImagePullSecrets + yym2728 := z.DecBinary() + _ = yym2728 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2674), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2727), d) } } for { - yyj2668++ - if yyhl2668 { - yyb2668 = yyj2668 > l + yyj2721++ + if yyhl2721 { + yyb2721 = yyj2721 > l } else { - yyb2668 = r.CheckBreak() + yyb2721 = r.CheckBreak() } - if yyb2668 { + if yyb2721 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2668-1, "") + z.DecStructFieldNotFound(yyj2721-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34682,37 +35389,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2676 := z.EncBinary() - _ = yym2676 + yym2729 := z.EncBinary() + _ = yym2729 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2677 := !z.EncBinary() - yy2arr2677 := z.EncBasicHandle().StructToArray - var yyq2677 [4]bool - _, _, _ = yysep2677, yyq2677, yy2arr2677 - const yyr2677 bool = false - yyq2677[0] = x.Kind != "" - yyq2677[1] = x.APIVersion != "" - yyq2677[2] = true - var yynn2677 int - if yyr2677 || yy2arr2677 { + yysep2730 := !z.EncBinary() + yy2arr2730 := z.EncBasicHandle().StructToArray + var yyq2730 [4]bool + _, _, _ = yysep2730, yyq2730, yy2arr2730 + const yyr2730 bool = false + yyq2730[0] = x.Kind != "" + yyq2730[1] = x.APIVersion != "" + yyq2730[2] = true + var yynn2730 int + if yyr2730 || yy2arr2730 { r.EncodeArrayStart(4) } else { - yynn2677 = 1 - for _, b := range yyq2677 { + yynn2730 = 1 + for _, b := range yyq2730 { if b { - yynn2677++ + yynn2730++ } } - r.EncodeMapStart(yynn2677) - yynn2677 = 0 + r.EncodeMapStart(yynn2730) + yynn2730 = 0 } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2677[0] { - yym2679 := z.EncBinary() - _ = yym2679 + if yyq2730[0] { + yym2732 := z.EncBinary() + _ = yym2732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34721,23 +35428,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2677[0] { + if yyq2730[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2680 := z.EncBinary() - _ = yym2680 + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2677[1] { - yym2682 := z.EncBinary() - _ = yym2682 + if yyq2730[1] { + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34746,54 +35453,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2677[1] { + if yyq2730[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2683 := z.EncBinary() - _ = yym2683 + yym2736 := z.EncBinary() + _ = yym2736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2677[2] { - yy2685 := &x.ListMeta - yym2686 := z.EncBinary() - _ = yym2686 + if yyq2730[2] { + yy2738 := &x.ListMeta + yym2739 := z.EncBinary() + _ = yym2739 if false { - } else if z.HasExtensions() && z.EncExt(yy2685) { + } else if z.HasExtensions() && z.EncExt(yy2738) { } else { - z.EncFallback(yy2685) + z.EncFallback(yy2738) } } else { r.EncodeNil() } } else { - if yyq2677[2] { + if yyq2730[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2687 := &x.ListMeta - yym2688 := z.EncBinary() - _ = yym2688 + yy2740 := &x.ListMeta + yym2741 := z.EncBinary() + _ = yym2741 if false { - } else if z.HasExtensions() && z.EncExt(yy2687) { + } else if z.HasExtensions() && z.EncExt(yy2740) { } else { - z.EncFallback(yy2687) + z.EncFallback(yy2740) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2690 := z.EncBinary() - _ = yym2690 + yym2743 := z.EncBinary() + _ = yym2743 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -34806,15 +35513,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2691 := z.EncBinary() - _ = yym2691 + yym2744 := z.EncBinary() + _ = yym2744 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34827,25 +35534,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2692 := z.DecBinary() - _ = yym2692 + yym2745 := z.DecBinary() + _ = yym2745 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2693 := r.ContainerType() - if yyct2693 == codecSelferValueTypeMap1234 { - yyl2693 := r.ReadMapStart() - if yyl2693 == 0 { + yyct2746 := r.ContainerType() + if yyct2746 == codecSelferValueTypeMap1234 { + yyl2746 := r.ReadMapStart() + if yyl2746 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2693, d) + x.codecDecodeSelfFromMap(yyl2746, d) } - } else if yyct2693 == codecSelferValueTypeArray1234 { - yyl2693 := r.ReadArrayStart() - if yyl2693 == 0 { + } else if yyct2746 == codecSelferValueTypeArray1234 { + yyl2746 := r.ReadArrayStart() + if yyl2746 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2693, d) + x.codecDecodeSelfFromArray(yyl2746, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34857,12 +35564,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2694Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2694Slc - var yyhl2694 bool = l >= 0 - for yyj2694 := 0; ; yyj2694++ { - if yyhl2694 { - if yyj2694 >= l { + var yys2747Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2747Slc + var yyhl2747 bool = l >= 0 + for yyj2747 := 0; ; yyj2747++ { + if yyhl2747 { + if yyj2747 >= l { break } } else { @@ -34871,10 +35578,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2694Slc = r.DecodeBytes(yys2694Slc, true, true) - yys2694 := string(yys2694Slc) + yys2747Slc = r.DecodeBytes(yys2747Slc, true, true) + yys2747 := string(yys2747Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2694 { + switch yys2747 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34891,31 +35598,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2697 := &x.ListMeta - yym2698 := z.DecBinary() - _ = yym2698 + yyv2750 := &x.ListMeta + yym2751 := z.DecBinary() + _ = yym2751 if false { - } else if z.HasExtensions() && z.DecExt(yyv2697) { + } else if z.HasExtensions() && z.DecExt(yyv2750) { } else { - z.DecFallback(yyv2697, false) + z.DecFallback(yyv2750, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2699 := &x.Items - yym2700 := z.DecBinary() - _ = yym2700 + yyv2752 := &x.Items + yym2753 := z.DecBinary() + _ = yym2753 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2699), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2752), d) } } default: - z.DecStructFieldNotFound(-1, yys2694) - } // end switch yys2694 - } // end for yyj2694 + z.DecStructFieldNotFound(-1, yys2747) + } // end switch yys2747 + } // end for yyj2747 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34923,16 +35630,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2701 int - var yyb2701 bool - var yyhl2701 bool = l >= 0 - yyj2701++ - if yyhl2701 { - yyb2701 = yyj2701 > l + var yyj2754 int + var yyb2754 bool + var yyhl2754 bool = l >= 0 + yyj2754++ + if yyhl2754 { + yyb2754 = yyj2754 > l } else { - yyb2701 = r.CheckBreak() + yyb2754 = r.CheckBreak() } - if yyb2701 { + if yyb2754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34942,13 +35649,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2701++ - if yyhl2701 { - yyb2701 = yyj2701 > l + yyj2754++ + if yyhl2754 { + yyb2754 = yyj2754 > l } else { - yyb2701 = r.CheckBreak() + yyb2754 = r.CheckBreak() } - if yyb2701 { + if yyb2754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34958,13 +35665,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2701++ - if yyhl2701 { - yyb2701 = yyj2701 > l + yyj2754++ + if yyhl2754 { + yyb2754 = yyj2754 > l } else { - yyb2701 = r.CheckBreak() + yyb2754 = r.CheckBreak() } - if yyb2701 { + if yyb2754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34972,22 +35679,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2704 := &x.ListMeta - yym2705 := z.DecBinary() - _ = yym2705 + yyv2757 := &x.ListMeta + yym2758 := z.DecBinary() + _ = yym2758 if false { - } else if z.HasExtensions() && z.DecExt(yyv2704) { + } else if z.HasExtensions() && z.DecExt(yyv2757) { } else { - z.DecFallback(yyv2704, false) + z.DecFallback(yyv2757, false) } } - yyj2701++ - if yyhl2701 { - yyb2701 = yyj2701 > l + yyj2754++ + if yyhl2754 { + yyb2754 = yyj2754 > l } else { - yyb2701 = r.CheckBreak() + yyb2754 = r.CheckBreak() } - if yyb2701 { + if yyb2754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34995,26 +35702,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2706 := &x.Items - yym2707 := z.DecBinary() - _ = yym2707 + yyv2759 := &x.Items + yym2760 := z.DecBinary() + _ = yym2760 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2706), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2759), d) } } for { - yyj2701++ - if yyhl2701 { - yyb2701 = yyj2701 > l + yyj2754++ + if yyhl2754 { + yyb2754 = yyj2754 > l } else { - yyb2701 = r.CheckBreak() + yyb2754 = r.CheckBreak() } - if yyb2701 { + if yyb2754 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2701-1, "") + z.DecStructFieldNotFound(yyj2754-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35026,37 +35733,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2708 := z.EncBinary() - _ = yym2708 + yym2761 := z.EncBinary() + _ = yym2761 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2709 := !z.EncBinary() - yy2arr2709 := z.EncBasicHandle().StructToArray - var yyq2709 [4]bool - _, _, _ = yysep2709, yyq2709, yy2arr2709 - const yyr2709 bool = false - yyq2709[0] = x.Kind != "" - yyq2709[1] = x.APIVersion != "" - yyq2709[2] = true - var yynn2709 int - if yyr2709 || yy2arr2709 { + yysep2762 := !z.EncBinary() + yy2arr2762 := z.EncBasicHandle().StructToArray + var yyq2762 [4]bool + _, _, _ = yysep2762, yyq2762, yy2arr2762 + const yyr2762 bool = false + yyq2762[0] = x.Kind != "" + yyq2762[1] = x.APIVersion != "" + yyq2762[2] = true + var yynn2762 int + if yyr2762 || yy2arr2762 { r.EncodeArrayStart(4) } else { - yynn2709 = 1 - for _, b := range yyq2709 { + yynn2762 = 1 + for _, b := range yyq2762 { if b { - yynn2709++ + yynn2762++ } } - r.EncodeMapStart(yynn2709) - yynn2709 = 0 + r.EncodeMapStart(yynn2762) + yynn2762 = 0 } - if yyr2709 || yy2arr2709 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[0] { - yym2711 := z.EncBinary() - _ = yym2711 + if yyq2762[0] { + yym2764 := z.EncBinary() + _ = yym2764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35065,23 +35772,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2709[0] { + if yyq2762[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2712 := z.EncBinary() - _ = yym2712 + yym2765 := z.EncBinary() + _ = yym2765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2709 || yy2arr2709 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[1] { - yym2714 := z.EncBinary() - _ = yym2714 + if yyq2762[1] { + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35090,42 +35797,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2709[1] { + if yyq2762[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2715 := z.EncBinary() - _ = yym2715 + yym2768 := z.EncBinary() + _ = yym2768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2709 || yy2arr2709 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2709[2] { - yy2717 := &x.ObjectMeta - yy2717.CodecEncodeSelf(e) + if yyq2762[2] { + yy2770 := &x.ObjectMeta + yy2770.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2709[2] { + if yyq2762[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2718 := &x.ObjectMeta - yy2718.CodecEncodeSelf(e) + yy2771 := &x.ObjectMeta + yy2771.CodecEncodeSelf(e) } } - if yyr2709 || yy2arr2709 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2720 := z.EncBinary() - _ = yym2720 + yym2773 := z.EncBinary() + _ = yym2773 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -35138,15 +35845,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2721 := z.EncBinary() - _ = yym2721 + yym2774 := z.EncBinary() + _ = yym2774 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2709 || yy2arr2709 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35159,25 +35866,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2722 := z.DecBinary() - _ = yym2722 + yym2775 := z.DecBinary() + _ = yym2775 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2723 := r.ContainerType() - if yyct2723 == codecSelferValueTypeMap1234 { - yyl2723 := r.ReadMapStart() - if yyl2723 == 0 { + yyct2776 := r.ContainerType() + if yyct2776 == codecSelferValueTypeMap1234 { + yyl2776 := r.ReadMapStart() + if yyl2776 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2723, d) + x.codecDecodeSelfFromMap(yyl2776, d) } - } else if yyct2723 == codecSelferValueTypeArray1234 { - yyl2723 := r.ReadArrayStart() - if yyl2723 == 0 { + } else if yyct2776 == codecSelferValueTypeArray1234 { + yyl2776 := r.ReadArrayStart() + if yyl2776 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2723, d) + x.codecDecodeSelfFromArray(yyl2776, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35189,12 +35896,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2724Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2724Slc - var yyhl2724 bool = l >= 0 - for yyj2724 := 0; ; yyj2724++ { - if yyhl2724 { - if yyj2724 >= l { + var yys2777Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2777Slc + var yyhl2777 bool = l >= 0 + for yyj2777 := 0; ; yyj2777++ { + if yyhl2777 { + if yyj2777 >= l { break } } else { @@ -35203,10 +35910,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2724Slc = r.DecodeBytes(yys2724Slc, true, true) - yys2724 := string(yys2724Slc) + yys2777Slc = r.DecodeBytes(yys2777Slc, true, true) + yys2777 := string(yys2777Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2724 { + switch yys2777 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35223,25 +35930,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2727 := &x.ObjectMeta - yyv2727.CodecDecodeSelf(d) + yyv2780 := &x.ObjectMeta + yyv2780.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2728 := &x.Subsets - yym2729 := z.DecBinary() - _ = yym2729 + yyv2781 := &x.Subsets + yym2782 := z.DecBinary() + _ = yym2782 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2728), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2781), d) } } default: - z.DecStructFieldNotFound(-1, yys2724) - } // end switch yys2724 - } // end for yyj2724 + z.DecStructFieldNotFound(-1, yys2777) + } // end switch yys2777 + } // end for yyj2777 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35249,16 +35956,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2730 int - var yyb2730 bool - var yyhl2730 bool = l >= 0 - yyj2730++ - if yyhl2730 { - yyb2730 = yyj2730 > l + var yyj2783 int + var yyb2783 bool + var yyhl2783 bool = l >= 0 + yyj2783++ + if yyhl2783 { + yyb2783 = yyj2783 > l } else { - yyb2730 = r.CheckBreak() + yyb2783 = r.CheckBreak() } - if yyb2730 { + if yyb2783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35268,13 +35975,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2730++ - if yyhl2730 { - yyb2730 = yyj2730 > l + yyj2783++ + if yyhl2783 { + yyb2783 = yyj2783 > l } else { - yyb2730 = r.CheckBreak() + yyb2783 = r.CheckBreak() } - if yyb2730 { + if yyb2783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35284,13 +35991,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2730++ - if yyhl2730 { - yyb2730 = yyj2730 > l + yyj2783++ + if yyhl2783 { + yyb2783 = yyj2783 > l } else { - yyb2730 = r.CheckBreak() + yyb2783 = r.CheckBreak() } - if yyb2730 { + if yyb2783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35298,16 +36005,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2733 := &x.ObjectMeta - yyv2733.CodecDecodeSelf(d) + yyv2786 := &x.ObjectMeta + yyv2786.CodecDecodeSelf(d) } - yyj2730++ - if yyhl2730 { - yyb2730 = yyj2730 > l + yyj2783++ + if yyhl2783 { + yyb2783 = yyj2783 > l } else { - yyb2730 = r.CheckBreak() + yyb2783 = r.CheckBreak() } - if yyb2730 { + if yyb2783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35315,26 +36022,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2734 := &x.Subsets - yym2735 := z.DecBinary() - _ = yym2735 + yyv2787 := &x.Subsets + yym2788 := z.DecBinary() + _ = yym2788 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2734), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2787), d) } } for { - yyj2730++ - if yyhl2730 { - yyb2730 = yyj2730 > l + yyj2783++ + if yyhl2783 { + yyb2783 = yyj2783 > l } else { - yyb2730 = r.CheckBreak() + yyb2783 = r.CheckBreak() } - if yyb2730 { + if yyb2783 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2730-1, "") + z.DecStructFieldNotFound(yyj2783-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35346,36 +36053,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2736 := z.EncBinary() - _ = yym2736 + yym2789 := z.EncBinary() + _ = yym2789 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2737 := !z.EncBinary() - yy2arr2737 := z.EncBasicHandle().StructToArray - var yyq2737 [3]bool - _, _, _ = yysep2737, yyq2737, yy2arr2737 - const yyr2737 bool = false - var yynn2737 int - if yyr2737 || yy2arr2737 { + yysep2790 := !z.EncBinary() + yy2arr2790 := z.EncBasicHandle().StructToArray + var yyq2790 [3]bool + _, _, _ = yysep2790, yyq2790, yy2arr2790 + const yyr2790 bool = false + var yynn2790 int + if yyr2790 || yy2arr2790 { r.EncodeArrayStart(3) } else { - yynn2737 = 3 - for _, b := range yyq2737 { + yynn2790 = 3 + for _, b := range yyq2790 { if b { - yynn2737++ + yynn2790++ } } - r.EncodeMapStart(yynn2737) - yynn2737 = 0 + r.EncodeMapStart(yynn2790) + yynn2790 = 0 } - if yyr2737 || yy2arr2737 { + if yyr2790 || yy2arr2790 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2739 := z.EncBinary() - _ = yym2739 + yym2792 := z.EncBinary() + _ = yym2792 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -35388,21 +36095,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2740 := z.EncBinary() - _ = yym2740 + yym2793 := z.EncBinary() + _ = yym2793 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2737 || yy2arr2737 { + if yyr2790 || yy2arr2790 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2742 := z.EncBinary() - _ = yym2742 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -35415,21 +36122,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2743 := z.EncBinary() - _ = yym2743 + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2737 || yy2arr2737 { + if yyr2790 || yy2arr2790 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2745 := z.EncBinary() - _ = yym2745 + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -35442,15 +36149,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2746 := z.EncBinary() - _ = yym2746 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2737 || yy2arr2737 { + if yyr2790 || yy2arr2790 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35460,613 +36167,6 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2747 := z.DecBinary() - _ = yym2747 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2748 := r.ContainerType() - if yyct2748 == codecSelferValueTypeMap1234 { - yyl2748 := r.ReadMapStart() - if yyl2748 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2748, d) - } - } else if yyct2748 == codecSelferValueTypeArray1234 { - yyl2748 := r.ReadArrayStart() - if yyl2748 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2748, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2749Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2749Slc - var yyhl2749 bool = l >= 0 - for yyj2749 := 0; ; yyj2749++ { - if yyhl2749 { - if yyj2749 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2749Slc = r.DecodeBytes(yys2749Slc, true, true) - yys2749 := string(yys2749Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2749 { - case "Addresses": - if r.TryDecodeAsNil() { - x.Addresses = nil - } else { - yyv2750 := &x.Addresses - yym2751 := z.DecBinary() - _ = yym2751 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2750), d) - } - } - case "NotReadyAddresses": - if r.TryDecodeAsNil() { - x.NotReadyAddresses = nil - } else { - yyv2752 := &x.NotReadyAddresses - yym2753 := z.DecBinary() - _ = yym2753 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2752), d) - } - } - case "Ports": - if r.TryDecodeAsNil() { - x.Ports = nil - } else { - yyv2754 := &x.Ports - yym2755 := z.DecBinary() - _ = yym2755 - if false { - } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2754), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2749) - } // end switch yys2749 - } // end for yyj2749 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2756 int - var yyb2756 bool - var yyhl2756 bool = l >= 0 - yyj2756++ - if yyhl2756 { - yyb2756 = yyj2756 > l - } else { - yyb2756 = r.CheckBreak() - } - if yyb2756 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Addresses = nil - } else { - yyv2757 := &x.Addresses - yym2758 := z.DecBinary() - _ = yym2758 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2757), d) - } - } - yyj2756++ - if yyhl2756 { - yyb2756 = yyj2756 > l - } else { - yyb2756 = r.CheckBreak() - } - if yyb2756 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NotReadyAddresses = nil - } else { - yyv2759 := &x.NotReadyAddresses - yym2760 := z.DecBinary() - _ = yym2760 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2759), d) - } - } - yyj2756++ - if yyhl2756 { - yyb2756 = yyj2756 > l - } else { - yyb2756 = r.CheckBreak() - } - if yyb2756 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Ports = nil - } else { - yyv2761 := &x.Ports - yym2762 := z.DecBinary() - _ = yym2762 - if false { - } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2761), d) - } - } - for { - yyj2756++ - if yyhl2756 { - yyb2756 = yyj2756 > l - } else { - yyb2756 = r.CheckBreak() - } - if yyb2756 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2756-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2763 := z.EncBinary() - _ = yym2763 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2764 := !z.EncBinary() - yy2arr2764 := z.EncBasicHandle().StructToArray - var yyq2764 [4]bool - _, _, _ = yysep2764, yyq2764, yy2arr2764 - const yyr2764 bool = false - yyq2764[1] = x.Hostname != "" - yyq2764[2] = x.NodeName != nil - var yynn2764 int - if yyr2764 || yy2arr2764 { - r.EncodeArrayStart(4) - } else { - yynn2764 = 2 - for _, b := range yyq2764 { - if b { - yynn2764++ - } - } - r.EncodeMapStart(yynn2764) - yynn2764 = 0 - } - if yyr2764 || yy2arr2764 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2766 := z.EncBinary() - _ = yym2766 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.IP)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("IP")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2767 := z.EncBinary() - _ = yym2767 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.IP)) - } - } - if yyr2764 || yy2arr2764 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2764[1] { - yym2769 := z.EncBinary() - _ = yym2769 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2764[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostname")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2770 := z.EncBinary() - _ = yym2770 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) - } - } - } - if yyr2764 || yy2arr2764 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2764[2] { - if x.NodeName == nil { - r.EncodeNil() - } else { - yy2772 := *x.NodeName - yym2773 := z.EncBinary() - _ = yym2773 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2772)) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2764[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeName")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NodeName == nil { - r.EncodeNil() - } else { - yy2774 := *x.NodeName - yym2775 := z.EncBinary() - _ = yym2775 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2774)) - } - } - } - } - if yyr2764 || yy2arr2764 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.TargetRef == nil { - r.EncodeNil() - } else { - x.TargetRef.CodecEncodeSelf(e) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("TargetRef")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.TargetRef == nil { - r.EncodeNil() - } else { - x.TargetRef.CodecEncodeSelf(e) - } - } - if yyr2764 || yy2arr2764 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2777 := z.DecBinary() - _ = yym2777 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2778 := r.ContainerType() - if yyct2778 == codecSelferValueTypeMap1234 { - yyl2778 := r.ReadMapStart() - if yyl2778 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2778, d) - } - } else if yyct2778 == codecSelferValueTypeArray1234 { - yyl2778 := r.ReadArrayStart() - if yyl2778 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2778, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2779Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2779Slc - var yyhl2779 bool = l >= 0 - for yyj2779 := 0; ; yyj2779++ { - if yyhl2779 { - if yyj2779 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2779Slc = r.DecodeBytes(yys2779Slc, true, true) - yys2779 := string(yys2779Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2779 { - case "IP": - if r.TryDecodeAsNil() { - x.IP = "" - } else { - x.IP = string(r.DecodeString()) - } - case "hostname": - if r.TryDecodeAsNil() { - x.Hostname = "" - } else { - x.Hostname = string(r.DecodeString()) - } - case "nodeName": - if r.TryDecodeAsNil() { - if x.NodeName != nil { - x.NodeName = nil - } - } else { - if x.NodeName == nil { - x.NodeName = new(string) - } - yym2783 := z.DecBinary() - _ = yym2783 - if false { - } else { - *((*string)(x.NodeName)) = r.DecodeString() - } - } - case "TargetRef": - if r.TryDecodeAsNil() { - if x.TargetRef != nil { - x.TargetRef = nil - } - } else { - if x.TargetRef == nil { - x.TargetRef = new(ObjectReference) - } - x.TargetRef.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2779) - } // end switch yys2779 - } // end for yyj2779 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2785 int - var yyb2785 bool - var yyhl2785 bool = l >= 0 - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l - } else { - yyb2785 = r.CheckBreak() - } - if yyb2785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.IP = "" - } else { - x.IP = string(r.DecodeString()) - } - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l - } else { - yyb2785 = r.CheckBreak() - } - if yyb2785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Hostname = "" - } else { - x.Hostname = string(r.DecodeString()) - } - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l - } else { - yyb2785 = r.CheckBreak() - } - if yyb2785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.NodeName != nil { - x.NodeName = nil - } - } else { - if x.NodeName == nil { - x.NodeName = new(string) - } - yym2789 := z.DecBinary() - _ = yym2789 - if false { - } else { - *((*string)(x.NodeName)) = r.DecodeString() - } - } - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l - } else { - yyb2785 = r.CheckBreak() - } - if yyb2785 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.TargetRef != nil { - x.TargetRef = nil - } - } else { - if x.TargetRef == nil { - x.TargetRef = new(ObjectReference) - } - x.TargetRef.CodecDecodeSelf(d) - } - for { - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l - } else { - yyb2785 = r.CheckBreak() - } - if yyb2785 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2785-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2791 := z.EncBinary() - _ = yym2791 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2792 := !z.EncBinary() - yy2arr2792 := z.EncBasicHandle().StructToArray - var yyq2792 [3]bool - _, _, _ = yysep2792, yyq2792, yy2arr2792 - const yyr2792 bool = false - var yynn2792 int - if yyr2792 || yy2arr2792 { - r.EncodeArrayStart(3) - } else { - yynn2792 = 3 - for _, b := range yyq2792 { - if b { - yynn2792++ - } - } - r.EncodeMapStart(yynn2792) - yynn2792 = 0 - } - if yyr2792 || yy2arr2792 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2794 := z.EncBinary() - _ = yym2794 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("Name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2795 := z.EncBinary() - _ = yym2795 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - if yyr2792 || yy2arr2792 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2797 := z.EncBinary() - _ = yym2797 - if false { - } else { - r.EncodeInt(int64(x.Port)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("Port")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2798 := z.EncBinary() - _ = yym2798 - if false { - } else { - r.EncodeInt(int64(x.Port)) - } - } - if yyr2792 || yy2arr2792 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - x.Protocol.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("Protocol")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Protocol.CodecEncodeSelf(e) - } - if yyr2792 || yy2arr2792 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -36096,7 +36196,7 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -36118,6 +36218,613 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys2802 := string(yys2802Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys2802 { + case "Addresses": + if r.TryDecodeAsNil() { + x.Addresses = nil + } else { + yyv2803 := &x.Addresses + yym2804 := z.DecBinary() + _ = yym2804 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2803), d) + } + } + case "NotReadyAddresses": + if r.TryDecodeAsNil() { + x.NotReadyAddresses = nil + } else { + yyv2805 := &x.NotReadyAddresses + yym2806 := z.DecBinary() + _ = yym2806 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2805), d) + } + } + case "Ports": + if r.TryDecodeAsNil() { + x.Ports = nil + } else { + yyv2807 := &x.Ports + yym2808 := z.DecBinary() + _ = yym2808 + if false { + } else { + h.decSliceEndpointPort((*[]EndpointPort)(yyv2807), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2802) + } // end switch yys2802 + } // end for yyj2802 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2809 int + var yyb2809 bool + var yyhl2809 bool = l >= 0 + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l + } else { + yyb2809 = r.CheckBreak() + } + if yyb2809 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Addresses = nil + } else { + yyv2810 := &x.Addresses + yym2811 := z.DecBinary() + _ = yym2811 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2810), d) + } + } + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l + } else { + yyb2809 = r.CheckBreak() + } + if yyb2809 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NotReadyAddresses = nil + } else { + yyv2812 := &x.NotReadyAddresses + yym2813 := z.DecBinary() + _ = yym2813 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2812), d) + } + } + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l + } else { + yyb2809 = r.CheckBreak() + } + if yyb2809 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Ports = nil + } else { + yyv2814 := &x.Ports + yym2815 := z.DecBinary() + _ = yym2815 + if false { + } else { + h.decSliceEndpointPort((*[]EndpointPort)(yyv2814), d) + } + } + for { + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l + } else { + yyb2809 = r.CheckBreak() + } + if yyb2809 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2809-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2816 := z.EncBinary() + _ = yym2816 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2817 := !z.EncBinary() + yy2arr2817 := z.EncBasicHandle().StructToArray + var yyq2817 [4]bool + _, _, _ = yysep2817, yyq2817, yy2arr2817 + const yyr2817 bool = false + yyq2817[1] = x.Hostname != "" + yyq2817[2] = x.NodeName != nil + var yynn2817 int + if yyr2817 || yy2arr2817 { + r.EncodeArrayStart(4) + } else { + yynn2817 = 2 + for _, b := range yyq2817 { + if b { + yynn2817++ + } + } + r.EncodeMapStart(yynn2817) + yynn2817 = 0 + } + if yyr2817 || yy2arr2817 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2819 := z.EncBinary() + _ = yym2819 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.IP)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("IP")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2820 := z.EncBinary() + _ = yym2820 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.IP)) + } + } + if yyr2817 || yy2arr2817 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2817[1] { + yym2822 := z.EncBinary() + _ = yym2822 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2817[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostname")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2823 := z.EncBinary() + _ = yym2823 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } + } + if yyr2817 || yy2arr2817 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2817[2] { + if x.NodeName == nil { + r.EncodeNil() + } else { + yy2825 := *x.NodeName + yym2826 := z.EncBinary() + _ = yym2826 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy2825)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2817[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NodeName == nil { + r.EncodeNil() + } else { + yy2827 := *x.NodeName + yym2828 := z.EncBinary() + _ = yym2828 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy2827)) + } + } + } + } + if yyr2817 || yy2arr2817 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.TargetRef == nil { + r.EncodeNil() + } else { + x.TargetRef.CodecEncodeSelf(e) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("TargetRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.TargetRef == nil { + r.EncodeNil() + } else { + x.TargetRef.CodecEncodeSelf(e) + } + } + if yyr2817 || yy2arr2817 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2830 := z.DecBinary() + _ = yym2830 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2831 := r.ContainerType() + if yyct2831 == codecSelferValueTypeMap1234 { + yyl2831 := r.ReadMapStart() + if yyl2831 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2831, d) + } + } else if yyct2831 == codecSelferValueTypeArray1234 { + yyl2831 := r.ReadArrayStart() + if yyl2831 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2831, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2832Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2832Slc + var yyhl2832 bool = l >= 0 + for yyj2832 := 0; ; yyj2832++ { + if yyhl2832 { + if yyj2832 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2832Slc = r.DecodeBytes(yys2832Slc, true, true) + yys2832 := string(yys2832Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2832 { + case "IP": + if r.TryDecodeAsNil() { + x.IP = "" + } else { + x.IP = string(r.DecodeString()) + } + case "hostname": + if r.TryDecodeAsNil() { + x.Hostname = "" + } else { + x.Hostname = string(r.DecodeString()) + } + case "nodeName": + if r.TryDecodeAsNil() { + if x.NodeName != nil { + x.NodeName = nil + } + } else { + if x.NodeName == nil { + x.NodeName = new(string) + } + yym2836 := z.DecBinary() + _ = yym2836 + if false { + } else { + *((*string)(x.NodeName)) = r.DecodeString() + } + } + case "TargetRef": + if r.TryDecodeAsNil() { + if x.TargetRef != nil { + x.TargetRef = nil + } + } else { + if x.TargetRef == nil { + x.TargetRef = new(ObjectReference) + } + x.TargetRef.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2832) + } // end switch yys2832 + } // end for yyj2832 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2838 int + var yyb2838 bool + var yyhl2838 bool = l >= 0 + yyj2838++ + if yyhl2838 { + yyb2838 = yyj2838 > l + } else { + yyb2838 = r.CheckBreak() + } + if yyb2838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.IP = "" + } else { + x.IP = string(r.DecodeString()) + } + yyj2838++ + if yyhl2838 { + yyb2838 = yyj2838 > l + } else { + yyb2838 = r.CheckBreak() + } + if yyb2838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Hostname = "" + } else { + x.Hostname = string(r.DecodeString()) + } + yyj2838++ + if yyhl2838 { + yyb2838 = yyj2838 > l + } else { + yyb2838 = r.CheckBreak() + } + if yyb2838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.NodeName != nil { + x.NodeName = nil + } + } else { + if x.NodeName == nil { + x.NodeName = new(string) + } + yym2842 := z.DecBinary() + _ = yym2842 + if false { + } else { + *((*string)(x.NodeName)) = r.DecodeString() + } + } + yyj2838++ + if yyhl2838 { + yyb2838 = yyj2838 > l + } else { + yyb2838 = r.CheckBreak() + } + if yyb2838 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.TargetRef != nil { + x.TargetRef = nil + } + } else { + if x.TargetRef == nil { + x.TargetRef = new(ObjectReference) + } + x.TargetRef.CodecDecodeSelf(d) + } + for { + yyj2838++ + if yyhl2838 { + yyb2838 = yyj2838 > l + } else { + yyb2838 = r.CheckBreak() + } + if yyb2838 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2838-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2844 := z.EncBinary() + _ = yym2844 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2845 := !z.EncBinary() + yy2arr2845 := z.EncBasicHandle().StructToArray + var yyq2845 [3]bool + _, _, _ = yysep2845, yyq2845, yy2arr2845 + const yyr2845 bool = false + var yynn2845 int + if yyr2845 || yy2arr2845 { + r.EncodeArrayStart(3) + } else { + yynn2845 = 3 + for _, b := range yyq2845 { + if b { + yynn2845++ + } + } + r.EncodeMapStart(yynn2845) + yynn2845 = 0 + } + if yyr2845 || yy2arr2845 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2847 := z.EncBinary() + _ = yym2847 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("Name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2848 := z.EncBinary() + _ = yym2848 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + if yyr2845 || yy2arr2845 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2850 := z.EncBinary() + _ = yym2850 + if false { + } else { + r.EncodeInt(int64(x.Port)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("Port")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2851 := z.EncBinary() + _ = yym2851 + if false { + } else { + r.EncodeInt(int64(x.Port)) + } + } + if yyr2845 || yy2arr2845 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Protocol.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("Protocol")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Protocol.CodecEncodeSelf(e) + } + if yyr2845 || yy2arr2845 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2853 := z.DecBinary() + _ = yym2853 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2854 := r.ContainerType() + if yyct2854 == codecSelferValueTypeMap1234 { + yyl2854 := r.ReadMapStart() + if yyl2854 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2854, d) + } + } else if yyct2854 == codecSelferValueTypeArray1234 { + yyl2854 := r.ReadArrayStart() + if yyl2854 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2854, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2855Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2855Slc + var yyhl2855 bool = l >= 0 + for yyj2855 := 0; ; yyj2855++ { + if yyhl2855 { + if yyj2855 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2855Slc = r.DecodeBytes(yys2855Slc, true, true) + yys2855 := string(yys2855Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2855 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -36137,9 +36844,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2802) - } // end switch yys2802 - } // end for yyj2802 + z.DecStructFieldNotFound(-1, yys2855) + } // end switch yys2855 + } // end for yyj2855 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36147,16 +36854,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2806 int - var yyb2806 bool - var yyhl2806 bool = l >= 0 - yyj2806++ - if yyhl2806 { - yyb2806 = yyj2806 > l + var yyj2859 int + var yyb2859 bool + var yyhl2859 bool = l >= 0 + yyj2859++ + if yyhl2859 { + yyb2859 = yyj2859 > l } else { - yyb2806 = r.CheckBreak() + yyb2859 = r.CheckBreak() } - if yyb2806 { + if yyb2859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36166,13 +36873,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2806++ - if yyhl2806 { - yyb2806 = yyj2806 > l + yyj2859++ + if yyhl2859 { + yyb2859 = yyj2859 > l } else { - yyb2806 = r.CheckBreak() + yyb2859 = r.CheckBreak() } - if yyb2806 { + if yyb2859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36182,13 +36889,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2806++ - if yyhl2806 { - yyb2806 = yyj2806 > l + yyj2859++ + if yyhl2859 { + yyb2859 = yyj2859 > l } else { - yyb2806 = r.CheckBreak() + yyb2859 = r.CheckBreak() } - if yyb2806 { + if yyb2859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36199,17 +36906,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2806++ - if yyhl2806 { - yyb2806 = yyj2806 > l + yyj2859++ + if yyhl2859 { + yyb2859 = yyj2859 > l } else { - yyb2806 = r.CheckBreak() + yyb2859 = r.CheckBreak() } - if yyb2806 { + if yyb2859 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2806-1, "") + z.DecStructFieldNotFound(yyj2859-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36221,37 +36928,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2810 := z.EncBinary() - _ = yym2810 + yym2863 := z.EncBinary() + _ = yym2863 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2811 := !z.EncBinary() - yy2arr2811 := z.EncBasicHandle().StructToArray - var yyq2811 [4]bool - _, _, _ = yysep2811, yyq2811, yy2arr2811 - const yyr2811 bool = false - yyq2811[0] = x.Kind != "" - yyq2811[1] = x.APIVersion != "" - yyq2811[2] = true - var yynn2811 int - if yyr2811 || yy2arr2811 { + yysep2864 := !z.EncBinary() + yy2arr2864 := z.EncBasicHandle().StructToArray + var yyq2864 [4]bool + _, _, _ = yysep2864, yyq2864, yy2arr2864 + const yyr2864 bool = false + yyq2864[0] = x.Kind != "" + yyq2864[1] = x.APIVersion != "" + yyq2864[2] = true + var yynn2864 int + if yyr2864 || yy2arr2864 { r.EncodeArrayStart(4) } else { - yynn2811 = 1 - for _, b := range yyq2811 { + yynn2864 = 1 + for _, b := range yyq2864 { if b { - yynn2811++ + yynn2864++ } } - r.EncodeMapStart(yynn2811) - yynn2811 = 0 + r.EncodeMapStart(yynn2864) + yynn2864 = 0 } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[0] { - yym2813 := z.EncBinary() - _ = yym2813 + if yyq2864[0] { + yym2866 := z.EncBinary() + _ = yym2866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36260,23 +36967,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2811[0] { + if yyq2864[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2814 := z.EncBinary() - _ = yym2814 + yym2867 := z.EncBinary() + _ = yym2867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[1] { - yym2816 := z.EncBinary() - _ = yym2816 + if yyq2864[1] { + yym2869 := z.EncBinary() + _ = yym2869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36285,54 +36992,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2811[1] { + if yyq2864[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2817 := z.EncBinary() - _ = yym2817 + yym2870 := z.EncBinary() + _ = yym2870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[2] { - yy2819 := &x.ListMeta - yym2820 := z.EncBinary() - _ = yym2820 + if yyq2864[2] { + yy2872 := &x.ListMeta + yym2873 := z.EncBinary() + _ = yym2873 if false { - } else if z.HasExtensions() && z.EncExt(yy2819) { + } else if z.HasExtensions() && z.EncExt(yy2872) { } else { - z.EncFallback(yy2819) + z.EncFallback(yy2872) } } else { r.EncodeNil() } } else { - if yyq2811[2] { + if yyq2864[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2821 := &x.ListMeta - yym2822 := z.EncBinary() - _ = yym2822 + yy2874 := &x.ListMeta + yym2875 := z.EncBinary() + _ = yym2875 if false { - } else if z.HasExtensions() && z.EncExt(yy2821) { + } else if z.HasExtensions() && z.EncExt(yy2874) { } else { - z.EncFallback(yy2821) + z.EncFallback(yy2874) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2824 := z.EncBinary() - _ = yym2824 + yym2877 := z.EncBinary() + _ = yym2877 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -36345,15 +37052,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2825 := z.EncBinary() - _ = yym2825 + yym2878 := z.EncBinary() + _ = yym2878 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36366,25 +37073,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2826 := z.DecBinary() - _ = yym2826 + yym2879 := z.DecBinary() + _ = yym2879 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2827 := r.ContainerType() - if yyct2827 == codecSelferValueTypeMap1234 { - yyl2827 := r.ReadMapStart() - if yyl2827 == 0 { + yyct2880 := r.ContainerType() + if yyct2880 == codecSelferValueTypeMap1234 { + yyl2880 := r.ReadMapStart() + if yyl2880 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2827, d) + x.codecDecodeSelfFromMap(yyl2880, d) } - } else if yyct2827 == codecSelferValueTypeArray1234 { - yyl2827 := r.ReadArrayStart() - if yyl2827 == 0 { + } else if yyct2880 == codecSelferValueTypeArray1234 { + yyl2880 := r.ReadArrayStart() + if yyl2880 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2827, d) + x.codecDecodeSelfFromArray(yyl2880, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36396,12 +37103,12 @@ func (x *EndpointsList) 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 yys2881Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2881Slc + var yyhl2881 bool = l >= 0 + for yyj2881 := 0; ; yyj2881++ { + if yyhl2881 { + if yyj2881 >= l { break } } else { @@ -36410,10 +37117,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2828Slc = r.DecodeBytes(yys2828Slc, true, true) - yys2828 := string(yys2828Slc) + yys2881Slc = r.DecodeBytes(yys2881Slc, true, true) + yys2881 := string(yys2881Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2828 { + switch yys2881 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36430,31 +37137,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2831 := &x.ListMeta - yym2832 := z.DecBinary() - _ = yym2832 + yyv2884 := &x.ListMeta + yym2885 := z.DecBinary() + _ = yym2885 if false { - } else if z.HasExtensions() && z.DecExt(yyv2831) { + } else if z.HasExtensions() && z.DecExt(yyv2884) { } else { - z.DecFallback(yyv2831, false) + z.DecFallback(yyv2884, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2833 := &x.Items - yym2834 := z.DecBinary() - _ = yym2834 + yyv2886 := &x.Items + yym2887 := z.DecBinary() + _ = yym2887 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2833), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2886), d) } } default: - z.DecStructFieldNotFound(-1, yys2828) - } // end switch yys2828 - } // end for yyj2828 + z.DecStructFieldNotFound(-1, yys2881) + } // end switch yys2881 + } // end for yyj2881 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36462,16 +37169,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2835 int - var yyb2835 bool - var yyhl2835 bool = l >= 0 - yyj2835++ - if yyhl2835 { - yyb2835 = yyj2835 > l + var yyj2888 int + var yyb2888 bool + var yyhl2888 bool = l >= 0 + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2835 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2835 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36481,13 +37188,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2835++ - if yyhl2835 { - yyb2835 = yyj2835 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2835 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2835 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36497,13 +37204,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2835++ - if yyhl2835 { - yyb2835 = yyj2835 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2835 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2835 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36511,22 +37218,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2838 := &x.ListMeta - yym2839 := z.DecBinary() - _ = yym2839 + yyv2891 := &x.ListMeta + yym2892 := z.DecBinary() + _ = yym2892 if false { - } else if z.HasExtensions() && z.DecExt(yyv2838) { + } else if z.HasExtensions() && z.DecExt(yyv2891) { } else { - z.DecFallback(yyv2838, false) + z.DecFallback(yyv2891, false) } } - yyj2835++ - if yyhl2835 { - yyb2835 = yyj2835 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2835 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2835 { + if yyb2888 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36534,26 +37241,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2840 := &x.Items - yym2841 := z.DecBinary() - _ = yym2841 + yyv2893 := &x.Items + yym2894 := z.DecBinary() + _ = yym2894 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2840), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2893), d) } } for { - yyj2835++ - if yyhl2835 { - yyb2835 = yyj2835 > l + yyj2888++ + if yyhl2888 { + yyb2888 = yyj2888 > l } else { - yyb2835 = r.CheckBreak() + yyb2888 = r.CheckBreak() } - if yyb2835 { + if yyb2888 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2835-1, "") + z.DecStructFieldNotFound(yyj2888-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36565,38 +37272,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2842 := z.EncBinary() - _ = yym2842 + yym2895 := z.EncBinary() + _ = yym2895 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2843 := !z.EncBinary() - yy2arr2843 := z.EncBasicHandle().StructToArray - var yyq2843 [4]bool - _, _, _ = yysep2843, yyq2843, yy2arr2843 - const yyr2843 bool = false - yyq2843[0] = x.PodCIDR != "" - yyq2843[1] = x.ExternalID != "" - yyq2843[2] = x.ProviderID != "" - yyq2843[3] = x.Unschedulable != false - var yynn2843 int - if yyr2843 || yy2arr2843 { + yysep2896 := !z.EncBinary() + yy2arr2896 := z.EncBasicHandle().StructToArray + var yyq2896 [4]bool + _, _, _ = yysep2896, yyq2896, yy2arr2896 + const yyr2896 bool = false + yyq2896[0] = x.PodCIDR != "" + yyq2896[1] = x.ExternalID != "" + yyq2896[2] = x.ProviderID != "" + yyq2896[3] = x.Unschedulable != false + var yynn2896 int + if yyr2896 || yy2arr2896 { r.EncodeArrayStart(4) } else { - yynn2843 = 0 - for _, b := range yyq2843 { + yynn2896 = 0 + for _, b := range yyq2896 { if b { - yynn2843++ + yynn2896++ } } - r.EncodeMapStart(yynn2843) - yynn2843 = 0 + r.EncodeMapStart(yynn2896) + yynn2896 = 0 } - if yyr2843 || yy2arr2843 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[0] { - yym2845 := z.EncBinary() - _ = yym2845 + if yyq2896[0] { + yym2898 := z.EncBinary() + _ = yym2898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -36605,23 +37312,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2843[0] { + if yyq2896[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2846 := z.EncBinary() - _ = yym2846 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2843 || yy2arr2843 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[1] { - yym2848 := z.EncBinary() - _ = yym2848 + if yyq2896[1] { + yym2901 := z.EncBinary() + _ = yym2901 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -36630,23 +37337,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2843[1] { + if yyq2896[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2849 := z.EncBinary() - _ = yym2849 + yym2902 := z.EncBinary() + _ = yym2902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2843 || yy2arr2843 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[2] { - yym2851 := z.EncBinary() - _ = yym2851 + if yyq2896[2] { + yym2904 := z.EncBinary() + _ = yym2904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -36655,23 +37362,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2843[2] { + if yyq2896[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2852 := z.EncBinary() - _ = yym2852 + yym2905 := z.EncBinary() + _ = yym2905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2843 || yy2arr2843 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[3] { - yym2854 := z.EncBinary() - _ = yym2854 + if yyq2896[3] { + yym2907 := z.EncBinary() + _ = yym2907 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -36680,19 +37387,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2843[3] { + if yyq2896[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2855 := z.EncBinary() - _ = yym2855 + yym2908 := z.EncBinary() + _ = yym2908 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2843 || yy2arr2843 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36705,25 +37412,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2856 := z.DecBinary() - _ = yym2856 + yym2909 := z.DecBinary() + _ = yym2909 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2857 := r.ContainerType() - if yyct2857 == codecSelferValueTypeMap1234 { - yyl2857 := r.ReadMapStart() - if yyl2857 == 0 { + yyct2910 := r.ContainerType() + if yyct2910 == codecSelferValueTypeMap1234 { + yyl2910 := r.ReadMapStart() + if yyl2910 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2857, d) + x.codecDecodeSelfFromMap(yyl2910, d) } - } else if yyct2857 == codecSelferValueTypeArray1234 { - yyl2857 := r.ReadArrayStart() - if yyl2857 == 0 { + } else if yyct2910 == codecSelferValueTypeArray1234 { + yyl2910 := r.ReadArrayStart() + if yyl2910 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2857, d) + x.codecDecodeSelfFromArray(yyl2910, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36735,12 +37442,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2858Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2858Slc - var yyhl2858 bool = l >= 0 - for yyj2858 := 0; ; yyj2858++ { - if yyhl2858 { - if yyj2858 >= l { + var yys2911Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2911Slc + var yyhl2911 bool = l >= 0 + for yyj2911 := 0; ; yyj2911++ { + if yyhl2911 { + if yyj2911 >= l { break } } else { @@ -36749,10 +37456,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2858Slc = r.DecodeBytes(yys2858Slc, true, true) - yys2858 := string(yys2858Slc) + yys2911Slc = r.DecodeBytes(yys2911Slc, true, true) + yys2911 := string(yys2911Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2858 { + switch yys2911 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -36778,9 +37485,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2858) - } // end switch yys2858 - } // end for yyj2858 + z.DecStructFieldNotFound(-1, yys2911) + } // end switch yys2911 + } // end for yyj2911 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36788,16 +37495,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2863 int - var yyb2863 bool - var yyhl2863 bool = l >= 0 - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + var yyj2916 int + var yyb2916 bool + var yyhl2916 bool = l >= 0 + yyj2916++ + if yyhl2916 { + yyb2916 = yyj2916 > l } else { - yyb2863 = r.CheckBreak() + yyb2916 = r.CheckBreak() } - if yyb2863 { + if yyb2916 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36807,13 +37514,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + yyj2916++ + if yyhl2916 { + yyb2916 = yyj2916 > l } else { - yyb2863 = r.CheckBreak() + yyb2916 = r.CheckBreak() } - if yyb2863 { + if yyb2916 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36823,13 +37530,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + yyj2916++ + if yyhl2916 { + yyb2916 = yyj2916 > l } else { - yyb2863 = r.CheckBreak() + yyb2916 = r.CheckBreak() } - if yyb2863 { + if yyb2916 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36839,13 +37546,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + yyj2916++ + if yyhl2916 { + yyb2916 = yyj2916 > l } else { - yyb2863 = r.CheckBreak() + yyb2916 = r.CheckBreak() } - if yyb2863 { + if yyb2916 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36856,17 +37563,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + yyj2916++ + if yyhl2916 { + yyb2916 = yyj2916 > l } else { - yyb2863 = r.CheckBreak() + yyb2916 = r.CheckBreak() } - if yyb2863 { + if yyb2916 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2863-1, "") + z.DecStructFieldNotFound(yyj2916-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36878,33 +37585,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2868 := z.EncBinary() - _ = yym2868 + yym2921 := z.EncBinary() + _ = yym2921 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2869 := !z.EncBinary() - yy2arr2869 := z.EncBasicHandle().StructToArray - var yyq2869 [1]bool - _, _, _ = yysep2869, yyq2869, yy2arr2869 - const yyr2869 bool = false - var yynn2869 int - if yyr2869 || yy2arr2869 { + yysep2922 := !z.EncBinary() + yy2arr2922 := z.EncBasicHandle().StructToArray + var yyq2922 [1]bool + _, _, _ = yysep2922, yyq2922, yy2arr2922 + const yyr2922 bool = false + var yynn2922 int + if yyr2922 || yy2arr2922 { r.EncodeArrayStart(1) } else { - yynn2869 = 1 - for _, b := range yyq2869 { + yynn2922 = 1 + for _, b := range yyq2922 { if b { - yynn2869++ + yynn2922++ } } - r.EncodeMapStart(yynn2869) - yynn2869 = 0 + r.EncodeMapStart(yynn2922) + yynn2922 = 0 } - if yyr2869 || yy2arr2869 { + if yyr2922 || yy2arr2922 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2871 := z.EncBinary() - _ = yym2871 + yym2924 := z.EncBinary() + _ = yym2924 if false { } else { r.EncodeInt(int64(x.Port)) @@ -36913,14 +37620,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2872 := z.EncBinary() - _ = yym2872 + yym2925 := z.EncBinary() + _ = yym2925 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2869 || yy2arr2869 { + if yyr2922 || yy2arr2922 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36933,25 +37640,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2873 := z.DecBinary() - _ = yym2873 + yym2926 := z.DecBinary() + _ = yym2926 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2874 := r.ContainerType() - if yyct2874 == codecSelferValueTypeMap1234 { - yyl2874 := r.ReadMapStart() - if yyl2874 == 0 { + yyct2927 := r.ContainerType() + if yyct2927 == codecSelferValueTypeMap1234 { + yyl2927 := r.ReadMapStart() + if yyl2927 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2874, d) + x.codecDecodeSelfFromMap(yyl2927, d) } - } else if yyct2874 == codecSelferValueTypeArray1234 { - yyl2874 := r.ReadArrayStart() - if yyl2874 == 0 { + } else if yyct2927 == codecSelferValueTypeArray1234 { + yyl2927 := r.ReadArrayStart() + if yyl2927 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2874, d) + x.codecDecodeSelfFromArray(yyl2927, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36963,12 +37670,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2875Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2875Slc - var yyhl2875 bool = l >= 0 - for yyj2875 := 0; ; yyj2875++ { - if yyhl2875 { - if yyj2875 >= l { + var yys2928Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2928Slc + var yyhl2928 bool = l >= 0 + for yyj2928 := 0; ; yyj2928++ { + if yyhl2928 { + if yyj2928 >= l { break } } else { @@ -36977,10 +37684,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2875Slc = r.DecodeBytes(yys2875Slc, true, true) - yys2875 := string(yys2875Slc) + yys2928Slc = r.DecodeBytes(yys2928Slc, true, true) + yys2928 := string(yys2928Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2875 { + switch yys2928 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -36988,9 +37695,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2875) - } // end switch yys2875 - } // end for yyj2875 + z.DecStructFieldNotFound(-1, yys2928) + } // end switch yys2928 + } // end for yyj2928 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36998,16 +37705,16 @@ func (x *DaemonEndpoint) 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 yyj2930 int + var yyb2930 bool + var yyhl2930 bool = l >= 0 + yyj2930++ + if yyhl2930 { + yyb2930 = yyj2930 > l } else { - yyb2877 = r.CheckBreak() + yyb2930 = r.CheckBreak() } - if yyb2877 { + if yyb2930 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37018,17 +37725,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2877++ - if yyhl2877 { - yyb2877 = yyj2877 > l + yyj2930++ + if yyhl2930 { + yyb2930 = yyj2930 > l } else { - yyb2877 = r.CheckBreak() + yyb2930 = r.CheckBreak() } - if yyb2877 { + if yyb2930 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2877-1, "") + z.DecStructFieldNotFound(yyj2930-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37040,48 +37747,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2879 := z.EncBinary() - _ = yym2879 + yym2932 := z.EncBinary() + _ = yym2932 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2880 := !z.EncBinary() - yy2arr2880 := z.EncBasicHandle().StructToArray - var yyq2880 [1]bool - _, _, _ = yysep2880, yyq2880, yy2arr2880 - const yyr2880 bool = false - yyq2880[0] = true - var yynn2880 int - if yyr2880 || yy2arr2880 { + yysep2933 := !z.EncBinary() + yy2arr2933 := z.EncBasicHandle().StructToArray + var yyq2933 [1]bool + _, _, _ = yysep2933, yyq2933, yy2arr2933 + const yyr2933 bool = false + yyq2933[0] = true + var yynn2933 int + if yyr2933 || yy2arr2933 { r.EncodeArrayStart(1) } else { - yynn2880 = 0 - for _, b := range yyq2880 { + yynn2933 = 0 + for _, b := range yyq2933 { if b { - yynn2880++ + yynn2933++ } } - r.EncodeMapStart(yynn2880) - yynn2880 = 0 + r.EncodeMapStart(yynn2933) + yynn2933 = 0 } - if yyr2880 || yy2arr2880 { + if yyr2933 || yy2arr2933 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[0] { - yy2882 := &x.KubeletEndpoint - yy2882.CodecEncodeSelf(e) + if yyq2933[0] { + yy2935 := &x.KubeletEndpoint + yy2935.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2880[0] { + if yyq2933[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2883 := &x.KubeletEndpoint - yy2883.CodecEncodeSelf(e) + yy2936 := &x.KubeletEndpoint + yy2936.CodecEncodeSelf(e) } } - if yyr2880 || yy2arr2880 { + if yyr2933 || yy2arr2933 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37094,25 +37801,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2884 := z.DecBinary() - _ = yym2884 + yym2937 := z.DecBinary() + _ = yym2937 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2885 := r.ContainerType() - if yyct2885 == codecSelferValueTypeMap1234 { - yyl2885 := r.ReadMapStart() - if yyl2885 == 0 { + yyct2938 := r.ContainerType() + if yyct2938 == codecSelferValueTypeMap1234 { + yyl2938 := r.ReadMapStart() + if yyl2938 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2885, d) + x.codecDecodeSelfFromMap(yyl2938, d) } - } else if yyct2885 == codecSelferValueTypeArray1234 { - yyl2885 := r.ReadArrayStart() - if yyl2885 == 0 { + } else if yyct2938 == codecSelferValueTypeArray1234 { + yyl2938 := r.ReadArrayStart() + if yyl2938 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2885, d) + x.codecDecodeSelfFromArray(yyl2938, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37124,12 +37831,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2886Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2886Slc - var yyhl2886 bool = l >= 0 - for yyj2886 := 0; ; yyj2886++ { - if yyhl2886 { - if yyj2886 >= l { + var yys2939Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2939Slc + var yyhl2939 bool = l >= 0 + for yyj2939 := 0; ; yyj2939++ { + if yyhl2939 { + if yyj2939 >= l { break } } else { @@ -37138,21 +37845,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2886Slc = r.DecodeBytes(yys2886Slc, true, true) - yys2886 := string(yys2886Slc) + yys2939Slc = r.DecodeBytes(yys2939Slc, true, true) + yys2939 := string(yys2939Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2886 { + switch yys2939 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2887 := &x.KubeletEndpoint - yyv2887.CodecDecodeSelf(d) + yyv2940 := &x.KubeletEndpoint + yyv2940.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2886) - } // end switch yys2886 - } // end for yyj2886 + z.DecStructFieldNotFound(-1, yys2939) + } // end switch yys2939 + } // end for yyj2939 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37160,16 +37867,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2888 int - var yyb2888 bool - var yyhl2888 bool = l >= 0 - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + var yyj2941 int + var yyb2941 bool + var yyhl2941 bool = l >= 0 + yyj2941++ + if yyhl2941 { + yyb2941 = yyj2941 > l } else { - yyb2888 = r.CheckBreak() + yyb2941 = r.CheckBreak() } - if yyb2888 { + if yyb2941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37177,21 +37884,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2889 := &x.KubeletEndpoint - yyv2889.CodecDecodeSelf(d) + yyv2942 := &x.KubeletEndpoint + yyv2942.CodecDecodeSelf(d) } for { - yyj2888++ - if yyhl2888 { - yyb2888 = yyj2888 > l + yyj2941++ + if yyhl2941 { + yyb2941 = yyj2941 > l } else { - yyb2888 = r.CheckBreak() + yyb2941 = r.CheckBreak() } - if yyb2888 { + if yyb2941 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2888-1, "") + z.DecStructFieldNotFound(yyj2941-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37203,33 +37910,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2890 := z.EncBinary() - _ = yym2890 + yym2943 := z.EncBinary() + _ = yym2943 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2891 := !z.EncBinary() - yy2arr2891 := z.EncBasicHandle().StructToArray - var yyq2891 [10]bool - _, _, _ = yysep2891, yyq2891, yy2arr2891 - const yyr2891 bool = false - var yynn2891 int - if yyr2891 || yy2arr2891 { + yysep2944 := !z.EncBinary() + yy2arr2944 := z.EncBasicHandle().StructToArray + var yyq2944 [10]bool + _, _, _ = yysep2944, yyq2944, yy2arr2944 + const yyr2944 bool = false + var yynn2944 int + if yyr2944 || yy2arr2944 { r.EncodeArrayStart(10) } else { - yynn2891 = 10 - for _, b := range yyq2891 { + yynn2944 = 10 + for _, b := range yyq2944 { if b { - yynn2891++ + yynn2944++ } } - r.EncodeMapStart(yynn2891) - yynn2891 = 0 + r.EncodeMapStart(yynn2944) + yynn2944 = 0 } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2893 := z.EncBinary() - _ = yym2893 + yym2946 := z.EncBinary() + _ = yym2946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -37238,17 +37945,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2894 := z.EncBinary() - _ = yym2894 + yym2947 := z.EncBinary() + _ = yym2947 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2896 := z.EncBinary() - _ = yym2896 + yym2949 := z.EncBinary() + _ = yym2949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -37257,17 +37964,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2897 := z.EncBinary() - _ = yym2897 + yym2950 := z.EncBinary() + _ = yym2950 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2899 := z.EncBinary() - _ = yym2899 + yym2952 := z.EncBinary() + _ = yym2952 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -37276,17 +37983,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2900 := z.EncBinary() - _ = yym2900 + yym2953 := z.EncBinary() + _ = yym2953 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2902 := z.EncBinary() - _ = yym2902 + yym2955 := z.EncBinary() + _ = yym2955 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -37295,17 +38002,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2903 := z.EncBinary() - _ = yym2903 + yym2956 := z.EncBinary() + _ = yym2956 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2905 := z.EncBinary() - _ = yym2905 + yym2958 := z.EncBinary() + _ = yym2958 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -37314,17 +38021,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2906 := z.EncBinary() - _ = yym2906 + yym2959 := z.EncBinary() + _ = yym2959 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2908 := z.EncBinary() - _ = yym2908 + yym2961 := z.EncBinary() + _ = yym2961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -37333,17 +38040,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2909 := z.EncBinary() - _ = yym2909 + yym2962 := z.EncBinary() + _ = yym2962 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2911 := z.EncBinary() - _ = yym2911 + yym2964 := z.EncBinary() + _ = yym2964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -37352,17 +38059,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2912 := z.EncBinary() - _ = yym2912 + yym2965 := z.EncBinary() + _ = yym2965 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2914 := z.EncBinary() - _ = yym2914 + yym2967 := z.EncBinary() + _ = yym2967 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -37371,17 +38078,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2915 := z.EncBinary() - _ = yym2915 + yym2968 := z.EncBinary() + _ = yym2968 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2917 := z.EncBinary() - _ = yym2917 + yym2970 := z.EncBinary() + _ = yym2970 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -37390,17 +38097,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2918 := z.EncBinary() - _ = yym2918 + yym2971 := z.EncBinary() + _ = yym2971 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2920 := z.EncBinary() - _ = yym2920 + yym2973 := z.EncBinary() + _ = yym2973 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -37409,14 +38116,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2921 := z.EncBinary() - _ = yym2921 + yym2974 := z.EncBinary() + _ = yym2974 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2891 || yy2arr2891 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37429,25 +38136,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2922 := z.DecBinary() - _ = yym2922 + yym2975 := z.DecBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2923 := r.ContainerType() - if yyct2923 == codecSelferValueTypeMap1234 { - yyl2923 := r.ReadMapStart() - if yyl2923 == 0 { + yyct2976 := r.ContainerType() + if yyct2976 == codecSelferValueTypeMap1234 { + yyl2976 := r.ReadMapStart() + if yyl2976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2923, d) + x.codecDecodeSelfFromMap(yyl2976, d) } - } else if yyct2923 == codecSelferValueTypeArray1234 { - yyl2923 := r.ReadArrayStart() - if yyl2923 == 0 { + } else if yyct2976 == codecSelferValueTypeArray1234 { + yyl2976 := r.ReadArrayStart() + if yyl2976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2923, d) + x.codecDecodeSelfFromArray(yyl2976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37459,12 +38166,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2924Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2924Slc - var yyhl2924 bool = l >= 0 - for yyj2924 := 0; ; yyj2924++ { - if yyhl2924 { - if yyj2924 >= l { + var yys2977Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2977Slc + var yyhl2977 bool = l >= 0 + for yyj2977 := 0; ; yyj2977++ { + if yyhl2977 { + if yyj2977 >= l { break } } else { @@ -37473,10 +38180,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2924Slc = r.DecodeBytes(yys2924Slc, true, true) - yys2924 := string(yys2924Slc) + yys2977Slc = r.DecodeBytes(yys2977Slc, true, true) + yys2977 := string(yys2977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2924 { + switch yys2977 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -37538,9 +38245,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2924) - } // end switch yys2924 - } // end for yyj2924 + z.DecStructFieldNotFound(-1, yys2977) + } // end switch yys2977 + } // end for yyj2977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37548,16 +38255,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2935 int - var yyb2935 bool - var yyhl2935 bool = l >= 0 - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + var yyj2988 int + var yyb2988 bool + var yyhl2988 bool = l >= 0 + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37567,13 +38274,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37583,13 +38290,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37599,13 +38306,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37615,13 +38322,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37631,13 +38338,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37647,13 +38354,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37663,13 +38370,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37679,13 +38386,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37695,13 +38402,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37712,17 +38419,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2935++ - if yyhl2935 { - yyb2935 = yyj2935 > l + yyj2988++ + if yyhl2988 { + yyb2988 = yyj2988 > l } else { - yyb2935 = r.CheckBreak() + yyb2988 = r.CheckBreak() } - if yyb2935 { + if yyb2988 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2935-1, "") + z.DecStructFieldNotFound(yyj2988-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37734,42 +38441,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2946 := z.EncBinary() - _ = yym2946 + yym2999 := z.EncBinary() + _ = yym2999 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2947 := !z.EncBinary() - yy2arr2947 := z.EncBasicHandle().StructToArray - var yyq2947 [10]bool - _, _, _ = yysep2947, yyq2947, yy2arr2947 - const yyr2947 bool = false - yyq2947[0] = len(x.Capacity) != 0 - yyq2947[1] = len(x.Allocatable) != 0 - yyq2947[2] = x.Phase != "" - yyq2947[3] = len(x.Conditions) != 0 - yyq2947[4] = len(x.Addresses) != 0 - yyq2947[5] = true - yyq2947[6] = true - yyq2947[7] = len(x.Images) != 0 - yyq2947[8] = len(x.VolumesInUse) != 0 - yyq2947[9] = len(x.VolumesAttached) != 0 - var yynn2947 int - if yyr2947 || yy2arr2947 { + yysep3000 := !z.EncBinary() + yy2arr3000 := z.EncBasicHandle().StructToArray + var yyq3000 [10]bool + _, _, _ = yysep3000, yyq3000, yy2arr3000 + const yyr3000 bool = false + yyq3000[0] = len(x.Capacity) != 0 + yyq3000[1] = len(x.Allocatable) != 0 + yyq3000[2] = x.Phase != "" + yyq3000[3] = len(x.Conditions) != 0 + yyq3000[4] = len(x.Addresses) != 0 + yyq3000[5] = true + yyq3000[6] = true + yyq3000[7] = len(x.Images) != 0 + yyq3000[8] = len(x.VolumesInUse) != 0 + yyq3000[9] = len(x.VolumesAttached) != 0 + var yynn3000 int + if yyr3000 || yy2arr3000 { r.EncodeArrayStart(10) } else { - yynn2947 = 0 - for _, b := range yyq2947 { + yynn3000 = 0 + for _, b := range yyq3000 { if b { - yynn2947++ + yynn3000++ } } - r.EncodeMapStart(yynn2947) - yynn2947 = 0 + r.EncodeMapStart(yynn3000) + yynn3000 = 0 } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[0] { + if yyq3000[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -37779,7 +38486,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[0] { + if yyq3000[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37790,9 +38497,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[1] { + if yyq3000[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -37802,7 +38509,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[1] { + if yyq3000[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37813,29 +38520,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[2] { + if yyq3000[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2947[2] { + if yyq3000[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[3] { + if yyq3000[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2952 := z.EncBinary() - _ = yym2952 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37845,15 +38552,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[3] { + if yyq3000[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2953 := z.EncBinary() - _ = yym2953 + yym3006 := z.EncBinary() + _ = yym3006 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37861,14 +38568,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[4] { + if yyq3000[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2955 := z.EncBinary() - _ = yym2955 + yym3008 := z.EncBinary() + _ = yym3008 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37878,15 +38585,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[4] { + if yyq3000[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2956 := z.EncBinary() - _ = yym2956 + yym3009 := z.EncBinary() + _ = yym3009 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37894,48 +38601,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[5] { - yy2958 := &x.DaemonEndpoints - yy2958.CodecEncodeSelf(e) + if yyq3000[5] { + yy3011 := &x.DaemonEndpoints + yy3011.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2947[5] { + if yyq3000[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2959 := &x.DaemonEndpoints - yy2959.CodecEncodeSelf(e) + yy3012 := &x.DaemonEndpoints + yy3012.CodecEncodeSelf(e) } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[6] { - yy2961 := &x.NodeInfo - yy2961.CodecEncodeSelf(e) + if yyq3000[6] { + yy3014 := &x.NodeInfo + yy3014.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2947[6] { + if yyq3000[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2962 := &x.NodeInfo - yy2962.CodecEncodeSelf(e) + yy3015 := &x.NodeInfo + yy3015.CodecEncodeSelf(e) } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[7] { + if yyq3000[7] { if x.Images == nil { r.EncodeNil() } else { - yym2964 := z.EncBinary() - _ = yym2964 + yym3017 := z.EncBinary() + _ = yym3017 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37945,15 +38652,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[7] { + if yyq3000[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2965 := z.EncBinary() - _ = yym2965 + yym3018 := z.EncBinary() + _ = yym3018 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37961,14 +38668,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[8] { + if yyq3000[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2967 := z.EncBinary() - _ = yym2967 + yym3020 := z.EncBinary() + _ = yym3020 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37978,15 +38685,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[8] { + if yyq3000[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2968 := z.EncBinary() - _ = yym2968 + yym3021 := z.EncBinary() + _ = yym3021 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37994,14 +38701,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2947[9] { + if yyq3000[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2970 := z.EncBinary() - _ = yym2970 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -38011,15 +38718,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2947[9] { + if yyq3000[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2971 := z.EncBinary() - _ = yym2971 + yym3024 := z.EncBinary() + _ = yym3024 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -38027,7 +38734,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2947 || yy2arr2947 { + if yyr3000 || yy2arr3000 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38040,25 +38747,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2972 := z.DecBinary() - _ = yym2972 + yym3025 := z.DecBinary() + _ = yym3025 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2973 := r.ContainerType() - if yyct2973 == codecSelferValueTypeMap1234 { - yyl2973 := r.ReadMapStart() - if yyl2973 == 0 { + yyct3026 := r.ContainerType() + if yyct3026 == codecSelferValueTypeMap1234 { + yyl3026 := r.ReadMapStart() + if yyl3026 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2973, d) + x.codecDecodeSelfFromMap(yyl3026, d) } - } else if yyct2973 == codecSelferValueTypeArray1234 { - yyl2973 := r.ReadArrayStart() - if yyl2973 == 0 { + } else if yyct3026 == codecSelferValueTypeArray1234 { + yyl3026 := r.ReadArrayStart() + if yyl3026 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2973, d) + x.codecDecodeSelfFromArray(yyl3026, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38070,12 +38777,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2974Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2974Slc - var yyhl2974 bool = l >= 0 - for yyj2974 := 0; ; yyj2974++ { - if yyhl2974 { - if yyj2974 >= l { + var yys3027Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3027Slc + var yyhl3027 bool = l >= 0 + for yyj3027 := 0; ; yyj3027++ { + if yyhl3027 { + if yyj3027 >= l { break } } else { @@ -38084,23 +38791,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2974Slc = r.DecodeBytes(yys2974Slc, true, true) - yys2974 := string(yys2974Slc) + yys3027Slc = r.DecodeBytes(yys3027Slc, true, true) + yys3027 := string(yys3027Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2974 { + switch yys3027 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2975 := &x.Capacity - yyv2975.CodecDecodeSelf(d) + yyv3028 := &x.Capacity + yyv3028.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2976 := &x.Allocatable - yyv2976.CodecDecodeSelf(d) + yyv3029 := &x.Allocatable + yyv3029.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -38112,80 +38819,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2978 := &x.Conditions - yym2979 := z.DecBinary() - _ = yym2979 + yyv3031 := &x.Conditions + yym3032 := z.DecBinary() + _ = yym3032 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2978), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3031), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2980 := &x.Addresses - yym2981 := z.DecBinary() - _ = yym2981 + yyv3033 := &x.Addresses + yym3034 := z.DecBinary() + _ = yym3034 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2980), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3033), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2982 := &x.DaemonEndpoints - yyv2982.CodecDecodeSelf(d) + yyv3035 := &x.DaemonEndpoints + yyv3035.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2983 := &x.NodeInfo - yyv2983.CodecDecodeSelf(d) + yyv3036 := &x.NodeInfo + yyv3036.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2984 := &x.Images - yym2985 := z.DecBinary() - _ = yym2985 + yyv3037 := &x.Images + yym3038 := z.DecBinary() + _ = yym3038 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2984), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3037), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2986 := &x.VolumesInUse - yym2987 := z.DecBinary() - _ = yym2987 + yyv3039 := &x.VolumesInUse + yym3040 := z.DecBinary() + _ = yym3040 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2986), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3039), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2988 := &x.VolumesAttached - yym2989 := z.DecBinary() - _ = yym2989 + yyv3041 := &x.VolumesAttached + yym3042 := z.DecBinary() + _ = yym3042 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2988), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3041), d) } } default: - z.DecStructFieldNotFound(-1, yys2974) - } // end switch yys2974 - } // end for yyj2974 + z.DecStructFieldNotFound(-1, yys3027) + } // end switch yys3027 + } // end for yyj3027 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38193,16 +38900,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2990 int - var yyb2990 bool - var yyhl2990 bool = l >= 0 - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + var yyj3043 int + var yyb3043 bool + var yyhl3043 bool = l >= 0 + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38210,16 +38917,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2991 := &x.Capacity - yyv2991.CodecDecodeSelf(d) + yyv3044 := &x.Capacity + yyv3044.CodecDecodeSelf(d) } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38227,16 +38934,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2992 := &x.Allocatable - yyv2992.CodecDecodeSelf(d) + yyv3045 := &x.Allocatable + yyv3045.CodecDecodeSelf(d) } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38246,13 +38953,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38260,21 +38967,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2994 := &x.Conditions - yym2995 := z.DecBinary() - _ = yym2995 + yyv3047 := &x.Conditions + yym3048 := z.DecBinary() + _ = yym3048 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2994), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3047), d) } } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38282,21 +38989,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2996 := &x.Addresses - yym2997 := z.DecBinary() - _ = yym2997 + yyv3049 := &x.Addresses + yym3050 := z.DecBinary() + _ = yym3050 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2996), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3049), d) } } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38304,16 +39011,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2998 := &x.DaemonEndpoints - yyv2998.CodecDecodeSelf(d) + yyv3051 := &x.DaemonEndpoints + yyv3051.CodecDecodeSelf(d) } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38321,16 +39028,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2999 := &x.NodeInfo - yyv2999.CodecDecodeSelf(d) + yyv3052 := &x.NodeInfo + yyv3052.CodecDecodeSelf(d) } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38338,21 +39045,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3000 := &x.Images - yym3001 := z.DecBinary() - _ = yym3001 + yyv3053 := &x.Images + yym3054 := z.DecBinary() + _ = yym3054 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3000), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3053), d) } } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38360,21 +39067,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3002 := &x.VolumesInUse - yym3003 := z.DecBinary() - _ = yym3003 + yyv3055 := &x.VolumesInUse + yym3056 := z.DecBinary() + _ = yym3056 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3002), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3055), d) } } - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38382,26 +39089,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3004 := &x.VolumesAttached - yym3005 := z.DecBinary() - _ = yym3005 + yyv3057 := &x.VolumesAttached + yym3058 := z.DecBinary() + _ = yym3058 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3004), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3057), d) } } for { - yyj2990++ - if yyhl2990 { - yyb2990 = yyj2990 > l + yyj3043++ + if yyhl3043 { + yyb3043 = yyj3043 > l } else { - yyb2990 = r.CheckBreak() + yyb3043 = r.CheckBreak() } - if yyb2990 { + if yyb3043 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2990-1, "") + z.DecStructFieldNotFound(yyj3043-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38410,8 +39117,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3006 := z.EncBinary() - _ = yym3006 + yym3059 := z.EncBinary() + _ = yym3059 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38423,8 +39130,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3007 := z.DecBinary() - _ = yym3007 + yym3060 := z.DecBinary() + _ = yym3060 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38439,30 +39146,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3008 := z.EncBinary() - _ = yym3008 + yym3061 := z.EncBinary() + _ = yym3061 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3009 := !z.EncBinary() - yy2arr3009 := z.EncBasicHandle().StructToArray - var yyq3009 [2]bool - _, _, _ = yysep3009, yyq3009, yy2arr3009 - const yyr3009 bool = false - var yynn3009 int - if yyr3009 || yy2arr3009 { + yysep3062 := !z.EncBinary() + yy2arr3062 := z.EncBasicHandle().StructToArray + var yyq3062 [2]bool + _, _, _ = yysep3062, yyq3062, yy2arr3062 + const yyr3062 bool = false + var yynn3062 int + if yyr3062 || yy2arr3062 { r.EncodeArrayStart(2) } else { - yynn3009 = 2 - for _, b := range yyq3009 { + yynn3062 = 2 + for _, b := range yyq3062 { if b { - yynn3009++ + yynn3062++ } } - r.EncodeMapStart(yynn3009) - yynn3009 = 0 + r.EncodeMapStart(yynn3062) + yynn3062 = 0 } - if yyr3009 || yy2arr3009 { + if yyr3062 || yy2arr3062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -38471,10 +39178,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr3009 || yy2arr3009 { + if yyr3062 || yy2arr3062 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3012 := z.EncBinary() - _ = yym3012 + yym3065 := z.EncBinary() + _ = yym3065 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -38483,14 +39190,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3013 := z.EncBinary() - _ = yym3013 + yym3066 := z.EncBinary() + _ = yym3066 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr3009 || yy2arr3009 { + if yyr3062 || yy2arr3062 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38503,25 +39210,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3014 := z.DecBinary() - _ = yym3014 + yym3067 := z.DecBinary() + _ = yym3067 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3015 := r.ContainerType() - if yyct3015 == codecSelferValueTypeMap1234 { - yyl3015 := r.ReadMapStart() - if yyl3015 == 0 { + yyct3068 := r.ContainerType() + if yyct3068 == codecSelferValueTypeMap1234 { + yyl3068 := r.ReadMapStart() + if yyl3068 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3015, d) + x.codecDecodeSelfFromMap(yyl3068, d) } - } else if yyct3015 == codecSelferValueTypeArray1234 { - yyl3015 := r.ReadArrayStart() - if yyl3015 == 0 { + } else if yyct3068 == codecSelferValueTypeArray1234 { + yyl3068 := r.ReadArrayStart() + if yyl3068 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3015, d) + x.codecDecodeSelfFromArray(yyl3068, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38533,12 +39240,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3016Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3016Slc - var yyhl3016 bool = l >= 0 - for yyj3016 := 0; ; yyj3016++ { - if yyhl3016 { - if yyj3016 >= 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 { @@ -38547,10 +39254,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3016Slc = r.DecodeBytes(yys3016Slc, true, true) - yys3016 := string(yys3016Slc) + yys3069Slc = r.DecodeBytes(yys3069Slc, true, true) + yys3069 := string(yys3069Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3016 { + switch yys3069 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -38564,724 +39271,13 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3016) - } // end switch yys3016 - } // end for yyj3016 + z.DecStructFieldNotFound(-1, yys3069) + } // end switch yys3069 + } // end for yyj3069 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3019 int - var yyb3019 bool - var yyhl3019 bool = l >= 0 - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l - } else { - yyb3019 = r.CheckBreak() - } - if yyb3019 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = UniqueVolumeName(r.DecodeString()) - } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l - } else { - yyb3019 = r.CheckBreak() - } - if yyb3019 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.DevicePath = "" - } else { - x.DevicePath = string(r.DecodeString()) - } - for { - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l - } else { - yyb3019 = r.CheckBreak() - } - if yyb3019 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3019-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3022 := z.EncBinary() - _ = yym3022 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3023 := !z.EncBinary() - yy2arr3023 := z.EncBasicHandle().StructToArray - var yyq3023 [1]bool - _, _, _ = yysep3023, yyq3023, yy2arr3023 - const yyr3023 bool = false - yyq3023[0] = len(x.PreferAvoidPods) != 0 - var yynn3023 int - if yyr3023 || yy2arr3023 { - r.EncodeArrayStart(1) - } else { - yynn3023 = 0 - for _, b := range yyq3023 { - if b { - yynn3023++ - } - } - r.EncodeMapStart(yynn3023) - yynn3023 = 0 - } - if yyr3023 || yy2arr3023 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3023[0] { - if x.PreferAvoidPods == nil { - r.EncodeNil() - } else { - yym3025 := z.EncBinary() - _ = yym3025 - if false { - } else { - h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq3023[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.PreferAvoidPods == nil { - r.EncodeNil() - } else { - yym3026 := z.EncBinary() - _ = yym3026 - if false { - } else { - h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) - } - } - } - } - if yyr3023 || yy2arr3023 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3027 := z.DecBinary() - _ = yym3027 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3028 := r.ContainerType() - if yyct3028 == codecSelferValueTypeMap1234 { - yyl3028 := r.ReadMapStart() - if yyl3028 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3028, d) - } - } else if yyct3028 == codecSelferValueTypeArray1234 { - yyl3028 := r.ReadArrayStart() - if yyl3028 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3028, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3029Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3029Slc - var yyhl3029 bool = l >= 0 - for yyj3029 := 0; ; yyj3029++ { - if yyhl3029 { - if yyj3029 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3029Slc = r.DecodeBytes(yys3029Slc, true, true) - yys3029 := string(yys3029Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3029 { - case "preferAvoidPods": - if r.TryDecodeAsNil() { - x.PreferAvoidPods = nil - } else { - yyv3030 := &x.PreferAvoidPods - yym3031 := z.DecBinary() - _ = yym3031 - if false { - } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3030), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3029) - } // end switch yys3029 - } // end for yyj3029 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3032 int - var yyb3032 bool - var yyhl3032 bool = l >= 0 - yyj3032++ - if yyhl3032 { - yyb3032 = yyj3032 > l - } else { - yyb3032 = r.CheckBreak() - } - if yyb3032 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.PreferAvoidPods = nil - } else { - yyv3033 := &x.PreferAvoidPods - yym3034 := z.DecBinary() - _ = yym3034 - if false { - } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3033), d) - } - } - for { - yyj3032++ - if yyhl3032 { - yyb3032 = yyj3032 > l - } else { - yyb3032 = r.CheckBreak() - } - if yyb3032 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3032-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3035 := z.EncBinary() - _ = yym3035 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3036 := !z.EncBinary() - yy2arr3036 := z.EncBasicHandle().StructToArray - var yyq3036 [4]bool - _, _, _ = yysep3036, yyq3036, yy2arr3036 - const yyr3036 bool = false - yyq3036[1] = true - yyq3036[2] = x.Reason != "" - yyq3036[3] = x.Message != "" - var yynn3036 int - if yyr3036 || yy2arr3036 { - r.EncodeArrayStart(4) - } else { - yynn3036 = 1 - for _, b := range yyq3036 { - if b { - yynn3036++ - } - } - r.EncodeMapStart(yynn3036) - yynn3036 = 0 - } - if yyr3036 || yy2arr3036 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3038 := &x.PodSignature - yy3038.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podSignature")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3039 := &x.PodSignature - yy3039.CodecEncodeSelf(e) - } - if yyr3036 || yy2arr3036 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3036[1] { - yy3041 := &x.EvictionTime - yym3042 := z.EncBinary() - _ = yym3042 - if false { - } else if z.HasExtensions() && z.EncExt(yy3041) { - } else if yym3042 { - z.EncBinaryMarshal(yy3041) - } else if !yym3042 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3041) - } else { - z.EncFallback(yy3041) - } - } else { - r.EncodeNil() - } - } else { - if yyq3036[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3043 := &x.EvictionTime - yym3044 := z.EncBinary() - _ = yym3044 - if false { - } else if z.HasExtensions() && z.EncExt(yy3043) { - } else if yym3044 { - z.EncBinaryMarshal(yy3043) - } else if !yym3044 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3043) - } else { - z.EncFallback(yy3043) - } - } - } - if yyr3036 || yy2arr3036 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3036[2] { - yym3046 := z.EncBinary() - _ = yym3046 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3036[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3047 := z.EncBinary() - _ = yym3047 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr3036 || yy2arr3036 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3036[3] { - yym3049 := z.EncBinary() - _ = yym3049 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3036[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3050 := z.EncBinary() - _ = yym3050 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr3036 || yy2arr3036 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3051 := z.DecBinary() - _ = yym3051 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3052 := r.ContainerType() - if yyct3052 == codecSelferValueTypeMap1234 { - yyl3052 := r.ReadMapStart() - if yyl3052 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3052, d) - } - } else if yyct3052 == codecSelferValueTypeArray1234 { - yyl3052 := r.ReadArrayStart() - if yyl3052 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3052, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3053Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3053Slc - var yyhl3053 bool = l >= 0 - for yyj3053 := 0; ; yyj3053++ { - if yyhl3053 { - if yyj3053 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3053Slc = r.DecodeBytes(yys3053Slc, true, true) - yys3053 := string(yys3053Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3053 { - case "podSignature": - if r.TryDecodeAsNil() { - x.PodSignature = PodSignature{} - } else { - yyv3054 := &x.PodSignature - yyv3054.CodecDecodeSelf(d) - } - case "evictionTime": - if r.TryDecodeAsNil() { - x.EvictionTime = pkg2_unversioned.Time{} - } else { - yyv3055 := &x.EvictionTime - yym3056 := z.DecBinary() - _ = yym3056 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3055) { - } else if yym3056 { - z.DecBinaryUnmarshal(yyv3055) - } else if !yym3056 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3055) - } else { - z.DecFallback(yyv3055, false) - } - } - case "reason": - if r.TryDecodeAsNil() { - x.Reason = "" - } else { - x.Reason = string(r.DecodeString()) - } - case "message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3053) - } // end switch yys3053 - } // end for yyj3053 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PreferAvoidPodsEntry) 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 - } else { - yyb3059 = r.CheckBreak() - } - if yyb3059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.PodSignature = PodSignature{} - } else { - yyv3060 := &x.PodSignature - yyv3060.CodecDecodeSelf(d) - } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l - } else { - yyb3059 = r.CheckBreak() - } - if yyb3059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.EvictionTime = pkg2_unversioned.Time{} - } else { - yyv3061 := &x.EvictionTime - yym3062 := z.DecBinary() - _ = yym3062 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3061) { - } else if yym3062 { - z.DecBinaryUnmarshal(yyv3061) - } else if !yym3062 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3061) - } else { - z.DecFallback(yyv3061, false) - } - } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l - } else { - yyb3059 = r.CheckBreak() - } - if yyb3059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reason = "" - } else { - x.Reason = string(r.DecodeString()) - } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l - } else { - yyb3059 = r.CheckBreak() - } - if yyb3059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - for { - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l - } else { - yyb3059 = r.CheckBreak() - } - if yyb3059 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3059-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3065 := z.EncBinary() - _ = yym3065 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3066 := !z.EncBinary() - yy2arr3066 := z.EncBasicHandle().StructToArray - var yyq3066 [1]bool - _, _, _ = yysep3066, yyq3066, yy2arr3066 - const yyr3066 bool = false - yyq3066[0] = x.PodController != nil - var yynn3066 int - if yyr3066 || yy2arr3066 { - r.EncodeArrayStart(1) - } else { - yynn3066 = 0 - for _, b := range yyq3066 { - if b { - yynn3066++ - } - } - r.EncodeMapStart(yynn3066) - yynn3066 = 0 - } - if yyr3066 || yy2arr3066 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3066[0] { - if x.PodController == nil { - r.EncodeNil() - } else { - x.PodController.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3066[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podController")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.PodController == nil { - r.EncodeNil() - } else { - x.PodController.CodecEncodeSelf(e) - } - } - } - if yyr3066 || yy2arr3066 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3068 := z.DecBinary() - _ = yym3068 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3069 := r.ContainerType() - if yyct3069 == codecSelferValueTypeMap1234 { - yyl3069 := r.ReadMapStart() - if yyl3069 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3069, d) - } - } else if yyct3069 == codecSelferValueTypeArray1234 { - yyl3069 := r.ReadArrayStart() - if yyl3069 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3069, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3070Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3070Slc - var yyhl3070 bool = l >= 0 - for yyj3070 := 0; ; yyj3070++ { - if yyhl3070 { - if yyj3070 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3070Slc = r.DecodeBytes(yys3070Slc, true, true) - yys3070 := string(yys3070Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3070 { - case "podController": - if r.TryDecodeAsNil() { - if x.PodController != nil { - x.PodController = nil - } - } else { - if x.PodController == nil { - x.PodController = new(OwnerReference) - } - x.PodController.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3070) - } // end switch yys3070 - } // end for yyj3070 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -39300,14 +39296,25 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - if x.PodController != nil { - x.PodController = nil - } + x.Name = "" } else { - if x.PodController == nil { - x.PodController = new(OwnerReference) - } - x.PodController.CodecDecodeSelf(d) + x.Name = UniqueVolumeName(r.DecodeString()) + } + yyj3072++ + if yyhl3072 { + yyb3072 = yyj3072 > l + } else { + yyb3072 = r.CheckBreak() + } + if yyb3072 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DevicePath = "" + } else { + x.DevicePath = string(r.DecodeString()) } for { yyj3072++ @@ -39325,6 +39332,706 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3075 := z.EncBinary() + _ = yym3075 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3076 := !z.EncBinary() + yy2arr3076 := z.EncBasicHandle().StructToArray + var yyq3076 [1]bool + _, _, _ = yysep3076, yyq3076, yy2arr3076 + const yyr3076 bool = false + yyq3076[0] = len(x.PreferAvoidPods) != 0 + var yynn3076 int + if yyr3076 || yy2arr3076 { + r.EncodeArrayStart(1) + } else { + yynn3076 = 0 + for _, b := range yyq3076 { + if b { + yynn3076++ + } + } + r.EncodeMapStart(yynn3076) + yynn3076 = 0 + } + if yyr3076 || yy2arr3076 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3076[0] { + if x.PreferAvoidPods == nil { + r.EncodeNil() + } else { + yym3078 := z.EncBinary() + _ = yym3078 + if false { + } else { + h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3076[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.PreferAvoidPods == nil { + r.EncodeNil() + } else { + yym3079 := z.EncBinary() + _ = yym3079 + if false { + } else { + h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) + } + } + } + } + if yyr3076 || yy2arr3076 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3080 := z.DecBinary() + _ = yym3080 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3081 := r.ContainerType() + if yyct3081 == codecSelferValueTypeMap1234 { + yyl3081 := r.ReadMapStart() + if yyl3081 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3081, d) + } + } else if yyct3081 == codecSelferValueTypeArray1234 { + yyl3081 := r.ReadArrayStart() + if yyl3081 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3081, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3082Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3082Slc + var yyhl3082 bool = l >= 0 + for yyj3082 := 0; ; yyj3082++ { + if yyhl3082 { + if yyj3082 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3082Slc = r.DecodeBytes(yys3082Slc, true, true) + yys3082 := string(yys3082Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3082 { + case "preferAvoidPods": + if r.TryDecodeAsNil() { + x.PreferAvoidPods = nil + } else { + yyv3083 := &x.PreferAvoidPods + yym3084 := z.DecBinary() + _ = yym3084 + if false { + } else { + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3083), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3082) + } // end switch yys3082 + } // end for yyj3082 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3085 int + var yyb3085 bool + var yyhl3085 bool = l >= 0 + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l + } else { + yyb3085 = r.CheckBreak() + } + if yyb3085 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.PreferAvoidPods = nil + } else { + yyv3086 := &x.PreferAvoidPods + yym3087 := z.DecBinary() + _ = yym3087 + if false { + } else { + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3086), d) + } + } + for { + yyj3085++ + if yyhl3085 { + yyb3085 = yyj3085 > l + } else { + yyb3085 = r.CheckBreak() + } + if yyb3085 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3085-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3088 := z.EncBinary() + _ = yym3088 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3089 := !z.EncBinary() + yy2arr3089 := z.EncBasicHandle().StructToArray + var yyq3089 [4]bool + _, _, _ = yysep3089, yyq3089, yy2arr3089 + const yyr3089 bool = false + yyq3089[1] = true + yyq3089[2] = x.Reason != "" + yyq3089[3] = x.Message != "" + var yynn3089 int + if yyr3089 || yy2arr3089 { + r.EncodeArrayStart(4) + } else { + yynn3089 = 1 + for _, b := range yyq3089 { + if b { + yynn3089++ + } + } + r.EncodeMapStart(yynn3089) + yynn3089 = 0 + } + if yyr3089 || yy2arr3089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3091 := &x.PodSignature + yy3091.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podSignature")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3092 := &x.PodSignature + yy3092.CodecEncodeSelf(e) + } + if yyr3089 || yy2arr3089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3089[1] { + yy3094 := &x.EvictionTime + yym3095 := z.EncBinary() + _ = yym3095 + if false { + } else if z.HasExtensions() && z.EncExt(yy3094) { + } else if yym3095 { + z.EncBinaryMarshal(yy3094) + } else if !yym3095 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3094) + } else { + z.EncFallback(yy3094) + } + } else { + r.EncodeNil() + } + } else { + if yyq3089[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3096 := &x.EvictionTime + yym3097 := z.EncBinary() + _ = yym3097 + if false { + } else if z.HasExtensions() && z.EncExt(yy3096) { + } else if yym3097 { + z.EncBinaryMarshal(yy3096) + } else if !yym3097 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3096) + } else { + z.EncFallback(yy3096) + } + } + } + if yyr3089 || yy2arr3089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3089[2] { + yym3099 := z.EncBinary() + _ = yym3099 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3089[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3100 := z.EncBinary() + _ = yym3100 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr3089 || yy2arr3089 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3089[3] { + yym3102 := z.EncBinary() + _ = yym3102 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3089[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3103 := z.EncBinary() + _ = yym3103 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr3089 || yy2arr3089 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3104 := z.DecBinary() + _ = yym3104 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3105 := r.ContainerType() + if yyct3105 == codecSelferValueTypeMap1234 { + yyl3105 := r.ReadMapStart() + if yyl3105 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3105, d) + } + } else if yyct3105 == codecSelferValueTypeArray1234 { + yyl3105 := r.ReadArrayStart() + if yyl3105 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3105, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3106Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3106Slc + var yyhl3106 bool = l >= 0 + for yyj3106 := 0; ; yyj3106++ { + if yyhl3106 { + if yyj3106 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3106Slc = r.DecodeBytes(yys3106Slc, true, true) + yys3106 := string(yys3106Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3106 { + case "podSignature": + if r.TryDecodeAsNil() { + x.PodSignature = PodSignature{} + } else { + yyv3107 := &x.PodSignature + yyv3107.CodecDecodeSelf(d) + } + case "evictionTime": + if r.TryDecodeAsNil() { + x.EvictionTime = pkg2_unversioned.Time{} + } else { + yyv3108 := &x.EvictionTime + yym3109 := z.DecBinary() + _ = yym3109 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3108) { + } else if yym3109 { + z.DecBinaryUnmarshal(yyv3108) + } else if !yym3109 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3108) + } else { + z.DecFallback(yyv3108, false) + } + } + case "reason": + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3106) + } // end switch yys3106 + } // end for yyj3106 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3112 int + var yyb3112 bool + var yyhl3112 bool = l >= 0 + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l + } else { + yyb3112 = r.CheckBreak() + } + if yyb3112 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.PodSignature = PodSignature{} + } else { + yyv3113 := &x.PodSignature + yyv3113.CodecDecodeSelf(d) + } + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l + } else { + yyb3112 = r.CheckBreak() + } + if yyb3112 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.EvictionTime = pkg2_unversioned.Time{} + } else { + yyv3114 := &x.EvictionTime + yym3115 := z.DecBinary() + _ = yym3115 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3114) { + } else if yym3115 { + z.DecBinaryUnmarshal(yyv3114) + } else if !yym3115 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3114) + } else { + z.DecFallback(yyv3114, false) + } + } + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l + } else { + yyb3112 = r.CheckBreak() + } + if yyb3112 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l + } else { + yyb3112 = r.CheckBreak() + } + if yyb3112 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + for { + yyj3112++ + if yyhl3112 { + yyb3112 = yyj3112 > l + } else { + yyb3112 = r.CheckBreak() + } + if yyb3112 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3112-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3118 := z.EncBinary() + _ = yym3118 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3119 := !z.EncBinary() + yy2arr3119 := z.EncBasicHandle().StructToArray + var yyq3119 [1]bool + _, _, _ = yysep3119, yyq3119, yy2arr3119 + const yyr3119 bool = false + yyq3119[0] = x.PodController != nil + var yynn3119 int + if yyr3119 || yy2arr3119 { + r.EncodeArrayStart(1) + } else { + yynn3119 = 0 + for _, b := range yyq3119 { + if b { + yynn3119++ + } + } + r.EncodeMapStart(yynn3119) + yynn3119 = 0 + } + if yyr3119 || yy2arr3119 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3119[0] { + if x.PodController == nil { + r.EncodeNil() + } else { + x.PodController.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq3119[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podController")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.PodController == nil { + r.EncodeNil() + } else { + x.PodController.CodecEncodeSelf(e) + } + } + } + if yyr3119 || yy2arr3119 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3121 := z.DecBinary() + _ = yym3121 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3122 := r.ContainerType() + if yyct3122 == codecSelferValueTypeMap1234 { + yyl3122 := r.ReadMapStart() + if yyl3122 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3122, d) + } + } else if yyct3122 == codecSelferValueTypeArray1234 { + yyl3122 := r.ReadArrayStart() + if yyl3122 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3122, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3123Slc + var yyhl3123 bool = l >= 0 + for yyj3123 := 0; ; yyj3123++ { + if yyhl3123 { + if yyj3123 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3123Slc = r.DecodeBytes(yys3123Slc, true, true) + yys3123 := string(yys3123Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3123 { + case "podController": + if r.TryDecodeAsNil() { + if x.PodController != nil { + x.PodController = nil + } + } else { + if x.PodController == nil { + x.PodController = new(OwnerReference) + } + x.PodController.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3123) + } // end switch yys3123 + } // end for yyj3123 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3125 int + var yyb3125 bool + var yyhl3125 bool = l >= 0 + yyj3125++ + if yyhl3125 { + yyb3125 = yyj3125 > l + } else { + yyb3125 = r.CheckBreak() + } + if yyb3125 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.PodController != nil { + x.PodController = nil + } + } else { + if x.PodController == nil { + x.PodController = new(OwnerReference) + } + x.PodController.CodecDecodeSelf(d) + } + for { + yyj3125++ + if yyhl3125 { + yyb3125 = yyj3125 > l + } else { + yyb3125 = r.CheckBreak() + } + if yyb3125 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3125-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -39332,37 +40039,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3074 := z.EncBinary() - _ = yym3074 + yym3127 := z.EncBinary() + _ = yym3127 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3075 := !z.EncBinary() - yy2arr3075 := z.EncBasicHandle().StructToArray - var yyq3075 [2]bool - _, _, _ = yysep3075, yyq3075, yy2arr3075 - const yyr3075 bool = false - yyq3075[1] = x.SizeBytes != 0 - var yynn3075 int - if yyr3075 || yy2arr3075 { + yysep3128 := !z.EncBinary() + yy2arr3128 := z.EncBasicHandle().StructToArray + var yyq3128 [2]bool + _, _, _ = yysep3128, yyq3128, yy2arr3128 + const yyr3128 bool = false + yyq3128[1] = x.SizeBytes != 0 + var yynn3128 int + if yyr3128 || yy2arr3128 { r.EncodeArrayStart(2) } else { - yynn3075 = 1 - for _, b := range yyq3075 { + yynn3128 = 1 + for _, b := range yyq3128 { if b { - yynn3075++ + yynn3128++ } } - r.EncodeMapStart(yynn3075) - yynn3075 = 0 + r.EncodeMapStart(yynn3128) + yynn3128 = 0 } - if yyr3075 || yy2arr3075 { + if yyr3128 || yy2arr3128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3077 := z.EncBinary() - _ = yym3077 + yym3130 := z.EncBinary() + _ = yym3130 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -39375,19 +40082,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3078 := z.EncBinary() - _ = yym3078 + yym3131 := z.EncBinary() + _ = yym3131 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3075 || yy2arr3075 { + if yyr3128 || yy2arr3128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3075[1] { - yym3080 := z.EncBinary() - _ = yym3080 + if yyq3128[1] { + yym3133 := z.EncBinary() + _ = yym3133 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -39396,19 +40103,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3075[1] { + if yyq3128[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3081 := z.EncBinary() - _ = yym3081 + yym3134 := z.EncBinary() + _ = yym3134 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3075 || yy2arr3075 { + if yyr3128 || yy2arr3128 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39421,25 +40128,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3082 := z.DecBinary() - _ = yym3082 + yym3135 := z.DecBinary() + _ = yym3135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3083 := r.ContainerType() - if yyct3083 == codecSelferValueTypeMap1234 { - yyl3083 := r.ReadMapStart() - if yyl3083 == 0 { + yyct3136 := r.ContainerType() + if yyct3136 == codecSelferValueTypeMap1234 { + yyl3136 := r.ReadMapStart() + if yyl3136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3083, d) + x.codecDecodeSelfFromMap(yyl3136, d) } - } else if yyct3083 == codecSelferValueTypeArray1234 { - yyl3083 := r.ReadArrayStart() - if yyl3083 == 0 { + } else if yyct3136 == codecSelferValueTypeArray1234 { + yyl3136 := r.ReadArrayStart() + if yyl3136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3083, d) + x.codecDecodeSelfFromArray(yyl3136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39451,12 +40158,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3084Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3084Slc - var yyhl3084 bool = l >= 0 - for yyj3084 := 0; ; yyj3084++ { - if yyhl3084 { - if yyj3084 >= l { + var yys3137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3137Slc + var yyhl3137 bool = l >= 0 + for yyj3137 := 0; ; yyj3137++ { + if yyhl3137 { + if yyj3137 >= l { break } } else { @@ -39465,20 +40172,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3084Slc = r.DecodeBytes(yys3084Slc, true, true) - yys3084 := string(yys3084Slc) + yys3137Slc = r.DecodeBytes(yys3137Slc, true, true) + yys3137 := string(yys3137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3084 { + switch yys3137 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3085 := &x.Names - yym3086 := z.DecBinary() - _ = yym3086 + yyv3138 := &x.Names + yym3139 := z.DecBinary() + _ = yym3139 if false { } else { - z.F.DecSliceStringX(yyv3085, false, d) + z.F.DecSliceStringX(yyv3138, false, d) } } case "sizeBytes": @@ -39488,9 +40195,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3084) - } // end switch yys3084 - } // end for yyj3084 + z.DecStructFieldNotFound(-1, yys3137) + } // end switch yys3137 + } // end for yyj3137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39498,16 +40205,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3088 int - var yyb3088 bool - var yyhl3088 bool = l >= 0 - yyj3088++ - if yyhl3088 { - yyb3088 = yyj3088 > l + var yyj3141 int + var yyb3141 bool + var yyhl3141 bool = l >= 0 + yyj3141++ + if yyhl3141 { + yyb3141 = yyj3141 > l } else { - yyb3088 = r.CheckBreak() + yyb3141 = r.CheckBreak() } - if yyb3088 { + if yyb3141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39515,21 +40222,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3089 := &x.Names - yym3090 := z.DecBinary() - _ = yym3090 + yyv3142 := &x.Names + yym3143 := z.DecBinary() + _ = yym3143 if false { } else { - z.F.DecSliceStringX(yyv3089, false, d) + z.F.DecSliceStringX(yyv3142, false, d) } } - yyj3088++ - if yyhl3088 { - yyb3088 = yyj3088 > l + yyj3141++ + if yyhl3141 { + yyb3141 = yyj3141 > l } else { - yyb3088 = r.CheckBreak() + yyb3141 = r.CheckBreak() } - if yyb3088 { + if yyb3141 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39540,17 +40247,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3088++ - if yyhl3088 { - yyb3088 = yyj3088 > l + yyj3141++ + if yyhl3141 { + yyb3141 = yyj3141 > l } else { - yyb3088 = r.CheckBreak() + yyb3141 = r.CheckBreak() } - if yyb3088 { + if yyb3141 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3088-1, "") + z.DecStructFieldNotFound(yyj3141-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39559,8 +40266,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3092 := z.EncBinary() - _ = yym3092 + yym3145 := z.EncBinary() + _ = yym3145 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39572,8 +40279,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3093 := z.DecBinary() - _ = yym3093 + yym3146 := z.DecBinary() + _ = yym3146 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39585,8 +40292,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3094 := z.EncBinary() - _ = yym3094 + yym3147 := z.EncBinary() + _ = yym3147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39598,8 +40305,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3095 := z.DecBinary() - _ = yym3095 + yym3148 := z.DecBinary() + _ = yym3148 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39614,34 +40321,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3096 := z.EncBinary() - _ = yym3096 + yym3149 := z.EncBinary() + _ = yym3149 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3097 := !z.EncBinary() - yy2arr3097 := z.EncBasicHandle().StructToArray - var yyq3097 [6]bool - _, _, _ = yysep3097, yyq3097, yy2arr3097 - const yyr3097 bool = false - yyq3097[2] = true - yyq3097[3] = true - yyq3097[4] = x.Reason != "" - yyq3097[5] = x.Message != "" - var yynn3097 int - if yyr3097 || yy2arr3097 { + yysep3150 := !z.EncBinary() + yy2arr3150 := z.EncBasicHandle().StructToArray + var yyq3150 [6]bool + _, _, _ = yysep3150, yyq3150, yy2arr3150 + const yyr3150 bool = false + yyq3150[2] = true + yyq3150[3] = true + yyq3150[4] = x.Reason != "" + yyq3150[5] = x.Message != "" + var yynn3150 int + if yyr3150 || yy2arr3150 { r.EncodeArrayStart(6) } else { - yynn3097 = 2 - for _, b := range yyq3097 { + yynn3150 = 2 + for _, b := range yyq3150 { if b { - yynn3097++ + yynn3150++ } } - r.EncodeMapStart(yynn3097) - yynn3097 = 0 + r.EncodeMapStart(yynn3150) + yynn3150 = 0 } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39650,7 +40357,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -39659,85 +40366,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3097[2] { - yy3101 := &x.LastHeartbeatTime - yym3102 := z.EncBinary() - _ = yym3102 + if yyq3150[2] { + yy3154 := &x.LastHeartbeatTime + yym3155 := z.EncBinary() + _ = yym3155 if false { - } else if z.HasExtensions() && z.EncExt(yy3101) { - } else if yym3102 { - z.EncBinaryMarshal(yy3101) - } else if !yym3102 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3101) + } else if z.HasExtensions() && z.EncExt(yy3154) { + } else if yym3155 { + z.EncBinaryMarshal(yy3154) + } else if !yym3155 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3154) } else { - z.EncFallback(yy3101) + z.EncFallback(yy3154) } } else { r.EncodeNil() } } else { - if yyq3097[2] { + if yyq3150[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3103 := &x.LastHeartbeatTime - yym3104 := z.EncBinary() - _ = yym3104 + yy3156 := &x.LastHeartbeatTime + yym3157 := z.EncBinary() + _ = yym3157 if false { - } else if z.HasExtensions() && z.EncExt(yy3103) { - } else if yym3104 { - z.EncBinaryMarshal(yy3103) - } else if !yym3104 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3103) + } else if z.HasExtensions() && z.EncExt(yy3156) { + } else if yym3157 { + z.EncBinaryMarshal(yy3156) + } else if !yym3157 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3156) } else { - z.EncFallback(yy3103) + z.EncFallback(yy3156) } } } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3097[3] { - yy3106 := &x.LastTransitionTime - yym3107 := z.EncBinary() - _ = yym3107 + if yyq3150[3] { + yy3159 := &x.LastTransitionTime + yym3160 := z.EncBinary() + _ = yym3160 if false { - } else if z.HasExtensions() && z.EncExt(yy3106) { - } else if yym3107 { - z.EncBinaryMarshal(yy3106) - } else if !yym3107 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3106) + } else if z.HasExtensions() && z.EncExt(yy3159) { + } else if yym3160 { + z.EncBinaryMarshal(yy3159) + } else if !yym3160 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3159) } else { - z.EncFallback(yy3106) + z.EncFallback(yy3159) } } else { r.EncodeNil() } } else { - if yyq3097[3] { + if yyq3150[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3108 := &x.LastTransitionTime - yym3109 := z.EncBinary() - _ = yym3109 + yy3161 := &x.LastTransitionTime + yym3162 := z.EncBinary() + _ = yym3162 if false { - } else if z.HasExtensions() && z.EncExt(yy3108) { - } else if yym3109 { - z.EncBinaryMarshal(yy3108) - } else if !yym3109 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3108) + } else if z.HasExtensions() && z.EncExt(yy3161) { + } else if yym3162 { + z.EncBinaryMarshal(yy3161) + } else if !yym3162 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3161) } else { - z.EncFallback(yy3108) + z.EncFallback(yy3161) } } } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3097[4] { - yym3111 := z.EncBinary() - _ = yym3111 + if yyq3150[4] { + yym3164 := z.EncBinary() + _ = yym3164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39746,23 +40453,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3097[4] { + if yyq3150[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3112 := z.EncBinary() - _ = yym3112 + yym3165 := z.EncBinary() + _ = yym3165 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3097[5] { - yym3114 := z.EncBinary() - _ = yym3114 + if yyq3150[5] { + yym3167 := z.EncBinary() + _ = yym3167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39771,19 +40478,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3097[5] { + if yyq3150[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3115 := z.EncBinary() - _ = yym3115 + yym3168 := z.EncBinary() + _ = yym3168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3097 || yy2arr3097 { + if yyr3150 || yy2arr3150 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39796,25 +40503,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3116 := z.DecBinary() - _ = yym3116 + yym3169 := z.DecBinary() + _ = yym3169 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3117 := r.ContainerType() - if yyct3117 == codecSelferValueTypeMap1234 { - yyl3117 := r.ReadMapStart() - if yyl3117 == 0 { + yyct3170 := r.ContainerType() + if yyct3170 == codecSelferValueTypeMap1234 { + yyl3170 := r.ReadMapStart() + if yyl3170 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3117, d) + x.codecDecodeSelfFromMap(yyl3170, d) } - } else if yyct3117 == codecSelferValueTypeArray1234 { - yyl3117 := r.ReadArrayStart() - if yyl3117 == 0 { + } else if yyct3170 == codecSelferValueTypeArray1234 { + yyl3170 := r.ReadArrayStart() + if yyl3170 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3117, d) + x.codecDecodeSelfFromArray(yyl3170, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39826,12 +40533,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3118Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3118Slc - var yyhl3118 bool = l >= 0 - for yyj3118 := 0; ; yyj3118++ { - if yyhl3118 { - if yyj3118 >= l { + var yys3171Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3171Slc + var yyhl3171 bool = l >= 0 + for yyj3171 := 0; ; yyj3171++ { + if yyhl3171 { + if yyj3171 >= l { break } } else { @@ -39840,10 +40547,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3118Slc = r.DecodeBytes(yys3118Slc, true, true) - yys3118 := string(yys3118Slc) + yys3171Slc = r.DecodeBytes(yys3171Slc, true, true) + yys3171 := string(yys3171Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3118 { + switch yys3171 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39860,34 +40567,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3121 := &x.LastHeartbeatTime - yym3122 := z.DecBinary() - _ = yym3122 + yyv3174 := &x.LastHeartbeatTime + yym3175 := z.DecBinary() + _ = yym3175 if false { - } else if z.HasExtensions() && z.DecExt(yyv3121) { - } else if yym3122 { - z.DecBinaryUnmarshal(yyv3121) - } else if !yym3122 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3121) + } else if z.HasExtensions() && z.DecExt(yyv3174) { + } else if yym3175 { + z.DecBinaryUnmarshal(yyv3174) + } else if !yym3175 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3174) } else { - z.DecFallback(yyv3121, false) + z.DecFallback(yyv3174, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3123 := &x.LastTransitionTime - yym3124 := z.DecBinary() - _ = yym3124 + yyv3176 := &x.LastTransitionTime + yym3177 := z.DecBinary() + _ = yym3177 if false { - } else if z.HasExtensions() && z.DecExt(yyv3123) { - } else if yym3124 { - z.DecBinaryUnmarshal(yyv3123) - } else if !yym3124 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3123) + } else if z.HasExtensions() && z.DecExt(yyv3176) { + } else if yym3177 { + z.DecBinaryUnmarshal(yyv3176) + } else if !yym3177 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3176) } else { - z.DecFallback(yyv3123, false) + z.DecFallback(yyv3176, false) } } case "reason": @@ -39903,9 +40610,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3118) - } // end switch yys3118 - } // end for yyj3118 + z.DecStructFieldNotFound(-1, yys3171) + } // end switch yys3171 + } // end for yyj3171 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39913,16 +40620,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3127 int - var yyb3127 bool - var yyhl3127 bool = l >= 0 - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + var yyj3180 int + var yyb3180 bool + var yyhl3180 bool = l >= 0 + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39932,13 +40639,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39948,13 +40655,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39962,26 +40669,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3130 := &x.LastHeartbeatTime - yym3131 := z.DecBinary() - _ = yym3131 + yyv3183 := &x.LastHeartbeatTime + yym3184 := z.DecBinary() + _ = yym3184 if false { - } else if z.HasExtensions() && z.DecExt(yyv3130) { - } else if yym3131 { - z.DecBinaryUnmarshal(yyv3130) - } else if !yym3131 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3130) + } else if z.HasExtensions() && z.DecExt(yyv3183) { + } else if yym3184 { + z.DecBinaryUnmarshal(yyv3183) + } else if !yym3184 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3183) } else { - z.DecFallback(yyv3130, false) + z.DecFallback(yyv3183, false) } } - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39989,26 +40696,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3132 := &x.LastTransitionTime - yym3133 := z.DecBinary() - _ = yym3133 + yyv3185 := &x.LastTransitionTime + yym3186 := z.DecBinary() + _ = yym3186 if false { - } else if z.HasExtensions() && z.DecExt(yyv3132) { - } else if yym3133 { - z.DecBinaryUnmarshal(yyv3132) - } else if !yym3133 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3132) + } else if z.HasExtensions() && z.DecExt(yyv3185) { + } else if yym3186 { + z.DecBinaryUnmarshal(yyv3185) + } else if !yym3186 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3185) } else { - z.DecFallback(yyv3132, false) + z.DecFallback(yyv3185, false) } } - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40018,13 +40725,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40035,17 +40742,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3127 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3127 { + if yyb3180 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3127-1, "") + z.DecStructFieldNotFound(yyj3180-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40054,8 +40761,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3136 := z.EncBinary() - _ = yym3136 + yym3189 := z.EncBinary() + _ = yym3189 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40067,8 +40774,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3137 := z.DecBinary() - _ = yym3137 + yym3190 := z.DecBinary() + _ = yym3190 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40083,30 +40790,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3138 := z.EncBinary() - _ = yym3138 + yym3191 := z.EncBinary() + _ = yym3191 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3139 := !z.EncBinary() - yy2arr3139 := z.EncBasicHandle().StructToArray - var yyq3139 [2]bool - _, _, _ = yysep3139, yyq3139, yy2arr3139 - const yyr3139 bool = false - var yynn3139 int - if yyr3139 || yy2arr3139 { + yysep3192 := !z.EncBinary() + yy2arr3192 := z.EncBasicHandle().StructToArray + var yyq3192 [2]bool + _, _, _ = yysep3192, yyq3192, yy2arr3192 + const yyr3192 bool = false + var yynn3192 int + if yyr3192 || yy2arr3192 { r.EncodeArrayStart(2) } else { - yynn3139 = 2 - for _, b := range yyq3139 { + yynn3192 = 2 + for _, b := range yyq3192 { if b { - yynn3139++ + yynn3192++ } } - r.EncodeMapStart(yynn3139) - yynn3139 = 0 + r.EncodeMapStart(yynn3192) + yynn3192 = 0 } - if yyr3139 || yy2arr3139 { + if yyr3192 || yy2arr3192 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -40115,10 +40822,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3139 || yy2arr3139 { + if yyr3192 || yy2arr3192 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3142 := z.EncBinary() - _ = yym3142 + yym3195 := z.EncBinary() + _ = yym3195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -40127,14 +40834,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3143 := z.EncBinary() - _ = yym3143 + yym3196 := z.EncBinary() + _ = yym3196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3139 || yy2arr3139 { + if yyr3192 || yy2arr3192 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40147,25 +40854,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3144 := z.DecBinary() - _ = yym3144 + yym3197 := z.DecBinary() + _ = yym3197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3145 := r.ContainerType() - if yyct3145 == codecSelferValueTypeMap1234 { - yyl3145 := r.ReadMapStart() - if yyl3145 == 0 { + yyct3198 := r.ContainerType() + if yyct3198 == codecSelferValueTypeMap1234 { + yyl3198 := r.ReadMapStart() + if yyl3198 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3145, d) + x.codecDecodeSelfFromMap(yyl3198, d) } - } else if yyct3145 == codecSelferValueTypeArray1234 { - yyl3145 := r.ReadArrayStart() - if yyl3145 == 0 { + } else if yyct3198 == codecSelferValueTypeArray1234 { + yyl3198 := r.ReadArrayStart() + if yyl3198 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3145, d) + x.codecDecodeSelfFromArray(yyl3198, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40177,12 +40884,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3146Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3146Slc - var yyhl3146 bool = l >= 0 - for yyj3146 := 0; ; yyj3146++ { - if yyhl3146 { - if yyj3146 >= 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 { @@ -40191,10 +40898,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3146Slc = r.DecodeBytes(yys3146Slc, true, true) - yys3146 := string(yys3146Slc) + yys3199Slc = r.DecodeBytes(yys3199Slc, true, true) + yys3199 := string(yys3199Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3146 { + switch yys3199 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40208,9 +40915,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3146) - } // end switch yys3146 - } // end for yyj3146 + z.DecStructFieldNotFound(-1, yys3199) + } // end switch yys3199 + } // end for yyj3199 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40218,16 +40925,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3149 int - var yyb3149 bool - var yyhl3149 bool = l >= 0 - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l + var yyj3202 int + var yyb3202 bool + var yyhl3202 bool = l >= 0 + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3149 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3149 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40237,13 +40944,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3149 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3149 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40254,17 +40961,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3149 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3149 { + if yyb3202 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3149-1, "") + z.DecStructFieldNotFound(yyj3202-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40276,33 +40983,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3152 := z.EncBinary() - _ = yym3152 + yym3205 := z.EncBinary() + _ = yym3205 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3153 := !z.EncBinary() - yy2arr3153 := z.EncBasicHandle().StructToArray - var yyq3153 [1]bool - _, _, _ = yysep3153, yyq3153, yy2arr3153 - const yyr3153 bool = false - yyq3153[0] = len(x.Capacity) != 0 - var yynn3153 int - if yyr3153 || yy2arr3153 { + yysep3206 := !z.EncBinary() + yy2arr3206 := z.EncBasicHandle().StructToArray + var yyq3206 [1]bool + _, _, _ = yysep3206, yyq3206, yy2arr3206 + const yyr3206 bool = false + yyq3206[0] = len(x.Capacity) != 0 + var yynn3206 int + if yyr3206 || yy2arr3206 { r.EncodeArrayStart(1) } else { - yynn3153 = 0 - for _, b := range yyq3153 { + yynn3206 = 0 + for _, b := range yyq3206 { if b { - yynn3153++ + yynn3206++ } } - r.EncodeMapStart(yynn3153) - yynn3153 = 0 + r.EncodeMapStart(yynn3206) + yynn3206 = 0 } - if yyr3153 || yy2arr3153 { + if yyr3206 || yy2arr3206 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3153[0] { + if yyq3206[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -40312,7 +41019,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3153[0] { + if yyq3206[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -40323,7 +41030,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3153 || yy2arr3153 { + if yyr3206 || yy2arr3206 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40336,25 +41043,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3155 := z.DecBinary() - _ = yym3155 + yym3208 := z.DecBinary() + _ = yym3208 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3156 := r.ContainerType() - if yyct3156 == codecSelferValueTypeMap1234 { - yyl3156 := r.ReadMapStart() - if yyl3156 == 0 { + yyct3209 := r.ContainerType() + if yyct3209 == codecSelferValueTypeMap1234 { + yyl3209 := r.ReadMapStart() + if yyl3209 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3156, d) + x.codecDecodeSelfFromMap(yyl3209, d) } - } else if yyct3156 == codecSelferValueTypeArray1234 { - yyl3156 := r.ReadArrayStart() - if yyl3156 == 0 { + } else if yyct3209 == codecSelferValueTypeArray1234 { + yyl3209 := r.ReadArrayStart() + if yyl3209 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3156, d) + x.codecDecodeSelfFromArray(yyl3209, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40366,12 +41073,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3157Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3157Slc - var yyhl3157 bool = l >= 0 - for yyj3157 := 0; ; yyj3157++ { - if yyhl3157 { - if yyj3157 >= l { + var yys3210Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3210Slc + var yyhl3210 bool = l >= 0 + for yyj3210 := 0; ; yyj3210++ { + if yyhl3210 { + if yyj3210 >= l { break } } else { @@ -40380,21 +41087,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3157Slc = r.DecodeBytes(yys3157Slc, true, true) - yys3157 := string(yys3157Slc) + yys3210Slc = r.DecodeBytes(yys3210Slc, true, true) + yys3210 := string(yys3210Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3157 { + switch yys3210 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3158 := &x.Capacity - yyv3158.CodecDecodeSelf(d) + yyv3211 := &x.Capacity + yyv3211.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3157) - } // end switch yys3157 - } // end for yyj3157 + z.DecStructFieldNotFound(-1, yys3210) + } // end switch yys3210 + } // end for yyj3210 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40402,16 +41109,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3159 int - var yyb3159 bool - var yyhl3159 bool = l >= 0 - yyj3159++ - if yyhl3159 { - yyb3159 = yyj3159 > l + var yyj3212 int + var yyb3212 bool + var yyhl3212 bool = l >= 0 + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3159 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3159 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40419,21 +41126,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3160 := &x.Capacity - yyv3160.CodecDecodeSelf(d) + yyv3213 := &x.Capacity + yyv3213.CodecDecodeSelf(d) } for { - yyj3159++ - if yyhl3159 { - yyb3159 = yyj3159 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3159 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3159 { + if yyb3212 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3159-1, "") + z.DecStructFieldNotFound(yyj3212-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40442,8 +41149,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3161 := z.EncBinary() - _ = yym3161 + yym3214 := z.EncBinary() + _ = yym3214 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40455,8 +41162,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3162 := z.DecBinary() - _ = yym3162 + yym3215 := z.DecBinary() + _ = yym3215 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40471,8 +41178,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3163 := z.EncBinary() - _ = yym3163 + yym3216 := z.EncBinary() + _ = yym3216 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40485,8 +41192,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3164 := z.DecBinary() - _ = yym3164 + yym3217 := z.DecBinary() + _ = yym3217 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40501,39 +41208,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3165 := z.EncBinary() - _ = yym3165 + yym3218 := z.EncBinary() + _ = yym3218 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3166 := !z.EncBinary() - yy2arr3166 := z.EncBasicHandle().StructToArray - var yyq3166 [5]bool - _, _, _ = yysep3166, yyq3166, yy2arr3166 - const yyr3166 bool = false - yyq3166[0] = x.Kind != "" - yyq3166[1] = x.APIVersion != "" - yyq3166[2] = true - yyq3166[3] = true - yyq3166[4] = true - var yynn3166 int - if yyr3166 || yy2arr3166 { + yysep3219 := !z.EncBinary() + yy2arr3219 := z.EncBasicHandle().StructToArray + var yyq3219 [5]bool + _, _, _ = yysep3219, yyq3219, yy2arr3219 + const yyr3219 bool = false + yyq3219[0] = x.Kind != "" + yyq3219[1] = x.APIVersion != "" + yyq3219[2] = true + yyq3219[3] = true + yyq3219[4] = true + var yynn3219 int + if yyr3219 || yy2arr3219 { r.EncodeArrayStart(5) } else { - yynn3166 = 0 - for _, b := range yyq3166 { + yynn3219 = 0 + for _, b := range yyq3219 { if b { - yynn3166++ + yynn3219++ } } - r.EncodeMapStart(yynn3166) - yynn3166 = 0 + r.EncodeMapStart(yynn3219) + yynn3219 = 0 } - if yyr3166 || yy2arr3166 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[0] { - yym3168 := z.EncBinary() - _ = yym3168 + if yyq3219[0] { + yym3221 := z.EncBinary() + _ = yym3221 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40542,23 +41249,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3166[0] { + if yyq3219[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3169 := z.EncBinary() - _ = yym3169 + yym3222 := z.EncBinary() + _ = yym3222 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3166 || yy2arr3166 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[1] { - yym3171 := z.EncBinary() - _ = yym3171 + if yyq3219[1] { + yym3224 := z.EncBinary() + _ = yym3224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40567,70 +41274,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3166[1] { + if yyq3219[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3172 := z.EncBinary() - _ = yym3172 + yym3225 := z.EncBinary() + _ = yym3225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3166 || yy2arr3166 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[2] { - yy3174 := &x.ObjectMeta - yy3174.CodecEncodeSelf(e) + if yyq3219[2] { + yy3227 := &x.ObjectMeta + yy3227.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3166[2] { + if yyq3219[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3175 := &x.ObjectMeta - yy3175.CodecEncodeSelf(e) + yy3228 := &x.ObjectMeta + yy3228.CodecEncodeSelf(e) } } - if yyr3166 || yy2arr3166 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[3] { - yy3177 := &x.Spec - yy3177.CodecEncodeSelf(e) + if yyq3219[3] { + yy3230 := &x.Spec + yy3230.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3166[3] { + if yyq3219[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3178 := &x.Spec - yy3178.CodecEncodeSelf(e) + yy3231 := &x.Spec + yy3231.CodecEncodeSelf(e) } } - if yyr3166 || yy2arr3166 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[4] { - yy3180 := &x.Status - yy3180.CodecEncodeSelf(e) + if yyq3219[4] { + yy3233 := &x.Status + yy3233.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3166[4] { + if yyq3219[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3181 := &x.Status - yy3181.CodecEncodeSelf(e) + yy3234 := &x.Status + yy3234.CodecEncodeSelf(e) } } - if yyr3166 || yy2arr3166 { + if yyr3219 || yy2arr3219 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40643,25 +41350,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3182 := z.DecBinary() - _ = yym3182 + yym3235 := z.DecBinary() + _ = yym3235 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3183 := r.ContainerType() - if yyct3183 == codecSelferValueTypeMap1234 { - yyl3183 := r.ReadMapStart() - if yyl3183 == 0 { + yyct3236 := r.ContainerType() + if yyct3236 == codecSelferValueTypeMap1234 { + yyl3236 := r.ReadMapStart() + if yyl3236 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3183, d) + x.codecDecodeSelfFromMap(yyl3236, d) } - } else if yyct3183 == codecSelferValueTypeArray1234 { - yyl3183 := r.ReadArrayStart() - if yyl3183 == 0 { + } else if yyct3236 == codecSelferValueTypeArray1234 { + yyl3236 := r.ReadArrayStart() + if yyl3236 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3183, d) + x.codecDecodeSelfFromArray(yyl3236, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40673,12 +41380,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3184Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3184Slc - var yyhl3184 bool = l >= 0 - for yyj3184 := 0; ; yyj3184++ { - if yyhl3184 { - if yyj3184 >= l { + var yys3237Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3237Slc + var yyhl3237 bool = l >= 0 + for yyj3237 := 0; ; yyj3237++ { + if yyhl3237 { + if yyj3237 >= l { break } } else { @@ -40687,10 +41394,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3184Slc = r.DecodeBytes(yys3184Slc, true, true) - yys3184 := string(yys3184Slc) + yys3237Slc = r.DecodeBytes(yys3237Slc, true, true) + yys3237 := string(yys3237Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3184 { + switch yys3237 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40707,27 +41414,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3187 := &x.ObjectMeta - yyv3187.CodecDecodeSelf(d) + yyv3240 := &x.ObjectMeta + yyv3240.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3188 := &x.Spec - yyv3188.CodecDecodeSelf(d) + yyv3241 := &x.Spec + yyv3241.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3189 := &x.Status - yyv3189.CodecDecodeSelf(d) + yyv3242 := &x.Status + yyv3242.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3184) - } // end switch yys3184 - } // end for yyj3184 + z.DecStructFieldNotFound(-1, yys3237) + } // end switch yys3237 + } // end for yyj3237 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40735,16 +41442,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3190 int - var yyb3190 bool - var yyhl3190 bool = l >= 0 - yyj3190++ - if yyhl3190 { - yyb3190 = yyj3190 > l + var yyj3243 int + var yyb3243 bool + var yyhl3243 bool = l >= 0 + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3190 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3190 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40754,13 +41461,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3190++ - if yyhl3190 { - yyb3190 = yyj3190 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3190 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3190 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40770,13 +41477,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3190++ - if yyhl3190 { - yyb3190 = yyj3190 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3190 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3190 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40784,16 +41491,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3193 := &x.ObjectMeta - yyv3193.CodecDecodeSelf(d) + yyv3246 := &x.ObjectMeta + yyv3246.CodecDecodeSelf(d) } - yyj3190++ - if yyhl3190 { - yyb3190 = yyj3190 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3190 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3190 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40801,16 +41508,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3194 := &x.Spec - yyv3194.CodecDecodeSelf(d) + yyv3247 := &x.Spec + yyv3247.CodecDecodeSelf(d) } - yyj3190++ - if yyhl3190 { - yyb3190 = yyj3190 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3190 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3190 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40818,21 +41525,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3195 := &x.Status - yyv3195.CodecDecodeSelf(d) + yyv3248 := &x.Status + yyv3248.CodecDecodeSelf(d) } for { - yyj3190++ - if yyhl3190 { - yyb3190 = yyj3190 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3190 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3190 { + if yyb3243 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3190-1, "") + z.DecStructFieldNotFound(yyj3243-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40844,37 +41551,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3196 := z.EncBinary() - _ = yym3196 + yym3249 := z.EncBinary() + _ = yym3249 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3197 := !z.EncBinary() - yy2arr3197 := z.EncBasicHandle().StructToArray - var yyq3197 [4]bool - _, _, _ = yysep3197, yyq3197, yy2arr3197 - const yyr3197 bool = false - yyq3197[0] = x.Kind != "" - yyq3197[1] = x.APIVersion != "" - yyq3197[2] = true - var yynn3197 int - if yyr3197 || yy2arr3197 { + yysep3250 := !z.EncBinary() + yy2arr3250 := z.EncBasicHandle().StructToArray + var yyq3250 [4]bool + _, _, _ = yysep3250, yyq3250, yy2arr3250 + const yyr3250 bool = false + yyq3250[0] = x.Kind != "" + yyq3250[1] = x.APIVersion != "" + yyq3250[2] = true + var yynn3250 int + if yyr3250 || yy2arr3250 { r.EncodeArrayStart(4) } else { - yynn3197 = 1 - for _, b := range yyq3197 { + yynn3250 = 1 + for _, b := range yyq3250 { if b { - yynn3197++ + yynn3250++ } } - r.EncodeMapStart(yynn3197) - yynn3197 = 0 + r.EncodeMapStart(yynn3250) + yynn3250 = 0 } - if yyr3197 || yy2arr3197 { + if yyr3250 || yy2arr3250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[0] { - yym3199 := z.EncBinary() - _ = yym3199 + if yyq3250[0] { + yym3252 := z.EncBinary() + _ = yym3252 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40883,23 +41590,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3197[0] { + if yyq3250[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3200 := z.EncBinary() - _ = yym3200 + yym3253 := z.EncBinary() + _ = yym3253 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3197 || yy2arr3197 { + if yyr3250 || yy2arr3250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[1] { - yym3202 := z.EncBinary() - _ = yym3202 + if yyq3250[1] { + yym3255 := z.EncBinary() + _ = yym3255 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40908,54 +41615,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3197[1] { + if yyq3250[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3203 := z.EncBinary() - _ = yym3203 + yym3256 := z.EncBinary() + _ = yym3256 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3197 || yy2arr3197 { + if yyr3250 || yy2arr3250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3197[2] { - yy3205 := &x.ListMeta - yym3206 := z.EncBinary() - _ = yym3206 + if yyq3250[2] { + yy3258 := &x.ListMeta + yym3259 := z.EncBinary() + _ = yym3259 if false { - } else if z.HasExtensions() && z.EncExt(yy3205) { + } else if z.HasExtensions() && z.EncExt(yy3258) { } else { - z.EncFallback(yy3205) + z.EncFallback(yy3258) } } else { r.EncodeNil() } } else { - if yyq3197[2] { + if yyq3250[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3207 := &x.ListMeta - yym3208 := z.EncBinary() - _ = yym3208 + yy3260 := &x.ListMeta + yym3261 := z.EncBinary() + _ = yym3261 if false { - } else if z.HasExtensions() && z.EncExt(yy3207) { + } else if z.HasExtensions() && z.EncExt(yy3260) { } else { - z.EncFallback(yy3207) + z.EncFallback(yy3260) } } } - if yyr3197 || yy2arr3197 { + if yyr3250 || yy2arr3250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3210 := z.EncBinary() - _ = yym3210 + yym3263 := z.EncBinary() + _ = yym3263 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -40968,15 +41675,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3211 := z.EncBinary() - _ = yym3211 + yym3264 := z.EncBinary() + _ = yym3264 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3197 || yy2arr3197 { + if yyr3250 || yy2arr3250 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40989,25 +41696,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3212 := z.DecBinary() - _ = yym3212 + yym3265 := z.DecBinary() + _ = yym3265 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3213 := r.ContainerType() - if yyct3213 == codecSelferValueTypeMap1234 { - yyl3213 := r.ReadMapStart() - if yyl3213 == 0 { + yyct3266 := r.ContainerType() + if yyct3266 == codecSelferValueTypeMap1234 { + yyl3266 := r.ReadMapStart() + if yyl3266 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3213, d) + x.codecDecodeSelfFromMap(yyl3266, d) } - } else if yyct3213 == codecSelferValueTypeArray1234 { - yyl3213 := r.ReadArrayStart() - if yyl3213 == 0 { + } else if yyct3266 == codecSelferValueTypeArray1234 { + yyl3266 := r.ReadArrayStart() + if yyl3266 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3213, d) + x.codecDecodeSelfFromArray(yyl3266, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41019,12 +41726,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3214Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3214Slc - var yyhl3214 bool = l >= 0 - for yyj3214 := 0; ; yyj3214++ { - if yyhl3214 { - if yyj3214 >= l { + var yys3267Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3267Slc + var yyhl3267 bool = l >= 0 + for yyj3267 := 0; ; yyj3267++ { + if yyhl3267 { + if yyj3267 >= l { break } } else { @@ -41033,10 +41740,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3214Slc = r.DecodeBytes(yys3214Slc, true, true) - yys3214 := string(yys3214Slc) + yys3267Slc = r.DecodeBytes(yys3267Slc, true, true) + yys3267 := string(yys3267Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3214 { + switch yys3267 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41053,31 +41760,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3217 := &x.ListMeta - yym3218 := z.DecBinary() - _ = yym3218 + yyv3270 := &x.ListMeta + yym3271 := z.DecBinary() + _ = yym3271 if false { - } else if z.HasExtensions() && z.DecExt(yyv3217) { + } else if z.HasExtensions() && z.DecExt(yyv3270) { } else { - z.DecFallback(yyv3217, false) + z.DecFallback(yyv3270, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3219 := &x.Items - yym3220 := z.DecBinary() - _ = yym3220 + yyv3272 := &x.Items + yym3273 := z.DecBinary() + _ = yym3273 if false { } else { - h.decSliceNode((*[]Node)(yyv3219), d) + h.decSliceNode((*[]Node)(yyv3272), d) } } default: - z.DecStructFieldNotFound(-1, yys3214) - } // end switch yys3214 - } // end for yyj3214 + z.DecStructFieldNotFound(-1, yys3267) + } // end switch yys3267 + } // end for yyj3267 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41085,16 +41792,16 @@ func (x *NodeList) 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 yyj3274 int + var yyb3274 bool + var yyhl3274 bool = l >= 0 + yyj3274++ + if yyhl3274 { + yyb3274 = yyj3274 > l } else { - yyb3221 = r.CheckBreak() + yyb3274 = r.CheckBreak() } - if yyb3221 { + if yyb3274 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41104,13 +41811,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3274++ + if yyhl3274 { + yyb3274 = yyj3274 > l } else { - yyb3221 = r.CheckBreak() + yyb3274 = r.CheckBreak() } - if yyb3221 { + if yyb3274 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41120,13 +41827,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3274++ + if yyhl3274 { + yyb3274 = yyj3274 > l } else { - yyb3221 = r.CheckBreak() + yyb3274 = r.CheckBreak() } - if yyb3221 { + if yyb3274 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41134,22 +41841,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3224 := &x.ListMeta - yym3225 := z.DecBinary() - _ = yym3225 + yyv3277 := &x.ListMeta + yym3278 := z.DecBinary() + _ = yym3278 if false { - } else if z.HasExtensions() && z.DecExt(yyv3224) { + } else if z.HasExtensions() && z.DecExt(yyv3277) { } else { - z.DecFallback(yyv3224, false) + z.DecFallback(yyv3277, false) } } - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3274++ + if yyhl3274 { + yyb3274 = yyj3274 > l } else { - yyb3221 = r.CheckBreak() + yyb3274 = r.CheckBreak() } - if yyb3221 { + if yyb3274 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41157,26 +41864,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3226 := &x.Items - yym3227 := z.DecBinary() - _ = yym3227 + yyv3279 := &x.Items + yym3280 := z.DecBinary() + _ = yym3280 if false { } else { - h.decSliceNode((*[]Node)(yyv3226), d) + h.decSliceNode((*[]Node)(yyv3279), d) } } for { - yyj3221++ - if yyhl3221 { - yyb3221 = yyj3221 > l + yyj3274++ + if yyhl3274 { + yyb3274 = yyj3274 > l } else { - yyb3221 = r.CheckBreak() + yyb3274 = r.CheckBreak() } - if yyb3221 { + if yyb3274 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3221-1, "") + z.DecStructFieldNotFound(yyj3274-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41188,36 +41895,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3228 := z.EncBinary() - _ = yym3228 + yym3281 := z.EncBinary() + _ = yym3281 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3229 := !z.EncBinary() - yy2arr3229 := z.EncBasicHandle().StructToArray - var yyq3229 [1]bool - _, _, _ = yysep3229, yyq3229, yy2arr3229 - const yyr3229 bool = false - var yynn3229 int - if yyr3229 || yy2arr3229 { + yysep3282 := !z.EncBinary() + yy2arr3282 := z.EncBasicHandle().StructToArray + var yyq3282 [1]bool + _, _, _ = yysep3282, yyq3282, yy2arr3282 + const yyr3282 bool = false + var yynn3282 int + if yyr3282 || yy2arr3282 { r.EncodeArrayStart(1) } else { - yynn3229 = 1 - for _, b := range yyq3229 { + yynn3282 = 1 + for _, b := range yyq3282 { if b { - yynn3229++ + yynn3282++ } } - r.EncodeMapStart(yynn3229) - yynn3229 = 0 + r.EncodeMapStart(yynn3282) + yynn3282 = 0 } - if yyr3229 || yy2arr3229 { + if yyr3282 || yy2arr3282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3231 := z.EncBinary() - _ = yym3231 + yym3284 := z.EncBinary() + _ = yym3284 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -41230,15 +41937,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym3232 := z.EncBinary() - _ = yym3232 + yym3285 := z.EncBinary() + _ = yym3285 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr3229 || yy2arr3229 { + if yyr3282 || yy2arr3282 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41251,25 +41958,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3233 := z.DecBinary() - _ = yym3233 + yym3286 := z.DecBinary() + _ = yym3286 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3234 := r.ContainerType() - if yyct3234 == codecSelferValueTypeMap1234 { - yyl3234 := r.ReadMapStart() - if yyl3234 == 0 { + yyct3287 := r.ContainerType() + if yyct3287 == codecSelferValueTypeMap1234 { + yyl3287 := r.ReadMapStart() + if yyl3287 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3234, d) + x.codecDecodeSelfFromMap(yyl3287, d) } - } else if yyct3234 == codecSelferValueTypeArray1234 { - yyl3234 := r.ReadArrayStart() - if yyl3234 == 0 { + } else if yyct3287 == codecSelferValueTypeArray1234 { + yyl3287 := r.ReadArrayStart() + if yyl3287 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3234, d) + x.codecDecodeSelfFromArray(yyl3287, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41281,12 +41988,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3235Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3235Slc - var yyhl3235 bool = l >= 0 - for yyj3235 := 0; ; yyj3235++ { - if yyhl3235 { - if yyj3235 >= 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 { @@ -41295,26 +42002,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3235Slc = r.DecodeBytes(yys3235Slc, true, true) - yys3235 := string(yys3235Slc) + yys3288Slc = r.DecodeBytes(yys3288Slc, true, true) + yys3288 := string(yys3288Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3235 { + switch yys3288 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3236 := &x.Finalizers - yym3237 := z.DecBinary() - _ = yym3237 + yyv3289 := &x.Finalizers + yym3290 := z.DecBinary() + _ = yym3290 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3236), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3289), d) } } default: - z.DecStructFieldNotFound(-1, yys3235) - } // end switch yys3235 - } // end for yyj3235 + z.DecStructFieldNotFound(-1, yys3288) + } // end switch yys3288 + } // end for yyj3288 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41322,16 +42029,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3238 int - var yyb3238 bool - var yyhl3238 bool = l >= 0 - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + var yyj3291 int + var yyb3291 bool + var yyhl3291 bool = l >= 0 + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l } else { - yyb3238 = r.CheckBreak() + yyb3291 = r.CheckBreak() } - if yyb3238 { + if yyb3291 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41339,26 +42046,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3239 := &x.Finalizers - yym3240 := z.DecBinary() - _ = yym3240 + yyv3292 := &x.Finalizers + yym3293 := z.DecBinary() + _ = yym3293 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3239), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3292), d) } } for { - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l } else { - yyb3238 = r.CheckBreak() + yyb3291 = r.CheckBreak() } - if yyb3238 { + if yyb3291 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3238-1, "") + z.DecStructFieldNotFound(yyj3291-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41367,8 +42074,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3241 := z.EncBinary() - _ = yym3241 + yym3294 := z.EncBinary() + _ = yym3294 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41380,8 +42087,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3242 := z.DecBinary() - _ = yym3242 + yym3295 := z.DecBinary() + _ = yym3295 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41396,46 +42103,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3243 := z.EncBinary() - _ = yym3243 + yym3296 := z.EncBinary() + _ = yym3296 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3244 := !z.EncBinary() - yy2arr3244 := z.EncBasicHandle().StructToArray - var yyq3244 [1]bool - _, _, _ = yysep3244, yyq3244, yy2arr3244 - const yyr3244 bool = false - yyq3244[0] = x.Phase != "" - var yynn3244 int - if yyr3244 || yy2arr3244 { + yysep3297 := !z.EncBinary() + yy2arr3297 := z.EncBasicHandle().StructToArray + var yyq3297 [1]bool + _, _, _ = yysep3297, yyq3297, yy2arr3297 + const yyr3297 bool = false + yyq3297[0] = x.Phase != "" + var yynn3297 int + if yyr3297 || yy2arr3297 { r.EncodeArrayStart(1) } else { - yynn3244 = 0 - for _, b := range yyq3244 { + yynn3297 = 0 + for _, b := range yyq3297 { if b { - yynn3244++ + yynn3297++ } } - r.EncodeMapStart(yynn3244) - yynn3244 = 0 + r.EncodeMapStart(yynn3297) + yynn3297 = 0 } - if yyr3244 || yy2arr3244 { + if yyr3297 || yy2arr3297 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3244[0] { + if yyq3297[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3244[0] { + if yyq3297[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3244 || yy2arr3244 { + if yyr3297 || yy2arr3297 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41448,25 +42155,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3246 := z.DecBinary() - _ = yym3246 + yym3299 := z.DecBinary() + _ = yym3299 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3247 := r.ContainerType() - if yyct3247 == codecSelferValueTypeMap1234 { - yyl3247 := r.ReadMapStart() - if yyl3247 == 0 { + yyct3300 := r.ContainerType() + if yyct3300 == codecSelferValueTypeMap1234 { + yyl3300 := r.ReadMapStart() + if yyl3300 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3247, d) + x.codecDecodeSelfFromMap(yyl3300, d) } - } else if yyct3247 == codecSelferValueTypeArray1234 { - yyl3247 := r.ReadArrayStart() - if yyl3247 == 0 { + } else if yyct3300 == codecSelferValueTypeArray1234 { + yyl3300 := r.ReadArrayStart() + if yyl3300 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3247, d) + x.codecDecodeSelfFromArray(yyl3300, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41478,12 +42185,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3248Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3248Slc - var yyhl3248 bool = l >= 0 - for yyj3248 := 0; ; yyj3248++ { - if yyhl3248 { - if yyj3248 >= l { + var yys3301Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3301Slc + var yyhl3301 bool = l >= 0 + for yyj3301 := 0; ; yyj3301++ { + if yyhl3301 { + if yyj3301 >= l { break } } else { @@ -41492,10 +42199,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3248Slc = r.DecodeBytes(yys3248Slc, true, true) - yys3248 := string(yys3248Slc) + yys3301Slc = r.DecodeBytes(yys3301Slc, true, true) + yys3301 := string(yys3301Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3248 { + switch yys3301 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -41503,9 +42210,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3248) - } // end switch yys3248 - } // end for yyj3248 + z.DecStructFieldNotFound(-1, yys3301) + } // end switch yys3301 + } // end for yyj3301 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41513,16 +42220,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3250 int - var yyb3250 bool - var yyhl3250 bool = l >= 0 - yyj3250++ - if yyhl3250 { - yyb3250 = yyj3250 > l + var yyj3303 int + var yyb3303 bool + var yyhl3303 bool = l >= 0 + yyj3303++ + if yyhl3303 { + yyb3303 = yyj3303 > l } else { - yyb3250 = r.CheckBreak() + yyb3303 = r.CheckBreak() } - if yyb3250 { + if yyb3303 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41533,17 +42240,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3250++ - if yyhl3250 { - yyb3250 = yyj3250 > l + yyj3303++ + if yyhl3303 { + yyb3303 = yyj3303 > l } else { - yyb3250 = r.CheckBreak() + yyb3303 = r.CheckBreak() } - if yyb3250 { + if yyb3303 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3250-1, "") + z.DecStructFieldNotFound(yyj3303-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41552,8 +42259,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3252 := z.EncBinary() - _ = yym3252 + yym3305 := z.EncBinary() + _ = yym3305 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41565,8 +42272,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3253 := z.DecBinary() - _ = yym3253 + yym3306 := z.DecBinary() + _ = yym3306 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41581,39 +42288,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3254 := z.EncBinary() - _ = yym3254 + yym3307 := z.EncBinary() + _ = yym3307 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3255 := !z.EncBinary() - yy2arr3255 := z.EncBasicHandle().StructToArray - var yyq3255 [5]bool - _, _, _ = yysep3255, yyq3255, yy2arr3255 - const yyr3255 bool = false - yyq3255[0] = x.Kind != "" - yyq3255[1] = x.APIVersion != "" - yyq3255[2] = true - yyq3255[3] = true - yyq3255[4] = true - var yynn3255 int - if yyr3255 || yy2arr3255 { + yysep3308 := !z.EncBinary() + yy2arr3308 := z.EncBasicHandle().StructToArray + var yyq3308 [5]bool + _, _, _ = yysep3308, yyq3308, yy2arr3308 + const yyr3308 bool = false + yyq3308[0] = x.Kind != "" + yyq3308[1] = x.APIVersion != "" + yyq3308[2] = true + yyq3308[3] = true + yyq3308[4] = true + var yynn3308 int + if yyr3308 || yy2arr3308 { r.EncodeArrayStart(5) } else { - yynn3255 = 0 - for _, b := range yyq3255 { + yynn3308 = 0 + for _, b := range yyq3308 { if b { - yynn3255++ + yynn3308++ } } - r.EncodeMapStart(yynn3255) - yynn3255 = 0 + r.EncodeMapStart(yynn3308) + yynn3308 = 0 } - if yyr3255 || yy2arr3255 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3255[0] { - yym3257 := z.EncBinary() - _ = yym3257 + if yyq3308[0] { + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41622,23 +42329,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3255[0] { + if yyq3308[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3258 := z.EncBinary() - _ = yym3258 + yym3311 := z.EncBinary() + _ = yym3311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3255 || yy2arr3255 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3255[1] { - yym3260 := z.EncBinary() - _ = yym3260 + if yyq3308[1] { + yym3313 := z.EncBinary() + _ = yym3313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41647,70 +42354,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3255[1] { + if yyq3308[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3261 := z.EncBinary() - _ = yym3261 + yym3314 := z.EncBinary() + _ = yym3314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3255 || yy2arr3255 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3255[2] { - yy3263 := &x.ObjectMeta - yy3263.CodecEncodeSelf(e) + if yyq3308[2] { + yy3316 := &x.ObjectMeta + yy3316.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3255[2] { + if yyq3308[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3264 := &x.ObjectMeta - yy3264.CodecEncodeSelf(e) + yy3317 := &x.ObjectMeta + yy3317.CodecEncodeSelf(e) } } - if yyr3255 || yy2arr3255 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3255[3] { - yy3266 := &x.Spec - yy3266.CodecEncodeSelf(e) + if yyq3308[3] { + yy3319 := &x.Spec + yy3319.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3255[3] { + if yyq3308[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3267 := &x.Spec - yy3267.CodecEncodeSelf(e) + yy3320 := &x.Spec + yy3320.CodecEncodeSelf(e) } } - if yyr3255 || yy2arr3255 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3255[4] { - yy3269 := &x.Status - yy3269.CodecEncodeSelf(e) + if yyq3308[4] { + yy3322 := &x.Status + yy3322.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3255[4] { + if yyq3308[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3270 := &x.Status - yy3270.CodecEncodeSelf(e) + yy3323 := &x.Status + yy3323.CodecEncodeSelf(e) } } - if yyr3255 || yy2arr3255 { + if yyr3308 || yy2arr3308 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41723,25 +42430,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3271 := z.DecBinary() - _ = yym3271 + yym3324 := z.DecBinary() + _ = yym3324 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3272 := r.ContainerType() - if yyct3272 == codecSelferValueTypeMap1234 { - yyl3272 := r.ReadMapStart() - if yyl3272 == 0 { + yyct3325 := r.ContainerType() + if yyct3325 == codecSelferValueTypeMap1234 { + yyl3325 := r.ReadMapStart() + if yyl3325 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3272, d) + x.codecDecodeSelfFromMap(yyl3325, d) } - } else if yyct3272 == codecSelferValueTypeArray1234 { - yyl3272 := r.ReadArrayStart() - if yyl3272 == 0 { + } else if yyct3325 == codecSelferValueTypeArray1234 { + yyl3325 := r.ReadArrayStart() + if yyl3325 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3272, d) + x.codecDecodeSelfFromArray(yyl3325, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41753,12 +42460,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3273Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3273Slc - var yyhl3273 bool = l >= 0 - for yyj3273 := 0; ; yyj3273++ { - if yyhl3273 { - if yyj3273 >= l { + var yys3326Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3326Slc + var yyhl3326 bool = l >= 0 + for yyj3326 := 0; ; yyj3326++ { + if yyhl3326 { + if yyj3326 >= l { break } } else { @@ -41767,10 +42474,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3273Slc = r.DecodeBytes(yys3273Slc, true, true) - yys3273 := string(yys3273Slc) + yys3326Slc = r.DecodeBytes(yys3326Slc, true, true) + yys3326 := string(yys3326Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3273 { + switch yys3326 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41787,27 +42494,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3276 := &x.ObjectMeta - yyv3276.CodecDecodeSelf(d) + yyv3329 := &x.ObjectMeta + yyv3329.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3277 := &x.Spec - yyv3277.CodecDecodeSelf(d) + yyv3330 := &x.Spec + yyv3330.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3278 := &x.Status - yyv3278.CodecDecodeSelf(d) + yyv3331 := &x.Status + yyv3331.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3273) - } // end switch yys3273 - } // end for yyj3273 + z.DecStructFieldNotFound(-1, yys3326) + } // end switch yys3326 + } // end for yyj3326 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41815,16 +42522,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3279 int - var yyb3279 bool - var yyhl3279 bool = l >= 0 - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + var yyj3332 int + var yyb3332 bool + var yyhl3332 bool = l >= 0 + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3279 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3279 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41834,13 +42541,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3279 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3279 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41850,13 +42557,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3279 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3279 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41864,16 +42571,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3282 := &x.ObjectMeta - yyv3282.CodecDecodeSelf(d) + yyv3335 := &x.ObjectMeta + yyv3335.CodecDecodeSelf(d) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3279 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3279 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41881,16 +42588,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3283 := &x.Spec - yyv3283.CodecDecodeSelf(d) + yyv3336 := &x.Spec + yyv3336.CodecDecodeSelf(d) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3279 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3279 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41898,21 +42605,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3284 := &x.Status - yyv3284.CodecDecodeSelf(d) + yyv3337 := &x.Status + yyv3337.CodecDecodeSelf(d) } for { - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3279 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3279 { + if yyb3332 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3279-1, "") + z.DecStructFieldNotFound(yyj3332-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41924,37 +42631,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3285 := z.EncBinary() - _ = yym3285 + yym3338 := z.EncBinary() + _ = yym3338 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3286 := !z.EncBinary() - yy2arr3286 := z.EncBasicHandle().StructToArray - var yyq3286 [4]bool - _, _, _ = yysep3286, yyq3286, yy2arr3286 - const yyr3286 bool = false - yyq3286[0] = x.Kind != "" - yyq3286[1] = x.APIVersion != "" - yyq3286[2] = true - var yynn3286 int - if yyr3286 || yy2arr3286 { + yysep3339 := !z.EncBinary() + yy2arr3339 := z.EncBasicHandle().StructToArray + var yyq3339 [4]bool + _, _, _ = yysep3339, yyq3339, yy2arr3339 + const yyr3339 bool = false + yyq3339[0] = x.Kind != "" + yyq3339[1] = x.APIVersion != "" + yyq3339[2] = true + var yynn3339 int + if yyr3339 || yy2arr3339 { r.EncodeArrayStart(4) } else { - yynn3286 = 1 - for _, b := range yyq3286 { + yynn3339 = 1 + for _, b := range yyq3339 { if b { - yynn3286++ + yynn3339++ } } - r.EncodeMapStart(yynn3286) - yynn3286 = 0 + r.EncodeMapStart(yynn3339) + yynn3339 = 0 } - if yyr3286 || yy2arr3286 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3286[0] { - yym3288 := z.EncBinary() - _ = yym3288 + if yyq3339[0] { + yym3341 := z.EncBinary() + _ = yym3341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41963,23 +42670,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3286[0] { + if yyq3339[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3289 := z.EncBinary() - _ = yym3289 + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3286 || yy2arr3286 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3286[1] { - yym3291 := z.EncBinary() - _ = yym3291 + if yyq3339[1] { + yym3344 := z.EncBinary() + _ = yym3344 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41988,54 +42695,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3286[1] { + if yyq3339[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3292 := z.EncBinary() - _ = yym3292 + yym3345 := z.EncBinary() + _ = yym3345 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3286 || yy2arr3286 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3286[2] { - yy3294 := &x.ListMeta - yym3295 := z.EncBinary() - _ = yym3295 + if yyq3339[2] { + yy3347 := &x.ListMeta + yym3348 := z.EncBinary() + _ = yym3348 if false { - } else if z.HasExtensions() && z.EncExt(yy3294) { + } else if z.HasExtensions() && z.EncExt(yy3347) { } else { - z.EncFallback(yy3294) + z.EncFallback(yy3347) } } else { r.EncodeNil() } } else { - if yyq3286[2] { + if yyq3339[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3296 := &x.ListMeta - yym3297 := z.EncBinary() - _ = yym3297 + yy3349 := &x.ListMeta + yym3350 := z.EncBinary() + _ = yym3350 if false { - } else if z.HasExtensions() && z.EncExt(yy3296) { + } else if z.HasExtensions() && z.EncExt(yy3349) { } else { - z.EncFallback(yy3296) + z.EncFallback(yy3349) } } } - if yyr3286 || yy2arr3286 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3299 := z.EncBinary() - _ = yym3299 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -42048,15 +42755,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3300 := z.EncBinary() - _ = yym3300 + yym3353 := z.EncBinary() + _ = yym3353 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3286 || yy2arr3286 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42069,25 +42776,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3301 := z.DecBinary() - _ = yym3301 + yym3354 := z.DecBinary() + _ = yym3354 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3302 := r.ContainerType() - if yyct3302 == codecSelferValueTypeMap1234 { - yyl3302 := r.ReadMapStart() - if yyl3302 == 0 { + yyct3355 := r.ContainerType() + if yyct3355 == codecSelferValueTypeMap1234 { + yyl3355 := r.ReadMapStart() + if yyl3355 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3302, d) + x.codecDecodeSelfFromMap(yyl3355, d) } - } else if yyct3302 == codecSelferValueTypeArray1234 { - yyl3302 := r.ReadArrayStart() - if yyl3302 == 0 { + } else if yyct3355 == codecSelferValueTypeArray1234 { + yyl3355 := r.ReadArrayStart() + if yyl3355 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3302, d) + x.codecDecodeSelfFromArray(yyl3355, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42099,12 +42806,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3303Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3303Slc - var yyhl3303 bool = l >= 0 - for yyj3303 := 0; ; yyj3303++ { - if yyhl3303 { - if yyj3303 >= l { + var yys3356Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3356Slc + var yyhl3356 bool = l >= 0 + for yyj3356 := 0; ; yyj3356++ { + if yyhl3356 { + if yyj3356 >= l { break } } else { @@ -42113,10 +42820,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3303Slc = r.DecodeBytes(yys3303Slc, true, true) - yys3303 := string(yys3303Slc) + yys3356Slc = r.DecodeBytes(yys3356Slc, true, true) + yys3356 := string(yys3356Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3303 { + switch yys3356 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42133,31 +42840,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3306 := &x.ListMeta - yym3307 := z.DecBinary() - _ = yym3307 + yyv3359 := &x.ListMeta + yym3360 := z.DecBinary() + _ = yym3360 if false { - } else if z.HasExtensions() && z.DecExt(yyv3306) { + } else if z.HasExtensions() && z.DecExt(yyv3359) { } else { - z.DecFallback(yyv3306, false) + z.DecFallback(yyv3359, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3308 := &x.Items - yym3309 := z.DecBinary() - _ = yym3309 + yyv3361 := &x.Items + yym3362 := z.DecBinary() + _ = yym3362 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3308), d) + h.decSliceNamespace((*[]Namespace)(yyv3361), d) } } default: - z.DecStructFieldNotFound(-1, yys3303) - } // end switch yys3303 - } // end for yyj3303 + z.DecStructFieldNotFound(-1, yys3356) + } // end switch yys3356 + } // end for yyj3356 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42165,16 +42872,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3310 int - var yyb3310 bool - var yyhl3310 bool = l >= 0 - yyj3310++ - if yyhl3310 { - yyb3310 = yyj3310 > l + var yyj3363 int + var yyb3363 bool + var yyhl3363 bool = l >= 0 + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3310 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3310 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42184,13 +42891,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3310++ - if yyhl3310 { - yyb3310 = yyj3310 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3310 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3310 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42200,13 +42907,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3310++ - if yyhl3310 { - yyb3310 = yyj3310 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3310 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3310 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42214,22 +42921,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3313 := &x.ListMeta - yym3314 := z.DecBinary() - _ = yym3314 + yyv3366 := &x.ListMeta + yym3367 := z.DecBinary() + _ = yym3367 if false { - } else if z.HasExtensions() && z.DecExt(yyv3313) { + } else if z.HasExtensions() && z.DecExt(yyv3366) { } else { - z.DecFallback(yyv3313, false) + z.DecFallback(yyv3366, false) } } - yyj3310++ - if yyhl3310 { - yyb3310 = yyj3310 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3310 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3310 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42237,26 +42944,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3315 := &x.Items - yym3316 := z.DecBinary() - _ = yym3316 + yyv3368 := &x.Items + yym3369 := z.DecBinary() + _ = yym3369 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3315), d) + h.decSliceNamespace((*[]Namespace)(yyv3368), d) } } for { - yyj3310++ - if yyhl3310 { - yyb3310 = yyj3310 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3310 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3310 { + if yyb3363 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3310-1, "") + z.DecStructFieldNotFound(yyj3363-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42268,37 +42975,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3317 := z.EncBinary() - _ = yym3317 + yym3370 := z.EncBinary() + _ = yym3370 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3318 := !z.EncBinary() - yy2arr3318 := z.EncBasicHandle().StructToArray - var yyq3318 [4]bool - _, _, _ = yysep3318, yyq3318, yy2arr3318 - const yyr3318 bool = false - yyq3318[0] = x.Kind != "" - yyq3318[1] = x.APIVersion != "" - yyq3318[2] = true - var yynn3318 int - if yyr3318 || yy2arr3318 { + yysep3371 := !z.EncBinary() + yy2arr3371 := z.EncBasicHandle().StructToArray + var yyq3371 [4]bool + _, _, _ = yysep3371, yyq3371, yy2arr3371 + const yyr3371 bool = false + yyq3371[0] = x.Kind != "" + yyq3371[1] = x.APIVersion != "" + yyq3371[2] = true + var yynn3371 int + if yyr3371 || yy2arr3371 { r.EncodeArrayStart(4) } else { - yynn3318 = 1 - for _, b := range yyq3318 { + yynn3371 = 1 + for _, b := range yyq3371 { if b { - yynn3318++ + yynn3371++ } } - r.EncodeMapStart(yynn3318) - yynn3318 = 0 + r.EncodeMapStart(yynn3371) + yynn3371 = 0 } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[0] { - yym3320 := z.EncBinary() - _ = yym3320 + if yyq3371[0] { + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42307,23 +43014,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3318[0] { + if yyq3371[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3321 := z.EncBinary() - _ = yym3321 + yym3374 := z.EncBinary() + _ = yym3374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[1] { - yym3323 := z.EncBinary() - _ = yym3323 + if yyq3371[1] { + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42332,47 +43039,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3318[1] { + if yyq3371[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3324 := z.EncBinary() - _ = yym3324 + yym3377 := z.EncBinary() + _ = yym3377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[2] { - yy3326 := &x.ObjectMeta - yy3326.CodecEncodeSelf(e) + if yyq3371[2] { + yy3379 := &x.ObjectMeta + yy3379.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3318[2] { + if yyq3371[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3327 := &x.ObjectMeta - yy3327.CodecEncodeSelf(e) + yy3380 := &x.ObjectMeta + yy3380.CodecEncodeSelf(e) } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3329 := &x.Target - yy3329.CodecEncodeSelf(e) + yy3382 := &x.Target + yy3382.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3330 := &x.Target - yy3330.CodecEncodeSelf(e) + yy3383 := &x.Target + yy3383.CodecEncodeSelf(e) } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42385,25 +43092,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3331 := z.DecBinary() - _ = yym3331 + yym3384 := z.DecBinary() + _ = yym3384 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3332 := r.ContainerType() - if yyct3332 == codecSelferValueTypeMap1234 { - yyl3332 := r.ReadMapStart() - if yyl3332 == 0 { + yyct3385 := r.ContainerType() + if yyct3385 == codecSelferValueTypeMap1234 { + yyl3385 := r.ReadMapStart() + if yyl3385 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3332, d) + x.codecDecodeSelfFromMap(yyl3385, d) } - } else if yyct3332 == codecSelferValueTypeArray1234 { - yyl3332 := r.ReadArrayStart() - if yyl3332 == 0 { + } else if yyct3385 == codecSelferValueTypeArray1234 { + yyl3385 := r.ReadArrayStart() + if yyl3385 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3332, d) + x.codecDecodeSelfFromArray(yyl3385, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42415,12 +43122,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3333Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3333Slc - var yyhl3333 bool = l >= 0 - for yyj3333 := 0; ; yyj3333++ { - if yyhl3333 { - if yyj3333 >= l { + var yys3386Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3386Slc + var yyhl3386 bool = l >= 0 + for yyj3386 := 0; ; yyj3386++ { + if yyhl3386 { + if yyj3386 >= l { break } } else { @@ -42429,10 +43136,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3333Slc = r.DecodeBytes(yys3333Slc, true, true) - yys3333 := string(yys3333Slc) + yys3386Slc = r.DecodeBytes(yys3386Slc, true, true) + yys3386 := string(yys3386Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3333 { + switch yys3386 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42449,20 +43156,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3336 := &x.ObjectMeta - yyv3336.CodecDecodeSelf(d) + yyv3389 := &x.ObjectMeta + yyv3389.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3337 := &x.Target - yyv3337.CodecDecodeSelf(d) + yyv3390 := &x.Target + yyv3390.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3333) - } // end switch yys3333 - } // end for yyj3333 + z.DecStructFieldNotFound(-1, yys3386) + } // end switch yys3386 + } // end for yyj3386 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42470,16 +43177,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3338 int - var yyb3338 bool - var yyhl3338 bool = l >= 0 - yyj3338++ - if yyhl3338 { - yyb3338 = yyj3338 > l + var yyj3391 int + var yyb3391 bool + var yyhl3391 bool = l >= 0 + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3338 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3338 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42489,13 +43196,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3338++ - if yyhl3338 { - yyb3338 = yyj3338 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3338 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3338 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42505,13 +43212,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3338++ - if yyhl3338 { - yyb3338 = yyj3338 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3338 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3338 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42519,16 +43226,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3341 := &x.ObjectMeta - yyv3341.CodecDecodeSelf(d) + yyv3394 := &x.ObjectMeta + yyv3394.CodecDecodeSelf(d) } - yyj3338++ - if yyhl3338 { - yyb3338 = yyj3338 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3338 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3338 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42536,21 +43243,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3342 := &x.Target - yyv3342.CodecDecodeSelf(d) + yyv3395 := &x.Target + yyv3395.CodecDecodeSelf(d) } for { - yyj3338++ - if yyhl3338 { - yyb3338 = yyj3338 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3338 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3338 { + if yyb3391 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3338-1, "") + z.DecStructFieldNotFound(yyj3391-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42562,68 +43269,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3343 := z.EncBinary() - _ = yym3343 + yym3396 := z.EncBinary() + _ = yym3396 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3344 := !z.EncBinary() - yy2arr3344 := z.EncBasicHandle().StructToArray - var yyq3344 [1]bool - _, _, _ = yysep3344, yyq3344, yy2arr3344 - const yyr3344 bool = false - yyq3344[0] = x.UID != nil - var yynn3344 int - if yyr3344 || yy2arr3344 { + yysep3397 := !z.EncBinary() + yy2arr3397 := z.EncBasicHandle().StructToArray + var yyq3397 [1]bool + _, _, _ = yysep3397, yyq3397, yy2arr3397 + const yyr3397 bool = false + yyq3397[0] = x.UID != nil + var yynn3397 int + if yyr3397 || yy2arr3397 { r.EncodeArrayStart(1) } else { - yynn3344 = 0 - for _, b := range yyq3344 { + yynn3397 = 0 + for _, b := range yyq3397 { if b { - yynn3344++ + yynn3397++ } } - r.EncodeMapStart(yynn3344) - yynn3344 = 0 + r.EncodeMapStart(yynn3397) + yynn3397 = 0 } - if yyr3344 || yy2arr3344 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3344[0] { + if yyq3397[0] { if x.UID == nil { r.EncodeNil() } else { - yy3346 := *x.UID - yym3347 := z.EncBinary() - _ = yym3347 + yy3399 := *x.UID + yym3400 := z.EncBinary() + _ = yym3400 if false { - } else if z.HasExtensions() && z.EncExt(yy3346) { + } else if z.HasExtensions() && z.EncExt(yy3399) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3346)) + r.EncodeString(codecSelferC_UTF81234, string(yy3399)) } } } else { r.EncodeNil() } } else { - if yyq3344[0] { + if yyq3397[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3348 := *x.UID - yym3349 := z.EncBinary() - _ = yym3349 + yy3401 := *x.UID + yym3402 := z.EncBinary() + _ = yym3402 if false { - } else if z.HasExtensions() && z.EncExt(yy3348) { + } else if z.HasExtensions() && z.EncExt(yy3401) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3348)) + r.EncodeString(codecSelferC_UTF81234, string(yy3401)) } } } } - if yyr3344 || yy2arr3344 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42636,25 +43343,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3350 := z.DecBinary() - _ = yym3350 + yym3403 := z.DecBinary() + _ = yym3403 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3351 := r.ContainerType() - if yyct3351 == codecSelferValueTypeMap1234 { - yyl3351 := r.ReadMapStart() - if yyl3351 == 0 { + yyct3404 := r.ContainerType() + if yyct3404 == codecSelferValueTypeMap1234 { + yyl3404 := r.ReadMapStart() + if yyl3404 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3351, d) + x.codecDecodeSelfFromMap(yyl3404, d) } - } else if yyct3351 == codecSelferValueTypeArray1234 { - yyl3351 := r.ReadArrayStart() - if yyl3351 == 0 { + } else if yyct3404 == codecSelferValueTypeArray1234 { + yyl3404 := r.ReadArrayStart() + if yyl3404 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3351, d) + x.codecDecodeSelfFromArray(yyl3404, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42666,12 +43373,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3352Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3352Slc - var yyhl3352 bool = l >= 0 - for yyj3352 := 0; ; yyj3352++ { - if yyhl3352 { - if yyj3352 >= l { + var yys3405Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3405Slc + var yyhl3405 bool = l >= 0 + for yyj3405 := 0; ; yyj3405++ { + if yyhl3405 { + if yyj3405 >= l { break } } else { @@ -42680,10 +43387,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3352Slc = r.DecodeBytes(yys3352Slc, true, true) - yys3352 := string(yys3352Slc) + yys3405Slc = r.DecodeBytes(yys3405Slc, true, true) + yys3405 := string(yys3405Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3352 { + switch yys3405 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -42693,8 +43400,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3354 := z.DecBinary() - _ = yym3354 + yym3407 := z.DecBinary() + _ = yym3407 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42702,9 +43409,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3352) - } // end switch yys3352 - } // end for yyj3352 + z.DecStructFieldNotFound(-1, yys3405) + } // end switch yys3405 + } // end for yyj3405 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42712,16 +43419,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3355 int - var yyb3355 bool - var yyhl3355 bool = l >= 0 - yyj3355++ - if yyhl3355 { - yyb3355 = yyj3355 > l + var yyj3408 int + var yyb3408 bool + var yyhl3408 bool = l >= 0 + yyj3408++ + if yyhl3408 { + yyb3408 = yyj3408 > l } else { - yyb3355 = r.CheckBreak() + yyb3408 = r.CheckBreak() } - if yyb3355 { + if yyb3408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42734,8 +43441,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3357 := z.DecBinary() - _ = yym3357 + yym3410 := z.DecBinary() + _ = yym3410 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42743,17 +43450,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3355++ - if yyhl3355 { - yyb3355 = yyj3355 > l + yyj3408++ + if yyhl3408 { + yyb3408 = yyj3408 > l } else { - yyb3355 = r.CheckBreak() + yyb3408 = r.CheckBreak() } - if yyb3355 { + if yyb3408 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3355-1, "") + z.DecStructFieldNotFound(yyj3408-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42765,39 +43472,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3358 := z.EncBinary() - _ = yym3358 + yym3411 := z.EncBinary() + _ = yym3411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3359 := !z.EncBinary() - yy2arr3359 := z.EncBasicHandle().StructToArray - var yyq3359 [5]bool - _, _, _ = yysep3359, yyq3359, yy2arr3359 - const yyr3359 bool = false - yyq3359[0] = x.Kind != "" - yyq3359[1] = x.APIVersion != "" - yyq3359[2] = x.GracePeriodSeconds != nil - yyq3359[3] = x.Preconditions != nil - yyq3359[4] = x.OrphanDependents != nil - var yynn3359 int - if yyr3359 || yy2arr3359 { + yysep3412 := !z.EncBinary() + yy2arr3412 := z.EncBasicHandle().StructToArray + var yyq3412 [5]bool + _, _, _ = yysep3412, yyq3412, yy2arr3412 + const yyr3412 bool = false + yyq3412[0] = x.Kind != "" + yyq3412[1] = x.APIVersion != "" + yyq3412[2] = x.GracePeriodSeconds != nil + yyq3412[3] = x.Preconditions != nil + yyq3412[4] = x.OrphanDependents != nil + var yynn3412 int + if yyr3412 || yy2arr3412 { r.EncodeArrayStart(5) } else { - yynn3359 = 0 - for _, b := range yyq3359 { + yynn3412 = 0 + for _, b := range yyq3412 { if b { - yynn3359++ + yynn3412++ } } - r.EncodeMapStart(yynn3359) - yynn3359 = 0 + r.EncodeMapStart(yynn3412) + yynn3412 = 0 } - if yyr3359 || yy2arr3359 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[0] { - yym3361 := z.EncBinary() - _ = yym3361 + if yyq3412[0] { + yym3414 := z.EncBinary() + _ = yym3414 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42806,23 +43513,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3359[0] { + if yyq3412[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3362 := z.EncBinary() - _ = yym3362 + yym3415 := z.EncBinary() + _ = yym3415 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3359 || yy2arr3359 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[1] { - yym3364 := z.EncBinary() - _ = yym3364 + if yyq3412[1] { + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42831,56 +43538,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3359[1] { + if yyq3412[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3365 := z.EncBinary() - _ = yym3365 + yym3418 := z.EncBinary() + _ = yym3418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3359 || yy2arr3359 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[2] { + if yyq3412[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3367 := *x.GracePeriodSeconds - yym3368 := z.EncBinary() - _ = yym3368 + yy3420 := *x.GracePeriodSeconds + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { - r.EncodeInt(int64(yy3367)) + r.EncodeInt(int64(yy3420)) } } } else { r.EncodeNil() } } else { - if yyq3359[2] { + if yyq3412[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3369 := *x.GracePeriodSeconds - yym3370 := z.EncBinary() - _ = yym3370 + yy3422 := *x.GracePeriodSeconds + yym3423 := z.EncBinary() + _ = yym3423 if false { } else { - r.EncodeInt(int64(yy3369)) + r.EncodeInt(int64(yy3422)) } } } } - if yyr3359 || yy2arr3359 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[3] { + if yyq3412[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -42890,7 +43597,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3359[3] { + if yyq3412[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42901,42 +43608,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3359 || yy2arr3359 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[4] { + if yyq3412[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3373 := *x.OrphanDependents - yym3374 := z.EncBinary() - _ = yym3374 + yy3426 := *x.OrphanDependents + yym3427 := z.EncBinary() + _ = yym3427 if false { } else { - r.EncodeBool(bool(yy3373)) + r.EncodeBool(bool(yy3426)) } } } else { r.EncodeNil() } } else { - if yyq3359[4] { + if yyq3412[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3375 := *x.OrphanDependents - yym3376 := z.EncBinary() - _ = yym3376 + yy3428 := *x.OrphanDependents + yym3429 := z.EncBinary() + _ = yym3429 if false { } else { - r.EncodeBool(bool(yy3375)) + r.EncodeBool(bool(yy3428)) } } } } - if yyr3359 || yy2arr3359 { + if yyr3412 || yy2arr3412 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42949,25 +43656,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3377 := z.DecBinary() - _ = yym3377 + yym3430 := z.DecBinary() + _ = yym3430 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3378 := r.ContainerType() - if yyct3378 == codecSelferValueTypeMap1234 { - yyl3378 := r.ReadMapStart() - if yyl3378 == 0 { + yyct3431 := r.ContainerType() + if yyct3431 == codecSelferValueTypeMap1234 { + yyl3431 := r.ReadMapStart() + if yyl3431 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3378, d) + x.codecDecodeSelfFromMap(yyl3431, d) } - } else if yyct3378 == codecSelferValueTypeArray1234 { - yyl3378 := r.ReadArrayStart() - if yyl3378 == 0 { + } else if yyct3431 == codecSelferValueTypeArray1234 { + yyl3431 := r.ReadArrayStart() + if yyl3431 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3378, d) + x.codecDecodeSelfFromArray(yyl3431, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42979,12 +43686,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3379Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3379Slc - var yyhl3379 bool = l >= 0 - for yyj3379 := 0; ; yyj3379++ { - if yyhl3379 { - if yyj3379 >= l { + var yys3432Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3432Slc + var yyhl3432 bool = l >= 0 + for yyj3432 := 0; ; yyj3432++ { + if yyhl3432 { + if yyj3432 >= l { break } } else { @@ -42993,10 +43700,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3379Slc = r.DecodeBytes(yys3379Slc, true, true) - yys3379 := string(yys3379Slc) + yys3432Slc = r.DecodeBytes(yys3432Slc, true, true) + yys3432 := string(yys3432Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3379 { + switch yys3432 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43018,8 +43725,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3383 := z.DecBinary() - _ = yym3383 + yym3436 := z.DecBinary() + _ = yym3436 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -43045,17 +43752,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3386 := z.DecBinary() - _ = yym3386 + yym3439 := z.DecBinary() + _ = yym3439 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3379) - } // end switch yys3379 - } // end for yyj3379 + z.DecStructFieldNotFound(-1, yys3432) + } // end switch yys3432 + } // end for yyj3432 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43063,16 +43770,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3387 int - var yyb3387 bool - var yyhl3387 bool = l >= 0 - yyj3387++ - if yyhl3387 { - yyb3387 = yyj3387 > l + var yyj3440 int + var yyb3440 bool + var yyhl3440 bool = l >= 0 + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3387 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3387 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43082,13 +43789,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3387++ - if yyhl3387 { - yyb3387 = yyj3387 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3387 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3387 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43098,13 +43805,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3387++ - if yyhl3387 { - yyb3387 = yyj3387 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3387 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3387 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43117,20 +43824,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3391 := z.DecBinary() - _ = yym3391 + yym3444 := z.DecBinary() + _ = yym3444 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3387++ - if yyhl3387 { - yyb3387 = yyj3387 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3387 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3387 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43145,13 +43852,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3387++ - if yyhl3387 { - yyb3387 = yyj3387 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3387 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3387 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43164,25 +43871,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3394 := z.DecBinary() - _ = yym3394 + yym3447 := z.DecBinary() + _ = yym3447 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3387++ - if yyhl3387 { - yyb3387 = yyj3387 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3387 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3387 { + if yyb3440 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3387-1, "") + z.DecStructFieldNotFound(yyj3440-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43194,36 +43901,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3395 := z.EncBinary() - _ = yym3395 + yym3448 := z.EncBinary() + _ = yym3448 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3396 := !z.EncBinary() - yy2arr3396 := z.EncBasicHandle().StructToArray - var yyq3396 [4]bool - _, _, _ = yysep3396, yyq3396, yy2arr3396 - const yyr3396 bool = false - yyq3396[0] = x.Kind != "" - yyq3396[1] = x.APIVersion != "" - var yynn3396 int - if yyr3396 || yy2arr3396 { + yysep3449 := !z.EncBinary() + yy2arr3449 := z.EncBasicHandle().StructToArray + var yyq3449 [4]bool + _, _, _ = yysep3449, yyq3449, yy2arr3449 + const yyr3449 bool = false + yyq3449[0] = x.Kind != "" + yyq3449[1] = x.APIVersion != "" + var yynn3449 int + if yyr3449 || yy2arr3449 { r.EncodeArrayStart(4) } else { - yynn3396 = 2 - for _, b := range yyq3396 { + yynn3449 = 2 + for _, b := range yyq3449 { if b { - yynn3396++ + yynn3449++ } } - r.EncodeMapStart(yynn3396) - yynn3396 = 0 + r.EncodeMapStart(yynn3449) + yynn3449 = 0 } - if yyr3396 || yy2arr3396 { + if yyr3449 || yy2arr3449 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3396[0] { - yym3398 := z.EncBinary() - _ = yym3398 + if yyq3449[0] { + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43232,23 +43939,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3396[0] { + if yyq3449[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3399 := z.EncBinary() - _ = yym3399 + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3396 || yy2arr3396 { + if yyr3449 || yy2arr3449 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3396[1] { - yym3401 := z.EncBinary() - _ = yym3401 + if yyq3449[1] { + yym3454 := z.EncBinary() + _ = yym3454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43257,22 +43964,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3396[1] { + if yyq3449[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3402 := z.EncBinary() - _ = yym3402 + yym3455 := z.EncBinary() + _ = yym3455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3396 || yy2arr3396 { + if yyr3449 || yy2arr3449 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3404 := z.EncBinary() - _ = yym3404 + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { r.EncodeBool(bool(x.Export)) @@ -43281,17 +43988,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3405 := z.EncBinary() - _ = yym3405 + yym3458 := z.EncBinary() + _ = yym3458 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3396 || yy2arr3396 { + if yyr3449 || yy2arr3449 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3407 := z.EncBinary() - _ = yym3407 + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -43300,14 +44007,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3408 := z.EncBinary() - _ = yym3408 + yym3461 := z.EncBinary() + _ = yym3461 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3396 || yy2arr3396 { + if yyr3449 || yy2arr3449 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43320,25 +44027,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3409 := z.DecBinary() - _ = yym3409 + yym3462 := z.DecBinary() + _ = yym3462 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3410 := r.ContainerType() - if yyct3410 == codecSelferValueTypeMap1234 { - yyl3410 := r.ReadMapStart() - if yyl3410 == 0 { + yyct3463 := r.ContainerType() + if yyct3463 == codecSelferValueTypeMap1234 { + yyl3463 := r.ReadMapStart() + if yyl3463 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3410, d) + x.codecDecodeSelfFromMap(yyl3463, d) } - } else if yyct3410 == codecSelferValueTypeArray1234 { - yyl3410 := r.ReadArrayStart() - if yyl3410 == 0 { + } else if yyct3463 == codecSelferValueTypeArray1234 { + yyl3463 := r.ReadArrayStart() + if yyl3463 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3410, d) + x.codecDecodeSelfFromArray(yyl3463, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43350,12 +44057,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3411Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3411Slc - var yyhl3411 bool = l >= 0 - for yyj3411 := 0; ; yyj3411++ { - if yyhl3411 { - if yyj3411 >= l { + var yys3464Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3464Slc + var yyhl3464 bool = l >= 0 + for yyj3464 := 0; ; yyj3464++ { + if yyhl3464 { + if yyj3464 >= l { break } } else { @@ -43364,10 +44071,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3411Slc = r.DecodeBytes(yys3411Slc, true, true) - yys3411 := string(yys3411Slc) + yys3464Slc = r.DecodeBytes(yys3464Slc, true, true) + yys3464 := string(yys3464Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3411 { + switch yys3464 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43393,9 +44100,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3411) - } // end switch yys3411 - } // end for yyj3411 + z.DecStructFieldNotFound(-1, yys3464) + } // end switch yys3464 + } // end for yyj3464 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43403,16 +44110,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3416 int - var yyb3416 bool - var yyhl3416 bool = l >= 0 - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + var yyj3469 int + var yyb3469 bool + var yyhl3469 bool = l >= 0 + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43422,13 +44129,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43438,13 +44145,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43454,13 +44161,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43471,17 +44178,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3416-1, "") + z.DecStructFieldNotFound(yyj3469-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43493,36 +44200,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3421 := z.EncBinary() - _ = yym3421 + yym3474 := z.EncBinary() + _ = yym3474 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3422 := !z.EncBinary() - yy2arr3422 := z.EncBasicHandle().StructToArray - var yyq3422 [7]bool - _, _, _ = yysep3422, yyq3422, yy2arr3422 - const yyr3422 bool = false - yyq3422[0] = x.Kind != "" - yyq3422[1] = x.APIVersion != "" - var yynn3422 int - if yyr3422 || yy2arr3422 { + yysep3475 := !z.EncBinary() + yy2arr3475 := z.EncBasicHandle().StructToArray + var yyq3475 [7]bool + _, _, _ = yysep3475, yyq3475, yy2arr3475 + const yyr3475 bool = false + yyq3475[0] = x.Kind != "" + yyq3475[1] = x.APIVersion != "" + var yynn3475 int + if yyr3475 || yy2arr3475 { r.EncodeArrayStart(7) } else { - yynn3422 = 5 - for _, b := range yyq3422 { + yynn3475 = 5 + for _, b := range yyq3475 { if b { - yynn3422++ + yynn3475++ } } - r.EncodeMapStart(yynn3422) - yynn3422 = 0 + r.EncodeMapStart(yynn3475) + yynn3475 = 0 } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3422[0] { - yym3424 := z.EncBinary() - _ = yym3424 + if yyq3475[0] { + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43531,23 +44238,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3422[0] { + if yyq3475[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3425 := z.EncBinary() - _ = yym3425 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3422[1] { - yym3427 := z.EncBinary() - _ = yym3427 + if yyq3475[1] { + yym3480 := z.EncBinary() + _ = yym3480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43556,25 +44263,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3422[1] { + if yyq3475[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3428 := z.EncBinary() - _ = yym3428 + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3430 := z.EncBinary() - _ = yym3430 + yym3483 := z.EncBinary() + _ = yym3483 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -43588,8 +44295,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3431 := z.EncBinary() - _ = yym3431 + yym3484 := z.EncBinary() + _ = yym3484 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -43597,13 +44304,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3433 := z.EncBinary() - _ = yym3433 + yym3486 := z.EncBinary() + _ = yym3486 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -43617,8 +44324,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3434 := z.EncBinary() - _ = yym3434 + yym3487 := z.EncBinary() + _ = yym3487 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -43626,10 +44333,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3436 := z.EncBinary() - _ = yym3436 + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -43638,17 +44345,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3437 := z.EncBinary() - _ = yym3437 + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3439 := z.EncBinary() - _ = yym3439 + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -43657,24 +44364,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3440 := z.EncBinary() - _ = yym3440 + yym3493 := z.EncBinary() + _ = yym3493 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3442 := *x.TimeoutSeconds - yym3443 := z.EncBinary() - _ = yym3443 + yy3495 := *x.TimeoutSeconds + yym3496 := z.EncBinary() + _ = yym3496 if false { } else { - r.EncodeInt(int64(yy3442)) + r.EncodeInt(int64(yy3495)) } } } else { @@ -43684,16 +44391,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3444 := *x.TimeoutSeconds - yym3445 := z.EncBinary() - _ = yym3445 + yy3497 := *x.TimeoutSeconds + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { - r.EncodeInt(int64(yy3444)) + r.EncodeInt(int64(yy3497)) } } } - if yyr3422 || yy2arr3422 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43706,25 +44413,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3446 := z.DecBinary() - _ = yym3446 + yym3499 := z.DecBinary() + _ = yym3499 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3447 := r.ContainerType() - if yyct3447 == codecSelferValueTypeMap1234 { - yyl3447 := r.ReadMapStart() - if yyl3447 == 0 { + yyct3500 := r.ContainerType() + if yyct3500 == codecSelferValueTypeMap1234 { + yyl3500 := r.ReadMapStart() + if yyl3500 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3447, d) + x.codecDecodeSelfFromMap(yyl3500, d) } - } else if yyct3447 == codecSelferValueTypeArray1234 { - yyl3447 := r.ReadArrayStart() - if yyl3447 == 0 { + } else if yyct3500 == codecSelferValueTypeArray1234 { + yyl3500 := r.ReadArrayStart() + if yyl3500 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3447, d) + x.codecDecodeSelfFromArray(yyl3500, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43736,12 +44443,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3448Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3448Slc - var yyhl3448 bool = l >= 0 - for yyj3448 := 0; ; yyj3448++ { - if yyhl3448 { - if yyj3448 >= l { + var yys3501Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3501Slc + var yyhl3501 bool = l >= 0 + for yyj3501 := 0; ; yyj3501++ { + if yyhl3501 { + if yyj3501 >= l { break } } else { @@ -43750,10 +44457,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3448Slc = r.DecodeBytes(yys3448Slc, true, true) - yys3448 := string(yys3448Slc) + yys3501Slc = r.DecodeBytes(yys3501Slc, true, true) + yys3501 := string(yys3501Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3448 { + switch yys3501 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43770,26 +44477,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3451 := &x.LabelSelector - yym3452 := z.DecBinary() - _ = yym3452 + yyv3504 := &x.LabelSelector + yym3505 := z.DecBinary() + _ = yym3505 if false { - } else if z.HasExtensions() && z.DecExt(yyv3451) { + } else if z.HasExtensions() && z.DecExt(yyv3504) { } else { - z.DecFallback(yyv3451, true) + z.DecFallback(yyv3504, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3453 := &x.FieldSelector - yym3454 := z.DecBinary() - _ = yym3454 + yyv3506 := &x.FieldSelector + yym3507 := z.DecBinary() + _ = yym3507 if false { - } else if z.HasExtensions() && z.DecExt(yyv3453) { + } else if z.HasExtensions() && z.DecExt(yyv3506) { } else { - z.DecFallback(yyv3453, true) + z.DecFallback(yyv3506, true) } } case "Watch": @@ -43813,17 +44520,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3458 := z.DecBinary() - _ = yym3458 + yym3511 := z.DecBinary() + _ = yym3511 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3448) - } // end switch yys3448 - } // end for yyj3448 + z.DecStructFieldNotFound(-1, yys3501) + } // end switch yys3501 + } // end for yyj3501 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43831,16 +44538,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3459 int - var yyb3459 bool - var yyhl3459 bool = l >= 0 - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + var yyj3512 int + var yyb3512 bool + var yyhl3512 bool = l >= 0 + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43850,13 +44557,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43866,13 +44573,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43880,22 +44587,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3462 := &x.LabelSelector - yym3463 := z.DecBinary() - _ = yym3463 + yyv3515 := &x.LabelSelector + yym3516 := z.DecBinary() + _ = yym3516 if false { - } else if z.HasExtensions() && z.DecExt(yyv3462) { + } else if z.HasExtensions() && z.DecExt(yyv3515) { } else { - z.DecFallback(yyv3462, true) + z.DecFallback(yyv3515, true) } } - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43903,22 +44610,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3464 := &x.FieldSelector - yym3465 := z.DecBinary() - _ = yym3465 + yyv3517 := &x.FieldSelector + yym3518 := z.DecBinary() + _ = yym3518 if false { - } else if z.HasExtensions() && z.DecExt(yyv3464) { + } else if z.HasExtensions() && z.DecExt(yyv3517) { } else { - z.DecFallback(yyv3464, true) + z.DecFallback(yyv3517, true) } } - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43928,13 +44635,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43944,13 +44651,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43963,25 +44670,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3469 := z.DecBinary() - _ = yym3469 + yym3522 := z.DecBinary() + _ = yym3522 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3459 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3459 { + if yyb3512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3459-1, "") + z.DecStructFieldNotFound(yyj3512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43993,36 +44700,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3470 := z.EncBinary() - _ = yym3470 + yym3523 := z.EncBinary() + _ = yym3523 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3471 := !z.EncBinary() - yy2arr3471 := z.EncBasicHandle().StructToArray - var yyq3471 [10]bool - _, _, _ = yysep3471, yyq3471, yy2arr3471 - const yyr3471 bool = false - yyq3471[0] = x.Kind != "" - yyq3471[1] = x.APIVersion != "" - var yynn3471 int - if yyr3471 || yy2arr3471 { + yysep3524 := !z.EncBinary() + yy2arr3524 := z.EncBasicHandle().StructToArray + var yyq3524 [10]bool + _, _, _ = yysep3524, yyq3524, yy2arr3524 + const yyr3524 bool = false + yyq3524[0] = x.Kind != "" + yyq3524[1] = x.APIVersion != "" + var yynn3524 int + if yyr3524 || yy2arr3524 { r.EncodeArrayStart(10) } else { - yynn3471 = 8 - for _, b := range yyq3471 { + yynn3524 = 8 + for _, b := range yyq3524 { if b { - yynn3471++ + yynn3524++ } } - r.EncodeMapStart(yynn3471) - yynn3471 = 0 + r.EncodeMapStart(yynn3524) + yynn3524 = 0 } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3471[0] { - yym3473 := z.EncBinary() - _ = yym3473 + if yyq3524[0] { + yym3526 := z.EncBinary() + _ = yym3526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44031,23 +44738,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3471[0] { + if yyq3524[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3474 := z.EncBinary() - _ = yym3474 + yym3527 := z.EncBinary() + _ = yym3527 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3471[1] { - yym3476 := z.EncBinary() - _ = yym3476 + if yyq3524[1] { + yym3529 := z.EncBinary() + _ = yym3529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44056,22 +44763,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3471[1] { + if yyq3524[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3477 := z.EncBinary() - _ = yym3477 + yym3530 := z.EncBinary() + _ = yym3530 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3479 := z.EncBinary() - _ = yym3479 + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44080,17 +44787,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3480 := z.EncBinary() - _ = yym3480 + yym3533 := z.EncBinary() + _ = yym3533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3482 := z.EncBinary() - _ = yym3482 + yym3535 := z.EncBinary() + _ = yym3535 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -44099,17 +44806,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3483 := z.EncBinary() - _ = yym3483 + yym3536 := z.EncBinary() + _ = yym3536 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3485 := z.EncBinary() - _ = yym3485 + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -44118,24 +44825,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3486 := z.EncBinary() - _ = yym3486 + yym3539 := z.EncBinary() + _ = yym3539 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3488 := *x.SinceSeconds - yym3489 := z.EncBinary() - _ = yym3489 + yy3541 := *x.SinceSeconds + yym3542 := z.EncBinary() + _ = yym3542 if false { } else { - r.EncodeInt(int64(yy3488)) + r.EncodeInt(int64(yy3541)) } } } else { @@ -44145,27 +44852,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3490 := *x.SinceSeconds - yym3491 := z.EncBinary() - _ = yym3491 + yy3543 := *x.SinceSeconds + yym3544 := z.EncBinary() + _ = yym3544 if false { } else { - r.EncodeInt(int64(yy3490)) + r.EncodeInt(int64(yy3543)) } } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3493 := z.EncBinary() - _ = yym3493 + yym3546 := z.EncBinary() + _ = yym3546 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3493 { + } else if yym3546 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3493 && z.IsJSONHandle() { + } else if !yym3546 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -44178,23 +44885,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3494 := z.EncBinary() - _ = yym3494 + yym3547 := z.EncBinary() + _ = yym3547 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3494 { + } else if yym3547 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3494 && z.IsJSONHandle() { + } else if !yym3547 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3496 := z.EncBinary() - _ = yym3496 + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -44203,24 +44910,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3497 := z.EncBinary() - _ = yym3497 + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3499 := *x.TailLines - yym3500 := z.EncBinary() - _ = yym3500 + yy3552 := *x.TailLines + yym3553 := z.EncBinary() + _ = yym3553 if false { } else { - r.EncodeInt(int64(yy3499)) + r.EncodeInt(int64(yy3552)) } } } else { @@ -44230,26 +44937,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3501 := *x.TailLines - yym3502 := z.EncBinary() - _ = yym3502 + yy3554 := *x.TailLines + yym3555 := z.EncBinary() + _ = yym3555 if false { } else { - r.EncodeInt(int64(yy3501)) + r.EncodeInt(int64(yy3554)) } } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3504 := *x.LimitBytes - yym3505 := z.EncBinary() - _ = yym3505 + yy3557 := *x.LimitBytes + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { - r.EncodeInt(int64(yy3504)) + r.EncodeInt(int64(yy3557)) } } } else { @@ -44259,16 +44966,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3506 := *x.LimitBytes - yym3507 := z.EncBinary() - _ = yym3507 + yy3559 := *x.LimitBytes + yym3560 := z.EncBinary() + _ = yym3560 if false { } else { - r.EncodeInt(int64(yy3506)) + r.EncodeInt(int64(yy3559)) } } } - if yyr3471 || yy2arr3471 { + if yyr3524 || yy2arr3524 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44281,25 +44988,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3508 := z.DecBinary() - _ = yym3508 + yym3561 := z.DecBinary() + _ = yym3561 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3509 := r.ContainerType() - if yyct3509 == codecSelferValueTypeMap1234 { - yyl3509 := r.ReadMapStart() - if yyl3509 == 0 { + yyct3562 := r.ContainerType() + if yyct3562 == codecSelferValueTypeMap1234 { + yyl3562 := r.ReadMapStart() + if yyl3562 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3509, d) + x.codecDecodeSelfFromMap(yyl3562, d) } - } else if yyct3509 == codecSelferValueTypeArray1234 { - yyl3509 := r.ReadArrayStart() - if yyl3509 == 0 { + } else if yyct3562 == codecSelferValueTypeArray1234 { + yyl3562 := r.ReadArrayStart() + if yyl3562 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3509, d) + x.codecDecodeSelfFromArray(yyl3562, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44311,12 +45018,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3510Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3510Slc - var yyhl3510 bool = l >= 0 - for yyj3510 := 0; ; yyj3510++ { - if yyhl3510 { - if yyj3510 >= l { + var yys3563Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3563Slc + var yyhl3563 bool = l >= 0 + for yyj3563 := 0; ; yyj3563++ { + if yyhl3563 { + if yyj3563 >= l { break } } else { @@ -44325,10 +45032,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3510Slc = r.DecodeBytes(yys3510Slc, true, true) - yys3510 := string(yys3510Slc) + yys3563Slc = r.DecodeBytes(yys3563Slc, true, true) + yys3563 := string(yys3563Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3510 { + switch yys3563 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44368,8 +45075,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3517 := z.DecBinary() - _ = yym3517 + yym3570 := z.DecBinary() + _ = yym3570 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -44384,13 +45091,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3519 := z.DecBinary() - _ = yym3519 + yym3572 := z.DecBinary() + _ = yym3572 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3519 { + } else if yym3572 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3519 && z.IsJSONHandle() { + } else if !yym3572 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -44411,8 +45118,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3522 := z.DecBinary() - _ = yym3522 + yym3575 := z.DecBinary() + _ = yym3575 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -44427,17 +45134,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3524 := z.DecBinary() - _ = yym3524 + yym3577 := z.DecBinary() + _ = yym3577 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3510) - } // end switch yys3510 - } // end for yyj3510 + z.DecStructFieldNotFound(-1, yys3563) + } // end switch yys3563 + } // end for yyj3563 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44445,16 +45152,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3525 int - var yyb3525 bool - var yyhl3525 bool = l >= 0 - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + var yyj3578 int + var yyb3578 bool + var yyhl3578 bool = l >= 0 + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44464,13 +45171,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44480,13 +45187,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44496,13 +45203,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44512,13 +45219,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44528,13 +45235,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44547,20 +45254,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3532 := z.DecBinary() - _ = yym3532 + yym3585 := z.DecBinary() + _ = yym3585 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44573,25 +45280,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3534 := z.DecBinary() - _ = yym3534 + yym3587 := z.DecBinary() + _ = yym3587 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3534 { + } else if yym3587 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3534 && z.IsJSONHandle() { + } else if !yym3587 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44601,13 +45308,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44620,20 +45327,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3537 := z.DecBinary() - _ = yym3537 + yym3590 := z.DecBinary() + _ = yym3590 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44646,25 +45353,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3539 := z.DecBinary() - _ = yym3539 + yym3592 := z.DecBinary() + _ = yym3592 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3578++ + if yyhl3578 { + yyb3578 = yyj3578 > l } else { - yyb3525 = r.CheckBreak() + yyb3578 = r.CheckBreak() } - if yyb3525 { + if yyb3578 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3525-1, "") + z.DecStructFieldNotFound(yyj3578-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44676,41 +45383,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3540 := z.EncBinary() - _ = yym3540 + yym3593 := z.EncBinary() + _ = yym3593 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3541 := !z.EncBinary() - yy2arr3541 := z.EncBasicHandle().StructToArray - var yyq3541 [7]bool - _, _, _ = yysep3541, yyq3541, yy2arr3541 - const yyr3541 bool = false - yyq3541[0] = x.Kind != "" - yyq3541[1] = x.APIVersion != "" - yyq3541[2] = x.Stdin != false - yyq3541[3] = x.Stdout != false - yyq3541[4] = x.Stderr != false - yyq3541[5] = x.TTY != false - yyq3541[6] = x.Container != "" - var yynn3541 int - if yyr3541 || yy2arr3541 { + yysep3594 := !z.EncBinary() + yy2arr3594 := z.EncBasicHandle().StructToArray + var yyq3594 [7]bool + _, _, _ = yysep3594, yyq3594, yy2arr3594 + const yyr3594 bool = false + yyq3594[0] = x.Kind != "" + yyq3594[1] = x.APIVersion != "" + yyq3594[2] = x.Stdin != false + yyq3594[3] = x.Stdout != false + yyq3594[4] = x.Stderr != false + yyq3594[5] = x.TTY != false + yyq3594[6] = x.Container != "" + var yynn3594 int + if yyr3594 || yy2arr3594 { r.EncodeArrayStart(7) } else { - yynn3541 = 0 - for _, b := range yyq3541 { + yynn3594 = 0 + for _, b := range yyq3594 { if b { - yynn3541++ + yynn3594++ } } - r.EncodeMapStart(yynn3541) - yynn3541 = 0 + r.EncodeMapStart(yynn3594) + yynn3594 = 0 } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[0] { - yym3543 := z.EncBinary() - _ = yym3543 + if yyq3594[0] { + yym3596 := z.EncBinary() + _ = yym3596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44719,23 +45426,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3541[0] { + if yyq3594[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3544 := z.EncBinary() - _ = yym3544 + yym3597 := z.EncBinary() + _ = yym3597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[1] { - yym3546 := z.EncBinary() - _ = yym3546 + if yyq3594[1] { + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44744,23 +45451,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3541[1] { + if yyq3594[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3547 := z.EncBinary() - _ = yym3547 + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[2] { - yym3549 := z.EncBinary() - _ = yym3549 + if yyq3594[2] { + yym3602 := z.EncBinary() + _ = yym3602 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44769,23 +45476,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3541[2] { + if yyq3594[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3550 := z.EncBinary() - _ = yym3550 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[3] { - yym3552 := z.EncBinary() - _ = yym3552 + if yyq3594[3] { + yym3605 := z.EncBinary() + _ = yym3605 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44794,23 +45501,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3541[3] { + if yyq3594[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3553 := z.EncBinary() - _ = yym3553 + yym3606 := z.EncBinary() + _ = yym3606 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[4] { - yym3555 := z.EncBinary() - _ = yym3555 + if yyq3594[4] { + yym3608 := z.EncBinary() + _ = yym3608 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44819,23 +45526,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3541[4] { + if yyq3594[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3556 := z.EncBinary() - _ = yym3556 + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[5] { - yym3558 := z.EncBinary() - _ = yym3558 + if yyq3594[5] { + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44844,23 +45551,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3541[5] { + if yyq3594[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3559 := z.EncBinary() - _ = yym3559 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3541[6] { - yym3561 := z.EncBinary() - _ = yym3561 + if yyq3594[6] { + yym3614 := z.EncBinary() + _ = yym3614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44869,19 +45576,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3541[6] { + if yyq3594[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3562 := z.EncBinary() - _ = yym3562 + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3541 || yy2arr3541 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44894,25 +45601,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3563 := z.DecBinary() - _ = yym3563 + yym3616 := z.DecBinary() + _ = yym3616 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3564 := r.ContainerType() - if yyct3564 == codecSelferValueTypeMap1234 { - yyl3564 := r.ReadMapStart() - if yyl3564 == 0 { + yyct3617 := r.ContainerType() + if yyct3617 == codecSelferValueTypeMap1234 { + yyl3617 := r.ReadMapStart() + if yyl3617 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3564, d) + x.codecDecodeSelfFromMap(yyl3617, d) } - } else if yyct3564 == codecSelferValueTypeArray1234 { - yyl3564 := r.ReadArrayStart() - if yyl3564 == 0 { + } else if yyct3617 == codecSelferValueTypeArray1234 { + yyl3617 := r.ReadArrayStart() + if yyl3617 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3564, d) + x.codecDecodeSelfFromArray(yyl3617, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44924,12 +45631,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3565Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3565Slc - var yyhl3565 bool = l >= 0 - for yyj3565 := 0; ; yyj3565++ { - if yyhl3565 { - if yyj3565 >= l { + var yys3618Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3618Slc + var yyhl3618 bool = l >= 0 + for yyj3618 := 0; ; yyj3618++ { + if yyhl3618 { + if yyj3618 >= l { break } } else { @@ -44938,10 +45645,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3565Slc = r.DecodeBytes(yys3565Slc, true, true) - yys3565 := string(yys3565Slc) + yys3618Slc = r.DecodeBytes(yys3618Slc, true, true) + yys3618 := string(yys3618Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3565 { + switch yys3618 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44985,9 +45692,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3565) - } // end switch yys3565 - } // end for yyj3565 + z.DecStructFieldNotFound(-1, yys3618) + } // end switch yys3618 + } // end for yyj3618 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44995,16 +45702,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3573 int - var yyb3573 bool - var yyhl3573 bool = l >= 0 - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + var yyj3626 int + var yyb3626 bool + var yyhl3626 bool = l >= 0 + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45014,13 +45721,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45030,13 +45737,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45046,13 +45753,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45062,13 +45769,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45078,13 +45785,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45094,13 +45801,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45111,17 +45818,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3573++ - if yyhl3573 { - yyb3573 = yyj3573 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3573 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3573 { + if yyb3626 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3573-1, "") + z.DecStructFieldNotFound(yyj3626-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45133,36 +45840,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3581 := z.EncBinary() - _ = yym3581 + yym3634 := z.EncBinary() + _ = yym3634 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3582 := !z.EncBinary() - yy2arr3582 := z.EncBasicHandle().StructToArray - var yyq3582 [8]bool - _, _, _ = yysep3582, yyq3582, yy2arr3582 - const yyr3582 bool = false - yyq3582[0] = x.Kind != "" - yyq3582[1] = x.APIVersion != "" - var yynn3582 int - if yyr3582 || yy2arr3582 { + yysep3635 := !z.EncBinary() + yy2arr3635 := z.EncBasicHandle().StructToArray + var yyq3635 [8]bool + _, _, _ = yysep3635, yyq3635, yy2arr3635 + const yyr3635 bool = false + yyq3635[0] = x.Kind != "" + yyq3635[1] = x.APIVersion != "" + var yynn3635 int + if yyr3635 || yy2arr3635 { r.EncodeArrayStart(8) } else { - yynn3582 = 6 - for _, b := range yyq3582 { + yynn3635 = 6 + for _, b := range yyq3635 { if b { - yynn3582++ + yynn3635++ } } - r.EncodeMapStart(yynn3582) - yynn3582 = 0 + r.EncodeMapStart(yynn3635) + yynn3635 = 0 } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3582[0] { - yym3584 := z.EncBinary() - _ = yym3584 + if yyq3635[0] { + yym3637 := z.EncBinary() + _ = yym3637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45171,23 +45878,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3582[0] { + if yyq3635[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3585 := z.EncBinary() - _ = yym3585 + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3582[1] { - yym3587 := z.EncBinary() - _ = yym3587 + if yyq3635[1] { + yym3640 := z.EncBinary() + _ = yym3640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45196,22 +45903,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3582[1] { + if yyq3635[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3588 := z.EncBinary() - _ = yym3588 + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3590 := z.EncBinary() - _ = yym3590 + yym3643 := z.EncBinary() + _ = yym3643 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -45220,17 +45927,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3591 := z.EncBinary() - _ = yym3591 + yym3644 := z.EncBinary() + _ = yym3644 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3593 := z.EncBinary() - _ = yym3593 + yym3646 := z.EncBinary() + _ = yym3646 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -45239,17 +45946,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3594 := z.EncBinary() - _ = yym3594 + yym3647 := z.EncBinary() + _ = yym3647 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3596 := z.EncBinary() - _ = yym3596 + yym3649 := z.EncBinary() + _ = yym3649 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -45258,17 +45965,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3597 := z.EncBinary() - _ = yym3597 + yym3650 := z.EncBinary() + _ = yym3650 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3599 := z.EncBinary() - _ = yym3599 + yym3652 := z.EncBinary() + _ = yym3652 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -45277,17 +45984,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3600 := z.EncBinary() - _ = yym3600 + yym3653 := z.EncBinary() + _ = yym3653 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3602 := z.EncBinary() - _ = yym3602 + yym3655 := z.EncBinary() + _ = yym3655 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45296,20 +46003,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3603 := z.EncBinary() - _ = yym3603 + yym3656 := z.EncBinary() + _ = yym3656 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3605 := z.EncBinary() - _ = yym3605 + yym3658 := z.EncBinary() + _ = yym3658 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -45322,15 +46029,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3606 := z.EncBinary() - _ = yym3606 + yym3659 := z.EncBinary() + _ = yym3659 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3582 || yy2arr3582 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45343,25 +46050,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3607 := z.DecBinary() - _ = yym3607 + yym3660 := z.DecBinary() + _ = yym3660 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3608 := r.ContainerType() - if yyct3608 == codecSelferValueTypeMap1234 { - yyl3608 := r.ReadMapStart() - if yyl3608 == 0 { + yyct3661 := r.ContainerType() + if yyct3661 == codecSelferValueTypeMap1234 { + yyl3661 := r.ReadMapStart() + if yyl3661 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3608, d) + x.codecDecodeSelfFromMap(yyl3661, d) } - } else if yyct3608 == codecSelferValueTypeArray1234 { - yyl3608 := r.ReadArrayStart() - if yyl3608 == 0 { + } else if yyct3661 == codecSelferValueTypeArray1234 { + yyl3661 := r.ReadArrayStart() + if yyl3661 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3608, d) + x.codecDecodeSelfFromArray(yyl3661, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45373,12 +46080,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3609Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3609Slc - var yyhl3609 bool = l >= 0 - for yyj3609 := 0; ; yyj3609++ { - if yyhl3609 { - if yyj3609 >= l { + var yys3662Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3662Slc + var yyhl3662 bool = l >= 0 + for yyj3662 := 0; ; yyj3662++ { + if yyhl3662 { + if yyj3662 >= l { break } } else { @@ -45387,10 +46094,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3609Slc = r.DecodeBytes(yys3609Slc, true, true) - yys3609 := string(yys3609Slc) + yys3662Slc = r.DecodeBytes(yys3662Slc, true, true) + yys3662 := string(yys3662Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3609 { + switch yys3662 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45437,18 +46144,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3617 := &x.Command - yym3618 := z.DecBinary() - _ = yym3618 + yyv3670 := &x.Command + yym3671 := z.DecBinary() + _ = yym3671 if false { } else { - z.F.DecSliceStringX(yyv3617, false, d) + z.F.DecSliceStringX(yyv3670, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3609) - } // end switch yys3609 - } // end for yyj3609 + z.DecStructFieldNotFound(-1, yys3662) + } // end switch yys3662 + } // end for yyj3662 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45456,16 +46163,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3619 int - var yyb3619 bool - var yyhl3619 bool = l >= 0 - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + var yyj3672 int + var yyb3672 bool + var yyhl3672 bool = l >= 0 + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45475,13 +46182,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45491,13 +46198,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45507,13 +46214,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45523,13 +46230,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45539,13 +46246,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45555,13 +46262,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45571,13 +46278,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45585,26 +46292,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3627 := &x.Command - yym3628 := z.DecBinary() - _ = yym3628 + yyv3680 := &x.Command + yym3681 := z.DecBinary() + _ = yym3681 if false { } else { - z.F.DecSliceStringX(yyv3627, false, d) + z.F.DecSliceStringX(yyv3680, false, d) } } for { - yyj3619++ - if yyhl3619 { - yyb3619 = yyj3619 > l + yyj3672++ + if yyhl3672 { + yyb3672 = yyj3672 > l } else { - yyb3619 = r.CheckBreak() + yyb3672 = r.CheckBreak() } - if yyb3619 { + if yyb3672 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3619-1, "") + z.DecStructFieldNotFound(yyj3672-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45616,36 +46323,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3629 := z.EncBinary() - _ = yym3629 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3630 := !z.EncBinary() - yy2arr3630 := z.EncBasicHandle().StructToArray - var yyq3630 [3]bool - _, _, _ = yysep3630, yyq3630, yy2arr3630 - const yyr3630 bool = false - yyq3630[0] = x.Kind != "" - yyq3630[1] = x.APIVersion != "" - var yynn3630 int - if yyr3630 || yy2arr3630 { + yysep3683 := !z.EncBinary() + yy2arr3683 := z.EncBasicHandle().StructToArray + var yyq3683 [3]bool + _, _, _ = yysep3683, yyq3683, yy2arr3683 + const yyr3683 bool = false + yyq3683[0] = x.Kind != "" + yyq3683[1] = x.APIVersion != "" + var yynn3683 int + if yyr3683 || yy2arr3683 { r.EncodeArrayStart(3) } else { - yynn3630 = 1 - for _, b := range yyq3630 { + yynn3683 = 1 + for _, b := range yyq3683 { if b { - yynn3630++ + yynn3683++ } } - r.EncodeMapStart(yynn3630) - yynn3630 = 0 + r.EncodeMapStart(yynn3683) + yynn3683 = 0 } - if yyr3630 || yy2arr3630 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3630[0] { - yym3632 := z.EncBinary() - _ = yym3632 + if yyq3683[0] { + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45654,23 +46361,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3630[0] { + if yyq3683[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3633 := z.EncBinary() - _ = yym3633 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3630 || yy2arr3630 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3630[1] { - yym3635 := z.EncBinary() - _ = yym3635 + if yyq3683[1] { + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45679,22 +46386,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3630[1] { + if yyq3683[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3636 := z.EncBinary() - _ = yym3636 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3630 || yy2arr3630 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3691 := z.EncBinary() + _ = yym3691 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45703,14 +46410,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3639 := z.EncBinary() - _ = yym3639 + yym3692 := z.EncBinary() + _ = yym3692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3630 || yy2arr3630 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45723,25 +46430,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3640 := z.DecBinary() - _ = yym3640 + yym3693 := z.DecBinary() + _ = yym3693 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3641 := r.ContainerType() - if yyct3641 == codecSelferValueTypeMap1234 { - yyl3641 := r.ReadMapStart() - if yyl3641 == 0 { + yyct3694 := r.ContainerType() + if yyct3694 == codecSelferValueTypeMap1234 { + yyl3694 := r.ReadMapStart() + if yyl3694 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3641, d) + x.codecDecodeSelfFromMap(yyl3694, d) } - } else if yyct3641 == codecSelferValueTypeArray1234 { - yyl3641 := r.ReadArrayStart() - if yyl3641 == 0 { + } else if yyct3694 == codecSelferValueTypeArray1234 { + yyl3694 := r.ReadArrayStart() + if yyl3694 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3641, d) + x.codecDecodeSelfFromArray(yyl3694, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45753,12 +46460,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3642Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3642Slc - var yyhl3642 bool = l >= 0 - for yyj3642 := 0; ; yyj3642++ { - if yyhl3642 { - if yyj3642 >= l { + var yys3695Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3695Slc + var yyhl3695 bool = l >= 0 + for yyj3695 := 0; ; yyj3695++ { + if yyhl3695 { + if yyj3695 >= l { break } } else { @@ -45767,10 +46474,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3642Slc = r.DecodeBytes(yys3642Slc, true, true) - yys3642 := string(yys3642Slc) + yys3695Slc = r.DecodeBytes(yys3695Slc, true, true) + yys3695 := string(yys3695Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3642 { + switch yys3695 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45790,9 +46497,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3642) - } // end switch yys3642 - } // end for yyj3642 + z.DecStructFieldNotFound(-1, yys3695) + } // end switch yys3695 + } // end for yyj3695 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45800,16 +46507,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3646 int - var yyb3646 bool - var yyhl3646 bool = l >= 0 - yyj3646++ - if yyhl3646 { - yyb3646 = yyj3646 > l + var yyj3699 int + var yyb3699 bool + var yyhl3699 bool = l >= 0 + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3646 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3646 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45819,13 +46526,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3646++ - if yyhl3646 { - yyb3646 = yyj3646 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3646 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3646 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45835,13 +46542,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3646++ - if yyhl3646 { - yyb3646 = yyj3646 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3646 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3646 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45852,17 +46559,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3646++ - if yyhl3646 { - yyb3646 = yyj3646 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3646 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3646 { + if yyb3699 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3646-1, "") + z.DecStructFieldNotFound(yyj3699-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45874,36 +46581,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3650 := z.EncBinary() - _ = yym3650 + yym3703 := z.EncBinary() + _ = yym3703 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3651 := !z.EncBinary() - yy2arr3651 := z.EncBasicHandle().StructToArray - var yyq3651 [3]bool - _, _, _ = yysep3651, yyq3651, yy2arr3651 - const yyr3651 bool = false - yyq3651[0] = x.Kind != "" - yyq3651[1] = x.APIVersion != "" - var yynn3651 int - if yyr3651 || yy2arr3651 { + yysep3704 := !z.EncBinary() + yy2arr3704 := z.EncBasicHandle().StructToArray + var yyq3704 [3]bool + _, _, _ = yysep3704, yyq3704, yy2arr3704 + const yyr3704 bool = false + yyq3704[0] = x.Kind != "" + yyq3704[1] = x.APIVersion != "" + var yynn3704 int + if yyr3704 || yy2arr3704 { r.EncodeArrayStart(3) } else { - yynn3651 = 1 - for _, b := range yyq3651 { + yynn3704 = 1 + for _, b := range yyq3704 { if b { - yynn3651++ + yynn3704++ } } - r.EncodeMapStart(yynn3651) - yynn3651 = 0 + r.EncodeMapStart(yynn3704) + yynn3704 = 0 } - if yyr3651 || yy2arr3651 { + if yyr3704 || yy2arr3704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3651[0] { - yym3653 := z.EncBinary() - _ = yym3653 + if yyq3704[0] { + yym3706 := z.EncBinary() + _ = yym3706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45912,23 +46619,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3651[0] { + if yyq3704[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3654 := z.EncBinary() - _ = yym3654 + yym3707 := z.EncBinary() + _ = yym3707 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3651 || yy2arr3651 { + if yyr3704 || yy2arr3704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3651[1] { - yym3656 := z.EncBinary() - _ = yym3656 + if yyq3704[1] { + yym3709 := z.EncBinary() + _ = yym3709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45937,22 +46644,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3651[1] { + if yyq3704[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3657 := z.EncBinary() - _ = yym3657 + yym3710 := z.EncBinary() + _ = yym3710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3651 || yy2arr3651 { + if yyr3704 || yy2arr3704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3659 := z.EncBinary() - _ = yym3659 + yym3712 := z.EncBinary() + _ = yym3712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45961,14 +46668,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3660 := z.EncBinary() - _ = yym3660 + yym3713 := z.EncBinary() + _ = yym3713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3651 || yy2arr3651 { + if yyr3704 || yy2arr3704 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45981,25 +46688,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3661 := z.DecBinary() - _ = yym3661 + yym3714 := z.DecBinary() + _ = yym3714 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3662 := r.ContainerType() - if yyct3662 == codecSelferValueTypeMap1234 { - yyl3662 := r.ReadMapStart() - if yyl3662 == 0 { + yyct3715 := r.ContainerType() + if yyct3715 == codecSelferValueTypeMap1234 { + yyl3715 := r.ReadMapStart() + if yyl3715 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3662, d) + x.codecDecodeSelfFromMap(yyl3715, d) } - } else if yyct3662 == codecSelferValueTypeArray1234 { - yyl3662 := r.ReadArrayStart() - if yyl3662 == 0 { + } else if yyct3715 == codecSelferValueTypeArray1234 { + yyl3715 := r.ReadArrayStart() + if yyl3715 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3662, d) + x.codecDecodeSelfFromArray(yyl3715, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46011,12 +46718,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3663Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3663Slc - var yyhl3663 bool = l >= 0 - for yyj3663 := 0; ; yyj3663++ { - if yyhl3663 { - if yyj3663 >= l { + var yys3716Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3716Slc + var yyhl3716 bool = l >= 0 + for yyj3716 := 0; ; yyj3716++ { + if yyhl3716 { + if yyj3716 >= l { break } } else { @@ -46025,10 +46732,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3663Slc = r.DecodeBytes(yys3663Slc, true, true) - yys3663 := string(yys3663Slc) + yys3716Slc = r.DecodeBytes(yys3716Slc, true, true) + yys3716 := string(yys3716Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3663 { + switch yys3716 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46048,9 +46755,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3663) - } // end switch yys3663 - } // end for yyj3663 + z.DecStructFieldNotFound(-1, yys3716) + } // end switch yys3716 + } // end for yyj3716 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46058,16 +46765,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3667 int - var yyb3667 bool - var yyhl3667 bool = l >= 0 - yyj3667++ - if yyhl3667 { - yyb3667 = yyj3667 > l + var yyj3720 int + var yyb3720 bool + var yyhl3720 bool = l >= 0 + yyj3720++ + if yyhl3720 { + yyb3720 = yyj3720 > l } else { - yyb3667 = r.CheckBreak() + yyb3720 = r.CheckBreak() } - if yyb3667 { + if yyb3720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46077,13 +46784,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3667++ - if yyhl3667 { - yyb3667 = yyj3667 > l + yyj3720++ + if yyhl3720 { + yyb3720 = yyj3720 > l } else { - yyb3667 = r.CheckBreak() + yyb3720 = r.CheckBreak() } - if yyb3667 { + if yyb3720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46093,13 +46800,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3667++ - if yyhl3667 { - yyb3667 = yyj3667 > l + yyj3720++ + if yyhl3720 { + yyb3720 = yyj3720 > l } else { - yyb3667 = r.CheckBreak() + yyb3720 = r.CheckBreak() } - if yyb3667 { + if yyb3720 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46110,17 +46817,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3667++ - if yyhl3667 { - yyb3667 = yyj3667 > l + yyj3720++ + if yyhl3720 { + yyb3720 = yyj3720 > l } else { - yyb3667 = r.CheckBreak() + yyb3720 = r.CheckBreak() } - if yyb3667 { + if yyb3720 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3667-1, "") + z.DecStructFieldNotFound(yyj3720-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46132,36 +46839,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3671 := z.EncBinary() - _ = yym3671 + yym3724 := z.EncBinary() + _ = yym3724 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3672 := !z.EncBinary() - yy2arr3672 := z.EncBasicHandle().StructToArray - var yyq3672 [3]bool - _, _, _ = yysep3672, yyq3672, yy2arr3672 - const yyr3672 bool = false - yyq3672[0] = x.Kind != "" - yyq3672[1] = x.APIVersion != "" - var yynn3672 int - if yyr3672 || yy2arr3672 { + yysep3725 := !z.EncBinary() + yy2arr3725 := z.EncBasicHandle().StructToArray + var yyq3725 [3]bool + _, _, _ = yysep3725, yyq3725, yy2arr3725 + const yyr3725 bool = false + yyq3725[0] = x.Kind != "" + yyq3725[1] = x.APIVersion != "" + var yynn3725 int + if yyr3725 || yy2arr3725 { r.EncodeArrayStart(3) } else { - yynn3672 = 1 - for _, b := range yyq3672 { + yynn3725 = 1 + for _, b := range yyq3725 { if b { - yynn3672++ + yynn3725++ } } - r.EncodeMapStart(yynn3672) - yynn3672 = 0 + r.EncodeMapStart(yynn3725) + yynn3725 = 0 } - if yyr3672 || yy2arr3672 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3672[0] { - yym3674 := z.EncBinary() - _ = yym3674 + if yyq3725[0] { + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46170,23 +46877,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3672[0] { + if yyq3725[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3675 := z.EncBinary() - _ = yym3675 + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3672 || yy2arr3672 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3672[1] { - yym3677 := z.EncBinary() - _ = yym3677 + if yyq3725[1] { + yym3730 := z.EncBinary() + _ = yym3730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46195,22 +46902,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3672[1] { + if yyq3725[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3678 := z.EncBinary() - _ = yym3678 + yym3731 := z.EncBinary() + _ = yym3731 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3672 || yy2arr3672 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3733 := z.EncBinary() + _ = yym3733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46219,14 +46926,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3681 := z.EncBinary() - _ = yym3681 + yym3734 := z.EncBinary() + _ = yym3734 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3672 || yy2arr3672 { + if yyr3725 || yy2arr3725 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46239,25 +46946,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3682 := z.DecBinary() - _ = yym3682 + yym3735 := z.DecBinary() + _ = yym3735 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3683 := r.ContainerType() - if yyct3683 == codecSelferValueTypeMap1234 { - yyl3683 := r.ReadMapStart() - if yyl3683 == 0 { + yyct3736 := r.ContainerType() + if yyct3736 == codecSelferValueTypeMap1234 { + yyl3736 := r.ReadMapStart() + if yyl3736 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3683, d) + x.codecDecodeSelfFromMap(yyl3736, d) } - } else if yyct3683 == codecSelferValueTypeArray1234 { - yyl3683 := r.ReadArrayStart() - if yyl3683 == 0 { + } else if yyct3736 == codecSelferValueTypeArray1234 { + yyl3736 := r.ReadArrayStart() + if yyl3736 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3683, d) + x.codecDecodeSelfFromArray(yyl3736, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46269,12 +46976,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3684Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3684Slc - var yyhl3684 bool = l >= 0 - for yyj3684 := 0; ; yyj3684++ { - if yyhl3684 { - if yyj3684 >= 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 { @@ -46283,10 +46990,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3684Slc = r.DecodeBytes(yys3684Slc, true, true) - yys3684 := string(yys3684Slc) + yys3737Slc = r.DecodeBytes(yys3737Slc, true, true) + yys3737 := string(yys3737Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3684 { + switch yys3737 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46306,9 +47013,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3684) - } // end switch yys3684 - } // end for yyj3684 + z.DecStructFieldNotFound(-1, yys3737) + } // end switch yys3737 + } // end for yyj3737 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46316,16 +47023,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3688 int - var yyb3688 bool - var yyhl3688 bool = l >= 0 - yyj3688++ - if yyhl3688 { - yyb3688 = yyj3688 > l + var yyj3741 int + var yyb3741 bool + var yyhl3741 bool = l >= 0 + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3688 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3688 { + if yyb3741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46335,13 +47042,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3688++ - if yyhl3688 { - yyb3688 = yyj3688 > l + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3688 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3688 { + if yyb3741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46351,13 +47058,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3688++ - if yyhl3688 { - yyb3688 = yyj3688 > l + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3688 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3688 { + if yyb3741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46368,17 +47075,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3688++ - if yyhl3688 { - yyb3688 = yyj3688 > l + yyj3741++ + if yyhl3741 { + yyb3741 = yyj3741 > l } else { - yyb3688 = r.CheckBreak() + yyb3741 = r.CheckBreak() } - if yyb3688 { + if yyb3741 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3688-1, "") + z.DecStructFieldNotFound(yyj3741-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46390,34 +47097,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3692 := z.EncBinary() - _ = yym3692 + yym3745 := z.EncBinary() + _ = yym3745 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3693 := !z.EncBinary() - yy2arr3693 := z.EncBasicHandle().StructToArray - var yyq3693 [5]bool - _, _, _ = yysep3693, yyq3693, yy2arr3693 - const yyr3693 bool = false - yyq3693[4] = x.Controller != nil - var yynn3693 int - if yyr3693 || yy2arr3693 { + yysep3746 := !z.EncBinary() + yy2arr3746 := z.EncBasicHandle().StructToArray + var yyq3746 [5]bool + _, _, _ = yysep3746, yyq3746, yy2arr3746 + const yyr3746 bool = false + yyq3746[4] = x.Controller != nil + var yynn3746 int + if yyr3746 || yy2arr3746 { r.EncodeArrayStart(5) } else { - yynn3693 = 4 - for _, b := range yyq3693 { + yynn3746 = 4 + for _, b := range yyq3746 { if b { - yynn3693++ + yynn3746++ } } - r.EncodeMapStart(yynn3693) - yynn3693 = 0 + r.EncodeMapStart(yynn3746) + yynn3746 = 0 } - if yyr3693 || yy2arr3693 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3695 := z.EncBinary() - _ = yym3695 + yym3748 := z.EncBinary() + _ = yym3748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46426,17 +47133,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3696 := z.EncBinary() - _ = yym3696 + yym3749 := z.EncBinary() + _ = yym3749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3693 || yy2arr3693 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3698 := z.EncBinary() - _ = yym3698 + yym3751 := z.EncBinary() + _ = yym3751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46445,17 +47152,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3699 := z.EncBinary() - _ = yym3699 + yym3752 := z.EncBinary() + _ = yym3752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3693 || yy2arr3693 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3701 := z.EncBinary() - _ = yym3701 + yym3754 := z.EncBinary() + _ = yym3754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46464,17 +47171,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3702 := z.EncBinary() - _ = yym3702 + yym3755 := z.EncBinary() + _ = yym3755 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3693 || yy2arr3693 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3704 := z.EncBinary() - _ = yym3704 + yym3757 := z.EncBinary() + _ = yym3757 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46484,50 +47191,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3705 := z.EncBinary() - _ = yym3705 + yym3758 := z.EncBinary() + _ = yym3758 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3693 || yy2arr3693 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[4] { + if yyq3746[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3707 := *x.Controller - yym3708 := z.EncBinary() - _ = yym3708 + yy3760 := *x.Controller + yym3761 := z.EncBinary() + _ = yym3761 if false { } else { - r.EncodeBool(bool(yy3707)) + r.EncodeBool(bool(yy3760)) } } } else { r.EncodeNil() } } else { - if yyq3693[4] { + if yyq3746[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3709 := *x.Controller - yym3710 := z.EncBinary() - _ = yym3710 + yy3762 := *x.Controller + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { - r.EncodeBool(bool(yy3709)) + r.EncodeBool(bool(yy3762)) } } } } - if yyr3693 || yy2arr3693 { + if yyr3746 || yy2arr3746 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46540,25 +47247,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3711 := z.DecBinary() - _ = yym3711 + yym3764 := z.DecBinary() + _ = yym3764 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3712 := r.ContainerType() - if yyct3712 == codecSelferValueTypeMap1234 { - yyl3712 := r.ReadMapStart() - if yyl3712 == 0 { + yyct3765 := r.ContainerType() + if yyct3765 == codecSelferValueTypeMap1234 { + yyl3765 := r.ReadMapStart() + if yyl3765 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3712, d) + x.codecDecodeSelfFromMap(yyl3765, d) } - } else if yyct3712 == codecSelferValueTypeArray1234 { - yyl3712 := r.ReadArrayStart() - if yyl3712 == 0 { + } else if yyct3765 == codecSelferValueTypeArray1234 { + yyl3765 := r.ReadArrayStart() + if yyl3765 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3712, d) + x.codecDecodeSelfFromArray(yyl3765, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46570,12 +47277,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3713Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3713Slc - var yyhl3713 bool = l >= 0 - for yyj3713 := 0; ; yyj3713++ { - if yyhl3713 { - if yyj3713 >= l { + var yys3766Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3766Slc + var yyhl3766 bool = l >= 0 + for yyj3766 := 0; ; yyj3766++ { + if yyhl3766 { + if yyj3766 >= l { break } } else { @@ -46584,10 +47291,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3713Slc = r.DecodeBytes(yys3713Slc, true, true) - yys3713 := string(yys3713Slc) + yys3766Slc = r.DecodeBytes(yys3766Slc, true, true) + yys3766 := string(yys3766Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3713 { + switch yys3766 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -46621,17 +47328,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3719 := z.DecBinary() - _ = yym3719 + yym3772 := z.DecBinary() + _ = yym3772 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3713) - } // end switch yys3713 - } // end for yyj3713 + z.DecStructFieldNotFound(-1, yys3766) + } // end switch yys3766 + } // end for yyj3766 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46639,16 +47346,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3720 int - var yyb3720 bool - var yyhl3720 bool = l >= 0 - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + var yyj3773 int + var yyb3773 bool + var yyhl3773 bool = l >= 0 + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3720 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3720 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46658,13 +47365,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3720 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3720 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46674,13 +47381,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3720 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3720 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46690,13 +47397,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3720 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3720 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46706,13 +47413,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3720 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3720 { + if yyb3773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46725,25 +47432,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3726 := z.DecBinary() - _ = yym3726 + yym3779 := z.DecBinary() + _ = yym3779 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3773++ + if yyhl3773 { + yyb3773 = yyj3773 > l } else { - yyb3720 = r.CheckBreak() + yyb3773 = r.CheckBreak() } - if yyb3720 { + if yyb3773 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3720-1, "") + z.DecStructFieldNotFound(yyj3773-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46755,41 +47462,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3727 := z.EncBinary() - _ = yym3727 + yym3780 := z.EncBinary() + _ = yym3780 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3728 := !z.EncBinary() - yy2arr3728 := z.EncBasicHandle().StructToArray - var yyq3728 [7]bool - _, _, _ = yysep3728, yyq3728, yy2arr3728 - const yyr3728 bool = false - yyq3728[0] = x.Kind != "" - yyq3728[1] = x.Namespace != "" - yyq3728[2] = x.Name != "" - yyq3728[3] = x.UID != "" - yyq3728[4] = x.APIVersion != "" - yyq3728[5] = x.ResourceVersion != "" - yyq3728[6] = x.FieldPath != "" - var yynn3728 int - if yyr3728 || yy2arr3728 { + yysep3781 := !z.EncBinary() + yy2arr3781 := z.EncBasicHandle().StructToArray + var yyq3781 [7]bool + _, _, _ = yysep3781, yyq3781, yy2arr3781 + const yyr3781 bool = false + yyq3781[0] = x.Kind != "" + yyq3781[1] = x.Namespace != "" + yyq3781[2] = x.Name != "" + yyq3781[3] = x.UID != "" + yyq3781[4] = x.APIVersion != "" + yyq3781[5] = x.ResourceVersion != "" + yyq3781[6] = x.FieldPath != "" + var yynn3781 int + if yyr3781 || yy2arr3781 { r.EncodeArrayStart(7) } else { - yynn3728 = 0 - for _, b := range yyq3728 { + yynn3781 = 0 + for _, b := range yyq3781 { if b { - yynn3728++ + yynn3781++ } } - r.EncodeMapStart(yynn3728) - yynn3728 = 0 + r.EncodeMapStart(yynn3781) + yynn3781 = 0 } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[0] { - yym3730 := z.EncBinary() - _ = yym3730 + if yyq3781[0] { + yym3783 := z.EncBinary() + _ = yym3783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46798,23 +47505,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[0] { + if yyq3781[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3731 := z.EncBinary() - _ = yym3731 + yym3784 := z.EncBinary() + _ = yym3784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[1] { - yym3733 := z.EncBinary() - _ = yym3733 + if yyq3781[1] { + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -46823,23 +47530,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[1] { + if yyq3781[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3734 := z.EncBinary() - _ = yym3734 + yym3787 := z.EncBinary() + _ = yym3787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[2] { - yym3736 := z.EncBinary() - _ = yym3736 + if yyq3781[2] { + yym3789 := z.EncBinary() + _ = yym3789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46848,23 +47555,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[2] { + if yyq3781[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3737 := z.EncBinary() - _ = yym3737 + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[3] { - yym3739 := z.EncBinary() - _ = yym3739 + if yyq3781[3] { + yym3792 := z.EncBinary() + _ = yym3792 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46874,12 +47581,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[3] { + if yyq3781[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3740 := z.EncBinary() - _ = yym3740 + yym3793 := z.EncBinary() + _ = yym3793 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46887,11 +47594,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[4] { - yym3742 := z.EncBinary() - _ = yym3742 + if yyq3781[4] { + yym3795 := z.EncBinary() + _ = yym3795 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46900,23 +47607,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[4] { + if yyq3781[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3743 := z.EncBinary() - _ = yym3743 + yym3796 := z.EncBinary() + _ = yym3796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[5] { - yym3745 := z.EncBinary() - _ = yym3745 + if yyq3781[5] { + yym3798 := z.EncBinary() + _ = yym3798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -46925,23 +47632,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[5] { + if yyq3781[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3746 := z.EncBinary() - _ = yym3746 + yym3799 := z.EncBinary() + _ = yym3799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[6] { - yym3748 := z.EncBinary() - _ = yym3748 + if yyq3781[6] { + yym3801 := z.EncBinary() + _ = yym3801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -46950,19 +47657,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[6] { + if yyq3781[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3749 := z.EncBinary() - _ = yym3749 + yym3802 := z.EncBinary() + _ = yym3802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3728 || yy2arr3728 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46975,25 +47682,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3750 := z.DecBinary() - _ = yym3750 + yym3803 := z.DecBinary() + _ = yym3803 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3751 := r.ContainerType() - if yyct3751 == codecSelferValueTypeMap1234 { - yyl3751 := r.ReadMapStart() - if yyl3751 == 0 { + yyct3804 := r.ContainerType() + if yyct3804 == codecSelferValueTypeMap1234 { + yyl3804 := r.ReadMapStart() + if yyl3804 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3751, d) + x.codecDecodeSelfFromMap(yyl3804, d) } - } else if yyct3751 == codecSelferValueTypeArray1234 { - yyl3751 := r.ReadArrayStart() - if yyl3751 == 0 { + } else if yyct3804 == codecSelferValueTypeArray1234 { + yyl3804 := r.ReadArrayStart() + if yyl3804 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3751, d) + x.codecDecodeSelfFromArray(yyl3804, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47005,12 +47712,12 @@ func (x *ObjectReference) 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 yys3805Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3805Slc + var yyhl3805 bool = l >= 0 + for yyj3805 := 0; ; yyj3805++ { + if yyhl3805 { + if yyj3805 >= l { break } } else { @@ -47019,10 +47726,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3752Slc = r.DecodeBytes(yys3752Slc, true, true) - yys3752 := string(yys3752Slc) + yys3805Slc = r.DecodeBytes(yys3805Slc, true, true) + yys3805 := string(yys3805Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3752 { + switch yys3805 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47066,731 +47773,13 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3752) - } // end switch yys3752 - } // end for yyj3752 + z.DecStructFieldNotFound(-1, yys3805) + } // end switch yys3805 + } // end for yyj3805 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3760 int - var yyb3760 bool - var yyhl3760 bool = l >= 0 - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = string(r.DecodeString()) - } - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.UID = "" - } else { - x.UID = pkg1_types.UID(r.DecodeString()) - } - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ResourceVersion = "" - } else { - x.ResourceVersion = string(r.DecodeString()) - } - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.FieldPath = "" - } else { - x.FieldPath = string(r.DecodeString()) - } - for { - yyj3760++ - if yyhl3760 { - yyb3760 = yyj3760 > l - } else { - yyb3760 = r.CheckBreak() - } - if yyb3760 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3760-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3768 := z.EncBinary() - _ = yym3768 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3769 := !z.EncBinary() - yy2arr3769 := z.EncBasicHandle().StructToArray - var yyq3769 [1]bool - _, _, _ = yysep3769, yyq3769, yy2arr3769 - const yyr3769 bool = false - var yynn3769 int - if yyr3769 || yy2arr3769 { - r.EncodeArrayStart(1) - } else { - yynn3769 = 1 - for _, b := range yyq3769 { - if b { - yynn3769++ - } - } - r.EncodeMapStart(yynn3769) - yynn3769 = 0 - } - if yyr3769 || yy2arr3769 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3771 := z.EncBinary() - _ = yym3771 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("Name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3772 := z.EncBinary() - _ = yym3772 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - if yyr3769 || yy2arr3769 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3773 := z.DecBinary() - _ = yym3773 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3774 := r.ContainerType() - if yyct3774 == codecSelferValueTypeMap1234 { - yyl3774 := r.ReadMapStart() - if yyl3774 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3774, d) - } - } else if yyct3774 == codecSelferValueTypeArray1234 { - yyl3774 := r.ReadArrayStart() - if yyl3774 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3774, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3775Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3775Slc - var yyhl3775 bool = l >= 0 - for yyj3775 := 0; ; yyj3775++ { - if yyhl3775 { - if yyj3775 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3775Slc = r.DecodeBytes(yys3775Slc, true, true) - yys3775 := string(yys3775Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3775 { - case "Name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3775) - } // end switch yys3775 - } // end for yyj3775 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3777 int - var yyb3777 bool - var yyhl3777 bool = l >= 0 - yyj3777++ - if yyhl3777 { - yyb3777 = yyj3777 > l - } else { - yyb3777 = r.CheckBreak() - } - if yyb3777 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - for { - yyj3777++ - if yyhl3777 { - yyb3777 = yyj3777 > l - } else { - yyb3777 = r.CheckBreak() - } - if yyb3777 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3777-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3779 := z.EncBinary() - _ = yym3779 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3780 := !z.EncBinary() - yy2arr3780 := z.EncBasicHandle().StructToArray - var yyq3780 [3]bool - _, _, _ = yysep3780, yyq3780, yy2arr3780 - const yyr3780 bool = false - yyq3780[0] = x.Kind != "" - yyq3780[1] = x.APIVersion != "" - yyq3780[2] = true - var yynn3780 int - if yyr3780 || yy2arr3780 { - r.EncodeArrayStart(3) - } else { - yynn3780 = 0 - for _, b := range yyq3780 { - if b { - yynn3780++ - } - } - r.EncodeMapStart(yynn3780) - yynn3780 = 0 - } - if yyr3780 || yy2arr3780 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3780[0] { - yym3782 := z.EncBinary() - _ = yym3782 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3780[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3783 := z.EncBinary() - _ = yym3783 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3780 || yy2arr3780 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3780[1] { - yym3785 := z.EncBinary() - _ = yym3785 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3780[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3786 := z.EncBinary() - _ = yym3786 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3780 || yy2arr3780 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3780[2] { - yy3788 := &x.Reference - yy3788.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3780[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reference")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3789 := &x.Reference - yy3789.CodecEncodeSelf(e) - } - } - if yyr3780 || yy2arr3780 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3790 := z.DecBinary() - _ = yym3790 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3791 := r.ContainerType() - if yyct3791 == codecSelferValueTypeMap1234 { - yyl3791 := r.ReadMapStart() - if yyl3791 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3791, d) - } - } else if yyct3791 == codecSelferValueTypeArray1234 { - yyl3791 := r.ReadArrayStart() - if yyl3791 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3791, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3792Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3792Slc - var yyhl3792 bool = l >= 0 - for yyj3792 := 0; ; yyj3792++ { - if yyhl3792 { - if yyj3792 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3792Slc = r.DecodeBytes(yys3792Slc, true, true) - yys3792 := string(yys3792Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3792 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "reference": - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3795 := &x.Reference - yyv3795.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3792) - } // end switch yys3792 - } // end for yyj3792 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3796 int - var yyb3796 bool - var yyhl3796 bool = l >= 0 - yyj3796++ - if yyhl3796 { - yyb3796 = yyj3796 > l - } else { - yyb3796 = r.CheckBreak() - } - if yyb3796 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3796++ - if yyhl3796 { - yyb3796 = yyj3796 > l - } else { - yyb3796 = r.CheckBreak() - } - if yyb3796 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3796++ - if yyhl3796 { - yyb3796 = yyj3796 > l - } else { - yyb3796 = r.CheckBreak() - } - if yyb3796 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3799 := &x.Reference - yyv3799.CodecDecodeSelf(d) - } - for { - yyj3796++ - if yyhl3796 { - yyb3796 = yyj3796 > l - } else { - yyb3796 = r.CheckBreak() - } - if yyb3796 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3796-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3800 := z.EncBinary() - _ = yym3800 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3801 := !z.EncBinary() - yy2arr3801 := z.EncBasicHandle().StructToArray - var yyq3801 [2]bool - _, _, _ = yysep3801, yyq3801, yy2arr3801 - const yyr3801 bool = false - yyq3801[0] = x.Component != "" - yyq3801[1] = x.Host != "" - var yynn3801 int - if yyr3801 || yy2arr3801 { - r.EncodeArrayStart(2) - } else { - yynn3801 = 0 - for _, b := range yyq3801 { - if b { - yynn3801++ - } - } - r.EncodeMapStart(yynn3801) - yynn3801 = 0 - } - if yyr3801 || yy2arr3801 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3801[0] { - yym3803 := z.EncBinary() - _ = yym3803 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3801[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("component")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3804 := z.EncBinary() - _ = yym3804 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } - } - if yyr3801 || yy2arr3801 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3801[1] { - yym3806 := z.EncBinary() - _ = yym3806 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3801[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("host")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3807 := z.EncBinary() - _ = yym3807 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } - } - } - if yyr3801 || yy2arr3801 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3808 := z.DecBinary() - _ = yym3808 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3809 := r.ContainerType() - if yyct3809 == codecSelferValueTypeMap1234 { - yyl3809 := r.ReadMapStart() - if yyl3809 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3809, d) - } - } else if yyct3809 == codecSelferValueTypeArray1234 { - yyl3809 := r.ReadArrayStart() - if yyl3809 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3809, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3810Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3810Slc - var yyhl3810 bool = l >= 0 - for yyj3810 := 0; ; yyj3810++ { - if yyhl3810 { - if yyj3810 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3810Slc = r.DecodeBytes(yys3810Slc, true, true) - yys3810 := string(yys3810Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3810 { - case "component": - if r.TryDecodeAsNil() { - x.Component = "" - } else { - x.Component = string(r.DecodeString()) - } - case "host": - if r.TryDecodeAsNil() { - x.Host = "" - } else { - x.Host = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3810) - } // end switch yys3810 - } // end for yyj3810 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47809,9 +47798,9 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Component = "" + x.Kind = "" } else { - x.Component = string(r.DecodeString()) + x.Kind = string(r.DecodeString()) } yyj3813++ if yyhl3813 { @@ -47825,9 +47814,89 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Host = "" + x.Namespace = "" } else { - x.Host = string(r.DecodeString()) + x.Namespace = string(r.DecodeString()) + } + yyj3813++ + if yyhl3813 { + yyb3813 = yyj3813 > l + } else { + yyb3813 = r.CheckBreak() + } + if yyb3813 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj3813++ + if yyhl3813 { + yyb3813 = yyj3813 > l + } else { + yyb3813 = r.CheckBreak() + } + if yyb3813 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.UID = "" + } else { + x.UID = pkg1_types.UID(r.DecodeString()) + } + yyj3813++ + if yyhl3813 { + yyb3813 = yyj3813 > l + } else { + yyb3813 = r.CheckBreak() + } + if yyb3813 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3813++ + if yyhl3813 { + yyb3813 = yyj3813 > l + } else { + yyb3813 = r.CheckBreak() + } + if yyb3813 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ResourceVersion = "" + } else { + x.ResourceVersion = string(r.DecodeString()) + } + yyj3813++ + if yyhl3813 { + yyb3813 = yyj3813 > l + } else { + yyb3813 = r.CheckBreak() + } + if yyb3813 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.FieldPath = "" + } else { + x.FieldPath = string(r.DecodeString()) } for { yyj3813++ @@ -47845,6 +47914,644 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3821 := z.EncBinary() + _ = yym3821 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3822 := !z.EncBinary() + yy2arr3822 := z.EncBasicHandle().StructToArray + var yyq3822 [1]bool + _, _, _ = yysep3822, yyq3822, yy2arr3822 + const yyr3822 bool = false + var yynn3822 int + if yyr3822 || yy2arr3822 { + r.EncodeArrayStart(1) + } else { + yynn3822 = 1 + for _, b := range yyq3822 { + if b { + yynn3822++ + } + } + r.EncodeMapStart(yynn3822) + yynn3822 = 0 + } + if yyr3822 || yy2arr3822 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym3824 := z.EncBinary() + _ = yym3824 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("Name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3825 := z.EncBinary() + _ = yym3825 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + if yyr3822 || yy2arr3822 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3826 := z.DecBinary() + _ = yym3826 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3827 := r.ContainerType() + if yyct3827 == codecSelferValueTypeMap1234 { + yyl3827 := r.ReadMapStart() + if yyl3827 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3827, d) + } + } else if yyct3827 == codecSelferValueTypeArray1234 { + yyl3827 := r.ReadArrayStart() + if yyl3827 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3827, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3828Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3828Slc + var yyhl3828 bool = l >= 0 + for yyj3828 := 0; ; yyj3828++ { + if yyhl3828 { + if yyj3828 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3828Slc = r.DecodeBytes(yys3828Slc, true, true) + yys3828 := string(yys3828Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3828 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3828) + } // end switch yys3828 + } // end for yyj3828 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3830 int + var yyb3830 bool + var yyhl3830 bool = l >= 0 + yyj3830++ + if yyhl3830 { + yyb3830 = yyj3830 > l + } else { + yyb3830 = r.CheckBreak() + } + if yyb3830 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + for { + yyj3830++ + if yyhl3830 { + yyb3830 = yyj3830 > l + } else { + yyb3830 = r.CheckBreak() + } + if yyb3830 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3830-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3832 := z.EncBinary() + _ = yym3832 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3833 := !z.EncBinary() + yy2arr3833 := z.EncBasicHandle().StructToArray + var yyq3833 [3]bool + _, _, _ = yysep3833, yyq3833, yy2arr3833 + const yyr3833 bool = false + yyq3833[0] = x.Kind != "" + yyq3833[1] = x.APIVersion != "" + yyq3833[2] = true + var yynn3833 int + if yyr3833 || yy2arr3833 { + r.EncodeArrayStart(3) + } else { + yynn3833 = 0 + for _, b := range yyq3833 { + if b { + yynn3833++ + } + } + r.EncodeMapStart(yynn3833) + yynn3833 = 0 + } + if yyr3833 || yy2arr3833 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3833[0] { + yym3835 := z.EncBinary() + _ = yym3835 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3833[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3836 := z.EncBinary() + _ = yym3836 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3833 || yy2arr3833 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3833[1] { + yym3838 := z.EncBinary() + _ = yym3838 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3833[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3839 := z.EncBinary() + _ = yym3839 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3833 || yy2arr3833 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3833[2] { + yy3841 := &x.Reference + yy3841.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3833[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reference")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3842 := &x.Reference + yy3842.CodecEncodeSelf(e) + } + } + if yyr3833 || yy2arr3833 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3843 := z.DecBinary() + _ = yym3843 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3844 := r.ContainerType() + if yyct3844 == codecSelferValueTypeMap1234 { + yyl3844 := r.ReadMapStart() + if yyl3844 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3844, d) + } + } else if yyct3844 == codecSelferValueTypeArray1234 { + yyl3844 := r.ReadArrayStart() + if yyl3844 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3844, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *SerializedReference) 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 { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3845Slc = r.DecodeBytes(yys3845Slc, true, true) + yys3845 := string(yys3845Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3845 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "reference": + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3848 := &x.Reference + yyv3848.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3845) + } // end switch yys3845 + } // end for yyj3845 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3849 int + var yyb3849 bool + var yyhl3849 bool = l >= 0 + yyj3849++ + if yyhl3849 { + yyb3849 = yyj3849 > l + } else { + yyb3849 = r.CheckBreak() + } + if yyb3849 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3849++ + if yyhl3849 { + yyb3849 = yyj3849 > l + } else { + yyb3849 = r.CheckBreak() + } + if yyb3849 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3849++ + if yyhl3849 { + yyb3849 = yyj3849 > l + } else { + yyb3849 = r.CheckBreak() + } + if yyb3849 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3852 := &x.Reference + yyv3852.CodecDecodeSelf(d) + } + for { + yyj3849++ + if yyhl3849 { + yyb3849 = yyj3849 > l + } else { + yyb3849 = r.CheckBreak() + } + if yyb3849 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3849-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3853 := z.EncBinary() + _ = yym3853 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3854 := !z.EncBinary() + yy2arr3854 := z.EncBasicHandle().StructToArray + var yyq3854 [2]bool + _, _, _ = yysep3854, yyq3854, yy2arr3854 + const yyr3854 bool = false + yyq3854[0] = x.Component != "" + yyq3854[1] = x.Host != "" + var yynn3854 int + if yyr3854 || yy2arr3854 { + r.EncodeArrayStart(2) + } else { + yynn3854 = 0 + for _, b := range yyq3854 { + if b { + yynn3854++ + } + } + r.EncodeMapStart(yynn3854) + yynn3854 = 0 + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3854[0] { + yym3856 := z.EncBinary() + _ = yym3856 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3854[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("component")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3857 := z.EncBinary() + _ = yym3857 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3854[1] { + yym3859 := z.EncBinary() + _ = yym3859 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3854[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("host")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3860 := z.EncBinary() + _ = yym3860 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3861 := z.DecBinary() + _ = yym3861 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3862 := r.ContainerType() + if yyct3862 == codecSelferValueTypeMap1234 { + yyl3862 := r.ReadMapStart() + if yyl3862 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3862, d) + } + } else if yyct3862 == codecSelferValueTypeArray1234 { + yyl3862 := r.ReadArrayStart() + if yyl3862 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3862, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3863Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3863Slc + var yyhl3863 bool = l >= 0 + for yyj3863 := 0; ; yyj3863++ { + if yyhl3863 { + if yyj3863 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3863Slc = r.DecodeBytes(yys3863Slc, true, true) + yys3863 := string(yys3863Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3863 { + case "component": + if r.TryDecodeAsNil() { + x.Component = "" + } else { + x.Component = string(r.DecodeString()) + } + case "host": + if r.TryDecodeAsNil() { + x.Host = "" + } else { + x.Host = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3863) + } // end switch yys3863 + } // end for yyj3863 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3866 int + var yyb3866 bool + var yyhl3866 bool = l >= 0 + yyj3866++ + if yyhl3866 { + yyb3866 = yyj3866 > l + } else { + yyb3866 = r.CheckBreak() + } + if yyb3866 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Component = "" + } else { + x.Component = string(r.DecodeString()) + } + yyj3866++ + if yyhl3866 { + yyb3866 = yyj3866 > l + } else { + yyb3866 = r.CheckBreak() + } + if yyb3866 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Host = "" + } else { + x.Host = string(r.DecodeString()) + } + for { + yyj3866++ + if yyhl3866 { + yyb3866 = yyj3866 > l + } else { + yyb3866 = r.CheckBreak() + } + if yyb3866 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3866-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -47852,45 +48559,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3816 := z.EncBinary() - _ = yym3816 + yym3869 := z.EncBinary() + _ = yym3869 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3817 := !z.EncBinary() - yy2arr3817 := z.EncBasicHandle().StructToArray - var yyq3817 [11]bool - _, _, _ = yysep3817, yyq3817, yy2arr3817 - const yyr3817 bool = false - yyq3817[0] = x.Kind != "" - yyq3817[1] = x.APIVersion != "" - yyq3817[2] = true - yyq3817[3] = true - yyq3817[4] = x.Reason != "" - yyq3817[5] = x.Message != "" - yyq3817[6] = true - yyq3817[7] = true - yyq3817[8] = true - yyq3817[9] = x.Count != 0 - yyq3817[10] = x.Type != "" - var yynn3817 int - if yyr3817 || yy2arr3817 { + yysep3870 := !z.EncBinary() + yy2arr3870 := z.EncBasicHandle().StructToArray + var yyq3870 [11]bool + _, _, _ = yysep3870, yyq3870, yy2arr3870 + const yyr3870 bool = false + yyq3870[0] = x.Kind != "" + yyq3870[1] = x.APIVersion != "" + yyq3870[2] = true + yyq3870[3] = true + yyq3870[4] = x.Reason != "" + yyq3870[5] = x.Message != "" + yyq3870[6] = true + yyq3870[7] = true + yyq3870[8] = true + yyq3870[9] = x.Count != 0 + yyq3870[10] = x.Type != "" + var yynn3870 int + if yyr3870 || yy2arr3870 { r.EncodeArrayStart(11) } else { - yynn3817 = 0 - for _, b := range yyq3817 { + yynn3870 = 0 + for _, b := range yyq3870 { if b { - yynn3817++ + yynn3870++ } } - r.EncodeMapStart(yynn3817) - yynn3817 = 0 + r.EncodeMapStart(yynn3870) + yynn3870 = 0 } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[0] { - yym3819 := z.EncBinary() - _ = yym3819 + if yyq3870[0] { + yym3872 := z.EncBinary() + _ = yym3872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47899,23 +48606,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3817[0] { + if yyq3870[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3820 := z.EncBinary() - _ = yym3820 + yym3873 := z.EncBinary() + _ = yym3873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[1] { - yym3822 := z.EncBinary() - _ = yym3822 + if yyq3870[1] { + yym3875 := z.EncBinary() + _ = yym3875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47924,57 +48631,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3817[1] { + if yyq3870[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3823 := z.EncBinary() - _ = yym3823 + yym3876 := z.EncBinary() + _ = yym3876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[2] { - yy3825 := &x.ObjectMeta - yy3825.CodecEncodeSelf(e) + if yyq3870[2] { + yy3878 := &x.ObjectMeta + yy3878.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3817[2] { + if yyq3870[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3826 := &x.ObjectMeta - yy3826.CodecEncodeSelf(e) + yy3879 := &x.ObjectMeta + yy3879.CodecEncodeSelf(e) } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[3] { - yy3828 := &x.InvolvedObject - yy3828.CodecEncodeSelf(e) + if yyq3870[3] { + yy3881 := &x.InvolvedObject + yy3881.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3817[3] { + if yyq3870[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3829 := &x.InvolvedObject - yy3829.CodecEncodeSelf(e) + yy3882 := &x.InvolvedObject + yy3882.CodecEncodeSelf(e) } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[4] { - yym3831 := z.EncBinary() - _ = yym3831 + if yyq3870[4] { + yym3884 := z.EncBinary() + _ = yym3884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -47983,23 +48690,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3817[4] { + if yyq3870[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3832 := z.EncBinary() - _ = yym3832 + yym3885 := z.EncBinary() + _ = yym3885 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[5] { - yym3834 := z.EncBinary() - _ = yym3834 + if yyq3870[5] { + yym3887 := z.EncBinary() + _ = yym3887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -48008,114 +48715,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3817[5] { + if yyq3870[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3835 := z.EncBinary() - _ = yym3835 + yym3888 := z.EncBinary() + _ = yym3888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[6] { - yy3837 := &x.Source - yy3837.CodecEncodeSelf(e) + if yyq3870[6] { + yy3890 := &x.Source + yy3890.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3817[6] { + if yyq3870[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3838 := &x.Source - yy3838.CodecEncodeSelf(e) + yy3891 := &x.Source + yy3891.CodecEncodeSelf(e) } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[7] { - yy3840 := &x.FirstTimestamp - yym3841 := z.EncBinary() - _ = yym3841 + if yyq3870[7] { + yy3893 := &x.FirstTimestamp + yym3894 := z.EncBinary() + _ = yym3894 if false { - } else if z.HasExtensions() && z.EncExt(yy3840) { - } else if yym3841 { - z.EncBinaryMarshal(yy3840) - } else if !yym3841 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3840) + } else if z.HasExtensions() && z.EncExt(yy3893) { + } else if yym3894 { + z.EncBinaryMarshal(yy3893) + } else if !yym3894 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3893) } else { - z.EncFallback(yy3840) + z.EncFallback(yy3893) } } else { r.EncodeNil() } } else { - if yyq3817[7] { + if yyq3870[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3842 := &x.FirstTimestamp - yym3843 := z.EncBinary() - _ = yym3843 + yy3895 := &x.FirstTimestamp + yym3896 := z.EncBinary() + _ = yym3896 if false { - } else if z.HasExtensions() && z.EncExt(yy3842) { - } else if yym3843 { - z.EncBinaryMarshal(yy3842) - } else if !yym3843 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3842) + } else if z.HasExtensions() && z.EncExt(yy3895) { + } else if yym3896 { + z.EncBinaryMarshal(yy3895) + } else if !yym3896 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3895) } else { - z.EncFallback(yy3842) + z.EncFallback(yy3895) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[8] { - yy3845 := &x.LastTimestamp - yym3846 := z.EncBinary() - _ = yym3846 + if yyq3870[8] { + yy3898 := &x.LastTimestamp + yym3899 := z.EncBinary() + _ = yym3899 if false { - } else if z.HasExtensions() && z.EncExt(yy3845) { - } else if yym3846 { - z.EncBinaryMarshal(yy3845) - } else if !yym3846 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3845) + } else if z.HasExtensions() && z.EncExt(yy3898) { + } else if yym3899 { + z.EncBinaryMarshal(yy3898) + } else if !yym3899 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3898) } else { - z.EncFallback(yy3845) + z.EncFallback(yy3898) } } else { r.EncodeNil() } } else { - if yyq3817[8] { + if yyq3870[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3847 := &x.LastTimestamp - yym3848 := z.EncBinary() - _ = yym3848 + yy3900 := &x.LastTimestamp + yym3901 := z.EncBinary() + _ = yym3901 if false { - } else if z.HasExtensions() && z.EncExt(yy3847) { - } else if yym3848 { - z.EncBinaryMarshal(yy3847) - } else if !yym3848 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3847) + } else if z.HasExtensions() && z.EncExt(yy3900) { + } else if yym3901 { + z.EncBinaryMarshal(yy3900) + } else if !yym3901 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3900) } else { - z.EncFallback(yy3847) + z.EncFallback(yy3900) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[9] { - yym3850 := z.EncBinary() - _ = yym3850 + if yyq3870[9] { + yym3903 := z.EncBinary() + _ = yym3903 if false { } else { r.EncodeInt(int64(x.Count)) @@ -48124,23 +48831,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3817[9] { + if yyq3870[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3851 := z.EncBinary() - _ = yym3851 + yym3904 := z.EncBinary() + _ = yym3904 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3817[10] { - yym3853 := z.EncBinary() - _ = yym3853 + if yyq3870[10] { + yym3906 := z.EncBinary() + _ = yym3906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -48149,19 +48856,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3817[10] { + if yyq3870[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3854 := z.EncBinary() - _ = yym3854 + yym3907 := z.EncBinary() + _ = yym3907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3817 || yy2arr3817 { + if yyr3870 || yy2arr3870 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48174,25 +48881,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3855 := z.DecBinary() - _ = yym3855 + yym3908 := z.DecBinary() + _ = yym3908 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3856 := r.ContainerType() - if yyct3856 == codecSelferValueTypeMap1234 { - yyl3856 := r.ReadMapStart() - if yyl3856 == 0 { + yyct3909 := r.ContainerType() + if yyct3909 == codecSelferValueTypeMap1234 { + yyl3909 := r.ReadMapStart() + if yyl3909 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3856, d) + x.codecDecodeSelfFromMap(yyl3909, d) } - } else if yyct3856 == codecSelferValueTypeArray1234 { - yyl3856 := r.ReadArrayStart() - if yyl3856 == 0 { + } else if yyct3909 == codecSelferValueTypeArray1234 { + yyl3909 := r.ReadArrayStart() + if yyl3909 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3856, d) + x.codecDecodeSelfFromArray(yyl3909, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48204,12 +48911,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3857Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3857Slc - var yyhl3857 bool = l >= 0 - for yyj3857 := 0; ; yyj3857++ { - if yyhl3857 { - if yyj3857 >= l { + var yys3910Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3910Slc + var yyhl3910 bool = l >= 0 + for yyj3910 := 0; ; yyj3910++ { + if yyhl3910 { + if yyj3910 >= l { break } } else { @@ -48218,10 +48925,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3857Slc = r.DecodeBytes(yys3857Slc, true, true) - yys3857 := string(yys3857Slc) + yys3910Slc = r.DecodeBytes(yys3910Slc, true, true) + yys3910 := string(yys3910Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3857 { + switch yys3910 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48238,15 +48945,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3860 := &x.ObjectMeta - yyv3860.CodecDecodeSelf(d) + yyv3913 := &x.ObjectMeta + yyv3913.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3861 := &x.InvolvedObject - yyv3861.CodecDecodeSelf(d) + yyv3914 := &x.InvolvedObject + yyv3914.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -48264,41 +48971,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3864 := &x.Source - yyv3864.CodecDecodeSelf(d) + yyv3917 := &x.Source + yyv3917.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3865 := &x.FirstTimestamp - yym3866 := z.DecBinary() - _ = yym3866 + yyv3918 := &x.FirstTimestamp + yym3919 := z.DecBinary() + _ = yym3919 if false { - } else if z.HasExtensions() && z.DecExt(yyv3865) { - } else if yym3866 { - z.DecBinaryUnmarshal(yyv3865) - } else if !yym3866 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3865) + } else if z.HasExtensions() && z.DecExt(yyv3918) { + } else if yym3919 { + z.DecBinaryUnmarshal(yyv3918) + } else if !yym3919 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3918) } else { - z.DecFallback(yyv3865, false) + z.DecFallback(yyv3918, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3867 := &x.LastTimestamp - yym3868 := z.DecBinary() - _ = yym3868 + yyv3920 := &x.LastTimestamp + yym3921 := z.DecBinary() + _ = yym3921 if false { - } else if z.HasExtensions() && z.DecExt(yyv3867) { - } else if yym3868 { - z.DecBinaryUnmarshal(yyv3867) - } else if !yym3868 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3867) + } else if z.HasExtensions() && z.DecExt(yyv3920) { + } else if yym3921 { + z.DecBinaryUnmarshal(yyv3920) + } else if !yym3921 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3920) } else { - z.DecFallback(yyv3867, false) + z.DecFallback(yyv3920, false) } } case "count": @@ -48314,9 +49021,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3857) - } // end switch yys3857 - } // end for yyj3857 + z.DecStructFieldNotFound(-1, yys3910) + } // end switch yys3910 + } // end for yyj3910 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48324,16 +49031,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3871 int - var yyb3871 bool - var yyhl3871 bool = l >= 0 - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + var yyj3924 int + var yyb3924 bool + var yyhl3924 bool = l >= 0 + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48343,13 +49050,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48359,13 +49066,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48373,16 +49080,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3874 := &x.ObjectMeta - yyv3874.CodecDecodeSelf(d) + yyv3927 := &x.ObjectMeta + yyv3927.CodecDecodeSelf(d) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48390,16 +49097,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3875 := &x.InvolvedObject - yyv3875.CodecDecodeSelf(d) + yyv3928 := &x.InvolvedObject + yyv3928.CodecDecodeSelf(d) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48409,13 +49116,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48425,13 +49132,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48439,16 +49146,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3878 := &x.Source - yyv3878.CodecDecodeSelf(d) + yyv3931 := &x.Source + yyv3931.CodecDecodeSelf(d) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48456,26 +49163,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3879 := &x.FirstTimestamp - yym3880 := z.DecBinary() - _ = yym3880 + yyv3932 := &x.FirstTimestamp + yym3933 := z.DecBinary() + _ = yym3933 if false { - } else if z.HasExtensions() && z.DecExt(yyv3879) { - } else if yym3880 { - z.DecBinaryUnmarshal(yyv3879) - } else if !yym3880 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3879) + } else if z.HasExtensions() && z.DecExt(yyv3932) { + } else if yym3933 { + z.DecBinaryUnmarshal(yyv3932) + } else if !yym3933 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3932) } else { - z.DecFallback(yyv3879, false) + z.DecFallback(yyv3932, false) } } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48483,26 +49190,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3881 := &x.LastTimestamp - yym3882 := z.DecBinary() - _ = yym3882 + yyv3934 := &x.LastTimestamp + yym3935 := z.DecBinary() + _ = yym3935 if false { - } else if z.HasExtensions() && z.DecExt(yyv3881) { - } else if yym3882 { - z.DecBinaryUnmarshal(yyv3881) - } else if !yym3882 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3881) + } else if z.HasExtensions() && z.DecExt(yyv3934) { + } else if yym3935 { + z.DecBinaryUnmarshal(yyv3934) + } else if !yym3935 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3934) } else { - z.DecFallback(yyv3881, false) + z.DecFallback(yyv3934, false) } } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48512,13 +49219,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48529,17 +49236,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3871++ - if yyhl3871 { - yyb3871 = yyj3871 > l + yyj3924++ + if yyhl3924 { + yyb3924 = yyj3924 > l } else { - yyb3871 = r.CheckBreak() + yyb3924 = r.CheckBreak() } - if yyb3871 { + if yyb3924 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3871-1, "") + z.DecStructFieldNotFound(yyj3924-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48551,37 +49258,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3885 := z.EncBinary() - _ = yym3885 + yym3938 := z.EncBinary() + _ = yym3938 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 - var yynn3886 int - if yyr3886 || yy2arr3886 { + yysep3939 := !z.EncBinary() + yy2arr3939 := z.EncBasicHandle().StructToArray + var yyq3939 [4]bool + _, _, _ = yysep3939, yyq3939, yy2arr3939 + const yyr3939 bool = false + yyq3939[0] = x.Kind != "" + yyq3939[1] = x.APIVersion != "" + yyq3939[2] = true + var yynn3939 int + if yyr3939 || yy2arr3939 { r.EncodeArrayStart(4) } else { - yynn3886 = 1 - for _, b := range yyq3886 { + yynn3939 = 1 + for _, b := range yyq3939 { if b { - yynn3886++ + yynn3939++ } } - r.EncodeMapStart(yynn3886) - yynn3886 = 0 + r.EncodeMapStart(yynn3939) + yynn3939 = 0 } - if yyr3886 || yy2arr3886 { + if yyr3939 || yy2arr3939 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[0] { - yym3888 := z.EncBinary() - _ = yym3888 + if yyq3939[0] { + yym3941 := z.EncBinary() + _ = yym3941 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48590,23 +49297,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3886[0] { + if yyq3939[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3889 := z.EncBinary() - _ = yym3889 + yym3942 := z.EncBinary() + _ = yym3942 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3886 || yy2arr3886 { + if yyr3939 || yy2arr3939 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[1] { - yym3891 := z.EncBinary() - _ = yym3891 + if yyq3939[1] { + yym3944 := z.EncBinary() + _ = yym3944 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48615,54 +49322,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3886[1] { + if yyq3939[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3892 := z.EncBinary() - _ = yym3892 + yym3945 := z.EncBinary() + _ = yym3945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3886 || yy2arr3886 { + if yyr3939 || yy2arr3939 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3886[2] { - yy3894 := &x.ListMeta - yym3895 := z.EncBinary() - _ = yym3895 + if yyq3939[2] { + yy3947 := &x.ListMeta + yym3948 := z.EncBinary() + _ = yym3948 if false { - } else if z.HasExtensions() && z.EncExt(yy3894) { + } else if z.HasExtensions() && z.EncExt(yy3947) { } else { - z.EncFallback(yy3894) + z.EncFallback(yy3947) } } else { r.EncodeNil() } } else { - if yyq3886[2] { + if yyq3939[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3896 := &x.ListMeta - yym3897 := z.EncBinary() - _ = yym3897 + yy3949 := &x.ListMeta + yym3950 := z.EncBinary() + _ = yym3950 if false { - } else if z.HasExtensions() && z.EncExt(yy3896) { + } else if z.HasExtensions() && z.EncExt(yy3949) { } else { - z.EncFallback(yy3896) + z.EncFallback(yy3949) } } } - if yyr3886 || yy2arr3886 { + if yyr3939 || yy2arr3939 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3899 := z.EncBinary() - _ = yym3899 + yym3952 := z.EncBinary() + _ = yym3952 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -48675,15 +49382,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3900 := z.EncBinary() - _ = yym3900 + yym3953 := z.EncBinary() + _ = yym3953 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3886 || yy2arr3886 { + if yyr3939 || yy2arr3939 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48696,25 +49403,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3901 := z.DecBinary() - _ = yym3901 + yym3954 := z.DecBinary() + _ = yym3954 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3902 := r.ContainerType() - if yyct3902 == codecSelferValueTypeMap1234 { - yyl3902 := r.ReadMapStart() - if yyl3902 == 0 { + yyct3955 := r.ContainerType() + if yyct3955 == codecSelferValueTypeMap1234 { + yyl3955 := r.ReadMapStart() + if yyl3955 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3902, d) + x.codecDecodeSelfFromMap(yyl3955, d) } - } else if yyct3902 == codecSelferValueTypeArray1234 { - yyl3902 := r.ReadArrayStart() - if yyl3902 == 0 { + } else if yyct3955 == codecSelferValueTypeArray1234 { + yyl3955 := r.ReadArrayStart() + if yyl3955 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3902, d) + x.codecDecodeSelfFromArray(yyl3955, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48726,12 +49433,12 @@ func (x *EventList) 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 yys3956Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3956Slc + var yyhl3956 bool = l >= 0 + for yyj3956 := 0; ; yyj3956++ { + if yyhl3956 { + if yyj3956 >= l { break } } else { @@ -48740,10 +49447,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3903Slc = r.DecodeBytes(yys3903Slc, true, true) - yys3903 := string(yys3903Slc) + yys3956Slc = r.DecodeBytes(yys3956Slc, true, true) + yys3956 := string(yys3956Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3903 { + switch yys3956 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48760,31 +49467,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3906 := &x.ListMeta - yym3907 := z.DecBinary() - _ = yym3907 + yyv3959 := &x.ListMeta + yym3960 := z.DecBinary() + _ = yym3960 if false { - } else if z.HasExtensions() && z.DecExt(yyv3906) { + } else if z.HasExtensions() && z.DecExt(yyv3959) { } else { - z.DecFallback(yyv3906, false) + z.DecFallback(yyv3959, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3908 := &x.Items - yym3909 := z.DecBinary() - _ = yym3909 + yyv3961 := &x.Items + yym3962 := z.DecBinary() + _ = yym3962 if false { } else { - h.decSliceEvent((*[]Event)(yyv3908), d) + h.decSliceEvent((*[]Event)(yyv3961), d) } } default: - z.DecStructFieldNotFound(-1, yys3903) - } // end switch yys3903 - } // end for yyj3903 + z.DecStructFieldNotFound(-1, yys3956) + } // end switch yys3956 + } // end for yyj3956 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48792,16 +49499,16 @@ func (x *EventList) 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 yyj3963 int + var yyb3963 bool + var yyhl3963 bool = l >= 0 + yyj3963++ + if yyhl3963 { + yyb3963 = yyj3963 > l } else { - yyb3910 = r.CheckBreak() + yyb3963 = r.CheckBreak() } - if yyb3910 { + if yyb3963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48811,13 +49518,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3963++ + if yyhl3963 { + yyb3963 = yyj3963 > l } else { - yyb3910 = r.CheckBreak() + yyb3963 = r.CheckBreak() } - if yyb3910 { + if yyb3963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48827,13 +49534,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3963++ + if yyhl3963 { + yyb3963 = yyj3963 > l } else { - yyb3910 = r.CheckBreak() + yyb3963 = r.CheckBreak() } - if yyb3910 { + if yyb3963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48841,22 +49548,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3913 := &x.ListMeta - yym3914 := z.DecBinary() - _ = yym3914 + yyv3966 := &x.ListMeta + yym3967 := z.DecBinary() + _ = yym3967 if false { - } else if z.HasExtensions() && z.DecExt(yyv3913) { + } else if z.HasExtensions() && z.DecExt(yyv3966) { } else { - z.DecFallback(yyv3913, false) + z.DecFallback(yyv3966, false) } } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3963++ + if yyhl3963 { + yyb3963 = yyj3963 > l } else { - yyb3910 = r.CheckBreak() + yyb3963 = r.CheckBreak() } - if yyb3910 { + if yyb3963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48864,26 +49571,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3915 := &x.Items - yym3916 := z.DecBinary() - _ = yym3916 + yyv3968 := &x.Items + yym3969 := z.DecBinary() + _ = yym3969 if false { } else { - h.decSliceEvent((*[]Event)(yyv3915), d) + h.decSliceEvent((*[]Event)(yyv3968), d) } } for { - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3963++ + if yyhl3963 { + yyb3963 = yyj3963 > l } else { - yyb3910 = r.CheckBreak() + yyb3963 = r.CheckBreak() } - if yyb3910 { + if yyb3963 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3910-1, "") + z.DecStructFieldNotFound(yyj3963-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48895,37 +49602,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3917 := z.EncBinary() - _ = yym3917 + yym3970 := z.EncBinary() + _ = yym3970 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3918 := !z.EncBinary() - yy2arr3918 := z.EncBasicHandle().StructToArray - var yyq3918 [4]bool - _, _, _ = yysep3918, yyq3918, yy2arr3918 - const yyr3918 bool = false - yyq3918[0] = x.Kind != "" - yyq3918[1] = x.APIVersion != "" - yyq3918[2] = true - var yynn3918 int - if yyr3918 || yy2arr3918 { + yysep3971 := !z.EncBinary() + yy2arr3971 := z.EncBasicHandle().StructToArray + var yyq3971 [4]bool + _, _, _ = yysep3971, yyq3971, yy2arr3971 + const yyr3971 bool = false + yyq3971[0] = x.Kind != "" + yyq3971[1] = x.APIVersion != "" + yyq3971[2] = true + var yynn3971 int + if yyr3971 || yy2arr3971 { r.EncodeArrayStart(4) } else { - yynn3918 = 1 - for _, b := range yyq3918 { + yynn3971 = 1 + for _, b := range yyq3971 { if b { - yynn3918++ + yynn3971++ } } - r.EncodeMapStart(yynn3918) - yynn3918 = 0 + r.EncodeMapStart(yynn3971) + yynn3971 = 0 } - if yyr3918 || yy2arr3918 { + if yyr3971 || yy2arr3971 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3918[0] { - yym3920 := z.EncBinary() - _ = yym3920 + if yyq3971[0] { + yym3973 := z.EncBinary() + _ = yym3973 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48934,23 +49641,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3918[0] { + if yyq3971[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3921 := z.EncBinary() - _ = yym3921 + yym3974 := z.EncBinary() + _ = yym3974 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3918 || yy2arr3918 { + if yyr3971 || yy2arr3971 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3918[1] { - yym3923 := z.EncBinary() - _ = yym3923 + if yyq3971[1] { + yym3976 := z.EncBinary() + _ = yym3976 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48959,54 +49666,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3918[1] { + if yyq3971[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3924 := z.EncBinary() - _ = yym3924 + yym3977 := z.EncBinary() + _ = yym3977 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3918 || yy2arr3918 { + if yyr3971 || yy2arr3971 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3918[2] { - yy3926 := &x.ListMeta - yym3927 := z.EncBinary() - _ = yym3927 + if yyq3971[2] { + yy3979 := &x.ListMeta + yym3980 := z.EncBinary() + _ = yym3980 if false { - } else if z.HasExtensions() && z.EncExt(yy3926) { + } else if z.HasExtensions() && z.EncExt(yy3979) { } else { - z.EncFallback(yy3926) + z.EncFallback(yy3979) } } else { r.EncodeNil() } } else { - if yyq3918[2] { + if yyq3971[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3928 := &x.ListMeta - yym3929 := z.EncBinary() - _ = yym3929 + yy3981 := &x.ListMeta + yym3982 := z.EncBinary() + _ = yym3982 if false { - } else if z.HasExtensions() && z.EncExt(yy3928) { + } else if z.HasExtensions() && z.EncExt(yy3981) { } else { - z.EncFallback(yy3928) + z.EncFallback(yy3981) } } } - if yyr3918 || yy2arr3918 { + if yyr3971 || yy2arr3971 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3931 := z.EncBinary() - _ = yym3931 + yym3984 := z.EncBinary() + _ = yym3984 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -49019,15 +49726,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3932 := z.EncBinary() - _ = yym3932 + yym3985 := z.EncBinary() + _ = yym3985 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr3918 || yy2arr3918 { + if yyr3971 || yy2arr3971 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49040,25 +49747,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3933 := z.DecBinary() - _ = yym3933 + yym3986 := z.DecBinary() + _ = yym3986 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3934 := r.ContainerType() - if yyct3934 == codecSelferValueTypeMap1234 { - yyl3934 := r.ReadMapStart() - if yyl3934 == 0 { + yyct3987 := r.ContainerType() + if yyct3987 == codecSelferValueTypeMap1234 { + yyl3987 := r.ReadMapStart() + if yyl3987 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3934, d) + x.codecDecodeSelfFromMap(yyl3987, d) } - } else if yyct3934 == codecSelferValueTypeArray1234 { - yyl3934 := r.ReadArrayStart() - if yyl3934 == 0 { + } else if yyct3987 == codecSelferValueTypeArray1234 { + yyl3987 := r.ReadArrayStart() + if yyl3987 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3934, d) + x.codecDecodeSelfFromArray(yyl3987, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49070,12 +49777,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3935Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3935Slc - var yyhl3935 bool = l >= 0 - for yyj3935 := 0; ; yyj3935++ { - if yyhl3935 { - if yyj3935 >= l { + var yys3988Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3988Slc + var yyhl3988 bool = l >= 0 + for yyj3988 := 0; ; yyj3988++ { + if yyhl3988 { + if yyj3988 >= l { break } } else { @@ -49084,10 +49791,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3935Slc = r.DecodeBytes(yys3935Slc, true, true) - yys3935 := string(yys3935Slc) + yys3988Slc = r.DecodeBytes(yys3988Slc, true, true) + yys3988 := string(yys3988Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3935 { + switch yys3988 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49104,31 +49811,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3938 := &x.ListMeta - yym3939 := z.DecBinary() - _ = yym3939 + yyv3991 := &x.ListMeta + yym3992 := z.DecBinary() + _ = yym3992 if false { - } else if z.HasExtensions() && z.DecExt(yyv3938) { + } else if z.HasExtensions() && z.DecExt(yyv3991) { } else { - z.DecFallback(yyv3938, false) + z.DecFallback(yyv3991, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3940 := &x.Items - yym3941 := z.DecBinary() - _ = yym3941 + yyv3993 := &x.Items + yym3994 := z.DecBinary() + _ = yym3994 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3940), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3993), d) } } default: - z.DecStructFieldNotFound(-1, yys3935) - } // end switch yys3935 - } // end for yyj3935 + z.DecStructFieldNotFound(-1, yys3988) + } // end switch yys3988 + } // end for yyj3988 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49136,16 +49843,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3942 int - var yyb3942 bool - var yyhl3942 bool = l >= 0 - yyj3942++ - if yyhl3942 { - yyb3942 = yyj3942 > l + var yyj3995 int + var yyb3995 bool + var yyhl3995 bool = l >= 0 + yyj3995++ + if yyhl3995 { + yyb3995 = yyj3995 > l } else { - yyb3942 = r.CheckBreak() + yyb3995 = r.CheckBreak() } - if yyb3942 { + if yyb3995 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49155,13 +49862,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3942++ - if yyhl3942 { - yyb3942 = yyj3942 > l + yyj3995++ + if yyhl3995 { + yyb3995 = yyj3995 > l } else { - yyb3942 = r.CheckBreak() + yyb3995 = r.CheckBreak() } - if yyb3942 { + if yyb3995 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49171,13 +49878,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3942++ - if yyhl3942 { - yyb3942 = yyj3942 > l + yyj3995++ + if yyhl3995 { + yyb3995 = yyj3995 > l } else { - yyb3942 = r.CheckBreak() + yyb3995 = r.CheckBreak() } - if yyb3942 { + if yyb3995 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49185,22 +49892,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3945 := &x.ListMeta - yym3946 := z.DecBinary() - _ = yym3946 + yyv3998 := &x.ListMeta + yym3999 := z.DecBinary() + _ = yym3999 if false { - } else if z.HasExtensions() && z.DecExt(yyv3945) { + } else if z.HasExtensions() && z.DecExt(yyv3998) { } else { - z.DecFallback(yyv3945, false) + z.DecFallback(yyv3998, false) } } - yyj3942++ - if yyhl3942 { - yyb3942 = yyj3942 > l + yyj3995++ + if yyhl3995 { + yyb3995 = yyj3995 > l } else { - yyb3942 = r.CheckBreak() + yyb3995 = r.CheckBreak() } - if yyb3942 { + if yyb3995 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49208,26 +49915,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3947 := &x.Items - yym3948 := z.DecBinary() - _ = yym3948 + yyv4000 := &x.Items + yym4001 := z.DecBinary() + _ = yym4001 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3947), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4000), d) } } for { - yyj3942++ - if yyhl3942 { - yyb3942 = yyj3942 > l + yyj3995++ + if yyhl3995 { + yyb3995 = yyj3995 > l } else { - yyb3942 = r.CheckBreak() + yyb3995 = r.CheckBreak() } - if yyb3942 { + if yyb3995 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3942-1, "") + z.DecStructFieldNotFound(yyj3995-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49236,8 +49943,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3949 := z.EncBinary() - _ = yym3949 + yym4002 := z.EncBinary() + _ = yym4002 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49249,8 +49956,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3950 := z.DecBinary() - _ = yym3950 + yym4003 := z.DecBinary() + _ = yym4003 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49265,53 +49972,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3951 := z.EncBinary() - _ = yym3951 + yym4004 := z.EncBinary() + _ = yym4004 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3952 := !z.EncBinary() - yy2arr3952 := z.EncBasicHandle().StructToArray - var yyq3952 [6]bool - _, _, _ = yysep3952, yyq3952, yy2arr3952 - const yyr3952 bool = false - yyq3952[0] = x.Type != "" - yyq3952[1] = len(x.Max) != 0 - yyq3952[2] = len(x.Min) != 0 - yyq3952[3] = len(x.Default) != 0 - yyq3952[4] = len(x.DefaultRequest) != 0 - yyq3952[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3952 int - if yyr3952 || yy2arr3952 { + yysep4005 := !z.EncBinary() + yy2arr4005 := z.EncBasicHandle().StructToArray + var yyq4005 [6]bool + _, _, _ = yysep4005, yyq4005, yy2arr4005 + const yyr4005 bool = false + yyq4005[0] = x.Type != "" + yyq4005[1] = len(x.Max) != 0 + yyq4005[2] = len(x.Min) != 0 + yyq4005[3] = len(x.Default) != 0 + yyq4005[4] = len(x.DefaultRequest) != 0 + yyq4005[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn4005 int + if yyr4005 || yy2arr4005 { r.EncodeArrayStart(6) } else { - yynn3952 = 0 - for _, b := range yyq3952 { + yynn4005 = 0 + for _, b := range yyq4005 { if b { - yynn3952++ + yynn4005++ } } - r.EncodeMapStart(yynn3952) - yynn3952 = 0 + r.EncodeMapStart(yynn4005) + yynn4005 = 0 } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3952[0] { + if yyq4005[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3952[0] { + if yyq4005[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3952[1] { + if yyq4005[1] { if x.Max == nil { r.EncodeNil() } else { @@ -49321,7 +50028,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3952[1] { + if yyq4005[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49332,9 +50039,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3952[2] { + if yyq4005[2] { if x.Min == nil { r.EncodeNil() } else { @@ -49344,7 +50051,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3952[2] { + if yyq4005[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49355,9 +50062,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3952[3] { + if yyq4005[3] { if x.Default == nil { r.EncodeNil() } else { @@ -49367,7 +50074,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3952[3] { + if yyq4005[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49378,9 +50085,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3952[4] { + if yyq4005[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -49390,7 +50097,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3952[4] { + if yyq4005[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49401,9 +50108,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3952[5] { + if yyq4005[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -49413,7 +50120,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3952[5] { + if yyq4005[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49424,7 +50131,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3952 || yy2arr3952 { + if yyr4005 || yy2arr4005 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49437,25 +50144,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3959 := z.DecBinary() - _ = yym3959 + yym4012 := z.DecBinary() + _ = yym4012 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3960 := r.ContainerType() - if yyct3960 == codecSelferValueTypeMap1234 { - yyl3960 := r.ReadMapStart() - if yyl3960 == 0 { + yyct4013 := r.ContainerType() + if yyct4013 == codecSelferValueTypeMap1234 { + yyl4013 := r.ReadMapStart() + if yyl4013 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3960, d) + x.codecDecodeSelfFromMap(yyl4013, d) } - } else if yyct3960 == codecSelferValueTypeArray1234 { - yyl3960 := r.ReadArrayStart() - if yyl3960 == 0 { + } else if yyct4013 == codecSelferValueTypeArray1234 { + yyl4013 := r.ReadArrayStart() + if yyl4013 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3960, d) + x.codecDecodeSelfFromArray(yyl4013, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49467,12 +50174,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3961Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3961Slc - var yyhl3961 bool = l >= 0 - for yyj3961 := 0; ; yyj3961++ { - if yyhl3961 { - if yyj3961 >= l { + var yys4014Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4014Slc + var yyhl4014 bool = l >= 0 + for yyj4014 := 0; ; yyj4014++ { + if yyhl4014 { + if yyj4014 >= l { break } } else { @@ -49481,10 +50188,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3961Slc = r.DecodeBytes(yys3961Slc, true, true) - yys3961 := string(yys3961Slc) + yys4014Slc = r.DecodeBytes(yys4014Slc, true, true) + yys4014 := string(yys4014Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3961 { + switch yys4014 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -49495,41 +50202,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3963 := &x.Max - yyv3963.CodecDecodeSelf(d) + yyv4016 := &x.Max + yyv4016.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3964 := &x.Min - yyv3964.CodecDecodeSelf(d) + yyv4017 := &x.Min + yyv4017.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3965 := &x.Default - yyv3965.CodecDecodeSelf(d) + yyv4018 := &x.Default + yyv4018.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3966 := &x.DefaultRequest - yyv3966.CodecDecodeSelf(d) + yyv4019 := &x.DefaultRequest + yyv4019.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3967 := &x.MaxLimitRequestRatio - yyv3967.CodecDecodeSelf(d) + yyv4020 := &x.MaxLimitRequestRatio + yyv4020.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3961) - } // end switch yys3961 - } // end for yyj3961 + z.DecStructFieldNotFound(-1, yys4014) + } // end switch yys4014 + } // end for yyj4014 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49537,16 +50244,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3968 int - var yyb3968 bool - var yyhl3968 bool = l >= 0 - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + var yyj4021 int + var yyb4021 bool + var yyhl4021 bool = l >= 0 + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49556,13 +50263,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49570,16 +50277,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3970 := &x.Max - yyv3970.CodecDecodeSelf(d) + yyv4023 := &x.Max + yyv4023.CodecDecodeSelf(d) } - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49587,16 +50294,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3971 := &x.Min - yyv3971.CodecDecodeSelf(d) + yyv4024 := &x.Min + yyv4024.CodecDecodeSelf(d) } - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49604,16 +50311,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3972 := &x.Default - yyv3972.CodecDecodeSelf(d) + yyv4025 := &x.Default + yyv4025.CodecDecodeSelf(d) } - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49621,16 +50328,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3973 := &x.DefaultRequest - yyv3973.CodecDecodeSelf(d) + yyv4026 := &x.DefaultRequest + yyv4026.CodecDecodeSelf(d) } - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49638,21 +50345,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3974 := &x.MaxLimitRequestRatio - yyv3974.CodecDecodeSelf(d) + yyv4027 := &x.MaxLimitRequestRatio + yyv4027.CodecDecodeSelf(d) } for { - yyj3968++ - if yyhl3968 { - yyb3968 = yyj3968 > l + yyj4021++ + if yyhl4021 { + yyb4021 = yyj4021 > l } else { - yyb3968 = r.CheckBreak() + yyb4021 = r.CheckBreak() } - if yyb3968 { + if yyb4021 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3968-1, "") + z.DecStructFieldNotFound(yyj4021-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49664,36 +50371,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3975 := z.EncBinary() - _ = yym3975 + yym4028 := z.EncBinary() + _ = yym4028 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3976 := !z.EncBinary() - yy2arr3976 := z.EncBasicHandle().StructToArray - var yyq3976 [1]bool - _, _, _ = yysep3976, yyq3976, yy2arr3976 - const yyr3976 bool = false - var yynn3976 int - if yyr3976 || yy2arr3976 { + yysep4029 := !z.EncBinary() + yy2arr4029 := z.EncBasicHandle().StructToArray + var yyq4029 [1]bool + _, _, _ = yysep4029, yyq4029, yy2arr4029 + const yyr4029 bool = false + var yynn4029 int + if yyr4029 || yy2arr4029 { r.EncodeArrayStart(1) } else { - yynn3976 = 1 - for _, b := range yyq3976 { + yynn4029 = 1 + for _, b := range yyq4029 { if b { - yynn3976++ + yynn4029++ } } - r.EncodeMapStart(yynn3976) - yynn3976 = 0 + r.EncodeMapStart(yynn4029) + yynn4029 = 0 } - if yyr3976 || yy2arr3976 { + if yyr4029 || yy2arr4029 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3978 := z.EncBinary() - _ = yym3978 + yym4031 := z.EncBinary() + _ = yym4031 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -49706,15 +50413,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3979 := z.EncBinary() - _ = yym3979 + yym4032 := z.EncBinary() + _ = yym4032 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3976 || yy2arr3976 { + if yyr4029 || yy2arr4029 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49727,25 +50434,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3980 := z.DecBinary() - _ = yym3980 + yym4033 := z.DecBinary() + _ = yym4033 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3981 := r.ContainerType() - if yyct3981 == codecSelferValueTypeMap1234 { - yyl3981 := r.ReadMapStart() - if yyl3981 == 0 { + yyct4034 := r.ContainerType() + if yyct4034 == codecSelferValueTypeMap1234 { + yyl4034 := r.ReadMapStart() + if yyl4034 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3981, d) + x.codecDecodeSelfFromMap(yyl4034, d) } - } else if yyct3981 == codecSelferValueTypeArray1234 { - yyl3981 := r.ReadArrayStart() - if yyl3981 == 0 { + } else if yyct4034 == codecSelferValueTypeArray1234 { + yyl4034 := r.ReadArrayStart() + if yyl4034 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3981, d) + x.codecDecodeSelfFromArray(yyl4034, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49757,12 +50464,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3982Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3982Slc - var yyhl3982 bool = l >= 0 - for yyj3982 := 0; ; yyj3982++ { - if yyhl3982 { - if yyj3982 >= 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 { @@ -49771,26 +50478,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3982Slc = r.DecodeBytes(yys3982Slc, true, true) - yys3982 := string(yys3982Slc) + yys4035Slc = r.DecodeBytes(yys4035Slc, true, true) + yys4035 := string(yys4035Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3982 { + switch yys4035 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3983 := &x.Limits - yym3984 := z.DecBinary() - _ = yym3984 + yyv4036 := &x.Limits + yym4037 := z.DecBinary() + _ = yym4037 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3983), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4036), d) } } default: - z.DecStructFieldNotFound(-1, yys3982) - } // end switch yys3982 - } // end for yyj3982 + z.DecStructFieldNotFound(-1, yys4035) + } // end switch yys4035 + } // end for yyj4035 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49798,16 +50505,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3985 int - var yyb3985 bool - var yyhl3985 bool = l >= 0 - yyj3985++ - if yyhl3985 { - yyb3985 = yyj3985 > l + var yyj4038 int + var yyb4038 bool + var yyhl4038 bool = l >= 0 + yyj4038++ + if yyhl4038 { + yyb4038 = yyj4038 > l } else { - yyb3985 = r.CheckBreak() + yyb4038 = r.CheckBreak() } - if yyb3985 { + if yyb4038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49815,26 +50522,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3986 := &x.Limits - yym3987 := z.DecBinary() - _ = yym3987 + yyv4039 := &x.Limits + yym4040 := z.DecBinary() + _ = yym4040 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3986), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4039), d) } } for { - yyj3985++ - if yyhl3985 { - yyb3985 = yyj3985 > l + yyj4038++ + if yyhl4038 { + yyb4038 = yyj4038 > l } else { - yyb3985 = r.CheckBreak() + yyb4038 = r.CheckBreak() } - if yyb3985 { + if yyb4038 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3985-1, "") + z.DecStructFieldNotFound(yyj4038-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49846,38 +50553,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3988 := z.EncBinary() - _ = yym3988 + yym4041 := z.EncBinary() + _ = yym4041 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3989 := !z.EncBinary() - yy2arr3989 := z.EncBasicHandle().StructToArray - var yyq3989 [4]bool - _, _, _ = yysep3989, yyq3989, yy2arr3989 - const yyr3989 bool = false - yyq3989[0] = x.Kind != "" - yyq3989[1] = x.APIVersion != "" - yyq3989[2] = true - yyq3989[3] = true - var yynn3989 int - if yyr3989 || yy2arr3989 { + yysep4042 := !z.EncBinary() + yy2arr4042 := z.EncBasicHandle().StructToArray + var yyq4042 [4]bool + _, _, _ = yysep4042, yyq4042, yy2arr4042 + const yyr4042 bool = false + yyq4042[0] = x.Kind != "" + yyq4042[1] = x.APIVersion != "" + yyq4042[2] = true + yyq4042[3] = true + var yynn4042 int + if yyr4042 || yy2arr4042 { r.EncodeArrayStart(4) } else { - yynn3989 = 0 - for _, b := range yyq3989 { + yynn4042 = 0 + for _, b := range yyq4042 { if b { - yynn3989++ + yynn4042++ } } - r.EncodeMapStart(yynn3989) - yynn3989 = 0 + r.EncodeMapStart(yynn4042) + yynn4042 = 0 } - if yyr3989 || yy2arr3989 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3989[0] { - yym3991 := z.EncBinary() - _ = yym3991 + if yyq4042[0] { + yym4044 := z.EncBinary() + _ = yym4044 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49886,23 +50593,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3989[0] { + if yyq4042[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3992 := z.EncBinary() - _ = yym3992 + yym4045 := z.EncBinary() + _ = yym4045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3989 || yy2arr3989 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3989[1] { - yym3994 := z.EncBinary() - _ = yym3994 + if yyq4042[1] { + yym4047 := z.EncBinary() + _ = yym4047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49911,53 +50618,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3989[1] { + if yyq4042[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3995 := z.EncBinary() - _ = yym3995 + yym4048 := z.EncBinary() + _ = yym4048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3989 || yy2arr3989 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3989[2] { - yy3997 := &x.ObjectMeta - yy3997.CodecEncodeSelf(e) + if yyq4042[2] { + yy4050 := &x.ObjectMeta + yy4050.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3989[2] { + if yyq4042[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3998 := &x.ObjectMeta - yy3998.CodecEncodeSelf(e) + yy4051 := &x.ObjectMeta + yy4051.CodecEncodeSelf(e) } } - if yyr3989 || yy2arr3989 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3989[3] { - yy4000 := &x.Spec - yy4000.CodecEncodeSelf(e) + if yyq4042[3] { + yy4053 := &x.Spec + yy4053.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3989[3] { + if yyq4042[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4001 := &x.Spec - yy4001.CodecEncodeSelf(e) + yy4054 := &x.Spec + yy4054.CodecEncodeSelf(e) } } - if yyr3989 || yy2arr3989 { + if yyr4042 || yy2arr4042 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49970,25 +50677,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4002 := z.DecBinary() - _ = yym4002 + yym4055 := z.DecBinary() + _ = yym4055 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4003 := r.ContainerType() - if yyct4003 == codecSelferValueTypeMap1234 { - yyl4003 := r.ReadMapStart() - if yyl4003 == 0 { + yyct4056 := r.ContainerType() + if yyct4056 == codecSelferValueTypeMap1234 { + yyl4056 := r.ReadMapStart() + if yyl4056 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4003, d) + x.codecDecodeSelfFromMap(yyl4056, d) } - } else if yyct4003 == codecSelferValueTypeArray1234 { - yyl4003 := r.ReadArrayStart() - if yyl4003 == 0 { + } else if yyct4056 == codecSelferValueTypeArray1234 { + yyl4056 := r.ReadArrayStart() + if yyl4056 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4003, d) + x.codecDecodeSelfFromArray(yyl4056, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50000,12 +50707,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4004Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4004Slc - var yyhl4004 bool = l >= 0 - for yyj4004 := 0; ; yyj4004++ { - if yyhl4004 { - if yyj4004 >= l { + var yys4057Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4057Slc + var yyhl4057 bool = l >= 0 + for yyj4057 := 0; ; yyj4057++ { + if yyhl4057 { + if yyj4057 >= l { break } } else { @@ -50014,10 +50721,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4004Slc = r.DecodeBytes(yys4004Slc, true, true) - yys4004 := string(yys4004Slc) + yys4057Slc = r.DecodeBytes(yys4057Slc, true, true) + yys4057 := string(yys4057Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4004 { + switch yys4057 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50034,20 +50741,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4007 := &x.ObjectMeta - yyv4007.CodecDecodeSelf(d) + yyv4060 := &x.ObjectMeta + yyv4060.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4008 := &x.Spec - yyv4008.CodecDecodeSelf(d) + yyv4061 := &x.Spec + yyv4061.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4004) - } // end switch yys4004 - } // end for yyj4004 + z.DecStructFieldNotFound(-1, yys4057) + } // end switch yys4057 + } // end for yyj4057 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50055,16 +50762,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4009 int - var yyb4009 bool - var yyhl4009 bool = l >= 0 - yyj4009++ - if yyhl4009 { - yyb4009 = yyj4009 > l + var yyj4062 int + var yyb4062 bool + var yyhl4062 bool = l >= 0 + yyj4062++ + if yyhl4062 { + yyb4062 = yyj4062 > l } else { - yyb4009 = r.CheckBreak() + yyb4062 = r.CheckBreak() } - if yyb4009 { + if yyb4062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50074,13 +50781,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4009++ - if yyhl4009 { - yyb4009 = yyj4009 > l + yyj4062++ + if yyhl4062 { + yyb4062 = yyj4062 > l } else { - yyb4009 = r.CheckBreak() + yyb4062 = r.CheckBreak() } - if yyb4009 { + if yyb4062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50090,13 +50797,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4009++ - if yyhl4009 { - yyb4009 = yyj4009 > l + yyj4062++ + if yyhl4062 { + yyb4062 = yyj4062 > l } else { - yyb4009 = r.CheckBreak() + yyb4062 = r.CheckBreak() } - if yyb4009 { + if yyb4062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50104,16 +50811,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4012 := &x.ObjectMeta - yyv4012.CodecDecodeSelf(d) + yyv4065 := &x.ObjectMeta + yyv4065.CodecDecodeSelf(d) } - yyj4009++ - if yyhl4009 { - yyb4009 = yyj4009 > l + yyj4062++ + if yyhl4062 { + yyb4062 = yyj4062 > l } else { - yyb4009 = r.CheckBreak() + yyb4062 = r.CheckBreak() } - if yyb4009 { + if yyb4062 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50121,21 +50828,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4013 := &x.Spec - yyv4013.CodecDecodeSelf(d) + yyv4066 := &x.Spec + yyv4066.CodecDecodeSelf(d) } for { - yyj4009++ - if yyhl4009 { - yyb4009 = yyj4009 > l + yyj4062++ + if yyhl4062 { + yyb4062 = yyj4062 > l } else { - yyb4009 = r.CheckBreak() + yyb4062 = r.CheckBreak() } - if yyb4009 { + if yyb4062 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4009-1, "") + z.DecStructFieldNotFound(yyj4062-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50147,37 +50854,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4014 := z.EncBinary() - _ = yym4014 + yym4067 := z.EncBinary() + _ = yym4067 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4015 := !z.EncBinary() - yy2arr4015 := z.EncBasicHandle().StructToArray - var yyq4015 [4]bool - _, _, _ = yysep4015, yyq4015, yy2arr4015 - const yyr4015 bool = false - yyq4015[0] = x.Kind != "" - yyq4015[1] = x.APIVersion != "" - yyq4015[2] = true - var yynn4015 int - if yyr4015 || yy2arr4015 { + yysep4068 := !z.EncBinary() + yy2arr4068 := z.EncBasicHandle().StructToArray + var yyq4068 [4]bool + _, _, _ = yysep4068, yyq4068, yy2arr4068 + const yyr4068 bool = false + yyq4068[0] = x.Kind != "" + yyq4068[1] = x.APIVersion != "" + yyq4068[2] = true + var yynn4068 int + if yyr4068 || yy2arr4068 { r.EncodeArrayStart(4) } else { - yynn4015 = 1 - for _, b := range yyq4015 { + yynn4068 = 1 + for _, b := range yyq4068 { if b { - yynn4015++ + yynn4068++ } } - r.EncodeMapStart(yynn4015) - yynn4015 = 0 + r.EncodeMapStart(yynn4068) + yynn4068 = 0 } - if yyr4015 || yy2arr4015 { + if yyr4068 || yy2arr4068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4015[0] { - yym4017 := z.EncBinary() - _ = yym4017 + if yyq4068[0] { + yym4070 := z.EncBinary() + _ = yym4070 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50186,23 +50893,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4015[0] { + if yyq4068[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4018 := z.EncBinary() - _ = yym4018 + yym4071 := z.EncBinary() + _ = yym4071 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4015 || yy2arr4015 { + if yyr4068 || yy2arr4068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4015[1] { - yym4020 := z.EncBinary() - _ = yym4020 + if yyq4068[1] { + yym4073 := z.EncBinary() + _ = yym4073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50211,54 +50918,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4015[1] { + if yyq4068[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4021 := z.EncBinary() - _ = yym4021 + yym4074 := z.EncBinary() + _ = yym4074 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4015 || yy2arr4015 { + if yyr4068 || yy2arr4068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4015[2] { - yy4023 := &x.ListMeta - yym4024 := z.EncBinary() - _ = yym4024 + if yyq4068[2] { + yy4076 := &x.ListMeta + yym4077 := z.EncBinary() + _ = yym4077 if false { - } else if z.HasExtensions() && z.EncExt(yy4023) { + } else if z.HasExtensions() && z.EncExt(yy4076) { } else { - z.EncFallback(yy4023) + z.EncFallback(yy4076) } } else { r.EncodeNil() } } else { - if yyq4015[2] { + if yyq4068[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4025 := &x.ListMeta - yym4026 := z.EncBinary() - _ = yym4026 + yy4078 := &x.ListMeta + yym4079 := z.EncBinary() + _ = yym4079 if false { - } else if z.HasExtensions() && z.EncExt(yy4025) { + } else if z.HasExtensions() && z.EncExt(yy4078) { } else { - z.EncFallback(yy4025) + z.EncFallback(yy4078) } } } - if yyr4015 || yy2arr4015 { + if yyr4068 || yy2arr4068 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4028 := z.EncBinary() - _ = yym4028 + yym4081 := z.EncBinary() + _ = yym4081 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -50271,15 +50978,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4029 := z.EncBinary() - _ = yym4029 + yym4082 := z.EncBinary() + _ = yym4082 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4015 || yy2arr4015 { + if yyr4068 || yy2arr4068 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50292,25 +50999,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4030 := z.DecBinary() - _ = yym4030 + yym4083 := z.DecBinary() + _ = yym4083 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4031 := r.ContainerType() - if yyct4031 == codecSelferValueTypeMap1234 { - yyl4031 := r.ReadMapStart() - if yyl4031 == 0 { + yyct4084 := r.ContainerType() + if yyct4084 == codecSelferValueTypeMap1234 { + yyl4084 := r.ReadMapStart() + if yyl4084 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4031, d) + x.codecDecodeSelfFromMap(yyl4084, d) } - } else if yyct4031 == codecSelferValueTypeArray1234 { - yyl4031 := r.ReadArrayStart() - if yyl4031 == 0 { + } else if yyct4084 == codecSelferValueTypeArray1234 { + yyl4084 := r.ReadArrayStart() + if yyl4084 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4031, d) + x.codecDecodeSelfFromArray(yyl4084, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50322,12 +51029,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4032Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4032Slc - var yyhl4032 bool = l >= 0 - for yyj4032 := 0; ; yyj4032++ { - if yyhl4032 { - if yyj4032 >= l { + var yys4085Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4085Slc + var yyhl4085 bool = l >= 0 + for yyj4085 := 0; ; yyj4085++ { + if yyhl4085 { + if yyj4085 >= l { break } } else { @@ -50336,10 +51043,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4032Slc = r.DecodeBytes(yys4032Slc, true, true) - yys4032 := string(yys4032Slc) + yys4085Slc = r.DecodeBytes(yys4085Slc, true, true) + yys4085 := string(yys4085Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4032 { + switch yys4085 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50356,31 +51063,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4035 := &x.ListMeta - yym4036 := z.DecBinary() - _ = yym4036 + yyv4088 := &x.ListMeta + yym4089 := z.DecBinary() + _ = yym4089 if false { - } else if z.HasExtensions() && z.DecExt(yyv4035) { + } else if z.HasExtensions() && z.DecExt(yyv4088) { } else { - z.DecFallback(yyv4035, false) + z.DecFallback(yyv4088, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4037 := &x.Items - yym4038 := z.DecBinary() - _ = yym4038 + yyv4090 := &x.Items + yym4091 := z.DecBinary() + _ = yym4091 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4037), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4090), d) } } default: - z.DecStructFieldNotFound(-1, yys4032) - } // end switch yys4032 - } // end for yyj4032 + z.DecStructFieldNotFound(-1, yys4085) + } // end switch yys4085 + } // end for yyj4085 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50388,16 +51095,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4039 int - var yyb4039 bool - var yyhl4039 bool = l >= 0 - yyj4039++ - if yyhl4039 { - yyb4039 = yyj4039 > l + var yyj4092 int + var yyb4092 bool + var yyhl4092 bool = l >= 0 + yyj4092++ + if yyhl4092 { + yyb4092 = yyj4092 > l } else { - yyb4039 = r.CheckBreak() + yyb4092 = r.CheckBreak() } - if yyb4039 { + if yyb4092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50407,13 +51114,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4039++ - if yyhl4039 { - yyb4039 = yyj4039 > l + yyj4092++ + if yyhl4092 { + yyb4092 = yyj4092 > l } else { - yyb4039 = r.CheckBreak() + yyb4092 = r.CheckBreak() } - if yyb4039 { + if yyb4092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50423,13 +51130,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4039++ - if yyhl4039 { - yyb4039 = yyj4039 > l + yyj4092++ + if yyhl4092 { + yyb4092 = yyj4092 > l } else { - yyb4039 = r.CheckBreak() + yyb4092 = r.CheckBreak() } - if yyb4039 { + if yyb4092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50437,22 +51144,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4042 := &x.ListMeta - yym4043 := z.DecBinary() - _ = yym4043 + yyv4095 := &x.ListMeta + yym4096 := z.DecBinary() + _ = yym4096 if false { - } else if z.HasExtensions() && z.DecExt(yyv4042) { + } else if z.HasExtensions() && z.DecExt(yyv4095) { } else { - z.DecFallback(yyv4042, false) + z.DecFallback(yyv4095, false) } } - yyj4039++ - if yyhl4039 { - yyb4039 = yyj4039 > l + yyj4092++ + if yyhl4092 { + yyb4092 = yyj4092 > l } else { - yyb4039 = r.CheckBreak() + yyb4092 = r.CheckBreak() } - if yyb4039 { + if yyb4092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50460,26 +51167,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4044 := &x.Items - yym4045 := z.DecBinary() - _ = yym4045 + yyv4097 := &x.Items + yym4098 := z.DecBinary() + _ = yym4098 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4044), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4097), d) } } for { - yyj4039++ - if yyhl4039 { - yyb4039 = yyj4039 > l + yyj4092++ + if yyhl4092 { + yyb4092 = yyj4092 > l } else { - yyb4039 = r.CheckBreak() + yyb4092 = r.CheckBreak() } - if yyb4039 { + if yyb4092 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4039-1, "") + z.DecStructFieldNotFound(yyj4092-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50488,8 +51195,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4046 := z.EncBinary() - _ = yym4046 + yym4099 := z.EncBinary() + _ = yym4099 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50501,8 +51208,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4047 := z.DecBinary() - _ = yym4047 + yym4100 := z.DecBinary() + _ = yym4100 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50517,34 +51224,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4048 := z.EncBinary() - _ = yym4048 + yym4101 := z.EncBinary() + _ = yym4101 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4049 := !z.EncBinary() - yy2arr4049 := z.EncBasicHandle().StructToArray - var yyq4049 [2]bool - _, _, _ = yysep4049, yyq4049, yy2arr4049 - const yyr4049 bool = false - yyq4049[0] = len(x.Hard) != 0 - yyq4049[1] = len(x.Scopes) != 0 - var yynn4049 int - if yyr4049 || yy2arr4049 { + yysep4102 := !z.EncBinary() + yy2arr4102 := z.EncBasicHandle().StructToArray + var yyq4102 [2]bool + _, _, _ = yysep4102, yyq4102, yy2arr4102 + const yyr4102 bool = false + yyq4102[0] = len(x.Hard) != 0 + yyq4102[1] = len(x.Scopes) != 0 + var yynn4102 int + if yyr4102 || yy2arr4102 { r.EncodeArrayStart(2) } else { - yynn4049 = 0 - for _, b := range yyq4049 { + yynn4102 = 0 + for _, b := range yyq4102 { if b { - yynn4049++ + yynn4102++ } } - r.EncodeMapStart(yynn4049) - yynn4049 = 0 + r.EncodeMapStart(yynn4102) + yynn4102 = 0 } - if yyr4049 || yy2arr4049 { + if yyr4102 || yy2arr4102 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4049[0] { + if yyq4102[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50554,7 +51261,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4049[0] { + if yyq4102[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50565,14 +51272,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4049 || yy2arr4049 { + if yyr4102 || yy2arr4102 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4049[1] { + if yyq4102[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4052 := z.EncBinary() - _ = yym4052 + yym4105 := z.EncBinary() + _ = yym4105 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50582,15 +51289,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4049[1] { + if yyq4102[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4053 := z.EncBinary() - _ = yym4053 + yym4106 := z.EncBinary() + _ = yym4106 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50598,7 +51305,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4049 || yy2arr4049 { + if yyr4102 || yy2arr4102 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50611,25 +51318,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4054 := z.DecBinary() - _ = yym4054 + yym4107 := z.DecBinary() + _ = yym4107 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4055 := r.ContainerType() - if yyct4055 == codecSelferValueTypeMap1234 { - yyl4055 := r.ReadMapStart() - if yyl4055 == 0 { + yyct4108 := r.ContainerType() + if yyct4108 == codecSelferValueTypeMap1234 { + yyl4108 := r.ReadMapStart() + if yyl4108 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4055, d) + x.codecDecodeSelfFromMap(yyl4108, d) } - } else if yyct4055 == codecSelferValueTypeArray1234 { - yyl4055 := r.ReadArrayStart() - if yyl4055 == 0 { + } else if yyct4108 == codecSelferValueTypeArray1234 { + yyl4108 := r.ReadArrayStart() + if yyl4108 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4055, d) + x.codecDecodeSelfFromArray(yyl4108, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50641,12 +51348,12 @@ func (x *ResourceQuotaSpec) 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 yys4109Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4109Slc + var yyhl4109 bool = l >= 0 + for yyj4109 := 0; ; yyj4109++ { + if yyhl4109 { + if yyj4109 >= l { break } } else { @@ -50655,33 +51362,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4056Slc = r.DecodeBytes(yys4056Slc, true, true) - yys4056 := string(yys4056Slc) + yys4109Slc = r.DecodeBytes(yys4109Slc, true, true) + yys4109 := string(yys4109Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4056 { + switch yys4109 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4057 := &x.Hard - yyv4057.CodecDecodeSelf(d) + yyv4110 := &x.Hard + yyv4110.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4058 := &x.Scopes - yym4059 := z.DecBinary() - _ = yym4059 + yyv4111 := &x.Scopes + yym4112 := z.DecBinary() + _ = yym4112 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4058), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4111), d) } } default: - z.DecStructFieldNotFound(-1, yys4056) - } // end switch yys4056 - } // end for yyj4056 + z.DecStructFieldNotFound(-1, yys4109) + } // end switch yys4109 + } // end for yyj4109 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50689,16 +51396,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4060 int - var yyb4060 bool - var yyhl4060 bool = l >= 0 - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + var yyj4113 int + var yyb4113 bool + var yyhl4113 bool = l >= 0 + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4060 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4060 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50706,16 +51413,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4061 := &x.Hard - yyv4061.CodecDecodeSelf(d) + yyv4114 := &x.Hard + yyv4114.CodecDecodeSelf(d) } - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4060 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4060 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50723,26 +51430,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4062 := &x.Scopes - yym4063 := z.DecBinary() - _ = yym4063 + yyv4115 := &x.Scopes + yym4116 := z.DecBinary() + _ = yym4116 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4062), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4115), d) } } for { - yyj4060++ - if yyhl4060 { - yyb4060 = yyj4060 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4060 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4060 { + if yyb4113 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4060-1, "") + z.DecStructFieldNotFound(yyj4113-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50754,34 +51461,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4064 := z.EncBinary() - _ = yym4064 + yym4117 := z.EncBinary() + _ = yym4117 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4065 := !z.EncBinary() - yy2arr4065 := z.EncBasicHandle().StructToArray - var yyq4065 [2]bool - _, _, _ = yysep4065, yyq4065, yy2arr4065 - const yyr4065 bool = false - yyq4065[0] = len(x.Hard) != 0 - yyq4065[1] = len(x.Used) != 0 - var yynn4065 int - if yyr4065 || yy2arr4065 { + yysep4118 := !z.EncBinary() + yy2arr4118 := z.EncBasicHandle().StructToArray + var yyq4118 [2]bool + _, _, _ = yysep4118, yyq4118, yy2arr4118 + const yyr4118 bool = false + yyq4118[0] = len(x.Hard) != 0 + yyq4118[1] = len(x.Used) != 0 + var yynn4118 int + if yyr4118 || yy2arr4118 { r.EncodeArrayStart(2) } else { - yynn4065 = 0 - for _, b := range yyq4065 { + yynn4118 = 0 + for _, b := range yyq4118 { if b { - yynn4065++ + yynn4118++ } } - r.EncodeMapStart(yynn4065) - yynn4065 = 0 + r.EncodeMapStart(yynn4118) + yynn4118 = 0 } - if yyr4065 || yy2arr4065 { + if yyr4118 || yy2arr4118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4065[0] { + if yyq4118[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50791,7 +51498,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4065[0] { + if yyq4118[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50802,9 +51509,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4065 || yy2arr4065 { + if yyr4118 || yy2arr4118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4065[1] { + if yyq4118[1] { if x.Used == nil { r.EncodeNil() } else { @@ -50814,7 +51521,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4065[1] { + if yyq4118[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50825,7 +51532,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4065 || yy2arr4065 { + if yyr4118 || yy2arr4118 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50838,25 +51545,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4068 := z.DecBinary() - _ = yym4068 + yym4121 := z.DecBinary() + _ = yym4121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4069 := r.ContainerType() - if yyct4069 == codecSelferValueTypeMap1234 { - yyl4069 := r.ReadMapStart() - if yyl4069 == 0 { + yyct4122 := r.ContainerType() + if yyct4122 == codecSelferValueTypeMap1234 { + yyl4122 := r.ReadMapStart() + if yyl4122 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4069, d) + x.codecDecodeSelfFromMap(yyl4122, d) } - } else if yyct4069 == codecSelferValueTypeArray1234 { - yyl4069 := r.ReadArrayStart() - if yyl4069 == 0 { + } else if yyct4122 == codecSelferValueTypeArray1234 { + yyl4122 := r.ReadArrayStart() + if yyl4122 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4069, d) + x.codecDecodeSelfFromArray(yyl4122, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50868,12 +51575,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4070Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4070Slc - var yyhl4070 bool = l >= 0 - for yyj4070 := 0; ; yyj4070++ { - if yyhl4070 { - if yyj4070 >= l { + var yys4123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4123Slc + var yyhl4123 bool = l >= 0 + for yyj4123 := 0; ; yyj4123++ { + if yyhl4123 { + if yyj4123 >= l { break } } else { @@ -50882,28 +51589,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4070Slc = r.DecodeBytes(yys4070Slc, true, true) - yys4070 := string(yys4070Slc) + yys4123Slc = r.DecodeBytes(yys4123Slc, true, true) + yys4123 := string(yys4123Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4070 { + switch yys4123 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4071 := &x.Hard - yyv4071.CodecDecodeSelf(d) + yyv4124 := &x.Hard + yyv4124.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4072 := &x.Used - yyv4072.CodecDecodeSelf(d) + yyv4125 := &x.Used + yyv4125.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4070) - } // end switch yys4070 - } // end for yyj4070 + z.DecStructFieldNotFound(-1, yys4123) + } // end switch yys4123 + } // end for yyj4123 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50911,16 +51618,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4073 int - var yyb4073 bool - var yyhl4073 bool = l >= 0 - yyj4073++ - if yyhl4073 { - yyb4073 = yyj4073 > l + var yyj4126 int + var yyb4126 bool + var yyhl4126 bool = l >= 0 + yyj4126++ + if yyhl4126 { + yyb4126 = yyj4126 > l } else { - yyb4073 = r.CheckBreak() + yyb4126 = r.CheckBreak() } - if yyb4073 { + if yyb4126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50928,16 +51635,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4074 := &x.Hard - yyv4074.CodecDecodeSelf(d) + yyv4127 := &x.Hard + yyv4127.CodecDecodeSelf(d) } - yyj4073++ - if yyhl4073 { - yyb4073 = yyj4073 > l + yyj4126++ + if yyhl4126 { + yyb4126 = yyj4126 > l } else { - yyb4073 = r.CheckBreak() + yyb4126 = r.CheckBreak() } - if yyb4073 { + if yyb4126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50945,21 +51652,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4075 := &x.Used - yyv4075.CodecDecodeSelf(d) + yyv4128 := &x.Used + yyv4128.CodecDecodeSelf(d) } for { - yyj4073++ - if yyhl4073 { - yyb4073 = yyj4073 > l + yyj4126++ + if yyhl4126 { + yyb4126 = yyj4126 > l } else { - yyb4073 = r.CheckBreak() + yyb4126 = r.CheckBreak() } - if yyb4073 { + if yyb4126 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4073-1, "") + z.DecStructFieldNotFound(yyj4126-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50971,39 +51678,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4076 := z.EncBinary() - _ = yym4076 + yym4129 := z.EncBinary() + _ = yym4129 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4077 := !z.EncBinary() - yy2arr4077 := z.EncBasicHandle().StructToArray - var yyq4077 [5]bool - _, _, _ = yysep4077, yyq4077, yy2arr4077 - const yyr4077 bool = false - yyq4077[0] = x.Kind != "" - yyq4077[1] = x.APIVersion != "" - yyq4077[2] = true - yyq4077[3] = true - yyq4077[4] = true - var yynn4077 int - if yyr4077 || yy2arr4077 { + yysep4130 := !z.EncBinary() + yy2arr4130 := z.EncBasicHandle().StructToArray + var yyq4130 [5]bool + _, _, _ = yysep4130, yyq4130, yy2arr4130 + const yyr4130 bool = false + yyq4130[0] = x.Kind != "" + yyq4130[1] = x.APIVersion != "" + yyq4130[2] = true + yyq4130[3] = true + yyq4130[4] = true + var yynn4130 int + if yyr4130 || yy2arr4130 { r.EncodeArrayStart(5) } else { - yynn4077 = 0 - for _, b := range yyq4077 { + yynn4130 = 0 + for _, b := range yyq4130 { if b { - yynn4077++ + yynn4130++ } } - r.EncodeMapStart(yynn4077) - yynn4077 = 0 + r.EncodeMapStart(yynn4130) + yynn4130 = 0 } - if yyr4077 || yy2arr4077 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[0] { - yym4079 := z.EncBinary() - _ = yym4079 + if yyq4130[0] { + yym4132 := z.EncBinary() + _ = yym4132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51012,23 +51719,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4077[0] { + if yyq4130[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4080 := z.EncBinary() - _ = yym4080 + yym4133 := z.EncBinary() + _ = yym4133 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4077 || yy2arr4077 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[1] { - yym4082 := z.EncBinary() - _ = yym4082 + if yyq4130[1] { + yym4135 := z.EncBinary() + _ = yym4135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51037,70 +51744,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4077[1] { + if yyq4130[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4083 := z.EncBinary() - _ = yym4083 + yym4136 := z.EncBinary() + _ = yym4136 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4077 || yy2arr4077 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[2] { - yy4085 := &x.ObjectMeta - yy4085.CodecEncodeSelf(e) + if yyq4130[2] { + yy4138 := &x.ObjectMeta + yy4138.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4077[2] { + if yyq4130[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4086 := &x.ObjectMeta - yy4086.CodecEncodeSelf(e) + yy4139 := &x.ObjectMeta + yy4139.CodecEncodeSelf(e) } } - if yyr4077 || yy2arr4077 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[3] { - yy4088 := &x.Spec - yy4088.CodecEncodeSelf(e) + if yyq4130[3] { + yy4141 := &x.Spec + yy4141.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4077[3] { + if yyq4130[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4089 := &x.Spec - yy4089.CodecEncodeSelf(e) + yy4142 := &x.Spec + yy4142.CodecEncodeSelf(e) } } - if yyr4077 || yy2arr4077 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4077[4] { - yy4091 := &x.Status - yy4091.CodecEncodeSelf(e) + if yyq4130[4] { + yy4144 := &x.Status + yy4144.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4077[4] { + if yyq4130[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4092 := &x.Status - yy4092.CodecEncodeSelf(e) + yy4145 := &x.Status + yy4145.CodecEncodeSelf(e) } } - if yyr4077 || yy2arr4077 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51113,25 +51820,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4093 := z.DecBinary() - _ = yym4093 + yym4146 := z.DecBinary() + _ = yym4146 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4094 := r.ContainerType() - if yyct4094 == codecSelferValueTypeMap1234 { - yyl4094 := r.ReadMapStart() - if yyl4094 == 0 { + yyct4147 := r.ContainerType() + if yyct4147 == codecSelferValueTypeMap1234 { + yyl4147 := r.ReadMapStart() + if yyl4147 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4094, d) + x.codecDecodeSelfFromMap(yyl4147, d) } - } else if yyct4094 == codecSelferValueTypeArray1234 { - yyl4094 := r.ReadArrayStart() - if yyl4094 == 0 { + } else if yyct4147 == codecSelferValueTypeArray1234 { + yyl4147 := r.ReadArrayStart() + if yyl4147 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4094, d) + x.codecDecodeSelfFromArray(yyl4147, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51143,12 +51850,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4095Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4095Slc - var yyhl4095 bool = l >= 0 - for yyj4095 := 0; ; yyj4095++ { - if yyhl4095 { - if yyj4095 >= l { + var yys4148Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4148Slc + var yyhl4148 bool = l >= 0 + for yyj4148 := 0; ; yyj4148++ { + if yyhl4148 { + if yyj4148 >= l { break } } else { @@ -51157,10 +51864,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4095Slc = r.DecodeBytes(yys4095Slc, true, true) - yys4095 := string(yys4095Slc) + yys4148Slc = r.DecodeBytes(yys4148Slc, true, true) + yys4148 := string(yys4148Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4095 { + switch yys4148 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51177,27 +51884,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4098 := &x.ObjectMeta - yyv4098.CodecDecodeSelf(d) + yyv4151 := &x.ObjectMeta + yyv4151.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4099 := &x.Spec - yyv4099.CodecDecodeSelf(d) + yyv4152 := &x.Spec + yyv4152.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4100 := &x.Status - yyv4100.CodecDecodeSelf(d) + yyv4153 := &x.Status + yyv4153.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4095) - } // end switch yys4095 - } // end for yyj4095 + z.DecStructFieldNotFound(-1, yys4148) + } // end switch yys4148 + } // end for yyj4148 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51205,16 +51912,16 @@ func (x *ResourceQuota) 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 yyj4154 int + var yyb4154 bool + var yyhl4154 bool = l >= 0 + yyj4154++ + if yyhl4154 { + yyb4154 = yyj4154 > l } else { - yyb4101 = r.CheckBreak() + yyb4154 = r.CheckBreak() } - if yyb4101 { + if yyb4154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51224,13 +51931,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4154++ + if yyhl4154 { + yyb4154 = yyj4154 > l } else { - yyb4101 = r.CheckBreak() + yyb4154 = r.CheckBreak() } - if yyb4101 { + if yyb4154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51240,13 +51947,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4154++ + if yyhl4154 { + yyb4154 = yyj4154 > l } else { - yyb4101 = r.CheckBreak() + yyb4154 = r.CheckBreak() } - if yyb4101 { + if yyb4154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51254,16 +51961,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4104 := &x.ObjectMeta - yyv4104.CodecDecodeSelf(d) + yyv4157 := &x.ObjectMeta + yyv4157.CodecDecodeSelf(d) } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4154++ + if yyhl4154 { + yyb4154 = yyj4154 > l } else { - yyb4101 = r.CheckBreak() + yyb4154 = r.CheckBreak() } - if yyb4101 { + if yyb4154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51271,16 +51978,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4105 := &x.Spec - yyv4105.CodecDecodeSelf(d) + yyv4158 := &x.Spec + yyv4158.CodecDecodeSelf(d) } - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4154++ + if yyhl4154 { + yyb4154 = yyj4154 > l } else { - yyb4101 = r.CheckBreak() + yyb4154 = r.CheckBreak() } - if yyb4101 { + if yyb4154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51288,21 +51995,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4106 := &x.Status - yyv4106.CodecDecodeSelf(d) + yyv4159 := &x.Status + yyv4159.CodecDecodeSelf(d) } for { - yyj4101++ - if yyhl4101 { - yyb4101 = yyj4101 > l + yyj4154++ + if yyhl4154 { + yyb4154 = yyj4154 > l } else { - yyb4101 = r.CheckBreak() + yyb4154 = r.CheckBreak() } - if yyb4101 { + if yyb4154 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4101-1, "") + z.DecStructFieldNotFound(yyj4154-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51314,37 +52021,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4107 := z.EncBinary() - _ = yym4107 + yym4160 := z.EncBinary() + _ = yym4160 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4108 := !z.EncBinary() - yy2arr4108 := z.EncBasicHandle().StructToArray - var yyq4108 [4]bool - _, _, _ = yysep4108, yyq4108, yy2arr4108 - const yyr4108 bool = false - yyq4108[0] = x.Kind != "" - yyq4108[1] = x.APIVersion != "" - yyq4108[2] = true - var yynn4108 int - if yyr4108 || yy2arr4108 { + yysep4161 := !z.EncBinary() + yy2arr4161 := z.EncBasicHandle().StructToArray + var yyq4161 [4]bool + _, _, _ = yysep4161, yyq4161, yy2arr4161 + const yyr4161 bool = false + yyq4161[0] = x.Kind != "" + yyq4161[1] = x.APIVersion != "" + yyq4161[2] = true + var yynn4161 int + if yyr4161 || yy2arr4161 { r.EncodeArrayStart(4) } else { - yynn4108 = 1 - for _, b := range yyq4108 { + yynn4161 = 1 + for _, b := range yyq4161 { if b { - yynn4108++ + yynn4161++ } } - r.EncodeMapStart(yynn4108) - yynn4108 = 0 + r.EncodeMapStart(yynn4161) + yynn4161 = 0 } - if yyr4108 || yy2arr4108 { + if yyr4161 || yy2arr4161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4108[0] { - yym4110 := z.EncBinary() - _ = yym4110 + if yyq4161[0] { + yym4163 := z.EncBinary() + _ = yym4163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51353,23 +52060,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4108[0] { + if yyq4161[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4111 := z.EncBinary() - _ = yym4111 + yym4164 := z.EncBinary() + _ = yym4164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4108 || yy2arr4108 { + if yyr4161 || yy2arr4161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4108[1] { - yym4113 := z.EncBinary() - _ = yym4113 + if yyq4161[1] { + yym4166 := z.EncBinary() + _ = yym4166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51378,54 +52085,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4108[1] { + if yyq4161[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4114 := z.EncBinary() - _ = yym4114 + yym4167 := z.EncBinary() + _ = yym4167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4108 || yy2arr4108 { + if yyr4161 || yy2arr4161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4108[2] { - yy4116 := &x.ListMeta - yym4117 := z.EncBinary() - _ = yym4117 + if yyq4161[2] { + yy4169 := &x.ListMeta + yym4170 := z.EncBinary() + _ = yym4170 if false { - } else if z.HasExtensions() && z.EncExt(yy4116) { + } else if z.HasExtensions() && z.EncExt(yy4169) { } else { - z.EncFallback(yy4116) + z.EncFallback(yy4169) } } else { r.EncodeNil() } } else { - if yyq4108[2] { + if yyq4161[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4118 := &x.ListMeta - yym4119 := z.EncBinary() - _ = yym4119 + yy4171 := &x.ListMeta + yym4172 := z.EncBinary() + _ = yym4172 if false { - } else if z.HasExtensions() && z.EncExt(yy4118) { + } else if z.HasExtensions() && z.EncExt(yy4171) { } else { - z.EncFallback(yy4118) + z.EncFallback(yy4171) } } } - if yyr4108 || yy2arr4108 { + if yyr4161 || yy2arr4161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4121 := z.EncBinary() - _ = yym4121 + yym4174 := z.EncBinary() + _ = yym4174 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -51438,15 +52145,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4122 := z.EncBinary() - _ = yym4122 + yym4175 := z.EncBinary() + _ = yym4175 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4108 || yy2arr4108 { + if yyr4161 || yy2arr4161 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51459,25 +52166,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4123 := z.DecBinary() - _ = yym4123 + yym4176 := z.DecBinary() + _ = yym4176 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4124 := r.ContainerType() - if yyct4124 == codecSelferValueTypeMap1234 { - yyl4124 := r.ReadMapStart() - if yyl4124 == 0 { + yyct4177 := r.ContainerType() + if yyct4177 == codecSelferValueTypeMap1234 { + yyl4177 := r.ReadMapStart() + if yyl4177 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4124, d) + x.codecDecodeSelfFromMap(yyl4177, d) } - } else if yyct4124 == codecSelferValueTypeArray1234 { - yyl4124 := r.ReadArrayStart() - if yyl4124 == 0 { + } else if yyct4177 == codecSelferValueTypeArray1234 { + yyl4177 := r.ReadArrayStart() + if yyl4177 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4124, d) + x.codecDecodeSelfFromArray(yyl4177, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51489,12 +52196,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4125Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4125Slc - var yyhl4125 bool = l >= 0 - for yyj4125 := 0; ; yyj4125++ { - if yyhl4125 { - if yyj4125 >= l { + var yys4178Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4178Slc + var yyhl4178 bool = l >= 0 + for yyj4178 := 0; ; yyj4178++ { + if yyhl4178 { + if yyj4178 >= l { break } } else { @@ -51503,10 +52210,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4125Slc = r.DecodeBytes(yys4125Slc, true, true) - yys4125 := string(yys4125Slc) + yys4178Slc = r.DecodeBytes(yys4178Slc, true, true) + yys4178 := string(yys4178Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4125 { + switch yys4178 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51523,31 +52230,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4128 := &x.ListMeta - yym4129 := z.DecBinary() - _ = yym4129 + yyv4181 := &x.ListMeta + yym4182 := z.DecBinary() + _ = yym4182 if false { - } else if z.HasExtensions() && z.DecExt(yyv4128) { + } else if z.HasExtensions() && z.DecExt(yyv4181) { } else { - z.DecFallback(yyv4128, false) + z.DecFallback(yyv4181, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4130 := &x.Items - yym4131 := z.DecBinary() - _ = yym4131 + yyv4183 := &x.Items + yym4184 := z.DecBinary() + _ = yym4184 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4130), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4183), d) } } default: - z.DecStructFieldNotFound(-1, yys4125) - } // end switch yys4125 - } // end for yyj4125 + z.DecStructFieldNotFound(-1, yys4178) + } // end switch yys4178 + } // end for yyj4178 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51555,16 +52262,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4132 int - var yyb4132 bool - var yyhl4132 bool = l >= 0 - yyj4132++ - if yyhl4132 { - yyb4132 = yyj4132 > l + var yyj4185 int + var yyb4185 bool + var yyhl4185 bool = l >= 0 + yyj4185++ + if yyhl4185 { + yyb4185 = yyj4185 > l } else { - yyb4132 = r.CheckBreak() + yyb4185 = r.CheckBreak() } - if yyb4132 { + if yyb4185 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51574,13 +52281,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4132++ - if yyhl4132 { - yyb4132 = yyj4132 > l + yyj4185++ + if yyhl4185 { + yyb4185 = yyj4185 > l } else { - yyb4132 = r.CheckBreak() + yyb4185 = r.CheckBreak() } - if yyb4132 { + if yyb4185 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51590,13 +52297,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4132++ - if yyhl4132 { - yyb4132 = yyj4132 > l + yyj4185++ + if yyhl4185 { + yyb4185 = yyj4185 > l } else { - yyb4132 = r.CheckBreak() + yyb4185 = r.CheckBreak() } - if yyb4132 { + if yyb4185 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51604,22 +52311,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4135 := &x.ListMeta - yym4136 := z.DecBinary() - _ = yym4136 + yyv4188 := &x.ListMeta + yym4189 := z.DecBinary() + _ = yym4189 if false { - } else if z.HasExtensions() && z.DecExt(yyv4135) { + } else if z.HasExtensions() && z.DecExt(yyv4188) { } else { - z.DecFallback(yyv4135, false) + z.DecFallback(yyv4188, false) } } - yyj4132++ - if yyhl4132 { - yyb4132 = yyj4132 > l + yyj4185++ + if yyhl4185 { + yyb4185 = yyj4185 > l } else { - yyb4132 = r.CheckBreak() + yyb4185 = r.CheckBreak() } - if yyb4132 { + if yyb4185 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51627,26 +52334,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4137 := &x.Items - yym4138 := z.DecBinary() - _ = yym4138 + yyv4190 := &x.Items + yym4191 := z.DecBinary() + _ = yym4191 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4137), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4190), d) } } for { - yyj4132++ - if yyhl4132 { - yyb4132 = yyj4132 > l + yyj4185++ + if yyhl4185 { + yyb4185 = yyj4185 > l } else { - yyb4132 = r.CheckBreak() + yyb4185 = r.CheckBreak() } - if yyb4132 { + if yyb4185 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4132-1, "") + z.DecStructFieldNotFound(yyj4185-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51658,39 +52365,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4139 := z.EncBinary() - _ = yym4139 + yym4192 := z.EncBinary() + _ = yym4192 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4140 := !z.EncBinary() - yy2arr4140 := z.EncBasicHandle().StructToArray - var yyq4140 [5]bool - _, _, _ = yysep4140, yyq4140, yy2arr4140 - const yyr4140 bool = false - yyq4140[0] = x.Kind != "" - yyq4140[1] = x.APIVersion != "" - yyq4140[2] = true - yyq4140[3] = len(x.Data) != 0 - yyq4140[4] = x.Type != "" - var yynn4140 int - if yyr4140 || yy2arr4140 { + yysep4193 := !z.EncBinary() + yy2arr4193 := z.EncBasicHandle().StructToArray + var yyq4193 [5]bool + _, _, _ = yysep4193, yyq4193, yy2arr4193 + const yyr4193 bool = false + yyq4193[0] = x.Kind != "" + yyq4193[1] = x.APIVersion != "" + yyq4193[2] = true + yyq4193[3] = len(x.Data) != 0 + yyq4193[4] = x.Type != "" + var yynn4193 int + if yyr4193 || yy2arr4193 { r.EncodeArrayStart(5) } else { - yynn4140 = 0 - for _, b := range yyq4140 { + yynn4193 = 0 + for _, b := range yyq4193 { if b { - yynn4140++ + yynn4193++ } } - r.EncodeMapStart(yynn4140) - yynn4140 = 0 + r.EncodeMapStart(yynn4193) + yynn4193 = 0 } - if yyr4140 || yy2arr4140 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[0] { - yym4142 := z.EncBinary() - _ = yym4142 + if yyq4193[0] { + yym4195 := z.EncBinary() + _ = yym4195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51699,23 +52406,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4140[0] { + if yyq4193[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4143 := z.EncBinary() - _ = yym4143 + yym4196 := z.EncBinary() + _ = yym4196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4140 || yy2arr4140 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[1] { - yym4145 := z.EncBinary() - _ = yym4145 + if yyq4193[1] { + yym4198 := z.EncBinary() + _ = yym4198 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51724,43 +52431,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4140[1] { + if yyq4193[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4146 := z.EncBinary() - _ = yym4146 + yym4199 := z.EncBinary() + _ = yym4199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4140 || yy2arr4140 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[2] { - yy4148 := &x.ObjectMeta - yy4148.CodecEncodeSelf(e) + if yyq4193[2] { + yy4201 := &x.ObjectMeta + yy4201.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4140[2] { + if yyq4193[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4149 := &x.ObjectMeta - yy4149.CodecEncodeSelf(e) + yy4202 := &x.ObjectMeta + yy4202.CodecEncodeSelf(e) } } - if yyr4140 || yy2arr4140 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[3] { + if yyq4193[3] { if x.Data == nil { r.EncodeNil() } else { - yym4151 := z.EncBinary() - _ = yym4151 + yym4204 := z.EncBinary() + _ = yym4204 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51770,15 +52477,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4140[3] { + if yyq4193[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4152 := z.EncBinary() - _ = yym4152 + yym4205 := z.EncBinary() + _ = yym4205 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51786,22 +52493,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4140 || yy2arr4140 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[4] { + if yyq4193[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4140[4] { + if yyq4193[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4140 || yy2arr4140 { + if yyr4193 || yy2arr4193 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51814,25 +52521,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4154 := z.DecBinary() - _ = yym4154 + yym4207 := z.DecBinary() + _ = yym4207 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4155 := r.ContainerType() - if yyct4155 == codecSelferValueTypeMap1234 { - yyl4155 := r.ReadMapStart() - if yyl4155 == 0 { + yyct4208 := r.ContainerType() + if yyct4208 == codecSelferValueTypeMap1234 { + yyl4208 := r.ReadMapStart() + if yyl4208 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4155, d) + x.codecDecodeSelfFromMap(yyl4208, d) } - } else if yyct4155 == codecSelferValueTypeArray1234 { - yyl4155 := r.ReadArrayStart() - if yyl4155 == 0 { + } else if yyct4208 == codecSelferValueTypeArray1234 { + yyl4208 := r.ReadArrayStart() + if yyl4208 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4155, d) + x.codecDecodeSelfFromArray(yyl4208, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51844,12 +52551,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4156Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4156Slc - var yyhl4156 bool = l >= 0 - for yyj4156 := 0; ; yyj4156++ { - if yyhl4156 { - if yyj4156 >= l { + var yys4209Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4209Slc + var yyhl4209 bool = l >= 0 + for yyj4209 := 0; ; yyj4209++ { + if yyhl4209 { + if yyj4209 >= l { break } } else { @@ -51858,10 +52565,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4156Slc = r.DecodeBytes(yys4156Slc, true, true) - yys4156 := string(yys4156Slc) + yys4209Slc = r.DecodeBytes(yys4209Slc, true, true) + yys4209 := string(yys4209Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4156 { + switch yys4209 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51878,19 +52585,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4159 := &x.ObjectMeta - yyv4159.CodecDecodeSelf(d) + yyv4212 := &x.ObjectMeta + yyv4212.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4160 := &x.Data - yym4161 := z.DecBinary() - _ = yym4161 + yyv4213 := &x.Data + yym4214 := z.DecBinary() + _ = yym4214 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4160), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4213), d) } } case "type": @@ -51900,9 +52607,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4156) - } // end switch yys4156 - } // end for yyj4156 + z.DecStructFieldNotFound(-1, yys4209) + } // end switch yys4209 + } // end for yyj4209 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51910,16 +52617,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4163 int - var yyb4163 bool - var yyhl4163 bool = l >= 0 - yyj4163++ - if yyhl4163 { - yyb4163 = yyj4163 > l + var yyj4216 int + var yyb4216 bool + var yyhl4216 bool = l >= 0 + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4163 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4163 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51929,13 +52636,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4163++ - if yyhl4163 { - yyb4163 = yyj4163 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4163 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4163 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51945,13 +52652,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4163++ - if yyhl4163 { - yyb4163 = yyj4163 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4163 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4163 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51959,16 +52666,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4166 := &x.ObjectMeta - yyv4166.CodecDecodeSelf(d) + yyv4219 := &x.ObjectMeta + yyv4219.CodecDecodeSelf(d) } - yyj4163++ - if yyhl4163 { - yyb4163 = yyj4163 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4163 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4163 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51976,21 +52683,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4167 := &x.Data - yym4168 := z.DecBinary() - _ = yym4168 + yyv4220 := &x.Data + yym4221 := z.DecBinary() + _ = yym4221 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4167), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4220), d) } } - yyj4163++ - if yyhl4163 { - yyb4163 = yyj4163 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4163 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4163 { + if yyb4216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52001,17 +52708,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4163++ - if yyhl4163 { - yyb4163 = yyj4163 > l + yyj4216++ + if yyhl4216 { + yyb4216 = yyj4216 > l } else { - yyb4163 = r.CheckBreak() + yyb4216 = r.CheckBreak() } - if yyb4163 { + if yyb4216 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4163-1, "") + z.DecStructFieldNotFound(yyj4216-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52020,8 +52727,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4170 := z.EncBinary() - _ = yym4170 + yym4223 := z.EncBinary() + _ = yym4223 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52033,8 +52740,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4171 := z.DecBinary() - _ = yym4171 + yym4224 := z.DecBinary() + _ = yym4224 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52049,37 +52756,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4172 := z.EncBinary() - _ = yym4172 + yym4225 := z.EncBinary() + _ = yym4225 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4173 := !z.EncBinary() - yy2arr4173 := z.EncBasicHandle().StructToArray - var yyq4173 [4]bool - _, _, _ = yysep4173, yyq4173, yy2arr4173 - const yyr4173 bool = false - yyq4173[0] = x.Kind != "" - yyq4173[1] = x.APIVersion != "" - yyq4173[2] = true - var yynn4173 int - if yyr4173 || yy2arr4173 { + yysep4226 := !z.EncBinary() + yy2arr4226 := z.EncBasicHandle().StructToArray + var yyq4226 [4]bool + _, _, _ = yysep4226, yyq4226, yy2arr4226 + const yyr4226 bool = false + yyq4226[0] = x.Kind != "" + yyq4226[1] = x.APIVersion != "" + yyq4226[2] = true + var yynn4226 int + if yyr4226 || yy2arr4226 { r.EncodeArrayStart(4) } else { - yynn4173 = 1 - for _, b := range yyq4173 { + yynn4226 = 1 + for _, b := range yyq4226 { if b { - yynn4173++ + yynn4226++ } } - r.EncodeMapStart(yynn4173) - yynn4173 = 0 + r.EncodeMapStart(yynn4226) + yynn4226 = 0 } - if yyr4173 || yy2arr4173 { + if yyr4226 || yy2arr4226 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4173[0] { - yym4175 := z.EncBinary() - _ = yym4175 + if yyq4226[0] { + yym4228 := z.EncBinary() + _ = yym4228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52088,23 +52795,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4173[0] { + if yyq4226[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4176 := z.EncBinary() - _ = yym4176 + yym4229 := z.EncBinary() + _ = yym4229 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4173 || yy2arr4173 { + if yyr4226 || yy2arr4226 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4173[1] { - yym4178 := z.EncBinary() - _ = yym4178 + if yyq4226[1] { + yym4231 := z.EncBinary() + _ = yym4231 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52113,54 +52820,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4173[1] { + if yyq4226[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4179 := z.EncBinary() - _ = yym4179 + yym4232 := z.EncBinary() + _ = yym4232 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4173 || yy2arr4173 { + if yyr4226 || yy2arr4226 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4173[2] { - yy4181 := &x.ListMeta - yym4182 := z.EncBinary() - _ = yym4182 + if yyq4226[2] { + yy4234 := &x.ListMeta + yym4235 := z.EncBinary() + _ = yym4235 if false { - } else if z.HasExtensions() && z.EncExt(yy4181) { + } else if z.HasExtensions() && z.EncExt(yy4234) { } else { - z.EncFallback(yy4181) + z.EncFallback(yy4234) } } else { r.EncodeNil() } } else { - if yyq4173[2] { + if yyq4226[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4183 := &x.ListMeta - yym4184 := z.EncBinary() - _ = yym4184 + yy4236 := &x.ListMeta + yym4237 := z.EncBinary() + _ = yym4237 if false { - } else if z.HasExtensions() && z.EncExt(yy4183) { + } else if z.HasExtensions() && z.EncExt(yy4236) { } else { - z.EncFallback(yy4183) + z.EncFallback(yy4236) } } } - if yyr4173 || yy2arr4173 { + if yyr4226 || yy2arr4226 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4186 := z.EncBinary() - _ = yym4186 + yym4239 := z.EncBinary() + _ = yym4239 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -52173,15 +52880,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4187 := z.EncBinary() - _ = yym4187 + yym4240 := z.EncBinary() + _ = yym4240 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4173 || yy2arr4173 { + if yyr4226 || yy2arr4226 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52194,25 +52901,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4188 := z.DecBinary() - _ = yym4188 + yym4241 := z.DecBinary() + _ = yym4241 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4189 := r.ContainerType() - if yyct4189 == codecSelferValueTypeMap1234 { - yyl4189 := r.ReadMapStart() - if yyl4189 == 0 { + yyct4242 := r.ContainerType() + if yyct4242 == codecSelferValueTypeMap1234 { + yyl4242 := r.ReadMapStart() + if yyl4242 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4189, d) + x.codecDecodeSelfFromMap(yyl4242, d) } - } else if yyct4189 == codecSelferValueTypeArray1234 { - yyl4189 := r.ReadArrayStart() - if yyl4189 == 0 { + } else if yyct4242 == codecSelferValueTypeArray1234 { + yyl4242 := r.ReadArrayStart() + if yyl4242 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4189, d) + x.codecDecodeSelfFromArray(yyl4242, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52224,12 +52931,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4190Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4190Slc - var yyhl4190 bool = l >= 0 - for yyj4190 := 0; ; yyj4190++ { - if yyhl4190 { - if yyj4190 >= l { + var yys4243Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4243Slc + var yyhl4243 bool = l >= 0 + for yyj4243 := 0; ; yyj4243++ { + if yyhl4243 { + if yyj4243 >= l { break } } else { @@ -52238,10 +52945,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4190Slc = r.DecodeBytes(yys4190Slc, true, true) - yys4190 := string(yys4190Slc) + yys4243Slc = r.DecodeBytes(yys4243Slc, true, true) + yys4243 := string(yys4243Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4190 { + switch yys4243 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52258,31 +52965,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4193 := &x.ListMeta - yym4194 := z.DecBinary() - _ = yym4194 + yyv4246 := &x.ListMeta + yym4247 := z.DecBinary() + _ = yym4247 if false { - } else if z.HasExtensions() && z.DecExt(yyv4193) { + } else if z.HasExtensions() && z.DecExt(yyv4246) { } else { - z.DecFallback(yyv4193, false) + z.DecFallback(yyv4246, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4195 := &x.Items - yym4196 := z.DecBinary() - _ = yym4196 + yyv4248 := &x.Items + yym4249 := z.DecBinary() + _ = yym4249 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4195), d) + h.decSliceSecret((*[]Secret)(yyv4248), d) } } default: - z.DecStructFieldNotFound(-1, yys4190) - } // end switch yys4190 - } // end for yyj4190 + z.DecStructFieldNotFound(-1, yys4243) + } // end switch yys4243 + } // end for yyj4243 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52290,16 +52997,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4197 int - var yyb4197 bool - var yyhl4197 bool = l >= 0 - yyj4197++ - if yyhl4197 { - yyb4197 = yyj4197 > l + var yyj4250 int + var yyb4250 bool + var yyhl4250 bool = l >= 0 + yyj4250++ + if yyhl4250 { + yyb4250 = yyj4250 > l } else { - yyb4197 = r.CheckBreak() + yyb4250 = r.CheckBreak() } - if yyb4197 { + if yyb4250 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52309,13 +53016,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4197++ - if yyhl4197 { - yyb4197 = yyj4197 > l + yyj4250++ + if yyhl4250 { + yyb4250 = yyj4250 > l } else { - yyb4197 = r.CheckBreak() + yyb4250 = r.CheckBreak() } - if yyb4197 { + if yyb4250 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52325,13 +53032,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4197++ - if yyhl4197 { - yyb4197 = yyj4197 > l + yyj4250++ + if yyhl4250 { + yyb4250 = yyj4250 > l } else { - yyb4197 = r.CheckBreak() + yyb4250 = r.CheckBreak() } - if yyb4197 { + if yyb4250 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52339,22 +53046,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4200 := &x.ListMeta - yym4201 := z.DecBinary() - _ = yym4201 + yyv4253 := &x.ListMeta + yym4254 := z.DecBinary() + _ = yym4254 if false { - } else if z.HasExtensions() && z.DecExt(yyv4200) { + } else if z.HasExtensions() && z.DecExt(yyv4253) { } else { - z.DecFallback(yyv4200, false) + z.DecFallback(yyv4253, false) } } - yyj4197++ - if yyhl4197 { - yyb4197 = yyj4197 > l + yyj4250++ + if yyhl4250 { + yyb4250 = yyj4250 > l } else { - yyb4197 = r.CheckBreak() + yyb4250 = r.CheckBreak() } - if yyb4197 { + if yyb4250 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52362,26 +53069,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4202 := &x.Items - yym4203 := z.DecBinary() - _ = yym4203 + yyv4255 := &x.Items + yym4256 := z.DecBinary() + _ = yym4256 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4202), d) + h.decSliceSecret((*[]Secret)(yyv4255), d) } } for { - yyj4197++ - if yyhl4197 { - yyb4197 = yyj4197 > l + yyj4250++ + if yyhl4250 { + yyb4250 = yyj4250 > l } else { - yyb4197 = r.CheckBreak() + yyb4250 = r.CheckBreak() } - if yyb4197 { + if yyb4250 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4197-1, "") + z.DecStructFieldNotFound(yyj4250-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52393,38 +53100,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4204 := z.EncBinary() - _ = yym4204 + yym4257 := z.EncBinary() + _ = yym4257 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4205 := !z.EncBinary() - yy2arr4205 := z.EncBasicHandle().StructToArray - var yyq4205 [4]bool - _, _, _ = yysep4205, yyq4205, yy2arr4205 - const yyr4205 bool = false - yyq4205[0] = x.Kind != "" - yyq4205[1] = x.APIVersion != "" - yyq4205[2] = true - yyq4205[3] = len(x.Data) != 0 - var yynn4205 int - if yyr4205 || yy2arr4205 { + yysep4258 := !z.EncBinary() + yy2arr4258 := z.EncBasicHandle().StructToArray + var yyq4258 [4]bool + _, _, _ = yysep4258, yyq4258, yy2arr4258 + const yyr4258 bool = false + yyq4258[0] = x.Kind != "" + yyq4258[1] = x.APIVersion != "" + yyq4258[2] = true + yyq4258[3] = len(x.Data) != 0 + var yynn4258 int + if yyr4258 || yy2arr4258 { r.EncodeArrayStart(4) } else { - yynn4205 = 0 - for _, b := range yyq4205 { + yynn4258 = 0 + for _, b := range yyq4258 { if b { - yynn4205++ + yynn4258++ } } - r.EncodeMapStart(yynn4205) - yynn4205 = 0 + r.EncodeMapStart(yynn4258) + yynn4258 = 0 } - if yyr4205 || yy2arr4205 { + if yyr4258 || yy2arr4258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4205[0] { - yym4207 := z.EncBinary() - _ = yym4207 + if yyq4258[0] { + yym4260 := z.EncBinary() + _ = yym4260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52433,23 +53140,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4205[0] { + if yyq4258[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4208 := z.EncBinary() - _ = yym4208 + yym4261 := z.EncBinary() + _ = yym4261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4205 || yy2arr4205 { + if yyr4258 || yy2arr4258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4205[1] { - yym4210 := z.EncBinary() - _ = yym4210 + if yyq4258[1] { + yym4263 := z.EncBinary() + _ = yym4263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52458,43 +53165,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4205[1] { + if yyq4258[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4211 := z.EncBinary() - _ = yym4211 + yym4264 := z.EncBinary() + _ = yym4264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4205 || yy2arr4205 { + if yyr4258 || yy2arr4258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4205[2] { - yy4213 := &x.ObjectMeta - yy4213.CodecEncodeSelf(e) + if yyq4258[2] { + yy4266 := &x.ObjectMeta + yy4266.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4205[2] { + if yyq4258[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4214 := &x.ObjectMeta - yy4214.CodecEncodeSelf(e) + yy4267 := &x.ObjectMeta + yy4267.CodecEncodeSelf(e) } } - if yyr4205 || yy2arr4205 { + if yyr4258 || yy2arr4258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4205[3] { + if yyq4258[3] { if x.Data == nil { r.EncodeNil() } else { - yym4216 := z.EncBinary() - _ = yym4216 + yym4269 := z.EncBinary() + _ = yym4269 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52504,15 +53211,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4205[3] { + if yyq4258[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4217 := z.EncBinary() - _ = yym4217 + yym4270 := z.EncBinary() + _ = yym4270 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52520,7 +53227,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4205 || yy2arr4205 { + if yyr4258 || yy2arr4258 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52533,25 +53240,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4218 := z.DecBinary() - _ = yym4218 + yym4271 := z.DecBinary() + _ = yym4271 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4219 := r.ContainerType() - if yyct4219 == codecSelferValueTypeMap1234 { - yyl4219 := r.ReadMapStart() - if yyl4219 == 0 { + yyct4272 := r.ContainerType() + if yyct4272 == codecSelferValueTypeMap1234 { + yyl4272 := r.ReadMapStart() + if yyl4272 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4219, d) + x.codecDecodeSelfFromMap(yyl4272, d) } - } else if yyct4219 == codecSelferValueTypeArray1234 { - yyl4219 := r.ReadArrayStart() - if yyl4219 == 0 { + } else if yyct4272 == codecSelferValueTypeArray1234 { + yyl4272 := r.ReadArrayStart() + if yyl4272 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4219, d) + x.codecDecodeSelfFromArray(yyl4272, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52563,12 +53270,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4220Slc - var yyhl4220 bool = l >= 0 - for yyj4220 := 0; ; yyj4220++ { - if yyhl4220 { - if yyj4220 >= l { + var yys4273Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4273Slc + var yyhl4273 bool = l >= 0 + for yyj4273 := 0; ; yyj4273++ { + if yyhl4273 { + if yyj4273 >= l { break } } else { @@ -52577,10 +53284,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4220Slc = r.DecodeBytes(yys4220Slc, true, true) - yys4220 := string(yys4220Slc) + yys4273Slc = r.DecodeBytes(yys4273Slc, true, true) + yys4273 := string(yys4273Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4220 { + switch yys4273 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52597,25 +53304,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4223 := &x.ObjectMeta - yyv4223.CodecDecodeSelf(d) + yyv4276 := &x.ObjectMeta + yyv4276.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4224 := &x.Data - yym4225 := z.DecBinary() - _ = yym4225 + yyv4277 := &x.Data + yym4278 := z.DecBinary() + _ = yym4278 if false { } else { - z.F.DecMapStringStringX(yyv4224, false, d) + z.F.DecMapStringStringX(yyv4277, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4220) - } // end switch yys4220 - } // end for yyj4220 + z.DecStructFieldNotFound(-1, yys4273) + } // end switch yys4273 + } // end for yyj4273 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52623,16 +53330,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4226 int - var yyb4226 bool - var yyhl4226 bool = l >= 0 - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + var yyj4279 int + var yyb4279 bool + var yyhl4279 bool = l >= 0 + yyj4279++ + if yyhl4279 { + yyb4279 = yyj4279 > l } else { - yyb4226 = r.CheckBreak() + yyb4279 = r.CheckBreak() } - if yyb4226 { + if yyb4279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52642,13 +53349,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + yyj4279++ + if yyhl4279 { + yyb4279 = yyj4279 > l } else { - yyb4226 = r.CheckBreak() + yyb4279 = r.CheckBreak() } - if yyb4226 { + if yyb4279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52658,13 +53365,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + yyj4279++ + if yyhl4279 { + yyb4279 = yyj4279 > l } else { - yyb4226 = r.CheckBreak() + yyb4279 = r.CheckBreak() } - if yyb4226 { + if yyb4279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52672,16 +53379,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4229 := &x.ObjectMeta - yyv4229.CodecDecodeSelf(d) + yyv4282 := &x.ObjectMeta + yyv4282.CodecDecodeSelf(d) } - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + yyj4279++ + if yyhl4279 { + yyb4279 = yyj4279 > l } else { - yyb4226 = r.CheckBreak() + yyb4279 = r.CheckBreak() } - if yyb4226 { + if yyb4279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52689,26 +53396,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4230 := &x.Data - yym4231 := z.DecBinary() - _ = yym4231 + yyv4283 := &x.Data + yym4284 := z.DecBinary() + _ = yym4284 if false { } else { - z.F.DecMapStringStringX(yyv4230, false, d) + z.F.DecMapStringStringX(yyv4283, false, d) } } for { - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + yyj4279++ + if yyhl4279 { + yyb4279 = yyj4279 > l } else { - yyb4226 = r.CheckBreak() + yyb4279 = r.CheckBreak() } - if yyb4226 { + if yyb4279 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4226-1, "") + z.DecStructFieldNotFound(yyj4279-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52720,37 +53427,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4232 := z.EncBinary() - _ = yym4232 + yym4285 := z.EncBinary() + _ = yym4285 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 - var yynn4233 int - if yyr4233 || yy2arr4233 { + yysep4286 := !z.EncBinary() + yy2arr4286 := z.EncBasicHandle().StructToArray + var yyq4286 [4]bool + _, _, _ = yysep4286, yyq4286, yy2arr4286 + const yyr4286 bool = false + yyq4286[0] = x.Kind != "" + yyq4286[1] = x.APIVersion != "" + yyq4286[2] = true + var yynn4286 int + if yyr4286 || yy2arr4286 { r.EncodeArrayStart(4) } else { - yynn4233 = 1 - for _, b := range yyq4233 { + yynn4286 = 1 + for _, b := range yyq4286 { if b { - yynn4233++ + yynn4286++ } } - r.EncodeMapStart(yynn4233) - yynn4233 = 0 + r.EncodeMapStart(yynn4286) + yynn4286 = 0 } - if yyr4233 || yy2arr4233 { + if yyr4286 || yy2arr4286 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[0] { - yym4235 := z.EncBinary() - _ = yym4235 + if yyq4286[0] { + yym4288 := z.EncBinary() + _ = yym4288 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52759,23 +53466,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4233[0] { + if yyq4286[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4236 := z.EncBinary() - _ = yym4236 + yym4289 := z.EncBinary() + _ = yym4289 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4233 || yy2arr4233 { + if yyr4286 || yy2arr4286 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[1] { - yym4238 := z.EncBinary() - _ = yym4238 + if yyq4286[1] { + yym4291 := z.EncBinary() + _ = yym4291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52784,54 +53491,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4233[1] { + if yyq4286[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4239 := z.EncBinary() - _ = yym4239 + yym4292 := z.EncBinary() + _ = yym4292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4233 || yy2arr4233 { + if yyr4286 || yy2arr4286 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4233[2] { - yy4241 := &x.ListMeta - yym4242 := z.EncBinary() - _ = yym4242 + if yyq4286[2] { + yy4294 := &x.ListMeta + yym4295 := z.EncBinary() + _ = yym4295 if false { - } else if z.HasExtensions() && z.EncExt(yy4241) { + } else if z.HasExtensions() && z.EncExt(yy4294) { } else { - z.EncFallback(yy4241) + z.EncFallback(yy4294) } } else { r.EncodeNil() } } else { - if yyq4233[2] { + if yyq4286[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4243 := &x.ListMeta - yym4244 := z.EncBinary() - _ = yym4244 + yy4296 := &x.ListMeta + yym4297 := z.EncBinary() + _ = yym4297 if false { - } else if z.HasExtensions() && z.EncExt(yy4243) { + } else if z.HasExtensions() && z.EncExt(yy4296) { } else { - z.EncFallback(yy4243) + z.EncFallback(yy4296) } } } - if yyr4233 || yy2arr4233 { + if yyr4286 || yy2arr4286 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4246 := z.EncBinary() - _ = yym4246 + yym4299 := z.EncBinary() + _ = yym4299 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -52844,15 +53551,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4247 := z.EncBinary() - _ = yym4247 + yym4300 := z.EncBinary() + _ = yym4300 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4233 || yy2arr4233 { + if yyr4286 || yy2arr4286 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52865,25 +53572,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4248 := z.DecBinary() - _ = yym4248 + yym4301 := z.DecBinary() + _ = yym4301 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4249 := r.ContainerType() - if yyct4249 == codecSelferValueTypeMap1234 { - yyl4249 := r.ReadMapStart() - if yyl4249 == 0 { + yyct4302 := r.ContainerType() + if yyct4302 == codecSelferValueTypeMap1234 { + yyl4302 := r.ReadMapStart() + if yyl4302 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4249, d) + x.codecDecodeSelfFromMap(yyl4302, d) } - } else if yyct4249 == codecSelferValueTypeArray1234 { - yyl4249 := r.ReadArrayStart() - if yyl4249 == 0 { + } else if yyct4302 == codecSelferValueTypeArray1234 { + yyl4302 := r.ReadArrayStart() + if yyl4302 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4249, d) + x.codecDecodeSelfFromArray(yyl4302, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52895,12 +53602,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4250Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4250Slc - var yyhl4250 bool = l >= 0 - for yyj4250 := 0; ; yyj4250++ { - if yyhl4250 { - if yyj4250 >= l { + var yys4303Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4303Slc + var yyhl4303 bool = l >= 0 + for yyj4303 := 0; ; yyj4303++ { + if yyhl4303 { + if yyj4303 >= l { break } } else { @@ -52909,10 +53616,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4250Slc = r.DecodeBytes(yys4250Slc, true, true) - yys4250 := string(yys4250Slc) + yys4303Slc = r.DecodeBytes(yys4303Slc, true, true) + yys4303 := string(yys4303Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4250 { + switch yys4303 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52929,31 +53636,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4253 := &x.ListMeta - yym4254 := z.DecBinary() - _ = yym4254 + yyv4306 := &x.ListMeta + yym4307 := z.DecBinary() + _ = yym4307 if false { - } else if z.HasExtensions() && z.DecExt(yyv4253) { + } else if z.HasExtensions() && z.DecExt(yyv4306) { } else { - z.DecFallback(yyv4253, false) + z.DecFallback(yyv4306, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4255 := &x.Items - yym4256 := z.DecBinary() - _ = yym4256 + yyv4308 := &x.Items + yym4309 := z.DecBinary() + _ = yym4309 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4255), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4308), d) } } default: - z.DecStructFieldNotFound(-1, yys4250) - } // end switch yys4250 - } // end for yyj4250 + z.DecStructFieldNotFound(-1, yys4303) + } // end switch yys4303 + } // end for yyj4303 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52961,16 +53668,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4257 int - var yyb4257 bool - var yyhl4257 bool = l >= 0 - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + var yyj4310 int + var yyb4310 bool + var yyhl4310 bool = l >= 0 + yyj4310++ + if yyhl4310 { + yyb4310 = yyj4310 > l } else { - yyb4257 = r.CheckBreak() + yyb4310 = r.CheckBreak() } - if yyb4257 { + if yyb4310 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52980,13 +53687,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4310++ + if yyhl4310 { + yyb4310 = yyj4310 > l } else { - yyb4257 = r.CheckBreak() + yyb4310 = r.CheckBreak() } - if yyb4257 { + if yyb4310 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52996,13 +53703,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4310++ + if yyhl4310 { + yyb4310 = yyj4310 > l } else { - yyb4257 = r.CheckBreak() + yyb4310 = r.CheckBreak() } - if yyb4257 { + if yyb4310 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53010,22 +53717,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4260 := &x.ListMeta - yym4261 := z.DecBinary() - _ = yym4261 + yyv4313 := &x.ListMeta + yym4314 := z.DecBinary() + _ = yym4314 if false { - } else if z.HasExtensions() && z.DecExt(yyv4260) { + } else if z.HasExtensions() && z.DecExt(yyv4313) { } else { - z.DecFallback(yyv4260, false) + z.DecFallback(yyv4313, false) } } - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4310++ + if yyhl4310 { + yyb4310 = yyj4310 > l } else { - yyb4257 = r.CheckBreak() + yyb4310 = r.CheckBreak() } - if yyb4257 { + if yyb4310 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53033,26 +53740,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4262 := &x.Items - yym4263 := z.DecBinary() - _ = yym4263 + yyv4315 := &x.Items + yym4316 := z.DecBinary() + _ = yym4316 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4262), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4315), d) } } for { - yyj4257++ - if yyhl4257 { - yyb4257 = yyj4257 > l + yyj4310++ + if yyhl4310 { + yyb4310 = yyj4310 > l } else { - yyb4257 = r.CheckBreak() + yyb4310 = r.CheckBreak() } - if yyb4257 { + if yyb4310 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4257-1, "") + z.DecStructFieldNotFound(yyj4310-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53061,8 +53768,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4264 := z.EncBinary() - _ = yym4264 + yym4317 := z.EncBinary() + _ = yym4317 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -53074,8 +53781,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4265 := z.DecBinary() - _ = yym4265 + yym4318 := z.DecBinary() + _ = yym4318 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -53087,8 +53794,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4266 := z.EncBinary() - _ = yym4266 + yym4319 := z.EncBinary() + _ = yym4319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -53100,8 +53807,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4267 := z.DecBinary() - _ = yym4267 + yym4320 := z.DecBinary() + _ = yym4320 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -53116,32 +53823,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4268 := z.EncBinary() - _ = yym4268 + yym4321 := z.EncBinary() + _ = yym4321 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4269 := !z.EncBinary() - yy2arr4269 := z.EncBasicHandle().StructToArray - var yyq4269 [4]bool - _, _, _ = yysep4269, yyq4269, yy2arr4269 - const yyr4269 bool = false - yyq4269[2] = x.Message != "" - yyq4269[3] = x.Error != "" - var yynn4269 int - if yyr4269 || yy2arr4269 { + yysep4322 := !z.EncBinary() + yy2arr4322 := z.EncBasicHandle().StructToArray + var yyq4322 [4]bool + _, _, _ = yysep4322, yyq4322, yy2arr4322 + const yyr4322 bool = false + yyq4322[2] = x.Message != "" + yyq4322[3] = x.Error != "" + var yynn4322 int + if yyr4322 || yy2arr4322 { r.EncodeArrayStart(4) } else { - yynn4269 = 2 - for _, b := range yyq4269 { + yynn4322 = 2 + for _, b := range yyq4322 { if b { - yynn4269++ + yynn4322++ } } - r.EncodeMapStart(yynn4269) - yynn4269 = 0 + r.EncodeMapStart(yynn4322) + yynn4322 = 0 } - if yyr4269 || yy2arr4269 { + if yyr4322 || yy2arr4322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -53150,7 +53857,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4269 || yy2arr4269 { + if yyr4322 || yy2arr4322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -53159,11 +53866,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4269 || yy2arr4269 { + if yyr4322 || yy2arr4322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4269[2] { - yym4273 := z.EncBinary() - _ = yym4273 + if yyq4322[2] { + yym4326 := z.EncBinary() + _ = yym4326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -53172,23 +53879,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4269[2] { + if yyq4322[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4274 := z.EncBinary() - _ = yym4274 + yym4327 := z.EncBinary() + _ = yym4327 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4269 || yy2arr4269 { + if yyr4322 || yy2arr4322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4269[3] { - yym4276 := z.EncBinary() - _ = yym4276 + if yyq4322[3] { + yym4329 := z.EncBinary() + _ = yym4329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -53197,19 +53904,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4269[3] { + if yyq4322[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4277 := z.EncBinary() - _ = yym4277 + yym4330 := z.EncBinary() + _ = yym4330 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4269 || yy2arr4269 { + if yyr4322 || yy2arr4322 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53222,25 +53929,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4278 := z.DecBinary() - _ = yym4278 + yym4331 := z.DecBinary() + _ = yym4331 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4279 := r.ContainerType() - if yyct4279 == codecSelferValueTypeMap1234 { - yyl4279 := r.ReadMapStart() - if yyl4279 == 0 { + yyct4332 := r.ContainerType() + if yyct4332 == codecSelferValueTypeMap1234 { + yyl4332 := r.ReadMapStart() + if yyl4332 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4279, d) + x.codecDecodeSelfFromMap(yyl4332, d) } - } else if yyct4279 == codecSelferValueTypeArray1234 { - yyl4279 := r.ReadArrayStart() - if yyl4279 == 0 { + } else if yyct4332 == codecSelferValueTypeArray1234 { + yyl4332 := r.ReadArrayStart() + if yyl4332 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4279, d) + x.codecDecodeSelfFromArray(yyl4332, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53252,12 +53959,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4280Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4280Slc - var yyhl4280 bool = l >= 0 - for yyj4280 := 0; ; yyj4280++ { - if yyhl4280 { - if yyj4280 >= l { + var yys4333Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4333Slc + var yyhl4333 bool = l >= 0 + for yyj4333 := 0; ; yyj4333++ { + if yyhl4333 { + if yyj4333 >= l { break } } else { @@ -53266,10 +53973,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4280Slc = r.DecodeBytes(yys4280Slc, true, true) - yys4280 := string(yys4280Slc) + yys4333Slc = r.DecodeBytes(yys4333Slc, true, true) + yys4333 := string(yys4333Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4280 { + switch yys4333 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -53295,9 +54002,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4280) - } // end switch yys4280 - } // end for yyj4280 + z.DecStructFieldNotFound(-1, yys4333) + } // end switch yys4333 + } // end for yyj4333 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53305,16 +54012,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode 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 yyj4338 int + var yyb4338 bool + var yyhl4338 bool = l >= 0 + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l } else { - yyb4285 = r.CheckBreak() + yyb4338 = r.CheckBreak() } - if yyb4285 { + if yyb4338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53324,13 +54031,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l } else { - yyb4285 = r.CheckBreak() + yyb4338 = r.CheckBreak() } - if yyb4285 { + if yyb4338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53340,13 +54047,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l } else { - yyb4285 = r.CheckBreak() + yyb4338 = r.CheckBreak() } - if yyb4285 { + if yyb4338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53356,13 +54063,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l } else { - yyb4285 = r.CheckBreak() + yyb4338 = r.CheckBreak() } - if yyb4285 { + if yyb4338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53373,17 +54080,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4285++ - if yyhl4285 { - yyb4285 = yyj4285 > l + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l } else { - yyb4285 = r.CheckBreak() + yyb4338 = r.CheckBreak() } - if yyb4285 { + if yyb4338 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4285-1, "") + z.DecStructFieldNotFound(yyj4338-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53395,38 +54102,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4290 := z.EncBinary() - _ = yym4290 + yym4343 := z.EncBinary() + _ = yym4343 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4291 := !z.EncBinary() - yy2arr4291 := z.EncBasicHandle().StructToArray - var yyq4291 [4]bool - _, _, _ = yysep4291, yyq4291, yy2arr4291 - const yyr4291 bool = false - yyq4291[0] = x.Kind != "" - yyq4291[1] = x.APIVersion != "" - yyq4291[2] = true - yyq4291[3] = len(x.Conditions) != 0 - var yynn4291 int - if yyr4291 || yy2arr4291 { + yysep4344 := !z.EncBinary() + yy2arr4344 := z.EncBasicHandle().StructToArray + var yyq4344 [4]bool + _, _, _ = yysep4344, yyq4344, yy2arr4344 + const yyr4344 bool = false + yyq4344[0] = x.Kind != "" + yyq4344[1] = x.APIVersion != "" + yyq4344[2] = true + yyq4344[3] = len(x.Conditions) != 0 + var yynn4344 int + if yyr4344 || yy2arr4344 { r.EncodeArrayStart(4) } else { - yynn4291 = 0 - for _, b := range yyq4291 { + yynn4344 = 0 + for _, b := range yyq4344 { if b { - yynn4291++ + yynn4344++ } } - r.EncodeMapStart(yynn4291) - yynn4291 = 0 + r.EncodeMapStart(yynn4344) + yynn4344 = 0 } - if yyr4291 || yy2arr4291 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4291[0] { - yym4293 := z.EncBinary() - _ = yym4293 + if yyq4344[0] { + yym4346 := z.EncBinary() + _ = yym4346 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53435,23 +54142,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4291[0] { + if yyq4344[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4294 := z.EncBinary() - _ = yym4294 + yym4347 := z.EncBinary() + _ = yym4347 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4291 || yy2arr4291 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4291[1] { - yym4296 := z.EncBinary() - _ = yym4296 + if yyq4344[1] { + yym4349 := z.EncBinary() + _ = yym4349 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53460,43 +54167,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4291[1] { + if yyq4344[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4297 := z.EncBinary() - _ = yym4297 + yym4350 := z.EncBinary() + _ = yym4350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4291 || yy2arr4291 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4291[2] { - yy4299 := &x.ObjectMeta - yy4299.CodecEncodeSelf(e) + if yyq4344[2] { + yy4352 := &x.ObjectMeta + yy4352.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4291[2] { + if yyq4344[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4300 := &x.ObjectMeta - yy4300.CodecEncodeSelf(e) + yy4353 := &x.ObjectMeta + yy4353.CodecEncodeSelf(e) } } - if yyr4291 || yy2arr4291 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4291[3] { + if yyq4344[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4302 := z.EncBinary() - _ = yym4302 + yym4355 := z.EncBinary() + _ = yym4355 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -53506,15 +54213,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4291[3] { + if yyq4344[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4303 := z.EncBinary() - _ = yym4303 + yym4356 := z.EncBinary() + _ = yym4356 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -53522,7 +54229,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4291 || yy2arr4291 { + if yyr4344 || yy2arr4344 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53535,25 +54242,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4304 := z.DecBinary() - _ = yym4304 + yym4357 := z.DecBinary() + _ = yym4357 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4305 := r.ContainerType() - if yyct4305 == codecSelferValueTypeMap1234 { - yyl4305 := r.ReadMapStart() - if yyl4305 == 0 { + yyct4358 := r.ContainerType() + if yyct4358 == codecSelferValueTypeMap1234 { + yyl4358 := r.ReadMapStart() + if yyl4358 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4305, d) + x.codecDecodeSelfFromMap(yyl4358, d) } - } else if yyct4305 == codecSelferValueTypeArray1234 { - yyl4305 := r.ReadArrayStart() - if yyl4305 == 0 { + } else if yyct4358 == codecSelferValueTypeArray1234 { + yyl4358 := r.ReadArrayStart() + if yyl4358 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4305, d) + x.codecDecodeSelfFromArray(yyl4358, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53565,12 +54272,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4306Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4306Slc - var yyhl4306 bool = l >= 0 - for yyj4306 := 0; ; yyj4306++ { - if yyhl4306 { - if yyj4306 >= l { + var yys4359Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4359Slc + var yyhl4359 bool = l >= 0 + for yyj4359 := 0; ; yyj4359++ { + if yyhl4359 { + if yyj4359 >= l { break } } else { @@ -53579,10 +54286,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4306Slc = r.DecodeBytes(yys4306Slc, true, true) - yys4306 := string(yys4306Slc) + yys4359Slc = r.DecodeBytes(yys4359Slc, true, true) + yys4359 := string(yys4359Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4306 { + switch yys4359 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53599,25 +54306,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4309 := &x.ObjectMeta - yyv4309.CodecDecodeSelf(d) + yyv4362 := &x.ObjectMeta + yyv4362.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4310 := &x.Conditions - yym4311 := z.DecBinary() - _ = yym4311 + yyv4363 := &x.Conditions + yym4364 := z.DecBinary() + _ = yym4364 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4310), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4363), d) } } default: - z.DecStructFieldNotFound(-1, yys4306) - } // end switch yys4306 - } // end for yyj4306 + z.DecStructFieldNotFound(-1, yys4359) + } // end switch yys4359 + } // end for yyj4359 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53625,16 +54332,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4312 int - var yyb4312 bool - var yyhl4312 bool = l >= 0 - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + var yyj4365 int + var yyb4365 bool + var yyhl4365 bool = l >= 0 + yyj4365++ + if yyhl4365 { + yyb4365 = yyj4365 > l } else { - yyb4312 = r.CheckBreak() + yyb4365 = r.CheckBreak() } - if yyb4312 { + if yyb4365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53644,13 +54351,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + yyj4365++ + if yyhl4365 { + yyb4365 = yyj4365 > l } else { - yyb4312 = r.CheckBreak() + yyb4365 = r.CheckBreak() } - if yyb4312 { + if yyb4365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53660,13 +54367,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + yyj4365++ + if yyhl4365 { + yyb4365 = yyj4365 > l } else { - yyb4312 = r.CheckBreak() + yyb4365 = r.CheckBreak() } - if yyb4312 { + if yyb4365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53674,16 +54381,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4315 := &x.ObjectMeta - yyv4315.CodecDecodeSelf(d) + yyv4368 := &x.ObjectMeta + yyv4368.CodecDecodeSelf(d) } - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + yyj4365++ + if yyhl4365 { + yyb4365 = yyj4365 > l } else { - yyb4312 = r.CheckBreak() + yyb4365 = r.CheckBreak() } - if yyb4312 { + if yyb4365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53691,26 +54398,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4316 := &x.Conditions - yym4317 := z.DecBinary() - _ = yym4317 + yyv4369 := &x.Conditions + yym4370 := z.DecBinary() + _ = yym4370 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4316), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4369), d) } } for { - yyj4312++ - if yyhl4312 { - yyb4312 = yyj4312 > l + yyj4365++ + if yyhl4365 { + yyb4365 = yyj4365 > l } else { - yyb4312 = r.CheckBreak() + yyb4365 = r.CheckBreak() } - if yyb4312 { + if yyb4365 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4312-1, "") + z.DecStructFieldNotFound(yyj4365-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53722,37 +54429,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4318 := z.EncBinary() - _ = yym4318 + yym4371 := z.EncBinary() + _ = yym4371 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4319 := !z.EncBinary() - yy2arr4319 := z.EncBasicHandle().StructToArray - var yyq4319 [4]bool - _, _, _ = yysep4319, yyq4319, yy2arr4319 - const yyr4319 bool = false - yyq4319[0] = x.Kind != "" - yyq4319[1] = x.APIVersion != "" - yyq4319[2] = true - var yynn4319 int - if yyr4319 || yy2arr4319 { + yysep4372 := !z.EncBinary() + yy2arr4372 := z.EncBasicHandle().StructToArray + var yyq4372 [4]bool + _, _, _ = yysep4372, yyq4372, yy2arr4372 + const yyr4372 bool = false + yyq4372[0] = x.Kind != "" + yyq4372[1] = x.APIVersion != "" + yyq4372[2] = true + var yynn4372 int + if yyr4372 || yy2arr4372 { r.EncodeArrayStart(4) } else { - yynn4319 = 1 - for _, b := range yyq4319 { + yynn4372 = 1 + for _, b := range yyq4372 { if b { - yynn4319++ + yynn4372++ } } - r.EncodeMapStart(yynn4319) - yynn4319 = 0 + r.EncodeMapStart(yynn4372) + yynn4372 = 0 } - if yyr4319 || yy2arr4319 { + if yyr4372 || yy2arr4372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[0] { - yym4321 := z.EncBinary() - _ = yym4321 + if yyq4372[0] { + yym4374 := z.EncBinary() + _ = yym4374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53761,23 +54468,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4319[0] { + if yyq4372[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4322 := z.EncBinary() - _ = yym4322 + yym4375 := z.EncBinary() + _ = yym4375 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4319 || yy2arr4319 { + if yyr4372 || yy2arr4372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[1] { - yym4324 := z.EncBinary() - _ = yym4324 + if yyq4372[1] { + yym4377 := z.EncBinary() + _ = yym4377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53786,54 +54493,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4319[1] { + if yyq4372[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4325 := z.EncBinary() - _ = yym4325 + yym4378 := z.EncBinary() + _ = yym4378 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4319 || yy2arr4319 { + if yyr4372 || yy2arr4372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[2] { - yy4327 := &x.ListMeta - yym4328 := z.EncBinary() - _ = yym4328 + if yyq4372[2] { + yy4380 := &x.ListMeta + yym4381 := z.EncBinary() + _ = yym4381 if false { - } else if z.HasExtensions() && z.EncExt(yy4327) { + } else if z.HasExtensions() && z.EncExt(yy4380) { } else { - z.EncFallback(yy4327) + z.EncFallback(yy4380) } } else { r.EncodeNil() } } else { - if yyq4319[2] { + if yyq4372[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4329 := &x.ListMeta - yym4330 := z.EncBinary() - _ = yym4330 + yy4382 := &x.ListMeta + yym4383 := z.EncBinary() + _ = yym4383 if false { - } else if z.HasExtensions() && z.EncExt(yy4329) { + } else if z.HasExtensions() && z.EncExt(yy4382) { } else { - z.EncFallback(yy4329) + z.EncFallback(yy4382) } } } - if yyr4319 || yy2arr4319 { + if yyr4372 || yy2arr4372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4332 := z.EncBinary() - _ = yym4332 + yym4385 := z.EncBinary() + _ = yym4385 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -53846,15 +54553,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4333 := z.EncBinary() - _ = yym4333 + yym4386 := z.EncBinary() + _ = yym4386 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4319 || yy2arr4319 { + if yyr4372 || yy2arr4372 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53867,25 +54574,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4334 := z.DecBinary() - _ = yym4334 + yym4387 := z.DecBinary() + _ = yym4387 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4335 := r.ContainerType() - if yyct4335 == codecSelferValueTypeMap1234 { - yyl4335 := r.ReadMapStart() - if yyl4335 == 0 { + yyct4388 := r.ContainerType() + if yyct4388 == codecSelferValueTypeMap1234 { + yyl4388 := r.ReadMapStart() + if yyl4388 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4335, d) + x.codecDecodeSelfFromMap(yyl4388, d) } - } else if yyct4335 == codecSelferValueTypeArray1234 { - yyl4335 := r.ReadArrayStart() - if yyl4335 == 0 { + } else if yyct4388 == codecSelferValueTypeArray1234 { + yyl4388 := r.ReadArrayStart() + if yyl4388 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4335, d) + x.codecDecodeSelfFromArray(yyl4388, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53897,12 +54604,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4336Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4336Slc - var yyhl4336 bool = l >= 0 - for yyj4336 := 0; ; yyj4336++ { - if yyhl4336 { - if yyj4336 >= l { + var yys4389Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4389Slc + var yyhl4389 bool = l >= 0 + for yyj4389 := 0; ; yyj4389++ { + if yyhl4389 { + if yyj4389 >= l { break } } else { @@ -53911,10 +54618,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4336Slc = r.DecodeBytes(yys4336Slc, true, true) - yys4336 := string(yys4336Slc) + yys4389Slc = r.DecodeBytes(yys4389Slc, true, true) + yys4389 := string(yys4389Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4336 { + switch yys4389 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53931,31 +54638,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4339 := &x.ListMeta - yym4340 := z.DecBinary() - _ = yym4340 + yyv4392 := &x.ListMeta + yym4393 := z.DecBinary() + _ = yym4393 if false { - } else if z.HasExtensions() && z.DecExt(yyv4339) { + } else if z.HasExtensions() && z.DecExt(yyv4392) { } else { - z.DecFallback(yyv4339, false) + z.DecFallback(yyv4392, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4341 := &x.Items - yym4342 := z.DecBinary() - _ = yym4342 + yyv4394 := &x.Items + yym4395 := z.DecBinary() + _ = yym4395 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4341), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4394), d) } } default: - z.DecStructFieldNotFound(-1, yys4336) - } // end switch yys4336 - } // end for yyj4336 + z.DecStructFieldNotFound(-1, yys4389) + } // end switch yys4389 + } // end for yyj4389 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53963,16 +54670,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4343 int - var yyb4343 bool - var yyhl4343 bool = l >= 0 - yyj4343++ - if yyhl4343 { - yyb4343 = yyj4343 > l + var yyj4396 int + var yyb4396 bool + var yyhl4396 bool = l >= 0 + yyj4396++ + if yyhl4396 { + yyb4396 = yyj4396 > l } else { - yyb4343 = r.CheckBreak() + yyb4396 = r.CheckBreak() } - if yyb4343 { + if yyb4396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53982,13 +54689,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4343++ - if yyhl4343 { - yyb4343 = yyj4343 > l + yyj4396++ + if yyhl4396 { + yyb4396 = yyj4396 > l } else { - yyb4343 = r.CheckBreak() + yyb4396 = r.CheckBreak() } - if yyb4343 { + if yyb4396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53998,13 +54705,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4343++ - if yyhl4343 { - yyb4343 = yyj4343 > l + yyj4396++ + if yyhl4396 { + yyb4396 = yyj4396 > l } else { - yyb4343 = r.CheckBreak() + yyb4396 = r.CheckBreak() } - if yyb4343 { + if yyb4396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54012,22 +54719,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4346 := &x.ListMeta - yym4347 := z.DecBinary() - _ = yym4347 + yyv4399 := &x.ListMeta + yym4400 := z.DecBinary() + _ = yym4400 if false { - } else if z.HasExtensions() && z.DecExt(yyv4346) { + } else if z.HasExtensions() && z.DecExt(yyv4399) { } else { - z.DecFallback(yyv4346, false) + z.DecFallback(yyv4399, false) } } - yyj4343++ - if yyhl4343 { - yyb4343 = yyj4343 > l + yyj4396++ + if yyhl4396 { + yyb4396 = yyj4396 > l } else { - yyb4343 = r.CheckBreak() + yyb4396 = r.CheckBreak() } - if yyb4343 { + if yyb4396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54035,26 +54742,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4348 := &x.Items - yym4349 := z.DecBinary() - _ = yym4349 + yyv4401 := &x.Items + yym4402 := z.DecBinary() + _ = yym4402 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4348), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4401), d) } } for { - yyj4343++ - if yyhl4343 { - yyb4343 = yyj4343 > l + yyj4396++ + if yyhl4396 { + yyb4396 = yyj4396 > l } else { - yyb4343 = r.CheckBreak() + yyb4396 = r.CheckBreak() } - if yyb4343 { + if yyb4396 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4343-1, "") + z.DecStructFieldNotFound(yyj4396-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54066,38 +54773,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4350 := z.EncBinary() - _ = yym4350 + yym4403 := z.EncBinary() + _ = yym4403 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4351 := !z.EncBinary() - yy2arr4351 := z.EncBasicHandle().StructToArray - var yyq4351 [6]bool - _, _, _ = yysep4351, yyq4351, yy2arr4351 - const yyr4351 bool = false - yyq4351[0] = x.Capabilities != nil - yyq4351[1] = x.Privileged != nil - yyq4351[2] = x.SELinuxOptions != nil - yyq4351[3] = x.RunAsUser != nil - yyq4351[4] = x.RunAsNonRoot != nil - yyq4351[5] = x.ReadOnlyRootFilesystem != nil - var yynn4351 int - if yyr4351 || yy2arr4351 { + yysep4404 := !z.EncBinary() + yy2arr4404 := z.EncBasicHandle().StructToArray + var yyq4404 [6]bool + _, _, _ = yysep4404, yyq4404, yy2arr4404 + const yyr4404 bool = false + yyq4404[0] = x.Capabilities != nil + yyq4404[1] = x.Privileged != nil + yyq4404[2] = x.SELinuxOptions != nil + yyq4404[3] = x.RunAsUser != nil + yyq4404[4] = x.RunAsNonRoot != nil + yyq4404[5] = x.ReadOnlyRootFilesystem != nil + var yynn4404 int + if yyr4404 || yy2arr4404 { r.EncodeArrayStart(6) } else { - yynn4351 = 0 - for _, b := range yyq4351 { + yynn4404 = 0 + for _, b := range yyq4404 { if b { - yynn4351++ + yynn4404++ } } - r.EncodeMapStart(yynn4351) - yynn4351 = 0 + r.EncodeMapStart(yynn4404) + yynn4404 = 0 } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4351[0] { + if yyq4404[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -54107,7 +54814,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4351[0] { + if yyq4404[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54118,44 +54825,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4351[1] { + if yyq4404[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4354 := *x.Privileged - yym4355 := z.EncBinary() - _ = yym4355 + yy4407 := *x.Privileged + yym4408 := z.EncBinary() + _ = yym4408 if false { } else { - r.EncodeBool(bool(yy4354)) + r.EncodeBool(bool(yy4407)) } } } else { r.EncodeNil() } } else { - if yyq4351[1] { + if yyq4404[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4356 := *x.Privileged - yym4357 := z.EncBinary() - _ = yym4357 + yy4409 := *x.Privileged + yym4410 := z.EncBinary() + _ = yym4410 if false { } else { - r.EncodeBool(bool(yy4356)) + r.EncodeBool(bool(yy4409)) } } } } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4351[2] { + if yyq4404[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -54165,7 +54872,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4351[2] { + if yyq4404[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54176,112 +54883,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4351[3] { + if yyq4404[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4360 := *x.RunAsUser - yym4361 := z.EncBinary() - _ = yym4361 + yy4413 := *x.RunAsUser + yym4414 := z.EncBinary() + _ = yym4414 if false { } else { - r.EncodeInt(int64(yy4360)) + r.EncodeInt(int64(yy4413)) } } } else { r.EncodeNil() } } else { - if yyq4351[3] { + if yyq4404[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4362 := *x.RunAsUser - yym4363 := z.EncBinary() - _ = yym4363 + yy4415 := *x.RunAsUser + yym4416 := z.EncBinary() + _ = yym4416 if false { } else { - r.EncodeInt(int64(yy4362)) + r.EncodeInt(int64(yy4415)) } } } } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4351[4] { + if yyq4404[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4365 := *x.RunAsNonRoot - yym4366 := z.EncBinary() - _ = yym4366 + yy4418 := *x.RunAsNonRoot + yym4419 := z.EncBinary() + _ = yym4419 if false { } else { - r.EncodeBool(bool(yy4365)) + r.EncodeBool(bool(yy4418)) } } } else { r.EncodeNil() } } else { - if yyq4351[4] { + if yyq4404[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4367 := *x.RunAsNonRoot - yym4368 := z.EncBinary() - _ = yym4368 + yy4420 := *x.RunAsNonRoot + yym4421 := z.EncBinary() + _ = yym4421 if false { } else { - r.EncodeBool(bool(yy4367)) + r.EncodeBool(bool(yy4420)) } } } } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4351[5] { + if yyq4404[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4370 := *x.ReadOnlyRootFilesystem - yym4371 := z.EncBinary() - _ = yym4371 + yy4423 := *x.ReadOnlyRootFilesystem + yym4424 := z.EncBinary() + _ = yym4424 if false { } else { - r.EncodeBool(bool(yy4370)) + r.EncodeBool(bool(yy4423)) } } } else { r.EncodeNil() } } else { - if yyq4351[5] { + if yyq4404[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4372 := *x.ReadOnlyRootFilesystem - yym4373 := z.EncBinary() - _ = yym4373 + yy4425 := *x.ReadOnlyRootFilesystem + yym4426 := z.EncBinary() + _ = yym4426 if false { } else { - r.EncodeBool(bool(yy4372)) + r.EncodeBool(bool(yy4425)) } } } } - if yyr4351 || yy2arr4351 { + if yyr4404 || yy2arr4404 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54294,25 +55001,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4374 := z.DecBinary() - _ = yym4374 + yym4427 := z.DecBinary() + _ = yym4427 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4375 := r.ContainerType() - if yyct4375 == codecSelferValueTypeMap1234 { - yyl4375 := r.ReadMapStart() - if yyl4375 == 0 { + yyct4428 := r.ContainerType() + if yyct4428 == codecSelferValueTypeMap1234 { + yyl4428 := r.ReadMapStart() + if yyl4428 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4375, d) + x.codecDecodeSelfFromMap(yyl4428, d) } - } else if yyct4375 == codecSelferValueTypeArray1234 { - yyl4375 := r.ReadArrayStart() - if yyl4375 == 0 { + } else if yyct4428 == codecSelferValueTypeArray1234 { + yyl4428 := r.ReadArrayStart() + if yyl4428 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4375, d) + x.codecDecodeSelfFromArray(yyl4428, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54324,12 +55031,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4376Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4376Slc - var yyhl4376 bool = l >= 0 - for yyj4376 := 0; ; yyj4376++ { - if yyhl4376 { - if yyj4376 >= l { + var yys4429Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4429Slc + var yyhl4429 bool = l >= 0 + for yyj4429 := 0; ; yyj4429++ { + if yyhl4429 { + if yyj4429 >= l { break } } else { @@ -54338,10 +55045,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4376Slc = r.DecodeBytes(yys4376Slc, true, true) - yys4376 := string(yys4376Slc) + yys4429Slc = r.DecodeBytes(yys4429Slc, true, true) + yys4429 := string(yys4429Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4376 { + switch yys4429 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -54362,8 +55069,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4379 := z.DecBinary() - _ = yym4379 + yym4432 := z.DecBinary() + _ = yym4432 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -54389,8 +55096,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4382 := z.DecBinary() - _ = yym4382 + yym4435 := z.DecBinary() + _ = yym4435 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -54405,8 +55112,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4384 := z.DecBinary() - _ = yym4384 + yym4437 := z.DecBinary() + _ = yym4437 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -54421,17 +55128,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4386 := z.DecBinary() - _ = yym4386 + yym4439 := z.DecBinary() + _ = yym4439 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4376) - } // end switch yys4376 - } // end for yyj4376 + z.DecStructFieldNotFound(-1, yys4429) + } // end switch yys4429 + } // end for yyj4429 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54439,16 +55146,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4387 int - var yyb4387 bool - var yyhl4387 bool = l >= 0 - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + var yyj4440 int + var yyb4440 bool + var yyhl4440 bool = l >= 0 + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54463,13 +55170,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54482,20 +55189,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4390 := z.DecBinary() - _ = yym4390 + yym4443 := z.DecBinary() + _ = yym4443 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54510,13 +55217,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54529,20 +55236,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4393 := z.DecBinary() - _ = yym4393 + yym4446 := z.DecBinary() + _ = yym4446 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54555,20 +55262,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4395 := z.DecBinary() - _ = yym4395 + yym4448 := z.DecBinary() + _ = yym4448 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54581,25 +55288,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4397 := z.DecBinary() - _ = yym4397 + yym4450 := z.DecBinary() + _ = yym4450 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4440++ + if yyhl4440 { + yyb4440 = yyj4440 > l } else { - yyb4387 = r.CheckBreak() + yyb4440 = r.CheckBreak() } - if yyb4387 { + if yyb4440 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4387-1, "") + z.DecStructFieldNotFound(yyj4440-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54611,38 +55318,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4398 := z.EncBinary() - _ = yym4398 + yym4451 := z.EncBinary() + _ = yym4451 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4399 := !z.EncBinary() - yy2arr4399 := z.EncBasicHandle().StructToArray - var yyq4399 [4]bool - _, _, _ = yysep4399, yyq4399, yy2arr4399 - const yyr4399 bool = false - yyq4399[0] = x.User != "" - yyq4399[1] = x.Role != "" - yyq4399[2] = x.Type != "" - yyq4399[3] = x.Level != "" - var yynn4399 int - if yyr4399 || yy2arr4399 { + yysep4452 := !z.EncBinary() + yy2arr4452 := z.EncBasicHandle().StructToArray + var yyq4452 [4]bool + _, _, _ = yysep4452, yyq4452, yy2arr4452 + const yyr4452 bool = false + yyq4452[0] = x.User != "" + yyq4452[1] = x.Role != "" + yyq4452[2] = x.Type != "" + yyq4452[3] = x.Level != "" + var yynn4452 int + if yyr4452 || yy2arr4452 { r.EncodeArrayStart(4) } else { - yynn4399 = 0 - for _, b := range yyq4399 { + yynn4452 = 0 + for _, b := range yyq4452 { if b { - yynn4399++ + yynn4452++ } } - r.EncodeMapStart(yynn4399) - yynn4399 = 0 + r.EncodeMapStart(yynn4452) + yynn4452 = 0 } - if yyr4399 || yy2arr4399 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4399[0] { - yym4401 := z.EncBinary() - _ = yym4401 + if yyq4452[0] { + yym4454 := z.EncBinary() + _ = yym4454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -54651,23 +55358,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4399[0] { + if yyq4452[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4402 := z.EncBinary() - _ = yym4402 + yym4455 := z.EncBinary() + _ = yym4455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4399 || yy2arr4399 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4399[1] { - yym4404 := z.EncBinary() - _ = yym4404 + if yyq4452[1] { + yym4457 := z.EncBinary() + _ = yym4457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -54676,23 +55383,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4399[1] { + if yyq4452[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4405 := z.EncBinary() - _ = yym4405 + yym4458 := z.EncBinary() + _ = yym4458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4399 || yy2arr4399 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4399[2] { - yym4407 := z.EncBinary() - _ = yym4407 + if yyq4452[2] { + yym4460 := z.EncBinary() + _ = yym4460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -54701,23 +55408,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4399[2] { + if yyq4452[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4408 := z.EncBinary() - _ = yym4408 + yym4461 := z.EncBinary() + _ = yym4461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4399 || yy2arr4399 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4399[3] { - yym4410 := z.EncBinary() - _ = yym4410 + if yyq4452[3] { + yym4463 := z.EncBinary() + _ = yym4463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -54726,19 +55433,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4399[3] { + if yyq4452[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4411 := z.EncBinary() - _ = yym4411 + yym4464 := z.EncBinary() + _ = yym4464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4399 || yy2arr4399 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54751,25 +55458,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4412 := z.DecBinary() - _ = yym4412 + yym4465 := z.DecBinary() + _ = yym4465 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4413 := r.ContainerType() - if yyct4413 == codecSelferValueTypeMap1234 { - yyl4413 := r.ReadMapStart() - if yyl4413 == 0 { + yyct4466 := r.ContainerType() + if yyct4466 == codecSelferValueTypeMap1234 { + yyl4466 := r.ReadMapStart() + if yyl4466 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4413, d) + x.codecDecodeSelfFromMap(yyl4466, d) } - } else if yyct4413 == codecSelferValueTypeArray1234 { - yyl4413 := r.ReadArrayStart() - if yyl4413 == 0 { + } else if yyct4466 == codecSelferValueTypeArray1234 { + yyl4466 := r.ReadArrayStart() + if yyl4466 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4413, d) + x.codecDecodeSelfFromArray(yyl4466, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54781,12 +55488,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4414Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4414Slc - var yyhl4414 bool = l >= 0 - for yyj4414 := 0; ; yyj4414++ { - if yyhl4414 { - if yyj4414 >= l { + var yys4467Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4467Slc + var yyhl4467 bool = l >= 0 + for yyj4467 := 0; ; yyj4467++ { + if yyhl4467 { + if yyj4467 >= l { break } } else { @@ -54795,10 +55502,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4414Slc = r.DecodeBytes(yys4414Slc, true, true) - yys4414 := string(yys4414Slc) + yys4467Slc = r.DecodeBytes(yys4467Slc, true, true) + yys4467 := string(yys4467Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4414 { + switch yys4467 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -54824,9 +55531,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4414) - } // end switch yys4414 - } // end for yyj4414 + z.DecStructFieldNotFound(-1, yys4467) + } // end switch yys4467 + } // end for yyj4467 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54834,16 +55541,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4419 int - var yyb4419 bool - var yyhl4419 bool = l >= 0 - yyj4419++ - if yyhl4419 { - yyb4419 = yyj4419 > l + var yyj4472 int + var yyb4472 bool + var yyhl4472 bool = l >= 0 + yyj4472++ + if yyhl4472 { + yyb4472 = yyj4472 > l } else { - yyb4419 = r.CheckBreak() + yyb4472 = r.CheckBreak() } - if yyb4419 { + if yyb4472 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54853,13 +55560,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4419++ - if yyhl4419 { - yyb4419 = yyj4419 > l + yyj4472++ + if yyhl4472 { + yyb4472 = yyj4472 > l } else { - yyb4419 = r.CheckBreak() + yyb4472 = r.CheckBreak() } - if yyb4419 { + if yyb4472 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54869,13 +55576,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4419++ - if yyhl4419 { - yyb4419 = yyj4419 > l + yyj4472++ + if yyhl4472 { + yyb4472 = yyj4472 > l } else { - yyb4419 = r.CheckBreak() + yyb4472 = r.CheckBreak() } - if yyb4419 { + if yyb4472 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54885,13 +55592,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4419++ - if yyhl4419 { - yyb4419 = yyj4419 > l + yyj4472++ + if yyhl4472 { + yyb4472 = yyj4472 > l } else { - yyb4419 = r.CheckBreak() + yyb4472 = r.CheckBreak() } - if yyb4419 { + if yyb4472 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54902,17 +55609,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4419++ - if yyhl4419 { - yyb4419 = yyj4419 > l + yyj4472++ + if yyhl4472 { + yyb4472 = yyj4472 > l } else { - yyb4419 = r.CheckBreak() + yyb4472 = r.CheckBreak() } - if yyb4419 { + if yyb4472 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4419-1, "") + z.DecStructFieldNotFound(yyj4472-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54924,37 +55631,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4424 := z.EncBinary() - _ = yym4424 + yym4477 := z.EncBinary() + _ = yym4477 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4425 := !z.EncBinary() - yy2arr4425 := z.EncBasicHandle().StructToArray - var yyq4425 [5]bool - _, _, _ = yysep4425, yyq4425, yy2arr4425 - const yyr4425 bool = false - yyq4425[0] = x.Kind != "" - yyq4425[1] = x.APIVersion != "" - yyq4425[2] = true - var yynn4425 int - if yyr4425 || yy2arr4425 { + yysep4478 := !z.EncBinary() + yy2arr4478 := z.EncBasicHandle().StructToArray + var yyq4478 [5]bool + _, _, _ = yysep4478, yyq4478, yy2arr4478 + const yyr4478 bool = false + yyq4478[0] = x.Kind != "" + yyq4478[1] = x.APIVersion != "" + yyq4478[2] = true + var yynn4478 int + if yyr4478 || yy2arr4478 { r.EncodeArrayStart(5) } else { - yynn4425 = 2 - for _, b := range yyq4425 { + yynn4478 = 2 + for _, b := range yyq4478 { if b { - yynn4425++ + yynn4478++ } } - r.EncodeMapStart(yynn4425) - yynn4425 = 0 + r.EncodeMapStart(yynn4478) + yynn4478 = 0 } - if yyr4425 || yy2arr4425 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4425[0] { - yym4427 := z.EncBinary() - _ = yym4427 + if yyq4478[0] { + yym4480 := z.EncBinary() + _ = yym4480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54963,23 +55670,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4425[0] { + if yyq4478[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4428 := z.EncBinary() - _ = yym4428 + yym4481 := z.EncBinary() + _ = yym4481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4425 || yy2arr4425 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4425[1] { - yym4430 := z.EncBinary() - _ = yym4430 + if yyq4478[1] { + yym4483 := z.EncBinary() + _ = yym4483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54988,39 +55695,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4425[1] { + if yyq4478[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4431 := z.EncBinary() - _ = yym4431 + yym4484 := z.EncBinary() + _ = yym4484 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4425 || yy2arr4425 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4425[2] { - yy4433 := &x.ObjectMeta - yy4433.CodecEncodeSelf(e) + if yyq4478[2] { + yy4486 := &x.ObjectMeta + yy4486.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4425[2] { + if yyq4478[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4434 := &x.ObjectMeta - yy4434.CodecEncodeSelf(e) + yy4487 := &x.ObjectMeta + yy4487.CodecEncodeSelf(e) } } - if yyr4425 || yy2arr4425 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4436 := z.EncBinary() - _ = yym4436 + yym4489 := z.EncBinary() + _ = yym4489 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -55029,20 +55736,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4437 := z.EncBinary() - _ = yym4437 + yym4490 := z.EncBinary() + _ = yym4490 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4425 || yy2arr4425 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4439 := z.EncBinary() - _ = yym4439 + yym4492 := z.EncBinary() + _ = yym4492 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -55055,15 +55762,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4440 := z.EncBinary() - _ = yym4440 + yym4493 := z.EncBinary() + _ = yym4493 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4425 || yy2arr4425 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55076,25 +55783,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4441 := z.DecBinary() - _ = yym4441 + yym4494 := z.DecBinary() + _ = yym4494 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4442 := r.ContainerType() - if yyct4442 == codecSelferValueTypeMap1234 { - yyl4442 := r.ReadMapStart() - if yyl4442 == 0 { + yyct4495 := r.ContainerType() + if yyct4495 == codecSelferValueTypeMap1234 { + yyl4495 := r.ReadMapStart() + if yyl4495 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4442, d) + x.codecDecodeSelfFromMap(yyl4495, d) } - } else if yyct4442 == codecSelferValueTypeArray1234 { - yyl4442 := r.ReadArrayStart() - if yyl4442 == 0 { + } else if yyct4495 == codecSelferValueTypeArray1234 { + yyl4495 := r.ReadArrayStart() + if yyl4495 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4442, d) + x.codecDecodeSelfFromArray(yyl4495, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55106,12 +55813,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4443Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4443Slc - var yyhl4443 bool = l >= 0 - for yyj4443 := 0; ; yyj4443++ { - if yyhl4443 { - if yyj4443 >= l { + var yys4496Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4496Slc + var yyhl4496 bool = l >= 0 + for yyj4496 := 0; ; yyj4496++ { + if yyhl4496 { + if yyj4496 >= l { break } } else { @@ -55120,10 +55827,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4443Slc = r.DecodeBytes(yys4443Slc, true, true) - yys4443 := string(yys4443Slc) + yys4496Slc = r.DecodeBytes(yys4496Slc, true, true) + yys4496 := string(yys4496Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4443 { + switch yys4496 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55140,8 +55847,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4446 := &x.ObjectMeta - yyv4446.CodecDecodeSelf(d) + yyv4499 := &x.ObjectMeta + yyv4499.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -55153,18 +55860,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4448 := &x.Data - yym4449 := z.DecBinary() - _ = yym4449 + yyv4501 := &x.Data + yym4502 := z.DecBinary() + _ = yym4502 if false { } else { - *yyv4448 = r.DecodeBytes(*(*[]byte)(yyv4448), false, false) + *yyv4501 = r.DecodeBytes(*(*[]byte)(yyv4501), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4443) - } // end switch yys4443 - } // end for yyj4443 + z.DecStructFieldNotFound(-1, yys4496) + } // end switch yys4496 + } // end for yyj4496 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55172,16 +55879,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4450 int - var yyb4450 bool - var yyhl4450 bool = l >= 0 - yyj4450++ - if yyhl4450 { - yyb4450 = yyj4450 > l + var yyj4503 int + var yyb4503 bool + var yyhl4503 bool = l >= 0 + yyj4503++ + if yyhl4503 { + yyb4503 = yyj4503 > l } else { - yyb4450 = r.CheckBreak() + yyb4503 = r.CheckBreak() } - if yyb4450 { + if yyb4503 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55191,13 +55898,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4450++ - if yyhl4450 { - yyb4450 = yyj4450 > l + yyj4503++ + if yyhl4503 { + yyb4503 = yyj4503 > l } else { - yyb4450 = r.CheckBreak() + yyb4503 = r.CheckBreak() } - if yyb4450 { + if yyb4503 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55207,13 +55914,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4450++ - if yyhl4450 { - yyb4450 = yyj4450 > l + yyj4503++ + if yyhl4503 { + yyb4503 = yyj4503 > l } else { - yyb4450 = r.CheckBreak() + yyb4503 = r.CheckBreak() } - if yyb4450 { + if yyb4503 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55221,16 +55928,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4453 := &x.ObjectMeta - yyv4453.CodecDecodeSelf(d) + yyv4506 := &x.ObjectMeta + yyv4506.CodecDecodeSelf(d) } - yyj4450++ - if yyhl4450 { - yyb4450 = yyj4450 > l + yyj4503++ + if yyhl4503 { + yyb4503 = yyj4503 > l } else { - yyb4450 = r.CheckBreak() + yyb4503 = r.CheckBreak() } - if yyb4450 { + if yyb4503 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55240,13 +55947,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4450++ - if yyhl4450 { - yyb4450 = yyj4450 > l + yyj4503++ + if yyhl4503 { + yyb4503 = yyj4503 > l } else { - yyb4450 = r.CheckBreak() + yyb4503 = r.CheckBreak() } - if yyb4450 { + if yyb4503 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55254,26 +55961,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4455 := &x.Data - yym4456 := z.DecBinary() - _ = yym4456 + yyv4508 := &x.Data + yym4509 := z.DecBinary() + _ = yym4509 if false { } else { - *yyv4455 = r.DecodeBytes(*(*[]byte)(yyv4455), false, false) + *yyv4508 = r.DecodeBytes(*(*[]byte)(yyv4508), false, false) } } for { - yyj4450++ - if yyhl4450 { - yyb4450 = yyj4450 > l + yyj4503++ + if yyhl4503 { + yyb4503 = yyj4503 > l } else { - yyb4450 = r.CheckBreak() + yyb4503 = r.CheckBreak() } - if yyb4450 { + if yyb4503 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4450-1, "") + z.DecStructFieldNotFound(yyj4503-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55283,10 +55990,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4457 := range v { + for _, yyv4510 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4458 := &yyv4457 - yy4458.CodecEncodeSelf(e) + yy4511 := &yyv4510 + yy4511.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55296,83 +56003,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4459 := *v - yyh4459, yyl4459 := z.DecSliceHelperStart() - var yyc4459 bool - if yyl4459 == 0 { - if yyv4459 == nil { - yyv4459 = []OwnerReference{} - yyc4459 = true - } else if len(yyv4459) != 0 { - yyv4459 = yyv4459[:0] - yyc4459 = true + yyv4512 := *v + yyh4512, yyl4512 := z.DecSliceHelperStart() + var yyc4512 bool + if yyl4512 == 0 { + if yyv4512 == nil { + yyv4512 = []OwnerReference{} + yyc4512 = true + } else if len(yyv4512) != 0 { + yyv4512 = yyv4512[:0] + yyc4512 = true } - } else if yyl4459 > 0 { - var yyrr4459, yyrl4459 int - var yyrt4459 bool - if yyl4459 > cap(yyv4459) { + } else if yyl4512 > 0 { + var yyrr4512, yyrl4512 int + var yyrt4512 bool + if yyl4512 > cap(yyv4512) { - yyrg4459 := len(yyv4459) > 0 - yyv24459 := yyv4459 - yyrl4459, yyrt4459 = z.DecInferLen(yyl4459, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4459 { - if yyrl4459 <= cap(yyv4459) { - yyv4459 = yyv4459[:yyrl4459] + yyrg4512 := len(yyv4512) > 0 + yyv24512 := yyv4512 + yyrl4512, yyrt4512 = z.DecInferLen(yyl4512, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4512 { + if yyrl4512 <= cap(yyv4512) { + yyv4512 = yyv4512[:yyrl4512] } else { - yyv4459 = make([]OwnerReference, yyrl4459) + yyv4512 = make([]OwnerReference, yyrl4512) } } else { - yyv4459 = make([]OwnerReference, yyrl4459) + yyv4512 = make([]OwnerReference, yyrl4512) } - yyc4459 = true - yyrr4459 = len(yyv4459) - if yyrg4459 { - copy(yyv4459, yyv24459) + yyc4512 = true + yyrr4512 = len(yyv4512) + if yyrg4512 { + copy(yyv4512, yyv24512) } - } else if yyl4459 != len(yyv4459) { - yyv4459 = yyv4459[:yyl4459] - yyc4459 = true + } else if yyl4512 != len(yyv4512) { + yyv4512 = yyv4512[:yyl4512] + yyc4512 = true } - yyj4459 := 0 - for ; yyj4459 < yyrr4459; yyj4459++ { - yyh4459.ElemContainerState(yyj4459) + yyj4512 := 0 + for ; yyj4512 < yyrr4512; yyj4512++ { + yyh4512.ElemContainerState(yyj4512) if r.TryDecodeAsNil() { - yyv4459[yyj4459] = OwnerReference{} + yyv4512[yyj4512] = OwnerReference{} } else { - yyv4460 := &yyv4459[yyj4459] - yyv4460.CodecDecodeSelf(d) + yyv4513 := &yyv4512[yyj4512] + yyv4513.CodecDecodeSelf(d) } } - if yyrt4459 { - for ; yyj4459 < yyl4459; yyj4459++ { - yyv4459 = append(yyv4459, OwnerReference{}) - yyh4459.ElemContainerState(yyj4459) + if yyrt4512 { + for ; yyj4512 < yyl4512; yyj4512++ { + yyv4512 = append(yyv4512, OwnerReference{}) + yyh4512.ElemContainerState(yyj4512) if r.TryDecodeAsNil() { - yyv4459[yyj4459] = OwnerReference{} + yyv4512[yyj4512] = OwnerReference{} } else { - yyv4461 := &yyv4459[yyj4459] - yyv4461.CodecDecodeSelf(d) + yyv4514 := &yyv4512[yyj4512] + yyv4514.CodecDecodeSelf(d) } } } } else { - yyj4459 := 0 - for ; !r.CheckBreak(); yyj4459++ { + yyj4512 := 0 + for ; !r.CheckBreak(); yyj4512++ { - if yyj4459 >= len(yyv4459) { - yyv4459 = append(yyv4459, OwnerReference{}) // var yyz4459 OwnerReference - yyc4459 = true + if yyj4512 >= len(yyv4512) { + yyv4512 = append(yyv4512, OwnerReference{}) // var yyz4512 OwnerReference + yyc4512 = true } - yyh4459.ElemContainerState(yyj4459) - if yyj4459 < len(yyv4459) { + yyh4512.ElemContainerState(yyj4512) + if yyj4512 < len(yyv4512) { if r.TryDecodeAsNil() { - yyv4459[yyj4459] = OwnerReference{} + yyv4512[yyj4512] = OwnerReference{} } else { - yyv4462 := &yyv4459[yyj4459] - yyv4462.CodecDecodeSelf(d) + yyv4515 := &yyv4512[yyj4512] + yyv4515.CodecDecodeSelf(d) } } else { @@ -55380,17 +56087,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4459 < len(yyv4459) { - yyv4459 = yyv4459[:yyj4459] - yyc4459 = true - } else if yyj4459 == 0 && yyv4459 == nil { - yyv4459 = []OwnerReference{} - yyc4459 = true + if yyj4512 < len(yyv4512) { + yyv4512 = yyv4512[:yyj4512] + yyc4512 = true + } else if yyj4512 == 0 && yyv4512 == nil { + yyv4512 = []OwnerReference{} + yyc4512 = true } } - yyh4459.End() - if yyc4459 { - *v = yyv4459 + yyh4512.End() + if yyc4512 { + *v = yyv4512 } } @@ -55399,9 +56106,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4463 := range v { + for _, yyv4516 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4463.CodecEncodeSelf(e) + yyv4516.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55411,1039 +56118,12 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4464 := *v - yyh4464, yyl4464 := z.DecSliceHelperStart() - var yyc4464 bool - if yyl4464 == 0 { - if yyv4464 == nil { - yyv4464 = []PersistentVolumeAccessMode{} - yyc4464 = true - } else if len(yyv4464) != 0 { - yyv4464 = yyv4464[:0] - yyc4464 = true - } - } else if yyl4464 > 0 { - var yyrr4464, yyrl4464 int - var yyrt4464 bool - if yyl4464 > cap(yyv4464) { - - yyrl4464, yyrt4464 = z.DecInferLen(yyl4464, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4464 { - if yyrl4464 <= cap(yyv4464) { - yyv4464 = yyv4464[:yyrl4464] - } else { - yyv4464 = make([]PersistentVolumeAccessMode, yyrl4464) - } - } else { - yyv4464 = make([]PersistentVolumeAccessMode, yyrl4464) - } - yyc4464 = true - yyrr4464 = len(yyv4464) - } else if yyl4464 != len(yyv4464) { - yyv4464 = yyv4464[:yyl4464] - yyc4464 = true - } - yyj4464 := 0 - for ; yyj4464 < yyrr4464; yyj4464++ { - yyh4464.ElemContainerState(yyj4464) - if r.TryDecodeAsNil() { - yyv4464[yyj4464] = "" - } else { - yyv4464[yyj4464] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - if yyrt4464 { - for ; yyj4464 < yyl4464; yyj4464++ { - yyv4464 = append(yyv4464, "") - yyh4464.ElemContainerState(yyj4464) - if r.TryDecodeAsNil() { - yyv4464[yyj4464] = "" - } else { - yyv4464[yyj4464] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - } - - } else { - yyj4464 := 0 - for ; !r.CheckBreak(); yyj4464++ { - - if yyj4464 >= len(yyv4464) { - yyv4464 = append(yyv4464, "") // var yyz4464 PersistentVolumeAccessMode - yyc4464 = true - } - yyh4464.ElemContainerState(yyj4464) - if yyj4464 < len(yyv4464) { - if r.TryDecodeAsNil() { - yyv4464[yyj4464] = "" - } else { - yyv4464[yyj4464] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4464 < len(yyv4464) { - yyv4464 = yyv4464[:yyj4464] - yyc4464 = true - } else if yyj4464 == 0 && yyv4464 == nil { - yyv4464 = []PersistentVolumeAccessMode{} - yyc4464 = true - } - } - yyh4464.End() - if yyc4464 { - *v = yyv4464 - } -} - -func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4468 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4469 := &yyv4468 - yy4469.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4470 := *v - yyh4470, yyl4470 := z.DecSliceHelperStart() - var yyc4470 bool - if yyl4470 == 0 { - if yyv4470 == nil { - yyv4470 = []PersistentVolume{} - yyc4470 = true - } else if len(yyv4470) != 0 { - yyv4470 = yyv4470[:0] - yyc4470 = true - } - } else if yyl4470 > 0 { - var yyrr4470, yyrl4470 int - var yyrt4470 bool - if yyl4470 > cap(yyv4470) { - - yyrg4470 := len(yyv4470) > 0 - yyv24470 := yyv4470 - yyrl4470, yyrt4470 = z.DecInferLen(yyl4470, z.DecBasicHandle().MaxInitLen, 480) - if yyrt4470 { - if yyrl4470 <= cap(yyv4470) { - yyv4470 = yyv4470[:yyrl4470] - } else { - yyv4470 = make([]PersistentVolume, yyrl4470) - } - } else { - yyv4470 = make([]PersistentVolume, yyrl4470) - } - yyc4470 = true - yyrr4470 = len(yyv4470) - if yyrg4470 { - copy(yyv4470, yyv24470) - } - } else if yyl4470 != len(yyv4470) { - yyv4470 = yyv4470[:yyl4470] - yyc4470 = true - } - yyj4470 := 0 - for ; yyj4470 < yyrr4470; yyj4470++ { - yyh4470.ElemContainerState(yyj4470) - if r.TryDecodeAsNil() { - yyv4470[yyj4470] = PersistentVolume{} - } else { - yyv4471 := &yyv4470[yyj4470] - yyv4471.CodecDecodeSelf(d) - } - - } - if yyrt4470 { - for ; yyj4470 < yyl4470; yyj4470++ { - yyv4470 = append(yyv4470, PersistentVolume{}) - yyh4470.ElemContainerState(yyj4470) - if r.TryDecodeAsNil() { - yyv4470[yyj4470] = PersistentVolume{} - } else { - yyv4472 := &yyv4470[yyj4470] - yyv4472.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4470 := 0 - for ; !r.CheckBreak(); yyj4470++ { - - if yyj4470 >= len(yyv4470) { - yyv4470 = append(yyv4470, PersistentVolume{}) // var yyz4470 PersistentVolume - yyc4470 = true - } - yyh4470.ElemContainerState(yyj4470) - if yyj4470 < len(yyv4470) { - if r.TryDecodeAsNil() { - yyv4470[yyj4470] = PersistentVolume{} - } else { - yyv4473 := &yyv4470[yyj4470] - yyv4473.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4470 < len(yyv4470) { - yyv4470 = yyv4470[:yyj4470] - yyc4470 = true - } else if yyj4470 == 0 && yyv4470 == nil { - yyv4470 = []PersistentVolume{} - yyc4470 = true - } - } - yyh4470.End() - if yyc4470 { - *v = yyv4470 - } -} - -func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4474 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4475 := &yyv4474 - yy4475.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4476 := *v - yyh4476, yyl4476 := z.DecSliceHelperStart() - var yyc4476 bool - if yyl4476 == 0 { - if yyv4476 == nil { - yyv4476 = []PersistentVolumeClaim{} - yyc4476 = true - } else if len(yyv4476) != 0 { - yyv4476 = yyv4476[:0] - yyc4476 = true - } - } else if yyl4476 > 0 { - var yyrr4476, yyrl4476 int - var yyrt4476 bool - if yyl4476 > cap(yyv4476) { - - yyrg4476 := len(yyv4476) > 0 - yyv24476 := yyv4476 - yyrl4476, yyrt4476 = z.DecInferLen(yyl4476, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4476 { - if yyrl4476 <= cap(yyv4476) { - yyv4476 = yyv4476[:yyrl4476] - } else { - yyv4476 = make([]PersistentVolumeClaim, yyrl4476) - } - } else { - yyv4476 = make([]PersistentVolumeClaim, yyrl4476) - } - yyc4476 = true - yyrr4476 = len(yyv4476) - if yyrg4476 { - copy(yyv4476, yyv24476) - } - } else if yyl4476 != len(yyv4476) { - yyv4476 = yyv4476[:yyl4476] - yyc4476 = true - } - yyj4476 := 0 - for ; yyj4476 < yyrr4476; yyj4476++ { - yyh4476.ElemContainerState(yyj4476) - if r.TryDecodeAsNil() { - yyv4476[yyj4476] = PersistentVolumeClaim{} - } else { - yyv4477 := &yyv4476[yyj4476] - yyv4477.CodecDecodeSelf(d) - } - - } - if yyrt4476 { - for ; yyj4476 < yyl4476; yyj4476++ { - yyv4476 = append(yyv4476, PersistentVolumeClaim{}) - yyh4476.ElemContainerState(yyj4476) - if r.TryDecodeAsNil() { - yyv4476[yyj4476] = PersistentVolumeClaim{} - } else { - yyv4478 := &yyv4476[yyj4476] - yyv4478.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4476 := 0 - for ; !r.CheckBreak(); yyj4476++ { - - if yyj4476 >= len(yyv4476) { - yyv4476 = append(yyv4476, PersistentVolumeClaim{}) // var yyz4476 PersistentVolumeClaim - yyc4476 = true - } - yyh4476.ElemContainerState(yyj4476) - if yyj4476 < len(yyv4476) { - if r.TryDecodeAsNil() { - yyv4476[yyj4476] = PersistentVolumeClaim{} - } else { - yyv4479 := &yyv4476[yyj4476] - yyv4479.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4476 < len(yyv4476) { - yyv4476 = yyv4476[:yyj4476] - yyc4476 = true - } else if yyj4476 == 0 && yyv4476 == nil { - yyv4476 = []PersistentVolumeClaim{} - yyc4476 = true - } - } - yyh4476.End() - if yyc4476 { - *v = yyv4476 - } -} - -func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4480 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4481 := &yyv4480 - yy4481.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4482 := *v - yyh4482, yyl4482 := z.DecSliceHelperStart() - var yyc4482 bool - if yyl4482 == 0 { - if yyv4482 == nil { - yyv4482 = []KeyToPath{} - yyc4482 = true - } else if len(yyv4482) != 0 { - yyv4482 = yyv4482[:0] - yyc4482 = true - } - } else if yyl4482 > 0 { - var yyrr4482, yyrl4482 int - var yyrt4482 bool - if yyl4482 > cap(yyv4482) { - - yyrg4482 := len(yyv4482) > 0 - yyv24482 := yyv4482 - yyrl4482, yyrt4482 = z.DecInferLen(yyl4482, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4482 { - if yyrl4482 <= cap(yyv4482) { - yyv4482 = yyv4482[:yyrl4482] - } else { - yyv4482 = make([]KeyToPath, yyrl4482) - } - } else { - yyv4482 = make([]KeyToPath, yyrl4482) - } - yyc4482 = true - yyrr4482 = len(yyv4482) - if yyrg4482 { - copy(yyv4482, yyv24482) - } - } else if yyl4482 != len(yyv4482) { - yyv4482 = yyv4482[:yyl4482] - yyc4482 = true - } - yyj4482 := 0 - for ; yyj4482 < yyrr4482; yyj4482++ { - yyh4482.ElemContainerState(yyj4482) - if r.TryDecodeAsNil() { - yyv4482[yyj4482] = KeyToPath{} - } else { - yyv4483 := &yyv4482[yyj4482] - yyv4483.CodecDecodeSelf(d) - } - - } - if yyrt4482 { - for ; yyj4482 < yyl4482; yyj4482++ { - yyv4482 = append(yyv4482, KeyToPath{}) - yyh4482.ElemContainerState(yyj4482) - if r.TryDecodeAsNil() { - yyv4482[yyj4482] = KeyToPath{} - } else { - yyv4484 := &yyv4482[yyj4482] - yyv4484.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4482 := 0 - for ; !r.CheckBreak(); yyj4482++ { - - if yyj4482 >= len(yyv4482) { - yyv4482 = append(yyv4482, KeyToPath{}) // var yyz4482 KeyToPath - yyc4482 = true - } - yyh4482.ElemContainerState(yyj4482) - if yyj4482 < len(yyv4482) { - if r.TryDecodeAsNil() { - yyv4482[yyj4482] = KeyToPath{} - } else { - yyv4485 := &yyv4482[yyj4482] - yyv4485.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4482 < len(yyv4482) { - yyv4482 = yyv4482[:yyj4482] - yyc4482 = true - } else if yyj4482 == 0 && yyv4482 == nil { - yyv4482 = []KeyToPath{} - yyc4482 = true - } - } - yyh4482.End() - if yyc4482 { - *v = yyv4482 - } -} - -func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4486 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4487 := &yyv4486 - yy4487.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFile, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4488 := *v - yyh4488, yyl4488 := z.DecSliceHelperStart() - var yyc4488 bool - if yyl4488 == 0 { - if yyv4488 == nil { - yyv4488 = []DownwardAPIVolumeFile{} - yyc4488 = true - } else if len(yyv4488) != 0 { - yyv4488 = yyv4488[:0] - yyc4488 = true - } - } else if yyl4488 > 0 { - var yyrr4488, yyrl4488 int - var yyrt4488 bool - if yyl4488 > cap(yyv4488) { - - yyrg4488 := len(yyv4488) > 0 - yyv24488 := yyv4488 - yyrl4488, yyrt4488 = z.DecInferLen(yyl4488, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4488 { - if yyrl4488 <= cap(yyv4488) { - yyv4488 = yyv4488[:yyrl4488] - } else { - yyv4488 = make([]DownwardAPIVolumeFile, yyrl4488) - } - } else { - yyv4488 = make([]DownwardAPIVolumeFile, yyrl4488) - } - yyc4488 = true - yyrr4488 = len(yyv4488) - if yyrg4488 { - copy(yyv4488, yyv24488) - } - } else if yyl4488 != len(yyv4488) { - yyv4488 = yyv4488[:yyl4488] - yyc4488 = true - } - yyj4488 := 0 - for ; yyj4488 < yyrr4488; yyj4488++ { - yyh4488.ElemContainerState(yyj4488) - if r.TryDecodeAsNil() { - yyv4488[yyj4488] = DownwardAPIVolumeFile{} - } else { - yyv4489 := &yyv4488[yyj4488] - yyv4489.CodecDecodeSelf(d) - } - - } - if yyrt4488 { - for ; yyj4488 < yyl4488; yyj4488++ { - yyv4488 = append(yyv4488, DownwardAPIVolumeFile{}) - yyh4488.ElemContainerState(yyj4488) - if r.TryDecodeAsNil() { - yyv4488[yyj4488] = DownwardAPIVolumeFile{} - } else { - yyv4490 := &yyv4488[yyj4488] - yyv4490.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4488 := 0 - for ; !r.CheckBreak(); yyj4488++ { - - if yyj4488 >= len(yyv4488) { - yyv4488 = append(yyv4488, DownwardAPIVolumeFile{}) // var yyz4488 DownwardAPIVolumeFile - yyc4488 = true - } - yyh4488.ElemContainerState(yyj4488) - if yyj4488 < len(yyv4488) { - if r.TryDecodeAsNil() { - yyv4488[yyj4488] = DownwardAPIVolumeFile{} - } else { - yyv4491 := &yyv4488[yyj4488] - yyv4491.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4488 < len(yyv4488) { - yyv4488 = yyv4488[:yyj4488] - yyc4488 = true - } else if yyj4488 == 0 && yyv4488 == nil { - yyv4488 = []DownwardAPIVolumeFile{} - yyc4488 = true - } - } - yyh4488.End() - if yyc4488 { - *v = yyv4488 - } -} - -func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4492 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4493 := &yyv4492 - yy4493.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4494 := *v - yyh4494, yyl4494 := z.DecSliceHelperStart() - var yyc4494 bool - if yyl4494 == 0 { - if yyv4494 == nil { - yyv4494 = []HTTPHeader{} - yyc4494 = true - } else if len(yyv4494) != 0 { - yyv4494 = yyv4494[:0] - yyc4494 = true - } - } else if yyl4494 > 0 { - var yyrr4494, yyrl4494 int - var yyrt4494 bool - if yyl4494 > cap(yyv4494) { - - yyrg4494 := len(yyv4494) > 0 - yyv24494 := yyv4494 - yyrl4494, yyrt4494 = z.DecInferLen(yyl4494, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4494 { - if yyrl4494 <= cap(yyv4494) { - yyv4494 = yyv4494[:yyrl4494] - } else { - yyv4494 = make([]HTTPHeader, yyrl4494) - } - } else { - yyv4494 = make([]HTTPHeader, yyrl4494) - } - yyc4494 = true - yyrr4494 = len(yyv4494) - if yyrg4494 { - copy(yyv4494, yyv24494) - } - } else if yyl4494 != len(yyv4494) { - yyv4494 = yyv4494[:yyl4494] - yyc4494 = true - } - yyj4494 := 0 - for ; yyj4494 < yyrr4494; yyj4494++ { - yyh4494.ElemContainerState(yyj4494) - if r.TryDecodeAsNil() { - yyv4494[yyj4494] = HTTPHeader{} - } else { - yyv4495 := &yyv4494[yyj4494] - yyv4495.CodecDecodeSelf(d) - } - - } - if yyrt4494 { - for ; yyj4494 < yyl4494; yyj4494++ { - yyv4494 = append(yyv4494, HTTPHeader{}) - yyh4494.ElemContainerState(yyj4494) - if r.TryDecodeAsNil() { - yyv4494[yyj4494] = HTTPHeader{} - } else { - yyv4496 := &yyv4494[yyj4494] - yyv4496.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4494 := 0 - for ; !r.CheckBreak(); yyj4494++ { - - if yyj4494 >= len(yyv4494) { - yyv4494 = append(yyv4494, HTTPHeader{}) // var yyz4494 HTTPHeader - yyc4494 = true - } - yyh4494.ElemContainerState(yyj4494) - if yyj4494 < len(yyv4494) { - if r.TryDecodeAsNil() { - yyv4494[yyj4494] = HTTPHeader{} - } else { - yyv4497 := &yyv4494[yyj4494] - yyv4497.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4494 < len(yyv4494) { - yyv4494 = yyv4494[:yyj4494] - yyc4494 = true - } else if yyj4494 == 0 && yyv4494 == nil { - yyv4494 = []HTTPHeader{} - yyc4494 = true - } - } - yyh4494.End() - if yyc4494 { - *v = yyv4494 - } -} - -func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4498 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4498.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4499 := *v - yyh4499, yyl4499 := z.DecSliceHelperStart() - var yyc4499 bool - if yyl4499 == 0 { - if yyv4499 == nil { - yyv4499 = []Capability{} - yyc4499 = true - } else if len(yyv4499) != 0 { - yyv4499 = yyv4499[:0] - yyc4499 = true - } - } else if yyl4499 > 0 { - var yyrr4499, yyrl4499 int - var yyrt4499 bool - if yyl4499 > cap(yyv4499) { - - yyrl4499, yyrt4499 = z.DecInferLen(yyl4499, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4499 { - if yyrl4499 <= cap(yyv4499) { - yyv4499 = yyv4499[:yyrl4499] - } else { - yyv4499 = make([]Capability, yyrl4499) - } - } else { - yyv4499 = make([]Capability, yyrl4499) - } - yyc4499 = true - yyrr4499 = len(yyv4499) - } else if yyl4499 != len(yyv4499) { - yyv4499 = yyv4499[:yyl4499] - yyc4499 = true - } - yyj4499 := 0 - for ; yyj4499 < yyrr4499; yyj4499++ { - yyh4499.ElemContainerState(yyj4499) - if r.TryDecodeAsNil() { - yyv4499[yyj4499] = "" - } else { - yyv4499[yyj4499] = Capability(r.DecodeString()) - } - - } - if yyrt4499 { - for ; yyj4499 < yyl4499; yyj4499++ { - yyv4499 = append(yyv4499, "") - yyh4499.ElemContainerState(yyj4499) - if r.TryDecodeAsNil() { - yyv4499[yyj4499] = "" - } else { - yyv4499[yyj4499] = Capability(r.DecodeString()) - } - - } - } - - } else { - yyj4499 := 0 - for ; !r.CheckBreak(); yyj4499++ { - - if yyj4499 >= len(yyv4499) { - yyv4499 = append(yyv4499, "") // var yyz4499 Capability - yyc4499 = true - } - yyh4499.ElemContainerState(yyj4499) - if yyj4499 < len(yyv4499) { - if r.TryDecodeAsNil() { - yyv4499[yyj4499] = "" - } else { - yyv4499[yyj4499] = Capability(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4499 < len(yyv4499) { - yyv4499 = yyv4499[:yyj4499] - yyc4499 = true - } else if yyj4499 == 0 && yyv4499 == nil { - yyv4499 = []Capability{} - yyc4499 = true - } - } - yyh4499.End() - if yyc4499 { - *v = yyv4499 - } -} - -func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4503 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4504 := &yyv4503 - yy4504.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4505 := *v - yyh4505, yyl4505 := z.DecSliceHelperStart() - var yyc4505 bool - if yyl4505 == 0 { - if yyv4505 == nil { - yyv4505 = []ContainerPort{} - yyc4505 = true - } else if len(yyv4505) != 0 { - yyv4505 = yyv4505[:0] - yyc4505 = true - } - } else if yyl4505 > 0 { - var yyrr4505, yyrl4505 int - var yyrt4505 bool - if yyl4505 > cap(yyv4505) { - - yyrg4505 := len(yyv4505) > 0 - yyv24505 := yyv4505 - yyrl4505, yyrt4505 = z.DecInferLen(yyl4505, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4505 { - if yyrl4505 <= cap(yyv4505) { - yyv4505 = yyv4505[:yyrl4505] - } else { - yyv4505 = make([]ContainerPort, yyrl4505) - } - } else { - yyv4505 = make([]ContainerPort, yyrl4505) - } - yyc4505 = true - yyrr4505 = len(yyv4505) - if yyrg4505 { - copy(yyv4505, yyv24505) - } - } else if yyl4505 != len(yyv4505) { - yyv4505 = yyv4505[:yyl4505] - yyc4505 = true - } - yyj4505 := 0 - for ; yyj4505 < yyrr4505; yyj4505++ { - yyh4505.ElemContainerState(yyj4505) - if r.TryDecodeAsNil() { - yyv4505[yyj4505] = ContainerPort{} - } else { - yyv4506 := &yyv4505[yyj4505] - yyv4506.CodecDecodeSelf(d) - } - - } - if yyrt4505 { - for ; yyj4505 < yyl4505; yyj4505++ { - yyv4505 = append(yyv4505, ContainerPort{}) - yyh4505.ElemContainerState(yyj4505) - if r.TryDecodeAsNil() { - yyv4505[yyj4505] = ContainerPort{} - } else { - yyv4507 := &yyv4505[yyj4505] - yyv4507.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4505 := 0 - for ; !r.CheckBreak(); yyj4505++ { - - if yyj4505 >= len(yyv4505) { - yyv4505 = append(yyv4505, ContainerPort{}) // var yyz4505 ContainerPort - yyc4505 = true - } - yyh4505.ElemContainerState(yyj4505) - if yyj4505 < len(yyv4505) { - if r.TryDecodeAsNil() { - yyv4505[yyj4505] = ContainerPort{} - } else { - yyv4508 := &yyv4505[yyj4505] - yyv4508.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4505 < len(yyv4505) { - yyv4505 = yyv4505[:yyj4505] - yyc4505 = true - } else if yyj4505 == 0 && yyv4505 == nil { - yyv4505 = []ContainerPort{} - yyc4505 = true - } - } - yyh4505.End() - if yyc4505 { - *v = yyv4505 - } -} - -func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4509 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4510 := &yyv4509 - yy4510.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4511 := *v - yyh4511, yyl4511 := z.DecSliceHelperStart() - var yyc4511 bool - if yyl4511 == 0 { - if yyv4511 == nil { - yyv4511 = []EnvVar{} - yyc4511 = true - } else if len(yyv4511) != 0 { - yyv4511 = yyv4511[:0] - yyc4511 = true - } - } else if yyl4511 > 0 { - var yyrr4511, yyrl4511 int - var yyrt4511 bool - if yyl4511 > cap(yyv4511) { - - yyrg4511 := len(yyv4511) > 0 - yyv24511 := yyv4511 - yyrl4511, yyrt4511 = z.DecInferLen(yyl4511, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4511 { - if yyrl4511 <= cap(yyv4511) { - yyv4511 = yyv4511[:yyrl4511] - } else { - yyv4511 = make([]EnvVar, yyrl4511) - } - } else { - yyv4511 = make([]EnvVar, yyrl4511) - } - yyc4511 = true - yyrr4511 = len(yyv4511) - if yyrg4511 { - copy(yyv4511, yyv24511) - } - } else if yyl4511 != len(yyv4511) { - yyv4511 = yyv4511[:yyl4511] - yyc4511 = true - } - yyj4511 := 0 - for ; yyj4511 < yyrr4511; yyj4511++ { - yyh4511.ElemContainerState(yyj4511) - if r.TryDecodeAsNil() { - yyv4511[yyj4511] = EnvVar{} - } else { - yyv4512 := &yyv4511[yyj4511] - yyv4512.CodecDecodeSelf(d) - } - - } - if yyrt4511 { - for ; yyj4511 < yyl4511; yyj4511++ { - yyv4511 = append(yyv4511, EnvVar{}) - yyh4511.ElemContainerState(yyj4511) - if r.TryDecodeAsNil() { - yyv4511[yyj4511] = EnvVar{} - } else { - yyv4513 := &yyv4511[yyj4511] - yyv4513.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4511 := 0 - for ; !r.CheckBreak(); yyj4511++ { - - if yyj4511 >= len(yyv4511) { - yyv4511 = append(yyv4511, EnvVar{}) // var yyz4511 EnvVar - yyc4511 = true - } - yyh4511.ElemContainerState(yyj4511) - if yyj4511 < len(yyv4511) { - if r.TryDecodeAsNil() { - yyv4511[yyj4511] = EnvVar{} - } else { - yyv4514 := &yyv4511[yyj4511] - yyv4514.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4511 < len(yyv4511) { - yyv4511 = yyv4511[:yyj4511] - yyc4511 = true - } else if yyj4511 == 0 && yyv4511 == nil { - yyv4511 = []EnvVar{} - yyc4511 = true - } - } - yyh4511.End() - if yyc4511 { - *v = yyv4511 - } -} - -func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4515 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4516 := &yyv4515 - yy4516.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4517 := *v yyh4517, yyl4517 := z.DecSliceHelperStart() var yyc4517 bool if yyl4517 == 0 { if yyv4517 == nil { - yyv4517 = []VolumeMount{} + yyv4517 = []PersistentVolumeAccessMode{} yyc4517 = true } else if len(yyv4517) != 0 { yyv4517 = yyv4517[:0] @@ -56454,23 +56134,18 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco var yyrt4517 bool if yyl4517 > cap(yyv4517) { - yyrg4517 := len(yyv4517) > 0 - yyv24517 := yyv4517 - yyrl4517, yyrt4517 = z.DecInferLen(yyl4517, z.DecBasicHandle().MaxInitLen, 56) + yyrl4517, yyrt4517 = z.DecInferLen(yyl4517, z.DecBasicHandle().MaxInitLen, 16) if yyrt4517 { if yyrl4517 <= cap(yyv4517) { yyv4517 = yyv4517[:yyrl4517] } else { - yyv4517 = make([]VolumeMount, yyrl4517) + yyv4517 = make([]PersistentVolumeAccessMode, yyrl4517) } } else { - yyv4517 = make([]VolumeMount, yyrl4517) + yyv4517 = make([]PersistentVolumeAccessMode, yyrl4517) } yyc4517 = true yyrr4517 = len(yyv4517) - if yyrg4517 { - copy(yyv4517, yyv24517) - } } else if yyl4517 != len(yyv4517) { yyv4517 = yyv4517[:yyl4517] yyc4517 = true @@ -56479,22 +56154,20 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco for ; yyj4517 < yyrr4517; yyj4517++ { yyh4517.ElemContainerState(yyj4517) if r.TryDecodeAsNil() { - yyv4517[yyj4517] = VolumeMount{} + yyv4517[yyj4517] = "" } else { - yyv4518 := &yyv4517[yyj4517] - yyv4518.CodecDecodeSelf(d) + yyv4517[yyj4517] = PersistentVolumeAccessMode(r.DecodeString()) } } if yyrt4517 { for ; yyj4517 < yyl4517; yyj4517++ { - yyv4517 = append(yyv4517, VolumeMount{}) + yyv4517 = append(yyv4517, "") yyh4517.ElemContainerState(yyj4517) if r.TryDecodeAsNil() { - yyv4517[yyj4517] = VolumeMount{} + yyv4517[yyj4517] = "" } else { - yyv4519 := &yyv4517[yyj4517] - yyv4519.CodecDecodeSelf(d) + yyv4517[yyj4517] = PersistentVolumeAccessMode(r.DecodeString()) } } @@ -56505,16 +56178,15 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco for ; !r.CheckBreak(); yyj4517++ { if yyj4517 >= len(yyv4517) { - yyv4517 = append(yyv4517, VolumeMount{}) // var yyz4517 VolumeMount + yyv4517 = append(yyv4517, "") // var yyz4517 PersistentVolumeAccessMode yyc4517 = true } yyh4517.ElemContainerState(yyj4517) if yyj4517 < len(yyv4517) { if r.TryDecodeAsNil() { - yyv4517[yyj4517] = VolumeMount{} + yyv4517[yyj4517] = "" } else { - yyv4520 := &yyv4517[yyj4517] - yyv4520.CodecDecodeSelf(d) + yyv4517[yyj4517] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -56526,7 +56198,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco yyv4517 = yyv4517[:yyj4517] yyc4517 = true } else if yyj4517 == 0 && yyv4517 == nil { - yyv4517 = []VolumeMount{} + yyv4517 = []PersistentVolumeAccessMode{} yyc4517 = true } } @@ -56536,7 +56208,7 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } -func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -56549,7 +56221,7 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -56559,7 +56231,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { var yyc4523 bool if yyl4523 == 0 { if yyv4523 == nil { - yyv4523 = []Pod{} + yyv4523 = []PersistentVolume{} yyc4523 = true } else if len(yyv4523) != 0 { yyv4523 = yyv4523[:0] @@ -56572,15 +56244,15 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { yyrg4523 := len(yyv4523) > 0 yyv24523 := yyv4523 - yyrl4523, yyrt4523 = z.DecInferLen(yyl4523, z.DecBasicHandle().MaxInitLen, 640) + yyrl4523, yyrt4523 = z.DecInferLen(yyl4523, z.DecBasicHandle().MaxInitLen, 488) if yyrt4523 { if yyrl4523 <= cap(yyv4523) { yyv4523 = yyv4523[:yyrl4523] } else { - yyv4523 = make([]Pod, yyrl4523) + yyv4523 = make([]PersistentVolume, yyrl4523) } } else { - yyv4523 = make([]Pod, yyrl4523) + yyv4523 = make([]PersistentVolume, yyrl4523) } yyc4523 = true yyrr4523 = len(yyv4523) @@ -56595,7 +56267,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { for ; yyj4523 < yyrr4523; yyj4523++ { yyh4523.ElemContainerState(yyj4523) if r.TryDecodeAsNil() { - yyv4523[yyj4523] = Pod{} + yyv4523[yyj4523] = PersistentVolume{} } else { yyv4524 := &yyv4523[yyj4523] yyv4524.CodecDecodeSelf(d) @@ -56604,10 +56276,10 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } if yyrt4523 { for ; yyj4523 < yyl4523; yyj4523++ { - yyv4523 = append(yyv4523, Pod{}) + yyv4523 = append(yyv4523, PersistentVolume{}) yyh4523.ElemContainerState(yyj4523) if r.TryDecodeAsNil() { - yyv4523[yyj4523] = Pod{} + yyv4523[yyj4523] = PersistentVolume{} } else { yyv4525 := &yyv4523[yyj4523] yyv4525.CodecDecodeSelf(d) @@ -56621,13 +56293,13 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { for ; !r.CheckBreak(); yyj4523++ { if yyj4523 >= len(yyv4523) { - yyv4523 = append(yyv4523, Pod{}) // var yyz4523 Pod + yyv4523 = append(yyv4523, PersistentVolume{}) // var yyz4523 PersistentVolume yyc4523 = true } yyh4523.ElemContainerState(yyj4523) if yyj4523 < len(yyv4523) { if r.TryDecodeAsNil() { - yyv4523[yyj4523] = Pod{} + yyv4523[yyj4523] = PersistentVolume{} } else { yyv4526 := &yyv4523[yyj4523] yyv4526.CodecDecodeSelf(d) @@ -56642,7 +56314,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { yyv4523 = yyv4523[:yyj4523] yyc4523 = true } else if yyj4523 == 0 && yyv4523 == nil { - yyv4523 = []Pod{} + yyv4523 = []PersistentVolume{} yyc4523 = true } } @@ -56652,7 +56324,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } -func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -56665,7 +56337,7 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -56675,7 +56347,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code var yyc4529 bool if yyl4529 == 0 { if yyv4529 == nil { - yyv4529 = []NodeSelectorTerm{} + yyv4529 = []PersistentVolumeClaim{} yyc4529 = true } else if len(yyv4529) != 0 { yyv4529 = yyv4529[:0] @@ -56688,15 +56360,15 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code yyrg4529 := len(yyv4529) > 0 yyv24529 := yyv4529 - yyrl4529, yyrt4529 = z.DecInferLen(yyl4529, z.DecBasicHandle().MaxInitLen, 24) + yyrl4529, yyrt4529 = z.DecInferLen(yyl4529, z.DecBasicHandle().MaxInitLen, 368) if yyrt4529 { if yyrl4529 <= cap(yyv4529) { yyv4529 = yyv4529[:yyrl4529] } else { - yyv4529 = make([]NodeSelectorTerm, yyrl4529) + yyv4529 = make([]PersistentVolumeClaim, yyrl4529) } } else { - yyv4529 = make([]NodeSelectorTerm, yyrl4529) + yyv4529 = make([]PersistentVolumeClaim, yyrl4529) } yyc4529 = true yyrr4529 = len(yyv4529) @@ -56711,7 +56383,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code for ; yyj4529 < yyrr4529; yyj4529++ { yyh4529.ElemContainerState(yyj4529) if r.TryDecodeAsNil() { - yyv4529[yyj4529] = NodeSelectorTerm{} + yyv4529[yyj4529] = PersistentVolumeClaim{} } else { yyv4530 := &yyv4529[yyj4529] yyv4530.CodecDecodeSelf(d) @@ -56720,10 +56392,10 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } if yyrt4529 { for ; yyj4529 < yyl4529; yyj4529++ { - yyv4529 = append(yyv4529, NodeSelectorTerm{}) + yyv4529 = append(yyv4529, PersistentVolumeClaim{}) yyh4529.ElemContainerState(yyj4529) if r.TryDecodeAsNil() { - yyv4529[yyj4529] = NodeSelectorTerm{} + yyv4529[yyj4529] = PersistentVolumeClaim{} } else { yyv4531 := &yyv4529[yyj4529] yyv4531.CodecDecodeSelf(d) @@ -56737,13 +56409,13 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code for ; !r.CheckBreak(); yyj4529++ { if yyj4529 >= len(yyv4529) { - yyv4529 = append(yyv4529, NodeSelectorTerm{}) // var yyz4529 NodeSelectorTerm + yyv4529 = append(yyv4529, PersistentVolumeClaim{}) // var yyz4529 PersistentVolumeClaim yyc4529 = true } yyh4529.ElemContainerState(yyj4529) if yyj4529 < len(yyv4529) { if r.TryDecodeAsNil() { - yyv4529[yyj4529] = NodeSelectorTerm{} + yyv4529[yyj4529] = PersistentVolumeClaim{} } else { yyv4532 := &yyv4529[yyj4529] yyv4532.CodecDecodeSelf(d) @@ -56758,7 +56430,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code yyv4529 = yyv4529[:yyj4529] yyc4529 = true } else if yyj4529 == 0 && yyv4529 == nil { - yyv4529 = []NodeSelectorTerm{} + yyv4529 = []PersistentVolumeClaim{} yyc4529 = true } } @@ -56768,7 +56440,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } -func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequirement, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -56781,7 +56453,7 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequirement, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -56791,7 +56463,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir var yyc4535 bool if yyl4535 == 0 { if yyv4535 == nil { - yyv4535 = []NodeSelectorRequirement{} + yyv4535 = []KeyToPath{} yyc4535 = true } else if len(yyv4535) != 0 { yyv4535 = yyv4535[:0] @@ -56804,15 +56476,15 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir yyrg4535 := len(yyv4535) > 0 yyv24535 := yyv4535 - yyrl4535, yyrt4535 = z.DecInferLen(yyl4535, z.DecBasicHandle().MaxInitLen, 56) + yyrl4535, yyrt4535 = z.DecInferLen(yyl4535, z.DecBasicHandle().MaxInitLen, 40) if yyrt4535 { if yyrl4535 <= cap(yyv4535) { yyv4535 = yyv4535[:yyrl4535] } else { - yyv4535 = make([]NodeSelectorRequirement, yyrl4535) + yyv4535 = make([]KeyToPath, yyrl4535) } } else { - yyv4535 = make([]NodeSelectorRequirement, yyrl4535) + yyv4535 = make([]KeyToPath, yyrl4535) } yyc4535 = true yyrr4535 = len(yyv4535) @@ -56827,7 +56499,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir for ; yyj4535 < yyrr4535; yyj4535++ { yyh4535.ElemContainerState(yyj4535) if r.TryDecodeAsNil() { - yyv4535[yyj4535] = NodeSelectorRequirement{} + yyv4535[yyj4535] = KeyToPath{} } else { yyv4536 := &yyv4535[yyj4535] yyv4536.CodecDecodeSelf(d) @@ -56836,10 +56508,10 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } if yyrt4535 { for ; yyj4535 < yyl4535; yyj4535++ { - yyv4535 = append(yyv4535, NodeSelectorRequirement{}) + yyv4535 = append(yyv4535, KeyToPath{}) yyh4535.ElemContainerState(yyj4535) if r.TryDecodeAsNil() { - yyv4535[yyj4535] = NodeSelectorRequirement{} + yyv4535[yyj4535] = KeyToPath{} } else { yyv4537 := &yyv4535[yyj4535] yyv4537.CodecDecodeSelf(d) @@ -56853,13 +56525,13 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir for ; !r.CheckBreak(); yyj4535++ { if yyj4535 >= len(yyv4535) { - yyv4535 = append(yyv4535, NodeSelectorRequirement{}) // var yyz4535 NodeSelectorRequirement + yyv4535 = append(yyv4535, KeyToPath{}) // var yyz4535 KeyToPath yyc4535 = true } yyh4535.ElemContainerState(yyj4535) if yyj4535 < len(yyv4535) { if r.TryDecodeAsNil() { - yyv4535[yyj4535] = NodeSelectorRequirement{} + yyv4535[yyj4535] = KeyToPath{} } else { yyv4538 := &yyv4535[yyj4535] yyv4538.CodecDecodeSelf(d) @@ -56874,7 +56546,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir yyv4535 = yyv4535[:yyj4535] yyc4535 = true } else if yyj4535 == 0 && yyv4535 == nil { - yyv4535 = []NodeSelectorRequirement{} + yyv4535 = []KeyToPath{} yyc4535 = true } } @@ -56884,7 +56556,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } -func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -56897,7 +56569,7 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFile, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -56907,7 +56579,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 var yyc4541 bool if yyl4541 == 0 { if yyv4541 == nil { - yyv4541 = []PodAffinityTerm{} + yyv4541 = []DownwardAPIVolumeFile{} yyc4541 = true } else if len(yyv4541) != 0 { yyv4541 = yyv4541[:0] @@ -56920,15 +56592,15 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 yyrg4541 := len(yyv4541) > 0 yyv24541 := yyv4541 - yyrl4541, yyrt4541 = z.DecInferLen(yyl4541, z.DecBasicHandle().MaxInitLen, 48) + yyrl4541, yyrt4541 = z.DecInferLen(yyl4541, z.DecBasicHandle().MaxInitLen, 40) if yyrt4541 { if yyrl4541 <= cap(yyv4541) { yyv4541 = yyv4541[:yyrl4541] } else { - yyv4541 = make([]PodAffinityTerm, yyrl4541) + yyv4541 = make([]DownwardAPIVolumeFile, yyrl4541) } } else { - yyv4541 = make([]PodAffinityTerm, yyrl4541) + yyv4541 = make([]DownwardAPIVolumeFile, yyrl4541) } yyc4541 = true yyrr4541 = len(yyv4541) @@ -56943,7 +56615,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 for ; yyj4541 < yyrr4541; yyj4541++ { yyh4541.ElemContainerState(yyj4541) if r.TryDecodeAsNil() { - yyv4541[yyj4541] = PodAffinityTerm{} + yyv4541[yyj4541] = DownwardAPIVolumeFile{} } else { yyv4542 := &yyv4541[yyj4541] yyv4542.CodecDecodeSelf(d) @@ -56952,10 +56624,10 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } if yyrt4541 { for ; yyj4541 < yyl4541; yyj4541++ { - yyv4541 = append(yyv4541, PodAffinityTerm{}) + yyv4541 = append(yyv4541, DownwardAPIVolumeFile{}) yyh4541.ElemContainerState(yyj4541) if r.TryDecodeAsNil() { - yyv4541[yyj4541] = PodAffinityTerm{} + yyv4541[yyj4541] = DownwardAPIVolumeFile{} } else { yyv4543 := &yyv4541[yyj4541] yyv4543.CodecDecodeSelf(d) @@ -56969,13 +56641,13 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 for ; !r.CheckBreak(); yyj4541++ { if yyj4541 >= len(yyv4541) { - yyv4541 = append(yyv4541, PodAffinityTerm{}) // var yyz4541 PodAffinityTerm + yyv4541 = append(yyv4541, DownwardAPIVolumeFile{}) // var yyz4541 DownwardAPIVolumeFile yyc4541 = true } yyh4541.ElemContainerState(yyj4541) if yyj4541 < len(yyv4541) { if r.TryDecodeAsNil() { - yyv4541[yyj4541] = PodAffinityTerm{} + yyv4541[yyj4541] = DownwardAPIVolumeFile{} } else { yyv4544 := &yyv4541[yyj4541] yyv4544.CodecDecodeSelf(d) @@ -56990,7 +56662,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 yyv4541 = yyv4541[:yyj4541] yyc4541 = true } else if yyj4541 == 0 && yyv4541 == nil { - yyv4541 = []PodAffinityTerm{} + yyv4541 = []DownwardAPIVolumeFile{} yyc4541 = true } } @@ -57000,7 +56672,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } -func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinityTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -57013,7 +56685,7 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinityTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -57023,7 +56695,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit var yyc4547 bool if yyl4547 == 0 { if yyv4547 == nil { - yyv4547 = []WeightedPodAffinityTerm{} + yyv4547 = []HTTPHeader{} yyc4547 = true } else if len(yyv4547) != 0 { yyv4547 = yyv4547[:0] @@ -57036,15 +56708,15 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit yyrg4547 := len(yyv4547) > 0 yyv24547 := yyv4547 - yyrl4547, yyrt4547 = z.DecInferLen(yyl4547, z.DecBasicHandle().MaxInitLen, 56) + yyrl4547, yyrt4547 = z.DecInferLen(yyl4547, z.DecBasicHandle().MaxInitLen, 32) if yyrt4547 { if yyrl4547 <= cap(yyv4547) { yyv4547 = yyv4547[:yyrl4547] } else { - yyv4547 = make([]WeightedPodAffinityTerm, yyrl4547) + yyv4547 = make([]HTTPHeader, yyrl4547) } } else { - yyv4547 = make([]WeightedPodAffinityTerm, yyrl4547) + yyv4547 = make([]HTTPHeader, yyrl4547) } yyc4547 = true yyrr4547 = len(yyv4547) @@ -57059,7 +56731,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit for ; yyj4547 < yyrr4547; yyj4547++ { yyh4547.ElemContainerState(yyj4547) if r.TryDecodeAsNil() { - yyv4547[yyj4547] = WeightedPodAffinityTerm{} + yyv4547[yyj4547] = HTTPHeader{} } else { yyv4548 := &yyv4547[yyj4547] yyv4548.CodecDecodeSelf(d) @@ -57068,10 +56740,10 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } if yyrt4547 { for ; yyj4547 < yyl4547; yyj4547++ { - yyv4547 = append(yyv4547, WeightedPodAffinityTerm{}) + yyv4547 = append(yyv4547, HTTPHeader{}) yyh4547.ElemContainerState(yyj4547) if r.TryDecodeAsNil() { - yyv4547[yyj4547] = WeightedPodAffinityTerm{} + yyv4547[yyj4547] = HTTPHeader{} } else { yyv4549 := &yyv4547[yyj4547] yyv4549.CodecDecodeSelf(d) @@ -57085,13 +56757,13 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit for ; !r.CheckBreak(); yyj4547++ { if yyj4547 >= len(yyv4547) { - yyv4547 = append(yyv4547, WeightedPodAffinityTerm{}) // var yyz4547 WeightedPodAffinityTerm + yyv4547 = append(yyv4547, HTTPHeader{}) // var yyz4547 HTTPHeader yyc4547 = true } yyh4547.ElemContainerState(yyj4547) if yyj4547 < len(yyv4547) { if r.TryDecodeAsNil() { - yyv4547[yyj4547] = WeightedPodAffinityTerm{} + yyv4547[yyj4547] = HTTPHeader{} } else { yyv4550 := &yyv4547[yyj4547] yyv4550.CodecDecodeSelf(d) @@ -57106,7 +56778,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit yyv4547 = yyv4547[:yyj4547] yyc4547 = true } else if yyj4547 == 0 && yyv4547 == nil { - yyv4547 = []WeightedPodAffinityTerm{} + yyv4547 = []HTTPHeader{} yyc4547 = true } } @@ -57116,15 +56788,1050 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } -func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredSchedulingTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4551 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4552 := &yyv4551 - yy4552.CodecEncodeSelf(e) + yyv4551.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4552 := *v + yyh4552, yyl4552 := z.DecSliceHelperStart() + var yyc4552 bool + if yyl4552 == 0 { + if yyv4552 == nil { + yyv4552 = []Capability{} + yyc4552 = true + } else if len(yyv4552) != 0 { + yyv4552 = yyv4552[:0] + yyc4552 = true + } + } else if yyl4552 > 0 { + var yyrr4552, yyrl4552 int + var yyrt4552 bool + if yyl4552 > cap(yyv4552) { + + yyrl4552, yyrt4552 = z.DecInferLen(yyl4552, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4552 { + if yyrl4552 <= cap(yyv4552) { + yyv4552 = yyv4552[:yyrl4552] + } else { + yyv4552 = make([]Capability, yyrl4552) + } + } else { + yyv4552 = make([]Capability, yyrl4552) + } + yyc4552 = true + yyrr4552 = len(yyv4552) + } else if yyl4552 != len(yyv4552) { + yyv4552 = yyv4552[:yyl4552] + yyc4552 = true + } + yyj4552 := 0 + for ; yyj4552 < yyrr4552; yyj4552++ { + yyh4552.ElemContainerState(yyj4552) + if r.TryDecodeAsNil() { + yyv4552[yyj4552] = "" + } else { + yyv4552[yyj4552] = Capability(r.DecodeString()) + } + + } + if yyrt4552 { + for ; yyj4552 < yyl4552; yyj4552++ { + yyv4552 = append(yyv4552, "") + yyh4552.ElemContainerState(yyj4552) + if r.TryDecodeAsNil() { + yyv4552[yyj4552] = "" + } else { + yyv4552[yyj4552] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj4552 := 0 + for ; !r.CheckBreak(); yyj4552++ { + + if yyj4552 >= len(yyv4552) { + yyv4552 = append(yyv4552, "") // var yyz4552 Capability + yyc4552 = true + } + yyh4552.ElemContainerState(yyj4552) + if yyj4552 < len(yyv4552) { + if r.TryDecodeAsNil() { + yyv4552[yyj4552] = "" + } else { + yyv4552[yyj4552] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4552 < len(yyv4552) { + yyv4552 = yyv4552[:yyj4552] + yyc4552 = true + } else if yyj4552 == 0 && yyv4552 == nil { + yyv4552 = []Capability{} + yyc4552 = true + } + } + yyh4552.End() + if yyc4552 { + *v = yyv4552 + } +} + +func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4556 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4557 := &yyv4556 + yy4557.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4558 := *v + yyh4558, yyl4558 := z.DecSliceHelperStart() + var yyc4558 bool + if yyl4558 == 0 { + if yyv4558 == nil { + yyv4558 = []ContainerPort{} + yyc4558 = true + } else if len(yyv4558) != 0 { + yyv4558 = yyv4558[:0] + yyc4558 = true + } + } else if yyl4558 > 0 { + var yyrr4558, yyrl4558 int + var yyrt4558 bool + if yyl4558 > cap(yyv4558) { + + yyrg4558 := len(yyv4558) > 0 + yyv24558 := yyv4558 + yyrl4558, yyrt4558 = z.DecInferLen(yyl4558, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4558 { + if yyrl4558 <= cap(yyv4558) { + yyv4558 = yyv4558[:yyrl4558] + } else { + yyv4558 = make([]ContainerPort, yyrl4558) + } + } else { + yyv4558 = make([]ContainerPort, yyrl4558) + } + yyc4558 = true + yyrr4558 = len(yyv4558) + if yyrg4558 { + copy(yyv4558, yyv24558) + } + } else if yyl4558 != len(yyv4558) { + yyv4558 = yyv4558[:yyl4558] + yyc4558 = true + } + yyj4558 := 0 + for ; yyj4558 < yyrr4558; yyj4558++ { + yyh4558.ElemContainerState(yyj4558) + if r.TryDecodeAsNil() { + yyv4558[yyj4558] = ContainerPort{} + } else { + yyv4559 := &yyv4558[yyj4558] + yyv4559.CodecDecodeSelf(d) + } + + } + if yyrt4558 { + for ; yyj4558 < yyl4558; yyj4558++ { + yyv4558 = append(yyv4558, ContainerPort{}) + yyh4558.ElemContainerState(yyj4558) + if r.TryDecodeAsNil() { + yyv4558[yyj4558] = ContainerPort{} + } else { + yyv4560 := &yyv4558[yyj4558] + yyv4560.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4558 := 0 + for ; !r.CheckBreak(); yyj4558++ { + + if yyj4558 >= len(yyv4558) { + yyv4558 = append(yyv4558, ContainerPort{}) // var yyz4558 ContainerPort + yyc4558 = true + } + yyh4558.ElemContainerState(yyj4558) + if yyj4558 < len(yyv4558) { + if r.TryDecodeAsNil() { + yyv4558[yyj4558] = ContainerPort{} + } else { + yyv4561 := &yyv4558[yyj4558] + yyv4561.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4558 < len(yyv4558) { + yyv4558 = yyv4558[:yyj4558] + yyc4558 = true + } else if yyj4558 == 0 && yyv4558 == nil { + yyv4558 = []ContainerPort{} + yyc4558 = true + } + } + yyh4558.End() + if yyc4558 { + *v = yyv4558 + } +} + +func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4562 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4563 := &yyv4562 + yy4563.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4564 := *v + yyh4564, yyl4564 := z.DecSliceHelperStart() + var yyc4564 bool + if yyl4564 == 0 { + if yyv4564 == nil { + yyv4564 = []EnvVar{} + yyc4564 = true + } else if len(yyv4564) != 0 { + yyv4564 = yyv4564[:0] + yyc4564 = true + } + } else if yyl4564 > 0 { + var yyrr4564, yyrl4564 int + var yyrt4564 bool + if yyl4564 > cap(yyv4564) { + + yyrg4564 := len(yyv4564) > 0 + yyv24564 := yyv4564 + yyrl4564, yyrt4564 = z.DecInferLen(yyl4564, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4564 { + if yyrl4564 <= cap(yyv4564) { + yyv4564 = yyv4564[:yyrl4564] + } else { + yyv4564 = make([]EnvVar, yyrl4564) + } + } else { + yyv4564 = make([]EnvVar, yyrl4564) + } + yyc4564 = true + yyrr4564 = len(yyv4564) + if yyrg4564 { + copy(yyv4564, yyv24564) + } + } else if yyl4564 != len(yyv4564) { + yyv4564 = yyv4564[:yyl4564] + yyc4564 = true + } + yyj4564 := 0 + for ; yyj4564 < yyrr4564; yyj4564++ { + yyh4564.ElemContainerState(yyj4564) + if r.TryDecodeAsNil() { + yyv4564[yyj4564] = EnvVar{} + } else { + yyv4565 := &yyv4564[yyj4564] + yyv4565.CodecDecodeSelf(d) + } + + } + if yyrt4564 { + for ; yyj4564 < yyl4564; yyj4564++ { + yyv4564 = append(yyv4564, EnvVar{}) + yyh4564.ElemContainerState(yyj4564) + if r.TryDecodeAsNil() { + yyv4564[yyj4564] = EnvVar{} + } else { + yyv4566 := &yyv4564[yyj4564] + yyv4566.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4564 := 0 + for ; !r.CheckBreak(); yyj4564++ { + + if yyj4564 >= len(yyv4564) { + yyv4564 = append(yyv4564, EnvVar{}) // var yyz4564 EnvVar + yyc4564 = true + } + yyh4564.ElemContainerState(yyj4564) + if yyj4564 < len(yyv4564) { + if r.TryDecodeAsNil() { + yyv4564[yyj4564] = EnvVar{} + } else { + yyv4567 := &yyv4564[yyj4564] + yyv4567.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4564 < len(yyv4564) { + yyv4564 = yyv4564[:yyj4564] + yyc4564 = true + } else if yyj4564 == 0 && yyv4564 == nil { + yyv4564 = []EnvVar{} + yyc4564 = true + } + } + yyh4564.End() + if yyc4564 { + *v = yyv4564 + } +} + +func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4568 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4569 := &yyv4568 + yy4569.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4570 := *v + yyh4570, yyl4570 := z.DecSliceHelperStart() + var yyc4570 bool + if yyl4570 == 0 { + if yyv4570 == nil { + yyv4570 = []VolumeMount{} + yyc4570 = true + } else if len(yyv4570) != 0 { + yyv4570 = yyv4570[:0] + yyc4570 = true + } + } else if yyl4570 > 0 { + var yyrr4570, yyrl4570 int + var yyrt4570 bool + if yyl4570 > cap(yyv4570) { + + yyrg4570 := len(yyv4570) > 0 + yyv24570 := yyv4570 + yyrl4570, yyrt4570 = z.DecInferLen(yyl4570, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4570 { + if yyrl4570 <= cap(yyv4570) { + yyv4570 = yyv4570[:yyrl4570] + } else { + yyv4570 = make([]VolumeMount, yyrl4570) + } + } else { + yyv4570 = make([]VolumeMount, yyrl4570) + } + yyc4570 = true + yyrr4570 = len(yyv4570) + if yyrg4570 { + copy(yyv4570, yyv24570) + } + } else if yyl4570 != len(yyv4570) { + yyv4570 = yyv4570[:yyl4570] + yyc4570 = true + } + yyj4570 := 0 + for ; yyj4570 < yyrr4570; yyj4570++ { + yyh4570.ElemContainerState(yyj4570) + if r.TryDecodeAsNil() { + yyv4570[yyj4570] = VolumeMount{} + } else { + yyv4571 := &yyv4570[yyj4570] + yyv4571.CodecDecodeSelf(d) + } + + } + if yyrt4570 { + for ; yyj4570 < yyl4570; yyj4570++ { + yyv4570 = append(yyv4570, VolumeMount{}) + yyh4570.ElemContainerState(yyj4570) + if r.TryDecodeAsNil() { + yyv4570[yyj4570] = VolumeMount{} + } else { + yyv4572 := &yyv4570[yyj4570] + yyv4572.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4570 := 0 + for ; !r.CheckBreak(); yyj4570++ { + + if yyj4570 >= len(yyv4570) { + yyv4570 = append(yyv4570, VolumeMount{}) // var yyz4570 VolumeMount + yyc4570 = true + } + yyh4570.ElemContainerState(yyj4570) + if yyj4570 < len(yyv4570) { + if r.TryDecodeAsNil() { + yyv4570[yyj4570] = VolumeMount{} + } else { + yyv4573 := &yyv4570[yyj4570] + yyv4573.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4570 < len(yyv4570) { + yyv4570 = yyv4570[:yyj4570] + yyc4570 = true + } else if yyj4570 == 0 && yyv4570 == nil { + yyv4570 = []VolumeMount{} + yyc4570 = true + } + } + yyh4570.End() + if yyc4570 { + *v = yyv4570 + } +} + +func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4574 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4575 := &yyv4574 + yy4575.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4576 := *v + yyh4576, yyl4576 := z.DecSliceHelperStart() + var yyc4576 bool + if yyl4576 == 0 { + if yyv4576 == nil { + yyv4576 = []Pod{} + yyc4576 = true + } else if len(yyv4576) != 0 { + yyv4576 = yyv4576[:0] + yyc4576 = true + } + } else if yyl4576 > 0 { + var yyrr4576, yyrl4576 int + var yyrt4576 bool + if yyl4576 > cap(yyv4576) { + + yyrg4576 := len(yyv4576) > 0 + yyv24576 := yyv4576 + yyrl4576, yyrt4576 = z.DecInferLen(yyl4576, z.DecBasicHandle().MaxInitLen, 640) + if yyrt4576 { + if yyrl4576 <= cap(yyv4576) { + yyv4576 = yyv4576[:yyrl4576] + } else { + yyv4576 = make([]Pod, yyrl4576) + } + } else { + yyv4576 = make([]Pod, yyrl4576) + } + yyc4576 = true + yyrr4576 = len(yyv4576) + if yyrg4576 { + copy(yyv4576, yyv24576) + } + } else if yyl4576 != len(yyv4576) { + yyv4576 = yyv4576[:yyl4576] + yyc4576 = true + } + yyj4576 := 0 + for ; yyj4576 < yyrr4576; yyj4576++ { + yyh4576.ElemContainerState(yyj4576) + if r.TryDecodeAsNil() { + yyv4576[yyj4576] = Pod{} + } else { + yyv4577 := &yyv4576[yyj4576] + yyv4577.CodecDecodeSelf(d) + } + + } + if yyrt4576 { + for ; yyj4576 < yyl4576; yyj4576++ { + yyv4576 = append(yyv4576, Pod{}) + yyh4576.ElemContainerState(yyj4576) + if r.TryDecodeAsNil() { + yyv4576[yyj4576] = Pod{} + } else { + yyv4578 := &yyv4576[yyj4576] + yyv4578.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4576 := 0 + for ; !r.CheckBreak(); yyj4576++ { + + if yyj4576 >= len(yyv4576) { + yyv4576 = append(yyv4576, Pod{}) // var yyz4576 Pod + yyc4576 = true + } + yyh4576.ElemContainerState(yyj4576) + if yyj4576 < len(yyv4576) { + if r.TryDecodeAsNil() { + yyv4576[yyj4576] = Pod{} + } else { + yyv4579 := &yyv4576[yyj4576] + yyv4579.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4576 < len(yyv4576) { + yyv4576 = yyv4576[:yyj4576] + yyc4576 = true + } else if yyj4576 == 0 && yyv4576 == nil { + yyv4576 = []Pod{} + yyc4576 = true + } + } + yyh4576.End() + if yyc4576 { + *v = yyv4576 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4580 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4581 := &yyv4580 + yy4581.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4582 := *v + yyh4582, yyl4582 := z.DecSliceHelperStart() + var yyc4582 bool + if yyl4582 == 0 { + if yyv4582 == nil { + yyv4582 = []NodeSelectorTerm{} + yyc4582 = true + } else if len(yyv4582) != 0 { + yyv4582 = yyv4582[:0] + yyc4582 = true + } + } else if yyl4582 > 0 { + var yyrr4582, yyrl4582 int + var yyrt4582 bool + if yyl4582 > cap(yyv4582) { + + yyrg4582 := len(yyv4582) > 0 + yyv24582 := yyv4582 + yyrl4582, yyrt4582 = z.DecInferLen(yyl4582, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4582 { + if yyrl4582 <= cap(yyv4582) { + yyv4582 = yyv4582[:yyrl4582] + } else { + yyv4582 = make([]NodeSelectorTerm, yyrl4582) + } + } else { + yyv4582 = make([]NodeSelectorTerm, yyrl4582) + } + yyc4582 = true + yyrr4582 = len(yyv4582) + if yyrg4582 { + copy(yyv4582, yyv24582) + } + } else if yyl4582 != len(yyv4582) { + yyv4582 = yyv4582[:yyl4582] + yyc4582 = true + } + yyj4582 := 0 + for ; yyj4582 < yyrr4582; yyj4582++ { + yyh4582.ElemContainerState(yyj4582) + if r.TryDecodeAsNil() { + yyv4582[yyj4582] = NodeSelectorTerm{} + } else { + yyv4583 := &yyv4582[yyj4582] + yyv4583.CodecDecodeSelf(d) + } + + } + if yyrt4582 { + for ; yyj4582 < yyl4582; yyj4582++ { + yyv4582 = append(yyv4582, NodeSelectorTerm{}) + yyh4582.ElemContainerState(yyj4582) + if r.TryDecodeAsNil() { + yyv4582[yyj4582] = NodeSelectorTerm{} + } else { + yyv4584 := &yyv4582[yyj4582] + yyv4584.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4582 := 0 + for ; !r.CheckBreak(); yyj4582++ { + + if yyj4582 >= len(yyv4582) { + yyv4582 = append(yyv4582, NodeSelectorTerm{}) // var yyz4582 NodeSelectorTerm + yyc4582 = true + } + yyh4582.ElemContainerState(yyj4582) + if yyj4582 < len(yyv4582) { + if r.TryDecodeAsNil() { + yyv4582[yyj4582] = NodeSelectorTerm{} + } else { + yyv4585 := &yyv4582[yyj4582] + yyv4585.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4582 < len(yyv4582) { + yyv4582 = yyv4582[:yyj4582] + yyc4582 = true + } else if yyj4582 == 0 && yyv4582 == nil { + yyv4582 = []NodeSelectorTerm{} + yyc4582 = true + } + } + yyh4582.End() + if yyc4582 { + *v = yyv4582 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequirement, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4586 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4587 := &yyv4586 + yy4587.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequirement, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4588 := *v + yyh4588, yyl4588 := z.DecSliceHelperStart() + var yyc4588 bool + if yyl4588 == 0 { + if yyv4588 == nil { + yyv4588 = []NodeSelectorRequirement{} + yyc4588 = true + } else if len(yyv4588) != 0 { + yyv4588 = yyv4588[:0] + yyc4588 = true + } + } else if yyl4588 > 0 { + var yyrr4588, yyrl4588 int + var yyrt4588 bool + if yyl4588 > cap(yyv4588) { + + yyrg4588 := len(yyv4588) > 0 + yyv24588 := yyv4588 + yyrl4588, yyrt4588 = z.DecInferLen(yyl4588, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4588 { + if yyrl4588 <= cap(yyv4588) { + yyv4588 = yyv4588[:yyrl4588] + } else { + yyv4588 = make([]NodeSelectorRequirement, yyrl4588) + } + } else { + yyv4588 = make([]NodeSelectorRequirement, yyrl4588) + } + yyc4588 = true + yyrr4588 = len(yyv4588) + if yyrg4588 { + copy(yyv4588, yyv24588) + } + } else if yyl4588 != len(yyv4588) { + yyv4588 = yyv4588[:yyl4588] + yyc4588 = true + } + yyj4588 := 0 + for ; yyj4588 < yyrr4588; yyj4588++ { + yyh4588.ElemContainerState(yyj4588) + if r.TryDecodeAsNil() { + yyv4588[yyj4588] = NodeSelectorRequirement{} + } else { + yyv4589 := &yyv4588[yyj4588] + yyv4589.CodecDecodeSelf(d) + } + + } + if yyrt4588 { + for ; yyj4588 < yyl4588; yyj4588++ { + yyv4588 = append(yyv4588, NodeSelectorRequirement{}) + yyh4588.ElemContainerState(yyj4588) + if r.TryDecodeAsNil() { + yyv4588[yyj4588] = NodeSelectorRequirement{} + } else { + yyv4590 := &yyv4588[yyj4588] + yyv4590.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4588 := 0 + for ; !r.CheckBreak(); yyj4588++ { + + if yyj4588 >= len(yyv4588) { + yyv4588 = append(yyv4588, NodeSelectorRequirement{}) // var yyz4588 NodeSelectorRequirement + yyc4588 = true + } + yyh4588.ElemContainerState(yyj4588) + if yyj4588 < len(yyv4588) { + if r.TryDecodeAsNil() { + yyv4588[yyj4588] = NodeSelectorRequirement{} + } else { + yyv4591 := &yyv4588[yyj4588] + yyv4591.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4588 < len(yyv4588) { + yyv4588 = yyv4588[:yyj4588] + yyc4588 = true + } else if yyj4588 == 0 && yyv4588 == nil { + yyv4588 = []NodeSelectorRequirement{} + yyc4588 = true + } + } + yyh4588.End() + if yyc4588 { + *v = yyv4588 + } +} + +func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4592 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4593 := &yyv4592 + yy4593.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4594 := *v + yyh4594, yyl4594 := z.DecSliceHelperStart() + var yyc4594 bool + if yyl4594 == 0 { + if yyv4594 == nil { + yyv4594 = []PodAffinityTerm{} + yyc4594 = true + } else if len(yyv4594) != 0 { + yyv4594 = yyv4594[:0] + yyc4594 = true + } + } else if yyl4594 > 0 { + var yyrr4594, yyrl4594 int + var yyrt4594 bool + if yyl4594 > cap(yyv4594) { + + yyrg4594 := len(yyv4594) > 0 + yyv24594 := yyv4594 + yyrl4594, yyrt4594 = z.DecInferLen(yyl4594, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4594 { + if yyrl4594 <= cap(yyv4594) { + yyv4594 = yyv4594[:yyrl4594] + } else { + yyv4594 = make([]PodAffinityTerm, yyrl4594) + } + } else { + yyv4594 = make([]PodAffinityTerm, yyrl4594) + } + yyc4594 = true + yyrr4594 = len(yyv4594) + if yyrg4594 { + copy(yyv4594, yyv24594) + } + } else if yyl4594 != len(yyv4594) { + yyv4594 = yyv4594[:yyl4594] + yyc4594 = true + } + yyj4594 := 0 + for ; yyj4594 < yyrr4594; yyj4594++ { + yyh4594.ElemContainerState(yyj4594) + if r.TryDecodeAsNil() { + yyv4594[yyj4594] = PodAffinityTerm{} + } else { + yyv4595 := &yyv4594[yyj4594] + yyv4595.CodecDecodeSelf(d) + } + + } + if yyrt4594 { + for ; yyj4594 < yyl4594; yyj4594++ { + yyv4594 = append(yyv4594, PodAffinityTerm{}) + yyh4594.ElemContainerState(yyj4594) + if r.TryDecodeAsNil() { + yyv4594[yyj4594] = PodAffinityTerm{} + } else { + yyv4596 := &yyv4594[yyj4594] + yyv4596.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4594 := 0 + for ; !r.CheckBreak(); yyj4594++ { + + if yyj4594 >= len(yyv4594) { + yyv4594 = append(yyv4594, PodAffinityTerm{}) // var yyz4594 PodAffinityTerm + yyc4594 = true + } + yyh4594.ElemContainerState(yyj4594) + if yyj4594 < len(yyv4594) { + if r.TryDecodeAsNil() { + yyv4594[yyj4594] = PodAffinityTerm{} + } else { + yyv4597 := &yyv4594[yyj4594] + yyv4597.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4594 < len(yyv4594) { + yyv4594 = yyv4594[:yyj4594] + yyc4594 = true + } else if yyj4594 == 0 && yyv4594 == nil { + yyv4594 = []PodAffinityTerm{} + yyc4594 = true + } + } + yyh4594.End() + if yyc4594 { + *v = yyv4594 + } +} + +func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinityTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4598 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4599 := &yyv4598 + yy4599.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinityTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4600 := *v + yyh4600, yyl4600 := z.DecSliceHelperStart() + var yyc4600 bool + if yyl4600 == 0 { + if yyv4600 == nil { + yyv4600 = []WeightedPodAffinityTerm{} + yyc4600 = true + } else if len(yyv4600) != 0 { + yyv4600 = yyv4600[:0] + yyc4600 = true + } + } else if yyl4600 > 0 { + var yyrr4600, yyrl4600 int + var yyrt4600 bool + if yyl4600 > cap(yyv4600) { + + yyrg4600 := len(yyv4600) > 0 + yyv24600 := yyv4600 + yyrl4600, yyrt4600 = z.DecInferLen(yyl4600, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4600 { + if yyrl4600 <= cap(yyv4600) { + yyv4600 = yyv4600[:yyrl4600] + } else { + yyv4600 = make([]WeightedPodAffinityTerm, yyrl4600) + } + } else { + yyv4600 = make([]WeightedPodAffinityTerm, yyrl4600) + } + yyc4600 = true + yyrr4600 = len(yyv4600) + if yyrg4600 { + copy(yyv4600, yyv24600) + } + } else if yyl4600 != len(yyv4600) { + yyv4600 = yyv4600[:yyl4600] + yyc4600 = true + } + yyj4600 := 0 + for ; yyj4600 < yyrr4600; yyj4600++ { + yyh4600.ElemContainerState(yyj4600) + if r.TryDecodeAsNil() { + yyv4600[yyj4600] = WeightedPodAffinityTerm{} + } else { + yyv4601 := &yyv4600[yyj4600] + yyv4601.CodecDecodeSelf(d) + } + + } + if yyrt4600 { + for ; yyj4600 < yyl4600; yyj4600++ { + yyv4600 = append(yyv4600, WeightedPodAffinityTerm{}) + yyh4600.ElemContainerState(yyj4600) + if r.TryDecodeAsNil() { + yyv4600[yyj4600] = WeightedPodAffinityTerm{} + } else { + yyv4602 := &yyv4600[yyj4600] + yyv4602.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4600 := 0 + for ; !r.CheckBreak(); yyj4600++ { + + if yyj4600 >= len(yyv4600) { + yyv4600 = append(yyv4600, WeightedPodAffinityTerm{}) // var yyz4600 WeightedPodAffinityTerm + yyc4600 = true + } + yyh4600.ElemContainerState(yyj4600) + if yyj4600 < len(yyv4600) { + if r.TryDecodeAsNil() { + yyv4600[yyj4600] = WeightedPodAffinityTerm{} + } else { + yyv4603 := &yyv4600[yyj4600] + yyv4603.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4600 < len(yyv4600) { + yyv4600 = yyv4600[:yyj4600] + yyc4600 = true + } else if yyj4600 == 0 && yyv4600 == nil { + yyv4600 = []WeightedPodAffinityTerm{} + yyc4600 = true + } + } + yyh4600.End() + if yyc4600 { + *v = yyv4600 + } +} + +func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredSchedulingTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4604 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4605 := &yyv4604 + yy4605.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57134,83 +57841,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4553 := *v - yyh4553, yyl4553 := z.DecSliceHelperStart() - var yyc4553 bool - if yyl4553 == 0 { - if yyv4553 == nil { - yyv4553 = []PreferredSchedulingTerm{} - yyc4553 = true - } else if len(yyv4553) != 0 { - yyv4553 = yyv4553[:0] - yyc4553 = true + yyv4606 := *v + yyh4606, yyl4606 := z.DecSliceHelperStart() + var yyc4606 bool + if yyl4606 == 0 { + if yyv4606 == nil { + yyv4606 = []PreferredSchedulingTerm{} + yyc4606 = true + } else if len(yyv4606) != 0 { + yyv4606 = yyv4606[:0] + yyc4606 = true } - } else if yyl4553 > 0 { - var yyrr4553, yyrl4553 int - var yyrt4553 bool - if yyl4553 > cap(yyv4553) { + } else if yyl4606 > 0 { + var yyrr4606, yyrl4606 int + var yyrt4606 bool + if yyl4606 > cap(yyv4606) { - yyrg4553 := len(yyv4553) > 0 - yyv24553 := yyv4553 - yyrl4553, yyrt4553 = z.DecInferLen(yyl4553, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4553 { - if yyrl4553 <= cap(yyv4553) { - yyv4553 = yyv4553[:yyrl4553] + yyrg4606 := len(yyv4606) > 0 + yyv24606 := yyv4606 + yyrl4606, yyrt4606 = z.DecInferLen(yyl4606, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4606 { + if yyrl4606 <= cap(yyv4606) { + yyv4606 = yyv4606[:yyrl4606] } else { - yyv4553 = make([]PreferredSchedulingTerm, yyrl4553) + yyv4606 = make([]PreferredSchedulingTerm, yyrl4606) } } else { - yyv4553 = make([]PreferredSchedulingTerm, yyrl4553) + yyv4606 = make([]PreferredSchedulingTerm, yyrl4606) } - yyc4553 = true - yyrr4553 = len(yyv4553) - if yyrg4553 { - copy(yyv4553, yyv24553) + yyc4606 = true + yyrr4606 = len(yyv4606) + if yyrg4606 { + copy(yyv4606, yyv24606) } - } else if yyl4553 != len(yyv4553) { - yyv4553 = yyv4553[:yyl4553] - yyc4553 = true + } else if yyl4606 != len(yyv4606) { + yyv4606 = yyv4606[:yyl4606] + yyc4606 = true } - yyj4553 := 0 - for ; yyj4553 < yyrr4553; yyj4553++ { - yyh4553.ElemContainerState(yyj4553) + yyj4606 := 0 + for ; yyj4606 < yyrr4606; yyj4606++ { + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4553[yyj4553] = PreferredSchedulingTerm{} + yyv4606[yyj4606] = PreferredSchedulingTerm{} } else { - yyv4554 := &yyv4553[yyj4553] - yyv4554.CodecDecodeSelf(d) + yyv4607 := &yyv4606[yyj4606] + yyv4607.CodecDecodeSelf(d) } } - if yyrt4553 { - for ; yyj4553 < yyl4553; yyj4553++ { - yyv4553 = append(yyv4553, PreferredSchedulingTerm{}) - yyh4553.ElemContainerState(yyj4553) + if yyrt4606 { + for ; yyj4606 < yyl4606; yyj4606++ { + yyv4606 = append(yyv4606, PreferredSchedulingTerm{}) + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4553[yyj4553] = PreferredSchedulingTerm{} + yyv4606[yyj4606] = PreferredSchedulingTerm{} } else { - yyv4555 := &yyv4553[yyj4553] - yyv4555.CodecDecodeSelf(d) + yyv4608 := &yyv4606[yyj4606] + yyv4608.CodecDecodeSelf(d) } } } } else { - yyj4553 := 0 - for ; !r.CheckBreak(); yyj4553++ { + yyj4606 := 0 + for ; !r.CheckBreak(); yyj4606++ { - if yyj4553 >= len(yyv4553) { - yyv4553 = append(yyv4553, PreferredSchedulingTerm{}) // var yyz4553 PreferredSchedulingTerm - yyc4553 = true + if yyj4606 >= len(yyv4606) { + yyv4606 = append(yyv4606, PreferredSchedulingTerm{}) // var yyz4606 PreferredSchedulingTerm + yyc4606 = true } - yyh4553.ElemContainerState(yyj4553) - if yyj4553 < len(yyv4553) { + yyh4606.ElemContainerState(yyj4606) + if yyj4606 < len(yyv4606) { if r.TryDecodeAsNil() { - yyv4553[yyj4553] = PreferredSchedulingTerm{} + yyv4606[yyj4606] = PreferredSchedulingTerm{} } else { - yyv4556 := &yyv4553[yyj4553] - yyv4556.CodecDecodeSelf(d) + yyv4609 := &yyv4606[yyj4606] + yyv4609.CodecDecodeSelf(d) } } else { @@ -57218,17 +57925,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4553 < len(yyv4553) { - yyv4553 = yyv4553[:yyj4553] - yyc4553 = true - } else if yyj4553 == 0 && yyv4553 == nil { - yyv4553 = []PreferredSchedulingTerm{} - yyc4553 = true + if yyj4606 < len(yyv4606) { + yyv4606 = yyv4606[:yyj4606] + yyc4606 = true + } else if yyj4606 == 0 && yyv4606 == nil { + yyv4606 = []PreferredSchedulingTerm{} + yyc4606 = true } } - yyh4553.End() - if yyc4553 { - *v = yyv4553 + yyh4606.End() + if yyc4606 { + *v = yyv4606 } } @@ -57237,10 +57944,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4557 := range v { + for _, yyv4610 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4558 := &yyv4557 - yy4558.CodecEncodeSelf(e) + yy4611 := &yyv4610 + yy4611.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57250,83 +57957,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4559 := *v - yyh4559, yyl4559 := z.DecSliceHelperStart() - var yyc4559 bool - if yyl4559 == 0 { - if yyv4559 == nil { - yyv4559 = []Volume{} - yyc4559 = true - } else if len(yyv4559) != 0 { - yyv4559 = yyv4559[:0] - yyc4559 = true + yyv4612 := *v + yyh4612, yyl4612 := z.DecSliceHelperStart() + var yyc4612 bool + if yyl4612 == 0 { + if yyv4612 == nil { + yyv4612 = []Volume{} + yyc4612 = true + } else if len(yyv4612) != 0 { + yyv4612 = yyv4612[:0] + yyc4612 = true } - } else if yyl4559 > 0 { - var yyrr4559, yyrl4559 int - var yyrt4559 bool - if yyl4559 > cap(yyv4559) { + } else if yyl4612 > 0 { + var yyrr4612, yyrl4612 int + var yyrt4612 bool + if yyl4612 > cap(yyv4612) { - yyrg4559 := len(yyv4559) > 0 - yyv24559 := yyv4559 - yyrl4559, yyrt4559 = z.DecInferLen(yyl4559, z.DecBasicHandle().MaxInitLen, 184) - if yyrt4559 { - if yyrl4559 <= cap(yyv4559) { - yyv4559 = yyv4559[:yyrl4559] + yyrg4612 := len(yyv4612) > 0 + yyv24612 := yyv4612 + yyrl4612, yyrt4612 = z.DecInferLen(yyl4612, z.DecBasicHandle().MaxInitLen, 192) + if yyrt4612 { + if yyrl4612 <= cap(yyv4612) { + yyv4612 = yyv4612[:yyrl4612] } else { - yyv4559 = make([]Volume, yyrl4559) + yyv4612 = make([]Volume, yyrl4612) } } else { - yyv4559 = make([]Volume, yyrl4559) + yyv4612 = make([]Volume, yyrl4612) } - yyc4559 = true - yyrr4559 = len(yyv4559) - if yyrg4559 { - copy(yyv4559, yyv24559) + yyc4612 = true + yyrr4612 = len(yyv4612) + if yyrg4612 { + copy(yyv4612, yyv24612) } - } else if yyl4559 != len(yyv4559) { - yyv4559 = yyv4559[:yyl4559] - yyc4559 = true + } else if yyl4612 != len(yyv4612) { + yyv4612 = yyv4612[:yyl4612] + yyc4612 = true } - yyj4559 := 0 - for ; yyj4559 < yyrr4559; yyj4559++ { - yyh4559.ElemContainerState(yyj4559) + yyj4612 := 0 + for ; yyj4612 < yyrr4612; yyj4612++ { + yyh4612.ElemContainerState(yyj4612) if r.TryDecodeAsNil() { - yyv4559[yyj4559] = Volume{} + yyv4612[yyj4612] = Volume{} } else { - yyv4560 := &yyv4559[yyj4559] - yyv4560.CodecDecodeSelf(d) + yyv4613 := &yyv4612[yyj4612] + yyv4613.CodecDecodeSelf(d) } } - if yyrt4559 { - for ; yyj4559 < yyl4559; yyj4559++ { - yyv4559 = append(yyv4559, Volume{}) - yyh4559.ElemContainerState(yyj4559) + if yyrt4612 { + for ; yyj4612 < yyl4612; yyj4612++ { + yyv4612 = append(yyv4612, Volume{}) + yyh4612.ElemContainerState(yyj4612) if r.TryDecodeAsNil() { - yyv4559[yyj4559] = Volume{} + yyv4612[yyj4612] = Volume{} } else { - yyv4561 := &yyv4559[yyj4559] - yyv4561.CodecDecodeSelf(d) + yyv4614 := &yyv4612[yyj4612] + yyv4614.CodecDecodeSelf(d) } } } } else { - yyj4559 := 0 - for ; !r.CheckBreak(); yyj4559++ { + yyj4612 := 0 + for ; !r.CheckBreak(); yyj4612++ { - if yyj4559 >= len(yyv4559) { - yyv4559 = append(yyv4559, Volume{}) // var yyz4559 Volume - yyc4559 = true + if yyj4612 >= len(yyv4612) { + yyv4612 = append(yyv4612, Volume{}) // var yyz4612 Volume + yyc4612 = true } - yyh4559.ElemContainerState(yyj4559) - if yyj4559 < len(yyv4559) { + yyh4612.ElemContainerState(yyj4612) + if yyj4612 < len(yyv4612) { if r.TryDecodeAsNil() { - yyv4559[yyj4559] = Volume{} + yyv4612[yyj4612] = Volume{} } else { - yyv4562 := &yyv4559[yyj4559] - yyv4562.CodecDecodeSelf(d) + yyv4615 := &yyv4612[yyj4612] + yyv4615.CodecDecodeSelf(d) } } else { @@ -57334,17 +58041,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4559 < len(yyv4559) { - yyv4559 = yyv4559[:yyj4559] - yyc4559 = true - } else if yyj4559 == 0 && yyv4559 == nil { - yyv4559 = []Volume{} - yyc4559 = true + if yyj4612 < len(yyv4612) { + yyv4612 = yyv4612[:yyj4612] + yyc4612 = true + } else if yyj4612 == 0 && yyv4612 == nil { + yyv4612 = []Volume{} + yyc4612 = true } } - yyh4559.End() - if yyc4559 { - *v = yyv4559 + yyh4612.End() + if yyc4612 { + *v = yyv4612 } } @@ -57353,10 +58060,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4563 := range v { + for _, yyv4616 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4564 := &yyv4563 - yy4564.CodecEncodeSelf(e) + yy4617 := &yyv4616 + yy4617.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57366,83 +58073,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4565 := *v - yyh4565, yyl4565 := z.DecSliceHelperStart() - var yyc4565 bool - if yyl4565 == 0 { - if yyv4565 == nil { - yyv4565 = []Container{} - yyc4565 = true - } else if len(yyv4565) != 0 { - yyv4565 = yyv4565[:0] - yyc4565 = true + yyv4618 := *v + yyh4618, yyl4618 := z.DecSliceHelperStart() + var yyc4618 bool + if yyl4618 == 0 { + if yyv4618 == nil { + yyv4618 = []Container{} + yyc4618 = true + } else if len(yyv4618) != 0 { + yyv4618 = yyv4618[:0] + yyc4618 = true } - } else if yyl4565 > 0 { - var yyrr4565, yyrl4565 int - var yyrt4565 bool - if yyl4565 > cap(yyv4565) { + } else if yyl4618 > 0 { + var yyrr4618, yyrl4618 int + var yyrt4618 bool + if yyl4618 > cap(yyv4618) { - yyrg4565 := len(yyv4565) > 0 - yyv24565 := yyv4565 - yyrl4565, yyrt4565 = z.DecInferLen(yyl4565, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4565 { - if yyrl4565 <= cap(yyv4565) { - yyv4565 = yyv4565[:yyrl4565] + yyrg4618 := len(yyv4618) > 0 + yyv24618 := yyv4618 + yyrl4618, yyrt4618 = z.DecInferLen(yyl4618, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4618 { + if yyrl4618 <= cap(yyv4618) { + yyv4618 = yyv4618[:yyrl4618] } else { - yyv4565 = make([]Container, yyrl4565) + yyv4618 = make([]Container, yyrl4618) } } else { - yyv4565 = make([]Container, yyrl4565) + yyv4618 = make([]Container, yyrl4618) } - yyc4565 = true - yyrr4565 = len(yyv4565) - if yyrg4565 { - copy(yyv4565, yyv24565) + yyc4618 = true + yyrr4618 = len(yyv4618) + if yyrg4618 { + copy(yyv4618, yyv24618) } - } else if yyl4565 != len(yyv4565) { - yyv4565 = yyv4565[:yyl4565] - yyc4565 = true + } else if yyl4618 != len(yyv4618) { + yyv4618 = yyv4618[:yyl4618] + yyc4618 = true } - yyj4565 := 0 - for ; yyj4565 < yyrr4565; yyj4565++ { - yyh4565.ElemContainerState(yyj4565) + yyj4618 := 0 + for ; yyj4618 < yyrr4618; yyj4618++ { + yyh4618.ElemContainerState(yyj4618) if r.TryDecodeAsNil() { - yyv4565[yyj4565] = Container{} + yyv4618[yyj4618] = Container{} } else { - yyv4566 := &yyv4565[yyj4565] - yyv4566.CodecDecodeSelf(d) + yyv4619 := &yyv4618[yyj4618] + yyv4619.CodecDecodeSelf(d) } } - if yyrt4565 { - for ; yyj4565 < yyl4565; yyj4565++ { - yyv4565 = append(yyv4565, Container{}) - yyh4565.ElemContainerState(yyj4565) + if yyrt4618 { + for ; yyj4618 < yyl4618; yyj4618++ { + yyv4618 = append(yyv4618, Container{}) + yyh4618.ElemContainerState(yyj4618) if r.TryDecodeAsNil() { - yyv4565[yyj4565] = Container{} + yyv4618[yyj4618] = Container{} } else { - yyv4567 := &yyv4565[yyj4565] - yyv4567.CodecDecodeSelf(d) + yyv4620 := &yyv4618[yyj4618] + yyv4620.CodecDecodeSelf(d) } } } } else { - yyj4565 := 0 - for ; !r.CheckBreak(); yyj4565++ { + yyj4618 := 0 + for ; !r.CheckBreak(); yyj4618++ { - if yyj4565 >= len(yyv4565) { - yyv4565 = append(yyv4565, Container{}) // var yyz4565 Container - yyc4565 = true + if yyj4618 >= len(yyv4618) { + yyv4618 = append(yyv4618, Container{}) // var yyz4618 Container + yyc4618 = true } - yyh4565.ElemContainerState(yyj4565) - if yyj4565 < len(yyv4565) { + yyh4618.ElemContainerState(yyj4618) + if yyj4618 < len(yyv4618) { if r.TryDecodeAsNil() { - yyv4565[yyj4565] = Container{} + yyv4618[yyj4618] = Container{} } else { - yyv4568 := &yyv4565[yyj4565] - yyv4568.CodecDecodeSelf(d) + yyv4621 := &yyv4618[yyj4618] + yyv4621.CodecDecodeSelf(d) } } else { @@ -57450,17 +58157,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4565 < len(yyv4565) { - yyv4565 = yyv4565[:yyj4565] - yyc4565 = true - } else if yyj4565 == 0 && yyv4565 == nil { - yyv4565 = []Container{} - yyc4565 = true + if yyj4618 < len(yyv4618) { + yyv4618 = yyv4618[:yyj4618] + yyc4618 = true + } else if yyj4618 == 0 && yyv4618 == nil { + yyv4618 = []Container{} + yyc4618 = true } } - yyh4565.End() - if yyc4565 { - *v = yyv4565 + yyh4618.End() + if yyc4618 { + *v = yyv4618 } } @@ -57469,10 +58176,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4569 := range v { + for _, yyv4622 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4570 := &yyv4569 - yy4570.CodecEncodeSelf(e) + yy4623 := &yyv4622 + yy4623.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57482,83 +58189,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4571 := *v - yyh4571, yyl4571 := z.DecSliceHelperStart() - var yyc4571 bool - if yyl4571 == 0 { - if yyv4571 == nil { - yyv4571 = []LocalObjectReference{} - yyc4571 = true - } else if len(yyv4571) != 0 { - yyv4571 = yyv4571[:0] - yyc4571 = true + yyv4624 := *v + yyh4624, yyl4624 := z.DecSliceHelperStart() + var yyc4624 bool + if yyl4624 == 0 { + if yyv4624 == nil { + yyv4624 = []LocalObjectReference{} + yyc4624 = true + } else if len(yyv4624) != 0 { + yyv4624 = yyv4624[:0] + yyc4624 = true } - } else if yyl4571 > 0 { - var yyrr4571, yyrl4571 int - var yyrt4571 bool - if yyl4571 > cap(yyv4571) { + } else if yyl4624 > 0 { + var yyrr4624, yyrl4624 int + var yyrt4624 bool + if yyl4624 > cap(yyv4624) { - yyrg4571 := len(yyv4571) > 0 - yyv24571 := yyv4571 - yyrl4571, yyrt4571 = z.DecInferLen(yyl4571, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4571 { - if yyrl4571 <= cap(yyv4571) { - yyv4571 = yyv4571[:yyrl4571] + yyrg4624 := len(yyv4624) > 0 + yyv24624 := yyv4624 + yyrl4624, yyrt4624 = z.DecInferLen(yyl4624, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4624 { + if yyrl4624 <= cap(yyv4624) { + yyv4624 = yyv4624[:yyrl4624] } else { - yyv4571 = make([]LocalObjectReference, yyrl4571) + yyv4624 = make([]LocalObjectReference, yyrl4624) } } else { - yyv4571 = make([]LocalObjectReference, yyrl4571) + yyv4624 = make([]LocalObjectReference, yyrl4624) } - yyc4571 = true - yyrr4571 = len(yyv4571) - if yyrg4571 { - copy(yyv4571, yyv24571) + yyc4624 = true + yyrr4624 = len(yyv4624) + if yyrg4624 { + copy(yyv4624, yyv24624) } - } else if yyl4571 != len(yyv4571) { - yyv4571 = yyv4571[:yyl4571] - yyc4571 = true + } else if yyl4624 != len(yyv4624) { + yyv4624 = yyv4624[:yyl4624] + yyc4624 = true } - yyj4571 := 0 - for ; yyj4571 < yyrr4571; yyj4571++ { - yyh4571.ElemContainerState(yyj4571) + yyj4624 := 0 + for ; yyj4624 < yyrr4624; yyj4624++ { + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4571[yyj4571] = LocalObjectReference{} + yyv4624[yyj4624] = LocalObjectReference{} } else { - yyv4572 := &yyv4571[yyj4571] - yyv4572.CodecDecodeSelf(d) + yyv4625 := &yyv4624[yyj4624] + yyv4625.CodecDecodeSelf(d) } } - if yyrt4571 { - for ; yyj4571 < yyl4571; yyj4571++ { - yyv4571 = append(yyv4571, LocalObjectReference{}) - yyh4571.ElemContainerState(yyj4571) + if yyrt4624 { + for ; yyj4624 < yyl4624; yyj4624++ { + yyv4624 = append(yyv4624, LocalObjectReference{}) + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4571[yyj4571] = LocalObjectReference{} + yyv4624[yyj4624] = LocalObjectReference{} } else { - yyv4573 := &yyv4571[yyj4571] - yyv4573.CodecDecodeSelf(d) + yyv4626 := &yyv4624[yyj4624] + yyv4626.CodecDecodeSelf(d) } } } } else { - yyj4571 := 0 - for ; !r.CheckBreak(); yyj4571++ { + yyj4624 := 0 + for ; !r.CheckBreak(); yyj4624++ { - if yyj4571 >= len(yyv4571) { - yyv4571 = append(yyv4571, LocalObjectReference{}) // var yyz4571 LocalObjectReference - yyc4571 = true + if yyj4624 >= len(yyv4624) { + yyv4624 = append(yyv4624, LocalObjectReference{}) // var yyz4624 LocalObjectReference + yyc4624 = true } - yyh4571.ElemContainerState(yyj4571) - if yyj4571 < len(yyv4571) { + yyh4624.ElemContainerState(yyj4624) + if yyj4624 < len(yyv4624) { if r.TryDecodeAsNil() { - yyv4571[yyj4571] = LocalObjectReference{} + yyv4624[yyj4624] = LocalObjectReference{} } else { - yyv4574 := &yyv4571[yyj4571] - yyv4574.CodecDecodeSelf(d) + yyv4627 := &yyv4624[yyj4624] + yyv4627.CodecDecodeSelf(d) } } else { @@ -57566,17 +58273,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4571 < len(yyv4571) { - yyv4571 = yyv4571[:yyj4571] - yyc4571 = true - } else if yyj4571 == 0 && yyv4571 == nil { - yyv4571 = []LocalObjectReference{} - yyc4571 = true + if yyj4624 < len(yyv4624) { + yyv4624 = yyv4624[:yyj4624] + yyc4624 = true + } else if yyj4624 == 0 && yyv4624 == nil { + yyv4624 = []LocalObjectReference{} + yyc4624 = true } } - yyh4571.End() - if yyc4571 { - *v = yyv4571 + yyh4624.End() + if yyc4624 { + *v = yyv4624 } } @@ -57585,10 +58292,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4575 := range v { + for _, yyv4628 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4576 := &yyv4575 - yy4576.CodecEncodeSelf(e) + yy4629 := &yyv4628 + yy4629.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57598,83 +58305,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4577 := *v - yyh4577, yyl4577 := z.DecSliceHelperStart() - var yyc4577 bool - if yyl4577 == 0 { - if yyv4577 == nil { - yyv4577 = []PodCondition{} - yyc4577 = true - } else if len(yyv4577) != 0 { - yyv4577 = yyv4577[:0] - yyc4577 = true + yyv4630 := *v + yyh4630, yyl4630 := z.DecSliceHelperStart() + var yyc4630 bool + if yyl4630 == 0 { + if yyv4630 == nil { + yyv4630 = []PodCondition{} + yyc4630 = true + } else if len(yyv4630) != 0 { + yyv4630 = yyv4630[:0] + yyc4630 = true } - } else if yyl4577 > 0 { - var yyrr4577, yyrl4577 int - var yyrt4577 bool - if yyl4577 > cap(yyv4577) { + } else if yyl4630 > 0 { + var yyrr4630, yyrl4630 int + var yyrt4630 bool + if yyl4630 > cap(yyv4630) { - yyrg4577 := len(yyv4577) > 0 - yyv24577 := yyv4577 - yyrl4577, yyrt4577 = z.DecInferLen(yyl4577, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4577 { - if yyrl4577 <= cap(yyv4577) { - yyv4577 = yyv4577[:yyrl4577] + yyrg4630 := len(yyv4630) > 0 + yyv24630 := yyv4630 + yyrl4630, yyrt4630 = z.DecInferLen(yyl4630, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4630 { + if yyrl4630 <= cap(yyv4630) { + yyv4630 = yyv4630[:yyrl4630] } else { - yyv4577 = make([]PodCondition, yyrl4577) + yyv4630 = make([]PodCondition, yyrl4630) } } else { - yyv4577 = make([]PodCondition, yyrl4577) + yyv4630 = make([]PodCondition, yyrl4630) } - yyc4577 = true - yyrr4577 = len(yyv4577) - if yyrg4577 { - copy(yyv4577, yyv24577) + yyc4630 = true + yyrr4630 = len(yyv4630) + if yyrg4630 { + copy(yyv4630, yyv24630) } - } else if yyl4577 != len(yyv4577) { - yyv4577 = yyv4577[:yyl4577] - yyc4577 = true + } else if yyl4630 != len(yyv4630) { + yyv4630 = yyv4630[:yyl4630] + yyc4630 = true } - yyj4577 := 0 - for ; yyj4577 < yyrr4577; yyj4577++ { - yyh4577.ElemContainerState(yyj4577) + yyj4630 := 0 + for ; yyj4630 < yyrr4630; yyj4630++ { + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4577[yyj4577] = PodCondition{} + yyv4630[yyj4630] = PodCondition{} } else { - yyv4578 := &yyv4577[yyj4577] - yyv4578.CodecDecodeSelf(d) + yyv4631 := &yyv4630[yyj4630] + yyv4631.CodecDecodeSelf(d) } } - if yyrt4577 { - for ; yyj4577 < yyl4577; yyj4577++ { - yyv4577 = append(yyv4577, PodCondition{}) - yyh4577.ElemContainerState(yyj4577) + if yyrt4630 { + for ; yyj4630 < yyl4630; yyj4630++ { + yyv4630 = append(yyv4630, PodCondition{}) + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4577[yyj4577] = PodCondition{} + yyv4630[yyj4630] = PodCondition{} } else { - yyv4579 := &yyv4577[yyj4577] - yyv4579.CodecDecodeSelf(d) + yyv4632 := &yyv4630[yyj4630] + yyv4632.CodecDecodeSelf(d) } } } } else { - yyj4577 := 0 - for ; !r.CheckBreak(); yyj4577++ { + yyj4630 := 0 + for ; !r.CheckBreak(); yyj4630++ { - if yyj4577 >= len(yyv4577) { - yyv4577 = append(yyv4577, PodCondition{}) // var yyz4577 PodCondition - yyc4577 = true + if yyj4630 >= len(yyv4630) { + yyv4630 = append(yyv4630, PodCondition{}) // var yyz4630 PodCondition + yyc4630 = true } - yyh4577.ElemContainerState(yyj4577) - if yyj4577 < len(yyv4577) { + yyh4630.ElemContainerState(yyj4630) + if yyj4630 < len(yyv4630) { if r.TryDecodeAsNil() { - yyv4577[yyj4577] = PodCondition{} + yyv4630[yyj4630] = PodCondition{} } else { - yyv4580 := &yyv4577[yyj4577] - yyv4580.CodecDecodeSelf(d) + yyv4633 := &yyv4630[yyj4630] + yyv4633.CodecDecodeSelf(d) } } else { @@ -57682,17 +58389,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4577 < len(yyv4577) { - yyv4577 = yyv4577[:yyj4577] - yyc4577 = true - } else if yyj4577 == 0 && yyv4577 == nil { - yyv4577 = []PodCondition{} - yyc4577 = true + if yyj4630 < len(yyv4630) { + yyv4630 = yyv4630[:yyj4630] + yyc4630 = true + } else if yyj4630 == 0 && yyv4630 == nil { + yyv4630 = []PodCondition{} + yyc4630 = true } } - yyh4577.End() - if yyc4577 { - *v = yyv4577 + yyh4630.End() + if yyc4630 { + *v = yyv4630 } } @@ -57701,10 +58408,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4581 := range v { + for _, yyv4634 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4582 := &yyv4581 - yy4582.CodecEncodeSelf(e) + yy4635 := &yyv4634 + yy4635.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57714,83 +58421,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4583 := *v - yyh4583, yyl4583 := z.DecSliceHelperStart() - var yyc4583 bool - if yyl4583 == 0 { - if yyv4583 == nil { - yyv4583 = []ContainerStatus{} - yyc4583 = true - } else if len(yyv4583) != 0 { - yyv4583 = yyv4583[:0] - yyc4583 = true + yyv4636 := *v + yyh4636, yyl4636 := z.DecSliceHelperStart() + var yyc4636 bool + if yyl4636 == 0 { + if yyv4636 == nil { + yyv4636 = []ContainerStatus{} + yyc4636 = true + } else if len(yyv4636) != 0 { + yyv4636 = yyv4636[:0] + yyc4636 = true } - } else if yyl4583 > 0 { - var yyrr4583, yyrl4583 int - var yyrt4583 bool - if yyl4583 > cap(yyv4583) { + } else if yyl4636 > 0 { + var yyrr4636, yyrl4636 int + var yyrt4636 bool + if yyl4636 > cap(yyv4636) { - yyrg4583 := len(yyv4583) > 0 - yyv24583 := yyv4583 - yyrl4583, yyrt4583 = z.DecInferLen(yyl4583, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4583 { - if yyrl4583 <= cap(yyv4583) { - yyv4583 = yyv4583[:yyrl4583] + yyrg4636 := len(yyv4636) > 0 + yyv24636 := yyv4636 + yyrl4636, yyrt4636 = z.DecInferLen(yyl4636, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4636 { + if yyrl4636 <= cap(yyv4636) { + yyv4636 = yyv4636[:yyrl4636] } else { - yyv4583 = make([]ContainerStatus, yyrl4583) + yyv4636 = make([]ContainerStatus, yyrl4636) } } else { - yyv4583 = make([]ContainerStatus, yyrl4583) + yyv4636 = make([]ContainerStatus, yyrl4636) } - yyc4583 = true - yyrr4583 = len(yyv4583) - if yyrg4583 { - copy(yyv4583, yyv24583) + yyc4636 = true + yyrr4636 = len(yyv4636) + if yyrg4636 { + copy(yyv4636, yyv24636) } - } else if yyl4583 != len(yyv4583) { - yyv4583 = yyv4583[:yyl4583] - yyc4583 = true + } else if yyl4636 != len(yyv4636) { + yyv4636 = yyv4636[:yyl4636] + yyc4636 = true } - yyj4583 := 0 - for ; yyj4583 < yyrr4583; yyj4583++ { - yyh4583.ElemContainerState(yyj4583) + yyj4636 := 0 + for ; yyj4636 < yyrr4636; yyj4636++ { + yyh4636.ElemContainerState(yyj4636) if r.TryDecodeAsNil() { - yyv4583[yyj4583] = ContainerStatus{} + yyv4636[yyj4636] = ContainerStatus{} } else { - yyv4584 := &yyv4583[yyj4583] - yyv4584.CodecDecodeSelf(d) + yyv4637 := &yyv4636[yyj4636] + yyv4637.CodecDecodeSelf(d) } } - if yyrt4583 { - for ; yyj4583 < yyl4583; yyj4583++ { - yyv4583 = append(yyv4583, ContainerStatus{}) - yyh4583.ElemContainerState(yyj4583) + if yyrt4636 { + for ; yyj4636 < yyl4636; yyj4636++ { + yyv4636 = append(yyv4636, ContainerStatus{}) + yyh4636.ElemContainerState(yyj4636) if r.TryDecodeAsNil() { - yyv4583[yyj4583] = ContainerStatus{} + yyv4636[yyj4636] = ContainerStatus{} } else { - yyv4585 := &yyv4583[yyj4583] - yyv4585.CodecDecodeSelf(d) + yyv4638 := &yyv4636[yyj4636] + yyv4638.CodecDecodeSelf(d) } } } } else { - yyj4583 := 0 - for ; !r.CheckBreak(); yyj4583++ { + yyj4636 := 0 + for ; !r.CheckBreak(); yyj4636++ { - if yyj4583 >= len(yyv4583) { - yyv4583 = append(yyv4583, ContainerStatus{}) // var yyz4583 ContainerStatus - yyc4583 = true + if yyj4636 >= len(yyv4636) { + yyv4636 = append(yyv4636, ContainerStatus{}) // var yyz4636 ContainerStatus + yyc4636 = true } - yyh4583.ElemContainerState(yyj4583) - if yyj4583 < len(yyv4583) { + yyh4636.ElemContainerState(yyj4636) + if yyj4636 < len(yyv4636) { if r.TryDecodeAsNil() { - yyv4583[yyj4583] = ContainerStatus{} + yyv4636[yyj4636] = ContainerStatus{} } else { - yyv4586 := &yyv4583[yyj4583] - yyv4586.CodecDecodeSelf(d) + yyv4639 := &yyv4636[yyj4636] + yyv4639.CodecDecodeSelf(d) } } else { @@ -57798,17 +58505,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4583 < len(yyv4583) { - yyv4583 = yyv4583[:yyj4583] - yyc4583 = true - } else if yyj4583 == 0 && yyv4583 == nil { - yyv4583 = []ContainerStatus{} - yyc4583 = true + if yyj4636 < len(yyv4636) { + yyv4636 = yyv4636[:yyj4636] + yyc4636 = true + } else if yyj4636 == 0 && yyv4636 == nil { + yyv4636 = []ContainerStatus{} + yyc4636 = true } } - yyh4583.End() - if yyc4583 { - *v = yyv4583 + yyh4636.End() + if yyc4636 { + *v = yyv4636 } } @@ -57817,10 +58524,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4587 := range v { + for _, yyv4640 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4588 := &yyv4587 - yy4588.CodecEncodeSelf(e) + yy4641 := &yyv4640 + yy4641.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57830,83 +58537,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4589 := *v - yyh4589, yyl4589 := z.DecSliceHelperStart() - var yyc4589 bool - if yyl4589 == 0 { - if yyv4589 == nil { - yyv4589 = []PodTemplate{} - yyc4589 = true - } else if len(yyv4589) != 0 { - yyv4589 = yyv4589[:0] - yyc4589 = true + yyv4642 := *v + yyh4642, yyl4642 := z.DecSliceHelperStart() + var yyc4642 bool + if yyl4642 == 0 { + if yyv4642 == nil { + yyv4642 = []PodTemplate{} + yyc4642 = true + } else if len(yyv4642) != 0 { + yyv4642 = yyv4642[:0] + yyc4642 = true } - } else if yyl4589 > 0 { - var yyrr4589, yyrl4589 int - var yyrt4589 bool - if yyl4589 > cap(yyv4589) { + } else if yyl4642 > 0 { + var yyrr4642, yyrl4642 int + var yyrt4642 bool + if yyl4642 > cap(yyv4642) { - yyrg4589 := len(yyv4589) > 0 - yyv24589 := yyv4589 - yyrl4589, yyrt4589 = z.DecInferLen(yyl4589, z.DecBasicHandle().MaxInitLen, 704) - if yyrt4589 { - if yyrl4589 <= cap(yyv4589) { - yyv4589 = yyv4589[:yyrl4589] + yyrg4642 := len(yyv4642) > 0 + yyv24642 := yyv4642 + yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 704) + if yyrt4642 { + if yyrl4642 <= cap(yyv4642) { + yyv4642 = yyv4642[:yyrl4642] } else { - yyv4589 = make([]PodTemplate, yyrl4589) + yyv4642 = make([]PodTemplate, yyrl4642) } } else { - yyv4589 = make([]PodTemplate, yyrl4589) + yyv4642 = make([]PodTemplate, yyrl4642) } - yyc4589 = true - yyrr4589 = len(yyv4589) - if yyrg4589 { - copy(yyv4589, yyv24589) + yyc4642 = true + yyrr4642 = len(yyv4642) + if yyrg4642 { + copy(yyv4642, yyv24642) } - } else if yyl4589 != len(yyv4589) { - yyv4589 = yyv4589[:yyl4589] - yyc4589 = true + } else if yyl4642 != len(yyv4642) { + yyv4642 = yyv4642[:yyl4642] + yyc4642 = true } - yyj4589 := 0 - for ; yyj4589 < yyrr4589; yyj4589++ { - yyh4589.ElemContainerState(yyj4589) + yyj4642 := 0 + for ; yyj4642 < yyrr4642; yyj4642++ { + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4589[yyj4589] = PodTemplate{} + yyv4642[yyj4642] = PodTemplate{} } else { - yyv4590 := &yyv4589[yyj4589] - yyv4590.CodecDecodeSelf(d) + yyv4643 := &yyv4642[yyj4642] + yyv4643.CodecDecodeSelf(d) } } - if yyrt4589 { - for ; yyj4589 < yyl4589; yyj4589++ { - yyv4589 = append(yyv4589, PodTemplate{}) - yyh4589.ElemContainerState(yyj4589) + if yyrt4642 { + for ; yyj4642 < yyl4642; yyj4642++ { + yyv4642 = append(yyv4642, PodTemplate{}) + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4589[yyj4589] = PodTemplate{} + yyv4642[yyj4642] = PodTemplate{} } else { - yyv4591 := &yyv4589[yyj4589] - yyv4591.CodecDecodeSelf(d) + yyv4644 := &yyv4642[yyj4642] + yyv4644.CodecDecodeSelf(d) } } } } else { - yyj4589 := 0 - for ; !r.CheckBreak(); yyj4589++ { + yyj4642 := 0 + for ; !r.CheckBreak(); yyj4642++ { - if yyj4589 >= len(yyv4589) { - yyv4589 = append(yyv4589, PodTemplate{}) // var yyz4589 PodTemplate - yyc4589 = true + if yyj4642 >= len(yyv4642) { + yyv4642 = append(yyv4642, PodTemplate{}) // var yyz4642 PodTemplate + yyc4642 = true } - yyh4589.ElemContainerState(yyj4589) - if yyj4589 < len(yyv4589) { + yyh4642.ElemContainerState(yyj4642) + if yyj4642 < len(yyv4642) { if r.TryDecodeAsNil() { - yyv4589[yyj4589] = PodTemplate{} + yyv4642[yyj4642] = PodTemplate{} } else { - yyv4592 := &yyv4589[yyj4589] - yyv4592.CodecDecodeSelf(d) + yyv4645 := &yyv4642[yyj4642] + yyv4645.CodecDecodeSelf(d) } } else { @@ -57914,17 +58621,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4589 < len(yyv4589) { - yyv4589 = yyv4589[:yyj4589] - yyc4589 = true - } else if yyj4589 == 0 && yyv4589 == nil { - yyv4589 = []PodTemplate{} - yyc4589 = true + if yyj4642 < len(yyv4642) { + yyv4642 = yyv4642[:yyj4642] + yyc4642 = true + } else if yyj4642 == 0 && yyv4642 == nil { + yyv4642 = []PodTemplate{} + yyc4642 = true } } - yyh4589.End() - if yyc4589 { - *v = yyv4589 + yyh4642.End() + if yyc4642 { + *v = yyv4642 } } @@ -57933,10 +58640,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4593 := range v { + for _, yyv4646 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4594 := &yyv4593 - yy4594.CodecEncodeSelf(e) + yy4647 := &yyv4646 + yy4647.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57946,83 +58653,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4595 := *v - yyh4595, yyl4595 := z.DecSliceHelperStart() - var yyc4595 bool - if yyl4595 == 0 { - if yyv4595 == nil { - yyv4595 = []ReplicationController{} - yyc4595 = true - } else if len(yyv4595) != 0 { - yyv4595 = yyv4595[:0] - yyc4595 = true + yyv4648 := *v + yyh4648, yyl4648 := z.DecSliceHelperStart() + var yyc4648 bool + if yyl4648 == 0 { + if yyv4648 == nil { + yyv4648 = []ReplicationController{} + yyc4648 = true + } else if len(yyv4648) != 0 { + yyv4648 = yyv4648[:0] + yyc4648 = true } - } else if yyl4595 > 0 { - var yyrr4595, yyrl4595 int - var yyrt4595 bool - if yyl4595 > cap(yyv4595) { + } else if yyl4648 > 0 { + var yyrr4648, yyrl4648 int + var yyrt4648 bool + if yyl4648 > cap(yyv4648) { - yyrg4595 := len(yyv4595) > 0 - yyv24595 := yyv4595 - yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4595 { - if yyrl4595 <= cap(yyv4595) { - yyv4595 = yyv4595[:yyrl4595] + yyrg4648 := len(yyv4648) > 0 + yyv24648 := yyv4648 + yyrl4648, yyrt4648 = z.DecInferLen(yyl4648, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4648 { + if yyrl4648 <= cap(yyv4648) { + yyv4648 = yyv4648[:yyrl4648] } else { - yyv4595 = make([]ReplicationController, yyrl4595) + yyv4648 = make([]ReplicationController, yyrl4648) } } else { - yyv4595 = make([]ReplicationController, yyrl4595) + yyv4648 = make([]ReplicationController, yyrl4648) } - yyc4595 = true - yyrr4595 = len(yyv4595) - if yyrg4595 { - copy(yyv4595, yyv24595) + yyc4648 = true + yyrr4648 = len(yyv4648) + if yyrg4648 { + copy(yyv4648, yyv24648) } - } else if yyl4595 != len(yyv4595) { - yyv4595 = yyv4595[:yyl4595] - yyc4595 = true + } else if yyl4648 != len(yyv4648) { + yyv4648 = yyv4648[:yyl4648] + yyc4648 = true } - yyj4595 := 0 - for ; yyj4595 < yyrr4595; yyj4595++ { - yyh4595.ElemContainerState(yyj4595) + yyj4648 := 0 + for ; yyj4648 < yyrr4648; yyj4648++ { + yyh4648.ElemContainerState(yyj4648) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = ReplicationController{} + yyv4648[yyj4648] = ReplicationController{} } else { - yyv4596 := &yyv4595[yyj4595] - yyv4596.CodecDecodeSelf(d) + yyv4649 := &yyv4648[yyj4648] + yyv4649.CodecDecodeSelf(d) } } - if yyrt4595 { - for ; yyj4595 < yyl4595; yyj4595++ { - yyv4595 = append(yyv4595, ReplicationController{}) - yyh4595.ElemContainerState(yyj4595) + if yyrt4648 { + for ; yyj4648 < yyl4648; yyj4648++ { + yyv4648 = append(yyv4648, ReplicationController{}) + yyh4648.ElemContainerState(yyj4648) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = ReplicationController{} + yyv4648[yyj4648] = ReplicationController{} } else { - yyv4597 := &yyv4595[yyj4595] - yyv4597.CodecDecodeSelf(d) + yyv4650 := &yyv4648[yyj4648] + yyv4650.CodecDecodeSelf(d) } } } } else { - yyj4595 := 0 - for ; !r.CheckBreak(); yyj4595++ { + yyj4648 := 0 + for ; !r.CheckBreak(); yyj4648++ { - if yyj4595 >= len(yyv4595) { - yyv4595 = append(yyv4595, ReplicationController{}) // var yyz4595 ReplicationController - yyc4595 = true + if yyj4648 >= len(yyv4648) { + yyv4648 = append(yyv4648, ReplicationController{}) // var yyz4648 ReplicationController + yyc4648 = true } - yyh4595.ElemContainerState(yyj4595) - if yyj4595 < len(yyv4595) { + yyh4648.ElemContainerState(yyj4648) + if yyj4648 < len(yyv4648) { if r.TryDecodeAsNil() { - yyv4595[yyj4595] = ReplicationController{} + yyv4648[yyj4648] = ReplicationController{} } else { - yyv4598 := &yyv4595[yyj4595] - yyv4598.CodecDecodeSelf(d) + yyv4651 := &yyv4648[yyj4648] + yyv4651.CodecDecodeSelf(d) } } else { @@ -58030,17 +58737,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4595 < len(yyv4595) { - yyv4595 = yyv4595[:yyj4595] - yyc4595 = true - } else if yyj4595 == 0 && yyv4595 == nil { - yyv4595 = []ReplicationController{} - yyc4595 = true + if yyj4648 < len(yyv4648) { + yyv4648 = yyv4648[:yyj4648] + yyc4648 = true + } else if yyj4648 == 0 && yyv4648 == nil { + yyv4648 = []ReplicationController{} + yyc4648 = true } } - yyh4595.End() - if yyc4595 { - *v = yyv4595 + yyh4648.End() + if yyc4648 { + *v = yyv4648 } } @@ -58049,10 +58756,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4599 := range v { + for _, yyv4652 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4600 := &yyv4599 - yy4600.CodecEncodeSelf(e) + yy4653 := &yyv4652 + yy4653.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58062,83 +58769,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4601 := *v - yyh4601, yyl4601 := z.DecSliceHelperStart() - var yyc4601 bool - if yyl4601 == 0 { - if yyv4601 == nil { - yyv4601 = []Service{} - yyc4601 = true - } else if len(yyv4601) != 0 { - yyv4601 = yyv4601[:0] - yyc4601 = true + yyv4654 := *v + yyh4654, yyl4654 := z.DecSliceHelperStart() + var yyc4654 bool + if yyl4654 == 0 { + if yyv4654 == nil { + yyv4654 = []Service{} + yyc4654 = true + } else if len(yyv4654) != 0 { + yyv4654 = yyv4654[:0] + yyc4654 = true } - } else if yyl4601 > 0 { - var yyrr4601, yyrl4601 int - var yyrt4601 bool - if yyl4601 > cap(yyv4601) { + } else if yyl4654 > 0 { + var yyrr4654, yyrl4654 int + var yyrt4654 bool + if yyl4654 > cap(yyv4654) { - yyrg4601 := len(yyv4601) > 0 - yyv24601 := yyv4601 - yyrl4601, yyrt4601 = z.DecInferLen(yyl4601, z.DecBasicHandle().MaxInitLen, 440) - if yyrt4601 { - if yyrl4601 <= cap(yyv4601) { - yyv4601 = yyv4601[:yyrl4601] + yyrg4654 := len(yyv4654) > 0 + yyv24654 := yyv4654 + yyrl4654, yyrt4654 = z.DecInferLen(yyl4654, z.DecBasicHandle().MaxInitLen, 440) + if yyrt4654 { + if yyrl4654 <= cap(yyv4654) { + yyv4654 = yyv4654[:yyrl4654] } else { - yyv4601 = make([]Service, yyrl4601) + yyv4654 = make([]Service, yyrl4654) } } else { - yyv4601 = make([]Service, yyrl4601) + yyv4654 = make([]Service, yyrl4654) } - yyc4601 = true - yyrr4601 = len(yyv4601) - if yyrg4601 { - copy(yyv4601, yyv24601) + yyc4654 = true + yyrr4654 = len(yyv4654) + if yyrg4654 { + copy(yyv4654, yyv24654) } - } else if yyl4601 != len(yyv4601) { - yyv4601 = yyv4601[:yyl4601] - yyc4601 = true + } else if yyl4654 != len(yyv4654) { + yyv4654 = yyv4654[:yyl4654] + yyc4654 = true } - yyj4601 := 0 - for ; yyj4601 < yyrr4601; yyj4601++ { - yyh4601.ElemContainerState(yyj4601) + yyj4654 := 0 + for ; yyj4654 < yyrr4654; yyj4654++ { + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = Service{} + yyv4654[yyj4654] = Service{} } else { - yyv4602 := &yyv4601[yyj4601] - yyv4602.CodecDecodeSelf(d) + yyv4655 := &yyv4654[yyj4654] + yyv4655.CodecDecodeSelf(d) } } - if yyrt4601 { - for ; yyj4601 < yyl4601; yyj4601++ { - yyv4601 = append(yyv4601, Service{}) - yyh4601.ElemContainerState(yyj4601) + if yyrt4654 { + for ; yyj4654 < yyl4654; yyj4654++ { + yyv4654 = append(yyv4654, Service{}) + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = Service{} + yyv4654[yyj4654] = Service{} } else { - yyv4603 := &yyv4601[yyj4601] - yyv4603.CodecDecodeSelf(d) + yyv4656 := &yyv4654[yyj4654] + yyv4656.CodecDecodeSelf(d) } } } } else { - yyj4601 := 0 - for ; !r.CheckBreak(); yyj4601++ { + yyj4654 := 0 + for ; !r.CheckBreak(); yyj4654++ { - if yyj4601 >= len(yyv4601) { - yyv4601 = append(yyv4601, Service{}) // var yyz4601 Service - yyc4601 = true + if yyj4654 >= len(yyv4654) { + yyv4654 = append(yyv4654, Service{}) // var yyz4654 Service + yyc4654 = true } - yyh4601.ElemContainerState(yyj4601) - if yyj4601 < len(yyv4601) { + yyh4654.ElemContainerState(yyj4654) + if yyj4654 < len(yyv4654) { if r.TryDecodeAsNil() { - yyv4601[yyj4601] = Service{} + yyv4654[yyj4654] = Service{} } else { - yyv4604 := &yyv4601[yyj4601] - yyv4604.CodecDecodeSelf(d) + yyv4657 := &yyv4654[yyj4654] + yyv4657.CodecDecodeSelf(d) } } else { @@ -58146,17 +58853,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4601 < len(yyv4601) { - yyv4601 = yyv4601[:yyj4601] - yyc4601 = true - } else if yyj4601 == 0 && yyv4601 == nil { - yyv4601 = []Service{} - yyc4601 = true + if yyj4654 < len(yyv4654) { + yyv4654 = yyv4654[:yyj4654] + yyc4654 = true + } else if yyj4654 == 0 && yyv4654 == nil { + yyv4654 = []Service{} + yyc4654 = true } } - yyh4601.End() - if yyc4601 { - *v = yyv4601 + yyh4654.End() + if yyc4654 { + *v = yyv4654 } } @@ -58165,10 +58872,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4605 := range v { + for _, yyv4658 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4606 := &yyv4605 - yy4606.CodecEncodeSelf(e) + yy4659 := &yyv4658 + yy4659.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58178,83 +58885,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4607 := *v - yyh4607, yyl4607 := z.DecSliceHelperStart() - var yyc4607 bool - if yyl4607 == 0 { - if yyv4607 == nil { - yyv4607 = []LoadBalancerIngress{} - yyc4607 = true - } else if len(yyv4607) != 0 { - yyv4607 = yyv4607[:0] - yyc4607 = true + yyv4660 := *v + yyh4660, yyl4660 := z.DecSliceHelperStart() + var yyc4660 bool + if yyl4660 == 0 { + if yyv4660 == nil { + yyv4660 = []LoadBalancerIngress{} + yyc4660 = true + } else if len(yyv4660) != 0 { + yyv4660 = yyv4660[:0] + yyc4660 = true } - } else if yyl4607 > 0 { - var yyrr4607, yyrl4607 int - var yyrt4607 bool - if yyl4607 > cap(yyv4607) { + } else if yyl4660 > 0 { + var yyrr4660, yyrl4660 int + var yyrt4660 bool + if yyl4660 > cap(yyv4660) { - yyrg4607 := len(yyv4607) > 0 - yyv24607 := yyv4607 - yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4607 { - if yyrl4607 <= cap(yyv4607) { - yyv4607 = yyv4607[:yyrl4607] + yyrg4660 := len(yyv4660) > 0 + yyv24660 := yyv4660 + yyrl4660, yyrt4660 = z.DecInferLen(yyl4660, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4660 { + if yyrl4660 <= cap(yyv4660) { + yyv4660 = yyv4660[:yyrl4660] } else { - yyv4607 = make([]LoadBalancerIngress, yyrl4607) + yyv4660 = make([]LoadBalancerIngress, yyrl4660) } } else { - yyv4607 = make([]LoadBalancerIngress, yyrl4607) + yyv4660 = make([]LoadBalancerIngress, yyrl4660) } - yyc4607 = true - yyrr4607 = len(yyv4607) - if yyrg4607 { - copy(yyv4607, yyv24607) + yyc4660 = true + yyrr4660 = len(yyv4660) + if yyrg4660 { + copy(yyv4660, yyv24660) } - } else if yyl4607 != len(yyv4607) { - yyv4607 = yyv4607[:yyl4607] - yyc4607 = true + } else if yyl4660 != len(yyv4660) { + yyv4660 = yyv4660[:yyl4660] + yyc4660 = true } - yyj4607 := 0 - for ; yyj4607 < yyrr4607; yyj4607++ { - yyh4607.ElemContainerState(yyj4607) + yyj4660 := 0 + for ; yyj4660 < yyrr4660; yyj4660++ { + yyh4660.ElemContainerState(yyj4660) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = LoadBalancerIngress{} + yyv4660[yyj4660] = LoadBalancerIngress{} } else { - yyv4608 := &yyv4607[yyj4607] - yyv4608.CodecDecodeSelf(d) + yyv4661 := &yyv4660[yyj4660] + yyv4661.CodecDecodeSelf(d) } } - if yyrt4607 { - for ; yyj4607 < yyl4607; yyj4607++ { - yyv4607 = append(yyv4607, LoadBalancerIngress{}) - yyh4607.ElemContainerState(yyj4607) + if yyrt4660 { + for ; yyj4660 < yyl4660; yyj4660++ { + yyv4660 = append(yyv4660, LoadBalancerIngress{}) + yyh4660.ElemContainerState(yyj4660) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = LoadBalancerIngress{} + yyv4660[yyj4660] = LoadBalancerIngress{} } else { - yyv4609 := &yyv4607[yyj4607] - yyv4609.CodecDecodeSelf(d) + yyv4662 := &yyv4660[yyj4660] + yyv4662.CodecDecodeSelf(d) } } } } else { - yyj4607 := 0 - for ; !r.CheckBreak(); yyj4607++ { + yyj4660 := 0 + for ; !r.CheckBreak(); yyj4660++ { - if yyj4607 >= len(yyv4607) { - yyv4607 = append(yyv4607, LoadBalancerIngress{}) // var yyz4607 LoadBalancerIngress - yyc4607 = true + if yyj4660 >= len(yyv4660) { + yyv4660 = append(yyv4660, LoadBalancerIngress{}) // var yyz4660 LoadBalancerIngress + yyc4660 = true } - yyh4607.ElemContainerState(yyj4607) - if yyj4607 < len(yyv4607) { + yyh4660.ElemContainerState(yyj4660) + if yyj4660 < len(yyv4660) { if r.TryDecodeAsNil() { - yyv4607[yyj4607] = LoadBalancerIngress{} + yyv4660[yyj4660] = LoadBalancerIngress{} } else { - yyv4610 := &yyv4607[yyj4607] - yyv4610.CodecDecodeSelf(d) + yyv4663 := &yyv4660[yyj4660] + yyv4663.CodecDecodeSelf(d) } } else { @@ -58262,17 +58969,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4607 < len(yyv4607) { - yyv4607 = yyv4607[:yyj4607] - yyc4607 = true - } else if yyj4607 == 0 && yyv4607 == nil { - yyv4607 = []LoadBalancerIngress{} - yyc4607 = true + if yyj4660 < len(yyv4660) { + yyv4660 = yyv4660[:yyj4660] + yyc4660 = true + } else if yyj4660 == 0 && yyv4660 == nil { + yyv4660 = []LoadBalancerIngress{} + yyc4660 = true } } - yyh4607.End() - if yyc4607 { - *v = yyv4607 + yyh4660.End() + if yyc4660 { + *v = yyv4660 } } @@ -58281,10 +58988,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4611 := range v { + for _, yyv4664 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4612 := &yyv4611 - yy4612.CodecEncodeSelf(e) + yy4665 := &yyv4664 + yy4665.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58294,83 +59001,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4613 := *v - yyh4613, yyl4613 := z.DecSliceHelperStart() - var yyc4613 bool - if yyl4613 == 0 { - if yyv4613 == nil { - yyv4613 = []ServicePort{} - yyc4613 = true - } else if len(yyv4613) != 0 { - yyv4613 = yyv4613[:0] - yyc4613 = true + yyv4666 := *v + yyh4666, yyl4666 := z.DecSliceHelperStart() + var yyc4666 bool + if yyl4666 == 0 { + if yyv4666 == nil { + yyv4666 = []ServicePort{} + yyc4666 = true + } else if len(yyv4666) != 0 { + yyv4666 = yyv4666[:0] + yyc4666 = true } - } else if yyl4613 > 0 { - var yyrr4613, yyrl4613 int - var yyrt4613 bool - if yyl4613 > cap(yyv4613) { + } else if yyl4666 > 0 { + var yyrr4666, yyrl4666 int + var yyrt4666 bool + if yyl4666 > cap(yyv4666) { - yyrg4613 := len(yyv4613) > 0 - yyv24613 := yyv4613 - yyrl4613, yyrt4613 = z.DecInferLen(yyl4613, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4613 { - if yyrl4613 <= cap(yyv4613) { - yyv4613 = yyv4613[:yyrl4613] + yyrg4666 := len(yyv4666) > 0 + yyv24666 := yyv4666 + yyrl4666, yyrt4666 = z.DecInferLen(yyl4666, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4666 { + if yyrl4666 <= cap(yyv4666) { + yyv4666 = yyv4666[:yyrl4666] } else { - yyv4613 = make([]ServicePort, yyrl4613) + yyv4666 = make([]ServicePort, yyrl4666) } } else { - yyv4613 = make([]ServicePort, yyrl4613) + yyv4666 = make([]ServicePort, yyrl4666) } - yyc4613 = true - yyrr4613 = len(yyv4613) - if yyrg4613 { - copy(yyv4613, yyv24613) + yyc4666 = true + yyrr4666 = len(yyv4666) + if yyrg4666 { + copy(yyv4666, yyv24666) } - } else if yyl4613 != len(yyv4613) { - yyv4613 = yyv4613[:yyl4613] - yyc4613 = true + } else if yyl4666 != len(yyv4666) { + yyv4666 = yyv4666[:yyl4666] + yyc4666 = true } - yyj4613 := 0 - for ; yyj4613 < yyrr4613; yyj4613++ { - yyh4613.ElemContainerState(yyj4613) + yyj4666 := 0 + for ; yyj4666 < yyrr4666; yyj4666++ { + yyh4666.ElemContainerState(yyj4666) if r.TryDecodeAsNil() { - yyv4613[yyj4613] = ServicePort{} + yyv4666[yyj4666] = ServicePort{} } else { - yyv4614 := &yyv4613[yyj4613] - yyv4614.CodecDecodeSelf(d) + yyv4667 := &yyv4666[yyj4666] + yyv4667.CodecDecodeSelf(d) } } - if yyrt4613 { - for ; yyj4613 < yyl4613; yyj4613++ { - yyv4613 = append(yyv4613, ServicePort{}) - yyh4613.ElemContainerState(yyj4613) + if yyrt4666 { + for ; yyj4666 < yyl4666; yyj4666++ { + yyv4666 = append(yyv4666, ServicePort{}) + yyh4666.ElemContainerState(yyj4666) if r.TryDecodeAsNil() { - yyv4613[yyj4613] = ServicePort{} + yyv4666[yyj4666] = ServicePort{} } else { - yyv4615 := &yyv4613[yyj4613] - yyv4615.CodecDecodeSelf(d) + yyv4668 := &yyv4666[yyj4666] + yyv4668.CodecDecodeSelf(d) } } } } else { - yyj4613 := 0 - for ; !r.CheckBreak(); yyj4613++ { + yyj4666 := 0 + for ; !r.CheckBreak(); yyj4666++ { - if yyj4613 >= len(yyv4613) { - yyv4613 = append(yyv4613, ServicePort{}) // var yyz4613 ServicePort - yyc4613 = true + if yyj4666 >= len(yyv4666) { + yyv4666 = append(yyv4666, ServicePort{}) // var yyz4666 ServicePort + yyc4666 = true } - yyh4613.ElemContainerState(yyj4613) - if yyj4613 < len(yyv4613) { + yyh4666.ElemContainerState(yyj4666) + if yyj4666 < len(yyv4666) { if r.TryDecodeAsNil() { - yyv4613[yyj4613] = ServicePort{} + yyv4666[yyj4666] = ServicePort{} } else { - yyv4616 := &yyv4613[yyj4613] - yyv4616.CodecDecodeSelf(d) + yyv4669 := &yyv4666[yyj4666] + yyv4669.CodecDecodeSelf(d) } } else { @@ -58378,17 +59085,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4613 < len(yyv4613) { - yyv4613 = yyv4613[:yyj4613] - yyc4613 = true - } else if yyj4613 == 0 && yyv4613 == nil { - yyv4613 = []ServicePort{} - yyc4613 = true + if yyj4666 < len(yyv4666) { + yyv4666 = yyv4666[:yyj4666] + yyc4666 = true + } else if yyj4666 == 0 && yyv4666 == nil { + yyv4666 = []ServicePort{} + yyc4666 = true } } - yyh4613.End() - if yyc4613 { - *v = yyv4613 + yyh4666.End() + if yyc4666 { + *v = yyv4666 } } @@ -58397,10 +59104,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4617 := range v { + for _, yyv4670 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4618 := &yyv4617 - yy4618.CodecEncodeSelf(e) + yy4671 := &yyv4670 + yy4671.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58410,1055 +59117,12 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4619 := *v - yyh4619, yyl4619 := z.DecSliceHelperStart() - var yyc4619 bool - if yyl4619 == 0 { - if yyv4619 == nil { - yyv4619 = []ObjectReference{} - yyc4619 = true - } else if len(yyv4619) != 0 { - yyv4619 = yyv4619[:0] - yyc4619 = true - } - } else if yyl4619 > 0 { - var yyrr4619, yyrl4619 int - var yyrt4619 bool - if yyl4619 > cap(yyv4619) { - - yyrg4619 := len(yyv4619) > 0 - yyv24619 := yyv4619 - yyrl4619, yyrt4619 = z.DecInferLen(yyl4619, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4619 { - if yyrl4619 <= cap(yyv4619) { - yyv4619 = yyv4619[:yyrl4619] - } else { - yyv4619 = make([]ObjectReference, yyrl4619) - } - } else { - yyv4619 = make([]ObjectReference, yyrl4619) - } - yyc4619 = true - yyrr4619 = len(yyv4619) - if yyrg4619 { - copy(yyv4619, yyv24619) - } - } else if yyl4619 != len(yyv4619) { - yyv4619 = yyv4619[:yyl4619] - yyc4619 = true - } - yyj4619 := 0 - for ; yyj4619 < yyrr4619; yyj4619++ { - yyh4619.ElemContainerState(yyj4619) - if r.TryDecodeAsNil() { - yyv4619[yyj4619] = ObjectReference{} - } else { - yyv4620 := &yyv4619[yyj4619] - yyv4620.CodecDecodeSelf(d) - } - - } - if yyrt4619 { - for ; yyj4619 < yyl4619; yyj4619++ { - yyv4619 = append(yyv4619, ObjectReference{}) - yyh4619.ElemContainerState(yyj4619) - if r.TryDecodeAsNil() { - yyv4619[yyj4619] = ObjectReference{} - } else { - yyv4621 := &yyv4619[yyj4619] - yyv4621.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4619 := 0 - for ; !r.CheckBreak(); yyj4619++ { - - if yyj4619 >= len(yyv4619) { - yyv4619 = append(yyv4619, ObjectReference{}) // var yyz4619 ObjectReference - yyc4619 = true - } - yyh4619.ElemContainerState(yyj4619) - if yyj4619 < len(yyv4619) { - if r.TryDecodeAsNil() { - yyv4619[yyj4619] = ObjectReference{} - } else { - yyv4622 := &yyv4619[yyj4619] - yyv4622.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4619 < len(yyv4619) { - yyv4619 = yyv4619[:yyj4619] - yyc4619 = true - } else if yyj4619 == 0 && yyv4619 == nil { - yyv4619 = []ObjectReference{} - yyc4619 = true - } - } - yyh4619.End() - if yyc4619 { - *v = yyv4619 - } -} - -func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4623 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4624 := &yyv4623 - yy4624.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4625 := *v - yyh4625, yyl4625 := z.DecSliceHelperStart() - var yyc4625 bool - if yyl4625 == 0 { - if yyv4625 == nil { - yyv4625 = []ServiceAccount{} - yyc4625 = true - } else if len(yyv4625) != 0 { - yyv4625 = yyv4625[:0] - yyc4625 = true - } - } else if yyl4625 > 0 { - var yyrr4625, yyrl4625 int - var yyrt4625 bool - if yyl4625 > cap(yyv4625) { - - yyrg4625 := len(yyv4625) > 0 - yyv24625 := yyv4625 - yyrl4625, yyrt4625 = z.DecInferLen(yyl4625, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4625 { - if yyrl4625 <= cap(yyv4625) { - yyv4625 = yyv4625[:yyrl4625] - } else { - yyv4625 = make([]ServiceAccount, yyrl4625) - } - } else { - yyv4625 = make([]ServiceAccount, yyrl4625) - } - yyc4625 = true - yyrr4625 = len(yyv4625) - if yyrg4625 { - copy(yyv4625, yyv24625) - } - } else if yyl4625 != len(yyv4625) { - yyv4625 = yyv4625[:yyl4625] - yyc4625 = true - } - yyj4625 := 0 - for ; yyj4625 < yyrr4625; yyj4625++ { - yyh4625.ElemContainerState(yyj4625) - if r.TryDecodeAsNil() { - yyv4625[yyj4625] = ServiceAccount{} - } else { - yyv4626 := &yyv4625[yyj4625] - yyv4626.CodecDecodeSelf(d) - } - - } - if yyrt4625 { - for ; yyj4625 < yyl4625; yyj4625++ { - yyv4625 = append(yyv4625, ServiceAccount{}) - yyh4625.ElemContainerState(yyj4625) - if r.TryDecodeAsNil() { - yyv4625[yyj4625] = ServiceAccount{} - } else { - yyv4627 := &yyv4625[yyj4625] - yyv4627.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4625 := 0 - for ; !r.CheckBreak(); yyj4625++ { - - if yyj4625 >= len(yyv4625) { - yyv4625 = append(yyv4625, ServiceAccount{}) // var yyz4625 ServiceAccount - yyc4625 = true - } - yyh4625.ElemContainerState(yyj4625) - if yyj4625 < len(yyv4625) { - if r.TryDecodeAsNil() { - yyv4625[yyj4625] = ServiceAccount{} - } else { - yyv4628 := &yyv4625[yyj4625] - yyv4628.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4625 < len(yyv4625) { - yyv4625 = yyv4625[:yyj4625] - yyc4625 = true - } else if yyj4625 == 0 && yyv4625 == nil { - yyv4625 = []ServiceAccount{} - yyc4625 = true - } - } - yyh4625.End() - if yyc4625 { - *v = yyv4625 - } -} - -func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4629 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4630 := &yyv4629 - yy4630.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4631 := *v - yyh4631, yyl4631 := z.DecSliceHelperStart() - var yyc4631 bool - if yyl4631 == 0 { - if yyv4631 == nil { - yyv4631 = []EndpointSubset{} - yyc4631 = true - } else if len(yyv4631) != 0 { - yyv4631 = yyv4631[:0] - yyc4631 = true - } - } else if yyl4631 > 0 { - var yyrr4631, yyrl4631 int - var yyrt4631 bool - if yyl4631 > cap(yyv4631) { - - yyrg4631 := len(yyv4631) > 0 - yyv24631 := yyv4631 - yyrl4631, yyrt4631 = z.DecInferLen(yyl4631, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4631 { - if yyrl4631 <= cap(yyv4631) { - yyv4631 = yyv4631[:yyrl4631] - } else { - yyv4631 = make([]EndpointSubset, yyrl4631) - } - } else { - yyv4631 = make([]EndpointSubset, yyrl4631) - } - yyc4631 = true - yyrr4631 = len(yyv4631) - if yyrg4631 { - copy(yyv4631, yyv24631) - } - } else if yyl4631 != len(yyv4631) { - yyv4631 = yyv4631[:yyl4631] - yyc4631 = true - } - yyj4631 := 0 - for ; yyj4631 < yyrr4631; yyj4631++ { - yyh4631.ElemContainerState(yyj4631) - if r.TryDecodeAsNil() { - yyv4631[yyj4631] = EndpointSubset{} - } else { - yyv4632 := &yyv4631[yyj4631] - yyv4632.CodecDecodeSelf(d) - } - - } - if yyrt4631 { - for ; yyj4631 < yyl4631; yyj4631++ { - yyv4631 = append(yyv4631, EndpointSubset{}) - yyh4631.ElemContainerState(yyj4631) - if r.TryDecodeAsNil() { - yyv4631[yyj4631] = EndpointSubset{} - } else { - yyv4633 := &yyv4631[yyj4631] - yyv4633.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4631 := 0 - for ; !r.CheckBreak(); yyj4631++ { - - if yyj4631 >= len(yyv4631) { - yyv4631 = append(yyv4631, EndpointSubset{}) // var yyz4631 EndpointSubset - yyc4631 = true - } - yyh4631.ElemContainerState(yyj4631) - if yyj4631 < len(yyv4631) { - if r.TryDecodeAsNil() { - yyv4631[yyj4631] = EndpointSubset{} - } else { - yyv4634 := &yyv4631[yyj4631] - yyv4634.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4631 < len(yyv4631) { - yyv4631 = yyv4631[:yyj4631] - yyc4631 = true - } else if yyj4631 == 0 && yyv4631 == nil { - yyv4631 = []EndpointSubset{} - yyc4631 = true - } - } - yyh4631.End() - if yyc4631 { - *v = yyv4631 - } -} - -func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4635 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4636 := &yyv4635 - yy4636.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4637 := *v - yyh4637, yyl4637 := z.DecSliceHelperStart() - var yyc4637 bool - if yyl4637 == 0 { - if yyv4637 == nil { - yyv4637 = []EndpointAddress{} - yyc4637 = true - } else if len(yyv4637) != 0 { - yyv4637 = yyv4637[:0] - yyc4637 = true - } - } else if yyl4637 > 0 { - var yyrr4637, yyrl4637 int - var yyrt4637 bool - if yyl4637 > cap(yyv4637) { - - yyrg4637 := len(yyv4637) > 0 - yyv24637 := yyv4637 - yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4637 { - if yyrl4637 <= cap(yyv4637) { - yyv4637 = yyv4637[:yyrl4637] - } else { - yyv4637 = make([]EndpointAddress, yyrl4637) - } - } else { - yyv4637 = make([]EndpointAddress, yyrl4637) - } - yyc4637 = true - yyrr4637 = len(yyv4637) - if yyrg4637 { - copy(yyv4637, yyv24637) - } - } else if yyl4637 != len(yyv4637) { - yyv4637 = yyv4637[:yyl4637] - yyc4637 = true - } - yyj4637 := 0 - for ; yyj4637 < yyrr4637; yyj4637++ { - yyh4637.ElemContainerState(yyj4637) - if r.TryDecodeAsNil() { - yyv4637[yyj4637] = EndpointAddress{} - } else { - yyv4638 := &yyv4637[yyj4637] - yyv4638.CodecDecodeSelf(d) - } - - } - if yyrt4637 { - for ; yyj4637 < yyl4637; yyj4637++ { - yyv4637 = append(yyv4637, EndpointAddress{}) - yyh4637.ElemContainerState(yyj4637) - if r.TryDecodeAsNil() { - yyv4637[yyj4637] = EndpointAddress{} - } else { - yyv4639 := &yyv4637[yyj4637] - yyv4639.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4637 := 0 - for ; !r.CheckBreak(); yyj4637++ { - - if yyj4637 >= len(yyv4637) { - yyv4637 = append(yyv4637, EndpointAddress{}) // var yyz4637 EndpointAddress - yyc4637 = true - } - yyh4637.ElemContainerState(yyj4637) - if yyj4637 < len(yyv4637) { - if r.TryDecodeAsNil() { - yyv4637[yyj4637] = EndpointAddress{} - } else { - yyv4640 := &yyv4637[yyj4637] - yyv4640.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4637 < len(yyv4637) { - yyv4637 = yyv4637[:yyj4637] - yyc4637 = true - } else if yyj4637 == 0 && yyv4637 == nil { - yyv4637 = []EndpointAddress{} - yyc4637 = true - } - } - yyh4637.End() - if yyc4637 { - *v = yyv4637 - } -} - -func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4641 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4642 := &yyv4641 - yy4642.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4643 := *v - yyh4643, yyl4643 := z.DecSliceHelperStart() - var yyc4643 bool - if yyl4643 == 0 { - if yyv4643 == nil { - yyv4643 = []EndpointPort{} - yyc4643 = true - } else if len(yyv4643) != 0 { - yyv4643 = yyv4643[:0] - yyc4643 = true - } - } else if yyl4643 > 0 { - var yyrr4643, yyrl4643 int - var yyrt4643 bool - if yyl4643 > cap(yyv4643) { - - yyrg4643 := len(yyv4643) > 0 - yyv24643 := yyv4643 - yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4643 { - if yyrl4643 <= cap(yyv4643) { - yyv4643 = yyv4643[:yyrl4643] - } else { - yyv4643 = make([]EndpointPort, yyrl4643) - } - } else { - yyv4643 = make([]EndpointPort, yyrl4643) - } - yyc4643 = true - yyrr4643 = len(yyv4643) - if yyrg4643 { - copy(yyv4643, yyv24643) - } - } else if yyl4643 != len(yyv4643) { - yyv4643 = yyv4643[:yyl4643] - yyc4643 = true - } - yyj4643 := 0 - for ; yyj4643 < yyrr4643; yyj4643++ { - yyh4643.ElemContainerState(yyj4643) - if r.TryDecodeAsNil() { - yyv4643[yyj4643] = EndpointPort{} - } else { - yyv4644 := &yyv4643[yyj4643] - yyv4644.CodecDecodeSelf(d) - } - - } - if yyrt4643 { - for ; yyj4643 < yyl4643; yyj4643++ { - yyv4643 = append(yyv4643, EndpointPort{}) - yyh4643.ElemContainerState(yyj4643) - if r.TryDecodeAsNil() { - yyv4643[yyj4643] = EndpointPort{} - } else { - yyv4645 := &yyv4643[yyj4643] - yyv4645.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4643 := 0 - for ; !r.CheckBreak(); yyj4643++ { - - if yyj4643 >= len(yyv4643) { - yyv4643 = append(yyv4643, EndpointPort{}) // var yyz4643 EndpointPort - yyc4643 = true - } - yyh4643.ElemContainerState(yyj4643) - if yyj4643 < len(yyv4643) { - if r.TryDecodeAsNil() { - yyv4643[yyj4643] = EndpointPort{} - } else { - yyv4646 := &yyv4643[yyj4643] - yyv4646.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4643 < len(yyv4643) { - yyv4643 = yyv4643[:yyj4643] - yyc4643 = true - } else if yyj4643 == 0 && yyv4643 == nil { - yyv4643 = []EndpointPort{} - yyc4643 = true - } - } - yyh4643.End() - if yyc4643 { - *v = yyv4643 - } -} - -func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4647 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4648 := &yyv4647 - yy4648.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4649 := *v - yyh4649, yyl4649 := z.DecSliceHelperStart() - var yyc4649 bool - if yyl4649 == 0 { - if yyv4649 == nil { - yyv4649 = []Endpoints{} - yyc4649 = true - } else if len(yyv4649) != 0 { - yyv4649 = yyv4649[:0] - yyc4649 = true - } - } else if yyl4649 > 0 { - var yyrr4649, yyrl4649 int - var yyrt4649 bool - if yyl4649 > cap(yyv4649) { - - yyrg4649 := len(yyv4649) > 0 - yyv24649 := yyv4649 - yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4649 { - if yyrl4649 <= cap(yyv4649) { - yyv4649 = yyv4649[:yyrl4649] - } else { - yyv4649 = make([]Endpoints, yyrl4649) - } - } else { - yyv4649 = make([]Endpoints, yyrl4649) - } - yyc4649 = true - yyrr4649 = len(yyv4649) - if yyrg4649 { - copy(yyv4649, yyv24649) - } - } else if yyl4649 != len(yyv4649) { - yyv4649 = yyv4649[:yyl4649] - yyc4649 = true - } - yyj4649 := 0 - for ; yyj4649 < yyrr4649; yyj4649++ { - yyh4649.ElemContainerState(yyj4649) - if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Endpoints{} - } else { - yyv4650 := &yyv4649[yyj4649] - yyv4650.CodecDecodeSelf(d) - } - - } - if yyrt4649 { - for ; yyj4649 < yyl4649; yyj4649++ { - yyv4649 = append(yyv4649, Endpoints{}) - yyh4649.ElemContainerState(yyj4649) - if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Endpoints{} - } else { - yyv4651 := &yyv4649[yyj4649] - yyv4651.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4649 := 0 - for ; !r.CheckBreak(); yyj4649++ { - - if yyj4649 >= len(yyv4649) { - yyv4649 = append(yyv4649, Endpoints{}) // var yyz4649 Endpoints - yyc4649 = true - } - yyh4649.ElemContainerState(yyj4649) - if yyj4649 < len(yyv4649) { - if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Endpoints{} - } else { - yyv4652 := &yyv4649[yyj4649] - yyv4652.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4649 < len(yyv4649) { - yyv4649 = yyv4649[:yyj4649] - yyc4649 = true - } else if yyj4649 == 0 && yyv4649 == nil { - yyv4649 = []Endpoints{} - yyc4649 = true - } - } - yyh4649.End() - if yyc4649 { - *v = yyv4649 - } -} - -func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4653 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4654 := &yyv4653 - yy4654.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4655 := *v - yyh4655, yyl4655 := z.DecSliceHelperStart() - var yyc4655 bool - if yyl4655 == 0 { - if yyv4655 == nil { - yyv4655 = []NodeCondition{} - yyc4655 = true - } else if len(yyv4655) != 0 { - yyv4655 = yyv4655[:0] - yyc4655 = true - } - } else if yyl4655 > 0 { - var yyrr4655, yyrl4655 int - var yyrt4655 bool - if yyl4655 > cap(yyv4655) { - - yyrg4655 := len(yyv4655) > 0 - yyv24655 := yyv4655 - yyrl4655, yyrt4655 = z.DecInferLen(yyl4655, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4655 { - if yyrl4655 <= cap(yyv4655) { - yyv4655 = yyv4655[:yyrl4655] - } else { - yyv4655 = make([]NodeCondition, yyrl4655) - } - } else { - yyv4655 = make([]NodeCondition, yyrl4655) - } - yyc4655 = true - yyrr4655 = len(yyv4655) - if yyrg4655 { - copy(yyv4655, yyv24655) - } - } else if yyl4655 != len(yyv4655) { - yyv4655 = yyv4655[:yyl4655] - yyc4655 = true - } - yyj4655 := 0 - for ; yyj4655 < yyrr4655; yyj4655++ { - yyh4655.ElemContainerState(yyj4655) - if r.TryDecodeAsNil() { - yyv4655[yyj4655] = NodeCondition{} - } else { - yyv4656 := &yyv4655[yyj4655] - yyv4656.CodecDecodeSelf(d) - } - - } - if yyrt4655 { - for ; yyj4655 < yyl4655; yyj4655++ { - yyv4655 = append(yyv4655, NodeCondition{}) - yyh4655.ElemContainerState(yyj4655) - if r.TryDecodeAsNil() { - yyv4655[yyj4655] = NodeCondition{} - } else { - yyv4657 := &yyv4655[yyj4655] - yyv4657.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4655 := 0 - for ; !r.CheckBreak(); yyj4655++ { - - if yyj4655 >= len(yyv4655) { - yyv4655 = append(yyv4655, NodeCondition{}) // var yyz4655 NodeCondition - yyc4655 = true - } - yyh4655.ElemContainerState(yyj4655) - if yyj4655 < len(yyv4655) { - if r.TryDecodeAsNil() { - yyv4655[yyj4655] = NodeCondition{} - } else { - yyv4658 := &yyv4655[yyj4655] - yyv4658.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4655 < len(yyv4655) { - yyv4655 = yyv4655[:yyj4655] - yyc4655 = true - } else if yyj4655 == 0 && yyv4655 == nil { - yyv4655 = []NodeCondition{} - yyc4655 = true - } - } - yyh4655.End() - if yyc4655 { - *v = yyv4655 - } -} - -func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4659 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4660 := &yyv4659 - yy4660.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4661 := *v - yyh4661, yyl4661 := z.DecSliceHelperStart() - var yyc4661 bool - if yyl4661 == 0 { - if yyv4661 == nil { - yyv4661 = []NodeAddress{} - yyc4661 = true - } else if len(yyv4661) != 0 { - yyv4661 = yyv4661[:0] - yyc4661 = true - } - } else if yyl4661 > 0 { - var yyrr4661, yyrl4661 int - var yyrt4661 bool - if yyl4661 > cap(yyv4661) { - - yyrg4661 := len(yyv4661) > 0 - yyv24661 := yyv4661 - yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4661 { - if yyrl4661 <= cap(yyv4661) { - yyv4661 = yyv4661[:yyrl4661] - } else { - yyv4661 = make([]NodeAddress, yyrl4661) - } - } else { - yyv4661 = make([]NodeAddress, yyrl4661) - } - yyc4661 = true - yyrr4661 = len(yyv4661) - if yyrg4661 { - copy(yyv4661, yyv24661) - } - } else if yyl4661 != len(yyv4661) { - yyv4661 = yyv4661[:yyl4661] - yyc4661 = true - } - yyj4661 := 0 - for ; yyj4661 < yyrr4661; yyj4661++ { - yyh4661.ElemContainerState(yyj4661) - if r.TryDecodeAsNil() { - yyv4661[yyj4661] = NodeAddress{} - } else { - yyv4662 := &yyv4661[yyj4661] - yyv4662.CodecDecodeSelf(d) - } - - } - if yyrt4661 { - for ; yyj4661 < yyl4661; yyj4661++ { - yyv4661 = append(yyv4661, NodeAddress{}) - yyh4661.ElemContainerState(yyj4661) - if r.TryDecodeAsNil() { - yyv4661[yyj4661] = NodeAddress{} - } else { - yyv4663 := &yyv4661[yyj4661] - yyv4663.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4661 := 0 - for ; !r.CheckBreak(); yyj4661++ { - - if yyj4661 >= len(yyv4661) { - yyv4661 = append(yyv4661, NodeAddress{}) // var yyz4661 NodeAddress - yyc4661 = true - } - yyh4661.ElemContainerState(yyj4661) - if yyj4661 < len(yyv4661) { - if r.TryDecodeAsNil() { - yyv4661[yyj4661] = NodeAddress{} - } else { - yyv4664 := &yyv4661[yyj4661] - yyv4664.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4661 < len(yyv4661) { - yyv4661 = yyv4661[:yyj4661] - yyc4661 = true - } else if yyj4661 == 0 && yyv4661 == nil { - yyv4661 = []NodeAddress{} - yyc4661 = true - } - } - yyh4661.End() - if yyc4661 { - *v = yyv4661 - } -} - -func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4665 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4666 := &yyv4665 - yy4666.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4667 := *v - yyh4667, yyl4667 := z.DecSliceHelperStart() - var yyc4667 bool - if yyl4667 == 0 { - if yyv4667 == nil { - yyv4667 = []ContainerImage{} - yyc4667 = true - } else if len(yyv4667) != 0 { - yyv4667 = yyv4667[:0] - yyc4667 = true - } - } else if yyl4667 > 0 { - var yyrr4667, yyrl4667 int - var yyrt4667 bool - if yyl4667 > cap(yyv4667) { - - yyrg4667 := len(yyv4667) > 0 - yyv24667 := yyv4667 - yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4667 { - if yyrl4667 <= cap(yyv4667) { - yyv4667 = yyv4667[:yyrl4667] - } else { - yyv4667 = make([]ContainerImage, yyrl4667) - } - } else { - yyv4667 = make([]ContainerImage, yyrl4667) - } - yyc4667 = true - yyrr4667 = len(yyv4667) - if yyrg4667 { - copy(yyv4667, yyv24667) - } - } else if yyl4667 != len(yyv4667) { - yyv4667 = yyv4667[:yyl4667] - yyc4667 = true - } - yyj4667 := 0 - for ; yyj4667 < yyrr4667; yyj4667++ { - yyh4667.ElemContainerState(yyj4667) - if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerImage{} - } else { - yyv4668 := &yyv4667[yyj4667] - yyv4668.CodecDecodeSelf(d) - } - - } - if yyrt4667 { - for ; yyj4667 < yyl4667; yyj4667++ { - yyv4667 = append(yyv4667, ContainerImage{}) - yyh4667.ElemContainerState(yyj4667) - if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerImage{} - } else { - yyv4669 := &yyv4667[yyj4667] - yyv4669.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4667 := 0 - for ; !r.CheckBreak(); yyj4667++ { - - if yyj4667 >= len(yyv4667) { - yyv4667 = append(yyv4667, ContainerImage{}) // var yyz4667 ContainerImage - yyc4667 = true - } - yyh4667.ElemContainerState(yyj4667) - if yyj4667 < len(yyv4667) { - if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerImage{} - } else { - yyv4670 := &yyv4667[yyj4667] - yyv4670.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4667 < len(yyv4667) { - yyv4667 = yyv4667[:yyj4667] - yyc4667 = true - } else if yyj4667 == 0 && yyv4667 == nil { - yyv4667 = []ContainerImage{} - yyc4667 = true - } - } - yyh4667.End() - if yyc4667 { - *v = yyv4667 - } -} - -func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4671 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4671.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4672 := *v yyh4672, yyl4672 := z.DecSliceHelperStart() var yyc4672 bool if yyl4672 == 0 { if yyv4672 == nil { - yyv4672 = []UniqueVolumeName{} + yyv4672 = []ObjectReference{} yyc4672 = true } else if len(yyv4672) != 0 { yyv4672 = yyv4672[:0] @@ -59469,18 +59133,23 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code var yyrt4672 bool if yyl4672 > cap(yyv4672) { - yyrl4672, yyrt4672 = z.DecInferLen(yyl4672, z.DecBasicHandle().MaxInitLen, 16) + yyrg4672 := len(yyv4672) > 0 + yyv24672 := yyv4672 + yyrl4672, yyrt4672 = z.DecInferLen(yyl4672, z.DecBasicHandle().MaxInitLen, 112) if yyrt4672 { if yyrl4672 <= cap(yyv4672) { yyv4672 = yyv4672[:yyrl4672] } else { - yyv4672 = make([]UniqueVolumeName, yyrl4672) + yyv4672 = make([]ObjectReference, yyrl4672) } } else { - yyv4672 = make([]UniqueVolumeName, yyrl4672) + yyv4672 = make([]ObjectReference, yyrl4672) } yyc4672 = true yyrr4672 = len(yyv4672) + if yyrg4672 { + copy(yyv4672, yyv24672) + } } else if yyl4672 != len(yyv4672) { yyv4672 = yyv4672[:yyl4672] yyc4672 = true @@ -59489,20 +59158,22 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code for ; yyj4672 < yyrr4672; yyj4672++ { yyh4672.ElemContainerState(yyj4672) if r.TryDecodeAsNil() { - yyv4672[yyj4672] = "" + yyv4672[yyj4672] = ObjectReference{} } else { - yyv4672[yyj4672] = UniqueVolumeName(r.DecodeString()) + yyv4673 := &yyv4672[yyj4672] + yyv4673.CodecDecodeSelf(d) } } if yyrt4672 { for ; yyj4672 < yyl4672; yyj4672++ { - yyv4672 = append(yyv4672, "") + yyv4672 = append(yyv4672, ObjectReference{}) yyh4672.ElemContainerState(yyj4672) if r.TryDecodeAsNil() { - yyv4672[yyj4672] = "" + yyv4672[yyj4672] = ObjectReference{} } else { - yyv4672[yyj4672] = UniqueVolumeName(r.DecodeString()) + yyv4674 := &yyv4672[yyj4672] + yyv4674.CodecDecodeSelf(d) } } @@ -59513,15 +59184,16 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code for ; !r.CheckBreak(); yyj4672++ { if yyj4672 >= len(yyv4672) { - yyv4672 = append(yyv4672, "") // var yyz4672 UniqueVolumeName + yyv4672 = append(yyv4672, ObjectReference{}) // var yyz4672 ObjectReference yyc4672 = true } yyh4672.ElemContainerState(yyj4672) if yyj4672 < len(yyv4672) { if r.TryDecodeAsNil() { - yyv4672[yyj4672] = "" + yyv4672[yyj4672] = ObjectReference{} } else { - yyv4672[yyj4672] = UniqueVolumeName(r.DecodeString()) + yyv4675 := &yyv4672[yyj4672] + yyv4675.CodecDecodeSelf(d) } } else { @@ -59533,7 +59205,7 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code yyv4672 = yyv4672[:yyj4672] yyc4672 = true } else if yyj4672 == 0 && yyv4672 == nil { - yyv4672 = []UniqueVolumeName{} + yyv4672 = []ObjectReference{} yyc4672 = true } } @@ -59543,7 +59215,7 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } -func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -59556,7 +59228,7 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59566,7 +59238,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 var yyc4678 bool if yyl4678 == 0 { if yyv4678 == nil { - yyv4678 = []AttachedVolume{} + yyv4678 = []ServiceAccount{} yyc4678 = true } else if len(yyv4678) != 0 { yyv4678 = yyv4678[:0] @@ -59579,15 +59251,15 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 yyrg4678 := len(yyv4678) > 0 yyv24678 := yyv4678 - yyrl4678, yyrt4678 = z.DecInferLen(yyl4678, z.DecBasicHandle().MaxInitLen, 32) + yyrl4678, yyrt4678 = z.DecInferLen(yyl4678, z.DecBasicHandle().MaxInitLen, 304) if yyrt4678 { if yyrl4678 <= cap(yyv4678) { yyv4678 = yyv4678[:yyrl4678] } else { - yyv4678 = make([]AttachedVolume, yyrl4678) + yyv4678 = make([]ServiceAccount, yyrl4678) } } else { - yyv4678 = make([]AttachedVolume, yyrl4678) + yyv4678 = make([]ServiceAccount, yyrl4678) } yyc4678 = true yyrr4678 = len(yyv4678) @@ -59602,7 +59274,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 for ; yyj4678 < yyrr4678; yyj4678++ { yyh4678.ElemContainerState(yyj4678) if r.TryDecodeAsNil() { - yyv4678[yyj4678] = AttachedVolume{} + yyv4678[yyj4678] = ServiceAccount{} } else { yyv4679 := &yyv4678[yyj4678] yyv4679.CodecDecodeSelf(d) @@ -59611,10 +59283,10 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } if yyrt4678 { for ; yyj4678 < yyl4678; yyj4678++ { - yyv4678 = append(yyv4678, AttachedVolume{}) + yyv4678 = append(yyv4678, ServiceAccount{}) yyh4678.ElemContainerState(yyj4678) if r.TryDecodeAsNil() { - yyv4678[yyj4678] = AttachedVolume{} + yyv4678[yyj4678] = ServiceAccount{} } else { yyv4680 := &yyv4678[yyj4678] yyv4680.CodecDecodeSelf(d) @@ -59628,13 +59300,13 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 for ; !r.CheckBreak(); yyj4678++ { if yyj4678 >= len(yyv4678) { - yyv4678 = append(yyv4678, AttachedVolume{}) // var yyz4678 AttachedVolume + yyv4678 = append(yyv4678, ServiceAccount{}) // var yyz4678 ServiceAccount yyc4678 = true } yyh4678.ElemContainerState(yyj4678) if yyj4678 < len(yyv4678) { if r.TryDecodeAsNil() { - yyv4678[yyj4678] = AttachedVolume{} + yyv4678[yyj4678] = ServiceAccount{} } else { yyv4681 := &yyv4678[yyj4678] yyv4681.CodecDecodeSelf(d) @@ -59649,7 +59321,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 yyv4678 = yyv4678[:yyj4678] yyc4678 = true } else if yyj4678 == 0 && yyv4678 == nil { - yyv4678 = []AttachedVolume{} + yyv4678 = []ServiceAccount{} yyc4678 = true } } @@ -59659,7 +59331,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } -func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -59672,7 +59344,7 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59682,7 +59354,7 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, var yyc4684 bool if yyl4684 == 0 { if yyv4684 == nil { - yyv4684 = []PreferAvoidPodsEntry{} + yyv4684 = []EndpointSubset{} yyc4684 = true } else if len(yyv4684) != 0 { yyv4684 = yyv4684[:0] @@ -59695,15 +59367,15 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, yyrg4684 := len(yyv4684) > 0 yyv24684 := yyv4684 - yyrl4684, yyrt4684 = z.DecInferLen(yyl4684, z.DecBasicHandle().MaxInitLen, 64) + yyrl4684, yyrt4684 = z.DecInferLen(yyl4684, z.DecBasicHandle().MaxInitLen, 72) if yyrt4684 { if yyrl4684 <= cap(yyv4684) { yyv4684 = yyv4684[:yyrl4684] } else { - yyv4684 = make([]PreferAvoidPodsEntry, yyrl4684) + yyv4684 = make([]EndpointSubset, yyrl4684) } } else { - yyv4684 = make([]PreferAvoidPodsEntry, yyrl4684) + yyv4684 = make([]EndpointSubset, yyrl4684) } yyc4684 = true yyrr4684 = len(yyv4684) @@ -59718,7 +59390,7 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, for ; yyj4684 < yyrr4684; yyj4684++ { yyh4684.ElemContainerState(yyj4684) if r.TryDecodeAsNil() { - yyv4684[yyj4684] = PreferAvoidPodsEntry{} + yyv4684[yyj4684] = EndpointSubset{} } else { yyv4685 := &yyv4684[yyj4684] yyv4685.CodecDecodeSelf(d) @@ -59727,10 +59399,10 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } if yyrt4684 { for ; yyj4684 < yyl4684; yyj4684++ { - yyv4684 = append(yyv4684, PreferAvoidPodsEntry{}) + yyv4684 = append(yyv4684, EndpointSubset{}) yyh4684.ElemContainerState(yyj4684) if r.TryDecodeAsNil() { - yyv4684[yyj4684] = PreferAvoidPodsEntry{} + yyv4684[yyj4684] = EndpointSubset{} } else { yyv4686 := &yyv4684[yyj4684] yyv4686.CodecDecodeSelf(d) @@ -59744,13 +59416,13 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, for ; !r.CheckBreak(); yyj4684++ { if yyj4684 >= len(yyv4684) { - yyv4684 = append(yyv4684, PreferAvoidPodsEntry{}) // var yyz4684 PreferAvoidPodsEntry + yyv4684 = append(yyv4684, EndpointSubset{}) // var yyz4684 EndpointSubset yyc4684 = true } yyh4684.ElemContainerState(yyj4684) if yyj4684 < len(yyv4684) { if r.TryDecodeAsNil() { - yyv4684[yyj4684] = PreferAvoidPodsEntry{} + yyv4684[yyj4684] = EndpointSubset{} } else { yyv4687 := &yyv4684[yyj4684] yyv4687.CodecDecodeSelf(d) @@ -59765,7 +59437,7 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, yyv4684 = yyv4684[:yyj4684] yyc4684 = true } else if yyj4684 == 0 && yyv4684 == nil { - yyv4684 = []PreferAvoidPodsEntry{} + yyv4684 = []EndpointSubset{} yyc4684 = true } } @@ -59775,24 +59447,1059 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } +func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4688 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4689 := &yyv4688 + yy4689.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4690 := *v + yyh4690, yyl4690 := z.DecSliceHelperStart() + var yyc4690 bool + if yyl4690 == 0 { + if yyv4690 == nil { + yyv4690 = []EndpointAddress{} + yyc4690 = true + } else if len(yyv4690) != 0 { + yyv4690 = yyv4690[:0] + yyc4690 = true + } + } else if yyl4690 > 0 { + var yyrr4690, yyrl4690 int + var yyrt4690 bool + if yyl4690 > cap(yyv4690) { + + yyrg4690 := len(yyv4690) > 0 + yyv24690 := yyv4690 + yyrl4690, yyrt4690 = z.DecInferLen(yyl4690, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4690 { + if yyrl4690 <= cap(yyv4690) { + yyv4690 = yyv4690[:yyrl4690] + } else { + yyv4690 = make([]EndpointAddress, yyrl4690) + } + } else { + yyv4690 = make([]EndpointAddress, yyrl4690) + } + yyc4690 = true + yyrr4690 = len(yyv4690) + if yyrg4690 { + copy(yyv4690, yyv24690) + } + } else if yyl4690 != len(yyv4690) { + yyv4690 = yyv4690[:yyl4690] + yyc4690 = true + } + yyj4690 := 0 + for ; yyj4690 < yyrr4690; yyj4690++ { + yyh4690.ElemContainerState(yyj4690) + if r.TryDecodeAsNil() { + yyv4690[yyj4690] = EndpointAddress{} + } else { + yyv4691 := &yyv4690[yyj4690] + yyv4691.CodecDecodeSelf(d) + } + + } + if yyrt4690 { + for ; yyj4690 < yyl4690; yyj4690++ { + yyv4690 = append(yyv4690, EndpointAddress{}) + yyh4690.ElemContainerState(yyj4690) + if r.TryDecodeAsNil() { + yyv4690[yyj4690] = EndpointAddress{} + } else { + yyv4692 := &yyv4690[yyj4690] + yyv4692.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4690 := 0 + for ; !r.CheckBreak(); yyj4690++ { + + if yyj4690 >= len(yyv4690) { + yyv4690 = append(yyv4690, EndpointAddress{}) // var yyz4690 EndpointAddress + yyc4690 = true + } + yyh4690.ElemContainerState(yyj4690) + if yyj4690 < len(yyv4690) { + if r.TryDecodeAsNil() { + yyv4690[yyj4690] = EndpointAddress{} + } else { + yyv4693 := &yyv4690[yyj4690] + yyv4693.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4690 < len(yyv4690) { + yyv4690 = yyv4690[:yyj4690] + yyc4690 = true + } else if yyj4690 == 0 && yyv4690 == nil { + yyv4690 = []EndpointAddress{} + yyc4690 = true + } + } + yyh4690.End() + if yyc4690 { + *v = yyv4690 + } +} + +func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4694 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4695 := &yyv4694 + yy4695.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4696 := *v + yyh4696, yyl4696 := z.DecSliceHelperStart() + var yyc4696 bool + if yyl4696 == 0 { + if yyv4696 == nil { + yyv4696 = []EndpointPort{} + yyc4696 = true + } else if len(yyv4696) != 0 { + yyv4696 = yyv4696[:0] + yyc4696 = true + } + } else if yyl4696 > 0 { + var yyrr4696, yyrl4696 int + var yyrt4696 bool + if yyl4696 > cap(yyv4696) { + + yyrg4696 := len(yyv4696) > 0 + yyv24696 := yyv4696 + yyrl4696, yyrt4696 = z.DecInferLen(yyl4696, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4696 { + if yyrl4696 <= cap(yyv4696) { + yyv4696 = yyv4696[:yyrl4696] + } else { + yyv4696 = make([]EndpointPort, yyrl4696) + } + } else { + yyv4696 = make([]EndpointPort, yyrl4696) + } + yyc4696 = true + yyrr4696 = len(yyv4696) + if yyrg4696 { + copy(yyv4696, yyv24696) + } + } else if yyl4696 != len(yyv4696) { + yyv4696 = yyv4696[:yyl4696] + yyc4696 = true + } + yyj4696 := 0 + for ; yyj4696 < yyrr4696; yyj4696++ { + yyh4696.ElemContainerState(yyj4696) + if r.TryDecodeAsNil() { + yyv4696[yyj4696] = EndpointPort{} + } else { + yyv4697 := &yyv4696[yyj4696] + yyv4697.CodecDecodeSelf(d) + } + + } + if yyrt4696 { + for ; yyj4696 < yyl4696; yyj4696++ { + yyv4696 = append(yyv4696, EndpointPort{}) + yyh4696.ElemContainerState(yyj4696) + if r.TryDecodeAsNil() { + yyv4696[yyj4696] = EndpointPort{} + } else { + yyv4698 := &yyv4696[yyj4696] + yyv4698.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4696 := 0 + for ; !r.CheckBreak(); yyj4696++ { + + if yyj4696 >= len(yyv4696) { + yyv4696 = append(yyv4696, EndpointPort{}) // var yyz4696 EndpointPort + yyc4696 = true + } + yyh4696.ElemContainerState(yyj4696) + if yyj4696 < len(yyv4696) { + if r.TryDecodeAsNil() { + yyv4696[yyj4696] = EndpointPort{} + } else { + yyv4699 := &yyv4696[yyj4696] + yyv4699.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4696 < len(yyv4696) { + yyv4696 = yyv4696[:yyj4696] + yyc4696 = true + } else if yyj4696 == 0 && yyv4696 == nil { + yyv4696 = []EndpointPort{} + yyc4696 = true + } + } + yyh4696.End() + if yyc4696 { + *v = yyv4696 + } +} + +func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4700 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4701 := &yyv4700 + yy4701.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4702 := *v + yyh4702, yyl4702 := z.DecSliceHelperStart() + var yyc4702 bool + if yyl4702 == 0 { + if yyv4702 == nil { + yyv4702 = []Endpoints{} + yyc4702 = true + } else if len(yyv4702) != 0 { + yyv4702 = yyv4702[:0] + yyc4702 = true + } + } else if yyl4702 > 0 { + var yyrr4702, yyrl4702 int + var yyrt4702 bool + if yyl4702 > cap(yyv4702) { + + yyrg4702 := len(yyv4702) > 0 + yyv24702 := yyv4702 + yyrl4702, yyrt4702 = z.DecInferLen(yyl4702, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4702 { + if yyrl4702 <= cap(yyv4702) { + yyv4702 = yyv4702[:yyrl4702] + } else { + yyv4702 = make([]Endpoints, yyrl4702) + } + } else { + yyv4702 = make([]Endpoints, yyrl4702) + } + yyc4702 = true + yyrr4702 = len(yyv4702) + if yyrg4702 { + copy(yyv4702, yyv24702) + } + } else if yyl4702 != len(yyv4702) { + yyv4702 = yyv4702[:yyl4702] + yyc4702 = true + } + yyj4702 := 0 + for ; yyj4702 < yyrr4702; yyj4702++ { + yyh4702.ElemContainerState(yyj4702) + if r.TryDecodeAsNil() { + yyv4702[yyj4702] = Endpoints{} + } else { + yyv4703 := &yyv4702[yyj4702] + yyv4703.CodecDecodeSelf(d) + } + + } + if yyrt4702 { + for ; yyj4702 < yyl4702; yyj4702++ { + yyv4702 = append(yyv4702, Endpoints{}) + yyh4702.ElemContainerState(yyj4702) + if r.TryDecodeAsNil() { + yyv4702[yyj4702] = Endpoints{} + } else { + yyv4704 := &yyv4702[yyj4702] + yyv4704.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4702 := 0 + for ; !r.CheckBreak(); yyj4702++ { + + if yyj4702 >= len(yyv4702) { + yyv4702 = append(yyv4702, Endpoints{}) // var yyz4702 Endpoints + yyc4702 = true + } + yyh4702.ElemContainerState(yyj4702) + if yyj4702 < len(yyv4702) { + if r.TryDecodeAsNil() { + yyv4702[yyj4702] = Endpoints{} + } else { + yyv4705 := &yyv4702[yyj4702] + yyv4705.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4702 < len(yyv4702) { + yyv4702 = yyv4702[:yyj4702] + yyc4702 = true + } else if yyj4702 == 0 && yyv4702 == nil { + yyv4702 = []Endpoints{} + yyc4702 = true + } + } + yyh4702.End() + if yyc4702 { + *v = yyv4702 + } +} + +func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4706 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4707 := &yyv4706 + yy4707.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4708 := *v + yyh4708, yyl4708 := z.DecSliceHelperStart() + var yyc4708 bool + if yyl4708 == 0 { + if yyv4708 == nil { + yyv4708 = []NodeCondition{} + yyc4708 = true + } else if len(yyv4708) != 0 { + yyv4708 = yyv4708[:0] + yyc4708 = true + } + } else if yyl4708 > 0 { + var yyrr4708, yyrl4708 int + var yyrt4708 bool + if yyl4708 > cap(yyv4708) { + + yyrg4708 := len(yyv4708) > 0 + yyv24708 := yyv4708 + yyrl4708, yyrt4708 = z.DecInferLen(yyl4708, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4708 { + if yyrl4708 <= cap(yyv4708) { + yyv4708 = yyv4708[:yyrl4708] + } else { + yyv4708 = make([]NodeCondition, yyrl4708) + } + } else { + yyv4708 = make([]NodeCondition, yyrl4708) + } + yyc4708 = true + yyrr4708 = len(yyv4708) + if yyrg4708 { + copy(yyv4708, yyv24708) + } + } else if yyl4708 != len(yyv4708) { + yyv4708 = yyv4708[:yyl4708] + yyc4708 = true + } + yyj4708 := 0 + for ; yyj4708 < yyrr4708; yyj4708++ { + yyh4708.ElemContainerState(yyj4708) + if r.TryDecodeAsNil() { + yyv4708[yyj4708] = NodeCondition{} + } else { + yyv4709 := &yyv4708[yyj4708] + yyv4709.CodecDecodeSelf(d) + } + + } + if yyrt4708 { + for ; yyj4708 < yyl4708; yyj4708++ { + yyv4708 = append(yyv4708, NodeCondition{}) + yyh4708.ElemContainerState(yyj4708) + if r.TryDecodeAsNil() { + yyv4708[yyj4708] = NodeCondition{} + } else { + yyv4710 := &yyv4708[yyj4708] + yyv4710.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4708 := 0 + for ; !r.CheckBreak(); yyj4708++ { + + if yyj4708 >= len(yyv4708) { + yyv4708 = append(yyv4708, NodeCondition{}) // var yyz4708 NodeCondition + yyc4708 = true + } + yyh4708.ElemContainerState(yyj4708) + if yyj4708 < len(yyv4708) { + if r.TryDecodeAsNil() { + yyv4708[yyj4708] = NodeCondition{} + } else { + yyv4711 := &yyv4708[yyj4708] + yyv4711.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4708 < len(yyv4708) { + yyv4708 = yyv4708[:yyj4708] + yyc4708 = true + } else if yyj4708 == 0 && yyv4708 == nil { + yyv4708 = []NodeCondition{} + yyc4708 = true + } + } + yyh4708.End() + if yyc4708 { + *v = yyv4708 + } +} + +func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4712 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4713 := &yyv4712 + yy4713.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4714 := *v + yyh4714, yyl4714 := z.DecSliceHelperStart() + var yyc4714 bool + if yyl4714 == 0 { + if yyv4714 == nil { + yyv4714 = []NodeAddress{} + yyc4714 = true + } else if len(yyv4714) != 0 { + yyv4714 = yyv4714[:0] + yyc4714 = true + } + } else if yyl4714 > 0 { + var yyrr4714, yyrl4714 int + var yyrt4714 bool + if yyl4714 > cap(yyv4714) { + + yyrg4714 := len(yyv4714) > 0 + yyv24714 := yyv4714 + yyrl4714, yyrt4714 = z.DecInferLen(yyl4714, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4714 { + if yyrl4714 <= cap(yyv4714) { + yyv4714 = yyv4714[:yyrl4714] + } else { + yyv4714 = make([]NodeAddress, yyrl4714) + } + } else { + yyv4714 = make([]NodeAddress, yyrl4714) + } + yyc4714 = true + yyrr4714 = len(yyv4714) + if yyrg4714 { + copy(yyv4714, yyv24714) + } + } else if yyl4714 != len(yyv4714) { + yyv4714 = yyv4714[:yyl4714] + yyc4714 = true + } + yyj4714 := 0 + for ; yyj4714 < yyrr4714; yyj4714++ { + yyh4714.ElemContainerState(yyj4714) + if r.TryDecodeAsNil() { + yyv4714[yyj4714] = NodeAddress{} + } else { + yyv4715 := &yyv4714[yyj4714] + yyv4715.CodecDecodeSelf(d) + } + + } + if yyrt4714 { + for ; yyj4714 < yyl4714; yyj4714++ { + yyv4714 = append(yyv4714, NodeAddress{}) + yyh4714.ElemContainerState(yyj4714) + if r.TryDecodeAsNil() { + yyv4714[yyj4714] = NodeAddress{} + } else { + yyv4716 := &yyv4714[yyj4714] + yyv4716.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4714 := 0 + for ; !r.CheckBreak(); yyj4714++ { + + if yyj4714 >= len(yyv4714) { + yyv4714 = append(yyv4714, NodeAddress{}) // var yyz4714 NodeAddress + yyc4714 = true + } + yyh4714.ElemContainerState(yyj4714) + if yyj4714 < len(yyv4714) { + if r.TryDecodeAsNil() { + yyv4714[yyj4714] = NodeAddress{} + } else { + yyv4717 := &yyv4714[yyj4714] + yyv4717.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4714 < len(yyv4714) { + yyv4714 = yyv4714[:yyj4714] + yyc4714 = true + } else if yyj4714 == 0 && yyv4714 == nil { + yyv4714 = []NodeAddress{} + yyc4714 = true + } + } + yyh4714.End() + if yyc4714 { + *v = yyv4714 + } +} + +func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4718 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4719 := &yyv4718 + yy4719.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4720 := *v + yyh4720, yyl4720 := z.DecSliceHelperStart() + var yyc4720 bool + if yyl4720 == 0 { + if yyv4720 == nil { + yyv4720 = []ContainerImage{} + yyc4720 = true + } else if len(yyv4720) != 0 { + yyv4720 = yyv4720[:0] + yyc4720 = true + } + } else if yyl4720 > 0 { + var yyrr4720, yyrl4720 int + var yyrt4720 bool + if yyl4720 > cap(yyv4720) { + + yyrg4720 := len(yyv4720) > 0 + yyv24720 := yyv4720 + yyrl4720, yyrt4720 = z.DecInferLen(yyl4720, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4720 { + if yyrl4720 <= cap(yyv4720) { + yyv4720 = yyv4720[:yyrl4720] + } else { + yyv4720 = make([]ContainerImage, yyrl4720) + } + } else { + yyv4720 = make([]ContainerImage, yyrl4720) + } + yyc4720 = true + yyrr4720 = len(yyv4720) + if yyrg4720 { + copy(yyv4720, yyv24720) + } + } else if yyl4720 != len(yyv4720) { + yyv4720 = yyv4720[:yyl4720] + yyc4720 = true + } + yyj4720 := 0 + for ; yyj4720 < yyrr4720; yyj4720++ { + yyh4720.ElemContainerState(yyj4720) + if r.TryDecodeAsNil() { + yyv4720[yyj4720] = ContainerImage{} + } else { + yyv4721 := &yyv4720[yyj4720] + yyv4721.CodecDecodeSelf(d) + } + + } + if yyrt4720 { + for ; yyj4720 < yyl4720; yyj4720++ { + yyv4720 = append(yyv4720, ContainerImage{}) + yyh4720.ElemContainerState(yyj4720) + if r.TryDecodeAsNil() { + yyv4720[yyj4720] = ContainerImage{} + } else { + yyv4722 := &yyv4720[yyj4720] + yyv4722.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4720 := 0 + for ; !r.CheckBreak(); yyj4720++ { + + if yyj4720 >= len(yyv4720) { + yyv4720 = append(yyv4720, ContainerImage{}) // var yyz4720 ContainerImage + yyc4720 = true + } + yyh4720.ElemContainerState(yyj4720) + if yyj4720 < len(yyv4720) { + if r.TryDecodeAsNil() { + yyv4720[yyj4720] = ContainerImage{} + } else { + yyv4723 := &yyv4720[yyj4720] + yyv4723.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4720 < len(yyv4720) { + yyv4720 = yyv4720[:yyj4720] + yyc4720 = true + } else if yyj4720 == 0 && yyv4720 == nil { + yyv4720 = []ContainerImage{} + yyc4720 = true + } + } + yyh4720.End() + if yyc4720 { + *v = yyv4720 + } +} + +func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4724 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4724.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4725 := *v + yyh4725, yyl4725 := z.DecSliceHelperStart() + var yyc4725 bool + if yyl4725 == 0 { + if yyv4725 == nil { + yyv4725 = []UniqueVolumeName{} + yyc4725 = true + } else if len(yyv4725) != 0 { + yyv4725 = yyv4725[:0] + yyc4725 = true + } + } else if yyl4725 > 0 { + var yyrr4725, yyrl4725 int + var yyrt4725 bool + if yyl4725 > cap(yyv4725) { + + yyrl4725, yyrt4725 = z.DecInferLen(yyl4725, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4725 { + if yyrl4725 <= cap(yyv4725) { + yyv4725 = yyv4725[:yyrl4725] + } else { + yyv4725 = make([]UniqueVolumeName, yyrl4725) + } + } else { + yyv4725 = make([]UniqueVolumeName, yyrl4725) + } + yyc4725 = true + yyrr4725 = len(yyv4725) + } else if yyl4725 != len(yyv4725) { + yyv4725 = yyv4725[:yyl4725] + yyc4725 = true + } + yyj4725 := 0 + for ; yyj4725 < yyrr4725; yyj4725++ { + yyh4725.ElemContainerState(yyj4725) + if r.TryDecodeAsNil() { + yyv4725[yyj4725] = "" + } else { + yyv4725[yyj4725] = UniqueVolumeName(r.DecodeString()) + } + + } + if yyrt4725 { + for ; yyj4725 < yyl4725; yyj4725++ { + yyv4725 = append(yyv4725, "") + yyh4725.ElemContainerState(yyj4725) + if r.TryDecodeAsNil() { + yyv4725[yyj4725] = "" + } else { + yyv4725[yyj4725] = UniqueVolumeName(r.DecodeString()) + } + + } + } + + } else { + yyj4725 := 0 + for ; !r.CheckBreak(); yyj4725++ { + + if yyj4725 >= len(yyv4725) { + yyv4725 = append(yyv4725, "") // var yyz4725 UniqueVolumeName + yyc4725 = true + } + yyh4725.ElemContainerState(yyj4725) + if yyj4725 < len(yyv4725) { + if r.TryDecodeAsNil() { + yyv4725[yyj4725] = "" + } else { + yyv4725[yyj4725] = UniqueVolumeName(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4725 < len(yyv4725) { + yyv4725 = yyv4725[:yyj4725] + yyc4725 = true + } else if yyj4725 == 0 && yyv4725 == nil { + yyv4725 = []UniqueVolumeName{} + yyc4725 = true + } + } + yyh4725.End() + if yyc4725 { + *v = yyv4725 + } +} + +func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4729 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4730 := &yyv4729 + yy4730.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4731 := *v + yyh4731, yyl4731 := z.DecSliceHelperStart() + var yyc4731 bool + if yyl4731 == 0 { + if yyv4731 == nil { + yyv4731 = []AttachedVolume{} + yyc4731 = true + } else if len(yyv4731) != 0 { + yyv4731 = yyv4731[:0] + yyc4731 = true + } + } else if yyl4731 > 0 { + var yyrr4731, yyrl4731 int + var yyrt4731 bool + if yyl4731 > cap(yyv4731) { + + yyrg4731 := len(yyv4731) > 0 + yyv24731 := yyv4731 + yyrl4731, yyrt4731 = z.DecInferLen(yyl4731, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4731 { + if yyrl4731 <= cap(yyv4731) { + yyv4731 = yyv4731[:yyrl4731] + } else { + yyv4731 = make([]AttachedVolume, yyrl4731) + } + } else { + yyv4731 = make([]AttachedVolume, yyrl4731) + } + yyc4731 = true + yyrr4731 = len(yyv4731) + if yyrg4731 { + copy(yyv4731, yyv24731) + } + } else if yyl4731 != len(yyv4731) { + yyv4731 = yyv4731[:yyl4731] + yyc4731 = true + } + yyj4731 := 0 + for ; yyj4731 < yyrr4731; yyj4731++ { + yyh4731.ElemContainerState(yyj4731) + if r.TryDecodeAsNil() { + yyv4731[yyj4731] = AttachedVolume{} + } else { + yyv4732 := &yyv4731[yyj4731] + yyv4732.CodecDecodeSelf(d) + } + + } + if yyrt4731 { + for ; yyj4731 < yyl4731; yyj4731++ { + yyv4731 = append(yyv4731, AttachedVolume{}) + yyh4731.ElemContainerState(yyj4731) + if r.TryDecodeAsNil() { + yyv4731[yyj4731] = AttachedVolume{} + } else { + yyv4733 := &yyv4731[yyj4731] + yyv4733.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4731 := 0 + for ; !r.CheckBreak(); yyj4731++ { + + if yyj4731 >= len(yyv4731) { + yyv4731 = append(yyv4731, AttachedVolume{}) // var yyz4731 AttachedVolume + yyc4731 = true + } + yyh4731.ElemContainerState(yyj4731) + if yyj4731 < len(yyv4731) { + if r.TryDecodeAsNil() { + yyv4731[yyj4731] = AttachedVolume{} + } else { + yyv4734 := &yyv4731[yyj4731] + yyv4734.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4731 < len(yyv4731) { + yyv4731 = yyv4731[:yyj4731] + yyc4731 = true + } else if yyj4731 == 0 && yyv4731 == nil { + yyv4731 = []AttachedVolume{} + yyc4731 = true + } + } + yyh4731.End() + if yyc4731 { + *v = yyv4731 + } +} + +func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4735 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4736 := &yyv4735 + yy4736.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4737 := *v + yyh4737, yyl4737 := z.DecSliceHelperStart() + var yyc4737 bool + if yyl4737 == 0 { + if yyv4737 == nil { + yyv4737 = []PreferAvoidPodsEntry{} + yyc4737 = true + } else if len(yyv4737) != 0 { + yyv4737 = yyv4737[:0] + yyc4737 = true + } + } else if yyl4737 > 0 { + var yyrr4737, yyrl4737 int + var yyrt4737 bool + if yyl4737 > cap(yyv4737) { + + yyrg4737 := len(yyv4737) > 0 + yyv24737 := yyv4737 + yyrl4737, yyrt4737 = z.DecInferLen(yyl4737, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4737 { + if yyrl4737 <= cap(yyv4737) { + yyv4737 = yyv4737[:yyrl4737] + } else { + yyv4737 = make([]PreferAvoidPodsEntry, yyrl4737) + } + } else { + yyv4737 = make([]PreferAvoidPodsEntry, yyrl4737) + } + yyc4737 = true + yyrr4737 = len(yyv4737) + if yyrg4737 { + copy(yyv4737, yyv24737) + } + } else if yyl4737 != len(yyv4737) { + yyv4737 = yyv4737[:yyl4737] + yyc4737 = true + } + yyj4737 := 0 + for ; yyj4737 < yyrr4737; yyj4737++ { + yyh4737.ElemContainerState(yyj4737) + if r.TryDecodeAsNil() { + yyv4737[yyj4737] = PreferAvoidPodsEntry{} + } else { + yyv4738 := &yyv4737[yyj4737] + yyv4738.CodecDecodeSelf(d) + } + + } + if yyrt4737 { + for ; yyj4737 < yyl4737; yyj4737++ { + yyv4737 = append(yyv4737, PreferAvoidPodsEntry{}) + yyh4737.ElemContainerState(yyj4737) + if r.TryDecodeAsNil() { + yyv4737[yyj4737] = PreferAvoidPodsEntry{} + } else { + yyv4739 := &yyv4737[yyj4737] + yyv4739.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4737 := 0 + for ; !r.CheckBreak(); yyj4737++ { + + if yyj4737 >= len(yyv4737) { + yyv4737 = append(yyv4737, PreferAvoidPodsEntry{}) // var yyz4737 PreferAvoidPodsEntry + yyc4737 = true + } + yyh4737.ElemContainerState(yyj4737) + if yyj4737 < len(yyv4737) { + if r.TryDecodeAsNil() { + yyv4737[yyj4737] = PreferAvoidPodsEntry{} + } else { + yyv4740 := &yyv4737[yyj4737] + yyv4740.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4737 < len(yyv4737) { + yyv4737 = yyv4737[:yyj4737] + yyc4737 = true + } else if yyj4737 == 0 && yyv4737 == nil { + yyv4737 = []PreferAvoidPodsEntry{} + yyc4737 = true + } + } + yyh4737.End() + if yyc4737 { + *v = yyv4737 + } +} + func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4688, yyv4688 := range v { + for yyk4741, yyv4741 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4688.CodecEncodeSelf(e) + yyk4741.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4689 := &yyv4688 - yym4690 := z.EncBinary() - _ = yym4690 + yy4742 := &yyv4741 + yym4743 := z.EncBinary() + _ = yym4743 if false { - } else if z.HasExtensions() && z.EncExt(yy4689) { - } else if !yym4690 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4689) + } else if z.HasExtensions() && z.EncExt(yy4742) { + } else if !yym4743 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4742) } else { - z.EncFallback(yy4689) + z.EncFallback(yy4742) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -59803,86 +60510,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4691 := *v - yyl4691 := r.ReadMapStart() - yybh4691 := z.DecBasicHandle() - if yyv4691 == nil { - yyrl4691, _ := z.DecInferLen(yyl4691, yybh4691.MaxInitLen, 72) - yyv4691 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4691) - *v = yyv4691 + yyv4744 := *v + yyl4744 := r.ReadMapStart() + yybh4744 := z.DecBasicHandle() + if yyv4744 == nil { + yyrl4744, _ := z.DecInferLen(yyl4744, yybh4744.MaxInitLen, 72) + yyv4744 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4744) + *v = yyv4744 } - var yymk4691 ResourceName - var yymv4691 pkg3_resource.Quantity - var yymg4691 bool - if yybh4691.MapValueReset { - yymg4691 = true + var yymk4744 ResourceName + var yymv4744 pkg3_resource.Quantity + var yymg4744 bool + if yybh4744.MapValueReset { + yymg4744 = true } - if yyl4691 > 0 { - for yyj4691 := 0; yyj4691 < yyl4691; yyj4691++ { + if yyl4744 > 0 { + for yyj4744 := 0; yyj4744 < yyl4744; yyj4744++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4691 = "" + yymk4744 = "" } else { - yymk4691 = ResourceName(r.DecodeString()) + yymk4744 = ResourceName(r.DecodeString()) } - if yymg4691 { - yymv4691 = yyv4691[yymk4691] + if yymg4744 { + yymv4744 = yyv4744[yymk4744] } else { - yymv4691 = pkg3_resource.Quantity{} + yymv4744 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4691 = pkg3_resource.Quantity{} + yymv4744 = pkg3_resource.Quantity{} } else { - yyv4693 := &yymv4691 - yym4694 := z.DecBinary() - _ = yym4694 + yyv4746 := &yymv4744 + yym4747 := z.DecBinary() + _ = yym4747 if false { - } else if z.HasExtensions() && z.DecExt(yyv4693) { - } else if !yym4694 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4693) + } else if z.HasExtensions() && z.DecExt(yyv4746) { + } else if !yym4747 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4746) } else { - z.DecFallback(yyv4693, false) + z.DecFallback(yyv4746, false) } } - if yyv4691 != nil { - yyv4691[yymk4691] = yymv4691 + if yyv4744 != nil { + yyv4744[yymk4744] = yymv4744 } } - } else if yyl4691 < 0 { - for yyj4691 := 0; !r.CheckBreak(); yyj4691++ { + } else if yyl4744 < 0 { + for yyj4744 := 0; !r.CheckBreak(); yyj4744++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4691 = "" + yymk4744 = "" } else { - yymk4691 = ResourceName(r.DecodeString()) + yymk4744 = ResourceName(r.DecodeString()) } - if yymg4691 { - yymv4691 = yyv4691[yymk4691] + if yymg4744 { + yymv4744 = yyv4744[yymk4744] } else { - yymv4691 = pkg3_resource.Quantity{} + yymv4744 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4691 = pkg3_resource.Quantity{} + yymv4744 = pkg3_resource.Quantity{} } else { - yyv4696 := &yymv4691 - yym4697 := z.DecBinary() - _ = yym4697 + yyv4749 := &yymv4744 + yym4750 := z.DecBinary() + _ = yym4750 if false { - } else if z.HasExtensions() && z.DecExt(yyv4696) { - } else if !yym4697 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4696) + } else if z.HasExtensions() && z.DecExt(yyv4749) { + } else if !yym4750 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4749) } else { - z.DecFallback(yyv4696, false) + z.DecFallback(yyv4749, false) } } - if yyv4691 != nil { - yyv4691[yymk4691] = yymv4691 + if yyv4744 != nil { + yyv4744[yymk4744] = yymv4744 } } } // else len==0: TODO: Should we clear map entries? @@ -59894,10 +60601,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4698 := range v { + for _, yyv4751 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4699 := &yyv4698 - yy4699.CodecEncodeSelf(e) + yy4752 := &yyv4751 + yy4752.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59907,83 +60614,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4700 := *v - yyh4700, yyl4700 := z.DecSliceHelperStart() - var yyc4700 bool - if yyl4700 == 0 { - if yyv4700 == nil { - yyv4700 = []Node{} - yyc4700 = true - } else if len(yyv4700) != 0 { - yyv4700 = yyv4700[:0] - yyc4700 = true + yyv4753 := *v + yyh4753, yyl4753 := z.DecSliceHelperStart() + var yyc4753 bool + if yyl4753 == 0 { + if yyv4753 == nil { + yyv4753 = []Node{} + yyc4753 = true + } else if len(yyv4753) != 0 { + yyv4753 = yyv4753[:0] + yyc4753 = true } - } else if yyl4700 > 0 { - var yyrr4700, yyrl4700 int - var yyrt4700 bool - if yyl4700 > cap(yyv4700) { + } else if yyl4753 > 0 { + var yyrr4753, yyrl4753 int + var yyrt4753 bool + if yyl4753 > cap(yyv4753) { - yyrg4700 := len(yyv4700) > 0 - yyv24700 := yyv4700 - yyrl4700, yyrt4700 = z.DecInferLen(yyl4700, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4700 { - if yyrl4700 <= cap(yyv4700) { - yyv4700 = yyv4700[:yyrl4700] + yyrg4753 := len(yyv4753) > 0 + yyv24753 := yyv4753 + yyrl4753, yyrt4753 = z.DecInferLen(yyl4753, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4753 { + if yyrl4753 <= cap(yyv4753) { + yyv4753 = yyv4753[:yyrl4753] } else { - yyv4700 = make([]Node, yyrl4700) + yyv4753 = make([]Node, yyrl4753) } } else { - yyv4700 = make([]Node, yyrl4700) + yyv4753 = make([]Node, yyrl4753) } - yyc4700 = true - yyrr4700 = len(yyv4700) - if yyrg4700 { - copy(yyv4700, yyv24700) + yyc4753 = true + yyrr4753 = len(yyv4753) + if yyrg4753 { + copy(yyv4753, yyv24753) } - } else if yyl4700 != len(yyv4700) { - yyv4700 = yyv4700[:yyl4700] - yyc4700 = true + } else if yyl4753 != len(yyv4753) { + yyv4753 = yyv4753[:yyl4753] + yyc4753 = true } - yyj4700 := 0 - for ; yyj4700 < yyrr4700; yyj4700++ { - yyh4700.ElemContainerState(yyj4700) + yyj4753 := 0 + for ; yyj4753 < yyrr4753; yyj4753++ { + yyh4753.ElemContainerState(yyj4753) if r.TryDecodeAsNil() { - yyv4700[yyj4700] = Node{} + yyv4753[yyj4753] = Node{} } else { - yyv4701 := &yyv4700[yyj4700] - yyv4701.CodecDecodeSelf(d) + yyv4754 := &yyv4753[yyj4753] + yyv4754.CodecDecodeSelf(d) } } - if yyrt4700 { - for ; yyj4700 < yyl4700; yyj4700++ { - yyv4700 = append(yyv4700, Node{}) - yyh4700.ElemContainerState(yyj4700) + if yyrt4753 { + for ; yyj4753 < yyl4753; yyj4753++ { + yyv4753 = append(yyv4753, Node{}) + yyh4753.ElemContainerState(yyj4753) if r.TryDecodeAsNil() { - yyv4700[yyj4700] = Node{} + yyv4753[yyj4753] = Node{} } else { - yyv4702 := &yyv4700[yyj4700] - yyv4702.CodecDecodeSelf(d) + yyv4755 := &yyv4753[yyj4753] + yyv4755.CodecDecodeSelf(d) } } } } else { - yyj4700 := 0 - for ; !r.CheckBreak(); yyj4700++ { + yyj4753 := 0 + for ; !r.CheckBreak(); yyj4753++ { - if yyj4700 >= len(yyv4700) { - yyv4700 = append(yyv4700, Node{}) // var yyz4700 Node - yyc4700 = true + if yyj4753 >= len(yyv4753) { + yyv4753 = append(yyv4753, Node{}) // var yyz4753 Node + yyc4753 = true } - yyh4700.ElemContainerState(yyj4700) - if yyj4700 < len(yyv4700) { + yyh4753.ElemContainerState(yyj4753) + if yyj4753 < len(yyv4753) { if r.TryDecodeAsNil() { - yyv4700[yyj4700] = Node{} + yyv4753[yyj4753] = Node{} } else { - yyv4703 := &yyv4700[yyj4700] - yyv4703.CodecDecodeSelf(d) + yyv4756 := &yyv4753[yyj4753] + yyv4756.CodecDecodeSelf(d) } } else { @@ -59991,17 +60698,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4700 < len(yyv4700) { - yyv4700 = yyv4700[:yyj4700] - yyc4700 = true - } else if yyj4700 == 0 && yyv4700 == nil { - yyv4700 = []Node{} - yyc4700 = true + if yyj4753 < len(yyv4753) { + yyv4753 = yyv4753[:yyj4753] + yyc4753 = true + } else if yyj4753 == 0 && yyv4753 == nil { + yyv4753 = []Node{} + yyc4753 = true } } - yyh4700.End() - if yyc4700 { - *v = yyv4700 + yyh4753.End() + if yyc4753 { + *v = yyv4753 } } @@ -60010,9 +60717,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4704 := range v { + for _, yyv4757 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4704.CodecEncodeSelf(e) + yyv4757.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60022,75 +60729,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4705 := *v - yyh4705, yyl4705 := z.DecSliceHelperStart() - var yyc4705 bool - if yyl4705 == 0 { - if yyv4705 == nil { - yyv4705 = []FinalizerName{} - yyc4705 = true - } else if len(yyv4705) != 0 { - yyv4705 = yyv4705[:0] - yyc4705 = true + yyv4758 := *v + yyh4758, yyl4758 := z.DecSliceHelperStart() + var yyc4758 bool + if yyl4758 == 0 { + if yyv4758 == nil { + yyv4758 = []FinalizerName{} + yyc4758 = true + } else if len(yyv4758) != 0 { + yyv4758 = yyv4758[:0] + yyc4758 = true } - } else if yyl4705 > 0 { - var yyrr4705, yyrl4705 int - var yyrt4705 bool - if yyl4705 > cap(yyv4705) { + } else if yyl4758 > 0 { + var yyrr4758, yyrl4758 int + var yyrt4758 bool + if yyl4758 > cap(yyv4758) { - yyrl4705, yyrt4705 = z.DecInferLen(yyl4705, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4705 { - if yyrl4705 <= cap(yyv4705) { - yyv4705 = yyv4705[:yyrl4705] + yyrl4758, yyrt4758 = z.DecInferLen(yyl4758, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4758 { + if yyrl4758 <= cap(yyv4758) { + yyv4758 = yyv4758[:yyrl4758] } else { - yyv4705 = make([]FinalizerName, yyrl4705) + yyv4758 = make([]FinalizerName, yyrl4758) } } else { - yyv4705 = make([]FinalizerName, yyrl4705) + yyv4758 = make([]FinalizerName, yyrl4758) } - yyc4705 = true - yyrr4705 = len(yyv4705) - } else if yyl4705 != len(yyv4705) { - yyv4705 = yyv4705[:yyl4705] - yyc4705 = true + yyc4758 = true + yyrr4758 = len(yyv4758) + } else if yyl4758 != len(yyv4758) { + yyv4758 = yyv4758[:yyl4758] + yyc4758 = true } - yyj4705 := 0 - for ; yyj4705 < yyrr4705; yyj4705++ { - yyh4705.ElemContainerState(yyj4705) + yyj4758 := 0 + for ; yyj4758 < yyrr4758; yyj4758++ { + yyh4758.ElemContainerState(yyj4758) if r.TryDecodeAsNil() { - yyv4705[yyj4705] = "" + yyv4758[yyj4758] = "" } else { - yyv4705[yyj4705] = FinalizerName(r.DecodeString()) + yyv4758[yyj4758] = FinalizerName(r.DecodeString()) } } - if yyrt4705 { - for ; yyj4705 < yyl4705; yyj4705++ { - yyv4705 = append(yyv4705, "") - yyh4705.ElemContainerState(yyj4705) + if yyrt4758 { + for ; yyj4758 < yyl4758; yyj4758++ { + yyv4758 = append(yyv4758, "") + yyh4758.ElemContainerState(yyj4758) if r.TryDecodeAsNil() { - yyv4705[yyj4705] = "" + yyv4758[yyj4758] = "" } else { - yyv4705[yyj4705] = FinalizerName(r.DecodeString()) + yyv4758[yyj4758] = FinalizerName(r.DecodeString()) } } } } else { - yyj4705 := 0 - for ; !r.CheckBreak(); yyj4705++ { + yyj4758 := 0 + for ; !r.CheckBreak(); yyj4758++ { - if yyj4705 >= len(yyv4705) { - yyv4705 = append(yyv4705, "") // var yyz4705 FinalizerName - yyc4705 = true + if yyj4758 >= len(yyv4758) { + yyv4758 = append(yyv4758, "") // var yyz4758 FinalizerName + yyc4758 = true } - yyh4705.ElemContainerState(yyj4705) - if yyj4705 < len(yyv4705) { + yyh4758.ElemContainerState(yyj4758) + if yyj4758 < len(yyv4758) { if r.TryDecodeAsNil() { - yyv4705[yyj4705] = "" + yyv4758[yyj4758] = "" } else { - yyv4705[yyj4705] = FinalizerName(r.DecodeString()) + yyv4758[yyj4758] = FinalizerName(r.DecodeString()) } } else { @@ -60098,17 +60805,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4705 < len(yyv4705) { - yyv4705 = yyv4705[:yyj4705] - yyc4705 = true - } else if yyj4705 == 0 && yyv4705 == nil { - yyv4705 = []FinalizerName{} - yyc4705 = true + if yyj4758 < len(yyv4758) { + yyv4758 = yyv4758[:yyj4758] + yyc4758 = true + } else if yyj4758 == 0 && yyv4758 == nil { + yyv4758 = []FinalizerName{} + yyc4758 = true } } - yyh4705.End() - if yyc4705 { - *v = yyv4705 + yyh4758.End() + if yyc4758 { + *v = yyv4758 } } @@ -60117,10 +60824,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4709 := range v { + for _, yyv4762 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4710 := &yyv4709 - yy4710.CodecEncodeSelf(e) + yy4763 := &yyv4762 + yy4763.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60130,83 +60837,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4711 := *v - yyh4711, yyl4711 := z.DecSliceHelperStart() - var yyc4711 bool - if yyl4711 == 0 { - if yyv4711 == nil { - yyv4711 = []Namespace{} - yyc4711 = true - } else if len(yyv4711) != 0 { - yyv4711 = yyv4711[:0] - yyc4711 = true + yyv4764 := *v + yyh4764, yyl4764 := z.DecSliceHelperStart() + var yyc4764 bool + if yyl4764 == 0 { + if yyv4764 == nil { + yyv4764 = []Namespace{} + yyc4764 = true + } else if len(yyv4764) != 0 { + yyv4764 = yyv4764[:0] + yyc4764 = true } - } else if yyl4711 > 0 { - var yyrr4711, yyrl4711 int - var yyrt4711 bool - if yyl4711 > cap(yyv4711) { + } else if yyl4764 > 0 { + var yyrr4764, yyrl4764 int + var yyrt4764 bool + if yyl4764 > cap(yyv4764) { - yyrg4711 := len(yyv4711) > 0 - yyv24711 := yyv4711 - yyrl4711, yyrt4711 = z.DecInferLen(yyl4711, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4711 { - if yyrl4711 <= cap(yyv4711) { - yyv4711 = yyv4711[:yyrl4711] + yyrg4764 := len(yyv4764) > 0 + yyv24764 := yyv4764 + yyrl4764, yyrt4764 = z.DecInferLen(yyl4764, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4764 { + if yyrl4764 <= cap(yyv4764) { + yyv4764 = yyv4764[:yyrl4764] } else { - yyv4711 = make([]Namespace, yyrl4711) + yyv4764 = make([]Namespace, yyrl4764) } } else { - yyv4711 = make([]Namespace, yyrl4711) + yyv4764 = make([]Namespace, yyrl4764) } - yyc4711 = true - yyrr4711 = len(yyv4711) - if yyrg4711 { - copy(yyv4711, yyv24711) + yyc4764 = true + yyrr4764 = len(yyv4764) + if yyrg4764 { + copy(yyv4764, yyv24764) } - } else if yyl4711 != len(yyv4711) { - yyv4711 = yyv4711[:yyl4711] - yyc4711 = true + } else if yyl4764 != len(yyv4764) { + yyv4764 = yyv4764[:yyl4764] + yyc4764 = true } - yyj4711 := 0 - for ; yyj4711 < yyrr4711; yyj4711++ { - yyh4711.ElemContainerState(yyj4711) + yyj4764 := 0 + for ; yyj4764 < yyrr4764; yyj4764++ { + yyh4764.ElemContainerState(yyj4764) if r.TryDecodeAsNil() { - yyv4711[yyj4711] = Namespace{} + yyv4764[yyj4764] = Namespace{} } else { - yyv4712 := &yyv4711[yyj4711] - yyv4712.CodecDecodeSelf(d) + yyv4765 := &yyv4764[yyj4764] + yyv4765.CodecDecodeSelf(d) } } - if yyrt4711 { - for ; yyj4711 < yyl4711; yyj4711++ { - yyv4711 = append(yyv4711, Namespace{}) - yyh4711.ElemContainerState(yyj4711) + if yyrt4764 { + for ; yyj4764 < yyl4764; yyj4764++ { + yyv4764 = append(yyv4764, Namespace{}) + yyh4764.ElemContainerState(yyj4764) if r.TryDecodeAsNil() { - yyv4711[yyj4711] = Namespace{} + yyv4764[yyj4764] = Namespace{} } else { - yyv4713 := &yyv4711[yyj4711] - yyv4713.CodecDecodeSelf(d) + yyv4766 := &yyv4764[yyj4764] + yyv4766.CodecDecodeSelf(d) } } } } else { - yyj4711 := 0 - for ; !r.CheckBreak(); yyj4711++ { + yyj4764 := 0 + for ; !r.CheckBreak(); yyj4764++ { - if yyj4711 >= len(yyv4711) { - yyv4711 = append(yyv4711, Namespace{}) // var yyz4711 Namespace - yyc4711 = true + if yyj4764 >= len(yyv4764) { + yyv4764 = append(yyv4764, Namespace{}) // var yyz4764 Namespace + yyc4764 = true } - yyh4711.ElemContainerState(yyj4711) - if yyj4711 < len(yyv4711) { + yyh4764.ElemContainerState(yyj4764) + if yyj4764 < len(yyv4764) { if r.TryDecodeAsNil() { - yyv4711[yyj4711] = Namespace{} + yyv4764[yyj4764] = Namespace{} } else { - yyv4714 := &yyv4711[yyj4711] - yyv4714.CodecDecodeSelf(d) + yyv4767 := &yyv4764[yyj4764] + yyv4767.CodecDecodeSelf(d) } } else { @@ -60214,17 +60921,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4711 < len(yyv4711) { - yyv4711 = yyv4711[:yyj4711] - yyc4711 = true - } else if yyj4711 == 0 && yyv4711 == nil { - yyv4711 = []Namespace{} - yyc4711 = true + if yyj4764 < len(yyv4764) { + yyv4764 = yyv4764[:yyj4764] + yyc4764 = true + } else if yyj4764 == 0 && yyv4764 == nil { + yyv4764 = []Namespace{} + yyc4764 = true } } - yyh4711.End() - if yyc4711 { - *v = yyv4711 + yyh4764.End() + if yyc4764 { + *v = yyv4764 } } @@ -60233,10 +60940,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4715 := range v { + for _, yyv4768 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4716 := &yyv4715 - yy4716.CodecEncodeSelf(e) + yy4769 := &yyv4768 + yy4769.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60246,83 +60953,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4717 := *v - yyh4717, yyl4717 := z.DecSliceHelperStart() - var yyc4717 bool - if yyl4717 == 0 { - if yyv4717 == nil { - yyv4717 = []Event{} - yyc4717 = true - } else if len(yyv4717) != 0 { - yyv4717 = yyv4717[:0] - yyc4717 = true + yyv4770 := *v + yyh4770, yyl4770 := z.DecSliceHelperStart() + var yyc4770 bool + if yyl4770 == 0 { + if yyv4770 == nil { + yyv4770 = []Event{} + yyc4770 = true + } else if len(yyv4770) != 0 { + yyv4770 = yyv4770[:0] + yyc4770 = true } - } else if yyl4717 > 0 { - var yyrr4717, yyrl4717 int - var yyrt4717 bool - if yyl4717 > cap(yyv4717) { + } else if yyl4770 > 0 { + var yyrr4770, yyrl4770 int + var yyrt4770 bool + if yyl4770 > cap(yyv4770) { - yyrg4717 := len(yyv4717) > 0 - yyv24717 := yyv4717 - yyrl4717, yyrt4717 = z.DecInferLen(yyl4717, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4717 { - if yyrl4717 <= cap(yyv4717) { - yyv4717 = yyv4717[:yyrl4717] + yyrg4770 := len(yyv4770) > 0 + yyv24770 := yyv4770 + yyrl4770, yyrt4770 = z.DecInferLen(yyl4770, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4770 { + if yyrl4770 <= cap(yyv4770) { + yyv4770 = yyv4770[:yyrl4770] } else { - yyv4717 = make([]Event, yyrl4717) + yyv4770 = make([]Event, yyrl4770) } } else { - yyv4717 = make([]Event, yyrl4717) + yyv4770 = make([]Event, yyrl4770) } - yyc4717 = true - yyrr4717 = len(yyv4717) - if yyrg4717 { - copy(yyv4717, yyv24717) + yyc4770 = true + yyrr4770 = len(yyv4770) + if yyrg4770 { + copy(yyv4770, yyv24770) } - } else if yyl4717 != len(yyv4717) { - yyv4717 = yyv4717[:yyl4717] - yyc4717 = true + } else if yyl4770 != len(yyv4770) { + yyv4770 = yyv4770[:yyl4770] + yyc4770 = true } - yyj4717 := 0 - for ; yyj4717 < yyrr4717; yyj4717++ { - yyh4717.ElemContainerState(yyj4717) + yyj4770 := 0 + for ; yyj4770 < yyrr4770; yyj4770++ { + yyh4770.ElemContainerState(yyj4770) if r.TryDecodeAsNil() { - yyv4717[yyj4717] = Event{} + yyv4770[yyj4770] = Event{} } else { - yyv4718 := &yyv4717[yyj4717] - yyv4718.CodecDecodeSelf(d) + yyv4771 := &yyv4770[yyj4770] + yyv4771.CodecDecodeSelf(d) } } - if yyrt4717 { - for ; yyj4717 < yyl4717; yyj4717++ { - yyv4717 = append(yyv4717, Event{}) - yyh4717.ElemContainerState(yyj4717) + if yyrt4770 { + for ; yyj4770 < yyl4770; yyj4770++ { + yyv4770 = append(yyv4770, Event{}) + yyh4770.ElemContainerState(yyj4770) if r.TryDecodeAsNil() { - yyv4717[yyj4717] = Event{} + yyv4770[yyj4770] = Event{} } else { - yyv4719 := &yyv4717[yyj4717] - yyv4719.CodecDecodeSelf(d) + yyv4772 := &yyv4770[yyj4770] + yyv4772.CodecDecodeSelf(d) } } } } else { - yyj4717 := 0 - for ; !r.CheckBreak(); yyj4717++ { + yyj4770 := 0 + for ; !r.CheckBreak(); yyj4770++ { - if yyj4717 >= len(yyv4717) { - yyv4717 = append(yyv4717, Event{}) // var yyz4717 Event - yyc4717 = true + if yyj4770 >= len(yyv4770) { + yyv4770 = append(yyv4770, Event{}) // var yyz4770 Event + yyc4770 = true } - yyh4717.ElemContainerState(yyj4717) - if yyj4717 < len(yyv4717) { + yyh4770.ElemContainerState(yyj4770) + if yyj4770 < len(yyv4770) { if r.TryDecodeAsNil() { - yyv4717[yyj4717] = Event{} + yyv4770[yyj4770] = Event{} } else { - yyv4720 := &yyv4717[yyj4717] - yyv4720.CodecDecodeSelf(d) + yyv4773 := &yyv4770[yyj4770] + yyv4773.CodecDecodeSelf(d) } } else { @@ -60330,17 +61037,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4717 < len(yyv4717) { - yyv4717 = yyv4717[:yyj4717] - yyc4717 = true - } else if yyj4717 == 0 && yyv4717 == nil { - yyv4717 = []Event{} - yyc4717 = true + if yyj4770 < len(yyv4770) { + yyv4770 = yyv4770[:yyj4770] + yyc4770 = true + } else if yyj4770 == 0 && yyv4770 == nil { + yyv4770 = []Event{} + yyc4770 = true } } - yyh4717.End() - if yyc4717 { - *v = yyv4717 + yyh4770.End() + if yyc4770 { + *v = yyv4770 } } @@ -60349,17 +61056,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 _, yyv4721 := range v { + for _, yyv4774 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4721 == nil { + if yyv4774 == nil { r.EncodeNil() } else { - yym4722 := z.EncBinary() - _ = yym4722 + yym4775 := z.EncBinary() + _ = yym4775 if false { - } else if z.HasExtensions() && z.EncExt(yyv4721) { + } else if z.HasExtensions() && z.EncExt(yyv4774) { } else { - z.EncFallback(yyv4721) + z.EncFallback(yyv4774) } } } @@ -60371,74 +61078,74 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4723 := *v - yyh4723, yyl4723 := z.DecSliceHelperStart() - var yyc4723 bool - if yyl4723 == 0 { - if yyv4723 == nil { - yyv4723 = []pkg7_runtime.Object{} - yyc4723 = true - } else if len(yyv4723) != 0 { - yyv4723 = yyv4723[:0] - yyc4723 = true + yyv4776 := *v + yyh4776, yyl4776 := z.DecSliceHelperStart() + var yyc4776 bool + if yyl4776 == 0 { + if yyv4776 == nil { + yyv4776 = []pkg7_runtime.Object{} + yyc4776 = true + } else if len(yyv4776) != 0 { + yyv4776 = yyv4776[:0] + yyc4776 = true } - } else if yyl4723 > 0 { - var yyrr4723, yyrl4723 int - var yyrt4723 bool - if yyl4723 > cap(yyv4723) { + } else if yyl4776 > 0 { + var yyrr4776, yyrl4776 int + var yyrt4776 bool + if yyl4776 > cap(yyv4776) { - yyrg4723 := len(yyv4723) > 0 - yyv24723 := yyv4723 - yyrl4723, yyrt4723 = z.DecInferLen(yyl4723, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4723 { - if yyrl4723 <= cap(yyv4723) { - yyv4723 = yyv4723[:yyrl4723] + yyrg4776 := len(yyv4776) > 0 + yyv24776 := yyv4776 + yyrl4776, yyrt4776 = z.DecInferLen(yyl4776, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4776 { + if yyrl4776 <= cap(yyv4776) { + yyv4776 = yyv4776[:yyrl4776] } else { - yyv4723 = make([]pkg7_runtime.Object, yyrl4723) + yyv4776 = make([]pkg7_runtime.Object, yyrl4776) } } else { - yyv4723 = make([]pkg7_runtime.Object, yyrl4723) + yyv4776 = make([]pkg7_runtime.Object, yyrl4776) } - yyc4723 = true - yyrr4723 = len(yyv4723) - if yyrg4723 { - copy(yyv4723, yyv24723) + yyc4776 = true + yyrr4776 = len(yyv4776) + if yyrg4776 { + copy(yyv4776, yyv24776) } - } else if yyl4723 != len(yyv4723) { - yyv4723 = yyv4723[:yyl4723] - yyc4723 = true + } else if yyl4776 != len(yyv4776) { + yyv4776 = yyv4776[:yyl4776] + yyc4776 = true } - yyj4723 := 0 - for ; yyj4723 < yyrr4723; yyj4723++ { - yyh4723.ElemContainerState(yyj4723) + yyj4776 := 0 + for ; yyj4776 < yyrr4776; yyj4776++ { + yyh4776.ElemContainerState(yyj4776) if r.TryDecodeAsNil() { - yyv4723[yyj4723] = nil + yyv4776[yyj4776] = nil } else { - yyv4724 := &yyv4723[yyj4723] - yym4725 := z.DecBinary() - _ = yym4725 + yyv4777 := &yyv4776[yyj4776] + yym4778 := z.DecBinary() + _ = yym4778 if false { - } else if z.HasExtensions() && z.DecExt(yyv4724) { + } else if z.HasExtensions() && z.DecExt(yyv4777) { } else { - z.DecFallback(yyv4724, true) + z.DecFallback(yyv4777, true) } } } - if yyrt4723 { - for ; yyj4723 < yyl4723; yyj4723++ { - yyv4723 = append(yyv4723, nil) - yyh4723.ElemContainerState(yyj4723) + if yyrt4776 { + for ; yyj4776 < yyl4776; yyj4776++ { + yyv4776 = append(yyv4776, nil) + yyh4776.ElemContainerState(yyj4776) if r.TryDecodeAsNil() { - yyv4723[yyj4723] = nil + yyv4776[yyj4776] = nil } else { - yyv4726 := &yyv4723[yyj4723] - yym4727 := z.DecBinary() - _ = yym4727 + yyv4779 := &yyv4776[yyj4776] + yym4780 := z.DecBinary() + _ = yym4780 if false { - } else if z.HasExtensions() && z.DecExt(yyv4726) { + } else if z.HasExtensions() && z.DecExt(yyv4779) { } else { - z.DecFallback(yyv4726, true) + z.DecFallback(yyv4779, true) } } @@ -60446,25 +61153,25 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } else { - yyj4723 := 0 - for ; !r.CheckBreak(); yyj4723++ { + yyj4776 := 0 + for ; !r.CheckBreak(); yyj4776++ { - if yyj4723 >= len(yyv4723) { - yyv4723 = append(yyv4723, nil) // var yyz4723 pkg7_runtime.Object - yyc4723 = true + if yyj4776 >= len(yyv4776) { + yyv4776 = append(yyv4776, nil) // var yyz4776 pkg7_runtime.Object + yyc4776 = true } - yyh4723.ElemContainerState(yyj4723) - if yyj4723 < len(yyv4723) { + yyh4776.ElemContainerState(yyj4776) + if yyj4776 < len(yyv4776) { if r.TryDecodeAsNil() { - yyv4723[yyj4723] = nil + yyv4776[yyj4776] = nil } else { - yyv4728 := &yyv4723[yyj4723] - yym4729 := z.DecBinary() - _ = yym4729 + yyv4781 := &yyv4776[yyj4776] + yym4782 := z.DecBinary() + _ = yym4782 if false { - } else if z.HasExtensions() && z.DecExt(yyv4728) { + } else if z.HasExtensions() && z.DecExt(yyv4781) { } else { - z.DecFallback(yyv4728, true) + z.DecFallback(yyv4781, true) } } @@ -60473,17 +61180,17 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } - if yyj4723 < len(yyv4723) { - yyv4723 = yyv4723[:yyj4723] - yyc4723 = true - } else if yyj4723 == 0 && yyv4723 == nil { - yyv4723 = []pkg7_runtime.Object{} - yyc4723 = true + if yyj4776 < len(yyv4776) { + yyv4776 = yyv4776[:yyj4776] + yyc4776 = true + } else if yyj4776 == 0 && yyv4776 == nil { + yyv4776 = []pkg7_runtime.Object{} + yyc4776 = true } } - yyh4723.End() - if yyc4723 { - *v = yyv4723 + yyh4776.End() + if yyc4776 { + *v = yyv4776 } } @@ -60492,10 +61199,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4730 := range v { + for _, yyv4783 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4731 := &yyv4730 - yy4731.CodecEncodeSelf(e) + yy4784 := &yyv4783 + yy4784.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60505,83 +61212,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4732 := *v - yyh4732, yyl4732 := z.DecSliceHelperStart() - var yyc4732 bool - if yyl4732 == 0 { - if yyv4732 == nil { - yyv4732 = []LimitRangeItem{} - yyc4732 = true - } else if len(yyv4732) != 0 { - yyv4732 = yyv4732[:0] - yyc4732 = true + yyv4785 := *v + yyh4785, yyl4785 := z.DecSliceHelperStart() + var yyc4785 bool + if yyl4785 == 0 { + if yyv4785 == nil { + yyv4785 = []LimitRangeItem{} + yyc4785 = true + } else if len(yyv4785) != 0 { + yyv4785 = yyv4785[:0] + yyc4785 = true } - } else if yyl4732 > 0 { - var yyrr4732, yyrl4732 int - var yyrt4732 bool - if yyl4732 > cap(yyv4732) { + } else if yyl4785 > 0 { + var yyrr4785, yyrl4785 int + var yyrt4785 bool + if yyl4785 > cap(yyv4785) { - yyrg4732 := len(yyv4732) > 0 - yyv24732 := yyv4732 - yyrl4732, yyrt4732 = z.DecInferLen(yyl4732, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4732 { - if yyrl4732 <= cap(yyv4732) { - yyv4732 = yyv4732[:yyrl4732] + yyrg4785 := len(yyv4785) > 0 + yyv24785 := yyv4785 + yyrl4785, yyrt4785 = z.DecInferLen(yyl4785, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4785 { + if yyrl4785 <= cap(yyv4785) { + yyv4785 = yyv4785[:yyrl4785] } else { - yyv4732 = make([]LimitRangeItem, yyrl4732) + yyv4785 = make([]LimitRangeItem, yyrl4785) } } else { - yyv4732 = make([]LimitRangeItem, yyrl4732) + yyv4785 = make([]LimitRangeItem, yyrl4785) } - yyc4732 = true - yyrr4732 = len(yyv4732) - if yyrg4732 { - copy(yyv4732, yyv24732) + yyc4785 = true + yyrr4785 = len(yyv4785) + if yyrg4785 { + copy(yyv4785, yyv24785) } - } else if yyl4732 != len(yyv4732) { - yyv4732 = yyv4732[:yyl4732] - yyc4732 = true + } else if yyl4785 != len(yyv4785) { + yyv4785 = yyv4785[:yyl4785] + yyc4785 = true } - yyj4732 := 0 - for ; yyj4732 < yyrr4732; yyj4732++ { - yyh4732.ElemContainerState(yyj4732) + yyj4785 := 0 + for ; yyj4785 < yyrr4785; yyj4785++ { + yyh4785.ElemContainerState(yyj4785) if r.TryDecodeAsNil() { - yyv4732[yyj4732] = LimitRangeItem{} + yyv4785[yyj4785] = LimitRangeItem{} } else { - yyv4733 := &yyv4732[yyj4732] - yyv4733.CodecDecodeSelf(d) + yyv4786 := &yyv4785[yyj4785] + yyv4786.CodecDecodeSelf(d) } } - if yyrt4732 { - for ; yyj4732 < yyl4732; yyj4732++ { - yyv4732 = append(yyv4732, LimitRangeItem{}) - yyh4732.ElemContainerState(yyj4732) + if yyrt4785 { + for ; yyj4785 < yyl4785; yyj4785++ { + yyv4785 = append(yyv4785, LimitRangeItem{}) + yyh4785.ElemContainerState(yyj4785) if r.TryDecodeAsNil() { - yyv4732[yyj4732] = LimitRangeItem{} + yyv4785[yyj4785] = LimitRangeItem{} } else { - yyv4734 := &yyv4732[yyj4732] - yyv4734.CodecDecodeSelf(d) + yyv4787 := &yyv4785[yyj4785] + yyv4787.CodecDecodeSelf(d) } } } } else { - yyj4732 := 0 - for ; !r.CheckBreak(); yyj4732++ { + yyj4785 := 0 + for ; !r.CheckBreak(); yyj4785++ { - if yyj4732 >= len(yyv4732) { - yyv4732 = append(yyv4732, LimitRangeItem{}) // var yyz4732 LimitRangeItem - yyc4732 = true + if yyj4785 >= len(yyv4785) { + yyv4785 = append(yyv4785, LimitRangeItem{}) // var yyz4785 LimitRangeItem + yyc4785 = true } - yyh4732.ElemContainerState(yyj4732) - if yyj4732 < len(yyv4732) { + yyh4785.ElemContainerState(yyj4785) + if yyj4785 < len(yyv4785) { if r.TryDecodeAsNil() { - yyv4732[yyj4732] = LimitRangeItem{} + yyv4785[yyj4785] = LimitRangeItem{} } else { - yyv4735 := &yyv4732[yyj4732] - yyv4735.CodecDecodeSelf(d) + yyv4788 := &yyv4785[yyj4785] + yyv4788.CodecDecodeSelf(d) } } else { @@ -60589,17 +61296,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4732 < len(yyv4732) { - yyv4732 = yyv4732[:yyj4732] - yyc4732 = true - } else if yyj4732 == 0 && yyv4732 == nil { - yyv4732 = []LimitRangeItem{} - yyc4732 = true + if yyj4785 < len(yyv4785) { + yyv4785 = yyv4785[:yyj4785] + yyc4785 = true + } else if yyj4785 == 0 && yyv4785 == nil { + yyv4785 = []LimitRangeItem{} + yyc4785 = true } } - yyh4732.End() - if yyc4732 { - *v = yyv4732 + yyh4785.End() + if yyc4785 { + *v = yyv4785 } } @@ -60608,10 +61315,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4736 := range v { + for _, yyv4789 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4737 := &yyv4736 - yy4737.CodecEncodeSelf(e) + yy4790 := &yyv4789 + yy4790.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60621,83 +61328,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4738 := *v - yyh4738, yyl4738 := z.DecSliceHelperStart() - var yyc4738 bool - if yyl4738 == 0 { - if yyv4738 == nil { - yyv4738 = []LimitRange{} - yyc4738 = true - } else if len(yyv4738) != 0 { - yyv4738 = yyv4738[:0] - yyc4738 = true + yyv4791 := *v + yyh4791, yyl4791 := z.DecSliceHelperStart() + var yyc4791 bool + if yyl4791 == 0 { + if yyv4791 == nil { + yyv4791 = []LimitRange{} + yyc4791 = true + } else if len(yyv4791) != 0 { + yyv4791 = yyv4791[:0] + yyc4791 = true } - } else if yyl4738 > 0 { - var yyrr4738, yyrl4738 int - var yyrt4738 bool - if yyl4738 > cap(yyv4738) { + } else if yyl4791 > 0 { + var yyrr4791, yyrl4791 int + var yyrt4791 bool + if yyl4791 > cap(yyv4791) { - yyrg4738 := len(yyv4738) > 0 - yyv24738 := yyv4738 - yyrl4738, yyrt4738 = z.DecInferLen(yyl4738, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4738 { - if yyrl4738 <= cap(yyv4738) { - yyv4738 = yyv4738[:yyrl4738] + yyrg4791 := len(yyv4791) > 0 + yyv24791 := yyv4791 + yyrl4791, yyrt4791 = z.DecInferLen(yyl4791, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4791 { + if yyrl4791 <= cap(yyv4791) { + yyv4791 = yyv4791[:yyrl4791] } else { - yyv4738 = make([]LimitRange, yyrl4738) + yyv4791 = make([]LimitRange, yyrl4791) } } else { - yyv4738 = make([]LimitRange, yyrl4738) + yyv4791 = make([]LimitRange, yyrl4791) } - yyc4738 = true - yyrr4738 = len(yyv4738) - if yyrg4738 { - copy(yyv4738, yyv24738) + yyc4791 = true + yyrr4791 = len(yyv4791) + if yyrg4791 { + copy(yyv4791, yyv24791) } - } else if yyl4738 != len(yyv4738) { - yyv4738 = yyv4738[:yyl4738] - yyc4738 = true + } else if yyl4791 != len(yyv4791) { + yyv4791 = yyv4791[:yyl4791] + yyc4791 = true } - yyj4738 := 0 - for ; yyj4738 < yyrr4738; yyj4738++ { - yyh4738.ElemContainerState(yyj4738) + yyj4791 := 0 + for ; yyj4791 < yyrr4791; yyj4791++ { + yyh4791.ElemContainerState(yyj4791) if r.TryDecodeAsNil() { - yyv4738[yyj4738] = LimitRange{} + yyv4791[yyj4791] = LimitRange{} } else { - yyv4739 := &yyv4738[yyj4738] - yyv4739.CodecDecodeSelf(d) + yyv4792 := &yyv4791[yyj4791] + yyv4792.CodecDecodeSelf(d) } } - if yyrt4738 { - for ; yyj4738 < yyl4738; yyj4738++ { - yyv4738 = append(yyv4738, LimitRange{}) - yyh4738.ElemContainerState(yyj4738) + if yyrt4791 { + for ; yyj4791 < yyl4791; yyj4791++ { + yyv4791 = append(yyv4791, LimitRange{}) + yyh4791.ElemContainerState(yyj4791) if r.TryDecodeAsNil() { - yyv4738[yyj4738] = LimitRange{} + yyv4791[yyj4791] = LimitRange{} } else { - yyv4740 := &yyv4738[yyj4738] - yyv4740.CodecDecodeSelf(d) + yyv4793 := &yyv4791[yyj4791] + yyv4793.CodecDecodeSelf(d) } } } } else { - yyj4738 := 0 - for ; !r.CheckBreak(); yyj4738++ { + yyj4791 := 0 + for ; !r.CheckBreak(); yyj4791++ { - if yyj4738 >= len(yyv4738) { - yyv4738 = append(yyv4738, LimitRange{}) // var yyz4738 LimitRange - yyc4738 = true + if yyj4791 >= len(yyv4791) { + yyv4791 = append(yyv4791, LimitRange{}) // var yyz4791 LimitRange + yyc4791 = true } - yyh4738.ElemContainerState(yyj4738) - if yyj4738 < len(yyv4738) { + yyh4791.ElemContainerState(yyj4791) + if yyj4791 < len(yyv4791) { if r.TryDecodeAsNil() { - yyv4738[yyj4738] = LimitRange{} + yyv4791[yyj4791] = LimitRange{} } else { - yyv4741 := &yyv4738[yyj4738] - yyv4741.CodecDecodeSelf(d) + yyv4794 := &yyv4791[yyj4791] + yyv4794.CodecDecodeSelf(d) } } else { @@ -60705,17 +61412,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4738 < len(yyv4738) { - yyv4738 = yyv4738[:yyj4738] - yyc4738 = true - } else if yyj4738 == 0 && yyv4738 == nil { - yyv4738 = []LimitRange{} - yyc4738 = true + if yyj4791 < len(yyv4791) { + yyv4791 = yyv4791[:yyj4791] + yyc4791 = true + } else if yyj4791 == 0 && yyv4791 == nil { + yyv4791 = []LimitRange{} + yyc4791 = true } } - yyh4738.End() - if yyc4738 { - *v = yyv4738 + yyh4791.End() + if yyc4791 { + *v = yyv4791 } } @@ -60724,9 +61431,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4742 := range v { + for _, yyv4795 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4742.CodecEncodeSelf(e) + yyv4795.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60736,75 +61443,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4743 := *v - yyh4743, yyl4743 := z.DecSliceHelperStart() - var yyc4743 bool - if yyl4743 == 0 { - if yyv4743 == nil { - yyv4743 = []ResourceQuotaScope{} - yyc4743 = true - } else if len(yyv4743) != 0 { - yyv4743 = yyv4743[:0] - yyc4743 = true + yyv4796 := *v + yyh4796, yyl4796 := z.DecSliceHelperStart() + var yyc4796 bool + if yyl4796 == 0 { + if yyv4796 == nil { + yyv4796 = []ResourceQuotaScope{} + yyc4796 = true + } else if len(yyv4796) != 0 { + yyv4796 = yyv4796[:0] + yyc4796 = true } - } else if yyl4743 > 0 { - var yyrr4743, yyrl4743 int - var yyrt4743 bool - if yyl4743 > cap(yyv4743) { + } else if yyl4796 > 0 { + var yyrr4796, yyrl4796 int + var yyrt4796 bool + if yyl4796 > cap(yyv4796) { - yyrl4743, yyrt4743 = z.DecInferLen(yyl4743, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4743 { - if yyrl4743 <= cap(yyv4743) { - yyv4743 = yyv4743[:yyrl4743] + yyrl4796, yyrt4796 = z.DecInferLen(yyl4796, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4796 { + if yyrl4796 <= cap(yyv4796) { + yyv4796 = yyv4796[:yyrl4796] } else { - yyv4743 = make([]ResourceQuotaScope, yyrl4743) + yyv4796 = make([]ResourceQuotaScope, yyrl4796) } } else { - yyv4743 = make([]ResourceQuotaScope, yyrl4743) + yyv4796 = make([]ResourceQuotaScope, yyrl4796) } - yyc4743 = true - yyrr4743 = len(yyv4743) - } else if yyl4743 != len(yyv4743) { - yyv4743 = yyv4743[:yyl4743] - yyc4743 = true + yyc4796 = true + yyrr4796 = len(yyv4796) + } else if yyl4796 != len(yyv4796) { + yyv4796 = yyv4796[:yyl4796] + yyc4796 = true } - yyj4743 := 0 - for ; yyj4743 < yyrr4743; yyj4743++ { - yyh4743.ElemContainerState(yyj4743) + yyj4796 := 0 + for ; yyj4796 < yyrr4796; yyj4796++ { + yyh4796.ElemContainerState(yyj4796) if r.TryDecodeAsNil() { - yyv4743[yyj4743] = "" + yyv4796[yyj4796] = "" } else { - yyv4743[yyj4743] = ResourceQuotaScope(r.DecodeString()) + yyv4796[yyj4796] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4743 { - for ; yyj4743 < yyl4743; yyj4743++ { - yyv4743 = append(yyv4743, "") - yyh4743.ElemContainerState(yyj4743) + if yyrt4796 { + for ; yyj4796 < yyl4796; yyj4796++ { + yyv4796 = append(yyv4796, "") + yyh4796.ElemContainerState(yyj4796) if r.TryDecodeAsNil() { - yyv4743[yyj4743] = "" + yyv4796[yyj4796] = "" } else { - yyv4743[yyj4743] = ResourceQuotaScope(r.DecodeString()) + yyv4796[yyj4796] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4743 := 0 - for ; !r.CheckBreak(); yyj4743++ { + yyj4796 := 0 + for ; !r.CheckBreak(); yyj4796++ { - if yyj4743 >= len(yyv4743) { - yyv4743 = append(yyv4743, "") // var yyz4743 ResourceQuotaScope - yyc4743 = true + if yyj4796 >= len(yyv4796) { + yyv4796 = append(yyv4796, "") // var yyz4796 ResourceQuotaScope + yyc4796 = true } - yyh4743.ElemContainerState(yyj4743) - if yyj4743 < len(yyv4743) { + yyh4796.ElemContainerState(yyj4796) + if yyj4796 < len(yyv4796) { if r.TryDecodeAsNil() { - yyv4743[yyj4743] = "" + yyv4796[yyj4796] = "" } else { - yyv4743[yyj4743] = ResourceQuotaScope(r.DecodeString()) + yyv4796[yyj4796] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -60812,17 +61519,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4743 < len(yyv4743) { - yyv4743 = yyv4743[:yyj4743] - yyc4743 = true - } else if yyj4743 == 0 && yyv4743 == nil { - yyv4743 = []ResourceQuotaScope{} - yyc4743 = true + if yyj4796 < len(yyv4796) { + yyv4796 = yyv4796[:yyj4796] + yyc4796 = true + } else if yyj4796 == 0 && yyv4796 == nil { + yyv4796 = []ResourceQuotaScope{} + yyc4796 = true } } - yyh4743.End() - if yyc4743 { - *v = yyv4743 + yyh4796.End() + if yyc4796 { + *v = yyv4796 } } @@ -60831,10 +61538,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4747 := range v { + for _, yyv4800 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4748 := &yyv4747 - yy4748.CodecEncodeSelf(e) + yy4801 := &yyv4800 + yy4801.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60844,83 +61551,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4749 := *v - yyh4749, yyl4749 := z.DecSliceHelperStart() - var yyc4749 bool - if yyl4749 == 0 { - if yyv4749 == nil { - yyv4749 = []ResourceQuota{} - yyc4749 = true - } else if len(yyv4749) != 0 { - yyv4749 = yyv4749[:0] - yyc4749 = true + yyv4802 := *v + yyh4802, yyl4802 := z.DecSliceHelperStart() + var yyc4802 bool + if yyl4802 == 0 { + if yyv4802 == nil { + yyv4802 = []ResourceQuota{} + yyc4802 = true + } else if len(yyv4802) != 0 { + yyv4802 = yyv4802[:0] + yyc4802 = true } - } else if yyl4749 > 0 { - var yyrr4749, yyrl4749 int - var yyrt4749 bool - if yyl4749 > cap(yyv4749) { + } else if yyl4802 > 0 { + var yyrr4802, yyrl4802 int + var yyrt4802 bool + if yyl4802 > cap(yyv4802) { - yyrg4749 := len(yyv4749) > 0 - yyv24749 := yyv4749 - yyrl4749, yyrt4749 = z.DecInferLen(yyl4749, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4749 { - if yyrl4749 <= cap(yyv4749) { - yyv4749 = yyv4749[:yyrl4749] + yyrg4802 := len(yyv4802) > 0 + yyv24802 := yyv4802 + yyrl4802, yyrt4802 = z.DecInferLen(yyl4802, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4802 { + if yyrl4802 <= cap(yyv4802) { + yyv4802 = yyv4802[:yyrl4802] } else { - yyv4749 = make([]ResourceQuota, yyrl4749) + yyv4802 = make([]ResourceQuota, yyrl4802) } } else { - yyv4749 = make([]ResourceQuota, yyrl4749) + yyv4802 = make([]ResourceQuota, yyrl4802) } - yyc4749 = true - yyrr4749 = len(yyv4749) - if yyrg4749 { - copy(yyv4749, yyv24749) + yyc4802 = true + yyrr4802 = len(yyv4802) + if yyrg4802 { + copy(yyv4802, yyv24802) } - } else if yyl4749 != len(yyv4749) { - yyv4749 = yyv4749[:yyl4749] - yyc4749 = true + } else if yyl4802 != len(yyv4802) { + yyv4802 = yyv4802[:yyl4802] + yyc4802 = true } - yyj4749 := 0 - for ; yyj4749 < yyrr4749; yyj4749++ { - yyh4749.ElemContainerState(yyj4749) + yyj4802 := 0 + for ; yyj4802 < yyrr4802; yyj4802++ { + yyh4802.ElemContainerState(yyj4802) if r.TryDecodeAsNil() { - yyv4749[yyj4749] = ResourceQuota{} + yyv4802[yyj4802] = ResourceQuota{} } else { - yyv4750 := &yyv4749[yyj4749] - yyv4750.CodecDecodeSelf(d) + yyv4803 := &yyv4802[yyj4802] + yyv4803.CodecDecodeSelf(d) } } - if yyrt4749 { - for ; yyj4749 < yyl4749; yyj4749++ { - yyv4749 = append(yyv4749, ResourceQuota{}) - yyh4749.ElemContainerState(yyj4749) + if yyrt4802 { + for ; yyj4802 < yyl4802; yyj4802++ { + yyv4802 = append(yyv4802, ResourceQuota{}) + yyh4802.ElemContainerState(yyj4802) if r.TryDecodeAsNil() { - yyv4749[yyj4749] = ResourceQuota{} + yyv4802[yyj4802] = ResourceQuota{} } else { - yyv4751 := &yyv4749[yyj4749] - yyv4751.CodecDecodeSelf(d) + yyv4804 := &yyv4802[yyj4802] + yyv4804.CodecDecodeSelf(d) } } } } else { - yyj4749 := 0 - for ; !r.CheckBreak(); yyj4749++ { + yyj4802 := 0 + for ; !r.CheckBreak(); yyj4802++ { - if yyj4749 >= len(yyv4749) { - yyv4749 = append(yyv4749, ResourceQuota{}) // var yyz4749 ResourceQuota - yyc4749 = true + if yyj4802 >= len(yyv4802) { + yyv4802 = append(yyv4802, ResourceQuota{}) // var yyz4802 ResourceQuota + yyc4802 = true } - yyh4749.ElemContainerState(yyj4749) - if yyj4749 < len(yyv4749) { + yyh4802.ElemContainerState(yyj4802) + if yyj4802 < len(yyv4802) { if r.TryDecodeAsNil() { - yyv4749[yyj4749] = ResourceQuota{} + yyv4802[yyj4802] = ResourceQuota{} } else { - yyv4752 := &yyv4749[yyj4749] - yyv4752.CodecDecodeSelf(d) + yyv4805 := &yyv4802[yyj4802] + yyv4805.CodecDecodeSelf(d) } } else { @@ -60928,17 +61635,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4749 < len(yyv4749) { - yyv4749 = yyv4749[:yyj4749] - yyc4749 = true - } else if yyj4749 == 0 && yyv4749 == nil { - yyv4749 = []ResourceQuota{} - yyc4749 = true + if yyj4802 < len(yyv4802) { + yyv4802 = yyv4802[:yyj4802] + yyc4802 = true + } else if yyj4802 == 0 && yyv4802 == nil { + yyv4802 = []ResourceQuota{} + yyc4802 = true } } - yyh4749.End() - if yyc4749 { - *v = yyv4749 + yyh4802.End() + if yyc4802 { + *v = yyv4802 } } @@ -60947,23 +61654,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4753, yyv4753 := range v { + for yyk4806, yyv4806 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4754 := z.EncBinary() - _ = yym4754 + yym4807 := z.EncBinary() + _ = yym4807 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4753)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4806)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4753 == nil { + if yyv4806 == nil { r.EncodeNil() } else { - yym4755 := z.EncBinary() - _ = yym4755 + yym4808 := z.EncBinary() + _ = yym4808 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4753)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4806)) } } } @@ -60975,80 +61682,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4756 := *v - yyl4756 := r.ReadMapStart() - yybh4756 := z.DecBasicHandle() - if yyv4756 == nil { - yyrl4756, _ := z.DecInferLen(yyl4756, yybh4756.MaxInitLen, 40) - yyv4756 = make(map[string][]uint8, yyrl4756) - *v = yyv4756 + yyv4809 := *v + yyl4809 := r.ReadMapStart() + yybh4809 := z.DecBasicHandle() + if yyv4809 == nil { + yyrl4809, _ := z.DecInferLen(yyl4809, yybh4809.MaxInitLen, 40) + yyv4809 = make(map[string][]uint8, yyrl4809) + *v = yyv4809 } - var yymk4756 string - var yymv4756 []uint8 - var yymg4756 bool - if yybh4756.MapValueReset { - yymg4756 = true + var yymk4809 string + var yymv4809 []uint8 + var yymg4809 bool + if yybh4809.MapValueReset { + yymg4809 = true } - if yyl4756 > 0 { - for yyj4756 := 0; yyj4756 < yyl4756; yyj4756++ { + if yyl4809 > 0 { + for yyj4809 := 0; yyj4809 < yyl4809; yyj4809++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4756 = "" + yymk4809 = "" } else { - yymk4756 = string(r.DecodeString()) + yymk4809 = string(r.DecodeString()) } - if yymg4756 { - yymv4756 = yyv4756[yymk4756] + if yymg4809 { + yymv4809 = yyv4809[yymk4809] } else { - yymv4756 = nil + yymv4809 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4756 = nil + yymv4809 = nil } else { - yyv4758 := &yymv4756 - yym4759 := z.DecBinary() - _ = yym4759 + yyv4811 := &yymv4809 + yym4812 := z.DecBinary() + _ = yym4812 if false { } else { - *yyv4758 = r.DecodeBytes(*(*[]byte)(yyv4758), false, false) + *yyv4811 = r.DecodeBytes(*(*[]byte)(yyv4811), false, false) } } - if yyv4756 != nil { - yyv4756[yymk4756] = yymv4756 + if yyv4809 != nil { + yyv4809[yymk4809] = yymv4809 } } - } else if yyl4756 < 0 { - for yyj4756 := 0; !r.CheckBreak(); yyj4756++ { + } else if yyl4809 < 0 { + for yyj4809 := 0; !r.CheckBreak(); yyj4809++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4756 = "" + yymk4809 = "" } else { - yymk4756 = string(r.DecodeString()) + yymk4809 = string(r.DecodeString()) } - if yymg4756 { - yymv4756 = yyv4756[yymk4756] + if yymg4809 { + yymv4809 = yyv4809[yymk4809] } else { - yymv4756 = nil + yymv4809 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4756 = nil + yymv4809 = nil } else { - yyv4761 := &yymv4756 - yym4762 := z.DecBinary() - _ = yym4762 + yyv4814 := &yymv4809 + yym4815 := z.DecBinary() + _ = yym4815 if false { } else { - *yyv4761 = r.DecodeBytes(*(*[]byte)(yyv4761), false, false) + *yyv4814 = r.DecodeBytes(*(*[]byte)(yyv4814), false, false) } } - if yyv4756 != nil { - yyv4756[yymk4756] = yymv4756 + if yyv4809 != nil { + yyv4809[yymk4809] = yymv4809 } } } // else len==0: TODO: Should we clear map entries? @@ -61060,10 +61767,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4763 := range v { + for _, yyv4816 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4764 := &yyv4763 - yy4764.CodecEncodeSelf(e) + yy4817 := &yyv4816 + yy4817.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61073,83 +61780,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4765 := *v - yyh4765, yyl4765 := z.DecSliceHelperStart() - var yyc4765 bool - if yyl4765 == 0 { - if yyv4765 == nil { - yyv4765 = []Secret{} - yyc4765 = true - } else if len(yyv4765) != 0 { - yyv4765 = yyv4765[:0] - yyc4765 = true + yyv4818 := *v + yyh4818, yyl4818 := z.DecSliceHelperStart() + var yyc4818 bool + if yyl4818 == 0 { + if yyv4818 == nil { + yyv4818 = []Secret{} + yyc4818 = true + } else if len(yyv4818) != 0 { + yyv4818 = yyv4818[:0] + yyc4818 = true } - } else if yyl4765 > 0 { - var yyrr4765, yyrl4765 int - var yyrt4765 bool - if yyl4765 > cap(yyv4765) { + } else if yyl4818 > 0 { + var yyrr4818, yyrl4818 int + var yyrt4818 bool + if yyl4818 > cap(yyv4818) { - yyrg4765 := len(yyv4765) > 0 - yyv24765 := yyv4765 - yyrl4765, yyrt4765 = z.DecInferLen(yyl4765, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4765 { - if yyrl4765 <= cap(yyv4765) { - yyv4765 = yyv4765[:yyrl4765] + yyrg4818 := len(yyv4818) > 0 + yyv24818 := yyv4818 + yyrl4818, yyrt4818 = z.DecInferLen(yyl4818, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4818 { + if yyrl4818 <= cap(yyv4818) { + yyv4818 = yyv4818[:yyrl4818] } else { - yyv4765 = make([]Secret, yyrl4765) + yyv4818 = make([]Secret, yyrl4818) } } else { - yyv4765 = make([]Secret, yyrl4765) + yyv4818 = make([]Secret, yyrl4818) } - yyc4765 = true - yyrr4765 = len(yyv4765) - if yyrg4765 { - copy(yyv4765, yyv24765) + yyc4818 = true + yyrr4818 = len(yyv4818) + if yyrg4818 { + copy(yyv4818, yyv24818) } - } else if yyl4765 != len(yyv4765) { - yyv4765 = yyv4765[:yyl4765] - yyc4765 = true + } else if yyl4818 != len(yyv4818) { + yyv4818 = yyv4818[:yyl4818] + yyc4818 = true } - yyj4765 := 0 - for ; yyj4765 < yyrr4765; yyj4765++ { - yyh4765.ElemContainerState(yyj4765) + yyj4818 := 0 + for ; yyj4818 < yyrr4818; yyj4818++ { + yyh4818.ElemContainerState(yyj4818) if r.TryDecodeAsNil() { - yyv4765[yyj4765] = Secret{} + yyv4818[yyj4818] = Secret{} } else { - yyv4766 := &yyv4765[yyj4765] - yyv4766.CodecDecodeSelf(d) + yyv4819 := &yyv4818[yyj4818] + yyv4819.CodecDecodeSelf(d) } } - if yyrt4765 { - for ; yyj4765 < yyl4765; yyj4765++ { - yyv4765 = append(yyv4765, Secret{}) - yyh4765.ElemContainerState(yyj4765) + if yyrt4818 { + for ; yyj4818 < yyl4818; yyj4818++ { + yyv4818 = append(yyv4818, Secret{}) + yyh4818.ElemContainerState(yyj4818) if r.TryDecodeAsNil() { - yyv4765[yyj4765] = Secret{} + yyv4818[yyj4818] = Secret{} } else { - yyv4767 := &yyv4765[yyj4765] - yyv4767.CodecDecodeSelf(d) + yyv4820 := &yyv4818[yyj4818] + yyv4820.CodecDecodeSelf(d) } } } } else { - yyj4765 := 0 - for ; !r.CheckBreak(); yyj4765++ { + yyj4818 := 0 + for ; !r.CheckBreak(); yyj4818++ { - if yyj4765 >= len(yyv4765) { - yyv4765 = append(yyv4765, Secret{}) // var yyz4765 Secret - yyc4765 = true + if yyj4818 >= len(yyv4818) { + yyv4818 = append(yyv4818, Secret{}) // var yyz4818 Secret + yyc4818 = true } - yyh4765.ElemContainerState(yyj4765) - if yyj4765 < len(yyv4765) { + yyh4818.ElemContainerState(yyj4818) + if yyj4818 < len(yyv4818) { if r.TryDecodeAsNil() { - yyv4765[yyj4765] = Secret{} + yyv4818[yyj4818] = Secret{} } else { - yyv4768 := &yyv4765[yyj4765] - yyv4768.CodecDecodeSelf(d) + yyv4821 := &yyv4818[yyj4818] + yyv4821.CodecDecodeSelf(d) } } else { @@ -61157,17 +61864,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4765 < len(yyv4765) { - yyv4765 = yyv4765[:yyj4765] - yyc4765 = true - } else if yyj4765 == 0 && yyv4765 == nil { - yyv4765 = []Secret{} - yyc4765 = true + if yyj4818 < len(yyv4818) { + yyv4818 = yyv4818[:yyj4818] + yyc4818 = true + } else if yyj4818 == 0 && yyv4818 == nil { + yyv4818 = []Secret{} + yyc4818 = true } } - yyh4765.End() - if yyc4765 { - *v = yyv4765 + yyh4818.End() + if yyc4818 { + *v = yyv4818 } } @@ -61176,10 +61883,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4769 := range v { + for _, yyv4822 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4770 := &yyv4769 - yy4770.CodecEncodeSelf(e) + yy4823 := &yyv4822 + yy4823.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61189,83 +61896,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4771 := *v - yyh4771, yyl4771 := z.DecSliceHelperStart() - var yyc4771 bool - if yyl4771 == 0 { - if yyv4771 == nil { - yyv4771 = []ConfigMap{} - yyc4771 = true - } else if len(yyv4771) != 0 { - yyv4771 = yyv4771[:0] - yyc4771 = true + yyv4824 := *v + yyh4824, yyl4824 := z.DecSliceHelperStart() + var yyc4824 bool + if yyl4824 == 0 { + if yyv4824 == nil { + yyv4824 = []ConfigMap{} + yyc4824 = true + } else if len(yyv4824) != 0 { + yyv4824 = yyv4824[:0] + yyc4824 = true } - } else if yyl4771 > 0 { - var yyrr4771, yyrl4771 int - var yyrt4771 bool - if yyl4771 > cap(yyv4771) { + } else if yyl4824 > 0 { + var yyrr4824, yyrl4824 int + var yyrt4824 bool + if yyl4824 > cap(yyv4824) { - yyrg4771 := len(yyv4771) > 0 - yyv24771 := yyv4771 - yyrl4771, yyrt4771 = z.DecInferLen(yyl4771, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4771 { - if yyrl4771 <= cap(yyv4771) { - yyv4771 = yyv4771[:yyrl4771] + yyrg4824 := len(yyv4824) > 0 + yyv24824 := yyv4824 + yyrl4824, yyrt4824 = z.DecInferLen(yyl4824, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4824 { + if yyrl4824 <= cap(yyv4824) { + yyv4824 = yyv4824[:yyrl4824] } else { - yyv4771 = make([]ConfigMap, yyrl4771) + yyv4824 = make([]ConfigMap, yyrl4824) } } else { - yyv4771 = make([]ConfigMap, yyrl4771) + yyv4824 = make([]ConfigMap, yyrl4824) } - yyc4771 = true - yyrr4771 = len(yyv4771) - if yyrg4771 { - copy(yyv4771, yyv24771) + yyc4824 = true + yyrr4824 = len(yyv4824) + if yyrg4824 { + copy(yyv4824, yyv24824) } - } else if yyl4771 != len(yyv4771) { - yyv4771 = yyv4771[:yyl4771] - yyc4771 = true + } else if yyl4824 != len(yyv4824) { + yyv4824 = yyv4824[:yyl4824] + yyc4824 = true } - yyj4771 := 0 - for ; yyj4771 < yyrr4771; yyj4771++ { - yyh4771.ElemContainerState(yyj4771) + yyj4824 := 0 + for ; yyj4824 < yyrr4824; yyj4824++ { + yyh4824.ElemContainerState(yyj4824) if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ConfigMap{} + yyv4824[yyj4824] = ConfigMap{} } else { - yyv4772 := &yyv4771[yyj4771] - yyv4772.CodecDecodeSelf(d) + yyv4825 := &yyv4824[yyj4824] + yyv4825.CodecDecodeSelf(d) } } - if yyrt4771 { - for ; yyj4771 < yyl4771; yyj4771++ { - yyv4771 = append(yyv4771, ConfigMap{}) - yyh4771.ElemContainerState(yyj4771) + if yyrt4824 { + for ; yyj4824 < yyl4824; yyj4824++ { + yyv4824 = append(yyv4824, ConfigMap{}) + yyh4824.ElemContainerState(yyj4824) if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ConfigMap{} + yyv4824[yyj4824] = ConfigMap{} } else { - yyv4773 := &yyv4771[yyj4771] - yyv4773.CodecDecodeSelf(d) + yyv4826 := &yyv4824[yyj4824] + yyv4826.CodecDecodeSelf(d) } } } } else { - yyj4771 := 0 - for ; !r.CheckBreak(); yyj4771++ { + yyj4824 := 0 + for ; !r.CheckBreak(); yyj4824++ { - if yyj4771 >= len(yyv4771) { - yyv4771 = append(yyv4771, ConfigMap{}) // var yyz4771 ConfigMap - yyc4771 = true + if yyj4824 >= len(yyv4824) { + yyv4824 = append(yyv4824, ConfigMap{}) // var yyz4824 ConfigMap + yyc4824 = true } - yyh4771.ElemContainerState(yyj4771) - if yyj4771 < len(yyv4771) { + yyh4824.ElemContainerState(yyj4824) + if yyj4824 < len(yyv4824) { if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ConfigMap{} + yyv4824[yyj4824] = ConfigMap{} } else { - yyv4774 := &yyv4771[yyj4771] - yyv4774.CodecDecodeSelf(d) + yyv4827 := &yyv4824[yyj4824] + yyv4827.CodecDecodeSelf(d) } } else { @@ -61273,17 +61980,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4771 < len(yyv4771) { - yyv4771 = yyv4771[:yyj4771] - yyc4771 = true - } else if yyj4771 == 0 && yyv4771 == nil { - yyv4771 = []ConfigMap{} - yyc4771 = true + if yyj4824 < len(yyv4824) { + yyv4824 = yyv4824[:yyj4824] + yyc4824 = true + } else if yyj4824 == 0 && yyv4824 == nil { + yyv4824 = []ConfigMap{} + yyc4824 = true } } - yyh4771.End() - if yyc4771 { - *v = yyv4771 + yyh4824.End() + if yyc4824 { + *v = yyv4824 } } @@ -61292,10 +61999,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4775 := range v { + for _, yyv4828 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4776 := &yyv4775 - yy4776.CodecEncodeSelf(e) + yy4829 := &yyv4828 + yy4829.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61305,83 +62012,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4777 := *v - yyh4777, yyl4777 := z.DecSliceHelperStart() - var yyc4777 bool - if yyl4777 == 0 { - if yyv4777 == nil { - yyv4777 = []ComponentCondition{} - yyc4777 = true - } else if len(yyv4777) != 0 { - yyv4777 = yyv4777[:0] - yyc4777 = true + yyv4830 := *v + yyh4830, yyl4830 := z.DecSliceHelperStart() + var yyc4830 bool + if yyl4830 == 0 { + if yyv4830 == nil { + yyv4830 = []ComponentCondition{} + yyc4830 = true + } else if len(yyv4830) != 0 { + yyv4830 = yyv4830[:0] + yyc4830 = true } - } else if yyl4777 > 0 { - var yyrr4777, yyrl4777 int - var yyrt4777 bool - if yyl4777 > cap(yyv4777) { + } else if yyl4830 > 0 { + var yyrr4830, yyrl4830 int + var yyrt4830 bool + if yyl4830 > cap(yyv4830) { - yyrg4777 := len(yyv4777) > 0 - yyv24777 := yyv4777 - yyrl4777, yyrt4777 = z.DecInferLen(yyl4777, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4777 { - if yyrl4777 <= cap(yyv4777) { - yyv4777 = yyv4777[:yyrl4777] + yyrg4830 := len(yyv4830) > 0 + yyv24830 := yyv4830 + yyrl4830, yyrt4830 = z.DecInferLen(yyl4830, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4830 { + if yyrl4830 <= cap(yyv4830) { + yyv4830 = yyv4830[:yyrl4830] } else { - yyv4777 = make([]ComponentCondition, yyrl4777) + yyv4830 = make([]ComponentCondition, yyrl4830) } } else { - yyv4777 = make([]ComponentCondition, yyrl4777) + yyv4830 = make([]ComponentCondition, yyrl4830) } - yyc4777 = true - yyrr4777 = len(yyv4777) - if yyrg4777 { - copy(yyv4777, yyv24777) + yyc4830 = true + yyrr4830 = len(yyv4830) + if yyrg4830 { + copy(yyv4830, yyv24830) } - } else if yyl4777 != len(yyv4777) { - yyv4777 = yyv4777[:yyl4777] - yyc4777 = true + } else if yyl4830 != len(yyv4830) { + yyv4830 = yyv4830[:yyl4830] + yyc4830 = true } - yyj4777 := 0 - for ; yyj4777 < yyrr4777; yyj4777++ { - yyh4777.ElemContainerState(yyj4777) + yyj4830 := 0 + for ; yyj4830 < yyrr4830; yyj4830++ { + yyh4830.ElemContainerState(yyj4830) if r.TryDecodeAsNil() { - yyv4777[yyj4777] = ComponentCondition{} + yyv4830[yyj4830] = ComponentCondition{} } else { - yyv4778 := &yyv4777[yyj4777] - yyv4778.CodecDecodeSelf(d) + yyv4831 := &yyv4830[yyj4830] + yyv4831.CodecDecodeSelf(d) } } - if yyrt4777 { - for ; yyj4777 < yyl4777; yyj4777++ { - yyv4777 = append(yyv4777, ComponentCondition{}) - yyh4777.ElemContainerState(yyj4777) + if yyrt4830 { + for ; yyj4830 < yyl4830; yyj4830++ { + yyv4830 = append(yyv4830, ComponentCondition{}) + yyh4830.ElemContainerState(yyj4830) if r.TryDecodeAsNil() { - yyv4777[yyj4777] = ComponentCondition{} + yyv4830[yyj4830] = ComponentCondition{} } else { - yyv4779 := &yyv4777[yyj4777] - yyv4779.CodecDecodeSelf(d) + yyv4832 := &yyv4830[yyj4830] + yyv4832.CodecDecodeSelf(d) } } } } else { - yyj4777 := 0 - for ; !r.CheckBreak(); yyj4777++ { + yyj4830 := 0 + for ; !r.CheckBreak(); yyj4830++ { - if yyj4777 >= len(yyv4777) { - yyv4777 = append(yyv4777, ComponentCondition{}) // var yyz4777 ComponentCondition - yyc4777 = true + if yyj4830 >= len(yyv4830) { + yyv4830 = append(yyv4830, ComponentCondition{}) // var yyz4830 ComponentCondition + yyc4830 = true } - yyh4777.ElemContainerState(yyj4777) - if yyj4777 < len(yyv4777) { + yyh4830.ElemContainerState(yyj4830) + if yyj4830 < len(yyv4830) { if r.TryDecodeAsNil() { - yyv4777[yyj4777] = ComponentCondition{} + yyv4830[yyj4830] = ComponentCondition{} } else { - yyv4780 := &yyv4777[yyj4777] - yyv4780.CodecDecodeSelf(d) + yyv4833 := &yyv4830[yyj4830] + yyv4833.CodecDecodeSelf(d) } } else { @@ -61389,17 +62096,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4777 < len(yyv4777) { - yyv4777 = yyv4777[:yyj4777] - yyc4777 = true - } else if yyj4777 == 0 && yyv4777 == nil { - yyv4777 = []ComponentCondition{} - yyc4777 = true + if yyj4830 < len(yyv4830) { + yyv4830 = yyv4830[:yyj4830] + yyc4830 = true + } else if yyj4830 == 0 && yyv4830 == nil { + yyv4830 = []ComponentCondition{} + yyc4830 = true } } - yyh4777.End() - if yyc4777 { - *v = yyv4777 + yyh4830.End() + if yyc4830 { + *v = yyv4830 } } @@ -61408,10 +62115,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4781 := range v { + for _, yyv4834 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4782 := &yyv4781 - yy4782.CodecEncodeSelf(e) + yy4835 := &yyv4834 + yy4835.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61421,83 +62128,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4783 := *v - yyh4783, yyl4783 := z.DecSliceHelperStart() - var yyc4783 bool - if yyl4783 == 0 { - if yyv4783 == nil { - yyv4783 = []ComponentStatus{} - yyc4783 = true - } else if len(yyv4783) != 0 { - yyv4783 = yyv4783[:0] - yyc4783 = true + yyv4836 := *v + yyh4836, yyl4836 := z.DecSliceHelperStart() + var yyc4836 bool + if yyl4836 == 0 { + if yyv4836 == nil { + yyv4836 = []ComponentStatus{} + yyc4836 = true + } else if len(yyv4836) != 0 { + yyv4836 = yyv4836[:0] + yyc4836 = true } - } else if yyl4783 > 0 { - var yyrr4783, yyrl4783 int - var yyrt4783 bool - if yyl4783 > cap(yyv4783) { + } else if yyl4836 > 0 { + var yyrr4836, yyrl4836 int + var yyrt4836 bool + if yyl4836 > cap(yyv4836) { - yyrg4783 := len(yyv4783) > 0 - yyv24783 := yyv4783 - yyrl4783, yyrt4783 = z.DecInferLen(yyl4783, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4783 { - if yyrl4783 <= cap(yyv4783) { - yyv4783 = yyv4783[:yyrl4783] + yyrg4836 := len(yyv4836) > 0 + yyv24836 := yyv4836 + yyrl4836, yyrt4836 = z.DecInferLen(yyl4836, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4836 { + if yyrl4836 <= cap(yyv4836) { + yyv4836 = yyv4836[:yyrl4836] } else { - yyv4783 = make([]ComponentStatus, yyrl4783) + yyv4836 = make([]ComponentStatus, yyrl4836) } } else { - yyv4783 = make([]ComponentStatus, yyrl4783) + yyv4836 = make([]ComponentStatus, yyrl4836) } - yyc4783 = true - yyrr4783 = len(yyv4783) - if yyrg4783 { - copy(yyv4783, yyv24783) + yyc4836 = true + yyrr4836 = len(yyv4836) + if yyrg4836 { + copy(yyv4836, yyv24836) } - } else if yyl4783 != len(yyv4783) { - yyv4783 = yyv4783[:yyl4783] - yyc4783 = true + } else if yyl4836 != len(yyv4836) { + yyv4836 = yyv4836[:yyl4836] + yyc4836 = true } - yyj4783 := 0 - for ; yyj4783 < yyrr4783; yyj4783++ { - yyh4783.ElemContainerState(yyj4783) + yyj4836 := 0 + for ; yyj4836 < yyrr4836; yyj4836++ { + yyh4836.ElemContainerState(yyj4836) if r.TryDecodeAsNil() { - yyv4783[yyj4783] = ComponentStatus{} + yyv4836[yyj4836] = ComponentStatus{} } else { - yyv4784 := &yyv4783[yyj4783] - yyv4784.CodecDecodeSelf(d) + yyv4837 := &yyv4836[yyj4836] + yyv4837.CodecDecodeSelf(d) } } - if yyrt4783 { - for ; yyj4783 < yyl4783; yyj4783++ { - yyv4783 = append(yyv4783, ComponentStatus{}) - yyh4783.ElemContainerState(yyj4783) + if yyrt4836 { + for ; yyj4836 < yyl4836; yyj4836++ { + yyv4836 = append(yyv4836, ComponentStatus{}) + yyh4836.ElemContainerState(yyj4836) if r.TryDecodeAsNil() { - yyv4783[yyj4783] = ComponentStatus{} + yyv4836[yyj4836] = ComponentStatus{} } else { - yyv4785 := &yyv4783[yyj4783] - yyv4785.CodecDecodeSelf(d) + yyv4838 := &yyv4836[yyj4836] + yyv4838.CodecDecodeSelf(d) } } } } else { - yyj4783 := 0 - for ; !r.CheckBreak(); yyj4783++ { + yyj4836 := 0 + for ; !r.CheckBreak(); yyj4836++ { - if yyj4783 >= len(yyv4783) { - yyv4783 = append(yyv4783, ComponentStatus{}) // var yyz4783 ComponentStatus - yyc4783 = true + if yyj4836 >= len(yyv4836) { + yyv4836 = append(yyv4836, ComponentStatus{}) // var yyz4836 ComponentStatus + yyc4836 = true } - yyh4783.ElemContainerState(yyj4783) - if yyj4783 < len(yyv4783) { + yyh4836.ElemContainerState(yyj4836) + if yyj4836 < len(yyv4836) { if r.TryDecodeAsNil() { - yyv4783[yyj4783] = ComponentStatus{} + yyv4836[yyj4836] = ComponentStatus{} } else { - yyv4786 := &yyv4783[yyj4783] - yyv4786.CodecDecodeSelf(d) + yyv4839 := &yyv4836[yyj4836] + yyv4839.CodecDecodeSelf(d) } } else { @@ -61505,16 +62212,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4783 < len(yyv4783) { - yyv4783 = yyv4783[:yyj4783] - yyc4783 = true - } else if yyj4783 == 0 && yyv4783 == nil { - yyv4783 = []ComponentStatus{} - yyc4783 = true + if yyj4836 < len(yyv4836) { + yyv4836 = yyv4836[:yyj4836] + yyc4836 = true + } else if yyj4836 == 0 && yyv4836 == nil { + yyv4836 = []ComponentStatus{} + yyc4836 = true } } - yyh4783.End() - if yyc4783 { - *v = yyv4783 + yyh4836.End() + if yyc4836 { + *v = yyv4836 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index bfd5b9535fe..99692b56331 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -241,6 +241,8 @@ type VolumeSource struct { ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty"` // VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty"` + // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty"` } // Similar to VolumeSource but meant for the administrator who creates PVs. @@ -283,6 +285,8 @@ type PersistentVolumeSource struct { AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty"` // VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty"` + // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty"` } type PersistentVolumeClaimVolumeSource struct { @@ -793,6 +797,31 @@ type VsphereVirtualDiskVolumeSource struct { FSType string `json:"fsType,omitempty"` } +type AzureDataDiskCachingMode string + +const ( + AzureDataDiskCachingNone AzureDataDiskCachingMode = "None" + AzureDataDiskCachingReadOnly AzureDataDiskCachingMode = "ReadOnly" + AzureDataDiskCachingReadWrite AzureDataDiskCachingMode = "ReadWrite" +) + +// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +type AzureDiskVolumeSource struct { + // The Name of the data disk in the blob storage + DiskName string `json:"diskName"` + // The URI the the data disk in the blob storage + DataDiskURI string `json:"diskURI"` + // Host Caching mode: None, Read Only, Read Write. + CachingMode *AzureDataDiskCachingMode `json:"cachingMode,omitempty"` + // Filesystem type to mount. + // Must be a filesystem type supported by the host operating system. + // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + FSType *string `json:"fsType,omitempty"` + // Defaults to false (read/write). ReadOnly here will force + // the ReadOnly setting in VolumeMounts. + ReadOnly *bool `json:"readOnly,omitempty"` +} + // Adapts a ConfigMap into a volume. // // The contents of the target ConfigMap's Data field will be presented in a diff --git a/pkg/api/v1/defaults.go b/pkg/api/v1/defaults.go index 15810468b74..64120bfd8dd 100644 --- a/pkg/api/v1/defaults.go +++ b/pkg/api/v1/defaults.go @@ -218,6 +218,20 @@ func SetDefaults_ISCSIVolumeSource(obj *ISCSIVolumeSource) { obj.ISCSIInterface = "default" } } +func SetDefaults_AzureDiskVolumeSource(obj *AzureDiskVolumeSource) { + if obj.CachingMode == nil { + obj.CachingMode = new(AzureDataDiskCachingMode) + *obj.CachingMode = AzureDataDiskCachingNone + } + if obj.FSType == nil { + obj.FSType = new(string) + *obj.FSType = "ext4" + } + if obj.ReadOnly == nil { + obj.ReadOnly = new(bool) + *obj.ReadOnly = false + } +} func SetDefaults_Endpoints(obj *Endpoints) { for i := range obj.Subsets { ss := &obj.Subsets[i] diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index 2c552a3381c..d60c24acc98 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -29,6 +29,7 @@ limitations under the License. Affinity AttachedVolume AvoidPods + AzureDiskVolumeSource AzureFileVolumeSource Binding Capabilities @@ -224,628 +225,632 @@ func (m *AvoidPods) Reset() { *m = AvoidPods{} } func (*AvoidPods) ProtoMessage() {} func (*AvoidPods) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{3} } +func (m *AzureDiskVolumeSource) Reset() { *m = AzureDiskVolumeSource{} } +func (*AzureDiskVolumeSource) ProtoMessage() {} +func (*AzureDiskVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{4} } + func (m *AzureFileVolumeSource) Reset() { *m = AzureFileVolumeSource{} } func (*AzureFileVolumeSource) ProtoMessage() {} -func (*AzureFileVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{4} } +func (*AzureFileVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{5} } func (m *Binding) Reset() { *m = Binding{} } func (*Binding) ProtoMessage() {} -func (*Binding) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{5} } +func (*Binding) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{6} } func (m *Capabilities) Reset() { *m = Capabilities{} } func (*Capabilities) ProtoMessage() {} -func (*Capabilities) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{6} } +func (*Capabilities) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{7} } func (m *CephFSVolumeSource) Reset() { *m = CephFSVolumeSource{} } func (*CephFSVolumeSource) ProtoMessage() {} -func (*CephFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{7} } +func (*CephFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{8} } func (m *CinderVolumeSource) Reset() { *m = CinderVolumeSource{} } func (*CinderVolumeSource) ProtoMessage() {} -func (*CinderVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{8} } +func (*CinderVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{9} } func (m *ComponentCondition) Reset() { *m = ComponentCondition{} } func (*ComponentCondition) ProtoMessage() {} -func (*ComponentCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{9} } +func (*ComponentCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{10} } func (m *ComponentStatus) Reset() { *m = ComponentStatus{} } func (*ComponentStatus) ProtoMessage() {} -func (*ComponentStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{10} } +func (*ComponentStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{11} } func (m *ComponentStatusList) Reset() { *m = ComponentStatusList{} } func (*ComponentStatusList) ProtoMessage() {} -func (*ComponentStatusList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{11} } +func (*ComponentStatusList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{12} } func (m *ConfigMap) Reset() { *m = ConfigMap{} } func (*ConfigMap) ProtoMessage() {} -func (*ConfigMap) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{12} } +func (*ConfigMap) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{13} } func (m *ConfigMapKeySelector) Reset() { *m = ConfigMapKeySelector{} } func (*ConfigMapKeySelector) ProtoMessage() {} -func (*ConfigMapKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{13} } +func (*ConfigMapKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{14} } func (m *ConfigMapList) Reset() { *m = ConfigMapList{} } func (*ConfigMapList) ProtoMessage() {} -func (*ConfigMapList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{14} } +func (*ConfigMapList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{15} } func (m *ConfigMapVolumeSource) Reset() { *m = ConfigMapVolumeSource{} } func (*ConfigMapVolumeSource) ProtoMessage() {} -func (*ConfigMapVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{15} } +func (*ConfigMapVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{16} } func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} -func (*Container) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{16} } +func (*Container) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{17} } func (m *ContainerImage) Reset() { *m = ContainerImage{} } func (*ContainerImage) ProtoMessage() {} -func (*ContainerImage) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{17} } +func (*ContainerImage) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{18} } func (m *ContainerPort) Reset() { *m = ContainerPort{} } func (*ContainerPort) ProtoMessage() {} -func (*ContainerPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{18} } +func (*ContainerPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{19} } func (m *ContainerState) Reset() { *m = ContainerState{} } func (*ContainerState) ProtoMessage() {} -func (*ContainerState) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{19} } +func (*ContainerState) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{20} } func (m *ContainerStateRunning) Reset() { *m = ContainerStateRunning{} } func (*ContainerStateRunning) ProtoMessage() {} -func (*ContainerStateRunning) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{20} } +func (*ContainerStateRunning) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{21} } func (m *ContainerStateTerminated) Reset() { *m = ContainerStateTerminated{} } func (*ContainerStateTerminated) ProtoMessage() {} func (*ContainerStateTerminated) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{21} + return fileDescriptorGenerated, []int{22} } func (m *ContainerStateWaiting) Reset() { *m = ContainerStateWaiting{} } func (*ContainerStateWaiting) ProtoMessage() {} -func (*ContainerStateWaiting) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{22} } +func (*ContainerStateWaiting) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{23} } func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} -func (*ContainerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{23} } +func (*ContainerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{24} } func (m *DaemonEndpoint) Reset() { *m = DaemonEndpoint{} } func (*DaemonEndpoint) ProtoMessage() {} -func (*DaemonEndpoint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{24} } +func (*DaemonEndpoint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{25} } func (m *DeleteOptions) Reset() { *m = DeleteOptions{} } func (*DeleteOptions) ProtoMessage() {} -func (*DeleteOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{25} } +func (*DeleteOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{26} } func (m *DownwardAPIVolumeFile) Reset() { *m = DownwardAPIVolumeFile{} } func (*DownwardAPIVolumeFile) ProtoMessage() {} -func (*DownwardAPIVolumeFile) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{26} } +func (*DownwardAPIVolumeFile) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{27} } func (m *DownwardAPIVolumeSource) Reset() { *m = DownwardAPIVolumeSource{} } func (*DownwardAPIVolumeSource) ProtoMessage() {} func (*DownwardAPIVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{27} + return fileDescriptorGenerated, []int{28} } func (m *EmptyDirVolumeSource) Reset() { *m = EmptyDirVolumeSource{} } func (*EmptyDirVolumeSource) ProtoMessage() {} -func (*EmptyDirVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{28} } +func (*EmptyDirVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{29} } func (m *EndpointAddress) Reset() { *m = EndpointAddress{} } func (*EndpointAddress) ProtoMessage() {} -func (*EndpointAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{29} } +func (*EndpointAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{30} } func (m *EndpointPort) Reset() { *m = EndpointPort{} } func (*EndpointPort) ProtoMessage() {} -func (*EndpointPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{30} } +func (*EndpointPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{31} } func (m *EndpointSubset) Reset() { *m = EndpointSubset{} } func (*EndpointSubset) ProtoMessage() {} -func (*EndpointSubset) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{31} } +func (*EndpointSubset) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{32} } func (m *Endpoints) Reset() { *m = Endpoints{} } func (*Endpoints) ProtoMessage() {} -func (*Endpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{32} } +func (*Endpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{33} } func (m *EndpointsList) Reset() { *m = EndpointsList{} } func (*EndpointsList) ProtoMessage() {} -func (*EndpointsList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{33} } +func (*EndpointsList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{34} } func (m *EnvVar) Reset() { *m = EnvVar{} } func (*EnvVar) ProtoMessage() {} -func (*EnvVar) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{34} } +func (*EnvVar) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{35} } func (m *EnvVarSource) Reset() { *m = EnvVarSource{} } func (*EnvVarSource) ProtoMessage() {} -func (*EnvVarSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{35} } +func (*EnvVarSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{36} } func (m *Event) Reset() { *m = Event{} } func (*Event) ProtoMessage() {} -func (*Event) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{36} } +func (*Event) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{37} } func (m *EventList) Reset() { *m = EventList{} } func (*EventList) ProtoMessage() {} -func (*EventList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{37} } +func (*EventList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{38} } func (m *EventSource) Reset() { *m = EventSource{} } func (*EventSource) ProtoMessage() {} -func (*EventSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{38} } +func (*EventSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{39} } func (m *ExecAction) Reset() { *m = ExecAction{} } func (*ExecAction) ProtoMessage() {} -func (*ExecAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{39} } +func (*ExecAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{40} } func (m *ExportOptions) Reset() { *m = ExportOptions{} } func (*ExportOptions) ProtoMessage() {} -func (*ExportOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{40} } +func (*ExportOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } func (m *FCVolumeSource) Reset() { *m = FCVolumeSource{} } func (*FCVolumeSource) ProtoMessage() {} -func (*FCVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } +func (*FCVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } func (m *FlexVolumeSource) Reset() { *m = FlexVolumeSource{} } func (*FlexVolumeSource) ProtoMessage() {} -func (*FlexVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } +func (*FlexVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } func (m *FlockerVolumeSource) Reset() { *m = FlockerVolumeSource{} } func (*FlockerVolumeSource) ProtoMessage() {} -func (*FlockerVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } +func (*FlockerVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{44} } func (m *GCEPersistentDiskVolumeSource) Reset() { *m = GCEPersistentDiskVolumeSource{} } func (*GCEPersistentDiskVolumeSource) ProtoMessage() {} func (*GCEPersistentDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{44} + return fileDescriptorGenerated, []int{45} } func (m *GitRepoVolumeSource) Reset() { *m = GitRepoVolumeSource{} } func (*GitRepoVolumeSource) ProtoMessage() {} -func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{45} } +func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } func (m *GlusterfsVolumeSource) Reset() { *m = GlusterfsVolumeSource{} } func (*GlusterfsVolumeSource) ProtoMessage() {} -func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } +func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } func (m *HTTPGetAction) Reset() { *m = HTTPGetAction{} } func (*HTTPGetAction) ProtoMessage() {} -func (*HTTPGetAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } +func (*HTTPGetAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } func (m *HTTPHeader) Reset() { *m = HTTPHeader{} } func (*HTTPHeader) ProtoMessage() {} -func (*HTTPHeader) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } +func (*HTTPHeader) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } func (m *Handler) Reset() { *m = Handler{} } func (*Handler) ProtoMessage() {} -func (*Handler) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } +func (*Handler) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } func (m *HostPathVolumeSource) Reset() { *m = HostPathVolumeSource{} } func (*HostPathVolumeSource) ProtoMessage() {} -func (*HostPathVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } +func (*HostPathVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } func (m *ISCSIVolumeSource) Reset() { *m = ISCSIVolumeSource{} } func (*ISCSIVolumeSource) ProtoMessage() {} -func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } +func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } func (m *KeyToPath) Reset() { *m = KeyToPath{} } func (*KeyToPath) ProtoMessage() {} -func (*KeyToPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } +func (*KeyToPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } func (m *Lifecycle) Reset() { *m = Lifecycle{} } func (*Lifecycle) ProtoMessage() {} -func (*Lifecycle) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } +func (*Lifecycle) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } func (m *LimitRange) Reset() { *m = LimitRange{} } func (*LimitRange) ProtoMessage() {} -func (*LimitRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } +func (*LimitRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } func (m *LimitRangeItem) Reset() { *m = LimitRangeItem{} } func (*LimitRangeItem) ProtoMessage() {} -func (*LimitRangeItem) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } +func (*LimitRangeItem) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } func (m *LimitRangeList) Reset() { *m = LimitRangeList{} } func (*LimitRangeList) ProtoMessage() {} -func (*LimitRangeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } +func (*LimitRangeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{57} } func (m *LimitRangeSpec) Reset() { *m = LimitRangeSpec{} } func (*LimitRangeSpec) ProtoMessage() {} -func (*LimitRangeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{57} } +func (*LimitRangeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } func (m *List) Reset() { *m = List{} } func (*List) ProtoMessage() {} -func (*List) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } +func (*List) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } func (m *ListOptions) Reset() { *m = ListOptions{} } func (*ListOptions) ProtoMessage() {} -func (*ListOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } +func (*ListOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } func (m *LoadBalancerIngress) Reset() { *m = LoadBalancerIngress{} } func (*LoadBalancerIngress) ProtoMessage() {} -func (*LoadBalancerIngress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } +func (*LoadBalancerIngress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } func (m *LoadBalancerStatus) Reset() { *m = LoadBalancerStatus{} } func (*LoadBalancerStatus) ProtoMessage() {} -func (*LoadBalancerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } +func (*LoadBalancerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } func (m *LocalObjectReference) Reset() { *m = LocalObjectReference{} } func (*LocalObjectReference) ProtoMessage() {} -func (*LocalObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } +func (*LocalObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } func (m *NFSVolumeSource) Reset() { *m = NFSVolumeSource{} } func (*NFSVolumeSource) ProtoMessage() {} -func (*NFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } +func (*NFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } func (m *Namespace) Reset() { *m = Namespace{} } func (*Namespace) ProtoMessage() {} -func (*Namespace) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } +func (*Namespace) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } func (m *NamespaceList) Reset() { *m = NamespaceList{} } func (*NamespaceList) ProtoMessage() {} -func (*NamespaceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } +func (*NamespaceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } func (m *NamespaceSpec) Reset() { *m = NamespaceSpec{} } func (*NamespaceSpec) ProtoMessage() {} -func (*NamespaceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } +func (*NamespaceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } func (m *NamespaceStatus) Reset() { *m = NamespaceStatus{} } func (*NamespaceStatus) ProtoMessage() {} -func (*NamespaceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } +func (*NamespaceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} -func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } +func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{69} } func (m *NodeAddress) Reset() { *m = NodeAddress{} } func (*NodeAddress) ProtoMessage() {} -func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{69} } +func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{70} } func (m *NodeAffinity) Reset() { *m = NodeAffinity{} } func (*NodeAffinity) ProtoMessage() {} -func (*NodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{70} } +func (*NodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{71} } func (m *NodeCondition) Reset() { *m = NodeCondition{} } func (*NodeCondition) ProtoMessage() {} -func (*NodeCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{71} } +func (*NodeCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{72} } func (m *NodeDaemonEndpoints) Reset() { *m = NodeDaemonEndpoints{} } func (*NodeDaemonEndpoints) ProtoMessage() {} -func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{72} } +func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{73} } func (m *NodeList) Reset() { *m = NodeList{} } func (*NodeList) ProtoMessage() {} -func (*NodeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{73} } +func (*NodeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{74} } func (m *NodeProxyOptions) Reset() { *m = NodeProxyOptions{} } func (*NodeProxyOptions) ProtoMessage() {} -func (*NodeProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{74} } +func (*NodeProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{75} } func (m *NodeSelector) Reset() { *m = NodeSelector{} } func (*NodeSelector) ProtoMessage() {} -func (*NodeSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{75} } +func (*NodeSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{76} } func (m *NodeSelectorRequirement) Reset() { *m = NodeSelectorRequirement{} } func (*NodeSelectorRequirement) ProtoMessage() {} func (*NodeSelectorRequirement) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{76} + return fileDescriptorGenerated, []int{77} } func (m *NodeSelectorTerm) Reset() { *m = NodeSelectorTerm{} } func (*NodeSelectorTerm) ProtoMessage() {} -func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{77} } +func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{78} } func (m *NodeSpec) Reset() { *m = NodeSpec{} } func (*NodeSpec) ProtoMessage() {} -func (*NodeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{78} } +func (*NodeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{79} } func (m *NodeStatus) Reset() { *m = NodeStatus{} } func (*NodeStatus) ProtoMessage() {} -func (*NodeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{79} } +func (*NodeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{80} } func (m *NodeSystemInfo) Reset() { *m = NodeSystemInfo{} } func (*NodeSystemInfo) ProtoMessage() {} -func (*NodeSystemInfo) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{80} } +func (*NodeSystemInfo) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{81} } func (m *ObjectFieldSelector) Reset() { *m = ObjectFieldSelector{} } func (*ObjectFieldSelector) ProtoMessage() {} -func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{81} } +func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{82} } func (m *ObjectMeta) Reset() { *m = ObjectMeta{} } func (*ObjectMeta) ProtoMessage() {} -func (*ObjectMeta) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{82} } +func (*ObjectMeta) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{83} } func (m *ObjectReference) Reset() { *m = ObjectReference{} } func (*ObjectReference) ProtoMessage() {} -func (*ObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{83} } +func (*ObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{84} } func (m *OwnerReference) Reset() { *m = OwnerReference{} } func (*OwnerReference) ProtoMessage() {} -func (*OwnerReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{84} } +func (*OwnerReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{85} } func (m *PersistentVolume) Reset() { *m = PersistentVolume{} } func (*PersistentVolume) ProtoMessage() {} -func (*PersistentVolume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{85} } +func (*PersistentVolume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{86} } func (m *PersistentVolumeClaim) Reset() { *m = PersistentVolumeClaim{} } func (*PersistentVolumeClaim) ProtoMessage() {} -func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{86} } +func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{87} } func (m *PersistentVolumeClaimList) Reset() { *m = PersistentVolumeClaimList{} } func (*PersistentVolumeClaimList) ProtoMessage() {} func (*PersistentVolumeClaimList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{87} + return fileDescriptorGenerated, []int{88} } func (m *PersistentVolumeClaimSpec) Reset() { *m = PersistentVolumeClaimSpec{} } func (*PersistentVolumeClaimSpec) ProtoMessage() {} func (*PersistentVolumeClaimSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{88} + return fileDescriptorGenerated, []int{89} } func (m *PersistentVolumeClaimStatus) Reset() { *m = PersistentVolumeClaimStatus{} } func (*PersistentVolumeClaimStatus) ProtoMessage() {} func (*PersistentVolumeClaimStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{89} + return fileDescriptorGenerated, []int{90} } func (m *PersistentVolumeClaimVolumeSource) Reset() { *m = PersistentVolumeClaimVolumeSource{} } func (*PersistentVolumeClaimVolumeSource) ProtoMessage() {} func (*PersistentVolumeClaimVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{90} + return fileDescriptorGenerated, []int{91} } func (m *PersistentVolumeList) Reset() { *m = PersistentVolumeList{} } func (*PersistentVolumeList) ProtoMessage() {} -func (*PersistentVolumeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{91} } +func (*PersistentVolumeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{92} } func (m *PersistentVolumeSource) Reset() { *m = PersistentVolumeSource{} } func (*PersistentVolumeSource) ProtoMessage() {} -func (*PersistentVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{92} } +func (*PersistentVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{93} } func (m *PersistentVolumeSpec) Reset() { *m = PersistentVolumeSpec{} } func (*PersistentVolumeSpec) ProtoMessage() {} -func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{93} } +func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{94} } func (m *PersistentVolumeStatus) Reset() { *m = PersistentVolumeStatus{} } func (*PersistentVolumeStatus) ProtoMessage() {} -func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{94} } +func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{95} } func (m *Pod) Reset() { *m = Pod{} } func (*Pod) ProtoMessage() {} -func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{95} } +func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{96} } func (m *PodAffinity) Reset() { *m = PodAffinity{} } func (*PodAffinity) ProtoMessage() {} -func (*PodAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{96} } +func (*PodAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{97} } func (m *PodAffinityTerm) Reset() { *m = PodAffinityTerm{} } func (*PodAffinityTerm) ProtoMessage() {} -func (*PodAffinityTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{97} } +func (*PodAffinityTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{98} } func (m *PodAntiAffinity) Reset() { *m = PodAntiAffinity{} } func (*PodAntiAffinity) ProtoMessage() {} -func (*PodAntiAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{98} } +func (*PodAntiAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{99} } func (m *PodAttachOptions) Reset() { *m = PodAttachOptions{} } func (*PodAttachOptions) ProtoMessage() {} -func (*PodAttachOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{99} } +func (*PodAttachOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{100} } func (m *PodCondition) Reset() { *m = PodCondition{} } func (*PodCondition) ProtoMessage() {} -func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{100} } +func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{101} } func (m *PodExecOptions) Reset() { *m = PodExecOptions{} } func (*PodExecOptions) ProtoMessage() {} -func (*PodExecOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{101} } +func (*PodExecOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{102} } func (m *PodList) Reset() { *m = PodList{} } func (*PodList) ProtoMessage() {} -func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{102} } +func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{103} } func (m *PodLogOptions) Reset() { *m = PodLogOptions{} } func (*PodLogOptions) ProtoMessage() {} -func (*PodLogOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{103} } +func (*PodLogOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{104} } func (m *PodProxyOptions) Reset() { *m = PodProxyOptions{} } func (*PodProxyOptions) ProtoMessage() {} -func (*PodProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{104} } +func (*PodProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{105} } func (m *PodSecurityContext) Reset() { *m = PodSecurityContext{} } func (*PodSecurityContext) ProtoMessage() {} -func (*PodSecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{105} } +func (*PodSecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{106} } func (m *PodSignature) Reset() { *m = PodSignature{} } func (*PodSignature) ProtoMessage() {} -func (*PodSignature) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{106} } +func (*PodSignature) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{107} } func (m *PodSpec) Reset() { *m = PodSpec{} } func (*PodSpec) ProtoMessage() {} -func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{107} } +func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{108} } func (m *PodStatus) Reset() { *m = PodStatus{} } func (*PodStatus) ProtoMessage() {} -func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{108} } +func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{109} } func (m *PodStatusResult) Reset() { *m = PodStatusResult{} } func (*PodStatusResult) ProtoMessage() {} -func (*PodStatusResult) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{109} } +func (*PodStatusResult) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{110} } func (m *PodTemplate) Reset() { *m = PodTemplate{} } func (*PodTemplate) ProtoMessage() {} -func (*PodTemplate) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{110} } +func (*PodTemplate) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{111} } func (m *PodTemplateList) Reset() { *m = PodTemplateList{} } func (*PodTemplateList) ProtoMessage() {} -func (*PodTemplateList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{111} } +func (*PodTemplateList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{112} } func (m *PodTemplateSpec) Reset() { *m = PodTemplateSpec{} } func (*PodTemplateSpec) ProtoMessage() {} -func (*PodTemplateSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{112} } +func (*PodTemplateSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{113} } func (m *Preconditions) Reset() { *m = Preconditions{} } func (*Preconditions) ProtoMessage() {} -func (*Preconditions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{113} } +func (*Preconditions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{114} } func (m *PreferAvoidPodsEntry) Reset() { *m = PreferAvoidPodsEntry{} } func (*PreferAvoidPodsEntry) ProtoMessage() {} -func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{114} } +func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{115} } func (m *PreferredSchedulingTerm) Reset() { *m = PreferredSchedulingTerm{} } func (*PreferredSchedulingTerm) ProtoMessage() {} func (*PreferredSchedulingTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{115} + return fileDescriptorGenerated, []int{116} } func (m *Probe) Reset() { *m = Probe{} } func (*Probe) ProtoMessage() {} -func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{116} } +func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } func (m *QuobyteVolumeSource) Reset() { *m = QuobyteVolumeSource{} } func (*QuobyteVolumeSource) ProtoMessage() {} -func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } +func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{118} } func (m *RBDVolumeSource) Reset() { *m = RBDVolumeSource{} } func (*RBDVolumeSource) ProtoMessage() {} -func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{118} } +func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } func (m *RangeAllocation) Reset() { *m = RangeAllocation{} } func (*RangeAllocation) ProtoMessage() {} -func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } +func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } func (m *ReplicationController) Reset() { *m = ReplicationController{} } func (*ReplicationController) ProtoMessage() {} -func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } +func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{121} } func (m *ReplicationControllerList) Reset() { *m = ReplicationControllerList{} } func (*ReplicationControllerList) ProtoMessage() {} func (*ReplicationControllerList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{121} + return fileDescriptorGenerated, []int{122} } func (m *ReplicationControllerSpec) Reset() { *m = ReplicationControllerSpec{} } func (*ReplicationControllerSpec) ProtoMessage() {} func (*ReplicationControllerSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{122} + return fileDescriptorGenerated, []int{123} } func (m *ReplicationControllerStatus) Reset() { *m = ReplicationControllerStatus{} } func (*ReplicationControllerStatus) ProtoMessage() {} func (*ReplicationControllerStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{123} + return fileDescriptorGenerated, []int{124} } func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} } func (*ResourceFieldSelector) ProtoMessage() {} -func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{124} } +func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{125} } func (m *ResourceQuota) Reset() { *m = ResourceQuota{} } func (*ResourceQuota) ProtoMessage() {} -func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{125} } +func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } func (m *ResourceQuotaList) Reset() { *m = ResourceQuotaList{} } func (*ResourceQuotaList) ProtoMessage() {} -func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } +func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } func (m *ResourceQuotaSpec) Reset() { *m = ResourceQuotaSpec{} } func (*ResourceQuotaSpec) ProtoMessage() {} -func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } +func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } func (m *ResourceQuotaStatus) Reset() { *m = ResourceQuotaStatus{} } func (*ResourceQuotaStatus) ProtoMessage() {} -func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } +func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } func (m *ResourceRequirements) Reset() { *m = ResourceRequirements{} } func (*ResourceRequirements) ProtoMessage() {} -func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } +func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } func (m *SELinuxOptions) Reset() { *m = SELinuxOptions{} } func (*SELinuxOptions) ProtoMessage() {} -func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } +func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } func (m *Secret) Reset() { *m = Secret{} } func (*Secret) ProtoMessage() {} -func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } +func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} } func (*SecretKeySelector) ProtoMessage() {} -func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } +func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } func (m *SecretList) Reset() { *m = SecretList{} } func (*SecretList) ProtoMessage() {} -func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } +func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } func (m *SecretVolumeSource) Reset() { *m = SecretVolumeSource{} } func (*SecretVolumeSource) ProtoMessage() {} -func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } +func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } func (m *SecurityContext) Reset() { *m = SecurityContext{} } func (*SecurityContext) ProtoMessage() {} -func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } +func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } func (m *SerializedReference) Reset() { *m = SerializedReference{} } func (*SerializedReference) ProtoMessage() {} -func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } +func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } func (m *Service) Reset() { *m = Service{} } func (*Service) ProtoMessage() {} -func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } +func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } func (m *ServiceAccount) Reset() { *m = ServiceAccount{} } func (*ServiceAccount) ProtoMessage() {} -func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } +func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } func (m *ServiceAccountList) Reset() { *m = ServiceAccountList{} } func (*ServiceAccountList) ProtoMessage() {} -func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } +func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } func (m *ServiceList) Reset() { *m = ServiceList{} } func (*ServiceList) ProtoMessage() {} -func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } +func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } func (m *ServicePort) Reset() { *m = ServicePort{} } func (*ServicePort) ProtoMessage() {} -func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } +func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } func (m *ServiceProxyOptions) Reset() { *m = ServiceProxyOptions{} } func (*ServiceProxyOptions) ProtoMessage() {} -func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } +func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } func (m *ServiceSpec) Reset() { *m = ServiceSpec{} } func (*ServiceSpec) ProtoMessage() {} -func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } +func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } func (m *ServiceStatus) Reset() { *m = ServiceStatus{} } func (*ServiceStatus) ProtoMessage() {} -func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } +func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} } func (*TCPSocketAction) ProtoMessage() {} -func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } +func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } func (m *Taint) Reset() { *m = Taint{} } func (*Taint) ProtoMessage() {} -func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } +func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } func (m *Toleration) Reset() { *m = Toleration{} } func (*Toleration) ProtoMessage() {} -func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } +func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } func (m *Volume) Reset() { *m = Volume{} } func (*Volume) ProtoMessage() {} -func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } +func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } func (m *VolumeMount) Reset() { *m = VolumeMount{} } func (*VolumeMount) ProtoMessage() {} -func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } +func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } func (m *VolumeSource) Reset() { *m = VolumeSource{} } func (*VolumeSource) ProtoMessage() {} -func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } +func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} } func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {} func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{151} + return fileDescriptorGenerated, []int{152} } func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } func (*WeightedPodAffinityTerm) ProtoMessage() {} func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{152} + return fileDescriptorGenerated, []int{153} } func init() { @@ -853,6 +858,7 @@ func init() { proto.RegisterType((*Affinity)(nil), "k8s.io.kubernetes.pkg.api.v1.Affinity") proto.RegisterType((*AttachedVolume)(nil), "k8s.io.kubernetes.pkg.api.v1.AttachedVolume") proto.RegisterType((*AvoidPods)(nil), "k8s.io.kubernetes.pkg.api.v1.AvoidPods") + proto.RegisterType((*AzureDiskVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.AzureDiskVolumeSource") proto.RegisterType((*AzureFileVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.AzureFileVolumeSource") proto.RegisterType((*Binding)(nil), "k8s.io.kubernetes.pkg.api.v1.Binding") proto.RegisterType((*Capabilities)(nil), "k8s.io.kubernetes.pkg.api.v1.Capabilities") @@ -1144,6 +1150,54 @@ func (m *AvoidPods) MarshalTo(data []byte) (int, error) { return i, nil } +func (m *AzureDiskVolumeSource) 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 *AzureDiskVolumeSource) MarshalTo(data []byte) (int, error) { + var i int + _ = i + var l int + _ = l + data[i] = 0xa + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.DiskName))) + i += copy(data[i:], m.DiskName) + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.DataDiskURI))) + i += copy(data[i:], m.DataDiskURI) + if m.CachingMode != nil { + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(len(*m.CachingMode))) + i += copy(data[i:], *m.CachingMode) + } + if m.FSType != nil { + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(len(*m.FSType))) + i += copy(data[i:], *m.FSType) + } + if m.ReadOnly != nil { + data[i] = 0x28 + i++ + if *m.ReadOnly { + data[i] = 1 + } else { + data[i] = 0 + } + i++ + } + return i, nil +} + func (m *AzureFileVolumeSource) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -5115,6 +5169,18 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { } i += n102 } + if m.AzureDisk != nil { + data[i] = 0x82 + i++ + data[i] = 0x1 + i++ + i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) + n103, err := m.AzureDisk.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n103 + } return i, nil } @@ -5148,21 +5214,21 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n103, err := (&v).MarshalTo(data[i:]) + n104, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n103 + i += n104 } } data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeSource.Size())) - n104, err := m.PersistentVolumeSource.MarshalTo(data[i:]) + n105, err := m.PersistentVolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n104 + i += n105 if len(m.AccessModes) > 0 { for _, s := range m.AccessModes { data[i] = 0x1a @@ -5182,11 +5248,11 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.ClaimRef.Size())) - n105, err := m.ClaimRef.MarshalTo(data[i:]) + n106, err := m.ClaimRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n105 + i += n106 } data[i] = 0x2a i++ @@ -5243,27 +5309,27 @@ func (m *Pod) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n106, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n106 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n107, err := m.Spec.MarshalTo(data[i:]) + n107, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n107 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n108, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n108, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n108 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n109, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n109 return i, nil } @@ -5328,11 +5394,11 @@ func (m *PodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LabelSelector.Size())) - n109, err := m.LabelSelector.MarshalTo(data[i:]) + n110, err := m.LabelSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n109 + i += n110 } if len(m.Namespaces) > 0 { for _, s := range m.Namespaces { @@ -5478,19 +5544,19 @@ func (m *PodCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n110, err := m.LastProbeTime.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n110 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n111, err := m.LastTransitionTime.MarshalTo(data[i:]) + n111, err := m.LastProbeTime.MarshalTo(data[i:]) if err != nil { return 0, err } i += n111 + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) + n112, err := m.LastTransitionTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n112 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -5589,11 +5655,11 @@ func (m *PodList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n112, err := m.ListMeta.MarshalTo(data[i:]) + n113, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n112 + i += n113 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5653,11 +5719,11 @@ func (m *PodLogOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.SinceTime.Size())) - n113, err := m.SinceTime.MarshalTo(data[i:]) + n114, err := m.SinceTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n113 + i += n114 } data[i] = 0x30 i++ @@ -5721,11 +5787,11 @@ func (m *PodSecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n114, err := m.SELinuxOptions.MarshalTo(data[i:]) + n115, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n114 + i += n115 } if m.RunAsUser != nil { data[i] = 0x10 @@ -5776,11 +5842,11 @@ func (m *PodSignature) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodController.Size())) - n115, err := m.PodController.MarshalTo(data[i:]) + n116, err := m.PodController.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n115 + i += n116 } return i, nil } @@ -5899,11 +5965,11 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.SecurityContext.Size())) - n116, err := m.SecurityContext.MarshalTo(data[i:]) + n117, err := m.SecurityContext.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n116 + i += n117 } if len(m.ImagePullSecrets) > 0 { for _, msg := range m.ImagePullSecrets { @@ -5983,11 +6049,11 @@ func (m *PodStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n117, err := m.StartTime.MarshalTo(data[i:]) + n118, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n117 + i += n118 } if len(m.ContainerStatuses) > 0 { for _, msg := range m.ContainerStatuses { @@ -6022,19 +6088,19 @@ func (m *PodStatusResult) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n118, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n118 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n119, err := m.Status.MarshalTo(data[i:]) + n119, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n119 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n120, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n120 return i, nil } @@ -6056,19 +6122,19 @@ func (m *PodTemplate) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n120, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n120 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n121, err := m.Template.MarshalTo(data[i:]) + n121, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n121 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) + n122, err := m.Template.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n122 return i, nil } @@ -6090,11 +6156,11 @@ func (m *PodTemplateList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n122, err := m.ListMeta.MarshalTo(data[i:]) + n123, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n122 + i += n123 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6128,19 +6194,19 @@ func (m *PodTemplateSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n123, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n123 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n124, err := m.Spec.MarshalTo(data[i:]) + n124, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n124 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n125, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n125 return i, nil } @@ -6186,19 +6252,19 @@ func (m *PreferAvoidPodsEntry) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSignature.Size())) - n125, err := m.PodSignature.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n125 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) - n126, err := m.EvictionTime.MarshalTo(data[i:]) + n126, err := m.PodSignature.MarshalTo(data[i:]) if err != nil { return 0, err } i += n126 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) + n127, err := m.EvictionTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n127 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6231,11 +6297,11 @@ func (m *PreferredSchedulingTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preference.Size())) - n127, err := m.Preference.MarshalTo(data[i:]) + n128, err := m.Preference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n127 + i += n128 return i, nil } @@ -6257,11 +6323,11 @@ func (m *Probe) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Handler.Size())) - n128, err := m.Handler.MarshalTo(data[i:]) + n129, err := m.Handler.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n128 + i += n129 data[i] = 0x10 i++ i = encodeVarintGenerated(data, i, uint64(m.InitialDelaySeconds)) @@ -6376,11 +6442,11 @@ func (m *RBDVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n129, err := m.SecretRef.MarshalTo(data[i:]) + n130, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n129 + i += n130 } data[i] = 0x40 i++ @@ -6411,11 +6477,11 @@ func (m *RangeAllocation) 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(len(m.Range))) @@ -6447,27 +6513,27 @@ func (m *ReplicationController) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n131, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n131 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n132, err := m.Spec.MarshalTo(data[i:]) + n132, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n132 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n133, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n133, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n133 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n134, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n134 return i, nil } @@ -6489,11 +6555,11 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n134, err := m.ListMeta.MarshalTo(data[i:]) + n135, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n134 + i += n135 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6550,11 +6616,11 @@ func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n135, err := m.Template.MarshalTo(data[i:]) + n136, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n135 + i += n136 } return i, nil } @@ -6615,11 +6681,11 @@ func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Divisor.Size())) - n136, err := m.Divisor.MarshalTo(data[i:]) + n137, err := m.Divisor.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n136 + i += n137 return i, nil } @@ -6641,27 +6707,27 @@ func (m *ResourceQuota) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n137, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n137 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n138, err := m.Spec.MarshalTo(data[i:]) + n138, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n138 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n139, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n139, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n139 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n140, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n140 return i, nil } @@ -6683,11 +6749,11 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n140, err := m.ListMeta.MarshalTo(data[i:]) + n141, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n140 + i += n141 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6733,11 +6799,11 @@ func (m *ResourceQuotaSpec) 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.Scopes) > 0 { @@ -6788,11 +6854,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 } } if len(m.Used) > 0 { @@ -6810,11 +6876,11 @@ func (m *ResourceQuotaStatus) 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 } } return i, nil @@ -6850,11 +6916,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 } } if len(m.Requests) > 0 { @@ -6872,11 +6938,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n145, err := (&v).MarshalTo(data[i:]) + n146, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n145 + i += n146 } } return i, nil @@ -6934,11 +7000,11 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n146, err := m.ObjectMeta.MarshalTo(data[i:]) + n147, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n146 + i += n147 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -6998,11 +7064,11 @@ func (m *SecretKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n147, err := m.LocalObjectReference.MarshalTo(data[i:]) + n148, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n147 + i += n148 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -7028,11 +7094,11 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n148, err := m.ListMeta.MarshalTo(data[i:]) + n149, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n148 + i += n149 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7106,11 +7172,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Capabilities.Size())) - n149, err := m.Capabilities.MarshalTo(data[i:]) + n150, err := m.Capabilities.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n149 + i += n150 } if m.Privileged != nil { data[i] = 0x10 @@ -7126,11 +7192,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n150, err := m.SELinuxOptions.MarshalTo(data[i:]) + n151, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n150 + i += n151 } if m.RunAsUser != nil { data[i] = 0x20 @@ -7178,11 +7244,11 @@ func (m *SerializedReference) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Reference.Size())) - n151, err := m.Reference.MarshalTo(data[i:]) + n152, err := m.Reference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n151 + i += n152 return i, nil } @@ -7204,27 +7270,27 @@ func (m *Service) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n152, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n152 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n153, err := m.Spec.MarshalTo(data[i:]) + n153, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n153 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n154, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n154, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n154 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n155, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n155 return i, nil } @@ -7246,11 +7312,11 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n155, err := m.ObjectMeta.MarshalTo(data[i:]) + n156, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n155 + i += n156 if len(m.Secrets) > 0 { for _, msg := range m.Secrets { data[i] = 0x12 @@ -7296,11 +7362,11 @@ func (m *ServiceAccountList) 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 @@ -7334,11 +7400,11 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n157, err := m.ListMeta.MarshalTo(data[i:]) + n158, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n157 + i += n158 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7383,11 +7449,11 @@ func (m *ServicePort) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetPort.Size())) - n158, err := m.TargetPort.MarshalTo(data[i:]) + n159, err := m.TargetPort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n158 + i += n159 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.NodePort)) @@ -7546,11 +7612,11 @@ func (m *ServiceStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n159, err := m.LoadBalancer.MarshalTo(data[i:]) + n160, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n159 + i += n160 return i, nil } @@ -7572,11 +7638,11 @@ func (m *TCPSocketAction) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n160, err := m.Port.MarshalTo(data[i:]) + n161, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n160 + i += n161 return i, nil } @@ -7666,11 +7732,11 @@ func (m *Volume) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.VolumeSource.Size())) - n161, err := m.VolumeSource.MarshalTo(data[i:]) + n162, err := m.VolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n161 + i += n162 return i, nil } @@ -7731,163 +7797,163 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n162, err := m.HostPath.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n162 - } - if m.EmptyDir != nil { - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) - n163, err := m.EmptyDir.MarshalTo(data[i:]) + n163, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } i += n163 } - if m.GCEPersistentDisk != nil { - data[i] = 0x1a + if m.EmptyDir != nil { + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n164, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) + n164, err := m.EmptyDir.MarshalTo(data[i:]) if err != nil { return 0, err } i += n164 } - if m.AWSElasticBlockStore != nil { - data[i] = 0x22 + if m.GCEPersistentDisk != nil { + data[i] = 0x1a i++ - i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n165, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) + n165, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } i += n165 } - if m.GitRepo != nil { - data[i] = 0x2a + if m.AWSElasticBlockStore != nil { + data[i] = 0x22 i++ - i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) - n166, err := m.GitRepo.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) + n166, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } i += n166 } - if m.Secret != nil { - data[i] = 0x32 + if m.GitRepo != nil { + data[i] = 0x2a i++ - i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) - n167, err := m.Secret.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) + n167, err := m.GitRepo.MarshalTo(data[i:]) if err != nil { return 0, err } i += n167 } - if m.NFS != nil { - data[i] = 0x3a + if m.Secret != nil { + data[i] = 0x32 i++ - i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n168, err := m.NFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) + n168, err := m.Secret.MarshalTo(data[i:]) if err != nil { return 0, err } i += n168 } - if m.ISCSI != nil { - data[i] = 0x42 + if m.NFS != nil { + data[i] = 0x3a i++ - i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n169, err := m.ISCSI.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) + n169, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n169 } - if m.Glusterfs != nil { - data[i] = 0x4a + if m.ISCSI != nil { + data[i] = 0x42 i++ - i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n170, err := m.Glusterfs.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) + n170, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } i += n170 } - if m.PersistentVolumeClaim != nil { - data[i] = 0x52 + if m.Glusterfs != nil { + data[i] = 0x4a i++ - i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) - n171, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) + n171, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } i += n171 } - if m.RBD != nil { - data[i] = 0x5a + if m.PersistentVolumeClaim != nil { + data[i] = 0x52 i++ - i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n172, err := m.RBD.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) + n172, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) if err != nil { return 0, err } i += n172 } - if m.FlexVolume != nil { - data[i] = 0x62 + if m.RBD != nil { + data[i] = 0x5a i++ - i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n173, err := m.FlexVolume.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) + n173, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } i += n173 } - if m.Cinder != nil { - data[i] = 0x6a + if m.FlexVolume != nil { + data[i] = 0x62 i++ - i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n174, err := m.Cinder.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) + n174, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } i += n174 } - if m.CephFS != nil { - data[i] = 0x72 + if m.Cinder != nil { + data[i] = 0x6a i++ - i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n175, err := m.CephFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) + n175, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } i += n175 } - if m.Flocker != nil { - data[i] = 0x7a + if m.CephFS != nil { + data[i] = 0x72 i++ - i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n176, err := m.Flocker.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) + n176, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n176 } + if m.Flocker != nil { + data[i] = 0x7a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) + n177, err := m.Flocker.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n177 + } if m.DownwardAPI != nil { data[i] = 0x82 i++ data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.DownwardAPI.Size())) - n177, err := m.DownwardAPI.MarshalTo(data[i:]) + n178, err := m.DownwardAPI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n177 + i += n178 } if m.FC != nil { data[i] = 0x8a @@ -7895,11 +7961,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n178, err := m.FC.MarshalTo(data[i:]) + n179, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n178 + i += n179 } if m.AzureFile != nil { data[i] = 0x92 @@ -7907,11 +7973,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n179, err := m.AzureFile.MarshalTo(data[i:]) + n180, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n179 + i += n180 } if m.ConfigMap != nil { data[i] = 0x9a @@ -7919,11 +7985,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMap.Size())) - n180, err := m.ConfigMap.MarshalTo(data[i:]) + n181, err := m.ConfigMap.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n180 + i += n181 } if m.VsphereVolume != nil { data[i] = 0xa2 @@ -7931,11 +7997,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n181, err := m.VsphereVolume.MarshalTo(data[i:]) + n182, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n181 + i += n182 } if m.Quobyte != nil { data[i] = 0xaa @@ -7943,11 +8009,23 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n182, err := m.Quobyte.MarshalTo(data[i:]) + n183, err := m.Quobyte.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n182 + i += n183 + } + if m.AzureDisk != nil { + data[i] = 0xb2 + i++ + data[i] = 0x1 + i++ + i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) + n184, err := m.AzureDisk.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n184 } return i, nil } @@ -7999,11 +8077,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PodAffinityTerm.Size())) - n183, err := m.PodAffinityTerm.MarshalTo(data[i:]) + n185, err := m.PodAffinityTerm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n183 + i += n185 return i, nil } @@ -8086,6 +8164,27 @@ func (m *AvoidPods) Size() (n int) { return n } +func (m *AzureDiskVolumeSource) Size() (n int) { + var l int + _ = l + l = len(m.DiskName) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.DataDiskURI) + n += 1 + l + sovGenerated(uint64(l)) + if m.CachingMode != nil { + l = len(*m.CachingMode) + n += 1 + l + sovGenerated(uint64(l)) + } + if m.FSType != nil { + l = len(*m.FSType) + n += 1 + l + sovGenerated(uint64(l)) + } + if m.ReadOnly != nil { + n += 2 + } + return n +} + func (m *AzureFileVolumeSource) Size() (n int) { var l int _ = l @@ -9561,6 +9660,10 @@ func (m *PersistentVolumeSource) Size() (n int) { l = m.Quobyte.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.AzureDisk != nil { + l = m.AzureDisk.Size() + n += 2 + l + sovGenerated(uint64(l)) + } return n } @@ -10597,6 +10700,10 @@ func (m *VolumeSource) Size() (n int) { l = m.Quobyte.Size() n += 2 + l + sovGenerated(uint64(l)) } + if m.AzureDisk != nil { + l = m.AzureDisk.Size() + n += 2 + l + sovGenerated(uint64(l)) + } return n } @@ -10678,6 +10785,20 @@ func (this *AvoidPods) String() string { }, "") return s } +func (this *AzureDiskVolumeSource) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&AzureDiskVolumeSource{`, + `DiskName:` + fmt.Sprintf("%v", this.DiskName) + `,`, + `DataDiskURI:` + fmt.Sprintf("%v", this.DataDiskURI) + `,`, + `CachingMode:` + valueToStringGenerated(this.CachingMode) + `,`, + `FSType:` + valueToStringGenerated(this.FSType) + `,`, + `ReadOnly:` + valueToStringGenerated(this.ReadOnly) + `,`, + `}`, + }, "") + return s +} func (this *AzureFileVolumeSource) String() string { if this == nil { return "nil" @@ -11905,6 +12026,7 @@ func (this *PersistentVolumeSource) String() string { `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) + `,`, + `AzureDisk:` + strings.Replace(fmt.Sprintf("%v", this.AzureDisk), "AzureDiskVolumeSource", "AzureDiskVolumeSource", 1) + `,`, `}`, }, "") return s @@ -12761,6 +12883,7 @@ func (this *VolumeSource) String() string { `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) + `,`, + `AzureDisk:` + strings.Replace(fmt.Sprintf("%v", this.AzureDisk), "AzureDiskVolumeSource", "AzureDiskVolumeSource", 1) + `,`, `}`, }, "") return s @@ -13280,6 +13403,195 @@ func (m *AvoidPods) Unmarshal(data []byte) error { } return nil } +func (m *AzureDiskVolumeSource) 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: AzureDiskVolumeSource: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AzureDiskVolumeSource: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DiskName", 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.DiskName = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DataDiskURI", 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.DataDiskURI = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CachingMode", 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 + } + s := AzureDataDiskCachingMode(data[iNdEx:postIndex]) + m.CachingMode = &s + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FSType", 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 + } + s := string(data[iNdEx:postIndex]) + m.FSType = &s + iNdEx = postIndex + case 5: + 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 + } + } + b := bool(v != 0) + m.ReadOnly = &b + 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 *AzureFileVolumeSource) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -27630,6 +27942,39 @@ func (m *PersistentVolumeSource) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 16: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AzureDisk", 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.AzureDisk == nil { + m.AzureDisk = &AzureDiskVolumeSource{} + } + if err := m.AzureDisk.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -37768,6 +38113,39 @@ func (m *VolumeSource) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 22: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AzureDisk", 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.AzureDisk == nil { + m.AzureDisk = &AzureDiskVolumeSource{} + } + if err := m.AzureDisk.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38102,608 +38480,615 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 9640 bytes of a gzipped FileDescriptorProto + // 9750 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, 0x6c, 0x38, 0x42, 0x10, - 0x23, 0x01, 0x92, 0x20, 0x4e, 0x80, 0x18, 0x49, 0x8c, 0xd8, 0x96, 0xa3, 0xd8, 0x52, 0x62, 0x18, - 0x01, 0xe2, 0x08, 0xca, 0x87, 0x03, 0x1a, 0x08, 0x62, 0xc3, 0x06, 0x14, 0xcb, 0x46, 0x90, 0x1f, - 0xf9, 0x13, 0x20, 0xbf, 0x42, 0x18, 0x49, 0xea, 0xd5, 0x77, 0xf5, 0xf4, 0x6c, 0xf7, 0x2c, 0x6f, - 0x36, 0x67, 0xc3, 0x3f, 0x16, 0xd8, 0xa9, 0xf7, 0xea, 0xd5, 0x47, 0xbf, 0x7a, 0xf5, 0xde, 0xab, - 0x57, 0xaf, 0xc8, 0x4b, 0x77, 0xdf, 0x88, 0x97, 0x83, 0xf0, 0xd2, 0xdd, 0xde, 0x8e, 0x1f, 0x75, - 0xfc, 0xc4, 0x8f, 0x2f, 0x75, 0xef, 0xee, 0x5d, 0xf2, 0xba, 0xc1, 0xa5, 0xc3, 0xcb, 0x97, 0xf6, - 0xfc, 0x8e, 0x1f, 0x79, 0x89, 0xdf, 0x5a, 0xee, 0x46, 0x61, 0x12, 0x3a, 0x9f, 0xe2, 0xd8, 0xcb, - 0x1a, 0x7b, 0x99, 0x62, 0x2f, 0x53, 0xec, 0xe5, 0xc3, 0xcb, 0x4b, 0x17, 0xf7, 0x82, 0x64, 0xbf, - 0xb7, 0xb3, 0xdc, 0x0c, 0x0f, 0x2e, 0xed, 0x85, 0x7b, 0xe1, 0x25, 0x56, 0x69, 0xa7, 0xb7, 0xcb, - 0x7e, 0xb1, 0x1f, 0xec, 0x3f, 0x4e, 0x6c, 0xe9, 0xca, 0xe0, 0xa6, 0x23, 0x3f, 0x0e, 0x7b, 0x51, - 0xd3, 0x4f, 0x77, 0x60, 0xe9, 0xb5, 0xc1, 0x75, 0x7a, 0x9d, 0x43, 0x3f, 0x8a, 0x83, 0xb0, 0xe3, - 0xb7, 0xfa, 0xaa, 0x5d, 0xcc, 0xae, 0x16, 0xf5, 0x3a, 0x49, 0x70, 0xd0, 0xdf, 0xca, 0xe5, 0x6c, - 0xf4, 0x5e, 0x12, 0xb4, 0x2f, 0x05, 0x9d, 0x24, 0x4e, 0xa2, 0x74, 0x15, 0xf7, 0x77, 0x4b, 0xe4, - 0xa9, 0x95, 0x3b, 0x8d, 0xf5, 0xb6, 0x17, 0x27, 0x41, 0x73, 0xb5, 0x1d, 0x36, 0xef, 0x36, 0x92, - 0x30, 0xf2, 0x6f, 0x87, 0xed, 0xde, 0x81, 0xdf, 0x60, 0xa3, 0x71, 0x5e, 0x22, 0x53, 0x87, 0xec, - 0xf7, 0x66, 0x6d, 0xb1, 0xf4, 0x54, 0xe9, 0xf9, 0xea, 0xea, 0xc2, 0xf7, 0xbe, 0xff, 0xe4, 0x27, - 0xfe, 0xe8, 0xfb, 0x4f, 0x4e, 0xdd, 0x16, 0xe5, 0xa0, 0x30, 0x9c, 0xe7, 0xc8, 0xc4, 0x6e, 0xbc, - 0x7d, 0xd4, 0xf5, 0x17, 0xcb, 0x0c, 0x77, 0x4e, 0xe0, 0x4e, 0x6c, 0x34, 0xb0, 0x14, 0x04, 0xd4, - 0xb9, 0x44, 0xaa, 0x5d, 0x2f, 0x4a, 0x82, 0x84, 0x8e, 0x7d, 0xb1, 0x42, 0x51, 0xc7, 0x57, 0xcf, - 0x08, 0xd4, 0x6a, 0x5d, 0x02, 0x40, 0xe3, 0x60, 0x37, 0x22, 0xdf, 0x6b, 0xdd, 0xea, 0xb4, 0x8f, - 0x16, 0xc7, 0x28, 0xfe, 0x94, 0xee, 0x06, 0x88, 0x72, 0x50, 0x18, 0xee, 0xb7, 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, 0x25, 0x60, 0x51, 0x74, 0xde, 0x25, 0xd3, 0xdd, 0xb0, 0xa5, 0x1a, 0x28, 0xb3, 0x06, - 0x5e, 0x38, 0xbe, 0x81, 0xba, 0xae, 0xb0, 0x3a, 0x4f, 0xe9, 0x4f, 0x1b, 0x05, 0x60, 0x92, 0x73, - 0xda, 0x64, 0x1e, 0x7f, 0xd2, 0xcf, 0xae, 0x5a, 0xa8, 0xb0, 0x16, 0x2e, 0xe6, 0xb7, 0x60, 0x54, - 0x5a, 0x3d, 0x4b, 0x5b, 0x99, 0x4f, 0x15, 0x42, 0x9a, 0xb4, 0xfb, 0x01, 0x99, 0x5b, 0x49, 0x12, - 0xaf, 0xb9, 0xef, 0xb7, 0xf8, 0xf7, 0x75, 0x5e, 0x25, 0x63, 0x1d, 0xef, 0xc0, 0x17, 0x5f, 0xff, - 0x29, 0x31, 0xed, 0x63, 0x37, 0x69, 0xd9, 0x47, 0xdf, 0x7f, 0x72, 0xe1, 0x9d, 0x4e, 0xf0, 0x7e, - 0x4f, 0xf0, 0x0c, 0x96, 0x01, 0xc3, 0x76, 0xae, 0x10, 0xd2, 0xf2, 0x0f, 0x83, 0xa6, 0x5f, 0xf7, - 0x92, 0x7d, 0xc1, 0x0d, 0x8e, 0xa8, 0x4b, 0x6a, 0x0a, 0x02, 0x06, 0x96, 0xfb, 0x13, 0x25, 0x52, - 0x5d, 0x39, 0x0c, 0x83, 0x16, 0xed, 0x65, 0xec, 0xf4, 0xe8, 0xb8, 0x23, 0x7f, 0xd7, 0x8f, 0x54, - 0x11, 0xed, 0x42, 0x85, 0x8e, 0xfb, 0x4a, 0xce, 0xb8, 0xed, 0x4a, 0xeb, 0x9d, 0x24, 0x3a, 0x5a, - 0x7d, 0x54, 0x34, 0x3d, 0x9f, 0x82, 0x42, 0xba, 0x0d, 0xf7, 0x9f, 0x96, 0xc8, 0xf9, 0x95, 0x0f, - 0x7a, 0x91, 0xbf, 0x11, 0xb4, 0xed, 0xa5, 0x40, 0x87, 0x14, 0xfb, 0xcd, 0xc8, 0x4f, 0x6e, 0xea, - 0xe9, 0x50, 0x43, 0x6a, 0x28, 0x08, 0x18, 0x58, 0xc8, 0xe8, 0xf1, 0xbe, 0x17, 0xb1, 0x99, 0x11, - 0xb3, 0xa0, 0x18, 0xbd, 0x21, 0x01, 0xa0, 0x71, 0x2c, 0x46, 0xaf, 0xe4, 0x32, 0xfa, 0xbf, 0x2c, - 0x91, 0xc9, 0xd5, 0xa0, 0xd3, 0x0a, 0x3a, 0x7b, 0xce, 0x97, 0xc8, 0xd4, 0x81, 0x9f, 0x78, 0x2d, - 0x2f, 0xf1, 0x04, 0x8f, 0x3f, 0x7f, 0xfc, 0x44, 0xdd, 0xda, 0xf9, 0x9a, 0xdf, 0x4c, 0x6e, 0xd0, - 0x3a, 0x7a, 0x18, 0xba, 0x0c, 0x14, 0x35, 0xe7, 0x1d, 0x32, 0x91, 0x78, 0xd1, 0x9e, 0x9f, 0x08, - 0xd6, 0xbe, 0x58, 0x84, 0x2e, 0xe0, 0xb4, 0xfa, 0x9d, 0xa6, 0xaf, 0x85, 0xc0, 0x36, 0x23, 0x02, - 0x82, 0x98, 0xdb, 0x24, 0x33, 0x6b, 0x5e, 0xd7, 0xdb, 0x09, 0xda, 0x74, 0x8d, 0xfb, 0xb1, 0xf3, - 0x19, 0x52, 0xf1, 0x5a, 0x2d, 0xf6, 0x91, 0xab, 0xab, 0xe7, 0x69, 0x85, 0xca, 0x4a, 0xab, 0x45, - 0x59, 0x8c, 0x28, 0xac, 0x23, 0x40, 0x0c, 0xe7, 0x02, 0x19, 0x6b, 0x45, 0x61, 0x97, 0xf6, 0x06, - 0x31, 0x1f, 0x41, 0x6e, 0xac, 0xd1, 0xdf, 0x29, 0x54, 0x86, 0xe3, 0xfe, 0xdb, 0x32, 0x71, 0xd6, - 0xfc, 0xee, 0xfe, 0x46, 0xc3, 0xfa, 0x96, 0xcf, 0xd3, 0xc9, 0x0a, 0x29, 0xc3, 0x87, 0x51, 0x2c, - 0x1a, 0x9c, 0xc1, 0x29, 0xbe, 0x21, 0xca, 0x40, 0x41, 0x9d, 0xa7, 0xc8, 0x58, 0x57, 0xb3, 0xf0, - 0x8c, 0x64, 0x7f, 0xc6, 0xbc, 0x0c, 0x82, 0x18, 0xbd, 0xd8, 0x8f, 0xd8, 0xe7, 0x32, 0x30, 0xde, - 0xa1, 0x65, 0xc0, 0x20, 0x9a, 0x73, 0x90, 0xa7, 0x98, 0xfc, 0xea, 0xe3, 0x1c, 0x84, 0x80, 0x81, - 0xe5, 0xfc, 0x28, 0xe5, 0x1c, 0xf6, 0x8b, 0x4e, 0xe4, 0xe2, 0x38, 0x9b, 0xf7, 0x1c, 0xc6, 0xdf, - 0x0a, 0x9b, 0x5e, 0x3b, 0x3d, 0xf9, 0xb3, 0x8c, 0xd3, 0x24, 0x21, 0xd0, 0x34, 0x2d, 0x4e, 0x9b, - 0xc8, 0xe5, 0xb4, 0xbf, 0x5d, 0xa2, 0xf3, 0x48, 0x39, 0xcd, 0x8f, 0x4e, 0x61, 0x7b, 0x18, 0x6e, - 0x11, 0xfc, 0x01, 0x76, 0x2d, 0x3c, 0xe8, 0xd2, 0x6d, 0xb4, 0x93, 0xac, 0x85, 0x74, 0x35, 0xb0, - 0x2d, 0xe3, 0xb3, 0x64, 0x2c, 0xc1, 0xa6, 0x78, 0xb7, 0x9e, 0x93, 0x9f, 0x05, 0x1b, 0xa0, 0x9c, - 0xf2, 0x48, 0x7f, 0x0d, 0xd6, 0x05, 0x56, 0xc7, 0x79, 0x93, 0x4c, 0xc4, 0x89, 0x97, 0xf4, 0x62, - 0xd1, 0xd1, 0xa7, 0x65, 0x47, 0x1b, 0xac, 0x94, 0xd6, 0x9f, 0x57, 0xd5, 0x78, 0x11, 0x88, 0x0a, - 0xce, 0x0b, 0x64, 0xf2, 0xc0, 0x8f, 0x63, 0x6f, 0xcf, 0x17, 0x0c, 0x31, 0x2f, 0xea, 0x4e, 0xde, - 0xe0, 0xc5, 0x20, 0xe1, 0xce, 0xa7, 0xc9, 0xb8, 0x1f, 0x45, 0x61, 0x24, 0x38, 0x62, 0x56, 0x20, - 0x8e, 0xaf, 0x63, 0x21, 0x70, 0x98, 0xfb, 0x3b, 0x25, 0x32, 0xaf, 0xfa, 0xca, 0xdb, 0x1a, 0xe1, - 0x52, 0x6f, 0x11, 0xd2, 0x94, 0x03, 0x8b, 0xd9, 0x02, 0x9b, 0xbe, 0xf2, 0xf2, 0xf1, 0xb4, 0xfb, - 0x27, 0x52, 0xb7, 0xa1, 0x8a, 0x62, 0x30, 0xe8, 0xba, 0xdf, 0x2b, 0x91, 0xb3, 0xa9, 0x31, 0x6d, - 0x05, 0x71, 0xe2, 0xfc, 0xc5, 0xbe, 0x71, 0x5d, 0x3a, 0xa6, 0x6d, 0x43, 0x7b, 0x5a, 0xc6, 0xea, - 0x6c, 0x78, 0x8a, 0x51, 0x64, 0x89, 0x31, 0x38, 0x20, 0xe3, 0x41, 0xe2, 0x1f, 0xc8, 0x71, 0x5d, - 0x2c, 0x38, 0x2e, 0xde, 0x41, 0xfd, 0x79, 0x36, 0x91, 0x06, 0x70, 0x52, 0xee, 0xff, 0xa2, 0x7b, - 0x16, 0x1d, 0xe5, 0x6e, 0xb0, 0x77, 0xc3, 0xeb, 0x8e, 0xf0, 0xc3, 0x34, 0xa8, 0xcc, 0x43, 0xaa, - 0xbc, 0xeb, 0x97, 0xf3, 0xba, 0x2e, 0x3a, 0xb4, 0x5c, 0xa3, 0x75, 0xf8, 0x0e, 0xa8, 0xe4, 0x12, - 0x16, 0x01, 0x23, 0xb6, 0xf4, 0x3a, 0xa9, 0x2a, 0x04, 0x67, 0x81, 0x54, 0xee, 0xfa, 0x5c, 0x3d, - 0xaa, 0x02, 0xfe, 0xeb, 0x9c, 0x23, 0xe3, 0x87, 0x5e, 0xbb, 0x27, 0x56, 0x2b, 0xf0, 0x1f, 0x9f, - 0x2d, 0xbf, 0x51, 0x72, 0x7f, 0xa3, 0x44, 0xce, 0xa9, 0x46, 0xae, 0xfb, 0x47, 0x0d, 0xbf, 0x4d, - 0xbb, 0x1c, 0x46, 0xce, 0x4f, 0x52, 0x40, 0x3b, 0x43, 0x0e, 0x89, 0xd9, 0x38, 0x89, 0x04, 0xfb, - 0x94, 0xe8, 0xf8, 0xb9, 0x2c, 0x28, 0x64, 0xb6, 0xe6, 0x3c, 0xce, 0xc7, 0xc2, 0x17, 0xef, 0xb4, - 0x20, 0x50, 0xa1, 0x1d, 0x65, 0x03, 0xc3, 0xee, 0xcf, 0xaa, 0xee, 0x9f, 0x06, 0xe7, 0x6d, 0xd9, - 0x9c, 0xf7, 0x99, 0x82, 0x9f, 0x6f, 0x00, 0xcf, 0xfd, 0xfd, 0x32, 0x39, 0xaf, 0x70, 0x2c, 0x71, - 0xfc, 0x90, 0x4c, 0xff, 0x70, 0xc3, 0xa5, 0x9f, 0x65, 0x3b, 0xc4, 0xfd, 0x34, 0x7b, 0xb8, 0xce, - 0x65, 0x32, 0xdd, 0xf2, 0x77, 0xbd, 0x5e, 0x3b, 0xb9, 0x41, 0xb5, 0x6e, 0x61, 0x2e, 0x30, 0x9d, - 0xb9, 0xa6, 0x8b, 0xc1, 0xc4, 0x71, 0x7f, 0xbb, 0xca, 0x56, 0x65, 0xe2, 0x05, 0xd4, 0xe4, 0xc1, - 0x0d, 0xda, 0xd0, 0x60, 0x67, 0x4c, 0x0d, 0x56, 0x68, 0xab, 0x54, 0x12, 0x07, 0x07, 0x28, 0xb2, - 0xcb, 0xb6, 0x24, 0xde, 0xc4, 0x42, 0xe0, 0x30, 0xe7, 0x59, 0x32, 0x49, 0xcd, 0xc4, 0x03, 0xaf, - 0xd3, 0xa2, 0x7d, 0x40, 0x95, 0x61, 0x1a, 0xa5, 0xfa, 0x1a, 0x2f, 0x02, 0x09, 0x73, 0x3e, 0x45, - 0xc6, 0xa8, 0x7e, 0x13, 0x53, 0xa1, 0x8e, 0x38, 0x53, 0xd8, 0xd2, 0x0a, 0xfd, 0x0d, 0xac, 0x14, - 0x55, 0x81, 0x7b, 0x61, 0x74, 0x97, 0x2a, 0x6c, 0xb5, 0x20, 0x62, 0xfb, 0xba, 0xa1, 0x0a, 0xdc, - 0x51, 0x10, 0x30, 0xb0, 0x9c, 0x3a, 0x19, 0xef, 0x86, 0x51, 0x12, 0xd3, 0x6d, 0x1a, 0xa7, 0xf3, - 0xc5, 0x5c, 0xee, 0xe1, 0xe3, 0xae, 0xd3, 0x3a, 0x7a, 0x28, 0xf8, 0x8b, 0x4e, 0x29, 0x23, 0xe4, - 0xac, 0x91, 0x8a, 0xdf, 0x39, 0x5c, 0x9c, 0x64, 0xf4, 0x9e, 0x39, 0x9e, 0xde, 0x7a, 0xe7, 0xf0, - 0xb6, 0x17, 0xe9, 0x55, 0x44, 0x7f, 0x03, 0xd6, 0x76, 0x9a, 0xa4, 0x2a, 0x8d, 0xde, 0x78, 0x71, - 0xaa, 0x08, 0x83, 0x81, 0x40, 0x07, 0xff, 0xfd, 0x5e, 0x10, 0xf9, 0x07, 0x54, 0xb8, 0xc6, 0x5a, - 0x1f, 0x96, 0xd0, 0x18, 0x34, 0x5d, 0xda, 0xc8, 0x0c, 0x57, 0x1f, 0x6e, 0x84, 0xd4, 0xf2, 0x8d, - 0x17, 0xab, 0xac, 0xcb, 0x39, 0xc6, 0xd5, 0x6d, 0x5d, 0x63, 0xf5, 0x9c, 0x20, 0x3f, 0x63, 0x14, - 0xc6, 0x60, 0x11, 0xa5, 0x06, 0xdc, 0x6c, 0x3b, 0x38, 0xa4, 0xe6, 0x71, 0x1c, 0xd7, 0xa3, 0x70, - 0xc7, 0x5f, 0x24, 0x6c, 0x34, 0x9f, 0xce, 0x33, 0x34, 0x28, 0xea, 0xea, 0x19, 0x4a, 0x7b, 0x76, - 0xcb, 0xac, 0x0d, 0x36, 0x31, 0xaa, 0xc9, 0xcd, 0xa1, 0xae, 0x12, 0x68, 0xf2, 0xd3, 0xc5, 0xc9, - 0x3b, 0x94, 0xfc, 0x1c, 0x58, 0xd5, 0x21, 0x45, 0xce, 0xd9, 0x26, 0xd5, 0x76, 0xb0, 0xeb, 0x37, - 0x8f, 0x9a, 0x54, 0xbb, 0x9c, 0x61, 0xb4, 0x73, 0x96, 0xdc, 0x96, 0x44, 0xe7, 0xfa, 0xa1, 0xfa, - 0x09, 0x9a, 0x90, 0x73, 0x9b, 0x3c, 0x92, 0xf8, 0xd1, 0x41, 0xd0, 0xf1, 0x70, 0xd3, 0x16, 0xca, - 0x0b, 0xb3, 0xe6, 0x66, 0x19, 0xd7, 0x3e, 0x21, 0x26, 0xf6, 0x91, 0xed, 0x4c, 0x2c, 0x18, 0x50, - 0xdb, 0xb9, 0x45, 0xe6, 0xd9, 0x7a, 0xaa, 0xf7, 0xda, 0xed, 0x7a, 0xd8, 0x0e, 0x9a, 0x47, 0x8b, - 0x73, 0x8c, 0xe0, 0xb3, 0xd2, 0x46, 0xdb, 0xb4, 0xc1, 0xa8, 0xd7, 0xeb, 0x5f, 0x90, 0xae, 0x8d, - 0x06, 0x32, 0xd5, 0x6a, 0x7b, 0x11, 0x55, 0xfa, 0x91, 0xf7, 0xfd, 0xfb, 0xc9, 0xe2, 0x7c, 0x11, - 0x3b, 0xa5, 0x61, 0x57, 0xe2, 0x06, 0x72, 0xaa, 0x10, 0xd2, 0xa4, 0x51, 0x54, 0xc4, 0x09, 0x9d, - 0xfd, 0xc5, 0x05, 0xa6, 0x98, 0xaa, 0xf5, 0xd5, 0xc0, 0x42, 0xe0, 0x30, 0x66, 0xf6, 0xe1, 0x3f, - 0xb7, 0x50, 0xf6, 0x9e, 0x61, 0x88, 0xda, 0xec, 0x93, 0x00, 0xd0, 0x38, 0xb8, 0x61, 0x25, 0xd4, - 0xb0, 0x77, 0x18, 0xaa, 0x5a, 0x6a, 0xdb, 0xdb, 0x5f, 0x06, 0x2c, 0x77, 0x77, 0xc8, 0x9c, 0x5a, - 0xd6, 0x6c, 0x76, 0x9c, 0x27, 0xc9, 0x38, 0x4a, 0x2e, 0x69, 0xbd, 0x54, 0xb1, 0x0b, 0x28, 0xd0, - 0xe8, 0x12, 0x67, 0xe5, 0xac, 0x0b, 0xc1, 0x07, 0xfe, 0xea, 0x11, 0x1d, 0x35, 0x13, 0x6b, 0x15, - 0xa3, 0x0b, 0x12, 0x00, 0x1a, 0xc7, 0xfd, 0x3f, 0x7c, 0x53, 0xd4, 0xb2, 0xa3, 0x80, 0xdc, 0xa4, - 0x8a, 0xfa, 0x7e, 0x18, 0x27, 0x88, 0xcd, 0xda, 0x18, 0xd7, 0xbb, 0xe0, 0x35, 0x51, 0x0e, 0x0a, - 0xc3, 0xf9, 0x1c, 0x99, 0x6d, 0x9a, 0x0d, 0x08, 0x51, 0x7e, 0x5e, 0x54, 0xb1, 0x5b, 0x07, 0x1b, - 0xd7, 0x79, 0x83, 0x4c, 0x31, 0xb7, 0x55, 0x33, 0x6c, 0x0b, 0x7d, 0x59, 0xee, 0x4c, 0x53, 0x75, - 0x51, 0xfe, 0x91, 0xf1, 0x3f, 0x28, 0x6c, 0xb4, 0x3a, 0xb0, 0x0b, 0x9b, 0x75, 0x21, 0x6e, 0x95, - 0xd5, 0x71, 0x8d, 0x95, 0x82, 0x80, 0xba, 0xbf, 0x52, 0x36, 0x66, 0x19, 0x95, 0x3e, 0xdf, 0xf9, - 0x11, 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, 0xd0, 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, 0x77, 0x2a, 0x64, 0x71, 0x50, 0x7f, 0x91, 0x27, 0xfd, 0xfb, 0x01, - 0xb5, 0x46, 0x5a, 0x9c, 0x73, 0x0d, 0x9e, 0x5c, 0x17, 0xe5, 0xa0, 0x30, 0x90, 0x39, 0xe2, 0x60, - 0xaf, 0xe3, 0xb5, 0x05, 0xff, 0x2a, 0xe6, 0x68, 0xb0, 0x52, 0x10, 0x50, 0xc4, 0xa3, 0x52, 0x37, - 0x16, 0xee, 0x4a, 0x83, 0x89, 0x80, 0x95, 0x82, 0x80, 0x9a, 0xe6, 0xdf, 0x58, 0x8e, 0xf9, 0x67, - 0xcd, 0xd1, 0xf8, 0x03, 0x9e, 0x23, 0xba, 0xeb, 0x10, 0x74, 0xe9, 0xc5, 0xfb, 0x8c, 0xfc, 0xc4, - 0xf0, 0xe4, 0x95, 0x56, 0xb2, 0xa1, 0xc8, 0x80, 0x41, 0xd2, 0x79, 0x8d, 0x4c, 0xab, 0x15, 0x4a, - 0xad, 0xff, 0x49, 0x36, 0xda, 0xb3, 0xa2, 0xd2, 0xb4, 0x16, 0x57, 0x35, 0x30, 0xf1, 0xdc, 0xaf, - 0xa5, 0x59, 0x46, 0x2c, 0x0c, 0x63, 0x86, 0x4b, 0x45, 0x67, 0xb8, 0x7c, 0xfc, 0x0c, 0xbb, 0xff, - 0xa5, 0x82, 0xb6, 0xb3, 0xd1, 0x58, 0x2f, 0x2e, 0x20, 0xd4, 0xde, 0x46, 0x09, 0x4f, 0x3b, 0x26, - 0x96, 0xe5, 0x4b, 0xc3, 0xac, 0x1b, 0x73, 0x3f, 0xc0, 0xe5, 0xc0, 0x29, 0x39, 0xfb, 0x74, 0x87, - 0xf6, 0x62, 0x66, 0x49, 0xfa, 0x62, 0x39, 0x0e, 0x47, 0x56, 0x6b, 0xe1, 0x94, 0x8c, 0xb1, 0xe1, - 0xf2, 0x56, 0x34, 0x71, 0xdc, 0x9e, 0x50, 0x3b, 0x90, 0x5e, 0x72, 0xd5, 0x1d, 0x54, 0x21, 0x8e, - 0x80, 0xc3, 0xa8, 0x2c, 0x9d, 0xa1, 0x1a, 0x16, 0xb2, 0xca, 0x1a, 0x2a, 0x40, 0x8c, 0xf9, 0xc6, - 0xb5, 0xa6, 0x04, 0x06, 0x0c, 0x2c, 0x4c, 0xad, 0x28, 0x4f, 0x1c, 0xa3, 0x28, 0xd3, 0x2f, 0xc4, - 0xfe, 0x51, 0x5c, 0xa1, 0xbe, 0xd0, 0x26, 0x2f, 0x06, 0x09, 0x4f, 0x33, 0xd1, 0x54, 0x41, 0x26, - 0xba, 0x40, 0xe6, 0x6a, 0x9e, 0x7f, 0x10, 0x76, 0xd6, 0x3b, 0xad, 0x6e, 0x18, 0xd0, 0x8e, 0x2d, - 0x92, 0x31, 0xb6, 0xa5, 0xf0, 0x15, 0x3f, 0x86, 0x14, 0x60, 0x0c, 0x95, 0x5d, 0xf7, 0xff, 0xd2, - 0x7d, 0xad, 0x46, 0xed, 0xd3, 0xc4, 0xbf, 0xd5, 0x65, 0xee, 0x07, 0x67, 0x83, 0x38, 0x7b, 0x91, - 0xd7, 0xf4, 0xeb, 0x7e, 0x14, 0x84, 0x2d, 0xba, 0xe3, 0x87, 0x1d, 0xe6, 0x5c, 0xc6, 0x3d, 0x12, - 0xbd, 0x89, 0xce, 0xd5, 0x3e, 0x28, 0x64, 0xd4, 0x70, 0x5a, 0x64, 0xb6, 0x1b, 0xf9, 0x96, 0xbf, - 0xa4, 0x94, 0xaf, 0x9f, 0xd7, 0xcd, 0x2a, 0x5c, 0x7d, 0xb4, 0x8a, 0xc0, 0x26, 0xea, 0xbc, 0x45, - 0x16, 0xc2, 0xa8, 0xbb, 0xef, 0x75, 0x6a, 0x7e, 0xd7, 0xef, 0xb4, 0x50, 0x67, 0x16, 0x4e, 0xb1, - 0x73, 0xb4, 0xee, 0xc2, 0xad, 0x14, 0x0c, 0xfa, 0xb0, 0xdd, 0x5f, 0xa4, 0xf6, 0x62, 0x2d, 0xbc, - 0xd7, 0xb9, 0xe7, 0x45, 0xad, 0x95, 0xfa, 0x26, 0x57, 0x84, 0x99, 0x93, 0x51, 0x3a, 0x37, 0x4b, - 0x03, 0x9d, 0x9b, 0x5f, 0x21, 0x53, 0xbb, 0x81, 0xdf, 0x6e, 0xa1, 0x17, 0x92, 0x0f, 0xef, 0x72, - 0x11, 0x8f, 0xc6, 0x06, 0xd6, 0x91, 0x5e, 0x01, 0xee, 0x5b, 0xdd, 0x10, 0x64, 0x40, 0x11, 0x74, - 0x7a, 0x64, 0x41, 0x6a, 0xfa, 0x12, 0x2a, 0x56, 0xc7, 0x2b, 0xc5, 0x0c, 0x09, 0xbb, 0x19, 0x36, - 0x1f, 0x90, 0x22, 0x08, 0x7d, 0x4d, 0xa0, 0x85, 0x76, 0x80, 0xbb, 0xc3, 0x18, 0xe3, 0x15, 0x66, - 0xa1, 0x31, 0x13, 0x92, 0x95, 0xba, 0xbf, 0x50, 0x22, 0x8f, 0xf6, 0xcd, 0x96, 0xb0, 0xaf, 0xbf, - 0x24, 0x0d, 0x5b, 0x7e, 0x12, 0x91, 0xd3, 0xcb, 0xcc, 0x39, 0x2f, 0x66, 0xe4, 0x96, 0x0b, 0x18, - 0xb9, 0xb7, 0xc8, 0xb9, 0xf5, 0x83, 0x6e, 0x72, 0x44, 0x4d, 0x44, 0xab, 0x93, 0xaf, 0x93, 0x89, - 0x03, 0xbf, 0x15, 0xf4, 0x0e, 0xc4, 0x67, 0x7d, 0x52, 0x0a, 0xd2, 0x1b, 0xac, 0x94, 0x6a, 0x49, - 0xb3, 0x78, 0xce, 0x47, 0x17, 0x20, 0x2f, 0x00, 0x81, 0xee, 0xfe, 0xa0, 0x44, 0xe6, 0xe5, 0x82, - 0x5a, 0x69, 0xb5, 0xe8, 0xbc, 0xc5, 0xce, 0x12, 0x29, 0x07, 0x5d, 0x41, 0x88, 0x08, 0x42, 0x65, - 0xaa, 0x34, 0xd1, 0x52, 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, - 0x94, 0x83, 0xc2, 0x40, 0x77, 0x3e, 0x9e, 0xc8, 0xb1, 0x53, 0x16, 0xbe, 0xed, 0x32, 0x96, 0xbb, - 0x29, 0xca, 0x40, 0x41, 0xdd, 0x9f, 0x29, 0x91, 0x19, 0x39, 0xc6, 0x82, 0x4a, 0x2e, 0x2e, 0x12, - 0xad, 0xe0, 0xea, 0x45, 0x82, 0x4a, 0x2a, 0x83, 0x58, 0xba, 0x69, 0x65, 0x18, 0xdd, 0xd4, 0xfd, - 0x0e, 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, 0xf0, 0x62, 0x1e, 0xd1, 0x74, 0x3b, - 0x8f, 0x89, 0x76, 0xce, 0xdc, 0x4c, 0xd3, 0x83, 0xfe, 0x26, 0xa8, 0xdd, 0x27, 0xbc, 0x18, 0x15, - 0xd6, 0xd6, 0x85, 0x62, 0x6d, 0x0d, 0x76, 0x62, 0xb8, 0xbf, 0x59, 0x22, 0x55, 0x89, 0x36, 0x4a, - 0x9f, 0xf8, 0x1d, 0x32, 0x19, 0xb3, 0x4f, 0x23, 0xa7, 0xe9, 0xa5, 0x62, 0x5d, 0xe7, 0xdf, 0x53, - 0x6f, 0x7e, 0xfc, 0x77, 0x0c, 0x92, 0x1a, 0x73, 0x43, 0xaa, 0x01, 0x3c, 0x7c, 0x6e, 0x48, 0xd5, - 0xb5, 0x01, 0x6e, 0xc8, 0x7f, 0x5c, 0x22, 0x13, 0xdc, 0x39, 0x54, 0xcc, 0xc3, 0x66, 0xf8, 0x92, - 0x35, 0xc5, 0xdb, 0x58, 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, 0x46, 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, 0xe6, 0x38, 0x19, 0x5f, 0x3f, 0xa4, 0xba, 0xcc, 0x08, 0x57, 0xf9, 0x01, 0x99, - 0x0b, 0x3a, 0x87, 0x61, 0xfb, 0xd0, 0x6f, 0x71, 0xf8, 0xc9, 0x76, 0xb4, 0x47, 0x44, 0x23, 0x73, - 0x9b, 0x16, 0x31, 0x48, 0x11, 0x1f, 0x85, 0x3d, 0xf9, 0x36, 0x35, 0x65, 0x19, 0x47, 0x08, 0x63, - 0x32, 0xc7, 0x49, 0xca, 0x26, 0x54, 0xac, 0x1c, 0x6d, 0xf5, 0x72, 0xff, 0xac, 0x20, 0xe4, 0xdc, - 0x25, 0x73, 0xbb, 0x41, 0x44, 0x2d, 0x0e, 0x6a, 0x10, 0x52, 0x2b, 0xe0, 0xa0, 0x7b, 0x12, 0x43, - 0x52, 0x4d, 0xc9, 0x86, 0x45, 0x0a, 0x52, 0xa4, 0xa9, 0x91, 0x34, 0x8b, 0x76, 0x8c, 0x6e, 0x6b, - 0x72, 0xf8, 0xb6, 0x94, 0x2f, 0x69, 0xcb, 0xa4, 0x04, 0x36, 0x61, 0x14, 0x46, 0x4d, 0x66, 0xf8, - 0x4c, 0xb1, 0x2d, 0x5d, 0x09, 0x23, 0x6e, 0xf1, 0x70, 0x18, 0xca, 0x34, 0x76, 0x7e, 0x5c, 0xb5, - 0x65, 0x9a, 0x3e, 0x25, 0x76, 0xbf, 0x85, 0x1b, 0x10, 0xce, 0xe2, 0x69, 0xc8, 0xee, 0x6b, 0xb6, - 0xec, 0xfe, 0x74, 0x81, 0x8f, 0x3b, 0x40, 0x6e, 0xbf, 0x47, 0xa6, 0x8d, 0x6f, 0x8f, 0x8e, 0xc2, - 0xa6, 0x3c, 0xea, 0x14, 0x02, 0x5c, 0x29, 0x10, 0xea, 0x0c, 0x14, 0x34, 0x0e, 0x4e, 0x0c, 0x2a, - 0x5e, 0xe9, 0x88, 0x08, 0x54, 0xcb, 0x80, 0x41, 0xdc, 0x57, 0x08, 0x59, 0xbf, 0xef, 0x37, 0x57, - 0x9a, 0xec, 0x20, 0xde, 0x38, 0x37, 0x29, 0x0d, 0x3e, 0x37, 0x71, 0xdf, 0xa5, 0x9b, 0xe1, 0x7d, - 0xdc, 0xd9, 0xa5, 0x99, 0x46, 0x97, 0x88, 0xcf, 0x0a, 0x58, 0xaf, 0xa6, 0x34, 0x93, 0x72, 0x34, - 0x10, 0x50, 0x76, 0x8c, 0x7e, 0xdf, 0x13, 0x0b, 0xd6, 0x30, 0x79, 0xd7, 0xb1, 0x10, 0x38, 0xcc, - 0xfd, 0x66, 0x89, 0xcc, 0x6d, 0xac, 0x59, 0x7a, 0xf2, 0x32, 0x21, 0x5c, 0xdf, 0xbc, 0x73, 0xe7, - 0xa6, 0xf4, 0xa3, 0x72, 0x67, 0x97, 0x2a, 0x05, 0x03, 0xc3, 0x79, 0x8c, 0x54, 0xda, 0xbd, 0x8e, - 0x50, 0x03, 0x27, 0xd1, 0x3f, 0xbb, 0xd5, 0xeb, 0x00, 0x96, 0x19, 0x81, 0x0d, 0x95, 0xc2, 0x81, - 0x0d, 0xf9, 0x61, 0x6c, 0x3f, 0x57, 0x21, 0x0b, 0x1b, 0x6d, 0xff, 0xbe, 0xd5, 0x6b, 0xda, 0x54, - 0x2b, 0x0a, 0x28, 0xf3, 0xa4, 0xdd, 0x24, 0x35, 0x56, 0x0a, 0x02, 0x5a, 0x38, 0xd6, 0xc2, 0x8a, - 0x33, 0xa9, 0x8c, 0x38, 0xce, 0x24, 0x77, 0xcc, 0xce, 0x2e, 0x99, 0x0c, 0xf9, 0xf7, 0xa7, 0x52, - 0x0c, 0x19, 0xfd, 0x73, 0xc7, 0x77, 0x26, 0x3d, 0x3f, 0xcb, 0x82, 0x7b, 0xf8, 0xa1, 0xb7, 0x12, - 0x96, 0xa2, 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, 0x06, 0x81, 0x89, 0xe7, 0xfe, 0xa7, 0x12, 0x79, 0xfc, 0xea, 0xda, 0x7a, - 0x1d, 0xc5, 0x41, 0x9c, 0xd0, 0x05, 0x56, 0x0b, 0xe2, 0xbb, 0xe9, 0x4f, 0xde, 0x6d, 0x19, 0x34, - 0xd5, 0xa7, 0xac, 0xd7, 0x18, 0x39, 0x01, 0x7d, 0x58, 0xa2, 0x2f, 0xa9, 0x5e, 0x78, 0xf6, 0x6a, - 0x40, 0xbf, 0x7d, 0x37, 0x4c, 0xc7, 0xcf, 0x45, 0xb4, 0x2c, 0xc6, 0xb8, 0xaa, 0xa3, 0x74, 0xfc, - 0x1c, 0x28, 0x08, 0x18, 0x58, 0xbc, 0xe5, 0xc3, 0x00, 0x05, 0xa5, 0x18, 0x94, 0xd1, 0x32, 0x2f, - 0x07, 0x85, 0x81, 0x03, 0x6b, 0x05, 0x11, 0xd3, 0x29, 0x8e, 0xc4, 0x4a, 0x54, 0x03, 0xab, 0x49, - 0x00, 0x68, 0x1c, 0xf7, 0xef, 0x96, 0xc8, 0xf9, 0xab, 0xed, 0x1e, 0x9d, 0xf6, 0x68, 0x37, 0xb6, - 0x3a, 0xfb, 0x0a, 0xa9, 0xfa, 0x52, 0xff, 0x15, 0x7d, 0x55, 0x7b, 0x8b, 0x52, 0x8c, 0x79, 0xf0, - 0x9e, 0xc2, 0x2b, 0x10, 0x2b, 0x36, 0x5c, 0x64, 0xd3, 0xbf, 0x2a, 0x93, 0xd9, 0x6b, 0xdb, 0xdb, - 0xf5, 0xab, 0x7e, 0x22, 0x64, 0x69, 0xbe, 0xc3, 0xa6, 0x6e, 0x58, 0xab, 0xd3, 0x57, 0x96, 0x07, - 0xac, 0x1e, 0x8c, 0x0b, 0x5e, 0xe6, 0x71, 0xc1, 0xcb, 0x9b, 0x9d, 0xe4, 0x56, 0xd4, 0x48, 0x22, - 0x3c, 0x4e, 0xc8, 0xb2, 0x6e, 0xa5, 0xbc, 0xaf, 0x0c, 0x92, 0xf7, 0x74, 0xb2, 0x26, 0xe2, 0xe6, - 0xbe, 0xaf, 0x8c, 0xef, 0x4f, 0x2a, 0x75, 0x82, 0x95, 0x52, 0xdb, 0xb7, 0xfa, 0x0e, 0x6c, 0xf2, - 0x1f, 0x20, 0x50, 0xa9, 0xe0, 0x99, 0xde, 0x4f, 0x92, 0xee, 0x35, 0x3a, 0x58, 0xca, 0xfa, 0x62, - 0xb5, 0xe7, 0x68, 0x73, 0x38, 0x19, 0xbc, 0x82, 0x5e, 0x58, 0xba, 0x2c, 0x06, 0x93, 0xa2, 0xdb, - 0x20, 0x44, 0xc3, 0x1e, 0x90, 0x89, 0xe2, 0xfe, 0xe5, 0x32, 0x99, 0xbc, 0x46, 0xb7, 0xab, 0x36, - 0x25, 0xb9, 0x41, 0xc6, 0x7c, 0xba, 0xcd, 0x15, 0x53, 0x44, 0xf5, 0x86, 0xc8, 0x3d, 0x4e, 0xf8, - 0x1b, 0x58, 0x7d, 0x07, 0xc8, 0x24, 0xf6, 0xfb, 0xaa, 0x0a, 0xb0, 0x7c, 0x31, 0x7f, 0x16, 0x14, - 0x4b, 0xf0, 0xdd, 0x54, 0x14, 0x81, 0x24, 0xc4, 0x7c, 0x33, 0xcd, 0x6e, 0x03, 0xa5, 0x54, 0x52, - 0x2c, 0x5e, 0x78, 0x7b, 0xad, 0xce, 0xd1, 0x05, 0x5d, 0xee, 0x9b, 0x91, 0x85, 0xa0, 0xc9, 0xb9, - 0x6f, 0x90, 0x73, 0xec, 0x74, 0x8f, 0xb2, 0x9b, 0xb5, 0x66, 0x72, 0x99, 0xd3, 0xfd, 0x07, 0x65, - 0x72, 0x66, 0xb3, 0xb1, 0xd6, 0xb0, 0xbd, 0x6a, 0x6f, 0x90, 0x19, 0xbe, 0xcd, 0x22, 0xd3, 0x79, - 0x6d, 0x51, 0x5f, 0xb9, 0xa3, 0xb7, 0x0d, 0x18, 0x58, 0x98, 0x78, 0x6c, 0x1a, 0xbc, 0xdf, 0x49, - 0xc7, 0xf9, 0x6c, 0xbe, 0x7d, 0x13, 0xb0, 0x1c, 0xc1, 0xb8, 0x63, 0x73, 0x11, 0xa7, 0xc0, 0x6a, - 0xd7, 0xfe, 0x02, 0x55, 0xf9, 0xe3, 0x66, 0x1c, 0xd0, 0x05, 0x40, 0xd7, 0xbf, 0xd7, 0x94, 0xec, - 0xab, 0x75, 0x78, 0xec, 0xaa, 0x82, 0x42, 0x0a, 0xdb, 0x90, 0xb7, 0xe3, 0x85, 0x77, 0xfd, 0xfc, - 0x48, 0xcb, 0xaf, 0x91, 0xaa, 0x8a, 0x88, 0x91, 0x81, 0x4c, 0xa5, 0xec, 0x40, 0xa6, 0x02, 0x02, - 0x47, 0xfa, 0x3a, 0x2b, 0x99, 0xbe, 0xce, 0x7f, 0x46, 0x35, 0x58, 0x75, 0xf8, 0x4f, 0xf9, 0xb0, - 0x4a, 0x05, 0x6f, 0xc2, 0x8e, 0x93, 0x04, 0x53, 0x3f, 0x9b, 0xc3, 0x89, 0x7c, 0x25, 0x70, 0x5e, - 0xa9, 0xcb, 0xba, 0xa0, 0xc9, 0x38, 0x5b, 0x64, 0xb2, 0x1b, 0xf9, 0x8d, 0x84, 0x85, 0xeb, 0x0e, - 0x41, 0x91, 0x71, 0x75, 0x9d, 0xd7, 0x04, 0x49, 0xc2, 0xfd, 0xb5, 0x12, 0x21, 0x5b, 0xc1, 0x01, - 0xdd, 0x5c, 0xbc, 0xce, 0x9e, 0x3f, 0x42, 0x6b, 0xf0, 0x26, 0x19, 0x8b, 0xbb, 0x74, 0x69, 0x17, - 0x3a, 0x02, 0xd2, 0x3d, 0x6a, 0xd0, 0x3a, 0xfa, 0x33, 0xe0, 0x2f, 0x60, 0x74, 0xdc, 0x5f, 0x22, - 0x64, 0x4e, 0xa3, 0xa1, 0x3a, 0xee, 0x5c, 0xb4, 0xe2, 0x53, 0x1f, 0x4b, 0xc5, 0xa7, 0x56, 0x19, - 0xb6, 0x11, 0x92, 0x9a, 0x90, 0xca, 0x81, 0x77, 0x5f, 0x68, 0xff, 0xaf, 0x15, 0xed, 0x10, 0xb6, - 0xb4, 0x7c, 0xc3, 0xbb, 0xcf, 0xd5, 0xa1, 0x17, 0x25, 0x03, 0xd1, 0x92, 0x8f, 0xf8, 0x41, 0x0f, - 0x5b, 0x81, 0x68, 0x6e, 0xfc, 0xc4, 0x7f, 0xd5, 0xbf, 0x99, 0x50, 0xc4, 0xe6, 0x58, 0xab, 0x41, - 0x47, 0xb8, 0xec, 0x86, 0x6c, 0x35, 0xe8, 0xa4, 0x5b, 0x0d, 0x3a, 0x05, 0x5a, 0x0d, 0x3a, 0x18, - 0xc6, 0x36, 0x29, 0x3c, 0xdd, 0x2c, 0x8c, 0x6a, 0xfa, 0xca, 0x9b, 0x43, 0x35, 0x2d, 0x5c, 0xe6, - 0xbc, 0xf9, 0x4b, 0x52, 0x07, 0x14, 0xa5, 0xb9, 0x5d, 0x90, 0x4d, 0x3b, 0x3f, 0x4f, 0x6d, 0x06, - 0xf1, 0x3f, 0x46, 0x2c, 0x51, 0xe3, 0x51, 0xec, 0x52, 0x6f, 0x9d, 0xa4, 0x37, 0x82, 0x04, 0xef, - 0xd4, 0x0f, 0x49, 0x11, 0x63, 0x03, 0x73, 0xfb, 0x96, 0xea, 0x8f, 0xf3, 0xed, 0x12, 0x39, 0x47, - 0xbf, 0x13, 0x6f, 0x91, 0x97, 0x01, 0x1e, 0x0c, 0x8a, 0x50, 0xb1, 0x8d, 0x61, 0xf9, 0xa4, 0x8f, - 0x10, 0xef, 0xee, 0xe7, 0xe5, 0xf1, 0x63, 0x16, 0x4a, 0x6e, 0xa7, 0x33, 0x7b, 0xb8, 0xd4, 0x22, - 0x53, 0x92, 0x31, 0x33, 0xb4, 0xef, 0x55, 0x73, 0x33, 0x3e, 0x7e, 0x05, 0x4a, 0x47, 0xd8, 0xf2, - 0xdb, 0x3d, 0xaf, 0x93, 0x60, 0xe8, 0xbf, 0xd6, 0xd5, 0x59, 0x2b, 0x82, 0x11, 0x47, 0xd8, 0xca, - 0x3e, 0x99, 0x31, 0x79, 0x6e, 0x84, 0x2d, 0x85, 0xe4, 0x6c, 0x06, 0x3f, 0x8d, 0xb0, 0xc1, 0x1e, - 0x79, 0x6c, 0x20, 0x5f, 0x8c, 0xae, 0x59, 0x74, 0xee, 0x1b, 0x02, 0xf3, 0x34, 0x1c, 0x2c, 0x37, - 0x6c, 0x07, 0xcb, 0xf3, 0x45, 0x97, 0xce, 0x00, 0x2f, 0xcb, 0xae, 0xd9, 0x7f, 0xdc, 0x09, 0x9c, - 0x6d, 0x32, 0xd1, 0xc6, 0x12, 0x79, 0xaa, 0xf3, 0xd2, 0x30, 0x8b, 0x53, 0x2b, 0x17, 0xac, 0x3c, - 0x06, 0x41, 0xcb, 0xfd, 0xf5, 0x12, 0x19, 0x3b, 0x8d, 0xe9, 0xa9, 0xdb, 0xd3, 0x33, 0x48, 0x45, - 0x15, 0xf7, 0x13, 0x97, 0xc1, 0xbb, 0xb7, 0x7e, 0x9f, 0x5a, 0xb3, 0x31, 0x53, 0x25, 0x33, 0x67, - 0xe8, 0x17, 0xcb, 0x64, 0x1a, 0x1b, 0x92, 0xfe, 0x9e, 0xcf, 0xa1, 0xff, 0x6f, 0xc7, 0x6f, 0x4b, - 0xb7, 0x70, 0xda, 0xec, 0xda, 0x32, 0x81, 0x60, 0xe3, 0x62, 0xe5, 0x5d, 0xd3, 0x6b, 0x2e, 0x54, - 0x22, 0x55, 0xd9, 0x72, 0xa9, 0x83, 0x8d, 0x8b, 0x9a, 0xff, 0x3d, 0x2f, 0x69, 0xee, 0x0b, 0x93, - 0x4c, 0x75, 0xf7, 0x0e, 0x16, 0x02, 0x87, 0x39, 0x2b, 0x64, 0x5e, 0x72, 0xec, 0x6d, 0x3e, 0x75, - 0x42, 0x5d, 0x54, 0x77, 0xcb, 0xc0, 0x06, 0x43, 0x1a, 0xdf, 0xf9, 0x2c, 0x99, 0xc3, 0xc9, 0x09, - 0x7b, 0x89, 0x0c, 0x3a, 0x18, 0x67, 0x41, 0x07, 0x2c, 0xc8, 0x73, 0xdb, 0x82, 0x40, 0x0a, 0xd3, - 0xfd, 0x51, 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, 0x05, 0x20, 0x49, 0xa2, 0x25, 0x91, 0xe5, 0x4d, 0xca, 0x37, 0xd6, 0xdc, 0xbf, - 0x56, 0x22, 0xf3, 0x37, 0x53, 0x97, 0xba, 0x30, 0x96, 0xcb, 0x8f, 0x32, 0x5c, 0x63, 0x0d, 0x56, - 0x0a, 0x02, 0xfa, 0xc0, 0xcd, 0xf4, 0x9f, 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, 0x94, 0x7e, 0xc4, 0x04, 0x8c, 0xf8, 0xc5, 0xef, 0x80, 0xea, 0x2a, 0xee, 0x35, 0xca, - 0xa9, 0xf6, 0xdc, 0x39, 0xaf, 0x91, 0xf1, 0xee, 0xbe, 0x17, 0xfb, 0xa9, 0x08, 0x8d, 0xf1, 0x3a, - 0x16, 0x52, 0x6a, 0x73, 0xaa, 0x02, 0x2b, 0x01, 0x8e, 0xed, 0xfe, 0x09, 0x95, 0xf5, 0x18, 0xd3, - 0x30, 0x42, 0x1e, 0xbb, 0x66, 0xf1, 0xd8, 0x73, 0xf9, 0xb7, 0xa4, 0x07, 0xb2, 0x57, 0x3d, 0xc5, - 0x5e, 0xcf, 0x17, 0xa0, 0x75, 0x3c, 0x67, 0x1d, 0x90, 0x69, 0x76, 0x0b, 0x5b, 0x84, 0xa6, 0xbc, - 0x62, 0x19, 0x50, 0x4f, 0xa6, 0x0c, 0xa8, 0x79, 0x03, 0xd5, 0x30, 0xa3, 0x5e, 0x20, 0x93, 0x22, - 0x14, 0x22, 0x1d, 0x3d, 0x28, 0x70, 0x41, 0xc2, 0xdd, 0x5f, 0xad, 0x10, 0xeb, 0xd6, 0xb7, 0xf3, - 0xdd, 0x12, 0xa1, 0x4a, 0x0b, 0xbb, 0xba, 0xd0, 0xaa, 0xf5, 0xd0, 0x5f, 0x86, 0x2e, 0xad, 0x56, - 0xaf, 0x4d, 0xff, 0xdb, 0xdc, 0xeb, 0x84, 0xaa, 0x18, 0x7d, 0x3b, 0x3d, 0xe6, 0x5d, 0x2d, 0x7c, - 0xd9, 0x5c, 0x9d, 0x85, 0x5e, 0xa1, 0x7d, 0x59, 0x86, 0xa1, 0x5a, 0x81, 0x21, 0x7b, 0xe5, 0xfc, - 0x5e, 0x89, 0x5c, 0xe2, 0xf7, 0x9e, 0x8b, 0x8f, 0xa4, 0x90, 0xe1, 0x59, 0x97, 0x44, 0x35, 0x39, - 0x0c, 0x56, 0x5c, 0x7d, 0x5d, 0x4c, 0xf2, 0xa5, 0xfa, 0x70, 0xad, 0xc2, 0xb0, 0xdd, 0x74, 0xff, - 0x4d, 0x85, 0xae, 0x5f, 0x3a, 0x9f, 0xfa, 0x1e, 0xe8, 0x6b, 0x16, 0x9b, 0x3c, 0x9d, 0x62, 0x93, - 0x33, 0x16, 0xf2, 0x83, 0xb9, 0x02, 0x9a, 0x90, 0x33, 0x78, 0xde, 0x78, 0xcd, 0xf7, 0xa2, 0x64, - 0xc7, 0xf7, 0xd8, 0xc1, 0xa3, 0x58, 0x04, 0x43, 0x1d, 0x66, 0xaa, 0xf8, 0x9a, 0xad, 0x34, 0x35, - 0xe8, 0x6f, 0xc0, 0xb9, 0x47, 0x1c, 0x76, 0xca, 0x19, 0x79, 0x54, 0xe9, 0x62, 0x83, 0x09, 0x84, - 0x43, 0x76, 0xc8, 0x66, 0x97, 0x44, 0xb3, 0xce, 0x56, 0x1f, 0x39, 0xc8, 0x68, 0xc2, 0x38, 0xca, - 0x1e, 0x2f, 0x7a, 0x94, 0x3d, 0x91, 0x13, 0xb8, 0xfb, 0x53, 0x25, 0x72, 0x16, 0x3f, 0x8c, 0x1d, - 0xe4, 0x19, 0x3b, 0x21, 0x99, 0xc7, 0x11, 0xb4, 0xfd, 0x44, 0x96, 0x89, 0x15, 0x96, 0xa3, 0x4b, - 0xdb, 0x74, 0xb4, 0xc6, 0x76, 0xdd, 0x26, 0x06, 0x69, 0xea, 0xee, 0xaf, 0x96, 0x08, 0x8b, 0x22, - 0x3b, 0x8d, 0x7d, 0xec, 0xaa, 0xbd, 0x8f, 0xb9, 0xf9, 0x42, 0x63, 0xc0, 0x16, 0xf6, 0x2a, 0x59, - 0x40, 0x68, 0x3d, 0x0a, 0xef, 0x1f, 0x49, 0xe5, 0x3a, 0xdf, 0x37, 0xfb, 0x57, 0x4b, 0x5c, 0xdc, - 0x29, 0xad, 0xf8, 0x1e, 0x06, 0x8a, 0xe9, 0xdf, 0xb8, 0x90, 0xa5, 0x12, 0xb8, 0x5c, 0x5c, 0xa0, - 0xb1, 0xf5, 0x6f, 0x44, 0x8a, 0xa5, 0x08, 0x42, 0x7f, 0x1b, 0xee, 0x3f, 0x2c, 0x91, 0x47, 0x4d, - 0x44, 0xe3, 0xba, 0x58, 0x9e, 0x43, 0xb4, 0x46, 0xa6, 0xc2, 0x2e, 0x66, 0x39, 0x51, 0x16, 0xc0, - 0xf3, 0x72, 0xc6, 0x6f, 0x89, 0x72, 0xba, 0x72, 0xcf, 0x99, 0xd4, 0x65, 0x39, 0xa8, 0x9a, 0x8e, - 0x4b, 0x26, 0x98, 0x25, 0x1a, 0x8b, 0x8b, 0x7e, 0x04, 0xb9, 0x99, 0x1d, 0x03, 0xd0, 0x45, 0xce, - 0x21, 0xee, 0x5f, 0x2f, 0xf1, 0x59, 0x36, 0xbb, 0xee, 0x7c, 0x9d, 0x2c, 0x1c, 0xa0, 0xb1, 0xb0, - 0x7e, 0xbf, 0x8b, 0x5b, 0x08, 0x3b, 0xc6, 0x2c, 0x15, 0x11, 0x9c, 0x03, 0x86, 0xbb, 0xba, 0x28, - 0x7a, 0xbf, 0x70, 0x23, 0x45, 0x16, 0xfa, 0x1a, 0x72, 0x7f, 0x5f, 0xf0, 0x2a, 0xd3, 0x5a, 0xe8, - 0x62, 0xeb, 0x86, 0xad, 0xb5, 0xcd, 0x1a, 0x88, 0xb9, 0x52, 0x8b, 0xad, 0xce, 0x8b, 0x41, 0xc2, - 0xf1, 0x5c, 0xce, 0xa7, 0xa6, 0x5a, 0x44, 0x15, 0x96, 0xcd, 0x5a, 0x3a, 0x55, 0xc7, 0xba, 0x82, - 0x80, 0x81, 0x85, 0x75, 0xba, 0x51, 0x78, 0x18, 0xb4, 0x58, 0xd8, 0x76, 0xc5, 0xae, 0x53, 0x57, - 0x10, 0x30, 0xb0, 0xd0, 0x44, 0xeb, 0x75, 0x62, 0x2e, 0xc0, 0xbd, 0x1d, 0x91, 0x08, 0x61, 0x4a, - 0x9b, 0x68, 0xef, 0x98, 0x40, 0xb0, 0x71, 0xdd, 0xdf, 0xa9, 0x12, 0xa2, 0x55, 0x04, 0xf4, 0x10, - 0x4e, 0x35, 0x3d, 0xaa, 0x20, 0xf1, 0x8c, 0x2e, 0x95, 0xfc, 0xfb, 0x2d, 0xba, 0xf2, 0xf2, 0x9a, - 0xa8, 0xc8, 0x7d, 0x5b, 0x2f, 0x4b, 0x06, 0x91, 0xc5, 0xb9, 0xfe, 0x2c, 0xd5, 0xb2, 0xf3, 0x8d, - 0x12, 0x99, 0xf6, 0xda, 0x78, 0x07, 0x36, 0x61, 0x23, 0x2a, 0x17, 0x71, 0x56, 0x1a, 0x3d, 0x59, - 0xd1, 0x75, 0x79, 0x67, 0x5e, 0x91, 0xa7, 0x5a, 0x06, 0x24, 0xb7, 0x3f, 0x66, 0x17, 0x9c, 0x97, - 0xa5, 0x6a, 0xc9, 0x3f, 0xca, 0x52, 0x5a, 0xb5, 0xac, 0x32, 0xd1, 0x60, 0x68, 0x95, 0x78, 0x53, - 0xc4, 0x88, 0x61, 0x1f, 0x2b, 0x72, 0xc7, 0xd4, 0xda, 0x34, 0xf3, 0xae, 0xfb, 0xe3, 0x59, 0x94, - 0x8e, 0x68, 0x1d, 0x2f, 0x72, 0x81, 0xd3, 0xd0, 0xdd, 0x72, 0xa2, 0x59, 0x13, 0x32, 0xdf, 0xb2, - 0x37, 0x09, 0x11, 0xa2, 0x74, 0x39, 0xbf, 0x85, 0xd4, 0xee, 0xa2, 0xb7, 0x85, 0x14, 0x00, 0xd2, - 0x4d, 0xd0, 0x11, 0xb1, 0x88, 0xe2, 0xcd, 0xce, 0x6e, 0x28, 0xa2, 0x94, 0x5e, 0x2a, 0xf0, 0xcd, - 0x8f, 0x62, 0x2a, 0x9e, 0xb1, 0x8e, 0xde, 0x06, 0x6e, 0x0a, 0x2a, 0xa0, 0xe8, 0xa1, 0x9b, 0x88, - 0xdd, 0x8e, 0xc0, 0x3b, 0xb5, 0x95, 0x21, 0x2e, 0x8a, 0xb0, 0xbb, 0x15, 0x7a, 0xf3, 0x65, 0x3f, - 0xa9, 0xb8, 0xe2, 0xb4, 0xa8, 0x5e, 0x2f, 0xae, 0xbc, 0xc6, 0x9b, 0x9d, 0x77, 0x62, 0x9f, 0xdd, - 0xa3, 0xad, 0xae, 0x3e, 0xa3, 0x2f, 0xc6, 0xf2, 0xf2, 0xcc, 0x8c, 0x3e, 0x56, 0x4d, 0xdc, 0x83, - 0xc5, 0x6f, 0x99, 0x28, 0x68, 0x91, 0x14, 0xe9, 0xa8, 0x9d, 0x56, 0x48, 0x4f, 0xf6, 0x6d, 0x9b, - 0x18, 0xa4, 0xa9, 0x2f, 0x05, 0x64, 0xd6, 0x5a, 0xb1, 0x23, 0x74, 0x76, 0xb6, 0xc9, 0x42, 0x7a, - 0x49, 0x8e, 0xd0, 0xc7, 0xf9, 0xc7, 0x63, 0x64, 0xce, 0x66, 0x0c, 0x8c, 0x60, 0x38, 0xa0, 0xa3, - 0xa6, 0xdf, 0x53, 0x25, 0x54, 0x51, 0xfc, 0x7f, 0x43, 0x02, 0x40, 0xe3, 0xb0, 0xd4, 0x32, 0xac, - 0xfa, 0x3b, 0xef, 0xf4, 0x0b, 0xef, 0x86, 0x82, 0x80, 0x81, 0x85, 0x0a, 0xdb, 0x4e, 0x18, 0x26, - 0x4a, 0x70, 0x2b, 0x9e, 0x59, 0x65, 0xa5, 0x20, 0xa0, 0x28, 0xb0, 0xef, 0xe2, 0x80, 0xda, 0xb6, - 0xbf, 0x4b, 0x09, 0xec, 0xeb, 0x26, 0x10, 0x6c, 0x5c, 0xdc, 0x80, 0xc2, 0x98, 0x31, 0xa1, 0x50, - 0x0b, 0x75, 0x2c, 0x4e, 0x83, 0xdf, 0x16, 0x92, 0x70, 0xe7, 0xcb, 0xe4, 0x51, 0x75, 0xb9, 0x07, - 0xb8, 0xff, 0x50, 0xb6, 0x38, 0x61, 0xd9, 0x76, 0x8f, 0xae, 0x65, 0xa3, 0xc1, 0xa0, 0xfa, 0x78, - 0xc4, 0x2b, 0x54, 0x3a, 0x49, 0x71, 0xd2, 0x3e, 0xe2, 0xbd, 0x6e, 0x41, 0x21, 0x85, 0x4d, 0xf5, - 0x89, 0x05, 0x2c, 0x61, 0xaa, 0x94, 0xa4, 0xc0, 0x2f, 0x29, 0xa9, 0x9d, 0xf9, 0x7a, 0x0a, 0x0e, - 0x7d, 0x35, 0xd0, 0x75, 0xc8, 0x75, 0x0b, 0xb4, 0x60, 0xd8, 0x77, 0x10, 0x51, 0x85, 0x6a, 0x11, - 0xdc, 0xb2, 0xc1, 0x90, 0xc6, 0xc7, 0x33, 0x72, 0x2f, 0xa2, 0x1f, 0x3d, 0xa1, 0x2a, 0x42, 0x2f, - 0xe2, 0x37, 0xd4, 0x8d, 0x33, 0xf2, 0x15, 0x03, 0x06, 0x16, 0xa6, 0xfb, 0x01, 0x39, 0x9b, 0x11, - 0xbc, 0x8c, 0x8c, 0x43, 0x19, 0x54, 0x8e, 0x29, 0x15, 0x8d, 0x83, 0x37, 0x56, 0xc4, 0x68, 0x0c, - 0x2c, 0xe4, 0x4e, 0xe6, 0x38, 0x35, 0x72, 0x7a, 0x29, 0xee, 0xdc, 0x90, 0x00, 0xd0, 0x38, 0xee, - 0xff, 0xa0, 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, 0x94, 0x5d, 0x0d, 0xe5, 0xa1, 0x79, 0x4c, 0x12, 0xcc, 0xa7, 0xae, - 0x86, 0x6a, 0x10, 0x98, 0x78, 0x4b, 0x6f, 0x92, 0x69, 0x63, 0xc2, 0x87, 0x89, 0xeb, 0x5c, 0xfa, - 0x02, 0xdd, 0xfd, 0x53, 0x13, 0x39, 0x54, 0x5c, 0xe8, 0xff, 0x2c, 0x93, 0xf9, 0x8c, 0x93, 0x8c, - 0xbb, 0x01, 0x8b, 0x7c, 0xb6, 0x44, 0xde, 0x75, 0x5a, 0x06, 0x0c, 0x62, 0x0b, 0xae, 0x72, 0x01, - 0xc1, 0x25, 0xa5, 0x68, 0x65, 0xa0, 0x14, 0x15, 0xc2, 0x6a, 0xec, 0xe4, 0xc2, 0xca, 0xde, 0x1d, - 0xc6, 0x0b, 0xed, 0x0e, 0x0f, 0x40, 0xc0, 0x59, 0x1b, 0xcc, 0x64, 0x81, 0x0d, 0xe6, 0xa3, 0x12, - 0x99, 0xb3, 0x39, 0xaf, 0xc0, 0x8c, 0x3f, 0xac, 0x13, 0xb8, 0xcc, 0x0c, 0xb1, 0x24, 0x0a, 0xdb, - 0x6d, 0x3f, 0x12, 0x91, 0x62, 0x73, 0xc2, 0xae, 0x12, 0xa5, 0x60, 0x60, 0xb8, 0x3f, 0x5f, 0x26, - 0x0b, 0x3a, 0x6c, 0x58, 0xa4, 0xeb, 0x1c, 0xdd, 0xd1, 0xc0, 0xb6, 0x75, 0x34, 0x90, 0x97, 0x85, - 0x33, 0xd5, 0xaf, 0x81, 0xc7, 0x04, 0xef, 0xa6, 0x8e, 0x09, 0x5e, 0x1d, 0x92, 0xee, 0xf1, 0x47, - 0x06, 0xbf, 0x5c, 0x26, 0xe7, 0xd3, 0x55, 0xd6, 0xda, 0x5e, 0x70, 0x30, 0xc2, 0x79, 0xfa, 0xb2, - 0x35, 0x4f, 0xaf, 0x0f, 0x37, 0x1e, 0xd6, 0xb9, 0x81, 0x93, 0xe5, 0xa5, 0x26, 0xeb, 0xcd, 0x93, - 0x10, 0x3f, 0x7e, 0xc6, 0xfe, 0x73, 0x89, 0x3c, 0x96, 0x59, 0xef, 0x34, 0x5c, 0xa0, 0x5f, 0xb2, - 0x5d, 0xa0, 0xaf, 0x9c, 0x60, 0x78, 0x03, 0x7c, 0xa2, 0xff, 0xad, 0x3c, 0x60, 0x58, 0xcc, 0x5b, - 0x76, 0x8b, 0x6e, 0xbf, 0x4d, 0xba, 0x49, 0xc5, 0x18, 0x1b, 0x29, 0x0f, 0xf9, 0x2e, 0xb2, 0xfd, - 0x53, 0x17, 0xd3, 0xb5, 0xbf, 0x94, 0x26, 0xa1, 0xc1, 0x60, 0x52, 0xb0, 0x73, 0x63, 0x95, 0x47, - 0x94, 0x1b, 0x8b, 0xca, 0x98, 0x43, 0x65, 0xa5, 0xa7, 0x9d, 0x70, 0x86, 0xfd, 0x6e, 0x60, 0x51, - 0x35, 0x09, 0x75, 0x5a, 0x1e, 0x22, 0x31, 0x96, 0xbb, 0xe0, 0xac, 0x0f, 0x68, 0xc6, 0x5b, 0xf0, - 0xbb, 0x8f, 0xca, 0x63, 0xa9, 0x68, 0xba, 0xdf, 0xaa, 0x90, 0x4f, 0x1e, 0xc3, 0x76, 0x74, 0x93, - 0xb0, 0x4e, 0x3e, 0x5f, 0x4c, 0xbb, 0xa7, 0x96, 0x32, 0x2b, 0x5b, 0xfe, 0xaa, 0xd4, 0xc7, 0x2a, - 0x7f, 0xec, 0x8f, 0xf5, 0x73, 0xa6, 0x33, 0x91, 0x87, 0x3a, 0x5e, 0x3d, 0xf1, 0xc2, 0x7a, 0x70, - 0xde, 0xc5, 0x53, 0x74, 0x7c, 0x60, 0xea, 0xe5, 0xa7, 0x33, 0x07, 0x65, 0x05, 0x58, 0xe0, 0x55, - 0x31, 0x2c, 0x34, 0xee, 0xa2, 0xe8, 0xab, 0x62, 0x12, 0x00, 0x1a, 0xc7, 0x8a, 0xa3, 0x28, 0xe7, - 0xc6, 0x51, 0xfc, 0xfb, 0x12, 0x39, 0x97, 0xee, 0xc4, 0x69, 0x48, 0x9d, 0x86, 0x2d, 0x75, 0x96, - 0x87, 0xfb, 0xf6, 0x03, 0x04, 0xce, 0x2f, 0x4f, 0x93, 0x47, 0xfa, 0x36, 0x2b, 0x3e, 0x8d, 0x3f, - 0x5e, 0x22, 0x67, 0xf6, 0x98, 0x7d, 0x61, 0xdc, 0xf8, 0x11, 0x03, 0xcb, 0xb9, 0xee, 0x74, 0xec, - 0x45, 0x21, 0x6e, 0x2d, 0xf5, 0xa1, 0x40, 0x7f, 0x63, 0xce, 0xcf, 0xd0, 0xa9, 0xf6, 0xee, 0xc5, - 0x7d, 0xb9, 0xdf, 0x05, 0x1f, 0x7d, 0x21, 0xc7, 0x95, 0x97, 0x93, 0x35, 0x7e, 0x75, 0x11, 0x63, - 0x45, 0xb3, 0xb0, 0x20, 0xb3, 0x55, 0xaa, 0x04, 0xf0, 0x2c, 0x61, 0xa8, 0xf6, 0x15, 0xba, 0x83, - 0x96, 0x75, 0xff, 0x80, 0xcb, 0x24, 0x09, 0x01, 0x45, 0xd1, 0x79, 0x8f, 0x54, 0xf7, 0xe4, 0x25, - 0x1f, 0x21, 0xf4, 0x72, 0x76, 0x96, 0xcc, 0x3b, 0x41, 0x3c, 0xca, 0x5d, 0x81, 0x40, 0x13, 0x75, - 0xae, 0x91, 0x4a, 0x67, 0x37, 0x16, 0xf7, 0x6e, 0xf3, 0xe2, 0x68, 0xec, 0xa8, 0x25, 0x7e, 0x93, - 0x90, 0x16, 0x02, 0x92, 0x40, 0x4a, 0xd1, 0x4e, 0x4b, 0xf8, 0xb0, 0x73, 0x28, 0xc1, 0x6a, 0xad, - 0x9f, 0x12, 0x2d, 0x04, 0x24, 0xc1, 0x02, 0xf6, 0xf0, 0xbe, 0x82, 0x70, 0x50, 0xe7, 0x5c, 0xca, - 0xee, 0xbb, 0x95, 0xc1, 0x53, 0xca, 0xb1, 0x62, 0xe0, 0x84, 0xd0, 0x33, 0xdd, 0x64, 0x29, 0xa0, - 0x85, 0xff, 0x20, 0x2f, 0x31, 0x70, 0x5f, 0xba, 0x68, 0x7e, 0x90, 0xc6, 0xcb, 0x41, 0xd0, 0x62, - 0x54, 0xfd, 0xee, 0xfe, 0x6e, 0x2c, 0xfc, 0x03, 0x79, 0x54, 0xfb, 0x92, 0x79, 0x0b, 0xaa, 0xac, - 0x1c, 0x04, 0x2d, 0xa7, 0x46, 0xca, 0xbb, 0x4d, 0x91, 0xc7, 0x31, 0xc7, 0xa2, 0xb5, 0xaf, 0x85, - 0xae, 0x4e, 0x60, 0x04, 0xdd, 0xc6, 0x1a, 0xd0, 0xfa, 0x54, 0x1f, 0x99, 0xdc, 0xe5, 0x37, 0xfd, - 0x44, 0xce, 0xc6, 0xcb, 0x79, 0xb7, 0x11, 0xfb, 0xae, 0x05, 0xf2, 0x9b, 0x0c, 0x02, 0x00, 0x92, - 0x1c, 0xdd, 0x87, 0xc9, 0xae, 0xba, 0xba, 0x28, 0x92, 0x36, 0x2e, 0x0f, 0x77, 0xd5, 0x51, 0x58, - 0xcf, 0xaa, 0x14, 0x0c, 0x8a, 0xc8, 0xf3, 0x9e, 0xcc, 0x62, 0xcf, 0x12, 0x36, 0xe6, 0xf2, 0x7c, - 0x66, 0xd2, 0x7b, 0xce, 0xf3, 0x0a, 0x04, 0x9a, 0xa8, 0xd3, 0x23, 0xb3, 0x87, 0x71, 0x77, 0xdf, - 0x97, 0x4b, 0x9f, 0x65, 0x71, 0x9c, 0xbe, 0xf2, 0xf9, 0x9c, 0xd4, 0x9c, 0xa2, 0x4a, 0x10, 0x25, - 0x3d, 0xaf, 0xdd, 0x27, 0xc1, 0x58, 0x3a, 0xa4, 0xdb, 0x26, 0x59, 0xb0, 0x5b, 0xc1, 0x4f, 0xf2, - 0x7e, 0x2f, 0xdc, 0x39, 0x4a, 0x7c, 0x91, 0xe5, 0x31, 0xe7, 0x93, 0xbc, 0xcd, 0x91, 0xfb, 0x3f, - 0x89, 0x00, 0x80, 0x24, 0xe7, 0xfe, 0xfe, 0x78, 0xff, 0xf6, 0xc3, 0xb4, 0xc3, 0x9f, 0xed, 0x3f, - 0x6c, 0x7c, 0x6b, 0x78, 0xeb, 0xe7, 0x01, 0x1e, 0x3b, 0x52, 0xe9, 0xfd, 0x48, 0x37, 0x73, 0x6f, - 0x11, 0xf2, 0x7b, 0x58, 0x23, 0x8a, 0x4f, 0x8b, 0xca, 0xe8, 0x99, 0x0d, 0x87, 0x01, 0x6d, 0xa6, - 0x15, 0xb2, 0xca, 0xc7, 0x56, 0xc8, 0xee, 0xd0, 0xf9, 0x46, 0x1d, 0x42, 0xa7, 0x94, 0x18, 0x32, - 0x0b, 0x03, 0xdb, 0x09, 0xd6, 0x04, 0x09, 0x50, 0xc4, 0x70, 0xe2, 0x1e, 0x4f, 0x0f, 0x02, 0x7c, - 0x06, 0x16, 0xa9, 0x48, 0xb9, 0xa5, 0xbe, 0x21, 0x66, 0xe2, 0xf1, 0xfa, 0x71, 0xc8, 0x1f, 0xe5, - 0x21, 0xc0, 0xf1, 0x8d, 0x9d, 0xa6, 0x82, 0xf7, 0x4f, 0x4a, 0x19, 0xea, 0x08, 0x57, 0xc9, 0x3f, - 0x6f, 0xab, 0xe4, 0xcf, 0xa5, 0x55, 0xf2, 0x3e, 0x03, 0xda, 0xd2, 0xc6, 0x8b, 0xa7, 0xe3, 0x2b, - 0x9a, 0xf3, 0xc2, 0xfd, 0xdf, 0x25, 0x52, 0xa9, 0x87, 0xad, 0x11, 0x9a, 0xe8, 0x57, 0x2d, 0x13, - 0xfd, 0xd9, 0xdc, 0x87, 0x54, 0x06, 0x1a, 0xe4, 0xb7, 0x52, 0x06, 0xf9, 0x67, 0xf2, 0x49, 0x1d, - 0x6f, 0x7e, 0x7f, 0xbb, 0x42, 0xcc, 0xa7, 0x60, 0x9c, 0xdf, 0x3e, 0x49, 0xcc, 0x61, 0xa5, 0xd8, - 0xeb, 0x30, 0xa2, 0x0d, 0x16, 0xa1, 0x23, 0x2f, 0x24, 0xfd, 0xa9, 0x0d, 0x3d, 0xbc, 0xe3, 0x07, - 0x7b, 0xfb, 0x89, 0xdf, 0x4a, 0x0f, 0xec, 0xf4, 0x42, 0x0f, 0xff, 0x7b, 0x89, 0xcc, 0xa7, 0x5a, - 0x77, 0x0e, 0xb2, 0xee, 0x34, 0x9c, 0xd4, 0xe6, 0x3e, 0x93, 0x7b, 0x0b, 0x62, 0x99, 0x10, 0xe5, - 0x27, 0x96, 0x96, 0x31, 0xd3, 0x12, 0x94, 0x23, 0x39, 0x06, 0x03, 0x03, 0x7d, 0xec, 0x49, 0xd8, - 0x0d, 0xdb, 0xe1, 0xde, 0xd1, 0x75, 0x5f, 0x5e, 0x99, 0x57, 0x3e, 0xf6, 0x6d, 0x0d, 0x02, 0x13, - 0x0f, 0xd3, 0x29, 0xa5, 0x5f, 0x12, 0xfa, 0x73, 0x46, 0xfd, 0xd3, 0xc3, 0xa8, 0xbf, 0x5b, 0x22, - 0x0b, 0xd8, 0x3a, 0x0b, 0xb0, 0x90, 0x01, 0x82, 0x2a, 0xaf, 0x75, 0xe9, 0x98, 0xbc, 0xd6, 0x78, - 0xc3, 0x22, 0x69, 0x85, 0x3d, 0x99, 0x6b, 0xc5, 0x90, 0x62, 0x58, 0x0a, 0x02, 0x2a, 0xf0, 0x68, - 0x9f, 0xc4, 0xed, 0x09, 0x13, 0x8f, 0x96, 0x82, 0x80, 0xca, 0xb4, 0xd7, 0x63, 0xd9, 0x69, 0xaf, - 0x79, 0x6a, 0x1a, 0x71, 0xb0, 0x2f, 0x76, 0x66, 0x23, 0x35, 0x8d, 0x3c, 0xf1, 0xd7, 0x38, 0xee, - 0xbf, 0xa8, 0x90, 0x19, 0x8c, 0x6f, 0x53, 0xc1, 0xbf, 0xaf, 0x5a, 0xc1, 0xbf, 0x4f, 0xa5, 0x82, - 0x7f, 0x17, 0x4c, 0xdc, 0x07, 0x13, 0xfb, 0x2b, 0x92, 0x18, 0xb1, 0xc4, 0xec, 0x27, 0x8d, 0xfb, - 0xb5, 0x92, 0x18, 0x29, 0x4a, 0x60, 0x13, 0xfe, 0x33, 0x15, 0xef, 0xfb, 0x27, 0x25, 0x32, 0x47, - 0xbf, 0x05, 0xb2, 0xe8, 0x9f, 0x25, 0x7e, 0x34, 0x53, 0x1f, 0x4d, 0x1c, 0x93, 0xfa, 0xe8, 0x57, - 0x4a, 0x04, 0xc3, 0x32, 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, 0xd3, 0x27, 0x84, 0xed, 0x76, 0x78, 0x2f, 0xfd, 0xf1, 0x36, 0x58, 0x29, 0x08, 0x28, - 0x3a, 0x11, 0xbb, 0x98, 0xe2, 0x25, 0xec, 0xc5, 0xe9, 0xcb, 0x58, 0x75, 0x51, 0x0e, 0x0a, 0x83, - 0xae, 0xf8, 0x99, 0x38, 0xa0, 0x36, 0x80, 0x3c, 0xf9, 0x1f, 0x63, 0x27, 0xff, 0x3c, 0xc3, 0x9c, - 0x51, 0x0e, 0x16, 0x16, 0x55, 0x35, 0xab, 0xec, 0x37, 0x5b, 0x43, 0x27, 0xc8, 0xc5, 0xcd, 0xd3, - 0x1f, 0x49, 0x0a, 0xa0, 0x89, 0xa1, 0x93, 0x3e, 0x91, 0x41, 0x0a, 0xb1, 0x38, 0xd4, 0x53, 0xca, - 0xa9, 0x0a, 0x5f, 0xc0, 0x4c, 0x53, 0xea, 0x7f, 0xe7, 0x45, 0x4c, 0xac, 0x1a, 0xb4, 0xb7, 0xf0, - 0x8d, 0x07, 0x11, 0xe6, 0x21, 0x32, 0xa5, 0x8a, 0x42, 0xd0, 0x70, 0xdc, 0xf3, 0xd9, 0x55, 0x50, - 0x9e, 0xe9, 0x7f, 0x8a, 0x61, 0xb3, 0x3d, 0x7f, 0x4b, 0x95, 0x82, 0x81, 0xe1, 0xbe, 0xc2, 0xf6, - 0xee, 0x21, 0x83, 0xc3, 0x3f, 0x2c, 0x13, 0xa7, 0xce, 0x82, 0x21, 0xac, 0xc7, 0x10, 0xf6, 0xc9, - 0x5c, 0x4c, 0x8d, 0xd5, 0x4e, 0xef, 0xbe, 0x20, 0x55, 0x2c, 0x1c, 0xbf, 0xb1, 0x6e, 0xd6, 0xe1, - 0xd7, 0x1f, 0xed, 0x32, 0x48, 0xd1, 0xc5, 0x29, 0x89, 0x7a, 0x9d, 0x95, 0x18, 0x5f, 0x55, 0x13, - 0xcf, 0x19, 0xb0, 0x29, 0x01, 0x59, 0x08, 0x1a, 0x8e, 0x3c, 0xc0, 0x7e, 0xdc, 0xa4, 0xd2, 0x28, - 0x0c, 0x13, 0xc9, 0x35, 0x2c, 0xb7, 0xb5, 0x51, 0x0e, 0x16, 0x16, 0xa6, 0x85, 0x8e, 0x7b, 0xdd, - 0x6e, 0x9b, 0x9d, 0xbd, 0x78, 0xed, 0xab, 0x51, 0xd8, 0xeb, 0xf2, 0x78, 0x58, 0x91, 0x16, 0xba, - 0xd1, 0x07, 0x85, 0x8c, 0x1a, 0xb8, 0xe8, 0x77, 0x63, 0xf6, 0xbf, 0xb8, 0xde, 0xc9, 0x3d, 0x40, - 0x0d, 0x56, 0x04, 0x12, 0xe6, 0xf6, 0xd8, 0x56, 0xc5, 0xd2, 0xcc, 0x63, 0x9c, 0x96, 0xe3, 0x93, - 0xd9, 0x2e, 0xdb, 0x8e, 0xe4, 0x01, 0x70, 0xa1, 0xa9, 0x4c, 0x85, 0x63, 0xf0, 0x74, 0xd2, 0x26, - 0x19, 0xb0, 0xa9, 0xba, 0xff, 0x91, 0x30, 0x59, 0x23, 0x8e, 0xbd, 0x26, 0x45, 0xb0, 0xa5, 0xd0, - 0xc5, 0x9e, 0x29, 0xf2, 0xae, 0x8a, 0x96, 0xe3, 0x22, 0x74, 0x13, 0x24, 0x15, 0xe7, 0x2b, 0xfc, - 0x04, 0x9b, 0xad, 0xef, 0xe2, 0x8f, 0x1d, 0x71, 0x7c, 0x2b, 0x8c, 0x58, 0x90, 0x00, 0x83, 0x9c, - 0xb3, 0x45, 0x66, 0x45, 0x2e, 0x72, 0x61, 0xab, 0x57, 0x2c, 0x7b, 0x75, 0x16, 0x4c, 0xe0, 0x47, - 0xe9, 0x02, 0xb0, 0x2b, 0x3b, 0x7b, 0xe4, 0x71, 0xe3, 0x81, 0x92, 0x8c, 0x90, 0x21, 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, 0xef, 0xfe, 0x3e, 0x46, 0x1b, 0x38, 0xbf, - 0x92, 0x85, 0x00, 0xd9, 0xf5, 0xa8, 0xbd, 0x5e, 0x6d, 0x75, 0x62, 0x31, 0x07, 0x13, 0xd6, 0x5b, - 0x2c, 0xd5, 0xda, 0xcd, 0x86, 0x1a, 0xbf, 0xfe, 0x01, 0xba, 0x82, 0xf3, 0x3e, 0x7f, 0x0e, 0x55, - 0x19, 0x24, 0xfc, 0x0d, 0xa0, 0xd7, 0x0b, 0x99, 0xc0, 0xd6, 0x35, 0x05, 0xee, 0xc6, 0x52, 0xa1, - 0x79, 0xd6, 0x0d, 0x06, 0xab, 0x09, 0xe7, 0x87, 0xe9, 0xc2, 0xf2, 0x23, 0x7c, 0xe6, 0x73, 0xa5, - 0xc9, 0x72, 0x2b, 0xb2, 0xf3, 0xa3, 0x29, 0x2b, 0x3e, 0xdd, 0x69, 0xf4, 0x61, 0x40, 0x46, 0x2d, - 0xe7, 0x1a, 0x4a, 0x1c, 0xb3, 0x54, 0x44, 0x52, 0x4a, 0xd5, 0x6e, 0xb1, 0xe6, 0x63, 0xfa, 0x74, - 0x7c, 0x09, 0xc2, 0xa6, 0x08, 0xa9, 0x7a, 0xb8, 0xad, 0xa8, 0x9c, 0xd1, 0xc4, 0x8e, 0xff, 0xeb, - 0xcf, 0x1b, 0x8d, 0x96, 0x12, 0x9e, 0x27, 0xdc, 0xf4, 0x13, 0x7c, 0x98, 0x89, 0x79, 0x83, 0xa7, - 0x8c, 0x1c, 0x54, 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, 0xb1, 0x5b, 0xe9, 0x17, 0x6f, 0xe6, 0x8a, 0xf8, 0xce, 0xfb, 0x25, - 0x78, 0xc1, 0x47, 0x6f, 0xee, 0x93, 0x05, 0xf5, 0xea, 0x0e, 0x4f, 0xf2, 0x17, 0x2f, 0xce, 0x17, - 0x79, 0x8c, 0x35, 0x33, 0x57, 0xa0, 0x0a, 0x9d, 0xdd, 0x4c, 0xd1, 0x84, 0xbe, 0x56, 0xac, 0x3b, - 0xec, 0x0b, 0xb9, 0x79, 0xc0, 0xf1, 0xd1, 0x9b, 0xde, 0x4e, 0x2b, 0x3c, 0xa0, 0x22, 0x83, 0xbd, - 0xbb, 0x63, 0x3e, 0xb7, 0x2a, 0x01, 0xa0, 0x71, 0x96, 0xbe, 0x48, 0xce, 0xf4, 0xf1, 0xf4, 0x50, - 0x31, 0x5f, 0x3f, 0x3b, 0x46, 0xaa, 0xca, 0xab, 0x43, 0xdb, 0xb7, 0x5c, 0x69, 0x8f, 0xa5, 0x5d, - 0x69, 0x53, 0xb8, 0xf3, 0x9a, 0xde, 0xb3, 0xaf, 0x66, 0xbc, 0xb7, 0x78, 0x21, 0xf7, 0x23, 0x16, - 0xbf, 0x7a, 0x31, 0xc4, 0x6b, 0x94, 0x5a, 0xad, 0x1f, 0x3b, 0x56, 0xad, 0x2f, 0xf8, 0x9c, 0x0e, - 0x2a, 0xf0, 0x74, 0xe7, 0xa1, 0x68, 0xa9, 0xa7, 0x22, 0xea, 0x58, 0x08, 0x1c, 0xc6, 0xf4, 0x2e, - 0x14, 0xca, 0x4c, 0xef, 0x9a, 0x3c, 0xa9, 0xde, 0x25, 0x29, 0x80, 0x26, 0x86, 0x69, 0xce, 0x9b, - 0xf6, 0xd3, 0x1f, 0xea, 0x46, 0xc5, 0xc5, 0x21, 0x9e, 0xde, 0xe8, 0x19, 0x69, 0xce, 0xd7, 0xd2, - 0xf4, 0xa0, 0xbf, 0x09, 0xbc, 0xfe, 0x3e, 0xaf, 0x18, 0x82, 0xee, 0x40, 0x98, 0x48, 0x68, 0x74, - 0x8e, 0xcc, 0x5b, 0x96, 0xa5, 0xfa, 0x00, 0xfc, 0x8f, 0xbf, 0x55, 0x62, 0xfe, 0xc7, 0x6d, 0xff, - 0xa0, 0xdb, 0xc6, 0xf7, 0x44, 0x46, 0xd7, 0xf5, 0xaf, 0x90, 0xa9, 0x44, 0xb4, 0x52, 0x2c, 0xd5, - 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, 0xe7, 0x4c, 0xa8, 0xba, - 0xc2, 0x62, 0x29, 0xb9, 0x44, 0xbc, 0x30, 0x64, 0x1c, 0xa5, 0xfb, 0x6b, 0x65, 0x72, 0x2e, 0xeb, - 0x45, 0x6f, 0xa7, 0x45, 0x66, 0xba, 0x86, 0xfa, 0x5c, 0xec, 0xa6, 0xbd, 0xa9, 0x70, 0x6b, 0xd5, - 0xc5, 0x2c, 0x05, 0x8b, 0x2a, 0x26, 0x38, 0xc7, 0xf7, 0xc9, 0x95, 0x7b, 0xa5, 0x3c, 0xbc, 0x88, - 0x52, 0xcd, 0xac, 0x1b, 0x84, 0xc0, 0x22, 0x3b, 0x82, 0x6c, 0xe0, 0xee, 0x3f, 0x2a, 0x91, 0x47, - 0x07, 0x5c, 0xc7, 0xc7, 0xe6, 0xee, 0x31, 0x2f, 0xa4, 0x78, 0x2e, 0x47, 0x35, 0xc7, 0x7d, 0x93, - 0x20, 0xa0, 0xce, 0x0e, 0xde, 0xf2, 0x54, 0x6f, 0x88, 0x96, 0x8b, 0x1c, 0x52, 0xf7, 0x5d, 0xfd, - 0x35, 0x6e, 0x85, 0xaa, 0x57, 0x43, 0x0d, 0xaa, 0xee, 0x37, 0x2b, 0x64, 0x9c, 0x3f, 0x63, 0x58, - 0xa7, 0x0a, 0x10, 0xcf, 0xfe, 0x37, 0x5c, 0xf2, 0x41, 0xad, 0x27, 0xf1, 0x02, 0x90, 0x64, 0x9c, - 0x1b, 0xe4, 0x2c, 0xfa, 0x57, 0x03, 0xaf, 0x5d, 0xf3, 0xdb, 0xde, 0x91, 0x54, 0xbc, 0x79, 0x06, - 0x67, 0x99, 0xa4, 0xf4, 0xec, 0x66, 0x3f, 0x0a, 0x64, 0xd5, 0xc3, 0xcb, 0x44, 0xa9, 0xf4, 0x3d, - 0x3c, 0xab, 0xa2, 0xba, 0x4c, 0x74, 0x7c, 0x0a, 0x1f, 0xbc, 0x4f, 0xd5, 0xed, 0x33, 0x31, 0x8c, - 0xf7, 0xef, 0x6c, 0xb3, 0xc2, 0xc6, 0xc5, 0x9b, 0x48, 0x71, 0x8f, 0x9d, 0x91, 0x6e, 0xef, 0x53, - 0x4b, 0x66, 0x3f, 0x6c, 0xb7, 0xc4, 0xbb, 0x4d, 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, 0x87, 0x25, 0x72, 0x36, 0xe3, 0x5c, 0x9d, 0x87, 0x7b, 0xed, 0x51, 0xd1, 0xa8, 0xf2, - 0xfb, 0x1a, 0xe1, 0x5e, 0xbc, 0x1c, 0x14, 0x06, 0x72, 0x21, 0xb7, 0x1b, 0xd3, 0xe9, 0x8a, 0xc5, - 0x51, 0xa9, 0x80, 0x0e, 0x97, 0x8c, 0x47, 0xbd, 0xc6, 0x3e, 0x36, 0xf0, 0x35, 0x76, 0xaa, 0x98, - 0xec, 0x29, 0xeb, 0xdc, 0x50, 0x4c, 0xb8, 0x7d, 0xce, 0x61, 0x98, 0x7b, 0x7b, 0x3e, 0x15, 0x5f, - 0x83, 0x1d, 0x49, 0x3d, 0x1a, 0xcf, 0x5c, 0x0a, 0x18, 0x79, 0x92, 0xf1, 0x70, 0xfc, 0x73, 0xf6, - 0x9b, 0xb2, 0xba, 0xcf, 0xab, 0x35, 0xeb, 0xb5, 0xac, 0xa2, 0xb9, 0xc3, 0x3f, 0x8d, 0x89, 0x7d, - 0xd5, 0xe3, 0x87, 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, 0xce, 0x0f, 0x3e, 0x39, 0xe2, 0xfc, 0xe0, 0x53, 0xb9, - 0x31, 0x82, 0xbf, 0x44, 0x77, 0x45, 0x96, 0x14, 0x4d, 0xdc, 0xd3, 0x44, 0x27, 0xff, 0xe8, 0x76, - 0x45, 0x7c, 0x4d, 0x0d, 0x1b, 0x4b, 0xa7, 0x04, 0x66, 0x3d, 0x00, 0x0e, 0xc3, 0x14, 0xab, 0xac, - 0x69, 0xfc, 0x7c, 0x33, 0x3c, 0xc5, 0xaa, 0x7e, 0x63, 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, 0xf5, 0xc7, 0x54, 0x58, 0x37, 0x46, 0xe4, 0x28, 0x65, 0xbd, 0x72, 0x12, - 0x65, 0x7d, 0x26, 0x5b, 0x51, 0x5f, 0xa2, 0x7b, 0xe2, 0xc9, 0x8d, 0xef, 0x5f, 0x28, 0x93, 0x4f, - 0x1e, 0xc3, 0x61, 0x5c, 0xb4, 0x58, 0x93, 0x6a, 0x88, 0x96, 0xbe, 0x89, 0xad, 0x93, 0x73, 0xbb, - 0xbd, 0x76, 0xfb, 0x88, 0x9d, 0xb0, 0xfb, 0x2d, 0x89, 0x21, 0xd4, 0x05, 0xf5, 0x02, 0xe3, 0x46, - 0x06, 0x0e, 0x64, 0xd6, 0x44, 0xc7, 0x57, 0xb8, 0xc3, 0x92, 0xce, 0xb5, 0xf4, 0xed, 0x4c, 0x36, - 0x7f, 0x15, 0xed, 0xf8, 0xba, 0xd5, 0x87, 0x01, 0x19, 0xb5, 0x50, 0x79, 0x60, 0x8f, 0x37, 0xaa, - 0x6e, 0xa5, 0x94, 0x07, 0x30, 0x81, 0x60, 0xe3, 0xba, 0x7f, 0x50, 0x42, 0x21, 0x94, 0xf1, 0xb8, - 0x90, 0xf5, 0x26, 0xaf, 0x11, 0xd6, 0xdd, 0xff, 0x26, 0x2f, 0xf3, 0x87, 0xd9, 0xb8, 0x7c, 0x7e, - 0x63, 0x1d, 0x78, 0x66, 0xed, 0xf7, 0xe2, 0x3a, 0x83, 0xc2, 0xc0, 0x77, 0xb4, 0x5a, 0xc1, 0x61, - 0x10, 0x87, 0x51, 0x81, 0x27, 0x30, 0xfb, 0x82, 0x99, 0xf4, 0x16, 0x55, 0xe3, 0x44, 0x40, 0x52, - 0x73, 0xff, 0x56, 0x99, 0xcc, 0xca, 0xf6, 0xa8, 0x5a, 0xc2, 0x56, 0xf1, 0xa8, 0x44, 0xeb, 0xdb, - 0x96, 0x68, 0xbd, 0x54, 0xec, 0x4e, 0x07, 0xeb, 0xd4, 0x40, 0x91, 0xfa, 0xe5, 0x94, 0x48, 0xbd, - 0x3c, 0x0c, 0xd1, 0x5c, 0x6b, 0xfe, 0x8c, 0x85, 0xff, 0x10, 0x65, 0x0a, 0xcd, 0x1a, 0xce, 0x00, - 0xd1, 0xf9, 0xcd, 0x72, 0x6a, 0x18, 0x4c, 0x64, 0x7e, 0x9d, 0x8c, 0xed, 0x7b, 0x51, 0x4b, 0x1c, - 0x5d, 0xbc, 0x39, 0xe4, 0xa7, 0xa0, 0xe6, 0x43, 0xd4, 0xe2, 0x82, 0xef, 0x25, 0xf5, 0xa4, 0x01, - 0x2d, 0xca, 0x0d, 0xc3, 0x64, 0x8d, 0x3a, 0x6f, 0xe0, 0x93, 0x07, 0x61, 0x57, 0x45, 0xd9, 0x3c, - 0xc5, 0x9f, 0x3b, 0xc0, 0x12, 0x4a, 0xc1, 0xb1, 0x9b, 0xc3, 0x62, 0x10, 0xf8, 0x4b, 0x3e, 0xa9, - 0xaa, 0xa6, 0x47, 0x18, 0xf0, 0xf7, 0x83, 0x0a, 0x39, 0x9b, 0xc1, 0x2a, 0xce, 0x8f, 0x59, 0xb3, - 0xf6, 0xb9, 0xa1, 0x79, 0xed, 0x63, 0xce, 0xdb, 0x8f, 0x31, 0x05, 0xb5, 0x25, 0x78, 0xe3, 0x04, - 0xcd, 0x53, 0x2d, 0x36, 0xdd, 0x3c, 0x16, 0xe5, 0x37, 0x8f, 0xcd, 0x9e, 0xd2, 0xe4, 0x63, 0x33, - 0xaa, 0x9f, 0x23, 0xfc, 0xc6, 0x3f, 0x39, 0x46, 0xce, 0x65, 0xdd, 0x1b, 0x73, 0x7e, 0xaa, 0x94, - 0xca, 0x35, 0xfc, 0x85, 0xe1, 0x2f, 0x9f, 0xf1, 0x04, 0xc4, 0xe2, 0x3e, 0xf9, 0xb2, 0x9d, 0x7d, - 0x38, 0x77, 0xb6, 0x45, 0xeb, 0x2c, 0x74, 0x3a, 0xe2, 0x69, 0xa3, 0xa5, 0x3c, 0x78, 0xeb, 0x04, - 0x5d, 0x11, 0x99, 0xa7, 0xe3, 0x54, 0xe8, 0xb4, 0x2c, 0xce, 0x0f, 0x9d, 0x96, 0x7d, 0x58, 0xda, - 0xc3, 0x9c, 0xc3, 0x6a, 0x5c, 0x23, 0x64, 0x81, 0x00, 0xf7, 0x24, 0xa3, 0xd7, 0x23, 0x64, 0x83, - 0xbf, 0x53, 0x22, 0xa9, 0xe3, 0x73, 0x65, 0x05, 0x97, 0x06, 0x5a, 0xc1, 0x14, 0x83, 0xea, 0x4a, - 0x7e, 0x3a, 0x09, 0x2e, 0xd0, 0x32, 0x60, 0x10, 0xf5, 0x00, 0x5a, 0x65, 0xd0, 0x03, 0x68, 0x68, - 0x1e, 0xb5, 0xfd, 0x43, 0x5f, 0xda, 0xa4, 0x4a, 0x78, 0x6f, 0x61, 0x21, 0x70, 0x98, 0xfb, 0xdd, - 0x0a, 0x99, 0xe0, 0x86, 0xdf, 0x08, 0xb7, 0xe5, 0xba, 0xb0, 0xc1, 0x0a, 0xdd, 0xe0, 0xe2, 0xbd, - 0x59, 0x46, 0x23, 0x8d, 0x33, 0x94, 0x1a, 0x9b, 0xb6, 0xdb, 0x9c, 0x65, 0x6b, 0xf4, 0x4b, 0xa9, - 0xc8, 0x31, 0xc2, 0x69, 0x18, 0x73, 0xb1, 0x4f, 0x48, 0xcc, 0xde, 0xd0, 0x41, 0x1a, 0x22, 0x8b, - 0xd6, 0xab, 0x85, 0xfa, 0xd1, 0x50, 0xd5, 0x78, 0x6f, 0x74, 0xfa, 0x1e, 0x05, 0x00, 0x83, 0xf6, - 0xd2, 0xeb, 0xa4, 0xaa, 0x90, 0xf3, 0xd4, 0xe5, 0x19, 0x93, 0x25, 0xff, 0x02, 0x99, 0x4f, 0xb5, - 0x35, 0x94, 0xb6, 0xfd, 0x1d, 0xaa, 0x4c, 0xf4, 0xbd, 0xdd, 0x88, 0x99, 0xd8, 0xce, 0xb5, 0x33, - 0x2c, 0x7e, 0xf1, 0x81, 0x4f, 0xe2, 0x2b, 0xd0, 0x8f, 0x9d, 0x67, 0x40, 0x21, 0xb3, 0x35, 0x99, - 0x17, 0xb0, 0x9c, 0x9d, 0x17, 0x90, 0x3d, 0x1c, 0xc2, 0xfb, 0x7e, 0x1a, 0x1a, 0xd0, 0xa6, 0xad, - 0x01, 0x3d, 0x53, 0x84, 0x0d, 0x06, 0xa8, 0x3e, 0xff, 0xae, 0x44, 0x1c, 0x8e, 0x90, 0x7e, 0x4b, - 0x8b, 0x7b, 0x50, 0x0c, 0x9d, 0x5d, 0xf3, 0x8d, 0x82, 0x80, 0x81, 0x35, 0x64, 0x9e, 0x64, 0xf5, - 0x06, 0x4d, 0xb1, 0x07, 0xab, 0x2b, 0x05, 0x1e, 0xac, 0xfe, 0xad, 0x0a, 0x49, 0x1f, 0x35, 0x3b, - 0xef, 0x91, 0x19, 0xbc, 0xd6, 0xb2, 0x13, 0xb4, 0x83, 0x24, 0xf0, 0xe3, 0x62, 0x6e, 0xfc, 0x35, - 0xa3, 0x86, 0xf0, 0xc1, 0x19, 0x25, 0x60, 0x51, 0xc4, 0xf8, 0xa8, 0x6e, 0x44, 0x2d, 0x85, 0xb6, - 0xbf, 0xc7, 0xf4, 0x0e, 0x95, 0x55, 0xa1, 0xae, 0x4a, 0xc1, 0xc0, 0xc8, 0x88, 0x69, 0xaa, 0x9c, - 0x46, 0x4c, 0xd3, 0xd8, 0x90, 0x31, 0x4d, 0xe3, 0x85, 0x62, 0x9a, 0x80, 0x3c, 0x22, 0x5d, 0x67, - 0xf8, 0x1b, 0x2f, 0x6e, 0xf1, 0x44, 0x60, 0x22, 0x12, 0x6d, 0x09, 0xaf, 0xfb, 0x40, 0x26, 0x06, - 0x0c, 0xa8, 0xe9, 0xf6, 0xc8, 0xd9, 0x86, 0x1f, 0x05, 0x2c, 0x4f, 0x4b, 0x4b, 0xaf, 0xc0, 0xaf, - 0xe2, 0x95, 0x77, 0x7b, 0xf1, 0x0f, 0x79, 0x6b, 0xc7, 0xb8, 0xed, 0x2e, 0x17, 0xbb, 0x26, 0xe9, - 0xfe, 0x95, 0x32, 0x99, 0x14, 0x21, 0x1d, 0x23, 0xdc, 0x48, 0xae, 0x5b, 0xf6, 0xdd, 0x0b, 0x79, - 0x2b, 0x97, 0x75, 0x67, 0xa0, 0x65, 0xd7, 0x48, 0x59, 0x76, 0x2f, 0x16, 0x23, 0x77, 0xbc, 0x4d, - 0xf7, 0x9b, 0x65, 0xba, 0xdb, 0xdb, 0xa1, 0x2c, 0xa3, 0x9b, 0x8e, 0x2f, 0x91, 0xc9, 0x58, 0xc4, - 0x7b, 0x14, 0x7a, 0x22, 0x3c, 0xfd, 0x49, 0xf5, 0xe3, 0xd7, 0x22, 0xc2, 0x43, 0x92, 0xcb, 0x0c, - 0x29, 0xa9, 0x9c, 0x46, 0x48, 0x89, 0xfb, 0x5d, 0x26, 0x52, 0xcd, 0x09, 0x3c, 0x8d, 0x3d, 0xe1, - 0x6d, 0x5b, 0xfa, 0xbe, 0x54, 0x88, 0x15, 0x44, 0xff, 0x06, 0xec, 0x0d, 0xdf, 0x2e, 0x91, 0x69, - 0x81, 0x78, 0x1a, 0x23, 0xf8, 0x61, 0x7b, 0x04, 0xcf, 0x16, 0x1a, 0xc1, 0x80, 0xae, 0xff, 0xbd, - 0xb2, 0xea, 0x7a, 0xc1, 0x57, 0xf8, 0xcd, 0x37, 0xf6, 0xcb, 0xc3, 0xbc, 0xb1, 0xaf, 0xde, 0xef, - 0xaf, 0x0c, 0x7c, 0xbf, 0x7f, 0x47, 0xbe, 0x04, 0x8b, 0x65, 0x22, 0x84, 0x7e, 0xd8, 0x97, 0x13, - 0x75, 0x4c, 0xaf, 0xa2, 0x04, 0x06, 0x55, 0x19, 0x6e, 0xc6, 0x5a, 0x18, 0xb7, 0x7d, 0x91, 0x37, - 0x45, 0x39, 0x28, 0x0c, 0xf7, 0x75, 0x26, 0x63, 0xd9, 0xf4, 0x0c, 0x17, 0xa8, 0xfb, 0xd3, 0x13, - 0x6a, 0x62, 0x99, 0x93, 0xe4, 0xa6, 0x7c, 0x75, 0xbf, 0x54, 0x24, 0x2a, 0xc1, 0xf8, 0x24, 0xd9, - 0x8f, 0xee, 0x3b, 0x7e, 0x9f, 0xf7, 0xf9, 0xf5, 0xc2, 0x32, 0x72, 0x08, 0x7f, 0x33, 0xcb, 0x34, - 0xc1, 0x6e, 0xd7, 0x6f, 0xd6, 0xd3, 0xd9, 0xfc, 0xd6, 0x24, 0x00, 0x34, 0x0e, 0xad, 0xc0, 0xd5, - 0x75, 0xfb, 0x01, 0x4a, 0xa9, 0xae, 0xcb, 0x29, 0x31, 0xf4, 0x75, 0xaa, 0xbf, 0xa8, 0x7c, 0xc6, - 0x75, 0x9e, 0x96, 0xb6, 0xca, 0xf5, 0x97, 0x75, 0x5d, 0x0c, 0x26, 0x0e, 0x55, 0xeb, 0xce, 0xb6, - 0x54, 0x74, 0x61, 0xbd, 0xb7, 0xd3, 0x0e, 0x9a, 0x58, 0x95, 0x47, 0xf6, 0x3f, 0x8a, 0x47, 0xc9, - 0xb5, 0x7e, 0x30, 0x64, 0xd5, 0x71, 0xb6, 0x31, 0x82, 0x8f, 0xe5, 0x6d, 0x96, 0x77, 0x80, 0x44, - 0xba, 0xab, 0x0b, 0x32, 0x57, 0x56, 0xc3, 0x06, 0x7f, 0xc4, 0x8a, 0xb8, 0x50, 0x10, 0x45, 0x90, - 0x26, 0x81, 0x07, 0xd4, 0x6d, 0xf3, 0xfd, 0x95, 0xba, 0x08, 0xb2, 0x54, 0x07, 0xd4, 0xd6, 0xeb, - 0x2c, 0x75, 0x48, 0x61, 0x53, 0x69, 0xbf, 0x68, 0x96, 0x88, 0x6b, 0xbf, 0x78, 0xc8, 0x15, 0x8b, - 0x84, 0xb1, 0x9f, 0xc2, 0x10, 0xcb, 0xad, 0x01, 0x38, 0x30, 0xb0, 0x36, 0xe6, 0x75, 0x94, 0x33, - 0x69, 0x04, 0x5c, 0xea, 0xd0, 0x08, 0x03, 0x06, 0x16, 0xe6, 0xc7, 0x3b, 0x20, 0xf8, 0x3a, 0x56, - 0x36, 0x36, 0x55, 0xe7, 0x6b, 0x64, 0xc6, 0xec, 0xa3, 0x10, 0x93, 0x2f, 0x17, 0x7f, 0xd3, 0x46, - 0x6c, 0xce, 0xaa, 0xe7, 0x26, 0x0c, 0x2c, 0xda, 0x6e, 0x93, 0xcc, 0xa7, 0xde, 0xd4, 0x54, 0x8f, - 0xb3, 0x96, 0x1e, 0xd4, 0xe3, 0xac, 0x98, 0xb8, 0x65, 0x7c, 0xdb, 0x0b, 0xf2, 0x33, 0xa3, 0x17, - 0x79, 0xdd, 0xd4, 0x79, 0x8d, 0x4c, 0xf8, 0xbb, 0xbb, 0xf8, 0xf8, 0x3d, 0x5f, 0x73, 0x8f, 0xab, - 0x27, 0xb7, 0x59, 0x29, 0xae, 0x24, 0xd6, 0x18, 0xff, 0x09, 0x02, 0xd9, 0xfd, 0x0f, 0xd4, 0xba, - 0xda, 0x0e, 0xdb, 0xf2, 0xa8, 0x22, 0xa7, 0x27, 0xab, 0x7d, 0x39, 0xda, 0x9f, 0xcb, 0xc8, 0xd1, - 0xee, 0x68, 0x82, 0x19, 0x19, 0xda, 0xd5, 0x68, 0x2a, 0x85, 0x46, 0x33, 0x36, 0xcc, 0x68, 0xbe, - 0x51, 0x22, 0x22, 0x04, 0xa1, 0xc0, 0xb6, 0xd4, 0x92, 0x79, 0x95, 0xad, 0xfb, 0xf7, 0x17, 0x8a, - 0xc4, 0xd1, 0x8b, 0x5b, 0xf7, 0x8a, 0x95, 0xac, 0xbb, 0xf6, 0x16, 0x55, 0x34, 0xbd, 0xa7, 0x39, - 0xf8, 0x86, 0x7c, 0x9b, 0x3e, 0xa7, 0x5f, 0x43, 0x65, 0xde, 0x61, 0x69, 0x87, 0x91, 0xb0, 0x4a, - 0xc0, 0x62, 0xa6, 0x1d, 0x96, 0x00, 0xd0, 0x38, 0x18, 0x40, 0x10, 0xf7, 0x76, 0x18, 0x7a, 0x2a, - 0x1e, 0xa1, 0xc1, 0x8b, 0x41, 0xc2, 0xdd, 0xbf, 0xb1, 0x40, 0xac, 0xa1, 0x59, 0xc9, 0x5e, 0x4a, - 0x0f, 0x3c, 0xd9, 0x0b, 0xa5, 0xee, 0x1f, 0x74, 0x93, 0xa3, 0x5a, 0x10, 0x15, 0x4b, 0xbc, 0xb5, - 0x2e, 0xb0, 0xfb, 0xa9, 0x4b, 0x08, 0x28, 0x8a, 0x03, 0x52, 0xf7, 0x54, 0x1e, 0x8a, 0xd4, 0x3d, - 0x63, 0xff, 0x5f, 0x52, 0xf7, 0x50, 0x0b, 0x61, 0x8f, 0x3f, 0xf6, 0x2d, 0xee, 0x4d, 0xe5, 0x1c, - 0x5f, 0x65, 0xbc, 0x0c, 0xce, 0x2f, 0xc8, 0x08, 0x00, 0x48, 0x72, 0x98, 0x18, 0x86, 0x1b, 0x0b, - 0x22, 0x1b, 0xce, 0xcb, 0x45, 0xdc, 0x28, 0xfd, 0x89, 0x61, 0x44, 0xd0, 0x89, 0xa0, 0x25, 0x53, - 0xf5, 0x4c, 0x7e, 0xfc, 0x54, 0x3d, 0x2a, 0xc1, 0xce, 0xd4, 0x83, 0x4a, 0xb0, 0x63, 0x25, 0x2a, - 0xaa, 0x8e, 0x22, 0x51, 0x11, 0x95, 0x6d, 0xe7, 0xbb, 0x59, 0x79, 0xbe, 0x44, 0xaa, 0x9c, 0x2f, - 0x9e, 0x20, 0xef, 0x99, 0xd5, 0x34, 0xbb, 0xce, 0x92, 0x89, 0x06, 0xd9, 0x0d, 0xcb, 0x8c, 0x47, - 0xd3, 0x1f, 0x3f, 0xe3, 0xd1, 0xa8, 0x73, 0xea, 0xe8, 0xfc, 0x47, 0xb3, 0x23, 0xc9, 0x7f, 0x34, - 0xf7, 0x00, 0xf3, 0x1f, 0x19, 0x99, 0x8b, 0xe6, 0x1f, 0x6c, 0xe6, 0xa2, 0x7d, 0x32, 0xdd, 0x0a, - 0xef, 0x75, 0xee, 0x79, 0x51, 0x6b, 0xa5, 0xbe, 0xc9, 0x2e, 0x65, 0xe4, 0xde, 0x79, 0xaf, 0xe9, - 0x0a, 0x56, 0x0b, 0xdc, 0x5f, 0xa8, 0x81, 0x60, 0x92, 0x16, 0x39, 0x9c, 0xce, 0x7c, 0xcc, 0x1c, - 0x4e, 0x56, 0x26, 0x24, 0x67, 0x14, 0x99, 0x90, 0xde, 0x63, 0x37, 0x5f, 0x77, 0x83, 0xbd, 0x1b, - 0x5e, 0x77, 0xf1, 0x6c, 0x91, 0x16, 0xd6, 0x24, 0x7a, 0x7f, 0x0b, 0x0a, 0x04, 0x9a, 0x68, 0x7f, - 0xae, 0xa5, 0x73, 0xa7, 0x9d, 0x6b, 0xe9, 0xfc, 0x83, 0xcd, 0xb5, 0xf4, 0x97, 0xc8, 0x13, 0xc7, - 0xf7, 0x4e, 0x27, 0xb7, 0xac, 0x6b, 0x83, 0x37, 0x95, 0xdc, 0x92, 0xed, 0xfc, 0x06, 0x96, 0x11, - 0x4a, 0x59, 0x3e, 0x2e, 0x94, 0xd2, 0xfd, 0xe7, 0x25, 0xf2, 0xe8, 0x80, 0x34, 0x0c, 0x85, 0x63, - 0xa3, 0xbb, 0x64, 0xbe, 0x6b, 0x57, 0x2d, 0x7c, 0x8b, 0xc1, 0x4a, 0xfb, 0xa0, 0x92, 0x23, 0xa7, - 0x00, 0x90, 0x26, 0xbf, 0xfa, 0xcc, 0xf7, 0x7e, 0xf0, 0xc4, 0x27, 0x3e, 0xa4, 0x7f, 0xbf, 0x47, - 0xff, 0x7e, 0xfc, 0x8f, 0x9e, 0x28, 0x7d, 0x8f, 0xfe, 0x7d, 0x48, 0xff, 0xfe, 0x90, 0xfe, 0x7d, - 0xe3, 0x8f, 0x9f, 0xf8, 0xc4, 0x8f, 0x94, 0x0f, 0x2f, 0xff, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x98, 0xdd, 0xea, 0xe8, 0x1e, 0xaf, 0x00, 0x00, + 0x75, 0x98, 0x66, 0x66, 0xbf, 0xa6, 0xf6, 0xf3, 0xfa, 0x8e, 0xc7, 0xe5, 0x4a, 0xfc, 0x50, 0x8b, + 0xa4, 0xc8, 0x23, 0x6f, 0x8f, 0x77, 0x24, 0x4d, 0x52, 0x52, 0x24, 0xee, 0xee, 0xec, 0xde, 0xad, + 0x6f, 0xef, 0x6e, 0xf8, 0x66, 0xef, 0x4e, 0xb2, 0x18, 0x99, 0xbd, 0x33, 0xbd, 0xbb, 0xad, 0x9b, + 0x9d, 0x1e, 0x76, 0xf7, 0xec, 0xdd, 0x52, 0x31, 0xe0, 0x18, 0x8e, 0x83, 0xc0, 0x86, 0x23, 0x03, + 0x31, 0x12, 0x20, 0x09, 0xe2, 0x04, 0x88, 0x91, 0xc4, 0x88, 0x63, 0x39, 0x8a, 0x2d, 0x25, 0x86, + 0x11, 0x20, 0x8e, 0xa0, 0x7c, 0x38, 0x90, 0x81, 0x20, 0x36, 0x6c, 0x40, 0xb1, 0x6c, 0x04, 0xf9, + 0x91, 0x3f, 0x01, 0x92, 0x3f, 0x21, 0x8c, 0x24, 0xf5, 0xea, 0xbb, 0x7a, 0x7a, 0xb6, 0x7b, 0x96, + 0x37, 0x9b, 0xb3, 0x91, 0x1f, 0x0b, 0xec, 0xbc, 0xf7, 0xea, 0xd5, 0x47, 0x57, 0xbd, 0x7a, 0xef, + 0xd5, 0xab, 0x57, 0xe4, 0xe5, 0x7b, 0x6f, 0xc6, 0xcb, 0x41, 0x78, 0xe9, 0x5e, 0x6f, 0xc7, 0x8f, + 0x3a, 0x7e, 0xe2, 0xc7, 0x97, 0xba, 0xf7, 0xf6, 0x2e, 0x79, 0xdd, 0xe0, 0xd2, 0xe1, 0xe5, 0x4b, + 0x7b, 0x7e, 0xc7, 0x8f, 0xbc, 0xc4, 0x6f, 0x2d, 0x77, 0xa3, 0x30, 0x09, 0x9d, 0x4f, 0x70, 0xea, + 0x65, 0x4d, 0xbd, 0x4c, 0xa9, 0x97, 0x29, 0xf5, 0xf2, 0xe1, 0xe5, 0xa5, 0x8b, 0x7b, 0x41, 0xb2, + 0xdf, 0xdb, 0x59, 0x6e, 0x86, 0x07, 0x97, 0xf6, 0xc2, 0xbd, 0xf0, 0x12, 0x2b, 0xb4, 0xd3, 0xdb, + 0x65, 0xbf, 0xd8, 0x0f, 0xf6, 0x1f, 0x67, 0xb6, 0x74, 0x65, 0x70, 0xd5, 0x91, 0x1f, 0x87, 0xbd, + 0xa8, 0xe9, 0xa7, 0x1b, 0xb0, 0xf4, 0xfa, 0xe0, 0x32, 0xbd, 0xce, 0xa1, 0x1f, 0xc5, 0x41, 0xd8, + 0xf1, 0x5b, 0x7d, 0xc5, 0x2e, 0x66, 0x17, 0x8b, 0x7a, 0x9d, 0x24, 0x38, 0xe8, 0xaf, 0xe5, 0x72, + 0x36, 0x79, 0x2f, 0x09, 0xda, 0x97, 0x82, 0x4e, 0x12, 0x27, 0x51, 0xba, 0x88, 0xfb, 0xbb, 0x25, + 0xf2, 0xcc, 0xca, 0xdd, 0xc6, 0x7a, 0xdb, 0x8b, 0x93, 0xa0, 0xb9, 0xda, 0x0e, 0x9b, 0xf7, 0x1a, + 0x49, 0x18, 0xf9, 0x77, 0xc2, 0x76, 0xef, 0xc0, 0x6f, 0xb0, 0xde, 0x38, 0x2f, 0x93, 0xa9, 0x43, + 0xf6, 0x7b, 0xb3, 0xb6, 0x58, 0x7a, 0xa6, 0xf4, 0x42, 0x75, 0x75, 0xe1, 0xbb, 0xdf, 0x7f, 0xfa, + 0x63, 0x7f, 0xf4, 0xfd, 0xa7, 0xa7, 0xee, 0x08, 0x38, 0x28, 0x0a, 0xe7, 0x79, 0x32, 0xb1, 0x1b, + 0x6f, 0x1f, 0x75, 0xfd, 0xc5, 0x32, 0xa3, 0x9d, 0x13, 0xb4, 0x13, 0x1b, 0x0d, 0x84, 0x82, 0xc0, + 0x3a, 0x97, 0x48, 0xb5, 0xeb, 0x45, 0x49, 0x90, 0xd0, 0xbe, 0x2f, 0x56, 0x28, 0xe9, 0xf8, 0xea, + 0x19, 0x41, 0x5a, 0xad, 0x4b, 0x04, 0x68, 0x1a, 0x6c, 0x46, 0xe4, 0x7b, 0xad, 0x5b, 0x9d, 0xf6, + 0xd1, 0xe2, 0x18, 0xa5, 0x9f, 0xd2, 0xcd, 0x00, 0x01, 0x07, 0x45, 0xe1, 0x7e, 0xab, 0x4c, 0xa6, + 0x56, 0x76, 0x77, 0x83, 0x4e, 0x90, 0x1c, 0x39, 0xef, 0x91, 0x99, 0x4e, 0xd8, 0xf2, 0xe5, 0x6f, + 0xd6, 0x8b, 0xe9, 0x2b, 0x17, 0x96, 0x8f, 0x9b, 0x17, 0xcb, 0x37, 0x8d, 0x12, 0xab, 0x0b, 0xb4, + 0x9a, 0x19, 0x13, 0x02, 0x16, 0x47, 0xe7, 0x5d, 0x32, 0xdd, 0x0d, 0x5b, 0xaa, 0x82, 0x32, 0xab, + 0xe0, 0xc5, 0xe3, 0x2b, 0xa8, 0xeb, 0x02, 0xab, 0xf3, 0x94, 0xff, 0xb4, 0x01, 0x00, 0x93, 0x9d, + 0xd3, 0x26, 0xf3, 0xf8, 0x93, 0x7e, 0x76, 0x55, 0x43, 0x85, 0xd5, 0x70, 0x31, 0xbf, 0x06, 0xa3, + 0xd0, 0xea, 0x59, 0x5a, 0xcb, 0x7c, 0x0a, 0x08, 0x69, 0xd6, 0xee, 0x07, 0x64, 0x6e, 0x25, 0x49, + 0xbc, 0xe6, 0xbe, 0xdf, 0xe2, 0xdf, 0xd7, 0x79, 0x8d, 0x8c, 0x75, 0xbc, 0x03, 0x5f, 0x7c, 0xfd, + 0x67, 0xc4, 0xb0, 0x8f, 0xdd, 0xa4, 0xb0, 0x0f, 0xbf, 0xff, 0xf4, 0xc2, 0xed, 0x4e, 0xf0, 0x7e, + 0x4f, 0xcc, 0x19, 0x84, 0x01, 0xa3, 0x76, 0xae, 0x10, 0xd2, 0xf2, 0x0f, 0x83, 0xa6, 0x5f, 0xf7, + 0x92, 0x7d, 0x31, 0x1b, 0x1c, 0x51, 0x96, 0xd4, 0x14, 0x06, 0x0c, 0x2a, 0xf7, 0x27, 0x4a, 0xa4, + 0xba, 0x72, 0x18, 0x06, 0x2d, 0xda, 0xca, 0xd8, 0xe9, 0xd1, 0x7e, 0x47, 0xfe, 0xae, 0x1f, 0x29, + 0x10, 0x6d, 0x42, 0x85, 0xf6, 0xfb, 0x4a, 0x4e, 0xbf, 0xed, 0x42, 0xeb, 0x9d, 0x24, 0x3a, 0x5a, + 0x7d, 0x5c, 0x54, 0x3d, 0x9f, 0xc2, 0x42, 0xba, 0x0e, 0xf7, 0xe7, 0xca, 0xe4, 0xb1, 0x95, 0x0f, + 0x7a, 0x91, 0x5f, 0x0b, 0xe2, 0x7b, 0xe9, 0xa5, 0xd0, 0xa2, 0xb0, 0x9b, 0x7a, 0x30, 0xd4, 0x1c, + 0xac, 0x09, 0x38, 0x28, 0x0a, 0xe7, 0x22, 0x99, 0xc4, 0xff, 0x6f, 0xc3, 0xa6, 0xe8, 0xfd, 0x59, + 0x41, 0x3c, 0x5d, 0xf3, 0x12, 0xaf, 0xc6, 0x51, 0x20, 0x69, 0x9c, 0x1b, 0x64, 0xba, 0x49, 0x47, + 0x3d, 0xe8, 0xec, 0xdd, 0xa0, 0x53, 0x8b, 0x7d, 0xe1, 0xea, 0xea, 0x4b, 0x48, 0xbe, 0xa6, 0xc1, + 0x74, 0xbc, 0x17, 0x79, 0xdb, 0x04, 0x0b, 0x03, 0x07, 0x66, 0x79, 0xc7, 0x55, 0x0b, 0x71, 0x8c, + 0x71, 0x22, 0x19, 0x8b, 0xf0, 0x05, 0x63, 0x4d, 0x8d, 0xb3, 0x35, 0x35, 0x33, 0x60, 0x3d, 0xfd, + 0xa3, 0x92, 0x18, 0x93, 0x8d, 0xa0, 0x6d, 0x8b, 0x07, 0xfa, 0x99, 0x63, 0xbf, 0x19, 0xf9, 0x89, + 0x31, 0x2a, 0xea, 0x33, 0x37, 0x14, 0x06, 0x0c, 0x2a, 0x5c, 0xfc, 0xf1, 0xbe, 0x17, 0xb1, 0xd9, + 0x22, 0xc6, 0x46, 0x2d, 0xfe, 0x86, 0x44, 0x80, 0xa6, 0xb1, 0x16, 0x7f, 0x25, 0x77, 0xf1, 0xff, + 0xf3, 0x12, 0x99, 0x5c, 0x0d, 0x3a, 0x2d, 0x3a, 0x14, 0xce, 0x17, 0xc9, 0xd4, 0x81, 0x9f, 0x78, + 0x2d, 0x3a, 0x5c, 0x62, 0xdd, 0xbf, 0x70, 0xfc, 0xe4, 0xb9, 0xb5, 0xf3, 0x55, 0xbf, 0x99, 0xdc, + 0xa0, 0x65, 0x74, 0x37, 0x34, 0x0c, 0x14, 0x37, 0xe7, 0x36, 0x99, 0x48, 0xbc, 0x68, 0xcf, 0x4f, + 0xc4, 0x72, 0xbf, 0x58, 0x84, 0x2f, 0xe0, 0x54, 0xf3, 0x3b, 0x4d, 0x5f, 0x0b, 0xc6, 0x6d, 0xc6, + 0x04, 0x04, 0x33, 0xb7, 0x49, 0x66, 0xd6, 0xbc, 0xae, 0xb7, 0x13, 0xb4, 0xa9, 0xdc, 0xf3, 0x63, + 0xe7, 0xd3, 0xa4, 0xe2, 0xb5, 0x5a, 0x6c, 0xe2, 0x57, 0x57, 0x1f, 0xa3, 0x05, 0x2a, 0x2b, 0xad, + 0x16, 0x9d, 0x06, 0x44, 0x51, 0x1d, 0x01, 0x52, 0x38, 0x17, 0xc8, 0x58, 0x2b, 0x0a, 0xbb, 0xb4, + 0x35, 0x48, 0x79, 0x1e, 0x57, 0x68, 0x8d, 0xfe, 0x4e, 0x91, 0x32, 0x1a, 0xf7, 0x5f, 0x97, 0x89, + 0xb3, 0xe6, 0x77, 0xf7, 0x37, 0x1a, 0xd6, 0xb7, 0xa4, 0xf3, 0xe1, 0x20, 0xa4, 0x42, 0x20, 0x8c, + 0x62, 0x51, 0x21, 0x9b, 0x0f, 0x37, 0x04, 0x0c, 0x14, 0xd6, 0x79, 0x86, 0x8c, 0x75, 0xf5, 0xb2, + 0x9e, 0x91, 0x22, 0x81, 0x2d, 0x68, 0x86, 0x41, 0x8a, 0x5e, 0xec, 0x47, 0x62, 0x1e, 0x2b, 0x8a, + 0xdb, 0x14, 0x06, 0x0c, 0xa3, 0x67, 0x0e, 0xce, 0x29, 0x31, 0x4b, 0x53, 0x33, 0x07, 0x31, 0x60, + 0x50, 0x39, 0x3f, 0x4a, 0x67, 0x0e, 0xfb, 0x45, 0x07, 0x92, 0x4d, 0xd9, 0x5c, 0x61, 0xb0, 0x15, + 0x36, 0xbd, 0x76, 0x7a, 0xf0, 0x67, 0xd9, 0x4c, 0x93, 0x8c, 0x40, 0xf3, 0xb4, 0x66, 0xda, 0x44, + 0xee, 0x4c, 0xfb, 0x1b, 0x25, 0x3a, 0x8e, 0x74, 0xa6, 0xf9, 0xd1, 0x29, 0x6c, 0x99, 0xc3, 0x2d, + 0x82, 0x3f, 0xc0, 0xa6, 0x85, 0x07, 0x5d, 0xaa, 0x5a, 0x74, 0x92, 0xb5, 0x90, 0xae, 0x06, 0xb6, + 0x8d, 0x7e, 0x86, 0x8c, 0x25, 0x58, 0x15, 0x6f, 0xd6, 0xf3, 0xf2, 0xb3, 0x60, 0x05, 0x74, 0xa6, + 0x9c, 0xef, 0x2f, 0xc1, 0x9a, 0xc0, 0xca, 0x38, 0x6f, 0x91, 0x89, 0x38, 0xf1, 0x92, 0x5e, 0x2c, + 0x1a, 0xfa, 0x49, 0xd9, 0xd0, 0x06, 0x83, 0xd2, 0xf2, 0xf3, 0xaa, 0x18, 0x07, 0x81, 0x28, 0xe0, + 0xbc, 0x48, 0x26, 0x0f, 0xfc, 0x38, 0xf6, 0xf6, 0xa4, 0x60, 0x9b, 0x17, 0x65, 0x27, 0x6f, 0x70, + 0x30, 0x48, 0xbc, 0xf3, 0x29, 0x32, 0xee, 0x47, 0x51, 0x18, 0x89, 0x19, 0x31, 0x2b, 0x08, 0xc7, + 0xd7, 0x11, 0x08, 0x1c, 0xe7, 0xfe, 0x4e, 0x89, 0xcc, 0xab, 0xb6, 0xf2, 0xba, 0x46, 0xb8, 0xd4, + 0x5b, 0x84, 0x34, 0x65, 0xc7, 0x62, 0xb6, 0xc0, 0xa6, 0xaf, 0xbc, 0x72, 0x3c, 0xef, 0xfe, 0x81, + 0xd4, 0x75, 0x28, 0x50, 0x0c, 0x06, 0x5f, 0xf7, 0xbb, 0x25, 0x72, 0x36, 0xd5, 0xa7, 0xad, 0x20, + 0x4e, 0x9c, 0x3f, 0xdf, 0xd7, 0xaf, 0x4b, 0xc7, 0xd4, 0x6d, 0x68, 0x94, 0xcb, 0x58, 0x9c, 0x75, + 0x4f, 0x4d, 0x14, 0x09, 0x31, 0x3a, 0x07, 0x64, 0x3c, 0x48, 0xfc, 0x03, 0xd9, 0xaf, 0x8b, 0x05, + 0xfb, 0xc5, 0x1b, 0xa8, 0x3f, 0xcf, 0x26, 0xf2, 0x00, 0xce, 0xca, 0xfd, 0x1f, 0x74, 0x1f, 0xa7, + 0xbd, 0xdc, 0x0d, 0xf6, 0x6e, 0x78, 0xdd, 0x11, 0x7e, 0x98, 0x06, 0x95, 0x79, 0xc8, 0x95, 0x37, + 0xfd, 0x72, 0x5e, 0xd3, 0x45, 0x83, 0x96, 0x71, 0xf3, 0xe4, 0x5a, 0x81, 0x92, 0x4b, 0x08, 0x02, + 0xc6, 0x6c, 0xe9, 0x0d, 0x52, 0x55, 0x04, 0xce, 0x02, 0xa9, 0xdc, 0xf3, 0xb9, 0xca, 0x58, 0x05, + 0xfc, 0xd7, 0x39, 0x47, 0xc6, 0x0f, 0xbd, 0x76, 0x4f, 0xac, 0x56, 0xe0, 0x3f, 0x3e, 0x53, 0x7e, + 0xb3, 0xe4, 0xfe, 0x46, 0x89, 0x9c, 0x53, 0x95, 0x5c, 0xf7, 0x8f, 0x1a, 0x7e, 0x9b, 0x36, 0x39, + 0x8c, 0x9c, 0x9f, 0xa4, 0x88, 0x76, 0x86, 0x1c, 0x12, 0xa3, 0x71, 0x12, 0x09, 0xf6, 0x09, 0xd1, + 0xf0, 0x73, 0x59, 0x58, 0xc8, 0xac, 0xcd, 0x79, 0x92, 0xf7, 0x85, 0x2f, 0xde, 0x69, 0xc1, 0xa0, + 0x42, 0x1b, 0xca, 0x3a, 0x86, 0xcd, 0x9f, 0x55, 0xcd, 0x3f, 0x8d, 0x99, 0xb7, 0x65, 0xcf, 0xbc, + 0x4f, 0x17, 0xfc, 0x7c, 0x03, 0xe6, 0xdc, 0xdf, 0xa1, 0x6a, 0x9b, 0xa2, 0xb1, 0xc4, 0xf1, 0x23, + 0x32, 0xfc, 0xc3, 0x75, 0x97, 0x7e, 0x96, 0xed, 0x10, 0xf7, 0xd3, 0xec, 0xee, 0x3a, 0x97, 0xc9, + 0x74, 0xcb, 0xdf, 0xf5, 0x7a, 0xed, 0x44, 0xa9, 0x8b, 0xe3, 0xdc, 0x8e, 0xa8, 0x69, 0x30, 0x98, + 0x34, 0xee, 0x6f, 0x57, 0xd9, 0xaa, 0x4c, 0xbc, 0x80, 0x9a, 0x81, 0xb8, 0x41, 0x1b, 0x5a, 0xfd, + 0x8c, 0xa9, 0xd5, 0x0b, 0x0d, 0x9e, 0x4a, 0xe2, 0xe0, 0x00, 0x45, 0x76, 0xd9, 0x96, 0xc4, 0x9b, + 0x08, 0x04, 0x8e, 0x73, 0x9e, 0x23, 0x93, 0xd4, 0x74, 0x3e, 0xf0, 0x3a, 0x2d, 0xda, 0x06, 0x54, + 0x19, 0xa6, 0x51, 0xaa, 0xaf, 0x71, 0x10, 0x48, 0x9c, 0xf3, 0x09, 0x32, 0x46, 0xf5, 0x9b, 0x98, + 0x0a, 0x75, 0xa4, 0x99, 0xc2, 0x9a, 0x56, 0xe8, 0x6f, 0x60, 0x50, 0x54, 0x05, 0xee, 0x87, 0xd1, + 0x3d, 0xaa, 0xb0, 0xd5, 0x82, 0x88, 0xed, 0xeb, 0x86, 0x2a, 0x70, 0x57, 0x61, 0xc0, 0xa0, 0x72, + 0xea, 0x64, 0xbc, 0x1b, 0x46, 0x49, 0x4c, 0xb7, 0x69, 0x1c, 0xce, 0x97, 0x72, 0x67, 0x0f, 0xef, + 0x77, 0x9d, 0x96, 0xd1, 0x5d, 0xc1, 0x5f, 0x74, 0x48, 0x19, 0x23, 0x67, 0x8d, 0x54, 0xfc, 0xce, + 0xe1, 0xe2, 0x24, 0xe3, 0xf7, 0xec, 0xf1, 0xfc, 0xd6, 0x3b, 0x87, 0x77, 0xbc, 0x48, 0xaf, 0x22, + 0xfa, 0x1b, 0xb0, 0xb4, 0xd3, 0x24, 0x55, 0xe9, 0x08, 0x88, 0x17, 0xa7, 0x8a, 0x4c, 0x30, 0x10, + 0xe4, 0xe0, 0xbf, 0xdf, 0x0b, 0x22, 0xff, 0x80, 0x0a, 0xd7, 0x58, 0xeb, 0xc3, 0x12, 0x1b, 0x83, + 0xe6, 0x4b, 0x2b, 0x99, 0xe1, 0xea, 0xc3, 0x8d, 0xb0, 0x47, 0xa9, 0x17, 0xab, 0xac, 0xc9, 0x39, + 0x06, 0xe7, 0x1d, 0x5d, 0x62, 0xf5, 0x9c, 0x60, 0x3f, 0x63, 0x00, 0x63, 0xb0, 0x98, 0x52, 0xa3, + 0x76, 0xb6, 0x1d, 0x1c, 0xfa, 0x1d, 0xba, 0x2f, 0xd7, 0xa3, 0x70, 0xc7, 0x5f, 0x24, 0xac, 0x37, + 0x9f, 0xca, 0x33, 0xbe, 0x28, 0xe9, 0xea, 0x19, 0xca, 0x7b, 0x76, 0xcb, 0x2c, 0x0d, 0x36, 0x33, + 0xaa, 0xc9, 0xcd, 0xa1, 0xae, 0x12, 0x68, 0xf6, 0xd3, 0xc5, 0xd9, 0x3b, 0x94, 0xfd, 0x1c, 0x58, + 0xc5, 0x21, 0xc5, 0xce, 0xd9, 0x26, 0xd5, 0x76, 0xb0, 0xeb, 0x37, 0x8f, 0x9a, 0x54, 0xbb, 0x9c, + 0x61, 0xbc, 0x73, 0x96, 0xdc, 0x96, 0x24, 0xe7, 0xfa, 0xa1, 0xfa, 0x09, 0x9a, 0x91, 0x73, 0x87, + 0x9c, 0x4f, 0xfc, 0xe8, 0x20, 0xe8, 0x78, 0xb8, 0x69, 0x0b, 0xe5, 0x85, 0x59, 0xb8, 0xb3, 0x6c, + 0xd6, 0x3e, 0x25, 0x06, 0xf6, 0xfc, 0x76, 0x26, 0x15, 0x0c, 0x28, 0xed, 0xdc, 0x22, 0xf3, 0x6c, + 0x3d, 0xd5, 0x7b, 0xed, 0x76, 0x3d, 0x6c, 0x07, 0xcd, 0xa3, 0xc5, 0x39, 0xc6, 0xf0, 0x39, 0x69, + 0xb7, 0x6e, 0xda, 0x68, 0xd4, 0xeb, 0xf5, 0x2f, 0x48, 0x97, 0x46, 0xa7, 0x01, 0xd5, 0x6a, 0x7b, + 0x11, 0x55, 0xfa, 0x71, 0xee, 0xfb, 0x0f, 0x92, 0xc5, 0xf9, 0x22, 0x76, 0x4a, 0xc3, 0x2e, 0xc4, + 0x9d, 0x06, 0x29, 0x20, 0xa4, 0x59, 0xa3, 0xa8, 0x88, 0x13, 0x3a, 0xfa, 0x8b, 0x0b, 0x4c, 0x31, + 0x55, 0xeb, 0xab, 0x81, 0x40, 0xe0, 0x38, 0x66, 0xf6, 0xe1, 0x3f, 0xb7, 0x50, 0xf6, 0x9e, 0x61, + 0x84, 0xda, 0xec, 0x93, 0x08, 0xd0, 0x34, 0xb8, 0x61, 0x25, 0xc9, 0xd1, 0xa2, 0xc3, 0x48, 0xd5, + 0x52, 0xdb, 0xde, 0xfe, 0x12, 0x20, 0xdc, 0xdd, 0x21, 0x73, 0x6a, 0x59, 0xb3, 0xd1, 0x71, 0x9e, + 0x26, 0xe3, 0x28, 0xb9, 0xa4, 0xf5, 0x52, 0xc5, 0x26, 0xa0, 0x40, 0xa3, 0x4b, 0x9c, 0xc1, 0x59, + 0x13, 0x82, 0x0f, 0xfc, 0xd5, 0x23, 0xda, 0x6b, 0x26, 0xd6, 0x2a, 0x46, 0x13, 0x24, 0x02, 0x34, + 0x8d, 0xfb, 0xbf, 0xf9, 0xa6, 0xa8, 0x65, 0x47, 0x01, 0xb9, 0x49, 0x15, 0xf5, 0xfd, 0x30, 0x4e, + 0x90, 0x9a, 0xd5, 0x31, 0xae, 0x77, 0xc1, 0x6b, 0x02, 0x0e, 0x8a, 0xc2, 0xf9, 0x2c, 0x99, 0x6d, + 0x9a, 0x15, 0x08, 0x51, 0xfe, 0x98, 0x28, 0x62, 0xd7, 0x0e, 0x36, 0xad, 0xf3, 0x26, 0x99, 0x62, + 0xae, 0xbc, 0x66, 0xd8, 0x16, 0xfa, 0xb2, 0xdc, 0x99, 0xa6, 0xea, 0x02, 0xfe, 0xa1, 0xf1, 0x3f, + 0x28, 0x6a, 0xb4, 0x3a, 0xb0, 0x09, 0x9b, 0x75, 0x21, 0x6e, 0x95, 0xd5, 0x71, 0x8d, 0x41, 0x41, + 0x60, 0xdd, 0x5f, 0x29, 0x1b, 0xa3, 0x8c, 0x4a, 0x9f, 0xef, 0xfc, 0x08, 0x99, 0xbc, 0xef, 0x51, + 0xa5, 0xb5, 0xb3, 0x27, 0x76, 0xd0, 0x57, 0x0b, 0xca, 0x5e, 0x56, 0xfc, 0x2e, 0x2f, 0xca, 0xf7, + 0x09, 0xf1, 0x03, 0x24, 0x43, 0xe4, 0x1d, 0xf5, 0x3a, 0x1d, 0xe4, 0x5d, 0x1e, 0x9e, 0x37, 0xf0, + 0xa2, 0x9c, 0xb7, 0xf8, 0x01, 0x92, 0xa1, 0xb3, 0x4b, 0x88, 0x5c, 0x7d, 0x7e, 0x4b, 0xb8, 0xd0, + 0x7e, 0x68, 0x18, 0xf6, 0xdb, 0xaa, 0xf4, 0xea, 0x1c, 0xee, 0x4c, 0xfa, 0x37, 0x18, 0x9c, 0xdd, + 0x1e, 0x53, 0x44, 0xfa, 0x9b, 0x45, 0x25, 0x2a, 0x9d, 0xdc, 0x5e, 0x44, 0x69, 0x56, 0x12, 0x31, + 0x74, 0x2f, 0x15, 0x54, 0xa8, 0xb6, 0x83, 0x03, 0xdf, 0x5c, 0x2d, 0x82, 0x0b, 0x68, 0x86, 0xee, + 0xb7, 0x2b, 0x64, 0x71, 0x50, 0x7b, 0x71, 0x4e, 0xfa, 0x0f, 0x02, 0x6a, 0x8d, 0xb4, 0xf8, 0xcc, + 0x35, 0xe6, 0xe4, 0xba, 0x80, 0x83, 0xa2, 0xc0, 0xc9, 0x11, 0x07, 0x7b, 0x1d, 0xaf, 0x2d, 0xe6, + 0xaf, 0x9a, 0x1c, 0x0d, 0x06, 0x05, 0x81, 0x45, 0x3a, 0x2a, 0x75, 0x63, 0xe1, 0xc2, 0x35, 0x26, + 0x11, 0x30, 0x28, 0x08, 0xac, 0x69, 0xfe, 0x8d, 0xe5, 0x98, 0x7f, 0xd6, 0x18, 0x8d, 0x3f, 0xe4, + 0x31, 0xa2, 0xbb, 0x0e, 0x41, 0x37, 0x67, 0xbc, 0xcf, 0xd8, 0x4f, 0x0c, 0xcf, 0x5e, 0x69, 0x25, + 0x1b, 0x8a, 0x0d, 0x18, 0x2c, 0x9d, 0xd7, 0xc9, 0xb4, 0x5a, 0xa1, 0xd4, 0xfa, 0x9f, 0xb4, 0x1d, + 0x7f, 0x5a, 0x5c, 0xd5, 0xc0, 0xa4, 0x73, 0xbf, 0x9a, 0x9e, 0x32, 0x62, 0x61, 0x18, 0x23, 0x5c, + 0x2a, 0x3a, 0xc2, 0xe5, 0xe3, 0x47, 0xd8, 0xfd, 0x4f, 0x15, 0xb4, 0x9d, 0x8d, 0xca, 0x7a, 0x71, + 0x01, 0xa1, 0xf6, 0x0e, 0x4a, 0x78, 0xda, 0x30, 0xb1, 0x2c, 0x5f, 0x1e, 0x66, 0xdd, 0x98, 0xfb, + 0x01, 0x2e, 0x07, 0xce, 0xc9, 0xd9, 0xa7, 0x3b, 0xb4, 0x17, 0x33, 0x4b, 0xd2, 0x17, 0xcb, 0x71, + 0x38, 0xb6, 0x5a, 0x0b, 0xa7, 0x6c, 0x8c, 0x0d, 0x97, 0xd7, 0xa2, 0x99, 0xe3, 0xf6, 0x84, 0xda, + 0x81, 0x3c, 0x39, 0x50, 0xcd, 0x41, 0x15, 0xe2, 0x08, 0x38, 0x8e, 0xca, 0xd2, 0x19, 0xaa, 0x61, + 0xe1, 0x54, 0x59, 0x43, 0x05, 0x88, 0x4d, 0xbe, 0x71, 0xad, 0x29, 0x81, 0x81, 0x03, 0x8b, 0x52, + 0x2b, 0xca, 0x13, 0xc7, 0x28, 0xca, 0xf4, 0x0b, 0xb1, 0x7f, 0xd4, 0xac, 0x50, 0x5f, 0x68, 0x93, + 0x83, 0x41, 0xe2, 0xd3, 0x93, 0x68, 0xaa, 0xe0, 0x24, 0xba, 0x40, 0xe6, 0x6a, 0x9e, 0x7f, 0x10, + 0x76, 0xd6, 0x3b, 0xad, 0x6e, 0x18, 0xd0, 0x86, 0x2d, 0x92, 0x31, 0xb6, 0xa5, 0xf0, 0x15, 0x3f, + 0x86, 0x1c, 0x60, 0x0c, 0x95, 0x5d, 0xf7, 0xff, 0xd0, 0x7d, 0xad, 0x46, 0xed, 0xd3, 0xc4, 0xbf, + 0xd5, 0x65, 0xee, 0x07, 0x67, 0x83, 0x38, 0x7b, 0x91, 0xd7, 0xf4, 0xeb, 0x7e, 0x14, 0x84, 0x2d, + 0xba, 0xe3, 0x87, 0x1d, 0xe6, 0x70, 0xc7, 0x3d, 0x12, 0xbd, 0x89, 0xce, 0xd5, 0x3e, 0x2c, 0x64, + 0x94, 0x70, 0x5a, 0x64, 0xb6, 0x1b, 0xf9, 0x96, 0xbf, 0xa4, 0x94, 0xaf, 0x9f, 0xd7, 0xcd, 0x22, + 0x5c, 0x7d, 0xb4, 0x40, 0x60, 0x33, 0x75, 0xde, 0x26, 0x0b, 0x61, 0xd4, 0xdd, 0xf7, 0x3a, 0x35, + 0xbf, 0xeb, 0x77, 0x5a, 0xa8, 0x33, 0x0b, 0xa7, 0xd8, 0x39, 0x5a, 0x76, 0xe1, 0x56, 0x0a, 0x07, + 0x7d, 0xd4, 0xee, 0x2f, 0x51, 0x7b, 0xb1, 0x16, 0xde, 0xef, 0xdc, 0xf7, 0xa2, 0xd6, 0x4a, 0x7d, + 0x93, 0x2b, 0xc2, 0xcc, 0xc9, 0x28, 0x9d, 0x9b, 0xa5, 0x81, 0xce, 0xcd, 0x2f, 0x93, 0xa9, 0xdd, + 0xc0, 0x6f, 0xb7, 0xd0, 0x0b, 0xc9, 0xbb, 0x77, 0xb9, 0x88, 0x47, 0x63, 0x03, 0xcb, 0x48, 0xaf, + 0x00, 0xf7, 0xad, 0x6e, 0x08, 0x36, 0xa0, 0x18, 0x3a, 0x3d, 0xb2, 0x20, 0x35, 0x7d, 0x89, 0x15, + 0xab, 0xe3, 0xd5, 0x62, 0x86, 0x84, 0x5d, 0x0d, 0x1b, 0x0f, 0x48, 0x31, 0x84, 0xbe, 0x2a, 0xd0, + 0x42, 0x3b, 0xc0, 0xdd, 0x61, 0x8c, 0xcd, 0x15, 0x66, 0xa1, 0x31, 0x13, 0x92, 0x41, 0xdd, 0x5f, + 0x2c, 0x91, 0xc7, 0xfb, 0x46, 0x4b, 0xd8, 0xd7, 0x5f, 0x94, 0x86, 0x2d, 0x3f, 0x9d, 0xc9, 0x69, + 0x65, 0xe6, 0x98, 0x17, 0x33, 0x72, 0xcb, 0x05, 0x8c, 0xdc, 0x5b, 0xe4, 0xdc, 0xfa, 0x41, 0x37, + 0x39, 0xa2, 0x26, 0xa2, 0xd5, 0xc8, 0x37, 0xc8, 0xc4, 0x81, 0xdf, 0x0a, 0x7a, 0x07, 0xe2, 0xb3, + 0x3e, 0x2d, 0x05, 0xe9, 0x0d, 0x06, 0xa5, 0x5a, 0xd2, 0x2c, 0x9e, 0x7d, 0xd2, 0x05, 0xc8, 0x01, + 0x20, 0xc8, 0xdd, 0x1f, 0x94, 0xc8, 0xbc, 0x5c, 0x50, 0x2b, 0xad, 0x16, 0x1d, 0xb7, 0xd8, 0x59, + 0x22, 0xe5, 0xa0, 0x2b, 0x18, 0x11, 0xc1, 0xa8, 0x4c, 0x95, 0x26, 0x0a, 0xa5, 0x1a, 0x4c, 0x95, + 0xbb, 0xf2, 0xf5, 0xe4, 0x18, 0xf2, 0x68, 0x80, 0x59, 0x1f, 0xdb, 0x92, 0x07, 0x68, 0x76, 0x52, + 0xb3, 0x64, 0xa2, 0xba, 0x62, 0x3b, 0x96, 0xaf, 0x09, 0x38, 0x28, 0x0a, 0x74, 0xe7, 0xe3, 0x29, + 0x25, 0x3b, 0x65, 0xe1, 0xdb, 0x2e, 0x9b, 0x72, 0x37, 0x05, 0x0c, 0x14, 0xd6, 0xfd, 0x99, 0x12, + 0x99, 0x91, 0x7d, 0x2c, 0xa8, 0xe4, 0xe2, 0x22, 0xd1, 0x0a, 0xae, 0x5e, 0x24, 0xa8, 0xa4, 0x32, + 0x8c, 0xa5, 0x9b, 0x56, 0x86, 0xd1, 0x4d, 0xdd, 0x6f, 0x53, 0x9d, 0x53, 0x36, 0xa7, 0xd1, 0xdb, + 0x89, 0xfd, 0xc4, 0xf9, 0x0a, 0xa9, 0x7a, 0x7c, 0xf0, 0x7d, 0x39, 0xcf, 0x2e, 0xe6, 0x59, 0xe8, + 0xd6, 0x37, 0xd3, 0x8a, 0xc1, 0x8a, 0xe4, 0x03, 0x9a, 0xa5, 0x73, 0x48, 0xce, 0x74, 0xc2, 0x84, + 0xed, 0x07, 0x0a, 0x5f, 0xcc, 0x23, 0x9a, 0xae, 0xe7, 0x09, 0x51, 0xcf, 0x99, 0x9b, 0x69, 0x7e, + 0xd0, 0x5f, 0x05, 0xb5, 0xfb, 0x84, 0x17, 0xa3, 0xc2, 0xea, 0xba, 0x50, 0xac, 0xae, 0xc1, 0x4e, + 0x0c, 0xf7, 0x37, 0x4b, 0xa4, 0x2a, 0xc9, 0x46, 0xe9, 0x13, 0xbf, 0x4b, 0x26, 0x63, 0xf6, 0x69, + 0xe4, 0x30, 0xbd, 0x5c, 0xac, 0xe9, 0xfc, 0x7b, 0xea, 0xcd, 0x8f, 0xff, 0x8e, 0x41, 0x72, 0x63, + 0x6e, 0x48, 0xd5, 0x81, 0x47, 0xcf, 0x0d, 0xa9, 0x9a, 0x36, 0xc0, 0x0d, 0xf9, 0x0f, 0x4a, 0x64, + 0x82, 0x3b, 0x87, 0x8a, 0x79, 0xd8, 0x0c, 0x5f, 0xb2, 0xe6, 0x78, 0x07, 0x81, 0xc2, 0xb5, 0x4c, + 0x47, 0xba, 0xca, 0xfe, 0xd9, 0x88, 0xc2, 0x03, 0xb1, 0x11, 0x5c, 0x28, 0xe2, 0x9c, 0xe2, 0x82, + 0x8f, 0x4b, 0x93, 0x3b, 0x92, 0x01, 0x68, 0x5e, 0xee, 0x6f, 0x54, 0x70, 0xd5, 0x6b, 0x52, 0x6b, + 0x5b, 0x2b, 0x9d, 0xc6, 0xb6, 0x56, 0x1e, 0xfd, 0xb6, 0xf6, 0x3e, 0x99, 0x6f, 0x1a, 0x3e, 0x79, + 0xbd, 0x99, 0x5e, 0x29, 0xe8, 0x6e, 0x36, 0x1c, 0xf9, 0xdc, 0x19, 0xb2, 0x66, 0xb3, 0x83, 0x34, + 0x7f, 0xc7, 0x27, 0x33, 0xfc, 0x40, 0x51, 0xd4, 0x37, 0x96, 0x3b, 0x67, 0xb9, 0xdf, 0x85, 0x97, + 0x50, 0x95, 0xb1, 0xa0, 0x93, 0x86, 0xc1, 0x08, 0x2c, 0xb6, 0xee, 0x5f, 0x1b, 0x27, 0xe3, 0xeb, + 0x87, 0x54, 0x97, 0x19, 0xe1, 0x2a, 0x3f, 0x20, 0x73, 0x41, 0xe7, 0x30, 0x6c, 0x1f, 0xfa, 0x2d, + 0x8e, 0x3f, 0xd9, 0x8e, 0x76, 0x5e, 0x54, 0x32, 0xb7, 0x69, 0x31, 0x83, 0x14, 0xf3, 0x51, 0xd8, + 0x93, 0xef, 0x50, 0x53, 0x96, 0xcd, 0x08, 0x61, 0x4c, 0xe6, 0x38, 0x49, 0xd9, 0x80, 0x8a, 0x95, + 0xa3, 0xad, 0x5e, 0xee, 0x9f, 0x15, 0x8c, 0x9c, 0x7b, 0x64, 0x6e, 0x37, 0x88, 0xa8, 0xc5, 0x41, + 0x0d, 0x42, 0x6a, 0x05, 0x1c, 0x74, 0x4f, 0x62, 0x48, 0xaa, 0x21, 0xd9, 0xb0, 0x58, 0x41, 0x8a, + 0x35, 0x35, 0x92, 0x66, 0xd1, 0x8e, 0xd1, 0x75, 0x4d, 0x0e, 0x5f, 0x97, 0xf2, 0x25, 0x6d, 0x99, + 0x9c, 0xc0, 0x66, 0x8c, 0xc2, 0xa8, 0xc9, 0x0c, 0x9f, 0x29, 0xb6, 0xa5, 0x2b, 0x61, 0xc4, 0x2d, + 0x1e, 0x8e, 0x43, 0x99, 0xc6, 0xce, 0x8f, 0xab, 0xb6, 0x4c, 0xd3, 0xa7, 0xc4, 0xee, 0x37, 0x71, + 0x03, 0xc2, 0x51, 0x3c, 0x0d, 0xd9, 0x7d, 0xcd, 0x96, 0xdd, 0x9f, 0x2a, 0xf0, 0x71, 0x07, 0xc8, + 0xed, 0xf7, 0xc8, 0xb4, 0xf1, 0xed, 0xd1, 0x51, 0xd8, 0x94, 0x47, 0x9d, 0x42, 0x80, 0x2b, 0x05, + 0x42, 0x9d, 0x81, 0x82, 0xa6, 0xc1, 0x81, 0x41, 0xc5, 0x2b, 0x1d, 0x11, 0x81, 0x6a, 0x19, 0x30, + 0x8c, 0xfb, 0x2a, 0x21, 0xeb, 0x0f, 0xfc, 0xe6, 0x4a, 0x93, 0x1d, 0xc4, 0x1b, 0xe7, 0x26, 0xa5, + 0xc1, 0xe7, 0x26, 0xee, 0xbb, 0x74, 0x33, 0x7c, 0x80, 0x3b, 0xbb, 0x34, 0xd3, 0xe8, 0x12, 0xf1, + 0x19, 0x80, 0xb5, 0x6a, 0x4a, 0x4f, 0x52, 0x4e, 0x06, 0x02, 0xcb, 0x8e, 0xd1, 0x1f, 0x78, 0x62, + 0xc1, 0x1a, 0x26, 0xef, 0x3a, 0x02, 0x81, 0xe3, 0xdc, 0x6f, 0x94, 0xc8, 0xdc, 0xc6, 0x9a, 0xa5, + 0x27, 0x2f, 0x13, 0xc2, 0xf5, 0xcd, 0xbb, 0x77, 0x6f, 0x4a, 0x3f, 0x2a, 0x77, 0x76, 0x29, 0x28, + 0x18, 0x14, 0xce, 0x13, 0xa4, 0xd2, 0xee, 0x75, 0x84, 0x1a, 0x38, 0x89, 0xfe, 0xd9, 0xad, 0x5e, + 0x07, 0x10, 0x66, 0x04, 0x36, 0x54, 0x0a, 0x07, 0x36, 0xe4, 0x87, 0xf6, 0xfd, 0x7c, 0x85, 0x2c, + 0x6c, 0xb4, 0xfd, 0x07, 0x56, 0xab, 0x69, 0x55, 0xad, 0x28, 0xa0, 0x93, 0x27, 0xed, 0x26, 0xa9, + 0x31, 0x28, 0x08, 0x6c, 0xe1, 0x58, 0x0b, 0x2b, 0xce, 0xa4, 0x32, 0xe2, 0x38, 0x93, 0xdc, 0x3e, + 0x3b, 0xbb, 0x64, 0x32, 0xe4, 0xdf, 0x9f, 0x4a, 0x31, 0x9c, 0xe8, 0x9f, 0x3d, 0xbe, 0x31, 0xe9, + 0xf1, 0x59, 0x16, 0xb3, 0x87, 0x1f, 0x7a, 0x2b, 0x61, 0x29, 0xa0, 0x20, 0x99, 0x2f, 0x7d, 0x86, + 0xcc, 0x98, 0x94, 0x43, 0x9d, 0x7e, 0x6f, 0x91, 0xb3, 0x1b, 0x18, 0x41, 0x9a, 0x8a, 0x85, 0x79, + 0x9d, 0x9a, 0x70, 0x74, 0xa5, 0xc6, 0x56, 0x80, 0x98, 0x15, 0x09, 0x27, 0x50, 0x60, 0xd2, 0xb9, + 0xff, 0xa1, 0x44, 0x9e, 0xbc, 0xba, 0xb6, 0x5e, 0x47, 0x71, 0x10, 0x27, 0x74, 0x81, 0xf5, 0x05, + 0xe3, 0xd1, 0x4f, 0xd9, 0x6d, 0x19, 0x3c, 0xd5, 0xa7, 0xac, 0xd7, 0x18, 0x3b, 0x81, 0x7d, 0x54, + 0x22, 0x52, 0xa9, 0x5e, 0x78, 0xf6, 0x6a, 0x40, 0xbf, 0x7d, 0x37, 0x4c, 0xc7, 0xcf, 0x45, 0x14, + 0x16, 0x63, 0x5c, 0xd5, 0x51, 0x3a, 0x7e, 0x0e, 0x14, 0x06, 0x0c, 0x2a, 0x5e, 0xf3, 0x61, 0x80, + 0x82, 0x52, 0x74, 0xca, 0xa8, 0x99, 0xc3, 0x41, 0x51, 0x60, 0xc7, 0x5a, 0x41, 0xc4, 0x74, 0x8a, + 0x23, 0xb1, 0x12, 0x55, 0xc7, 0x6a, 0x12, 0x01, 0x9a, 0xc6, 0xfd, 0x5b, 0x25, 0xf2, 0xd8, 0xd5, + 0x76, 0x8f, 0x0e, 0x7b, 0xb4, 0x1b, 0x5b, 0x8d, 0x7d, 0x95, 0x54, 0x7d, 0xa9, 0xff, 0x8a, 0xb6, + 0xaa, 0xbd, 0x45, 0x29, 0xc6, 0x3c, 0x78, 0x4f, 0xd1, 0x15, 0x88, 0x15, 0x1b, 0x2e, 0xb2, 0xe9, + 0x5f, 0x94, 0xc9, 0xec, 0xb5, 0xed, 0xed, 0xfa, 0x55, 0x3f, 0x11, 0xb2, 0x34, 0xdf, 0x61, 0x53, + 0x37, 0xac, 0xd5, 0xe9, 0x2b, 0xcb, 0x03, 0x56, 0x0f, 0xc6, 0x4a, 0x2f, 0xf3, 0x58, 0xe9, 0xe5, + 0xcd, 0x4e, 0x72, 0x2b, 0x6a, 0x24, 0x11, 0x1e, 0x27, 0x64, 0x59, 0xb7, 0x52, 0xde, 0x57, 0x06, + 0xc9, 0x7b, 0x3a, 0x58, 0x13, 0x71, 0x73, 0xdf, 0x57, 0xc6, 0xf7, 0xc7, 0x95, 0x3a, 0xc1, 0xa0, + 0xd4, 0xf6, 0xad, 0xde, 0x86, 0x4d, 0xfe, 0x03, 0x04, 0x29, 0x15, 0x3c, 0xd3, 0xfb, 0x49, 0xd2, + 0xbd, 0x46, 0x3b, 0x4b, 0xa7, 0xbe, 0x58, 0xed, 0x39, 0xda, 0x1c, 0x0e, 0x06, 0x2f, 0xa0, 0x17, + 0x96, 0x86, 0xc5, 0x60, 0x72, 0x74, 0x1b, 0x84, 0x68, 0xdc, 0x43, 0x32, 0x51, 0xdc, 0xbf, 0x58, + 0x26, 0x93, 0xd7, 0xe8, 0x76, 0xd5, 0xa6, 0x2c, 0x37, 0xc8, 0x98, 0x4f, 0xb7, 0xb9, 0x62, 0x8a, + 0xa8, 0xde, 0x10, 0xb9, 0xc7, 0x09, 0x7f, 0x03, 0x2b, 0xef, 0x00, 0x99, 0xc4, 0x76, 0x5f, 0x55, + 0x01, 0x96, 0x2f, 0xe5, 0x8f, 0x82, 0x9a, 0x12, 0x7c, 0x37, 0x15, 0x20, 0x90, 0x8c, 0x98, 0x6f, + 0xa6, 0xd9, 0x6d, 0xa0, 0x94, 0x4a, 0x8a, 0xc5, 0x50, 0x6f, 0xaf, 0xd5, 0x39, 0xb9, 0xe0, 0xcb, + 0x7d, 0x33, 0x12, 0x08, 0x9a, 0x9d, 0xfb, 0x26, 0x39, 0xc7, 0x4e, 0xf7, 0xe8, 0x74, 0xb3, 0xd6, + 0x4c, 0xee, 0xe4, 0x74, 0xff, 0x6e, 0x99, 0x9c, 0xd9, 0x6c, 0xac, 0x35, 0x6c, 0xaf, 0xda, 0x9b, + 0x64, 0x86, 0x6f, 0xb3, 0x38, 0xe9, 0xbc, 0xb6, 0x28, 0xaf, 0xdc, 0xd1, 0xdb, 0x06, 0x0e, 0x2c, + 0x4a, 0x3c, 0x36, 0x0d, 0xde, 0xef, 0xa4, 0xe3, 0x7c, 0x36, 0xdf, 0xb9, 0x09, 0x08, 0x47, 0x34, + 0xee, 0xd8, 0x5c, 0xc4, 0x29, 0xb4, 0xda, 0xb5, 0x3f, 0x4f, 0x55, 0xfe, 0xb8, 0x19, 0x07, 0x74, + 0x01, 0xd0, 0xf5, 0xef, 0x35, 0xe5, 0xf4, 0xd5, 0x3a, 0x3c, 0x36, 0x55, 0x61, 0x21, 0x45, 0x6d, + 0xc8, 0xdb, 0xf1, 0xc2, 0xbb, 0x7e, 0x7e, 0xa4, 0xe5, 0x57, 0x49, 0x55, 0x45, 0xc4, 0xc8, 0x40, + 0xa6, 0x52, 0x76, 0x20, 0x53, 0x01, 0x81, 0x23, 0x7d, 0x9d, 0x95, 0x4c, 0x5f, 0xe7, 0x3f, 0xa6, + 0x1a, 0xac, 0x3a, 0xfc, 0xa7, 0xf3, 0xb0, 0x4a, 0x05, 0x6f, 0xc2, 0x8e, 0x93, 0xc4, 0xa4, 0x7e, + 0x2e, 0x67, 0x26, 0xf2, 0x95, 0xc0, 0xe7, 0x4a, 0x5d, 0x96, 0x05, 0xcd, 0xc6, 0xd9, 0x22, 0x93, + 0xdd, 0xc8, 0x6f, 0x24, 0x2c, 0x5c, 0x77, 0x08, 0x8e, 0x6c, 0x56, 0xd7, 0x79, 0x49, 0x90, 0x2c, + 0xdc, 0x5f, 0x2b, 0x11, 0xb2, 0x15, 0x1c, 0xd0, 0xcd, 0xc5, 0xeb, 0xec, 0xf9, 0x23, 0xb4, 0x06, + 0x6f, 0x92, 0xb1, 0xb8, 0x4b, 0x97, 0x76, 0xa1, 0x23, 0x20, 0xdd, 0xa2, 0x06, 0x2d, 0xa3, 0x3f, + 0x03, 0xfe, 0x02, 0xc6, 0xc7, 0xfd, 0x65, 0x42, 0xe6, 0x34, 0x19, 0xaa, 0xe3, 0xce, 0x45, 0x2b, + 0x3e, 0xf5, 0x89, 0x54, 0x7c, 0x6a, 0x95, 0x51, 0x1b, 0x21, 0xa9, 0x09, 0xa9, 0x1c, 0x78, 0x0f, + 0x84, 0xf6, 0xff, 0x7a, 0xd1, 0x06, 0x61, 0x4d, 0xcb, 0x37, 0xbc, 0x07, 0x5c, 0x1d, 0x7a, 0x49, + 0x4e, 0x20, 0x0a, 0xf9, 0x90, 0x1f, 0xf4, 0xb0, 0x15, 0x88, 0xe6, 0xc6, 0x4f, 0xfc, 0x67, 0xfd, + 0x9b, 0x09, 0x45, 0xac, 0x8e, 0xd5, 0x1a, 0x74, 0x84, 0xcb, 0x6e, 0xc8, 0x5a, 0x83, 0x4e, 0xba, + 0xd6, 0xa0, 0x53, 0xa0, 0xd6, 0xa0, 0x83, 0x61, 0x6c, 0x93, 0xc2, 0xd3, 0xcd, 0xc2, 0xa8, 0xa6, + 0xaf, 0xbc, 0x35, 0x54, 0xd5, 0xc2, 0x65, 0xce, 0xab, 0xbf, 0x24, 0x75, 0x40, 0x01, 0xcd, 0x6d, + 0x82, 0xac, 0xda, 0xf9, 0x05, 0x6a, 0x33, 0x88, 0xff, 0x31, 0x62, 0x89, 0x1a, 0x8f, 0x62, 0x97, + 0x7a, 0xfb, 0x24, 0xad, 0x11, 0x2c, 0x78, 0xa3, 0x7e, 0x48, 0x8a, 0x18, 0x1b, 0x99, 0xdb, 0xb6, + 0x54, 0x7b, 0x9c, 0x6f, 0x95, 0xc8, 0x39, 0xfa, 0x9d, 0x78, 0x8d, 0x1c, 0x06, 0x78, 0x30, 0x28, + 0x42, 0xc5, 0x36, 0x86, 0x9d, 0x27, 0x7d, 0x8c, 0x78, 0x73, 0x3f, 0x27, 0x8f, 0x1f, 0xb3, 0x48, + 0x72, 0x1b, 0x9d, 0xd9, 0xc2, 0xa5, 0x16, 0x99, 0x92, 0x13, 0x33, 0x43, 0xfb, 0x5e, 0x35, 0x37, + 0xe3, 0xe3, 0x57, 0xa0, 0x74, 0x84, 0x2d, 0xbf, 0xd3, 0xf3, 0x3a, 0x09, 0x86, 0xfe, 0x6b, 0x5d, + 0x9d, 0xd5, 0x22, 0x26, 0xe2, 0x08, 0x6b, 0xd9, 0x27, 0x33, 0xe6, 0x9c, 0x1b, 0x61, 0x4d, 0x21, + 0x39, 0x9b, 0x31, 0x9f, 0x46, 0x58, 0x61, 0x8f, 0x3c, 0x31, 0x70, 0x5e, 0x8c, 0xae, 0x5a, 0x74, + 0xee, 0x1b, 0x02, 0xf3, 0x34, 0x1c, 0x2c, 0x37, 0x6c, 0x07, 0xcb, 0x0b, 0x45, 0x97, 0xce, 0x00, + 0x2f, 0xcb, 0xae, 0xd9, 0x7e, 0xdc, 0x09, 0x9c, 0x6d, 0x32, 0xd1, 0x46, 0x88, 0x3c, 0xd5, 0x79, + 0x79, 0x98, 0xc5, 0xa9, 0x95, 0x0b, 0x06, 0x8f, 0x41, 0xf0, 0x72, 0x7f, 0xbd, 0x44, 0xc6, 0x4e, + 0x63, 0x78, 0xea, 0xf6, 0xf0, 0x0c, 0x52, 0x51, 0xc5, 0x9d, 0xcd, 0x65, 0xf0, 0xee, 0xaf, 0x3f, + 0xa0, 0xd6, 0x6c, 0xcc, 0x54, 0xc9, 0xcc, 0x11, 0xfa, 0xa5, 0x32, 0x99, 0xc6, 0x8a, 0xa4, 0xbf, + 0xe7, 0xb3, 0xe8, 0xff, 0xdb, 0xf1, 0xdb, 0xd2, 0x2d, 0x9c, 0x36, 0xbb, 0xb6, 0x4c, 0x24, 0xd8, + 0xb4, 0x58, 0x78, 0xd7, 0xf4, 0x9a, 0x0b, 0x95, 0x48, 0x15, 0xb6, 0x5c, 0xea, 0x60, 0xd3, 0xa2, + 0xe6, 0x7f, 0xdf, 0x4b, 0x9a, 0xfb, 0xc2, 0x24, 0x53, 0xcd, 0xbd, 0x8b, 0x40, 0xe0, 0x38, 0x67, + 0x85, 0xcc, 0xcb, 0x19, 0x7b, 0x87, 0x0f, 0x9d, 0x50, 0x17, 0xd5, 0x7d, 0x3b, 0xb0, 0xd1, 0x90, + 0xa6, 0x77, 0x3e, 0x43, 0xe6, 0x70, 0x70, 0xc2, 0x5e, 0x22, 0x83, 0x0e, 0xc6, 0x59, 0xd0, 0x01, + 0x0b, 0xf2, 0xdc, 0xb6, 0x30, 0x90, 0xa2, 0x74, 0x7f, 0x94, 0x9c, 0xdd, 0x0a, 0xbd, 0xd6, 0xaa, + 0xd7, 0xf6, 0x3a, 0x4d, 0x3f, 0xda, 0xec, 0xec, 0xe5, 0x9e, 0xcf, 0x9a, 0x67, 0xa8, 0xe5, 0xbc, + 0x33, 0x54, 0x37, 0x22, 0x8e, 0x59, 0x81, 0x08, 0x97, 0x79, 0x97, 0x4c, 0x06, 0xbc, 0x2a, 0x31, + 0x6b, 0x2f, 0xe7, 0x39, 0x87, 0xfa, 0xda, 0x68, 0x84, 0x7f, 0x70, 0x00, 0x48, 0x96, 0x68, 0x49, + 0x64, 0x79, 0x93, 0xf2, 0x8d, 0x35, 0xf7, 0xaf, 0x94, 0xc8, 0xfc, 0xcd, 0xd4, 0xa5, 0x2e, 0x8c, + 0xe5, 0xf2, 0xa3, 0x0c, 0xd7, 0x58, 0x83, 0x41, 0x41, 0x60, 0x1f, 0xba, 0x99, 0xfe, 0xd3, 0x65, + 0x52, 0x65, 0xb1, 0x97, 0x5d, 0xaf, 0x39, 0x4a, 0xa5, 0xf4, 0x86, 0xa5, 0x94, 0xe6, 0x18, 0x89, + 0xaa, 0x41, 0x83, 0x74, 0x52, 0xbc, 0xd6, 0x27, 0x2e, 0x39, 0x15, 0xb2, 0x0f, 0x35, 0x43, 0x7e, + 0x1f, 0x66, 0xce, 0xbe, 0x13, 0x25, 0x2f, 0x40, 0xb1, 0x53, 0x4d, 0x45, 0xfb, 0xe8, 0x9d, 0x6a, + 0xaa, 0xa6, 0x0d, 0x90, 0x4a, 0x75, 0xa3, 0xf5, 0x4c, 0x6c, 0x7f, 0x81, 0x05, 0xd2, 0x79, 0xed, + 0xe0, 0x03, 0x5f, 0x5d, 0x16, 0x7c, 0x5a, 0xc4, 0xc5, 0x09, 0xe8, 0x87, 0x4c, 0xc0, 0x88, 0x5f, + 0xfc, 0x0e, 0xa8, 0x2e, 0xe2, 0x5e, 0xa3, 0x33, 0xd5, 0x1e, 0x3b, 0xe7, 0x75, 0x32, 0xde, 0xdd, + 0xf7, 0x62, 0x3f, 0x15, 0xa1, 0x31, 0x5e, 0x47, 0x20, 0xe5, 0x36, 0xa7, 0x0a, 0x30, 0x08, 0x70, + 0x6a, 0xf7, 0x4f, 0xa8, 0xac, 0xc7, 0x98, 0x86, 0x11, 0xce, 0xb1, 0x6b, 0xd6, 0x1c, 0x7b, 0x3e, + 0xff, 0xe6, 0xf8, 0xc0, 0xe9, 0x55, 0x4f, 0x4d, 0xaf, 0x17, 0x0a, 0xf0, 0x3a, 0x7e, 0x66, 0x1d, + 0x90, 0x69, 0x76, 0x33, 0x5d, 0x84, 0xa6, 0xbc, 0x6a, 0x19, 0x50, 0x4f, 0xa7, 0x0c, 0xa8, 0x79, + 0x83, 0xd4, 0x30, 0xa3, 0x5e, 0x24, 0x93, 0x22, 0x14, 0x22, 0x1d, 0x3d, 0x28, 0x68, 0x41, 0xe2, + 0xdd, 0x5f, 0xad, 0x10, 0xeb, 0x26, 0xbc, 0xf3, 0x9d, 0x12, 0xa1, 0x4a, 0x0b, 0xbb, 0xba, 0xd0, + 0xaa, 0xf5, 0xd0, 0x5f, 0x86, 0x2e, 0xad, 0x56, 0xaf, 0x4d, 0xff, 0xdb, 0xdc, 0xeb, 0x84, 0x0a, + 0x8c, 0xbe, 0x9d, 0x1e, 0xf3, 0xae, 0x16, 0xbe, 0x80, 0xaf, 0xce, 0x42, 0xaf, 0xd0, 0xb6, 0x2c, + 0xc3, 0x50, 0xb5, 0xc0, 0x90, 0xad, 0x72, 0x7e, 0xaf, 0x44, 0x2e, 0xf1, 0xbb, 0xe0, 0xc5, 0x7b, + 0x52, 0xc8, 0xf0, 0xac, 0x4b, 0xa6, 0x9a, 0x1d, 0x06, 0x2b, 0xae, 0xbe, 0x21, 0x06, 0xf9, 0x52, + 0x7d, 0xb8, 0x5a, 0x61, 0xd8, 0x66, 0xba, 0xff, 0xaa, 0x42, 0xd7, 0x2f, 0x1d, 0x4f, 0x7d, 0x0f, + 0xf4, 0x75, 0x6b, 0x9a, 0x7c, 0x32, 0x35, 0x4d, 0xce, 0x58, 0xc4, 0x0f, 0xe7, 0x0a, 0x68, 0x42, + 0xce, 0xe0, 0x79, 0xe3, 0x35, 0xdf, 0x8b, 0x92, 0x1d, 0xdf, 0x63, 0x07, 0x8f, 0x62, 0x11, 0x0c, + 0x75, 0x98, 0xa9, 0xe2, 0x6b, 0xb6, 0xd2, 0xdc, 0xa0, 0xbf, 0x02, 0xe7, 0x3e, 0x71, 0xd8, 0x29, + 0x67, 0xe4, 0x51, 0xa5, 0x8b, 0x75, 0x26, 0x10, 0x0e, 0xd9, 0x21, 0xab, 0x5d, 0x12, 0xd5, 0x3a, + 0x5b, 0x7d, 0xec, 0x20, 0xa3, 0x0a, 0xe3, 0x28, 0x7b, 0xbc, 0xe8, 0x51, 0xf6, 0x44, 0x4e, 0xe0, + 0xee, 0x4f, 0x95, 0xc8, 0x59, 0xfc, 0x30, 0x76, 0x90, 0x67, 0xec, 0x84, 0x64, 0x1e, 0x7b, 0xd0, + 0xf6, 0x13, 0x09, 0x13, 0x2b, 0x2c, 0x47, 0x97, 0xb6, 0xf9, 0x68, 0x8d, 0xed, 0xba, 0xcd, 0x0c, + 0xd2, 0xdc, 0xdd, 0x5f, 0x2d, 0x11, 0x16, 0x45, 0x76, 0x1a, 0xfb, 0xd8, 0x55, 0x7b, 0x1f, 0x73, + 0xf3, 0x85, 0xc6, 0x80, 0x2d, 0xec, 0x35, 0xb2, 0x80, 0xd8, 0x7a, 0x14, 0x3e, 0x38, 0x92, 0xca, + 0x75, 0xbe, 0x6f, 0xf6, 0x2f, 0x97, 0xb8, 0xb8, 0x53, 0x5a, 0xf1, 0x7d, 0x0c, 0x14, 0xd3, 0xbf, + 0x71, 0x21, 0x4b, 0x25, 0x70, 0xb9, 0xb8, 0x40, 0x63, 0xeb, 0xdf, 0x88, 0x14, 0x4b, 0x31, 0x84, + 0xfe, 0x3a, 0xdc, 0xbf, 0x57, 0x22, 0x8f, 0x9b, 0x84, 0xc6, 0x75, 0xb1, 0x3c, 0x87, 0x68, 0x8d, + 0x4c, 0x85, 0x5d, 0xcc, 0xfc, 0xa2, 0x2c, 0x80, 0x17, 0xe4, 0x88, 0xdf, 0x12, 0x70, 0xba, 0x72, + 0xcf, 0x99, 0xdc, 0x25, 0x1c, 0x54, 0x49, 0xcc, 0x28, 0xc1, 0x2c, 0xd1, 0x58, 0x5c, 0xf4, 0x63, + 0x19, 0x25, 0xd8, 0x31, 0x00, 0x5d, 0xe4, 0x1c, 0xe3, 0xfe, 0xd5, 0x12, 0x1f, 0x65, 0xb3, 0xe9, + 0xce, 0xd7, 0xc8, 0xc2, 0x01, 0x1a, 0x0b, 0xeb, 0x0f, 0xba, 0xb8, 0x85, 0xb0, 0x63, 0xcc, 0x52, + 0x11, 0xc1, 0x39, 0xa0, 0xbb, 0xab, 0x8b, 0xa2, 0xf5, 0x0b, 0x37, 0x52, 0x6c, 0xa1, 0xaf, 0x22, + 0xf7, 0xf7, 0xc5, 0x5c, 0x65, 0x5a, 0x0b, 0x5d, 0x6c, 0xdd, 0xb0, 0xb5, 0xb6, 0x59, 0x03, 0x31, + 0x56, 0x6a, 0xb1, 0xd5, 0x39, 0x18, 0x24, 0x1e, 0xcf, 0xe5, 0x7c, 0x6a, 0xaa, 0x45, 0x54, 0x61, + 0xd9, 0xac, 0xa5, 0xd3, 0x97, 0xac, 0x2b, 0x0c, 0x18, 0x54, 0x58, 0xa6, 0x1b, 0x85, 0x87, 0x41, + 0x8b, 0x85, 0x6d, 0x57, 0xec, 0x32, 0x75, 0x85, 0x01, 0x83, 0x0a, 0x4d, 0xb4, 0x5e, 0x27, 0xe6, + 0x02, 0xdc, 0xdb, 0x11, 0x89, 0x10, 0xa6, 0xb4, 0x89, 0x76, 0xdb, 0x44, 0x82, 0x4d, 0xeb, 0xfe, + 0x4e, 0x95, 0x10, 0xad, 0x22, 0xa0, 0x87, 0x70, 0xaa, 0xe9, 0x51, 0x05, 0x89, 0x67, 0xb9, 0xa9, + 0xe4, 0xdf, 0x6f, 0xd1, 0x85, 0x97, 0xd7, 0x44, 0x41, 0xee, 0xdb, 0x7a, 0x45, 0x4e, 0x10, 0x09, + 0xce, 0xf5, 0x67, 0xa9, 0x9a, 0x9d, 0xaf, 0x97, 0xc8, 0xb4, 0xd7, 0xc6, 0x3b, 0xb0, 0x09, 0xeb, + 0x51, 0xb9, 0x88, 0xb3, 0xd2, 0x68, 0xc9, 0x8a, 0x2e, 0xcb, 0x1b, 0xf3, 0xaa, 0x3c, 0xd5, 0x32, + 0x30, 0xb9, 0xed, 0x31, 0x9b, 0xe0, 0xbc, 0x22, 0x55, 0x4b, 0xfe, 0x51, 0x96, 0xd2, 0xaa, 0x65, + 0x95, 0x89, 0x06, 0x43, 0xab, 0xc4, 0x9b, 0x22, 0x46, 0x0c, 0xfb, 0x58, 0x91, 0x3b, 0xa6, 0xd6, + 0xa6, 0x99, 0x77, 0xdd, 0x1f, 0xcf, 0xa2, 0x74, 0x44, 0xeb, 0x78, 0x91, 0x0b, 0x9c, 0x86, 0xee, + 0x96, 0x13, 0xcd, 0x9a, 0x90, 0xf9, 0x96, 0xbd, 0x49, 0x88, 0x10, 0xa5, 0xcb, 0xf9, 0x35, 0xa4, + 0x76, 0x17, 0xbd, 0x2d, 0xa4, 0x10, 0x90, 0xae, 0x82, 0xf6, 0x88, 0x45, 0x14, 0x6f, 0x76, 0x76, + 0x43, 0x11, 0xa5, 0xf4, 0x72, 0x81, 0x6f, 0x7e, 0x14, 0x53, 0xf1, 0x8c, 0x65, 0xf4, 0x36, 0x70, + 0x53, 0x70, 0x01, 0xc5, 0x0f, 0xdd, 0x44, 0xec, 0x76, 0x04, 0xde, 0xa9, 0xad, 0x0c, 0x71, 0x51, + 0x84, 0xdd, 0xad, 0xd0, 0x9b, 0x2f, 0xfb, 0x49, 0xc5, 0x15, 0xe7, 0x45, 0xf5, 0x7a, 0x71, 0xe5, + 0x35, 0xde, 0xec, 0xdc, 0x8e, 0x7d, 0x76, 0x8f, 0xb6, 0xba, 0xfa, 0xac, 0xbe, 0x18, 0xcb, 0xe1, + 0x99, 0x59, 0x8e, 0xac, 0x92, 0xb8, 0x07, 0x8b, 0xdf, 0x32, 0x79, 0xd2, 0x22, 0x29, 0xd2, 0x50, + 0x3b, 0xd5, 0x92, 0x1e, 0xec, 0x3b, 0x36, 0x33, 0x48, 0x73, 0x5f, 0x0a, 0xc8, 0xac, 0xb5, 0x62, + 0x47, 0xe8, 0xec, 0x6c, 0x93, 0x85, 0xf4, 0x92, 0x1c, 0xa1, 0x8f, 0xf3, 0x8f, 0xc7, 0xc8, 0x9c, + 0x3d, 0x31, 0x30, 0x82, 0xe1, 0x80, 0xa5, 0x36, 0xd2, 0x09, 0x55, 0xd4, 0xfc, 0xbf, 0x21, 0x11, + 0xa0, 0x69, 0x58, 0x6a, 0x19, 0x56, 0xfc, 0xf6, 0xed, 0x7e, 0xe1, 0xdd, 0x50, 0x18, 0x30, 0xa8, + 0x50, 0x61, 0xdb, 0x09, 0xc3, 0x44, 0x09, 0x6e, 0x35, 0x67, 0x56, 0x19, 0x14, 0x04, 0x16, 0x05, + 0xf6, 0x3d, 0xec, 0x50, 0xdb, 0xf6, 0x77, 0x29, 0x81, 0x7d, 0xdd, 0x44, 0x82, 0x4d, 0x8b, 0x1b, + 0x50, 0x18, 0xb3, 0x49, 0x28, 0xd4, 0x42, 0x1d, 0x8b, 0xd3, 0xe0, 0xb7, 0x85, 0x24, 0xde, 0xf9, + 0x12, 0x79, 0x5c, 0x5d, 0xee, 0x01, 0xee, 0x3f, 0x94, 0x35, 0x4e, 0x58, 0xb6, 0xdd, 0xe3, 0x6b, + 0xd9, 0x64, 0x30, 0xa8, 0x3c, 0x1e, 0xf1, 0x0a, 0x95, 0x4e, 0x72, 0x9c, 0xb4, 0x8f, 0x78, 0xaf, + 0x5b, 0x58, 0x48, 0x51, 0x53, 0x7d, 0x62, 0x01, 0x21, 0x4c, 0x95, 0x92, 0x1c, 0xf8, 0x25, 0x25, + 0xb5, 0x33, 0x5f, 0x4f, 0xe1, 0xa1, 0xaf, 0x04, 0xba, 0x0e, 0xb9, 0x6e, 0x81, 0x16, 0x0c, 0xfb, + 0x0e, 0x22, 0xaa, 0x50, 0x2d, 0x82, 0x5b, 0x36, 0x1a, 0xd2, 0xf4, 0x78, 0x46, 0xee, 0x45, 0xf4, + 0xa3, 0x27, 0x54, 0x45, 0xe8, 0x45, 0xfc, 0x86, 0xba, 0x71, 0x46, 0xbe, 0x62, 0xe0, 0xc0, 0xa2, + 0x74, 0x3f, 0x20, 0x67, 0x33, 0x82, 0x97, 0x71, 0xe2, 0xd0, 0x09, 0x2a, 0xfb, 0x94, 0x8a, 0xc6, + 0xc1, 0x1b, 0x2b, 0xa2, 0x37, 0x06, 0x15, 0xce, 0x4e, 0xe6, 0x38, 0x35, 0xf2, 0x9c, 0xa9, 0xd9, + 0xb9, 0x21, 0x11, 0xa0, 0x69, 0xdc, 0xff, 0x46, 0x77, 0x6d, 0xed, 0x66, 0x28, 0x10, 0x83, 0x41, + 0xbb, 0x29, 0x53, 0xf7, 0x19, 0x29, 0xb3, 0x54, 0x37, 0xaf, 0x1a, 0x38, 0xb0, 0x28, 0xb1, 0x6d, + 0x1d, 0xe9, 0x34, 0x49, 0xc7, 0xfe, 0x28, 0x6f, 0x0a, 0x68, 0x1a, 0xf4, 0xf1, 0xc5, 0x7e, 0x7b, + 0x77, 0x2b, 0xe8, 0xdc, 0x13, 0x13, 0x5b, 0x49, 0xe5, 0x86, 0x80, 0x83, 0xa2, 0x70, 0xde, 0x26, + 0x95, 0x5e, 0xd0, 0x12, 0x53, 0x79, 0x59, 0xea, 0x9d, 0x74, 0x35, 0x51, 0x89, 0xf9, 0x74, 0x76, + 0x3e, 0x42, 0x34, 0x23, 0xe3, 0x65, 0x5c, 0x7c, 0x58, 0x34, 0xcb, 0x7f, 0x3c, 0x31, 0xa4, 0xff, + 0x98, 0x7e, 0x33, 0xd1, 0x67, 0x39, 0x93, 0x2b, 0xfa, 0x9b, 0x5d, 0x55, 0x18, 0x30, 0xa8, 0xd0, + 0x18, 0x6d, 0x52, 0x03, 0x4c, 0x5a, 0x6b, 0x3c, 0xb2, 0x76, 0xea, 0x23, 0x18, 0xa3, 0x6b, 0x69, + 0x6e, 0xd0, 0x5f, 0x81, 0xd3, 0x25, 0x67, 0x5a, 0xb8, 0x8e, 0xac, 0x5a, 0xab, 0x27, 0x88, 0xe7, + 0xc5, 0x1a, 0x6b, 0x69, 0x4e, 0xd0, 0xcf, 0xdc, 0xf9, 0x0a, 0x59, 0x92, 0xc0, 0xfe, 0xeb, 0x7b, + 0x6c, 0xb9, 0x54, 0x56, 0x9f, 0xa2, 0xdc, 0x96, 0x6a, 0x03, 0xa9, 0xe0, 0x18, 0x0e, 0xce, 0xbb, + 0x64, 0x82, 0x9d, 0x38, 0xc4, 0x8b, 0xd3, 0x6c, 0xb7, 0x7b, 0xad, 0xa8, 0xc3, 0x6d, 0x99, 0x9d, + 0x5b, 0x88, 0x80, 0x44, 0x7d, 0x8a, 0xc3, 0x80, 0x20, 0x78, 0xd2, 0xf1, 0x9a, 0xf6, 0x3a, 0x9d, + 0x30, 0xf1, 0xb8, 0x12, 0x36, 0x53, 0x44, 0x8f, 0x34, 0xaa, 0x58, 0xd1, 0x65, 0x79, 0x3d, 0x2a, + 0x3a, 0xca, 0xc0, 0x80, 0x59, 0x05, 0x6e, 0xe3, 0xe1, 0x7d, 0x14, 0x98, 0xd2, 0xe9, 0x1e, 0x2f, + 0xce, 0x16, 0xd9, 0xc6, 0x6f, 0x59, 0x85, 0x0c, 0x09, 0x66, 0x33, 0x83, 0x34, 0x77, 0x0c, 0xb7, + 0x35, 0xfc, 0xa8, 0x73, 0x3a, 0xdc, 0x56, 0xfb, 0x51, 0x4d, 0xb7, 0x29, 0xbb, 0x1a, 0xca, 0x43, + 0xf3, 0x98, 0x24, 0x98, 0x4f, 0x5d, 0x0d, 0xd5, 0x28, 0x30, 0xe9, 0x96, 0xde, 0x22, 0xd3, 0xc6, + 0x80, 0x0f, 0x13, 0xd7, 0xb9, 0xf4, 0x79, 0xba, 0xfb, 0xa7, 0x06, 0x72, 0xa8, 0xb8, 0xd0, 0xff, + 0x5e, 0x26, 0xf3, 0x19, 0x27, 0x19, 0xf7, 0x02, 0x16, 0xf9, 0x6c, 0x89, 0xbc, 0xeb, 0x14, 0x06, + 0x0c, 0x63, 0x0b, 0xae, 0x72, 0x01, 0xc1, 0x25, 0xa5, 0x68, 0x65, 0xa0, 0x14, 0x15, 0xc2, 0x6a, + 0xec, 0xe4, 0xc2, 0xca, 0xde, 0x1d, 0xc6, 0x0b, 0xed, 0x0e, 0x0f, 0x41, 0xc0, 0x59, 0x1b, 0xcc, + 0x64, 0x81, 0x0d, 0xe6, 0xc3, 0x12, 0x99, 0xb3, 0x67, 0x5e, 0x81, 0x11, 0x7f, 0x54, 0x07, 0x70, + 0x99, 0x19, 0x62, 0x49, 0x14, 0xb6, 0xdb, 0x7e, 0x24, 0x22, 0xc5, 0xe6, 0x84, 0x5d, 0x25, 0xa0, + 0x60, 0x50, 0xb8, 0xbf, 0x50, 0x26, 0x0b, 0x3a, 0x6c, 0x58, 0xa4, 0x30, 0x1d, 0xdd, 0xd1, 0xc0, + 0xb6, 0x75, 0x34, 0x90, 0x97, 0x99, 0x34, 0xd5, 0xae, 0x81, 0xc7, 0x04, 0xef, 0xa6, 0x8e, 0x09, + 0x5e, 0x1b, 0x92, 0xef, 0xf1, 0x47, 0x06, 0xff, 0xa4, 0x4c, 0x1e, 0x4b, 0x17, 0x59, 0x6b, 0x7b, + 0xc1, 0xc1, 0x08, 0xc7, 0xe9, 0x4b, 0xd6, 0x38, 0xbd, 0x31, 0x5c, 0x7f, 0x58, 0xe3, 0x06, 0x0e, + 0x96, 0x97, 0x1a, 0xac, 0xb7, 0x4e, 0xc2, 0xfc, 0xf8, 0x11, 0xfb, 0x8f, 0x25, 0xf2, 0x44, 0x66, + 0xb9, 0xd3, 0x70, 0x81, 0x7e, 0xd1, 0x76, 0x81, 0xbe, 0x7a, 0x82, 0xee, 0x0d, 0xf0, 0x89, 0xfe, + 0x97, 0xf2, 0x80, 0x6e, 0x31, 0x6f, 0xd9, 0x2d, 0xba, 0xfd, 0x36, 0xe9, 0x26, 0x15, 0x63, 0x6c, + 0xa4, 0x3c, 0xe4, 0xbb, 0xc8, 0xf6, 0x4f, 0x0d, 0xa6, 0x6b, 0x7f, 0x29, 0xcd, 0x42, 0xa3, 0xc1, + 0xe4, 0x60, 0xe7, 0xc6, 0x2a, 0x8f, 0x28, 0x37, 0x16, 0x95, 0x31, 0x87, 0xca, 0x4a, 0x4f, 0x3b, + 0xe1, 0x0c, 0xfb, 0xdd, 0xa0, 0xa2, 0x6a, 0x12, 0xea, 0xb4, 0x3c, 0x44, 0x62, 0x2c, 0x77, 0xc1, + 0x59, 0x1f, 0xd0, 0x8c, 0xb7, 0xe0, 0x77, 0x1f, 0x95, 0xc7, 0x52, 0xf1, 0x74, 0xbf, 0x59, 0x21, + 0x1f, 0x3f, 0x66, 0xda, 0xd1, 0x4d, 0xc2, 0x3a, 0xf9, 0x7c, 0x29, 0xed, 0x9e, 0x5a, 0xca, 0x2c, + 0x6c, 0xf9, 0xab, 0x52, 0x1f, 0xab, 0xfc, 0x91, 0x3f, 0xd6, 0xcf, 0x9b, 0xce, 0x44, 0x1e, 0xea, + 0x78, 0xf5, 0xc4, 0x0b, 0xeb, 0xe1, 0x79, 0x17, 0x4f, 0xd1, 0xf1, 0x81, 0xe9, 0xa8, 0x3f, 0x99, + 0xd9, 0x29, 0x2b, 0xc0, 0x02, 0xaf, 0x8a, 0x21, 0xd0, 0xb8, 0x8b, 0xa2, 0xaf, 0x8a, 0x49, 0x04, + 0x68, 0x1a, 0x2b, 0x8e, 0xa2, 0x9c, 0x1b, 0x47, 0xf1, 0x6f, 0x4b, 0xe4, 0x5c, 0xba, 0x11, 0xa7, + 0x21, 0x75, 0x1a, 0xb6, 0xd4, 0x59, 0x1e, 0xee, 0xdb, 0x0f, 0x10, 0x38, 0x3f, 0x37, 0x43, 0xce, + 0xf7, 0x6d, 0x56, 0x7c, 0x18, 0x7f, 0xbc, 0x44, 0xce, 0xec, 0x31, 0xfb, 0xc2, 0xb8, 0xf1, 0x23, + 0x3a, 0x96, 0x73, 0xdd, 0xe9, 0xd8, 0x8b, 0x42, 0xdc, 0x5a, 0xea, 0x23, 0x81, 0xfe, 0xca, 0x9c, + 0x9f, 0xa1, 0x43, 0xed, 0xdd, 0x8f, 0xfb, 0xf2, 0xe1, 0x8b, 0x79, 0xf4, 0xf9, 0x1c, 0x57, 0x5e, + 0x4e, 0x26, 0xfd, 0xd5, 0x45, 0x8c, 0x15, 0xcd, 0xa2, 0x82, 0xcc, 0x5a, 0xa9, 0x12, 0xc0, 0xb3, + 0x84, 0xa1, 0xda, 0x57, 0xe8, 0x0e, 0x5a, 0xd6, 0xfd, 0x03, 0x2e, 0x93, 0x24, 0x06, 0x14, 0x47, + 0xe7, 0x3d, 0x52, 0xdd, 0x93, 0x97, 0x7c, 0x84, 0xd0, 0xcb, 0xd9, 0x59, 0x32, 0xef, 0x04, 0xf1, + 0x28, 0x77, 0x85, 0x02, 0xcd, 0xd4, 0xb9, 0x46, 0x2a, 0x9d, 0xdd, 0x58, 0xdc, 0xbb, 0xcd, 0x8b, + 0xa3, 0xb1, 0xa3, 0x96, 0xf8, 0x4d, 0x42, 0x0a, 0x04, 0x64, 0x81, 0x9c, 0xa2, 0x9d, 0x96, 0xf0, + 0x61, 0xe7, 0x70, 0x82, 0xd5, 0x5a, 0x3f, 0x27, 0x0a, 0x04, 0x64, 0xc1, 0x02, 0xf6, 0xf0, 0xbe, + 0x82, 0x70, 0x50, 0xe7, 0x5c, 0xca, 0xee, 0xbb, 0x95, 0xc1, 0x53, 0xca, 0x31, 0x30, 0x70, 0x46, + 0xe8, 0x99, 0x6e, 0xb2, 0x14, 0xd0, 0xc2, 0x7f, 0x90, 0x97, 0x18, 0xb8, 0x2f, 0x5d, 0x34, 0x3f, + 0x48, 0xe3, 0x70, 0x10, 0xbc, 0x18, 0x57, 0xbf, 0xbb, 0xbf, 0x1b, 0x0b, 0xff, 0x40, 0x1e, 0xd7, + 0xbe, 0x64, 0xde, 0x82, 0x2b, 0x83, 0x83, 0xe0, 0xe5, 0xd4, 0x48, 0x79, 0xb7, 0x29, 0xf2, 0x38, + 0xe6, 0x58, 0xb4, 0xf6, 0xb5, 0xd0, 0xd5, 0x09, 0x8c, 0xa0, 0xdb, 0x58, 0x03, 0x5a, 0x9e, 0xea, + 0x23, 0x93, 0xbb, 0xfc, 0xa6, 0x9f, 0xc8, 0xd9, 0x78, 0x39, 0xef, 0x36, 0x62, 0xdf, 0xb5, 0x40, + 0x7e, 0x93, 0x41, 0x20, 0x40, 0xb2, 0xa3, 0xfb, 0x30, 0xd9, 0x55, 0x57, 0x17, 0x45, 0xd2, 0xc6, + 0xe5, 0xe1, 0xae, 0x3a, 0x0a, 0xeb, 0x59, 0x41, 0xc1, 0xe0, 0x88, 0x73, 0xde, 0x93, 0x59, 0xec, + 0x59, 0xc2, 0xc6, 0xdc, 0x39, 0x9f, 0x99, 0xf4, 0x9e, 0xcf, 0x79, 0x85, 0x02, 0xcd, 0xd4, 0xe9, + 0x91, 0xd9, 0xc3, 0xb8, 0xbb, 0xef, 0xcb, 0xa5, 0xcf, 0xb2, 0x38, 0x4e, 0x5f, 0xf9, 0x5c, 0x4e, + 0x6a, 0x4e, 0x51, 0x24, 0x88, 0x92, 0x9e, 0xd7, 0xee, 0x93, 0x60, 0x2c, 0x1d, 0xd2, 0x1d, 0x93, + 0x2d, 0xd8, 0xb5, 0xe0, 0x27, 0x79, 0xbf, 0x17, 0xee, 0x1c, 0x25, 0xbe, 0xc8, 0xf2, 0x98, 0xf3, + 0x49, 0xde, 0xe1, 0xc4, 0xfd, 0x9f, 0x44, 0x20, 0x40, 0xb2, 0x53, 0x43, 0xc6, 0xa4, 0xf1, 0x42, + 0xe1, 0x21, 0xeb, 0xeb, 0x83, 0x1e, 0x32, 0x26, 0x7d, 0x35, 0x53, 0xf7, 0xf7, 0xc7, 0xfb, 0x37, + 0x38, 0xa6, 0x7f, 0xfe, 0x6c, 0xff, 0x71, 0xe6, 0xdb, 0xc3, 0xdb, 0x57, 0x0f, 0xf1, 0x60, 0x93, + 0xee, 0x0f, 0xe7, 0xbb, 0x99, 0xbb, 0x97, 0xd8, 0x21, 0x86, 0x35, 0xd3, 0xf8, 0xd0, 0xa8, 0x9c, + 0xa1, 0xd9, 0x78, 0x18, 0x50, 0x67, 0x5a, 0xe5, 0xab, 0x7c, 0x64, 0x95, 0xef, 0x2e, 0x1d, 0x6f, + 0xd4, 0x52, 0x74, 0xd2, 0x8a, 0x21, 0xf3, 0x3c, 0xb0, 0xbd, 0x66, 0x4d, 0xb0, 0x00, 0xc5, 0x0c, + 0x07, 0xee, 0xc9, 0x74, 0x27, 0xc0, 0x67, 0x68, 0x91, 0xec, 0x94, 0xfb, 0x02, 0x36, 0xc4, 0x48, + 0x3c, 0x59, 0x3f, 0x8e, 0xf8, 0xc3, 0x3c, 0x02, 0x38, 0xbe, 0xb2, 0xd3, 0x54, 0x21, 0xff, 0x61, + 0x29, 0x43, 0xe1, 0xe1, 0x4a, 0xff, 0xe7, 0x6c, 0xa5, 0xff, 0xf9, 0xb4, 0xd2, 0xdf, 0x67, 0xa2, + 0x5b, 0xfa, 0x7e, 0xf1, 0x84, 0x7f, 0x45, 0xb3, 0x6a, 0xb8, 0xff, 0xab, 0x44, 0x2a, 0xf5, 0xb0, + 0x35, 0x42, 0x27, 0xc0, 0x55, 0xcb, 0x09, 0xf0, 0x5c, 0xee, 0xf3, 0x35, 0x03, 0x4d, 0xfe, 0x5b, + 0x29, 0x93, 0xff, 0xd3, 0xf9, 0xac, 0x8e, 0x37, 0xf0, 0xbf, 0x55, 0x21, 0xe6, 0x03, 0x3c, 0xce, + 0x6f, 0x9f, 0x24, 0xaa, 0xb1, 0x52, 0xec, 0x4d, 0x1e, 0x51, 0x07, 0x8b, 0x01, 0x92, 0x57, 0x9e, + 0xfe, 0xd4, 0x06, 0x37, 0xde, 0xf5, 0x83, 0xbd, 0xfd, 0xc4, 0x6f, 0xa5, 0x3b, 0x76, 0x7a, 0xc1, + 0x8d, 0xff, 0xb5, 0x44, 0xe6, 0x53, 0xb5, 0x3b, 0x07, 0x59, 0xb7, 0x26, 0x4e, 0x6a, 0xd5, 0x9f, + 0xc9, 0xbd, 0x67, 0xb1, 0x4c, 0x88, 0xf2, 0x44, 0x4b, 0xdb, 0x9b, 0xe9, 0x21, 0xca, 0x55, 0x1d, + 0x83, 0x41, 0x81, 0x5e, 0xfc, 0x24, 0xec, 0x86, 0xed, 0x70, 0xef, 0xe8, 0xba, 0x2f, 0x2f, 0xe5, + 0x2b, 0x2f, 0xfe, 0xb6, 0x46, 0x81, 0x49, 0x87, 0x09, 0x9b, 0xd2, 0xef, 0x37, 0xfd, 0xff, 0x89, + 0xfa, 0xa7, 0x67, 0xa2, 0xfe, 0x6e, 0x89, 0x2c, 0x60, 0xed, 0x2c, 0x84, 0x43, 0x86, 0x20, 0xaa, + 0xcc, 0xd9, 0xa5, 0x63, 0x32, 0x67, 0xe3, 0x1d, 0x8e, 0xa4, 0x15, 0xf6, 0x64, 0x36, 0x17, 0x43, + 0x8a, 0x21, 0x14, 0x04, 0x56, 0xd0, 0xd1, 0x36, 0x89, 0xfb, 0x19, 0x26, 0x1d, 0x85, 0x82, 0xc0, + 0xca, 0xc4, 0xda, 0x63, 0xd9, 0x89, 0xb5, 0x79, 0xf2, 0x1b, 0x11, 0x3a, 0x20, 0x76, 0x66, 0x23, + 0xf9, 0x8d, 0x8c, 0x29, 0xd0, 0x34, 0xee, 0x3f, 0xab, 0x90, 0x19, 0x8c, 0xa0, 0x53, 0xe1, 0xc5, + 0xaf, 0x59, 0xe1, 0xc5, 0xcf, 0xa4, 0xc2, 0x8b, 0x17, 0x4c, 0xda, 0x87, 0x13, 0x5d, 0x2c, 0xd2, + 0x24, 0xb1, 0xd4, 0xef, 0x27, 0x8d, 0x2c, 0xb6, 0xd2, 0x24, 0x29, 0x4e, 0x60, 0x33, 0xfe, 0x33, + 0x15, 0x51, 0xfc, 0x27, 0x25, 0x32, 0x47, 0xbf, 0x05, 0x4e, 0xd1, 0x3f, 0x4b, 0xf3, 0xd1, 0x4c, + 0xae, 0x34, 0x71, 0x4c, 0x72, 0xa5, 0x5f, 0x29, 0x11, 0x0c, 0xfc, 0x3c, 0x0d, 0x6f, 0xda, 0x86, + 0xed, 0x4d, 0xfb, 0x64, 0xae, 0xf0, 0x1d, 0xe0, 0x40, 0xfb, 0xf5, 0x0a, 0x99, 0xc5, 0x26, 0x87, + 0x7b, 0xf2, 0x83, 0x59, 0x83, 0x53, 0x2a, 0x30, 0x38, 0x98, 0xa0, 0x21, 0x6c, 0xb7, 0xc3, 0xfb, + 0xe9, 0x8f, 0xb7, 0xc1, 0xa0, 0x20, 0xb0, 0xe8, 0xa6, 0xec, 0x62, 0x12, 0x99, 0xb0, 0x17, 0xa7, + 0xaf, 0x7b, 0xd5, 0x05, 0x1c, 0x14, 0x05, 0x5d, 0xf1, 0x33, 0x71, 0x40, 0x6d, 0x00, 0x19, 0x5b, + 0x30, 0xc6, 0x62, 0x0b, 0x78, 0x0e, 0x3b, 0x03, 0x0e, 0x16, 0x15, 0x55, 0x35, 0xab, 0xec, 0x37, + 0x5b, 0x43, 0x27, 0xc8, 0xf6, 0xcd, 0x13, 0x2c, 0x49, 0x0e, 0xa0, 0x99, 0xe1, 0x31, 0x40, 0x22, + 0xc3, 0x20, 0x62, 0x71, 0x6c, 0xa8, 0x94, 0x53, 0x15, 0x20, 0x81, 0xb9, 0xac, 0xd4, 0xff, 0xce, + 0x4b, 0x98, 0xba, 0x35, 0x68, 0x6f, 0xe1, 0x2b, 0x12, 0x22, 0x90, 0x44, 0xe4, 0x62, 0x15, 0x40, + 0xd0, 0x78, 0xdc, 0xf3, 0xd9, 0x65, 0x53, 0xfe, 0x96, 0xc0, 0x14, 0xa3, 0x66, 0x7b, 0xfe, 0x96, + 0x82, 0x82, 0x41, 0xe1, 0xbe, 0xca, 0xf6, 0xee, 0x21, 0xc3, 0xcf, 0xbf, 0x57, 0x26, 0x4e, 0x9d, + 0x85, 0x5b, 0x58, 0xcf, 0x2d, 0xec, 0x93, 0xb9, 0x98, 0x1a, 0xab, 0x9d, 0xde, 0x03, 0xc1, 0xaa, + 0x58, 0xc0, 0x7f, 0x63, 0xdd, 0x2c, 0xc3, 0x2f, 0x58, 0xda, 0x30, 0x48, 0xf1, 0xc5, 0x21, 0x89, + 0x7a, 0x9d, 0x95, 0x18, 0xdf, 0x6d, 0x13, 0x0f, 0x26, 0xb0, 0x21, 0x01, 0x09, 0x04, 0x8d, 0xc7, + 0x39, 0xc0, 0x7e, 0xdc, 0xa4, 0xd2, 0x28, 0x0c, 0x13, 0x39, 0x6b, 0x58, 0xf6, 0x6c, 0x03, 0x0e, + 0x16, 0x15, 0x26, 0x9e, 0x8e, 0x7b, 0xdd, 0x6e, 0x9b, 0x9d, 0xee, 0x78, 0xed, 0xab, 0x51, 0xd8, + 0xeb, 0xf2, 0x88, 0x5b, 0x91, 0x78, 0xba, 0xd1, 0x87, 0x85, 0x8c, 0x12, 0xb8, 0xe8, 0x77, 0x63, + 0xf6, 0xbf, 0xb8, 0x40, 0xca, 0x7d, 0x4c, 0x0d, 0x06, 0x02, 0x89, 0x73, 0x7b, 0x6c, 0xab, 0x62, + 0x89, 0xec, 0x31, 0x12, 0xcc, 0xf1, 0xc9, 0x6c, 0x97, 0x6d, 0x47, 0xf2, 0x88, 0xb9, 0xd0, 0x50, + 0xa6, 0x02, 0x3e, 0x78, 0xc2, 0x6a, 0x93, 0x0d, 0xd8, 0x5c, 0xdd, 0x7f, 0x4f, 0x98, 0xac, 0x11, + 0x07, 0x6b, 0x93, 0x22, 0x9c, 0x53, 0xe8, 0x62, 0xcf, 0x16, 0x79, 0xb9, 0x45, 0xcb, 0x71, 0x11, + 0x1c, 0x0a, 0x92, 0x8b, 0xf3, 0x65, 0x7e, 0x46, 0xce, 0xd6, 0x77, 0xf1, 0xe7, 0x94, 0x38, 0xbd, + 0x15, 0xa8, 0x2c, 0x58, 0x80, 0xc1, 0xce, 0xd9, 0x22, 0xb3, 0x22, 0xdb, 0xb9, 0xb0, 0xd5, 0x2b, + 0x96, 0xbd, 0x3a, 0x0b, 0x26, 0xf2, 0xc3, 0x34, 0x00, 0xec, 0xc2, 0xce, 0x1e, 0x79, 0xd2, 0x78, + 0x02, 0x25, 0x23, 0x28, 0x89, 0x0b, 0x8e, 0x4f, 0xa2, 0x17, 0x60, 0xfb, 0x38, 0x42, 0x38, 0x9e, + 0x0f, 0x1d, 0xe4, 0xc7, 0xbc, 0x66, 0x12, 0x1c, 0xfa, 0x35, 0xdf, 0x6b, 0x51, 0xad, 0xcc, 0xb7, + 0x6f, 0x17, 0x3f, 0x41, 0x2b, 0x78, 0x6c, 0x25, 0x8b, 0x00, 0xb2, 0xcb, 0x51, 0x7b, 0xbd, 0xda, + 0xea, 0xc4, 0x62, 0x0c, 0x26, 0xac, 0xd7, 0x5e, 0xaa, 0xb5, 0x9b, 0x0d, 0xd5, 0x7f, 0xfd, 0x03, + 0x74, 0x01, 0xe7, 0x7d, 0xfe, 0x08, 0xad, 0x32, 0x48, 0xf8, 0x2b, 0x43, 0x6f, 0x14, 0x32, 0x81, + 0xad, 0x8b, 0x10, 0xdc, 0x8d, 0xa5, 0x82, 0xff, 0xac, 0x3b, 0x12, 0x56, 0x15, 0xce, 0x0f, 0xd3, + 0x85, 0xe5, 0x47, 0xf8, 0xb8, 0xea, 0x4a, 0x93, 0x65, 0x6f, 0x64, 0x27, 0x54, 0x53, 0x56, 0x04, + 0xbc, 0xd3, 0xe8, 0xa3, 0x80, 0x8c, 0x52, 0xce, 0x35, 0x94, 0x38, 0x26, 0x54, 0xc4, 0x6a, 0x4a, + 0xd5, 0x6e, 0xb1, 0xe6, 0x63, 0x82, 0x76, 0x7c, 0x6b, 0xc2, 0xe6, 0x08, 0xa9, 0x72, 0xb8, 0xad, + 0xa8, 0xac, 0xd4, 0xc4, 0x8e, 0x30, 0xec, 0xcf, 0x4c, 0x8d, 0x96, 0x12, 0x9e, 0x58, 0xdc, 0xf4, + 0x13, 0x7c, 0xfa, 0x89, 0xf9, 0x9b, 0xa7, 0x8c, 0x2c, 0x57, 0x1a, 0x05, 0x26, 0x1d, 0xea, 0x40, + 0xec, 0xa0, 0x63, 0xb3, 0xc6, 0xbc, 0xc8, 0x53, 0x7a, 0xed, 0x5c, 0xe3, 0x60, 0x90, 0x78, 0x49, + 0xba, 0x59, 0x5f, 0x63, 0x1e, 0xe1, 0x14, 0x29, 0x05, 0x83, 0xc4, 0x63, 0x74, 0x58, 0xfa, 0x4d, + 0x9d, 0xb9, 0x22, 0xde, 0xf9, 0x7e, 0x09, 0x5e, 0xf0, 0x59, 0x9d, 0x07, 0x64, 0x41, 0xbd, 0xeb, + 0xc3, 0xd3, 0x08, 0xc6, 0x8b, 0xf3, 0x45, 0x9e, 0xc0, 0xcd, 0xcc, 0x46, 0xa8, 0x82, 0x73, 0x37, + 0x53, 0x3c, 0xa1, 0xaf, 0x16, 0xeb, 0x96, 0xfc, 0x42, 0x6e, 0xa6, 0x71, 0x7c, 0x56, 0xa7, 0xb7, + 0xd3, 0x0a, 0x0f, 0xa8, 0xc8, 0x60, 0x2f, 0xfb, 0x98, 0x0f, 0xba, 0x4a, 0x04, 0x68, 0x9a, 0xa5, + 0x2f, 0x90, 0x33, 0x7d, 0x73, 0x7a, 0xa8, 0xa8, 0xb2, 0x9f, 0x1d, 0x23, 0x55, 0xe5, 0xd5, 0xa1, + 0xf5, 0x5b, 0xae, 0xb4, 0x27, 0xd2, 0xae, 0xb4, 0x29, 0xdc, 0x79, 0x4d, 0xef, 0xd9, 0x57, 0x32, + 0x5e, 0x74, 0xbc, 0x90, 0xfb, 0x11, 0x8b, 0x5f, 0xee, 0x18, 0xe2, 0xbd, 0x4b, 0xad, 0xd6, 0x8f, + 0x1d, 0xab, 0xd6, 0x17, 0x7c, 0xb0, 0x07, 0x15, 0x78, 0xba, 0xf3, 0x50, 0xb2, 0xd4, 0x63, 0x14, + 0x75, 0x04, 0x02, 0xc7, 0x31, 0xbd, 0x0b, 0x85, 0x32, 0xd3, 0xbb, 0x26, 0x4f, 0xaa, 0x77, 0x49, + 0x0e, 0xa0, 0x99, 0x61, 0x22, 0xf5, 0xa6, 0xfd, 0xb8, 0x88, 0xba, 0xb3, 0x71, 0x71, 0x88, 0xc7, + 0x3d, 0x7a, 0x46, 0x22, 0xf5, 0xb5, 0x34, 0x3f, 0xe8, 0xaf, 0x02, 0x2f, 0xd8, 0xcf, 0xab, 0x09, + 0x41, 0x77, 0x20, 0x4c, 0x55, 0x34, 0x3a, 0x47, 0xe6, 0x2d, 0xcb, 0x52, 0x7d, 0x08, 0xfe, 0xc7, + 0xdf, 0x2a, 0x31, 0xff, 0xe3, 0xb6, 0x7f, 0xd0, 0x6d, 0xe3, 0x8b, 0x25, 0xa3, 0x6b, 0xfa, 0x97, + 0xc9, 0x54, 0x22, 0x6a, 0x29, 0x96, 0xcc, 0xd9, 0x68, 0x16, 0xf3, 0xc7, 0x2a, 0x41, 0x20, 0xa1, + 0xa0, 0x18, 0xba, 0xff, 0x92, 0x7f, 0x05, 0x89, 0x39, 0x0d, 0xcb, 0xea, 0xa6, 0x6d, 0x59, 0xbd, + 0x58, 0xb8, 0x33, 0x03, 0x2c, 0xac, 0x6f, 0xda, 0x5d, 0x60, 0x0a, 0xdb, 0xa3, 0xef, 0x11, 0x77, + 0x6f, 0x10, 0xfb, 0xc1, 0x14, 0xaa, 0xae, 0xb0, 0x68, 0x4d, 0x2e, 0x11, 0x2f, 0x0c, 0x19, 0xa9, + 0xe9, 0xfe, 0x5a, 0x99, 0x9c, 0xcb, 0x7a, 0x47, 0xdd, 0x69, 0x91, 0x99, 0xae, 0xa1, 0x3e, 0x17, + 0xbb, 0xcb, 0x6f, 0x2a, 0xdc, 0x5a, 0x75, 0x31, 0xa1, 0x60, 0x71, 0xc5, 0x14, 0xea, 0xf8, 0x2a, + 0xbc, 0x72, 0xaf, 0x94, 0x87, 0x17, 0x51, 0xaa, 0x9a, 0x75, 0x83, 0x11, 0x58, 0x6c, 0x47, 0x90, + 0x6f, 0xdc, 0xfd, 0xfb, 0x25, 0xf2, 0xf8, 0x80, 0x0b, 0xff, 0x58, 0xdd, 0x7d, 0xe6, 0x85, 0x14, + 0x0f, 0xf2, 0xa8, 0xea, 0xb8, 0x6f, 0x12, 0x04, 0xd6, 0xd9, 0xc1, 0x7b, 0xa4, 0xea, 0x95, 0xd2, + 0x72, 0x91, 0x63, 0xf0, 0xbe, 0xcb, 0xc5, 0xc6, 0xbd, 0x53, 0xf5, 0x2e, 0xa9, 0xc1, 0xd5, 0xfd, + 0x46, 0x85, 0x8c, 0xf3, 0x87, 0x12, 0xeb, 0x54, 0x01, 0xe2, 0xf9, 0x05, 0x87, 0x4b, 0x6f, 0xa8, + 0xf5, 0x24, 0x0e, 0x00, 0xc9, 0xc6, 0xb9, 0x41, 0xce, 0xa2, 0x7f, 0x35, 0xf0, 0xda, 0x35, 0xbf, + 0xed, 0x1d, 0x49, 0xc5, 0x9b, 0xe7, 0x88, 0x96, 0x69, 0x50, 0xcf, 0x6e, 0xf6, 0x93, 0x40, 0x56, + 0x39, 0xbc, 0xae, 0x94, 0x4a, 0x10, 0xc4, 0xf3, 0x36, 0xaa, 0xeb, 0x4a, 0xc7, 0x27, 0x09, 0xc2, + 0x1b, 0x5b, 0xdd, 0x3e, 0x13, 0xc3, 0x78, 0x61, 0xcf, 0x36, 0x2b, 0x6c, 0x5a, 0xbc, 0xeb, 0x14, + 0xf7, 0xd8, 0x19, 0xe9, 0xf6, 0x3e, 0xb5, 0x64, 0xf6, 0xc3, 0x76, 0x4b, 0xbc, 0x0c, 0xa5, 0xd4, + 0xa9, 0x46, 0x0a, 0x0f, 0x7d, 0x25, 0x90, 0xcb, 0xae, 0x17, 0xb4, 0xe9, 0xd4, 0xd6, 0x5c, 0x26, + 0x6c, 0x2e, 0x1b, 0x29, 0x3c, 0xf4, 0x95, 0x70, 0xff, 0xb0, 0x44, 0xce, 0x66, 0x9c, 0xdc, 0xf3, + 0x80, 0xb2, 0x3d, 0x2a, 0x1a, 0x55, 0x06, 0x61, 0x23, 0xa0, 0x8c, 0xc3, 0x41, 0x51, 0xe0, 0x2c, + 0xe4, 0x76, 0x63, 0x3a, 0x21, 0xb2, 0x38, 0x2a, 0x15, 0xd8, 0xe1, 0xd2, 0xfd, 0xa8, 0xf7, 0xde, + 0xc7, 0x06, 0xbe, 0xf7, 0x4e, 0x15, 0x93, 0x3d, 0x65, 0x9d, 0x1b, 0x8a, 0x09, 0xb7, 0xcf, 0x39, + 0x0e, 0xb3, 0x7b, 0xcf, 0xa7, 0x22, 0x78, 0xb0, 0x21, 0xa9, 0x67, 0xe9, 0x99, 0x4b, 0x01, 0x63, + 0x5b, 0x32, 0x9e, 0xa6, 0x7f, 0xde, 0x7e, 0xb5, 0x56, 0xb7, 0x79, 0xb5, 0x66, 0xbd, 0xc7, 0x55, + 0x34, 0x3b, 0xf9, 0xa7, 0x30, 0x75, 0xb0, 0x7a, 0x5e, 0x51, 0x4d, 0x7a, 0xca, 0xae, 0x4e, 0xc1, + 0xc0, 0x90, 0xce, 0x73, 0xa2, 0xf7, 0x29, 0xe7, 0x24, 0x78, 0xad, 0x30, 0x36, 0x86, 0x80, 0xca, + 0x11, 0xaa, 0xd6, 0xe2, 0xa9, 0x40, 0xda, 0x35, 0x7b, 0x9d, 0x83, 0x41, 0xe2, 0xed, 0x0c, 0xe4, + 0x93, 0x23, 0xce, 0x40, 0x3e, 0x95, 0x1b, 0x85, 0xf8, 0xcb, 0x74, 0x57, 0x64, 0x69, 0xd7, 0xc4, + 0x4d, 0x50, 0x74, 0xf2, 0x8f, 0x6e, 0x57, 0xc4, 0xf7, 0xda, 0xb0, 0xb2, 0x74, 0xd2, 0x61, 0xd6, + 0x02, 0xe0, 0x38, 0x4c, 0xe2, 0xca, 0xaa, 0xc6, 0xcf, 0x37, 0xc3, 0x93, 0xb8, 0xea, 0x57, 0xbc, + 0x59, 0x8c, 0x3b, 0xf8, 0x5d, 0x6a, 0x7b, 0xb3, 0xc6, 0x6a, 0x4f, 0xcc, 0xa3, 0x12, 0xe3, 0x9e, + 0xd9, 0xb8, 0x87, 0x15, 0xe3, 0x9e, 0xcd, 0x3c, 0x3f, 0xc6, 0x3d, 0xb3, 0xdc, 0xa3, 0x17, 0xe3, + 0x9e, 0xd9, 0xcc, 0x01, 0xfa, 0xdc, 0xf7, 0xca, 0x03, 0xba, 0xc5, 0x34, 0xbb, 0x17, 0x70, 0x15, + 0x30, 0x64, 0x2c, 0x36, 0xe5, 0x19, 0xbe, 0x02, 0x38, 0x0c, 0x14, 0xd6, 0x89, 0x8d, 0x18, 0x71, + 0xde, 0xc8, 0xf5, 0x13, 0x7e, 0xe0, 0x65, 0xdb, 0x95, 0x63, 0x5e, 0xb0, 0x4c, 0x05, 0x8e, 0x63, + 0x44, 0x8e, 0x52, 0xd6, 0x2b, 0x27, 0x51, 0xd6, 0x67, 0xb2, 0x15, 0xf5, 0x25, 0xba, 0x27, 0x9e, + 0xdc, 0xf8, 0xfe, 0xc5, 0x32, 0xf9, 0xf8, 0x31, 0x33, 0x8c, 0x8b, 0x16, 0x6b, 0x50, 0x0d, 0xd1, + 0xd2, 0x37, 0xb0, 0x75, 0x72, 0x6e, 0xb7, 0xd7, 0x6e, 0x1f, 0xb1, 0x13, 0x76, 0xbf, 0x25, 0x29, + 0x84, 0xba, 0xa0, 0xde, 0x78, 0xdc, 0xc8, 0xa0, 0x81, 0xcc, 0x92, 0xe8, 0xf8, 0x0a, 0x77, 0x58, + 0x5a, 0xbb, 0x96, 0xbe, 0xff, 0xc9, 0xc6, 0xaf, 0xa2, 0x1d, 0x5f, 0xb7, 0xfa, 0x28, 0x20, 0xa3, + 0x14, 0x2a, 0x0f, 0xec, 0x79, 0x48, 0xd5, 0xac, 0x94, 0xf2, 0x00, 0x26, 0x12, 0x6c, 0x5a, 0xf7, + 0x0f, 0x4a, 0x28, 0x84, 0x32, 0x9e, 0x2f, 0xb2, 0x5e, 0xfd, 0x35, 0x02, 0xc7, 0xfb, 0x5f, 0xfd, + 0x65, 0xfe, 0x30, 0x9b, 0x96, 0x8f, 0x6f, 0xac, 0x03, 0xcf, 0xac, 0xfd, 0x5e, 0x5c, 0x98, 0x50, + 0x14, 0xf8, 0x52, 0x57, 0x2b, 0x38, 0x0c, 0xe2, 0x30, 0x2a, 0xf0, 0xc8, 0x66, 0x5f, 0x30, 0x93, + 0xde, 0xa2, 0x6a, 0x9c, 0x09, 0x48, 0x6e, 0xee, 0x5f, 0x2f, 0x93, 0x59, 0x59, 0x1f, 0x55, 0x4b, + 0xd8, 0x2a, 0x1e, 0x95, 0x68, 0x7d, 0xc7, 0x12, 0xad, 0x97, 0x8a, 0xdd, 0x1a, 0x61, 0x8d, 0x1a, + 0x28, 0x52, 0xbf, 0x94, 0x12, 0xa9, 0x97, 0x87, 0x61, 0x9a, 0x6b, 0xcd, 0x9f, 0xb1, 0xe8, 0x1f, + 0xa1, 0x5c, 0xa4, 0x59, 0xdd, 0x19, 0x20, 0x3a, 0xbf, 0x51, 0x4e, 0x75, 0x83, 0x89, 0xcc, 0xaf, + 0x91, 0xb1, 0x7d, 0x2f, 0x6a, 0x89, 0xa3, 0x8b, 0xb7, 0x86, 0xfc, 0x14, 0xd4, 0x7c, 0x88, 0x5a, + 0x5c, 0xf0, 0xbd, 0xac, 0x1e, 0x4d, 0xa0, 0xa0, 0xdc, 0x30, 0x4c, 0x56, 0xa9, 0xf3, 0x26, 0x3e, + 0xaa, 0x10, 0x76, 0x55, 0x94, 0xcd, 0x33, 0xfc, 0x41, 0x05, 0x84, 0x50, 0x0e, 0x8e, 0x5d, 0x1d, + 0x82, 0x41, 0xd0, 0x2f, 0xf9, 0xa4, 0xaa, 0xaa, 0x1e, 0x61, 0xc0, 0xdf, 0x0f, 0x2a, 0xe4, 0x6c, + 0xc6, 0x54, 0x71, 0x7e, 0xcc, 0x1a, 0xb5, 0xcf, 0x0e, 0x3d, 0xd7, 0x3e, 0xe2, 0xb8, 0xfd, 0x18, + 0x53, 0x50, 0x5b, 0x62, 0x6e, 0x9c, 0xa0, 0x7a, 0xaa, 0xc5, 0xa6, 0xab, 0x47, 0x50, 0x7e, 0xf5, + 0x58, 0xed, 0x29, 0x0d, 0x3e, 0x56, 0xa3, 0xda, 0x39, 0xc2, 0x6f, 0xfc, 0x93, 0x63, 0xe4, 0x5c, + 0xd6, 0xcd, 0x34, 0xe7, 0xa7, 0x4a, 0xa9, 0x6c, 0xc6, 0x9f, 0x1f, 0xfe, 0x7a, 0x1b, 0x4f, 0x71, + 0x2c, 0x6e, 0xac, 0x2f, 0xdb, 0xf9, 0x8d, 0x73, 0x47, 0x5b, 0xd4, 0xce, 0x42, 0xa7, 0x23, 0x9e, + 0x98, 0x5a, 0xca, 0x83, 0xb7, 0x4f, 0xd0, 0x14, 0x91, 0xdb, 0x3a, 0x4e, 0x85, 0x4e, 0x4b, 0x70, + 0x7e, 0xe8, 0xb4, 0x6c, 0xc3, 0xd2, 0x1e, 0x66, 0x35, 0x56, 0xfd, 0x1a, 0xe1, 0x14, 0x08, 0x70, + 0x4f, 0x32, 0x5a, 0x3d, 0xc2, 0x69, 0xf0, 0x37, 0x4b, 0x24, 0x75, 0x7c, 0xae, 0xac, 0xe0, 0xd2, + 0x40, 0x2b, 0x98, 0x52, 0x50, 0x5d, 0xc9, 0x4f, 0xa7, 0xd9, 0x05, 0x0a, 0x03, 0x86, 0x51, 0x4f, + 0xac, 0x55, 0x06, 0x3d, 0xb1, 0x86, 0xe6, 0x51, 0xdb, 0x3f, 0xf4, 0xa5, 0x4d, 0xaa, 0x84, 0xf7, + 0x16, 0x02, 0x81, 0xe3, 0xdc, 0xef, 0x54, 0xc8, 0x04, 0x37, 0xfc, 0x46, 0xb8, 0x2d, 0xd7, 0x85, + 0x0d, 0x56, 0xe8, 0x8e, 0x18, 0x6f, 0xcd, 0x32, 0x1a, 0x69, 0x7c, 0x42, 0xa9, 0xbe, 0x69, 0xbb, + 0xcd, 0x59, 0xb6, 0x7a, 0xbf, 0x94, 0x8a, 0x1c, 0x23, 0x9c, 0x87, 0x31, 0x16, 0xfb, 0x84, 0xc4, + 0xec, 0x95, 0x1e, 0xe4, 0x21, 0xf2, 0x74, 0xbd, 0x56, 0xa8, 0x1d, 0x0d, 0x55, 0x8c, 0xb7, 0x46, + 0x27, 0x08, 0x52, 0x08, 0x30, 0x78, 0x2f, 0xbd, 0x41, 0xaa, 0x8a, 0x38, 0x4f, 0x5d, 0x9e, 0x31, + 0xa7, 0xe4, 0x9f, 0x23, 0xf3, 0xa9, 0xba, 0x86, 0xd2, 0xb6, 0xbf, 0x4d, 0x95, 0x89, 0xbe, 0xd7, + 0x21, 0x31, 0xd7, 0xdb, 0xb9, 0x76, 0x86, 0xc5, 0x2f, 0x3e, 0xf0, 0x49, 0x7c, 0x05, 0xfa, 0x39, + 0xf5, 0x0c, 0x2c, 0x64, 0xd6, 0x26, 0x33, 0x0f, 0x96, 0xb3, 0x33, 0x0f, 0xb2, 0xa7, 0x49, 0x78, + 0xdb, 0x4f, 0x43, 0x03, 0xda, 0xb4, 0x35, 0xa0, 0x67, 0x8b, 0x4c, 0x83, 0x01, 0xaa, 0xcf, 0xbf, + 0x29, 0x11, 0x87, 0x13, 0xa4, 0x5f, 0xeb, 0xe2, 0x1e, 0x14, 0x43, 0x67, 0xd7, 0xf3, 0x46, 0x61, + 0xc0, 0xa0, 0x1a, 0x32, 0x13, 0xb3, 0x7a, 0xe5, 0xa6, 0xd8, 0x93, 0xd8, 0x95, 0x02, 0x4f, 0x62, + 0xff, 0x56, 0x85, 0xa4, 0x8f, 0x9a, 0x9d, 0xf7, 0xc8, 0x0c, 0x5e, 0x6b, 0xd9, 0x09, 0xda, 0x41, + 0x12, 0xf8, 0x71, 0x31, 0x37, 0xfe, 0x9a, 0x51, 0x42, 0xf8, 0xe0, 0x0c, 0x08, 0x58, 0x1c, 0x31, + 0x3e, 0xaa, 0x1b, 0x51, 0x4b, 0xa1, 0xed, 0xef, 0x31, 0xbd, 0x43, 0xe5, 0x6d, 0xa8, 0x2b, 0x28, + 0x18, 0x14, 0x19, 0x31, 0x4d, 0x95, 0xd3, 0x88, 0x69, 0x1a, 0x1b, 0x32, 0xa6, 0x69, 0xbc, 0x50, + 0x4c, 0x13, 0x90, 0xf3, 0xd2, 0x75, 0x86, 0xbf, 0xf1, 0x6a, 0x18, 0x4f, 0x35, 0x26, 0x22, 0xd1, + 0x96, 0xf0, 0xba, 0x0f, 0x64, 0x52, 0xc0, 0x80, 0x92, 0x6e, 0x8f, 0x9c, 0x6d, 0xf8, 0x51, 0xc0, + 0x32, 0xc1, 0xb4, 0xf4, 0x0a, 0xfc, 0x0a, 0x5e, 0xaa, 0xb7, 0x17, 0xff, 0x90, 0xb7, 0x76, 0x8c, + 0xfb, 0xf4, 0x72, 0xb1, 0x6b, 0x96, 0xee, 0x5f, 0x2a, 0x93, 0x49, 0x11, 0xd2, 0x31, 0xc2, 0x8d, + 0xe4, 0xba, 0x65, 0xdf, 0xbd, 0x98, 0xb7, 0x72, 0x59, 0x73, 0x06, 0x5a, 0x76, 0x8d, 0x94, 0x65, + 0xf7, 0x52, 0x31, 0x76, 0xc7, 0xdb, 0x74, 0xbf, 0x59, 0xa6, 0xbb, 0xbd, 0x1d, 0xca, 0x32, 0xba, + 0xe1, 0xf8, 0x22, 0x99, 0x8c, 0x45, 0xbc, 0x47, 0xa1, 0x47, 0xc8, 0xd3, 0x9f, 0x54, 0x3f, 0xaf, + 0x2d, 0x22, 0x3c, 0x24, 0xbb, 0xcc, 0x90, 0x92, 0xca, 0x69, 0x84, 0x94, 0xb8, 0xdf, 0x61, 0x22, + 0xd5, 0x1c, 0xc0, 0xd3, 0xd8, 0x13, 0xde, 0xb1, 0xa5, 0xef, 0xcb, 0x85, 0xa6, 0x82, 0x68, 0xdf, + 0x80, 0xbd, 0xe1, 0x5b, 0x25, 0x32, 0x2d, 0x08, 0x4f, 0xa3, 0x07, 0x3f, 0x6c, 0xf7, 0xe0, 0xb9, + 0x42, 0x3d, 0x18, 0xd0, 0xf4, 0xbf, 0x5d, 0x56, 0x4d, 0x2f, 0xf8, 0xce, 0xbf, 0xf9, 0x8a, 0x7f, + 0x79, 0x98, 0x57, 0xfc, 0x59, 0x74, 0x2b, 0xbe, 0xb9, 0xc8, 0xb7, 0xa8, 0xac, 0x37, 0x14, 0x77, + 0xe4, 0x5b, 0xb3, 0x08, 0x13, 0x21, 0xf4, 0xc3, 0xbe, 0xcd, 0xa8, 0x63, 0x7a, 0x15, 0x27, 0x30, + 0xb8, 0xca, 0x70, 0x33, 0x56, 0xc3, 0xb8, 0xed, 0x8b, 0xbc, 0x29, 0xe0, 0xa0, 0x28, 0xdc, 0x37, + 0x98, 0x8c, 0x65, 0xc3, 0x33, 0x5c, 0xa0, 0xee, 0x4f, 0x4f, 0xa8, 0x81, 0x65, 0x4e, 0x92, 0x9b, + 0xf2, 0x5d, 0xff, 0x52, 0x91, 0xa8, 0x04, 0xe3, 0x93, 0x64, 0x3f, 0xeb, 0xef, 0xf8, 0x7d, 0xde, + 0xe7, 0x37, 0x0a, 0xcb, 0xc8, 0x21, 0xfc, 0xcd, 0x2c, 0x97, 0x05, 0xbb, 0xbf, 0xbf, 0x59, 0x4f, + 0xe7, 0x0b, 0x5c, 0x93, 0x08, 0xd0, 0x34, 0xb4, 0x00, 0x57, 0xd7, 0xed, 0x27, 0x2e, 0xa5, 0xba, + 0x2e, 0x87, 0xc4, 0xd0, 0xd7, 0xa9, 0xfe, 0xa2, 0x32, 0x26, 0xd7, 0x79, 0xe2, 0xdb, 0x2a, 0xd7, + 0x5f, 0xd6, 0x35, 0x18, 0x4c, 0x1a, 0xaa, 0xd6, 0x9d, 0x6d, 0xa9, 0xe8, 0xc2, 0x7a, 0x6f, 0xa7, + 0x1d, 0x34, 0xb1, 0x28, 0x8f, 0xec, 0x7f, 0x1c, 0x8f, 0x92, 0x6b, 0xfd, 0x68, 0xc8, 0x2a, 0xe3, + 0x6c, 0x63, 0x04, 0x1f, 0xcb, 0x0c, 0x2d, 0xef, 0x00, 0x89, 0x84, 0x5a, 0x17, 0x64, 0x36, 0xae, + 0x86, 0x8d, 0xfe, 0x90, 0x81, 0xb8, 0x50, 0x10, 0x20, 0x48, 0xb3, 0xc0, 0x03, 0xea, 0xb6, 0xf9, + 0xc2, 0x4b, 0x5d, 0x04, 0x59, 0xaa, 0x03, 0x6a, 0xeb, 0xfd, 0x97, 0x3a, 0xa4, 0xa8, 0xa9, 0xb4, + 0x5f, 0x34, 0x21, 0xe2, 0xda, 0x2f, 0x1e, 0x72, 0xc5, 0x22, 0x25, 0xed, 0x27, 0x30, 0xc4, 0x72, + 0x6b, 0x00, 0x0d, 0x0c, 0x2c, 0x8d, 0x99, 0x23, 0xe5, 0x48, 0x1a, 0x01, 0x97, 0x3a, 0x34, 0xc2, + 0xc0, 0x81, 0x45, 0xf9, 0xd1, 0x0e, 0x08, 0xbe, 0x86, 0x85, 0x8d, 0x4d, 0xd5, 0xf9, 0x2a, 0x99, + 0x31, 0xdb, 0x28, 0xc4, 0xe4, 0x2b, 0xc5, 0x5f, 0xcd, 0x11, 0x9b, 0xb3, 0x6a, 0xb9, 0x89, 0x03, + 0x8b, 0xb7, 0xdb, 0x24, 0xf3, 0xa9, 0x57, 0x3b, 0xd5, 0xf3, 0xaf, 0xa5, 0x87, 0xf5, 0xfc, 0x2b, + 0xa6, 0x86, 0x19, 0xdf, 0xf6, 0x82, 0xfc, 0xdc, 0xeb, 0x45, 0xde, 0x4f, 0x75, 0x5e, 0x27, 0x13, + 0xfe, 0xee, 0x2e, 0x3e, 0xaf, 0xcf, 0xd7, 0xdc, 0x93, 0xea, 0x51, 0x6f, 0x06, 0xc5, 0x95, 0xc4, + 0x2a, 0xe3, 0x3f, 0x41, 0x10, 0xbb, 0xff, 0x8e, 0x5a, 0x57, 0xdb, 0x61, 0x5b, 0x1e, 0x55, 0xe4, + 0xb4, 0x64, 0xb5, 0x2f, 0x0b, 0xfc, 0xf3, 0x19, 0x59, 0xe0, 0x1d, 0xcd, 0x30, 0x23, 0x07, 0xbc, + 0xea, 0x4d, 0xa5, 0x50, 0x6f, 0xc6, 0x86, 0xe9, 0xcd, 0xd7, 0x4b, 0x44, 0x84, 0x20, 0x14, 0xd8, + 0x96, 0x5a, 0x32, 0x73, 0xb3, 0x75, 0xff, 0xfe, 0x42, 0x91, 0x38, 0x7a, 0x71, 0xeb, 0x5e, 0x4d, + 0x25, 0xeb, 0xae, 0xbd, 0xc5, 0x15, 0x4d, 0xef, 0x69, 0x8e, 0xbe, 0x21, 0x5f, 0xbf, 0xcf, 0x69, + 0xd7, 0x50, 0xb9, 0x7d, 0x58, 0x62, 0x63, 0x64, 0xac, 0x52, 0xbc, 0x98, 0x89, 0x8d, 0x25, 0x02, + 0x34, 0x0d, 0x06, 0x10, 0xc4, 0xbd, 0x1d, 0x46, 0x9e, 0x8a, 0x47, 0x68, 0x70, 0x30, 0x48, 0xbc, + 0xfb, 0x3f, 0x17, 0x88, 0xd5, 0x35, 0x2b, 0x9d, 0x4c, 0xe9, 0xa1, 0xa7, 0x93, 0xa1, 0xdc, 0xfd, + 0x83, 0x6e, 0x72, 0x54, 0x0b, 0xa2, 0x62, 0xa9, 0xbd, 0xd6, 0x05, 0x75, 0x3f, 0x77, 0x89, 0x01, + 0xc5, 0x71, 0x40, 0x72, 0xa0, 0xca, 0x23, 0x91, 0x1c, 0x68, 0xec, 0xff, 0x49, 0x72, 0x20, 0x6a, + 0x21, 0xec, 0xf1, 0xe7, 0xc4, 0xc5, 0xbd, 0xa9, 0x9c, 0xe3, 0xab, 0x8c, 0xb7, 0xc7, 0xf9, 0x05, + 0x19, 0x81, 0x00, 0xc9, 0x0e, 0x53, 0xcf, 0x70, 0x63, 0x41, 0xe4, 0xdb, 0x79, 0xa5, 0x88, 0x1b, + 0xa5, 0x3f, 0xf5, 0x8c, 0x08, 0x3a, 0x11, 0xbc, 0x64, 0x32, 0xa0, 0xc9, 0x8f, 0x9e, 0x0c, 0x48, + 0xa5, 0xf0, 0x99, 0x7a, 0x58, 0x29, 0x7c, 0xac, 0x54, 0x48, 0xd5, 0x51, 0xa4, 0x42, 0xa2, 0xb2, + 0xed, 0xb1, 0x6e, 0x56, 0x26, 0x31, 0x91, 0x8c, 0xe7, 0x0b, 0x27, 0xc8, 0xac, 0x66, 0x55, 0xcd, + 0xae, 0xb3, 0x64, 0x92, 0x41, 0x76, 0xc5, 0x32, 0xa7, 0xd2, 0xf4, 0x47, 0xcf, 0xa9, 0x34, 0xea, + 0xac, 0x3d, 0x3a, 0xc3, 0xd2, 0xec, 0x48, 0x32, 0x2c, 0xcd, 0x3d, 0xc4, 0x0c, 0x4b, 0x46, 0x6e, + 0xa4, 0xf9, 0x87, 0x9b, 0x1b, 0x69, 0x9f, 0x4c, 0xb7, 0xc2, 0xfb, 0x9d, 0xfb, 0x5e, 0xd4, 0x5a, + 0xa9, 0x6f, 0x8a, 0x54, 0x3c, 0x39, 0x77, 0xde, 0x6b, 0xba, 0x80, 0x55, 0x03, 0xf7, 0x17, 0x6a, + 0x24, 0x98, 0xac, 0x45, 0x96, 0xa8, 0x33, 0x1f, 0x31, 0x4b, 0x94, 0x95, 0x6b, 0xc9, 0x19, 0x45, + 0xae, 0xa5, 0xf7, 0xd8, 0xcd, 0xd7, 0xdd, 0x60, 0xef, 0x86, 0xd7, 0x5d, 0x3c, 0x5b, 0xa4, 0x86, + 0x35, 0x49, 0xde, 0x5f, 0x83, 0x42, 0x81, 0x66, 0xda, 0x9f, 0xcd, 0xe9, 0xdc, 0x69, 0x67, 0x73, + 0x7a, 0x6c, 0x84, 0xd9, 0x9c, 0xce, 0x8f, 0x22, 0x9b, 0xd3, 0x5f, 0x20, 0x4f, 0x1d, 0xdf, 0x7f, + 0x9d, 0xa0, 0xb3, 0xae, 0x4d, 0xea, 0x54, 0x82, 0x4e, 0xa6, 0x5b, 0x18, 0x54, 0x46, 0xb0, 0x66, + 0xf9, 0xb8, 0x60, 0x4d, 0xf7, 0x9f, 0x96, 0xc8, 0xe3, 0x03, 0x12, 0x3d, 0x14, 0x8e, 0xbe, 0xee, + 0x92, 0xf9, 0xae, 0x5d, 0xb4, 0xf0, 0x3d, 0x09, 0x2b, 0xb1, 0x84, 0x4a, 0xf0, 0x9c, 0x42, 0x40, + 0x9a, 0xfd, 0xea, 0xb3, 0xdf, 0xfd, 0xc1, 0x53, 0x1f, 0xfb, 0x1e, 0xfd, 0xfb, 0x3d, 0xfa, 0xf7, + 0xe3, 0x7f, 0xf4, 0x54, 0xe9, 0xbb, 0xf4, 0xef, 0x7b, 0xf4, 0xef, 0x0f, 0xe9, 0xdf, 0xd7, 0xff, + 0xf8, 0xa9, 0x8f, 0xfd, 0x48, 0xf9, 0xf0, 0xf2, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xf4, 0x77, + 0x02, 0x29, 0xf6, 0xb0, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 734d6d4a49f..32fb099f6d4 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -89,6 +89,27 @@ message AvoidPods { repeated PreferAvoidPodsEntry preferAvoidPods = 1; } +// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +message AzureDiskVolumeSource { + // The Name of the data disk in the blob storage + optional string diskName = 1; + + // The URI the data disk in the blob storage + optional string diskURI = 2; + + // Host Caching mode: None, Read Only, Read Write. + optional string cachingMode = 3; + + // Filesystem type to mount. + // Must be a filesystem type supported by the host operating system. + // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + optional string fsType = 4; + + // Defaults to false (read/write). ReadOnly here will force + // the ReadOnly setting in VolumeMounts. + optional bool readOnly = 5; +} + // AzureFile represents an Azure File Service mount on the host and bind mount to the pod. message AzureFileVolumeSource { // the name of secret that contains Azure Storage Account Name and Key @@ -1757,6 +1778,9 @@ message PersistentVolumeSource { // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime optional QuobyteVolumeSource quobyte = 15; + + // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + optional AzureDiskVolumeSource azureDisk = 16; } // PersistentVolumeSpec is the specification of a persistent volume. @@ -3036,6 +3060,9 @@ message VolumeSource { // Quobyte represents a Quobyte mount on the host that shares a pod's lifetime optional QuobyteVolumeSource quobyte = 21; + + // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + optional AzureDiskVolumeSource azureDisk = 22; } // Represents a vSphere volume resource. diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 899b3b75635..6cd7fc6ba4b 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -1124,7 +1124,7 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep101 := !z.EncBinary() yy2arr101 := z.EncBasicHandle().StructToArray - var yyq101 [22]bool + var yyq101 [23]bool _, _, _ = yysep101, yyq101, yy2arr101 const yyr101 bool = false yyq101[1] = x.VolumeSource.HostPath != nil && x.HostPath != nil @@ -1148,9 +1148,10 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { yyq101[19] = x.VolumeSource.ConfigMap != nil && x.ConfigMap != nil yyq101[20] = x.VolumeSource.VsphereVolume != nil && x.VsphereVolume != nil yyq101[21] = x.VolumeSource.Quobyte != nil && x.Quobyte != nil + yyq101[22] = x.VolumeSource.AzureDisk != nil && x.AzureDisk != nil var yynn101 int if yyr101 || yy2arr101 { - r.EncodeArrayStart(22) + r.EncodeArrayStart(23) } else { yynn101 = 1 for _, b := range yyq101 { @@ -1957,6 +1958,43 @@ func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder) { } } } + var yyn126 bool + if x.VolumeSource.AzureDisk == nil { + yyn126 = true + goto LABEL126 + } + LABEL126: + if yyr101 || yy2arr101 { + if yyn126 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq101[22] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq101[22] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn126 { + r.EncodeNil() + } else { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + } if yyr101 || yy2arr101 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -1970,25 +2008,25 @@ func (x *Volume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym126 := z.DecBinary() - _ = yym126 + yym127 := z.DecBinary() + _ = yym127 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct127 := r.ContainerType() - if yyct127 == codecSelferValueTypeMap1234 { - yyl127 := r.ReadMapStart() - if yyl127 == 0 { + yyct128 := r.ContainerType() + if yyct128 == codecSelferValueTypeMap1234 { + yyl128 := r.ReadMapStart() + if yyl128 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl127, d) + x.codecDecodeSelfFromMap(yyl128, d) } - } else if yyct127 == codecSelferValueTypeArray1234 { - yyl127 := r.ReadArrayStart() - if yyl127 == 0 { + } else if yyct128 == codecSelferValueTypeArray1234 { + yyl128 := r.ReadArrayStart() + if yyl128 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl127, d) + x.codecDecodeSelfFromArray(yyl128, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -2000,12 +2038,12 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys128Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys128Slc - var yyhl128 bool = l >= 0 - for yyj128 := 0; ; yyj128++ { - if yyhl128 { - if yyj128 >= l { + var yys129Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys129Slc + var yyhl129 bool = l >= 0 + for yyj129 := 0; ; yyj129++ { + if yyhl129 { + if yyj129 >= l { break } } else { @@ -2014,10 +2052,10 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys128Slc = r.DecodeBytes(yys128Slc, true, true) - yys128 := string(yys128Slc) + yys129Slc = r.DecodeBytes(yys129Slc, true, true) + yys129 := string(yys129Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys128 { + switch yys129 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -2318,10 +2356,24 @@ func (x *Volume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.Quobyte.CodecDecodeSelf(d) } + case "azureDisk": + if x.VolumeSource.AzureDisk == nil { + x.VolumeSource.AzureDisk = new(AzureDiskVolumeSource) + } + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys128) - } // end switch yys128 - } // end for yyj128 + z.DecStructFieldNotFound(-1, yys129) + } // end switch yys129 + } // end for yyj129 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -2329,16 +2381,16 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj151 int - var yyb151 bool - var yyhl151 bool = l >= 0 - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + var yyj153 int + var yyb153 bool + var yyhl153 bool = l >= 0 + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2351,13 +2403,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.HostPath == nil { x.VolumeSource.HostPath = new(HostPathVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2375,13 +2427,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.EmptyDir == nil { x.VolumeSource.EmptyDir = new(EmptyDirVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2399,13 +2451,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GCEPersistentDisk == nil { x.VolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2423,13 +2475,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AWSElasticBlockStore == nil { x.VolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2447,13 +2499,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.GitRepo == nil { x.VolumeSource.GitRepo = new(GitRepoVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2471,13 +2523,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Secret == nil { x.VolumeSource.Secret = new(SecretVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2495,13 +2547,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.NFS == nil { x.VolumeSource.NFS = new(NFSVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2519,13 +2571,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ISCSI == nil { x.VolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2543,13 +2595,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Glusterfs == nil { x.VolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2567,13 +2619,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.PersistentVolumeClaim == nil { x.VolumeSource.PersistentVolumeClaim = new(PersistentVolumeClaimVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2591,13 +2643,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.RBD == nil { x.VolumeSource.RBD = new(RBDVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2615,13 +2667,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FlexVolume == nil { x.VolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2639,13 +2691,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Cinder == nil { x.VolumeSource.Cinder = new(CinderVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2663,13 +2715,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.CephFS == nil { x.VolumeSource.CephFS = new(CephFSVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2687,13 +2739,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Flocker == nil { x.VolumeSource.Flocker = new(FlockerVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2711,13 +2763,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.DownwardAPI == nil { x.VolumeSource.DownwardAPI = new(DownwardAPIVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2735,13 +2787,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.FC == nil { x.VolumeSource.FC = new(FCVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2759,13 +2811,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.AzureFile == nil { x.VolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2783,13 +2835,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.ConfigMap == nil { x.VolumeSource.ConfigMap = new(ConfigMapVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2807,13 +2859,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.VsphereVolume == nil { x.VolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2831,13 +2883,13 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.VolumeSource.Quobyte == nil { x.VolumeSource.Quobyte = new(QuobyteVolumeSource) } - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l } else { - yyb151 = r.CheckBreak() + yyb153 = r.CheckBreak() } - if yyb151 { + if yyb153 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -2852,18 +2904,42 @@ func (x *Volume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Quobyte.CodecDecodeSelf(d) } - for { - yyj151++ - if yyhl151 { - yyb151 = yyj151 > l - } else { - yyb151 = r.CheckBreak() + if x.VolumeSource.AzureDisk == nil { + x.VolumeSource.AzureDisk = new(AzureDiskVolumeSource) + } + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l + } else { + yyb153 = r.CheckBreak() + } + if yyb153 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil } - if yyb151 { + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + for { + yyj153++ + if yyhl153 { + yyb153 = yyj153 > l + } else { + yyb153 = r.CheckBreak() + } + if yyb153 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj151-1, "") + z.DecStructFieldNotFound(yyj153-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -2875,53 +2951,54 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym174 := z.EncBinary() - _ = yym174 + yym177 := z.EncBinary() + _ = yym177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep175 := !z.EncBinary() - yy2arr175 := z.EncBasicHandle().StructToArray - var yyq175 [21]bool - _, _, _ = yysep175, yyq175, yy2arr175 - const yyr175 bool = false - yyq175[0] = x.HostPath != nil - yyq175[1] = x.EmptyDir != nil - yyq175[2] = x.GCEPersistentDisk != nil - yyq175[3] = x.AWSElasticBlockStore != nil - yyq175[4] = x.GitRepo != nil - yyq175[5] = x.Secret != nil - yyq175[6] = x.NFS != nil - yyq175[7] = x.ISCSI != nil - yyq175[8] = x.Glusterfs != nil - yyq175[9] = x.PersistentVolumeClaim != nil - yyq175[10] = x.RBD != nil - yyq175[11] = x.FlexVolume != nil - yyq175[12] = x.Cinder != nil - yyq175[13] = x.CephFS != nil - yyq175[14] = x.Flocker != nil - yyq175[15] = x.DownwardAPI != nil - yyq175[16] = x.FC != nil - yyq175[17] = x.AzureFile != nil - yyq175[18] = x.ConfigMap != nil - yyq175[19] = x.VsphereVolume != nil - yyq175[20] = x.Quobyte != nil - var yynn175 int - if yyr175 || yy2arr175 { - r.EncodeArrayStart(21) + yysep178 := !z.EncBinary() + yy2arr178 := z.EncBasicHandle().StructToArray + var yyq178 [22]bool + _, _, _ = yysep178, yyq178, yy2arr178 + const yyr178 bool = false + yyq178[0] = x.HostPath != nil + yyq178[1] = x.EmptyDir != nil + yyq178[2] = x.GCEPersistentDisk != nil + yyq178[3] = x.AWSElasticBlockStore != nil + yyq178[4] = x.GitRepo != nil + yyq178[5] = x.Secret != nil + yyq178[6] = x.NFS != nil + yyq178[7] = x.ISCSI != nil + yyq178[8] = x.Glusterfs != nil + yyq178[9] = x.PersistentVolumeClaim != nil + yyq178[10] = x.RBD != nil + yyq178[11] = x.FlexVolume != nil + yyq178[12] = x.Cinder != nil + yyq178[13] = x.CephFS != nil + yyq178[14] = x.Flocker != nil + yyq178[15] = x.DownwardAPI != nil + yyq178[16] = x.FC != nil + yyq178[17] = x.AzureFile != nil + yyq178[18] = x.ConfigMap != nil + yyq178[19] = x.VsphereVolume != nil + yyq178[20] = x.Quobyte != nil + yyq178[21] = x.AzureDisk != nil + var yynn178 int + if yyr178 || yy2arr178 { + r.EncodeArrayStart(22) } else { - yynn175 = 0 - for _, b := range yyq175 { + yynn178 = 0 + for _, b := range yyq178 { if b { - yynn175++ + yynn178++ } } - r.EncodeMapStart(yynn175) - yynn175 = 0 + r.EncodeMapStart(yynn178) + yynn178 = 0 } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[0] { + if yyq178[0] { if x.HostPath == nil { r.EncodeNil() } else { @@ -2931,7 +3008,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[0] { + if yyq178[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2942,9 +3019,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[1] { + if yyq178[1] { if x.EmptyDir == nil { r.EncodeNil() } else { @@ -2954,7 +3031,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[1] { + if yyq178[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("emptyDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2965,9 +3042,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[2] { + if yyq178[2] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -2977,7 +3054,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[2] { + if yyq178[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -2988,9 +3065,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[3] { + if yyq178[3] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -3000,7 +3077,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[3] { + if yyq178[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3011,9 +3088,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[4] { + if yyq178[4] { if x.GitRepo == nil { r.EncodeNil() } else { @@ -3023,7 +3100,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[4] { + if yyq178[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gitRepo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3034,9 +3111,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[5] { + if yyq178[5] { if x.Secret == nil { r.EncodeNil() } else { @@ -3046,7 +3123,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[5] { + if yyq178[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secret")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3057,9 +3134,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[6] { + if yyq178[6] { if x.NFS == nil { r.EncodeNil() } else { @@ -3069,7 +3146,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[6] { + if yyq178[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3080,9 +3157,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[7] { + if yyq178[7] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -3092,7 +3169,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[7] { + if yyq178[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3103,9 +3180,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[8] { + if yyq178[8] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -3115,7 +3192,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[8] { + if yyq178[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3126,9 +3203,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[9] { + if yyq178[9] { if x.PersistentVolumeClaim == nil { r.EncodeNil() } else { @@ -3138,7 +3215,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[9] { + if yyq178[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeClaim")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3149,9 +3226,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[10] { + if yyq178[10] { if x.RBD == nil { r.EncodeNil() } else { @@ -3161,7 +3238,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[10] { + if yyq178[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3172,9 +3249,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[11] { + if yyq178[11] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -3184,7 +3261,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[11] { + if yyq178[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3195,9 +3272,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[12] { + if yyq178[12] { if x.Cinder == nil { r.EncodeNil() } else { @@ -3207,7 +3284,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[12] { + if yyq178[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3218,9 +3295,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[13] { + if yyq178[13] { if x.CephFS == nil { r.EncodeNil() } else { @@ -3230,7 +3307,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[13] { + if yyq178[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3241,9 +3318,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[14] { + if yyq178[14] { if x.Flocker == nil { r.EncodeNil() } else { @@ -3253,7 +3330,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[14] { + if yyq178[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3264,9 +3341,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[15] { + if yyq178[15] { if x.DownwardAPI == nil { r.EncodeNil() } else { @@ -3276,7 +3353,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[15] { + if yyq178[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("downwardAPI")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3287,9 +3364,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[16] { + if yyq178[16] { if x.FC == nil { r.EncodeNil() } else { @@ -3299,7 +3376,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[16] { + if yyq178[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3310,9 +3387,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[17] { + if yyq178[17] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -3322,7 +3399,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[17] { + if yyq178[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3333,9 +3410,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[18] { + if yyq178[18] { if x.ConfigMap == nil { r.EncodeNil() } else { @@ -3345,7 +3422,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[18] { + if yyq178[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMap")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3356,9 +3433,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[19] { + if yyq178[19] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -3368,7 +3445,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[19] { + if yyq178[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3379,9 +3456,9 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq175[20] { + if yyq178[20] { if x.Quobyte == nil { r.EncodeNil() } else { @@ -3391,7 +3468,7 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq175[20] { + if yyq178[20] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("quobyte")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -3402,7 +3479,30 @@ func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr175 || yy2arr175 { + if yyr178 || yy2arr178 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq178[21] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq178[21] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + if yyr178 || yy2arr178 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -3415,25 +3515,25 @@ func (x *VolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym197 := z.DecBinary() - _ = yym197 + yym201 := z.DecBinary() + _ = yym201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct198 := r.ContainerType() - if yyct198 == codecSelferValueTypeMap1234 { - yyl198 := r.ReadMapStart() - if yyl198 == 0 { + yyct202 := r.ContainerType() + if yyct202 == codecSelferValueTypeMap1234 { + yyl202 := r.ReadMapStart() + if yyl202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl198, d) + x.codecDecodeSelfFromMap(yyl202, d) } - } else if yyct198 == codecSelferValueTypeArray1234 { - yyl198 := r.ReadArrayStart() - if yyl198 == 0 { + } else if yyct202 == codecSelferValueTypeArray1234 { + yyl202 := r.ReadArrayStart() + if yyl202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl198, d) + x.codecDecodeSelfFromArray(yyl202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -3445,12 +3545,12 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys199Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys199Slc - var yyhl199 bool = l >= 0 - for yyj199 := 0; ; yyj199++ { - if yyhl199 { - if yyj199 >= l { + var yys203Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys203Slc + var yyhl203 bool = l >= 0 + for yyj203 := 0; ; yyj203++ { + if yyhl203 { + if yyj203 >= l { break } } else { @@ -3459,10 +3559,10 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys199Slc = r.DecodeBytes(yys199Slc, true, true) - yys199 := string(yys199Slc) + yys203Slc = r.DecodeBytes(yys203Slc, true, true) + yys203 := string(yys203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys199 { + switch yys203 { case "hostPath": if r.TryDecodeAsNil() { if x.HostPath != nil { @@ -3694,10 +3794,21 @@ func (x *VolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.Quobyte.CodecDecodeSelf(d) } + case "azureDisk": + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys199) - } // end switch yys199 - } // end for yyj199 + z.DecStructFieldNotFound(-1, yys203) + } // end switch yys203 + } // end for yyj203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -3705,16 +3816,16 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj221 int - var yyb221 bool - var yyhl221 bool = l >= 0 - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + var yyj226 int + var yyb226 bool + var yyhl226 bool = l >= 0 + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3729,13 +3840,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HostPath.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3750,13 +3861,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.EmptyDir.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3771,13 +3882,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3792,13 +3903,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3813,13 +3924,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.GitRepo.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3834,13 +3945,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Secret.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3855,13 +3966,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NFS.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3876,13 +3987,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ISCSI.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3897,13 +4008,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Glusterfs.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3918,13 +4029,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PersistentVolumeClaim.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3939,13 +4050,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RBD.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3960,13 +4071,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FlexVolume.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -3981,13 +4092,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Cinder.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4002,13 +4113,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.CephFS.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4023,13 +4134,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Flocker.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4044,13 +4155,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.DownwardAPI.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4065,13 +4176,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FC.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4086,13 +4197,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.AzureFile.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4107,13 +4218,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMap.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4128,13 +4239,13 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.VsphereVolume.CodecDecodeSelf(d) } - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l } else { - yyb221 = r.CheckBreak() + yyb226 = r.CheckBreak() } - if yyb221 { + if yyb226 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4149,18 +4260,39 @@ func (x *VolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Quobyte.CodecDecodeSelf(d) } - for { - yyj221++ - if yyhl221 { - yyb221 = yyj221 > l - } else { - yyb221 = r.CheckBreak() + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l + } else { + yyb226 = r.CheckBreak() + } + if yyb226 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil } - if yyb221 { + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + for { + yyj226++ + if yyhl226 { + yyb226 = yyj226 > l + } else { + yyb226 = r.CheckBreak() + } + if yyb226 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj221-1, "") + z.DecStructFieldNotFound(yyj226-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -4172,34 +4304,34 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym243 := z.EncBinary() - _ = yym243 + yym249 := z.EncBinary() + _ = yym249 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep244 := !z.EncBinary() - yy2arr244 := z.EncBasicHandle().StructToArray - var yyq244 [2]bool - _, _, _ = yysep244, yyq244, yy2arr244 - const yyr244 bool = false - yyq244[1] = x.ReadOnly != false - var yynn244 int - if yyr244 || yy2arr244 { + yysep250 := !z.EncBinary() + yy2arr250 := z.EncBasicHandle().StructToArray + var yyq250 [2]bool + _, _, _ = yysep250, yyq250, yy2arr250 + const yyr250 bool = false + yyq250[1] = x.ReadOnly != false + var yynn250 int + if yyr250 || yy2arr250 { r.EncodeArrayStart(2) } else { - yynn244 = 1 - for _, b := range yyq244 { + yynn250 = 1 + for _, b := range yyq250 { if b { - yynn244++ + yynn250++ } } - r.EncodeMapStart(yynn244) - yynn244 = 0 + r.EncodeMapStart(yynn250) + yynn250 = 0 } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym246 := z.EncBinary() - _ = yym246 + yym252 := z.EncBinary() + _ = yym252 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) @@ -4208,18 +4340,18 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym247 := z.EncBinary() - _ = yym247 + yym253 := z.EncBinary() + _ = yym253 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClaimName)) } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq244[1] { - yym249 := z.EncBinary() - _ = yym249 + if yyq250[1] { + yym255 := z.EncBinary() + _ = yym255 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -4228,19 +4360,19 @@ func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder r.EncodeBool(false) } } else { - if yyq244[1] { + if yyq250[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym250 := z.EncBinary() - _ = yym250 + yym256 := z.EncBinary() + _ = yym256 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr244 || yy2arr244 { + if yyr250 || yy2arr250 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4253,25 +4385,25 @@ func (x *PersistentVolumeClaimVolumeSource) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym251 := z.DecBinary() - _ = yym251 + yym257 := z.DecBinary() + _ = yym257 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct252 := r.ContainerType() - if yyct252 == codecSelferValueTypeMap1234 { - yyl252 := r.ReadMapStart() - if yyl252 == 0 { + yyct258 := r.ContainerType() + if yyct258 == codecSelferValueTypeMap1234 { + yyl258 := r.ReadMapStart() + if yyl258 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl252, d) + x.codecDecodeSelfFromMap(yyl258, d) } - } else if yyct252 == codecSelferValueTypeArray1234 { - yyl252 := r.ReadArrayStart() - if yyl252 == 0 { + } else if yyct258 == codecSelferValueTypeArray1234 { + yyl258 := r.ReadArrayStart() + if yyl258 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl252, d) + x.codecDecodeSelfFromArray(yyl258, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -4283,12 +4415,12 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys253Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys253Slc - var yyhl253 bool = l >= 0 - for yyj253 := 0; ; yyj253++ { - if yyhl253 { - if yyj253 >= l { + var yys259Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys259Slc + var yyhl259 bool = l >= 0 + for yyj259 := 0; ; yyj259++ { + if yyhl259 { + if yyj259 >= l { break } } else { @@ -4297,10 +4429,10 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys253Slc = r.DecodeBytes(yys253Slc, true, true) - yys253 := string(yys253Slc) + yys259Slc = r.DecodeBytes(yys259Slc, true, true) + yys259 := string(yys259Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys253 { + switch yys259 { case "claimName": if r.TryDecodeAsNil() { x.ClaimName = "" @@ -4314,9 +4446,9 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromMap(l int, d *cod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys253) - } // end switch yys253 - } // end for yyj253 + z.DecStructFieldNotFound(-1, yys259) + } // end switch yys259 + } // end for yyj259 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -4324,16 +4456,16 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj256 int - var yyb256 bool - var yyhl256 bool = l >= 0 - yyj256++ - if yyhl256 { - yyb256 = yyj256 > l + var yyj262 int + var yyb262 bool + var yyhl262 bool = l >= 0 + yyj262++ + if yyhl262 { + yyb262 = yyj262 > l } else { - yyb256 = r.CheckBreak() + yyb262 = r.CheckBreak() } - if yyb256 { + if yyb262 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4343,13 +4475,13 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c } else { x.ClaimName = string(r.DecodeString()) } - yyj256++ - if yyhl256 { - yyb256 = yyj256 > l + yyj262++ + if yyhl262 { + yyb262 = yyj262 > l } else { - yyb256 = r.CheckBreak() + yyb262 = r.CheckBreak() } - if yyb256 { + if yyb262 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -4360,17 +4492,17 @@ func (x *PersistentVolumeClaimVolumeSource) codecDecodeSelfFromArray(l int, d *c x.ReadOnly = bool(r.DecodeBool()) } for { - yyj256++ - if yyhl256 { - yyb256 = yyj256 > l + yyj262++ + if yyhl262 { + yyb262 = yyj262 > l } else { - yyb256 = r.CheckBreak() + yyb262 = r.CheckBreak() } - if yyb256 { + if yyb262 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj256-1, "") + z.DecStructFieldNotFound(yyj262-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -4382,47 +4514,48 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym259 := z.EncBinary() - _ = yym259 + yym265 := z.EncBinary() + _ = yym265 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep260 := !z.EncBinary() - yy2arr260 := z.EncBasicHandle().StructToArray - var yyq260 [15]bool - _, _, _ = yysep260, yyq260, yy2arr260 - const yyr260 bool = false - yyq260[0] = x.GCEPersistentDisk != nil - yyq260[1] = x.AWSElasticBlockStore != nil - yyq260[2] = x.HostPath != nil - yyq260[3] = x.Glusterfs != nil - yyq260[4] = x.NFS != nil - yyq260[5] = x.RBD != nil - yyq260[6] = x.ISCSI != nil - yyq260[7] = x.Cinder != nil - yyq260[8] = x.CephFS != nil - yyq260[9] = x.FC != nil - yyq260[10] = x.Flocker != nil - yyq260[11] = x.FlexVolume != nil - yyq260[12] = x.AzureFile != nil - yyq260[13] = x.VsphereVolume != nil - yyq260[14] = x.Quobyte != nil - var yynn260 int - if yyr260 || yy2arr260 { - r.EncodeArrayStart(15) + yysep266 := !z.EncBinary() + yy2arr266 := z.EncBasicHandle().StructToArray + var yyq266 [16]bool + _, _, _ = yysep266, yyq266, yy2arr266 + const yyr266 bool = false + yyq266[0] = x.GCEPersistentDisk != nil + yyq266[1] = x.AWSElasticBlockStore != nil + yyq266[2] = x.HostPath != nil + yyq266[3] = x.Glusterfs != nil + yyq266[4] = x.NFS != nil + yyq266[5] = x.RBD != nil + yyq266[6] = x.ISCSI != nil + yyq266[7] = x.Cinder != nil + yyq266[8] = x.CephFS != nil + yyq266[9] = x.FC != nil + yyq266[10] = x.Flocker != nil + yyq266[11] = x.FlexVolume != nil + yyq266[12] = x.AzureFile != nil + yyq266[13] = x.VsphereVolume != nil + yyq266[14] = x.Quobyte != nil + yyq266[15] = x.AzureDisk != nil + var yynn266 int + if yyr266 || yy2arr266 { + r.EncodeArrayStart(16) } else { - yynn260 = 0 - for _, b := range yyq260 { + yynn266 = 0 + for _, b := range yyq266 { if b { - yynn260++ + yynn266++ } } - r.EncodeMapStart(yynn260) - yynn260 = 0 + r.EncodeMapStart(yynn266) + yynn266 = 0 } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[0] { + if yyq266[0] { if x.GCEPersistentDisk == nil { r.EncodeNil() } else { @@ -4432,7 +4565,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[0] { + if yyq266[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4443,9 +4576,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[1] { + if yyq266[1] { if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { @@ -4455,7 +4588,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[1] { + if yyq266[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4466,9 +4599,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[2] { + if yyq266[2] { if x.HostPath == nil { r.EncodeNil() } else { @@ -4478,7 +4611,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[2] { + if yyq266[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4489,9 +4622,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[3] { + if yyq266[3] { if x.Glusterfs == nil { r.EncodeNil() } else { @@ -4501,7 +4634,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[3] { + if yyq266[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4512,9 +4645,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[4] { + if yyq266[4] { if x.NFS == nil { r.EncodeNil() } else { @@ -4524,7 +4657,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[4] { + if yyq266[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4535,9 +4668,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[5] { + if yyq266[5] { if x.RBD == nil { r.EncodeNil() } else { @@ -4547,7 +4680,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[5] { + if yyq266[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rbd")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4558,9 +4691,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[6] { + if yyq266[6] { if x.ISCSI == nil { r.EncodeNil() } else { @@ -4570,7 +4703,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[6] { + if yyq266[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsi")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4581,9 +4714,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[7] { + if yyq266[7] { if x.Cinder == nil { r.EncodeNil() } else { @@ -4593,7 +4726,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[7] { + if yyq266[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cinder")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4604,9 +4737,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[8] { + if yyq266[8] { if x.CephFS == nil { r.EncodeNil() } else { @@ -4616,7 +4749,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[8] { + if yyq266[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("cephfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4627,9 +4760,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[9] { + if yyq266[9] { if x.FC == nil { r.EncodeNil() } else { @@ -4639,7 +4772,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[9] { + if yyq266[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fc")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4650,9 +4783,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[10] { + if yyq266[10] { if x.Flocker == nil { r.EncodeNil() } else { @@ -4662,7 +4795,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[10] { + if yyq266[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flocker")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4673,9 +4806,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[11] { + if yyq266[11] { if x.FlexVolume == nil { r.EncodeNil() } else { @@ -4685,7 +4818,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[11] { + if yyq266[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4696,9 +4829,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[12] { + if yyq266[12] { if x.AzureFile == nil { r.EncodeNil() } else { @@ -4708,7 +4841,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[12] { + if yyq266[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("azureFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4719,9 +4852,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[13] { + if yyq266[13] { if x.VsphereVolume == nil { r.EncodeNil() } else { @@ -4731,7 +4864,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[13] { + if yyq266[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4742,9 +4875,9 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq260[14] { + if yyq266[14] { if x.Quobyte == nil { r.EncodeNil() } else { @@ -4754,7 +4887,7 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq260[14] { + if yyq266[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("quobyte")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -4765,7 +4898,30 @@ func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr260 || yy2arr260 { + if yyr266 || yy2arr266 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq266[15] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq266[15] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + if yyr266 || yy2arr266 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -4778,25 +4934,25 @@ func (x *PersistentVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym276 := z.DecBinary() - _ = yym276 + yym283 := z.DecBinary() + _ = yym283 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct277 := r.ContainerType() - if yyct277 == codecSelferValueTypeMap1234 { - yyl277 := r.ReadMapStart() - if yyl277 == 0 { + yyct284 := r.ContainerType() + if yyct284 == codecSelferValueTypeMap1234 { + yyl284 := r.ReadMapStart() + if yyl284 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl277, d) + x.codecDecodeSelfFromMap(yyl284, d) } - } else if yyct277 == codecSelferValueTypeArray1234 { - yyl277 := r.ReadArrayStart() - if yyl277 == 0 { + } else if yyct284 == codecSelferValueTypeArray1234 { + yyl284 := r.ReadArrayStart() + if yyl284 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl277, d) + x.codecDecodeSelfFromArray(yyl284, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -4808,12 +4964,12 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys278Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys278Slc - var yyhl278 bool = l >= 0 - for yyj278 := 0; ; yyj278++ { - if yyhl278 { - if yyj278 >= l { + var yys285Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys285Slc + var yyhl285 bool = l >= 0 + for yyj285 := 0; ; yyj285++ { + if yyhl285 { + if yyj285 >= l { break } } else { @@ -4822,10 +4978,10 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys278Slc = r.DecodeBytes(yys278Slc, true, true) - yys278 := string(yys278Slc) + yys285Slc = r.DecodeBytes(yys285Slc, true, true) + yys285 := string(yys285Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys278 { + switch yys285 { case "gcePersistentDisk": if r.TryDecodeAsNil() { if x.GCEPersistentDisk != nil { @@ -4991,10 +5147,21 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Deco } x.Quobyte.CodecDecodeSelf(d) } + case "azureDisk": + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys278) - } // end switch yys278 - } // end for yyj278 + z.DecStructFieldNotFound(-1, yys285) + } // end switch yys285 + } // end for yyj285 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5002,16 +5169,16 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj294 int - var yyb294 bool - var yyhl294 bool = l >= 0 - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + var yyj302 int + var yyb302 bool + var yyhl302 bool = l >= 0 + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5026,13 +5193,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.GCEPersistentDisk.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5047,13 +5214,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AWSElasticBlockStore.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5068,13 +5235,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.HostPath.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5089,13 +5256,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Glusterfs.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5110,13 +5277,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.NFS.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5131,13 +5298,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.RBD.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5152,13 +5319,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.ISCSI.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5173,13 +5340,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Cinder.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5194,13 +5361,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.CephFS.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5215,13 +5382,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FC.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5236,13 +5403,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Flocker.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5257,13 +5424,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.FlexVolume.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5278,13 +5445,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.AzureFile.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5299,13 +5466,13 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.VsphereVolume.CodecDecodeSelf(d) } - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l } else { - yyb294 = r.CheckBreak() + yyb302 = r.CheckBreak() } - if yyb294 { + if yyb302 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5320,18 +5487,39 @@ func (x *PersistentVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.De } x.Quobyte.CodecDecodeSelf(d) } - for { - yyj294++ - if yyhl294 { - yyb294 = yyj294 > l - } else { - yyb294 = r.CheckBreak() + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l + } else { + yyb302 = r.CheckBreak() + } + if yyb302 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil } - if yyb294 { + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + for { + yyj302++ + if yyhl302 { + yyb302 = yyj302 > l + } else { + yyb302 = r.CheckBreak() + } + if yyb302 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj294-1, "") + z.DecStructFieldNotFound(yyj302-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5343,39 +5531,39 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym310 := z.EncBinary() - _ = yym310 + yym319 := z.EncBinary() + _ = yym319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep311 := !z.EncBinary() - yy2arr311 := z.EncBasicHandle().StructToArray - var yyq311 [5]bool - _, _, _ = yysep311, yyq311, yy2arr311 - const yyr311 bool = false - yyq311[0] = x.Kind != "" - yyq311[1] = x.APIVersion != "" - yyq311[2] = true - yyq311[3] = true - yyq311[4] = true - var yynn311 int - if yyr311 || yy2arr311 { + yysep320 := !z.EncBinary() + yy2arr320 := z.EncBasicHandle().StructToArray + var yyq320 [5]bool + _, _, _ = yysep320, yyq320, yy2arr320 + const yyr320 bool = false + yyq320[0] = x.Kind != "" + yyq320[1] = x.APIVersion != "" + yyq320[2] = true + yyq320[3] = true + yyq320[4] = true + var yynn320 int + if yyr320 || yy2arr320 { r.EncodeArrayStart(5) } else { - yynn311 = 0 - for _, b := range yyq311 { + yynn320 = 0 + for _, b := range yyq320 { if b { - yynn311++ + yynn320++ } } - r.EncodeMapStart(yynn311) - yynn311 = 0 + r.EncodeMapStart(yynn320) + yynn320 = 0 } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[0] { - yym313 := z.EncBinary() - _ = yym313 + if yyq320[0] { + yym322 := z.EncBinary() + _ = yym322 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -5384,23 +5572,23 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq311[0] { + if yyq320[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym314 := z.EncBinary() - _ = yym314 + yym323 := z.EncBinary() + _ = yym323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[1] { - yym316 := z.EncBinary() - _ = yym316 + if yyq320[1] { + yym325 := z.EncBinary() + _ = yym325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -5409,70 +5597,70 @@ func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq311[1] { + if yyq320[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym317 := z.EncBinary() - _ = yym317 + yym326 := z.EncBinary() + _ = yym326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[2] { - yy319 := &x.ObjectMeta - yy319.CodecEncodeSelf(e) + if yyq320[2] { + yy328 := &x.ObjectMeta + yy328.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq311[2] { + if yyq320[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy320 := &x.ObjectMeta - yy320.CodecEncodeSelf(e) + yy329 := &x.ObjectMeta + yy329.CodecEncodeSelf(e) } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[3] { - yy322 := &x.Spec - yy322.CodecEncodeSelf(e) + if yyq320[3] { + yy331 := &x.Spec + yy331.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq311[3] { + if yyq320[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy323 := &x.Spec - yy323.CodecEncodeSelf(e) + yy332 := &x.Spec + yy332.CodecEncodeSelf(e) } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq311[4] { - yy325 := &x.Status - yy325.CodecEncodeSelf(e) + if yyq320[4] { + yy334 := &x.Status + yy334.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq311[4] { + if yyq320[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy326 := &x.Status - yy326.CodecEncodeSelf(e) + yy335 := &x.Status + yy335.CodecEncodeSelf(e) } } - if yyr311 || yy2arr311 { + if yyr320 || yy2arr320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -5485,25 +5673,25 @@ func (x *PersistentVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym327 := z.DecBinary() - _ = yym327 + yym336 := z.DecBinary() + _ = yym336 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct328 := r.ContainerType() - if yyct328 == codecSelferValueTypeMap1234 { - yyl328 := r.ReadMapStart() - if yyl328 == 0 { + yyct337 := r.ContainerType() + if yyct337 == codecSelferValueTypeMap1234 { + yyl337 := r.ReadMapStart() + if yyl337 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl328, d) + x.codecDecodeSelfFromMap(yyl337, d) } - } else if yyct328 == codecSelferValueTypeArray1234 { - yyl328 := r.ReadArrayStart() - if yyl328 == 0 { + } else if yyct337 == codecSelferValueTypeArray1234 { + yyl337 := r.ReadArrayStart() + if yyl337 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl328, d) + x.codecDecodeSelfFromArray(yyl337, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -5515,12 +5703,12 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys329Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys329Slc - var yyhl329 bool = l >= 0 - for yyj329 := 0; ; yyj329++ { - if yyhl329 { - if yyj329 >= l { + var yys338Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys338Slc + var yyhl338 bool = l >= 0 + for yyj338 := 0; ; yyj338++ { + if yyhl338 { + if yyj338 >= l { break } } else { @@ -5529,10 +5717,10 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys329Slc = r.DecodeBytes(yys329Slc, true, true) - yys329 := string(yys329Slc) + yys338Slc = r.DecodeBytes(yys338Slc, true, true) + yys338 := string(yys338Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys329 { + switch yys338 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -5549,27 +5737,27 @@ func (x *PersistentVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv332 := &x.ObjectMeta - yyv332.CodecDecodeSelf(d) + yyv341 := &x.ObjectMeta + yyv341.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv333 := &x.Spec - yyv333.CodecDecodeSelf(d) + yyv342 := &x.Spec + yyv342.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv334 := &x.Status - yyv334.CodecDecodeSelf(d) + yyv343 := &x.Status + yyv343.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys329) - } // end switch yys329 - } // end for yyj329 + z.DecStructFieldNotFound(-1, yys338) + } // end switch yys338 + } // end for yyj338 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -5577,16 +5765,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj335 int - var yyb335 bool - var yyhl335 bool = l >= 0 - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + var yyj344 int + var yyb344 bool + var yyhl344 bool = l >= 0 + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5596,13 +5784,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5612,13 +5800,13 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5626,16 +5814,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv338 := &x.ObjectMeta - yyv338.CodecDecodeSelf(d) + yyv347 := &x.ObjectMeta + yyv347.CodecDecodeSelf(d) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5643,16 +5831,16 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PersistentVolumeSpec{} } else { - yyv339 := &x.Spec - yyv339.CodecDecodeSelf(d) + yyv348 := &x.Spec + yyv348.CodecDecodeSelf(d) } - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -5660,21 +5848,21 @@ func (x *PersistentVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PersistentVolumeStatus{} } else { - yyv340 := &x.Status - yyv340.CodecDecodeSelf(d) + yyv349 := &x.Status + yyv349.CodecDecodeSelf(d) } for { - yyj335++ - if yyhl335 { - yyb335 = yyj335 > l + yyj344++ + if yyhl344 { + yyb344 = yyj344 > l } else { - yyb335 = r.CheckBreak() + yyb344 = r.CheckBreak() } - if yyb335 { + if yyb344 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj335-1, "") + z.DecStructFieldNotFound(yyj344-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -5686,51 +5874,52 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym341 := z.EncBinary() - _ = yym341 + yym350 := z.EncBinary() + _ = yym350 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep342 := !z.EncBinary() - yy2arr342 := z.EncBasicHandle().StructToArray - var yyq342 [19]bool - _, _, _ = yysep342, yyq342, yy2arr342 - const yyr342 bool = false - yyq342[0] = len(x.Capacity) != 0 - yyq342[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil - yyq342[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil - yyq342[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil - yyq342[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil - yyq342[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil - yyq342[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil - yyq342[7] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil - yyq342[8] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil - yyq342[9] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil - yyq342[10] = x.PersistentVolumeSource.FC != nil && x.FC != nil - yyq342[11] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil - yyq342[12] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil - yyq342[13] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil - yyq342[14] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil - yyq342[15] = x.PersistentVolumeSource.Quobyte != nil && x.Quobyte != nil - yyq342[16] = len(x.AccessModes) != 0 - yyq342[17] = x.ClaimRef != nil - yyq342[18] = x.PersistentVolumeReclaimPolicy != "" - var yynn342 int - if yyr342 || yy2arr342 { - r.EncodeArrayStart(19) + yysep351 := !z.EncBinary() + yy2arr351 := z.EncBasicHandle().StructToArray + var yyq351 [20]bool + _, _, _ = yysep351, yyq351, yy2arr351 + const yyr351 bool = false + yyq351[0] = len(x.Capacity) != 0 + yyq351[1] = x.PersistentVolumeSource.GCEPersistentDisk != nil && x.GCEPersistentDisk != nil + yyq351[2] = x.PersistentVolumeSource.AWSElasticBlockStore != nil && x.AWSElasticBlockStore != nil + yyq351[3] = x.PersistentVolumeSource.HostPath != nil && x.HostPath != nil + yyq351[4] = x.PersistentVolumeSource.Glusterfs != nil && x.Glusterfs != nil + yyq351[5] = x.PersistentVolumeSource.NFS != nil && x.NFS != nil + yyq351[6] = x.PersistentVolumeSource.RBD != nil && x.RBD != nil + yyq351[7] = x.PersistentVolumeSource.ISCSI != nil && x.ISCSI != nil + yyq351[8] = x.PersistentVolumeSource.Cinder != nil && x.Cinder != nil + yyq351[9] = x.PersistentVolumeSource.CephFS != nil && x.CephFS != nil + yyq351[10] = x.PersistentVolumeSource.FC != nil && x.FC != nil + yyq351[11] = x.PersistentVolumeSource.Flocker != nil && x.Flocker != nil + yyq351[12] = x.PersistentVolumeSource.FlexVolume != nil && x.FlexVolume != nil + yyq351[13] = x.PersistentVolumeSource.AzureFile != nil && x.AzureFile != nil + yyq351[14] = x.PersistentVolumeSource.VsphereVolume != nil && x.VsphereVolume != nil + yyq351[15] = x.PersistentVolumeSource.Quobyte != nil && x.Quobyte != nil + yyq351[16] = x.PersistentVolumeSource.AzureDisk != nil && x.AzureDisk != nil + yyq351[17] = len(x.AccessModes) != 0 + yyq351[18] = x.ClaimRef != nil + yyq351[19] = x.PersistentVolumeReclaimPolicy != "" + var yynn351 int + if yyr351 || yy2arr351 { + r.EncodeArrayStart(20) } else { - yynn342 = 0 - for _, b := range yyq342 { + yynn351 = 0 + for _, b := range yyq351 { if b { - yynn342++ + yynn351++ } } - r.EncodeMapStart(yynn342) - yynn342 = 0 + r.EncodeMapStart(yynn351) + yynn351 = 0 } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[0] { + if yyq351[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -5740,7 +5929,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq342[0] { + if yyq351[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -5751,536 +5940,536 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn344 bool - if x.PersistentVolumeSource.GCEPersistentDisk == nil { - yyn344 = true - goto LABEL344 - } - LABEL344: - if yyr342 || yy2arr342 { - if yyn344 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[1] { - if x.GCEPersistentDisk == nil { - r.EncodeNil() - } else { - x.GCEPersistentDisk.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn344 { - r.EncodeNil() - } else { - if x.GCEPersistentDisk == nil { - r.EncodeNil() - } else { - x.GCEPersistentDisk.CodecEncodeSelf(e) - } - } - } - } - var yyn345 bool - if x.PersistentVolumeSource.AWSElasticBlockStore == nil { - yyn345 = true - goto LABEL345 - } - LABEL345: - if yyr342 || yy2arr342 { - if yyn345 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[2] { - if x.AWSElasticBlockStore == nil { - r.EncodeNil() - } else { - x.AWSElasticBlockStore.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn345 { - r.EncodeNil() - } else { - if x.AWSElasticBlockStore == nil { - r.EncodeNil() - } else { - x.AWSElasticBlockStore.CodecEncodeSelf(e) - } - } - } - } - var yyn346 bool - if x.PersistentVolumeSource.HostPath == nil { - yyn346 = true - goto LABEL346 - } - LABEL346: - if yyr342 || yy2arr342 { - if yyn346 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[3] { - if x.HostPath == nil { - r.EncodeNil() - } else { - x.HostPath.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostPath")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn346 { - r.EncodeNil() - } else { - if x.HostPath == nil { - r.EncodeNil() - } else { - x.HostPath.CodecEncodeSelf(e) - } - } - } - } - var yyn347 bool - if x.PersistentVolumeSource.Glusterfs == nil { - yyn347 = true - goto LABEL347 - } - LABEL347: - if yyr342 || yy2arr342 { - if yyn347 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[4] { - if x.Glusterfs == nil { - r.EncodeNil() - } else { - x.Glusterfs.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn347 { - r.EncodeNil() - } else { - if x.Glusterfs == nil { - r.EncodeNil() - } else { - x.Glusterfs.CodecEncodeSelf(e) - } - } - } - } - var yyn348 bool - if x.PersistentVolumeSource.NFS == nil { - yyn348 = true - goto LABEL348 - } - LABEL348: - if yyr342 || yy2arr342 { - if yyn348 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[5] { - if x.NFS == nil { - r.EncodeNil() - } else { - x.NFS.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nfs")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn348 { - r.EncodeNil() - } else { - if x.NFS == nil { - r.EncodeNil() - } else { - x.NFS.CodecEncodeSelf(e) - } - } - } - } - var yyn349 bool - if x.PersistentVolumeSource.RBD == nil { - yyn349 = true - goto LABEL349 - } - LABEL349: - if yyr342 || yy2arr342 { - if yyn349 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[6] { - if x.RBD == nil { - r.EncodeNil() - } else { - x.RBD.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("rbd")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn349 { - r.EncodeNil() - } else { - if x.RBD == nil { - r.EncodeNil() - } else { - x.RBD.CodecEncodeSelf(e) - } - } - } - } - var yyn350 bool - if x.PersistentVolumeSource.ISCSI == nil { - yyn350 = true - goto LABEL350 - } - LABEL350: - if yyr342 || yy2arr342 { - if yyn350 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[7] { - if x.ISCSI == nil { - r.EncodeNil() - } else { - x.ISCSI.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[7] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("iscsi")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn350 { - r.EncodeNil() - } else { - if x.ISCSI == nil { - r.EncodeNil() - } else { - x.ISCSI.CodecEncodeSelf(e) - } - } - } - } - var yyn351 bool - if x.PersistentVolumeSource.Cinder == nil { - yyn351 = true - goto LABEL351 - } - LABEL351: - if yyr342 || yy2arr342 { - if yyn351 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[8] { - if x.Cinder == nil { - r.EncodeNil() - } else { - x.Cinder.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[8] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cinder")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn351 { - r.EncodeNil() - } else { - if x.Cinder == nil { - r.EncodeNil() - } else { - x.Cinder.CodecEncodeSelf(e) - } - } - } - } - var yyn352 bool - if x.PersistentVolumeSource.CephFS == nil { - yyn352 = true - goto LABEL352 - } - LABEL352: - if yyr342 || yy2arr342 { - if yyn352 { - r.EncodeNil() - } else { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[9] { - if x.CephFS == nil { - r.EncodeNil() - } else { - x.CephFS.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } - } else { - if yyq342[9] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("cephfs")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn352 { - r.EncodeNil() - } else { - if x.CephFS == nil { - r.EncodeNil() - } else { - x.CephFS.CodecEncodeSelf(e) - } - } - } - } var yyn353 bool - if x.PersistentVolumeSource.FC == nil { + if x.PersistentVolumeSource.GCEPersistentDisk == nil { yyn353 = true goto LABEL353 } LABEL353: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn353 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[10] { - if x.FC == nil { + if yyq351[1] { + if x.GCEPersistentDisk == nil { r.EncodeNil() } else { - x.FC.CodecEncodeSelf(e) + x.GCEPersistentDisk.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[10] { + if yyq351[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fc")) + r.EncodeString(codecSelferC_UTF81234, string("gcePersistentDisk")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn353 { r.EncodeNil() } else { - if x.FC == nil { + if x.GCEPersistentDisk == nil { r.EncodeNil() } else { - x.FC.CodecEncodeSelf(e) + x.GCEPersistentDisk.CodecEncodeSelf(e) } } } } var yyn354 bool - if x.PersistentVolumeSource.Flocker == nil { + if x.PersistentVolumeSource.AWSElasticBlockStore == nil { yyn354 = true goto LABEL354 } LABEL354: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn354 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[11] { - if x.Flocker == nil { + if yyq351[2] { + if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { - x.Flocker.CodecEncodeSelf(e) + x.AWSElasticBlockStore.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[11] { + if yyq351[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("flocker")) + r.EncodeString(codecSelferC_UTF81234, string("awsElasticBlockStore")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn354 { r.EncodeNil() } else { - if x.Flocker == nil { + if x.AWSElasticBlockStore == nil { r.EncodeNil() } else { - x.Flocker.CodecEncodeSelf(e) + x.AWSElasticBlockStore.CodecEncodeSelf(e) } } } } var yyn355 bool - if x.PersistentVolumeSource.FlexVolume == nil { + if x.PersistentVolumeSource.HostPath == nil { yyn355 = true goto LABEL355 } LABEL355: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn355 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[12] { - if x.FlexVolume == nil { + if yyq351[3] { + if x.HostPath == nil { r.EncodeNil() } else { - x.FlexVolume.CodecEncodeSelf(e) + x.HostPath.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[12] { + if yyq351[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) + r.EncodeString(codecSelferC_UTF81234, string("hostPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn355 { r.EncodeNil() } else { - if x.FlexVolume == nil { + if x.HostPath == nil { r.EncodeNil() } else { - x.FlexVolume.CodecEncodeSelf(e) + x.HostPath.CodecEncodeSelf(e) } } } } var yyn356 bool - if x.PersistentVolumeSource.AzureFile == nil { + if x.PersistentVolumeSource.Glusterfs == nil { yyn356 = true goto LABEL356 } LABEL356: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn356 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[13] { - if x.AzureFile == nil { + if yyq351[4] { + if x.Glusterfs == nil { r.EncodeNil() } else { - x.AzureFile.CodecEncodeSelf(e) + x.Glusterfs.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[13] { + if yyq351[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("azureFile")) + r.EncodeString(codecSelferC_UTF81234, string("glusterfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn356 { r.EncodeNil() } else { - if x.AzureFile == nil { + if x.Glusterfs == nil { r.EncodeNil() } else { - x.AzureFile.CodecEncodeSelf(e) + x.Glusterfs.CodecEncodeSelf(e) } } } } var yyn357 bool - if x.PersistentVolumeSource.VsphereVolume == nil { + if x.PersistentVolumeSource.NFS == nil { yyn357 = true goto LABEL357 } LABEL357: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn357 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[14] { - if x.VsphereVolume == nil { + if yyq351[5] { + if x.NFS == nil { r.EncodeNil() } else { - x.VsphereVolume.CodecEncodeSelf(e) + x.NFS.CodecEncodeSelf(e) } } else { r.EncodeNil() } } } else { - if yyq342[14] { + if yyq351[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) + r.EncodeString(codecSelferC_UTF81234, string("nfs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if yyn357 { r.EncodeNil() } else { - if x.VsphereVolume == nil { + if x.NFS == nil { r.EncodeNil() } else { - x.VsphereVolume.CodecEncodeSelf(e) + x.NFS.CodecEncodeSelf(e) } } } } var yyn358 bool - if x.PersistentVolumeSource.Quobyte == nil { + if x.PersistentVolumeSource.RBD == nil { yyn358 = true goto LABEL358 } LABEL358: - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { if yyn358 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[15] { + if yyq351[6] { + if x.RBD == nil { + r.EncodeNil() + } else { + x.RBD.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("rbd")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn358 { + r.EncodeNil() + } else { + if x.RBD == nil { + r.EncodeNil() + } else { + x.RBD.CodecEncodeSelf(e) + } + } + } + } + var yyn359 bool + if x.PersistentVolumeSource.ISCSI == nil { + yyn359 = true + goto LABEL359 + } + LABEL359: + if yyr351 || yy2arr351 { + if yyn359 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[7] { + if x.ISCSI == nil { + r.EncodeNil() + } else { + x.ISCSI.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[7] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("iscsi")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn359 { + r.EncodeNil() + } else { + if x.ISCSI == nil { + r.EncodeNil() + } else { + x.ISCSI.CodecEncodeSelf(e) + } + } + } + } + var yyn360 bool + if x.PersistentVolumeSource.Cinder == nil { + yyn360 = true + goto LABEL360 + } + LABEL360: + if yyr351 || yy2arr351 { + if yyn360 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[8] { + if x.Cinder == nil { + r.EncodeNil() + } else { + x.Cinder.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[8] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cinder")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn360 { + r.EncodeNil() + } else { + if x.Cinder == nil { + r.EncodeNil() + } else { + x.Cinder.CodecEncodeSelf(e) + } + } + } + } + var yyn361 bool + if x.PersistentVolumeSource.CephFS == nil { + yyn361 = true + goto LABEL361 + } + LABEL361: + if yyr351 || yy2arr351 { + if yyn361 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[9] { + if x.CephFS == nil { + r.EncodeNil() + } else { + x.CephFS.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[9] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cephfs")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn361 { + r.EncodeNil() + } else { + if x.CephFS == nil { + r.EncodeNil() + } else { + x.CephFS.CodecEncodeSelf(e) + } + } + } + } + var yyn362 bool + if x.PersistentVolumeSource.FC == nil { + yyn362 = true + goto LABEL362 + } + LABEL362: + if yyr351 || yy2arr351 { + if yyn362 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[10] { + if x.FC == nil { + r.EncodeNil() + } else { + x.FC.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[10] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fc")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn362 { + r.EncodeNil() + } else { + if x.FC == nil { + r.EncodeNil() + } else { + x.FC.CodecEncodeSelf(e) + } + } + } + } + var yyn363 bool + if x.PersistentVolumeSource.Flocker == nil { + yyn363 = true + goto LABEL363 + } + LABEL363: + if yyr351 || yy2arr351 { + if yyn363 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[11] { + if x.Flocker == nil { + r.EncodeNil() + } else { + x.Flocker.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[11] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("flocker")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn363 { + r.EncodeNil() + } else { + if x.Flocker == nil { + r.EncodeNil() + } else { + x.Flocker.CodecEncodeSelf(e) + } + } + } + } + var yyn364 bool + if x.PersistentVolumeSource.FlexVolume == nil { + yyn364 = true + goto LABEL364 + } + LABEL364: + if yyr351 || yy2arr351 { + if yyn364 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[12] { + if x.FlexVolume == nil { + r.EncodeNil() + } else { + x.FlexVolume.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[12] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("flexVolume")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn364 { + r.EncodeNil() + } else { + if x.FlexVolume == nil { + r.EncodeNil() + } else { + x.FlexVolume.CodecEncodeSelf(e) + } + } + } + } + var yyn365 bool + if x.PersistentVolumeSource.AzureFile == nil { + yyn365 = true + goto LABEL365 + } + LABEL365: + if yyr351 || yy2arr351 { + if yyn365 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[13] { + if x.AzureFile == nil { + r.EncodeNil() + } else { + x.AzureFile.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[13] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureFile")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn365 { + r.EncodeNil() + } else { + if x.AzureFile == nil { + r.EncodeNil() + } else { + x.AzureFile.CodecEncodeSelf(e) + } + } + } + } + var yyn366 bool + if x.PersistentVolumeSource.VsphereVolume == nil { + yyn366 = true + goto LABEL366 + } + LABEL366: + if yyr351 || yy2arr351 { + if yyn366 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[14] { + if x.VsphereVolume == nil { + r.EncodeNil() + } else { + x.VsphereVolume.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[14] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("vsphereVolume")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn366 { + r.EncodeNil() + } else { + if x.VsphereVolume == nil { + r.EncodeNil() + } else { + x.VsphereVolume.CodecEncodeSelf(e) + } + } + } + } + var yyn367 bool + if x.PersistentVolumeSource.Quobyte == nil { + yyn367 = true + goto LABEL367 + } + LABEL367: + if yyr351 || yy2arr351 { + if yyn367 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[15] { if x.Quobyte == nil { r.EncodeNil() } else { @@ -6291,11 +6480,11 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq342[15] { + if yyq351[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("quobyte")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn358 { + if yyn367 { r.EncodeNil() } else { if x.Quobyte == nil { @@ -6306,14 +6495,51 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr342 || yy2arr342 { + var yyn368 bool + if x.PersistentVolumeSource.AzureDisk == nil { + yyn368 = true + goto LABEL368 + } + LABEL368: + if yyr351 || yy2arr351 { + if yyn368 { + r.EncodeNil() + } else { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq351[16] { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } + } else { + if yyq351[16] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("azureDisk")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyn368 { + r.EncodeNil() + } else { + if x.AzureDisk == nil { + r.EncodeNil() + } else { + x.AzureDisk.CodecEncodeSelf(e) + } + } + } + } + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[16] { + if yyq351[17] { if x.AccessModes == nil { r.EncodeNil() } else { - yym360 := z.EncBinary() - _ = yym360 + yym370 := z.EncBinary() + _ = yym370 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6323,15 +6549,15 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq342[16] { + if yyq351[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym361 := z.EncBinary() - _ = yym361 + yym371 := z.EncBinary() + _ = yym371 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -6339,9 +6565,9 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[17] { + if yyq351[18] { if x.ClaimRef == nil { r.EncodeNil() } else { @@ -6351,7 +6577,7 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq342[17] { + if yyq351[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("claimRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -6362,22 +6588,22 @@ func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq342[18] { + if yyq351[19] { x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq342[18] { + if yyq351[19] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("persistentVolumeReclaimPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.PersistentVolumeReclaimPolicy.CodecEncodeSelf(e) } } - if yyr342 || yy2arr342 { + if yyr351 || yy2arr351 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -6390,25 +6616,25 @@ func (x *PersistentVolumeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym364 := z.DecBinary() - _ = yym364 + yym374 := z.DecBinary() + _ = yym374 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct365 := r.ContainerType() - if yyct365 == codecSelferValueTypeMap1234 { - yyl365 := r.ReadMapStart() - if yyl365 == 0 { + yyct375 := r.ContainerType() + if yyct375 == codecSelferValueTypeMap1234 { + yyl375 := r.ReadMapStart() + if yyl375 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl365, d) + x.codecDecodeSelfFromMap(yyl375, d) } - } else if yyct365 == codecSelferValueTypeArray1234 { - yyl365 := r.ReadArrayStart() - if yyl365 == 0 { + } else if yyct375 == codecSelferValueTypeArray1234 { + yyl375 := r.ReadArrayStart() + if yyl375 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl365, d) + x.codecDecodeSelfFromArray(yyl375, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -6420,12 +6646,12 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys366Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys366Slc - var yyhl366 bool = l >= 0 - for yyj366 := 0; ; yyj366++ { - if yyhl366 { - if yyj366 >= l { + var yys376Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys376Slc + var yyhl376 bool = l >= 0 + for yyj376 := 0; ; yyj376++ { + if yyhl376 { + if yyj376 >= l { break } } else { @@ -6434,16 +6660,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys366Slc = r.DecodeBytes(yys366Slc, true, true) - yys366 := string(yys366Slc) + yys376Slc = r.DecodeBytes(yys376Slc, true, true) + yys376 := string(yys376Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys366 { + switch yys376 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv367 := &x.Capacity - yyv367.CodecDecodeSelf(d) + yyv377 := &x.Capacity + yyv377.CodecDecodeSelf(d) } case "gcePersistentDisk": if x.PersistentVolumeSource.GCEPersistentDisk == nil { @@ -6655,16 +6881,30 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode } x.Quobyte.CodecDecodeSelf(d) } + case "azureDisk": + if x.PersistentVolumeSource.AzureDisk == nil { + x.PersistentVolumeSource.AzureDisk = new(AzureDiskVolumeSource) + } + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv383 := &x.AccessModes - yym384 := z.DecBinary() - _ = yym384 + yyv394 := &x.AccessModes + yym395 := z.DecBinary() + _ = yym395 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv383), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv394), d) } } case "claimRef": @@ -6685,9 +6925,9 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys366) - } // end switch yys366 - } // end for yyj366 + z.DecStructFieldNotFound(-1, yys376) + } // end switch yys376 + } // end for yyj376 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -6695,16 +6935,16 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj387 int - var yyb387 bool - var yyhl387 bool = l >= 0 - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + var yyj398 int + var yyb398 bool + var yyhl398 bool = l >= 0 + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6712,19 +6952,19 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv388 := &x.Capacity - yyv388.CodecDecodeSelf(d) + yyv399 := &x.Capacity + yyv399.CodecDecodeSelf(d) } if x.PersistentVolumeSource.GCEPersistentDisk == nil { x.PersistentVolumeSource.GCEPersistentDisk = new(GCEPersistentDiskVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6742,13 +6982,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AWSElasticBlockStore == nil { x.PersistentVolumeSource.AWSElasticBlockStore = new(AWSElasticBlockStoreVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6766,13 +7006,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.HostPath == nil { x.PersistentVolumeSource.HostPath = new(HostPathVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6790,13 +7030,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Glusterfs == nil { x.PersistentVolumeSource.Glusterfs = new(GlusterfsVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6814,13 +7054,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.NFS == nil { x.PersistentVolumeSource.NFS = new(NFSVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6838,13 +7078,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.RBD == nil { x.PersistentVolumeSource.RBD = new(RBDVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6862,13 +7102,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.ISCSI == nil { x.PersistentVolumeSource.ISCSI = new(ISCSIVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6886,13 +7126,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Cinder == nil { x.PersistentVolumeSource.Cinder = new(CinderVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6910,13 +7150,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.CephFS == nil { x.PersistentVolumeSource.CephFS = new(CephFSVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6934,13 +7174,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FC == nil { x.PersistentVolumeSource.FC = new(FCVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6958,13 +7198,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Flocker == nil { x.PersistentVolumeSource.Flocker = new(FlockerVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -6982,13 +7222,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.FlexVolume == nil { x.PersistentVolumeSource.FlexVolume = new(FlexVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7006,13 +7246,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.AzureFile == nil { x.PersistentVolumeSource.AzureFile = new(AzureFileVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7030,13 +7270,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.VsphereVolume == nil { x.PersistentVolumeSource.VsphereVolume = new(VsphereVirtualDiskVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7054,13 +7294,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if x.PersistentVolumeSource.Quobyte == nil { x.PersistentVolumeSource.Quobyte = new(QuobyteVolumeSource) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7075,13 +7315,37 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.Quobyte.CodecDecodeSelf(d) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l - } else { - yyb387 = r.CheckBreak() + if x.PersistentVolumeSource.AzureDisk == nil { + x.PersistentVolumeSource.AzureDisk = new(AzureDiskVolumeSource) } - if yyb387 { + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l + } else { + yyb398 = r.CheckBreak() + } + if yyb398 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.AzureDisk != nil { + x.AzureDisk = nil + } + } else { + if x.AzureDisk == nil { + x.AzureDisk = new(AzureDiskVolumeSource) + } + x.AzureDisk.CodecDecodeSelf(d) + } + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l + } else { + yyb398 = r.CheckBreak() + } + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7089,21 +7353,21 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv404 := &x.AccessModes - yym405 := z.DecBinary() - _ = yym405 + yyv416 := &x.AccessModes + yym417 := z.DecBinary() + _ = yym417 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv404), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv416), d) } } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7118,13 +7382,13 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco } x.ClaimRef.CodecDecodeSelf(d) } - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7135,17 +7399,17 @@ func (x *PersistentVolumeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.PersistentVolumeReclaimPolicy = PersistentVolumeReclaimPolicy(r.DecodeString()) } for { - yyj387++ - if yyhl387 { - yyb387 = yyj387 > l + yyj398++ + if yyhl398 { + yyb398 = yyj398 > l } else { - yyb387 = r.CheckBreak() + yyb398 = r.CheckBreak() } - if yyb387 { + if yyb398 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj387-1, "") + z.DecStructFieldNotFound(yyj398-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7154,8 +7418,8 @@ func (x PersistentVolumeReclaimPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym408 := z.EncBinary() - _ = yym408 + yym420 := z.EncBinary() + _ = yym420 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -7167,8 +7431,8 @@ func (x *PersistentVolumeReclaimPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym409 := z.DecBinary() - _ = yym409 + yym421 := z.DecBinary() + _ = yym421 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -7183,52 +7447,52 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym410 := z.EncBinary() - _ = yym410 + yym422 := z.EncBinary() + _ = yym422 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep411 := !z.EncBinary() - yy2arr411 := z.EncBasicHandle().StructToArray - var yyq411 [3]bool - _, _, _ = yysep411, yyq411, yy2arr411 - const yyr411 bool = false - yyq411[0] = x.Phase != "" - yyq411[1] = x.Message != "" - yyq411[2] = x.Reason != "" - var yynn411 int - if yyr411 || yy2arr411 { + yysep423 := !z.EncBinary() + yy2arr423 := z.EncBasicHandle().StructToArray + var yyq423 [3]bool + _, _, _ = yysep423, yyq423, yy2arr423 + const yyr423 bool = false + yyq423[0] = x.Phase != "" + yyq423[1] = x.Message != "" + yyq423[2] = x.Reason != "" + var yynn423 int + if yyr423 || yy2arr423 { r.EncodeArrayStart(3) } else { - yynn411 = 0 - for _, b := range yyq411 { + yynn423 = 0 + for _, b := range yyq423 { if b { - yynn411++ + yynn423++ } } - r.EncodeMapStart(yynn411) - yynn411 = 0 + r.EncodeMapStart(yynn423) + yynn423 = 0 } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq411[0] { + if yyq423[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq411[0] { + if yyq423[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq411[1] { - yym414 := z.EncBinary() - _ = yym414 + if yyq423[1] { + yym426 := z.EncBinary() + _ = yym426 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -7237,23 +7501,23 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq411[1] { + if yyq423[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym415 := z.EncBinary() - _ = yym415 + yym427 := z.EncBinary() + _ = yym427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq411[2] { - yym417 := z.EncBinary() - _ = yym417 + if yyq423[2] { + yym429 := z.EncBinary() + _ = yym429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -7262,19 +7526,19 @@ func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq411[2] { + if yyq423[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym418 := z.EncBinary() - _ = yym418 + yym430 := z.EncBinary() + _ = yym430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr411 || yy2arr411 { + if yyr423 || yy2arr423 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7287,25 +7551,25 @@ func (x *PersistentVolumeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym419 := z.DecBinary() - _ = yym419 + yym431 := z.DecBinary() + _ = yym431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct420 := r.ContainerType() - if yyct420 == codecSelferValueTypeMap1234 { - yyl420 := r.ReadMapStart() - if yyl420 == 0 { + yyct432 := r.ContainerType() + if yyct432 == codecSelferValueTypeMap1234 { + yyl432 := r.ReadMapStart() + if yyl432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl420, d) + x.codecDecodeSelfFromMap(yyl432, d) } - } else if yyct420 == codecSelferValueTypeArray1234 { - yyl420 := r.ReadArrayStart() - if yyl420 == 0 { + } else if yyct432 == codecSelferValueTypeArray1234 { + yyl432 := r.ReadArrayStart() + if yyl432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl420, d) + x.codecDecodeSelfFromArray(yyl432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7317,12 +7581,12 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys421Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys421Slc - var yyhl421 bool = l >= 0 - for yyj421 := 0; ; yyj421++ { - if yyhl421 { - if yyj421 >= l { + var yys433Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys433Slc + var yyhl433 bool = l >= 0 + for yyj433 := 0; ; yyj433++ { + if yyhl433 { + if yyj433 >= l { break } } else { @@ -7331,10 +7595,10 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys421Slc = r.DecodeBytes(yys421Slc, true, true) - yys421 := string(yys421Slc) + yys433Slc = r.DecodeBytes(yys433Slc, true, true) + yys433 := string(yys433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys421 { + switch yys433 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -7354,9 +7618,9 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.Reason = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys421) - } // end switch yys421 - } // end for yyj421 + z.DecStructFieldNotFound(-1, yys433) + } // end switch yys433 + } // end for yyj433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7364,16 +7628,16 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj425 int - var yyb425 bool - var yyhl425 bool = l >= 0 - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + var yyj437 int + var yyb437 bool + var yyhl437 bool = l >= 0 + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7383,13 +7647,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Phase = PersistentVolumePhase(r.DecodeString()) } - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7399,13 +7663,13 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Message = string(r.DecodeString()) } - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7416,17 +7680,17 @@ func (x *PersistentVolumeStatus) codecDecodeSelfFromArray(l int, d *codec1978.De x.Reason = string(r.DecodeString()) } for { - yyj425++ - if yyhl425 { - yyb425 = yyj425 > l + yyj437++ + if yyhl437 { + yyb437 = yyj437 > l } else { - yyb425 = r.CheckBreak() + yyb437 = r.CheckBreak() } - if yyb425 { + if yyb437 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj425-1, "") + z.DecStructFieldNotFound(yyj437-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7438,37 +7702,37 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym429 := z.EncBinary() - _ = yym429 + yym441 := z.EncBinary() + _ = yym441 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep430 := !z.EncBinary() - yy2arr430 := z.EncBasicHandle().StructToArray - var yyq430 [4]bool - _, _, _ = yysep430, yyq430, yy2arr430 - const yyr430 bool = false - yyq430[0] = x.Kind != "" - yyq430[1] = x.APIVersion != "" - yyq430[2] = true - var yynn430 int - if yyr430 || yy2arr430 { + yysep442 := !z.EncBinary() + yy2arr442 := z.EncBasicHandle().StructToArray + var yyq442 [4]bool + _, _, _ = yysep442, yyq442, yy2arr442 + const yyr442 bool = false + yyq442[0] = x.Kind != "" + yyq442[1] = x.APIVersion != "" + yyq442[2] = true + var yynn442 int + if yyr442 || yy2arr442 { r.EncodeArrayStart(4) } else { - yynn430 = 1 - for _, b := range yyq430 { + yynn442 = 1 + for _, b := range yyq442 { if b { - yynn430++ + yynn442++ } } - r.EncodeMapStart(yynn430) - yynn430 = 0 + r.EncodeMapStart(yynn442) + yynn442 = 0 } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq430[0] { - yym432 := z.EncBinary() - _ = yym432 + if yyq442[0] { + yym444 := z.EncBinary() + _ = yym444 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7477,23 +7741,23 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq430[0] { + if yyq442[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym433 := z.EncBinary() - _ = yym433 + yym445 := z.EncBinary() + _ = yym445 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq430[1] { - yym435 := z.EncBinary() - _ = yym435 + if yyq442[1] { + yym447 := z.EncBinary() + _ = yym447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7502,54 +7766,54 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq430[1] { + if yyq442[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym436 := z.EncBinary() - _ = yym436 + yym448 := z.EncBinary() + _ = yym448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq430[2] { - yy438 := &x.ListMeta - yym439 := z.EncBinary() - _ = yym439 + if yyq442[2] { + yy450 := &x.ListMeta + yym451 := z.EncBinary() + _ = yym451 if false { - } else if z.HasExtensions() && z.EncExt(yy438) { + } else if z.HasExtensions() && z.EncExt(yy450) { } else { - z.EncFallback(yy438) + z.EncFallback(yy450) } } else { r.EncodeNil() } } else { - if yyq430[2] { + if yyq442[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy440 := &x.ListMeta - yym441 := z.EncBinary() - _ = yym441 + yy452 := &x.ListMeta + yym453 := z.EncBinary() + _ = yym453 if false { - } else if z.HasExtensions() && z.EncExt(yy440) { + } else if z.HasExtensions() && z.EncExt(yy452) { } else { - z.EncFallback(yy440) + z.EncFallback(yy452) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym443 := z.EncBinary() - _ = yym443 + yym455 := z.EncBinary() + _ = yym455 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) @@ -7562,15 +7826,15 @@ func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym444 := z.EncBinary() - _ = yym444 + yym456 := z.EncBinary() + _ = yym456 if false { } else { h.encSlicePersistentVolume(([]PersistentVolume)(x.Items), e) } } } - if yyr430 || yy2arr430 { + if yyr442 || yy2arr442 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7583,25 +7847,25 @@ func (x *PersistentVolumeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym445 := z.DecBinary() - _ = yym445 + yym457 := z.DecBinary() + _ = yym457 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct446 := r.ContainerType() - if yyct446 == codecSelferValueTypeMap1234 { - yyl446 := r.ReadMapStart() - if yyl446 == 0 { + yyct458 := r.ContainerType() + if yyct458 == codecSelferValueTypeMap1234 { + yyl458 := r.ReadMapStart() + if yyl458 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl446, d) + x.codecDecodeSelfFromMap(yyl458, d) } - } else if yyct446 == codecSelferValueTypeArray1234 { - yyl446 := r.ReadArrayStart() - if yyl446 == 0 { + } else if yyct458 == codecSelferValueTypeArray1234 { + yyl458 := r.ReadArrayStart() + if yyl458 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl446, d) + x.codecDecodeSelfFromArray(yyl458, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7613,12 +7877,12 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys447Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys447Slc - var yyhl447 bool = l >= 0 - for yyj447 := 0; ; yyj447++ { - if yyhl447 { - if yyj447 >= l { + var yys459Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys459Slc + var yyhl459 bool = l >= 0 + for yyj459 := 0; ; yyj459++ { + if yyhl459 { + if yyj459 >= l { break } } else { @@ -7627,10 +7891,10 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys447Slc = r.DecodeBytes(yys447Slc, true, true) - yys447 := string(yys447Slc) + yys459Slc = r.DecodeBytes(yys459Slc, true, true) + yys459 := string(yys459Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys447 { + switch yys459 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7647,31 +7911,31 @@ func (x *PersistentVolumeList) codecDecodeSelfFromMap(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv450 := &x.ListMeta - yym451 := z.DecBinary() - _ = yym451 + yyv462 := &x.ListMeta + yym463 := z.DecBinary() + _ = yym463 if false { - } else if z.HasExtensions() && z.DecExt(yyv450) { + } else if z.HasExtensions() && z.DecExt(yyv462) { } else { - z.DecFallback(yyv450, false) + z.DecFallback(yyv462, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv452 := &x.Items - yym453 := z.DecBinary() - _ = yym453 + yyv464 := &x.Items + yym465 := z.DecBinary() + _ = yym465 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv452), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv464), d) } } default: - z.DecStructFieldNotFound(-1, yys447) - } // end switch yys447 - } // end for yyj447 + z.DecStructFieldNotFound(-1, yys459) + } // end switch yys459 + } // end for yyj459 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -7679,16 +7943,16 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj454 int - var yyb454 bool - var yyhl454 bool = l >= 0 - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + var yyj466 int + var yyb466 bool + var yyhl466 bool = l >= 0 + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7698,13 +7962,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Kind = string(r.DecodeString()) } - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7714,13 +7978,13 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.APIVersion = string(r.DecodeString()) } - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7728,22 +7992,22 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv457 := &x.ListMeta - yym458 := z.DecBinary() - _ = yym458 + yyv469 := &x.ListMeta + yym470 := z.DecBinary() + _ = yym470 if false { - } else if z.HasExtensions() && z.DecExt(yyv457) { + } else if z.HasExtensions() && z.DecExt(yyv469) { } else { - z.DecFallback(yyv457, false) + z.DecFallback(yyv469, false) } } - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -7751,26 +8015,26 @@ func (x *PersistentVolumeList) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Items = nil } else { - yyv459 := &x.Items - yym460 := z.DecBinary() - _ = yym460 + yyv471 := &x.Items + yym472 := z.DecBinary() + _ = yym472 if false { } else { - h.decSlicePersistentVolume((*[]PersistentVolume)(yyv459), d) + h.decSlicePersistentVolume((*[]PersistentVolume)(yyv471), d) } } for { - yyj454++ - if yyhl454 { - yyb454 = yyj454 > l + yyj466++ + if yyhl466 { + yyb466 = yyj466 > l } else { - yyb454 = r.CheckBreak() + yyb466 = r.CheckBreak() } - if yyb454 { + if yyb466 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj454-1, "") + z.DecStructFieldNotFound(yyj466-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -7782,39 +8046,39 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym461 := z.EncBinary() - _ = yym461 + yym473 := z.EncBinary() + _ = yym473 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep462 := !z.EncBinary() - yy2arr462 := z.EncBasicHandle().StructToArray - var yyq462 [5]bool - _, _, _ = yysep462, yyq462, yy2arr462 - const yyr462 bool = false - yyq462[0] = x.Kind != "" - yyq462[1] = x.APIVersion != "" - yyq462[2] = true - yyq462[3] = true - yyq462[4] = true - var yynn462 int - if yyr462 || yy2arr462 { + yysep474 := !z.EncBinary() + yy2arr474 := z.EncBasicHandle().StructToArray + var yyq474 [5]bool + _, _, _ = yysep474, yyq474, yy2arr474 + const yyr474 bool = false + yyq474[0] = x.Kind != "" + yyq474[1] = x.APIVersion != "" + yyq474[2] = true + yyq474[3] = true + yyq474[4] = true + var yynn474 int + if yyr474 || yy2arr474 { r.EncodeArrayStart(5) } else { - yynn462 = 0 - for _, b := range yyq462 { + yynn474 = 0 + for _, b := range yyq474 { if b { - yynn462++ + yynn474++ } } - r.EncodeMapStart(yynn462) - yynn462 = 0 + r.EncodeMapStart(yynn474) + yynn474 = 0 } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[0] { - yym464 := z.EncBinary() - _ = yym464 + if yyq474[0] { + yym476 := z.EncBinary() + _ = yym476 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -7823,23 +8087,23 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq462[0] { + if yyq474[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym465 := z.EncBinary() - _ = yym465 + yym477 := z.EncBinary() + _ = yym477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[1] { - yym467 := z.EncBinary() - _ = yym467 + if yyq474[1] { + yym479 := z.EncBinary() + _ = yym479 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -7848,70 +8112,70 @@ func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq462[1] { + if yyq474[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym468 := z.EncBinary() - _ = yym468 + yym480 := z.EncBinary() + _ = yym480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[2] { - yy470 := &x.ObjectMeta - yy470.CodecEncodeSelf(e) + if yyq474[2] { + yy482 := &x.ObjectMeta + yy482.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq462[2] { + if yyq474[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy471 := &x.ObjectMeta - yy471.CodecEncodeSelf(e) + yy483 := &x.ObjectMeta + yy483.CodecEncodeSelf(e) } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[3] { - yy473 := &x.Spec - yy473.CodecEncodeSelf(e) + if yyq474[3] { + yy485 := &x.Spec + yy485.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq462[3] { + if yyq474[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy474 := &x.Spec - yy474.CodecEncodeSelf(e) + yy486 := &x.Spec + yy486.CodecEncodeSelf(e) } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq462[4] { - yy476 := &x.Status - yy476.CodecEncodeSelf(e) + if yyq474[4] { + yy488 := &x.Status + yy488.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq462[4] { + if yyq474[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy477 := &x.Status - yy477.CodecEncodeSelf(e) + yy489 := &x.Status + yy489.CodecEncodeSelf(e) } } - if yyr462 || yy2arr462 { + if yyr474 || yy2arr474 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -7924,25 +8188,25 @@ func (x *PersistentVolumeClaim) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym478 := z.DecBinary() - _ = yym478 + yym490 := z.DecBinary() + _ = yym490 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct479 := r.ContainerType() - if yyct479 == codecSelferValueTypeMap1234 { - yyl479 := r.ReadMapStart() - if yyl479 == 0 { + yyct491 := r.ContainerType() + if yyct491 == codecSelferValueTypeMap1234 { + yyl491 := r.ReadMapStart() + if yyl491 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl479, d) + x.codecDecodeSelfFromMap(yyl491, d) } - } else if yyct479 == codecSelferValueTypeArray1234 { - yyl479 := r.ReadArrayStart() - if yyl479 == 0 { + } else if yyct491 == codecSelferValueTypeArray1234 { + yyl491 := r.ReadArrayStart() + if yyl491 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl479, d) + x.codecDecodeSelfFromArray(yyl491, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -7954,12 +8218,12 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys480Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys480Slc - var yyhl480 bool = l >= 0 - for yyj480 := 0; ; yyj480++ { - if yyhl480 { - if yyj480 >= l { + var yys492Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys492Slc + var yyhl492 bool = l >= 0 + for yyj492 := 0; ; yyj492++ { + if yyhl492 { + if yyj492 >= l { break } } else { @@ -7968,10 +8232,10 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys480Slc = r.DecodeBytes(yys480Slc, true, true) - yys480 := string(yys480Slc) + yys492Slc = r.DecodeBytes(yys492Slc, true, true) + yys492 := string(yys492Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys480 { + switch yys492 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -7988,27 +8252,27 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv483 := &x.ObjectMeta - yyv483.CodecDecodeSelf(d) + yyv495 := &x.ObjectMeta + yyv495.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv484 := &x.Spec - yyv484.CodecDecodeSelf(d) + yyv496 := &x.Spec + yyv496.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv485 := &x.Status - yyv485.CodecDecodeSelf(d) + yyv497 := &x.Status + yyv497.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys480) - } // end switch yys480 - } // end for yyj480 + z.DecStructFieldNotFound(-1, yys492) + } // end switch yys492 + } // end for yyj492 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8016,16 +8280,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj486 int - var yyb486 bool - var yyhl486 bool = l >= 0 - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + var yyj498 int + var yyb498 bool + var yyhl498 bool = l >= 0 + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8035,13 +8299,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8051,13 +8315,13 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8065,16 +8329,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv489 := &x.ObjectMeta - yyv489.CodecDecodeSelf(d) + yyv501 := &x.ObjectMeta + yyv501.CodecDecodeSelf(d) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8082,16 +8346,16 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = PersistentVolumeClaimSpec{} } else { - yyv490 := &x.Spec - yyv490.CodecDecodeSelf(d) + yyv502 := &x.Spec + yyv502.CodecDecodeSelf(d) } - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8099,21 +8363,21 @@ func (x *PersistentVolumeClaim) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = PersistentVolumeClaimStatus{} } else { - yyv491 := &x.Status - yyv491.CodecDecodeSelf(d) + yyv503 := &x.Status + yyv503.CodecDecodeSelf(d) } for { - yyj486++ - if yyhl486 { - yyb486 = yyj486 > l + yyj498++ + if yyhl498 { + yyb498 = yyj498 > l } else { - yyb486 = r.CheckBreak() + yyb498 = r.CheckBreak() } - if yyb486 { + if yyb498 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj486-1, "") + z.DecStructFieldNotFound(yyj498-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8125,37 +8389,37 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym492 := z.EncBinary() - _ = yym492 + yym504 := z.EncBinary() + _ = yym504 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep493 := !z.EncBinary() - yy2arr493 := z.EncBasicHandle().StructToArray - var yyq493 [4]bool - _, _, _ = yysep493, yyq493, yy2arr493 - const yyr493 bool = false - yyq493[0] = x.Kind != "" - yyq493[1] = x.APIVersion != "" - yyq493[2] = true - var yynn493 int - if yyr493 || yy2arr493 { + yysep505 := !z.EncBinary() + yy2arr505 := z.EncBasicHandle().StructToArray + var yyq505 [4]bool + _, _, _ = yysep505, yyq505, yy2arr505 + const yyr505 bool = false + yyq505[0] = x.Kind != "" + yyq505[1] = x.APIVersion != "" + yyq505[2] = true + var yynn505 int + if yyr505 || yy2arr505 { r.EncodeArrayStart(4) } else { - yynn493 = 1 - for _, b := range yyq493 { + yynn505 = 1 + for _, b := range yyq505 { if b { - yynn493++ + yynn505++ } } - r.EncodeMapStart(yynn493) - yynn493 = 0 + r.EncodeMapStart(yynn505) + yynn505 = 0 } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq493[0] { - yym495 := z.EncBinary() - _ = yym495 + if yyq505[0] { + yym507 := z.EncBinary() + _ = yym507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -8164,23 +8428,23 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq493[0] { + if yyq505[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym496 := z.EncBinary() - _ = yym496 + yym508 := z.EncBinary() + _ = yym508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq493[1] { - yym498 := z.EncBinary() - _ = yym498 + if yyq505[1] { + yym510 := z.EncBinary() + _ = yym510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -8189,54 +8453,54 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq493[1] { + if yyq505[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym499 := z.EncBinary() - _ = yym499 + yym511 := z.EncBinary() + _ = yym511 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq493[2] { - yy501 := &x.ListMeta - yym502 := z.EncBinary() - _ = yym502 + if yyq505[2] { + yy513 := &x.ListMeta + yym514 := z.EncBinary() + _ = yym514 if false { - } else if z.HasExtensions() && z.EncExt(yy501) { + } else if z.HasExtensions() && z.EncExt(yy513) { } else { - z.EncFallback(yy501) + z.EncFallback(yy513) } } else { r.EncodeNil() } } else { - if yyq493[2] { + if yyq505[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy503 := &x.ListMeta - yym504 := z.EncBinary() - _ = yym504 + yy515 := &x.ListMeta + yym516 := z.EncBinary() + _ = yym516 if false { - } else if z.HasExtensions() && z.EncExt(yy503) { + } else if z.HasExtensions() && z.EncExt(yy515) { } else { - z.EncFallback(yy503) + z.EncFallback(yy515) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym506 := z.EncBinary() - _ = yym506 + yym518 := z.EncBinary() + _ = yym518 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) @@ -8249,15 +8513,15 @@ func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym507 := z.EncBinary() - _ = yym507 + yym519 := z.EncBinary() + _ = yym519 if false { } else { h.encSlicePersistentVolumeClaim(([]PersistentVolumeClaim)(x.Items), e) } } } - if yyr493 || yy2arr493 { + if yyr505 || yy2arr505 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8270,25 +8534,25 @@ func (x *PersistentVolumeClaimList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym508 := z.DecBinary() - _ = yym508 + yym520 := z.DecBinary() + _ = yym520 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct509 := r.ContainerType() - if yyct509 == codecSelferValueTypeMap1234 { - yyl509 := r.ReadMapStart() - if yyl509 == 0 { + yyct521 := r.ContainerType() + if yyct521 == codecSelferValueTypeMap1234 { + yyl521 := r.ReadMapStart() + if yyl521 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl509, d) + x.codecDecodeSelfFromMap(yyl521, d) } - } else if yyct509 == codecSelferValueTypeArray1234 { - yyl509 := r.ReadArrayStart() - if yyl509 == 0 { + } else if yyct521 == codecSelferValueTypeArray1234 { + yyl521 := r.ReadArrayStart() + if yyl521 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl509, d) + x.codecDecodeSelfFromArray(yyl521, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8300,12 +8564,12 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys510Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys510Slc - var yyhl510 bool = l >= 0 - for yyj510 := 0; ; yyj510++ { - if yyhl510 { - if yyj510 >= l { + var yys522Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys522Slc + var yyhl522 bool = l >= 0 + for yyj522 := 0; ; yyj522++ { + if yyhl522 { + if yyj522 >= l { break } } else { @@ -8314,10 +8578,10 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys510Slc = r.DecodeBytes(yys510Slc, true, true) - yys510 := string(yys510Slc) + yys522Slc = r.DecodeBytes(yys522Slc, true, true) + yys522 := string(yys522Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys510 { + switch yys522 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -8334,31 +8598,31 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv513 := &x.ListMeta - yym514 := z.DecBinary() - _ = yym514 + yyv525 := &x.ListMeta + yym526 := z.DecBinary() + _ = yym526 if false { - } else if z.HasExtensions() && z.DecExt(yyv513) { + } else if z.HasExtensions() && z.DecExt(yyv525) { } else { - z.DecFallback(yyv513, false) + z.DecFallback(yyv525, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv515 := &x.Items - yym516 := z.DecBinary() - _ = yym516 + yyv527 := &x.Items + yym528 := z.DecBinary() + _ = yym528 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv515), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv527), d) } } default: - z.DecStructFieldNotFound(-1, yys510) - } // end switch yys510 - } // end for yyj510 + z.DecStructFieldNotFound(-1, yys522) + } // end switch yys522 + } // end for yyj522 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8366,16 +8630,16 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj517 int - var yyb517 bool - var yyhl517 bool = l >= 0 - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + var yyj529 int + var yyb529 bool + var yyhl529 bool = l >= 0 + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8385,13 +8649,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8401,13 +8665,13 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8415,22 +8679,22 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv520 := &x.ListMeta - yym521 := z.DecBinary() - _ = yym521 + yyv532 := &x.ListMeta + yym533 := z.DecBinary() + _ = yym533 if false { - } else if z.HasExtensions() && z.DecExt(yyv520) { + } else if z.HasExtensions() && z.DecExt(yyv532) { } else { - z.DecFallback(yyv520, false) + z.DecFallback(yyv532, false) } } - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8438,26 +8702,26 @@ func (x *PersistentVolumeClaimList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv522 := &x.Items - yym523 := z.DecBinary() - _ = yym523 + yyv534 := &x.Items + yym535 := z.DecBinary() + _ = yym535 if false { } else { - h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv522), d) + h.decSlicePersistentVolumeClaim((*[]PersistentVolumeClaim)(yyv534), d) } } for { - yyj517++ - if yyhl517 { - yyb517 = yyj517 > l + yyj529++ + if yyhl529 { + yyb529 = yyj529 > l } else { - yyb517 = r.CheckBreak() + yyb529 = r.CheckBreak() } - if yyb517 { + if yyb529 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj517-1, "") + z.DecStructFieldNotFound(yyj529-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8469,41 +8733,41 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym524 := z.EncBinary() - _ = yym524 + yym536 := z.EncBinary() + _ = yym536 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep525 := !z.EncBinary() - yy2arr525 := z.EncBasicHandle().StructToArray - var yyq525 [4]bool - _, _, _ = yysep525, yyq525, yy2arr525 - const yyr525 bool = false - yyq525[0] = len(x.AccessModes) != 0 - yyq525[1] = x.Selector != nil - yyq525[2] = true - yyq525[3] = x.VolumeName != "" - var yynn525 int - if yyr525 || yy2arr525 { + yysep537 := !z.EncBinary() + yy2arr537 := z.EncBasicHandle().StructToArray + var yyq537 [4]bool + _, _, _ = yysep537, yyq537, yy2arr537 + const yyr537 bool = false + yyq537[0] = len(x.AccessModes) != 0 + yyq537[1] = x.Selector != nil + yyq537[2] = true + yyq537[3] = x.VolumeName != "" + var yynn537 int + if yyr537 || yy2arr537 { r.EncodeArrayStart(4) } else { - yynn525 = 0 - for _, b := range yyq525 { + yynn537 = 0 + for _, b := range yyq537 { if b { - yynn525++ + yynn537++ } } - r.EncodeMapStart(yynn525) - yynn525 = 0 + r.EncodeMapStart(yynn537) + yynn537 = 0 } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[0] { + if yyq537[0] { if x.AccessModes == nil { r.EncodeNil() } else { - yym527 := z.EncBinary() - _ = yym527 + yym539 := z.EncBinary() + _ = yym539 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8513,15 +8777,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq525[0] { + if yyq537[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym528 := z.EncBinary() - _ = yym528 + yym540 := z.EncBinary() + _ = yym540 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8529,14 +8793,14 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[1] { + if yyq537[1] { if x.Selector == nil { r.EncodeNil() } else { - yym530 := z.EncBinary() - _ = yym530 + yym542 := z.EncBinary() + _ = yym542 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8547,15 +8811,15 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq525[1] { + if yyq537[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym531 := z.EncBinary() - _ = yym531 + yym543 := z.EncBinary() + _ = yym543 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -8564,28 +8828,28 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[2] { - yy533 := &x.Resources - yy533.CodecEncodeSelf(e) + if yyq537[2] { + yy545 := &x.Resources + yy545.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq525[2] { + if yyq537[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy534 := &x.Resources - yy534.CodecEncodeSelf(e) + yy546 := &x.Resources + yy546.CodecEncodeSelf(e) } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq525[3] { - yym536 := z.EncBinary() - _ = yym536 + if yyq537[3] { + yym548 := z.EncBinary() + _ = yym548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) @@ -8594,19 +8858,19 @@ func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq525[3] { + if yyq537[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym537 := z.EncBinary() - _ = yym537 + yym549 := z.EncBinary() + _ = yym549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeName)) } } } - if yyr525 || yy2arr525 { + if yyr537 || yy2arr537 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8619,25 +8883,25 @@ func (x *PersistentVolumeClaimSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym538 := z.DecBinary() - _ = yym538 + yym550 := z.DecBinary() + _ = yym550 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct539 := r.ContainerType() - if yyct539 == codecSelferValueTypeMap1234 { - yyl539 := r.ReadMapStart() - if yyl539 == 0 { + yyct551 := r.ContainerType() + if yyct551 == codecSelferValueTypeMap1234 { + yyl551 := r.ReadMapStart() + if yyl551 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl539, d) + x.codecDecodeSelfFromMap(yyl551, d) } - } else if yyct539 == codecSelferValueTypeArray1234 { - yyl539 := r.ReadArrayStart() - if yyl539 == 0 { + } else if yyct551 == codecSelferValueTypeArray1234 { + yyl551 := r.ReadArrayStart() + if yyl551 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl539, d) + x.codecDecodeSelfFromArray(yyl551, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8649,12 +8913,12 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys540Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys540Slc - var yyhl540 bool = l >= 0 - for yyj540 := 0; ; yyj540++ { - if yyhl540 { - if yyj540 >= l { + var yys552Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys552Slc + var yyhl552 bool = l >= 0 + for yyj552 := 0; ; yyj552++ { + if yyhl552 { + if yyj552 >= l { break } } else { @@ -8663,20 +8927,20 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys540Slc = r.DecodeBytes(yys540Slc, true, true) - yys540 := string(yys540Slc) + yys552Slc = r.DecodeBytes(yys552Slc, true, true) + yys552 := string(yys552Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys540 { + switch yys552 { case "accessModes": if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv541 := &x.AccessModes - yym542 := z.DecBinary() - _ = yym542 + yyv553 := &x.AccessModes + yym554 := z.DecBinary() + _ = yym554 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv541), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv553), d) } } case "selector": @@ -8688,8 +8952,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym544 := z.DecBinary() - _ = yym544 + yym556 := z.DecBinary() + _ = yym556 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { @@ -8700,8 +8964,8 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv545 := &x.Resources - yyv545.CodecDecodeSelf(d) + yyv557 := &x.Resources + yyv557.CodecDecodeSelf(d) } case "volumeName": if r.TryDecodeAsNil() { @@ -8710,9 +8974,9 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.VolumeName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys540) - } // end switch yys540 - } // end for yyj540 + z.DecStructFieldNotFound(-1, yys552) + } // end switch yys552 + } // end for yyj552 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8720,16 +8984,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj547 int - var yyb547 bool - var yyhl547 bool = l >= 0 - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + var yyj559 int + var yyb559 bool + var yyhl559 bool = l >= 0 + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8737,21 +9001,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(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) } } - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8764,21 +9028,21 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Selector == nil { x.Selector = new(pkg2_unversioned.LabelSelector) } - yym551 := z.DecBinary() - _ = yym551 + yym563 := z.DecBinary() + _ = yym563 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { z.DecFallback(x.Selector, false) } } - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8786,16 +9050,16 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv552 := &x.Resources - yyv552.CodecDecodeSelf(d) + yyv564 := &x.Resources + yyv564.CodecDecodeSelf(d) } - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8806,17 +9070,17 @@ func (x *PersistentVolumeClaimSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.VolumeName = string(r.DecodeString()) } for { - yyj547++ - if yyhl547 { - yyb547 = yyj547 > l + yyj559++ + if yyhl559 { + yyb559 = yyj559 > l } else { - yyb547 = r.CheckBreak() + yyb559 = r.CheckBreak() } - if yyb547 { + if yyb559 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj547-1, "") + z.DecStructFieldNotFound(yyj559-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8828,55 +9092,55 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym554 := z.EncBinary() - _ = yym554 + yym566 := z.EncBinary() + _ = yym566 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep555 := !z.EncBinary() - yy2arr555 := z.EncBasicHandle().StructToArray - var yyq555 [3]bool - _, _, _ = yysep555, yyq555, yy2arr555 - const yyr555 bool = false - yyq555[0] = x.Phase != "" - yyq555[1] = len(x.AccessModes) != 0 - yyq555[2] = len(x.Capacity) != 0 - var yynn555 int - if yyr555 || yy2arr555 { + yysep567 := !z.EncBinary() + yy2arr567 := z.EncBasicHandle().StructToArray + var yyq567 [3]bool + _, _, _ = yysep567, yyq567, yy2arr567 + const yyr567 bool = false + yyq567[0] = x.Phase != "" + yyq567[1] = len(x.AccessModes) != 0 + yyq567[2] = len(x.Capacity) != 0 + var yynn567 int + if yyr567 || yy2arr567 { r.EncodeArrayStart(3) } else { - yynn555 = 0 - for _, b := range yyq555 { + yynn567 = 0 + for _, b := range yyq567 { if b { - yynn555++ + yynn567++ } } - r.EncodeMapStart(yynn555) - yynn555 = 0 + r.EncodeMapStart(yynn567) + yynn567 = 0 } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq555[0] { + if yyq567[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq555[0] { + if yyq567[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq555[1] { + if yyq567[1] { if x.AccessModes == nil { r.EncodeNil() } else { - yym558 := z.EncBinary() - _ = yym558 + yym570 := z.EncBinary() + _ = yym570 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8886,15 +9150,15 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq555[1] { + if yyq567[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("accessModes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AccessModes == nil { r.EncodeNil() } else { - yym559 := z.EncBinary() - _ = yym559 + yym571 := z.EncBinary() + _ = yym571 if false { } else { h.encSlicePersistentVolumeAccessMode(([]PersistentVolumeAccessMode)(x.AccessModes), e) @@ -8902,9 +9166,9 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq555[2] { + if yyq567[2] { if x.Capacity == nil { r.EncodeNil() } else { @@ -8914,7 +9178,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq555[2] { + if yyq567[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -8925,7 +9189,7 @@ func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr555 || yy2arr555 { + if yyr567 || yy2arr567 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8938,25 +9202,25 @@ func (x *PersistentVolumeClaimStatus) 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 { - yyct562 := r.ContainerType() - if yyct562 == codecSelferValueTypeMap1234 { - yyl562 := r.ReadMapStart() - if yyl562 == 0 { + yyct574 := r.ContainerType() + if yyct574 == codecSelferValueTypeMap1234 { + yyl574 := r.ReadMapStart() + if yyl574 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl562, d) + x.codecDecodeSelfFromMap(yyl574, d) } - } else if yyct562 == codecSelferValueTypeArray1234 { - yyl562 := r.ReadArrayStart() - if yyl562 == 0 { + } else if yyct574 == codecSelferValueTypeArray1234 { + yyl574 := r.ReadArrayStart() + if yyl574 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl562, d) + x.codecDecodeSelfFromArray(yyl574, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8968,12 +9232,12 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys563Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys563Slc - var yyhl563 bool = l >= 0 - for yyj563 := 0; ; yyj563++ { - if yyhl563 { - if yyj563 >= l { + var yys575Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys575Slc + var yyhl575 bool = l >= 0 + for yyj575 := 0; ; yyj575++ { + if yyhl575 { + if yyj575 >= l { break } } else { @@ -8982,10 +9246,10 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys563Slc = r.DecodeBytes(yys563Slc, true, true) - yys563 := string(yys563Slc) + yys575Slc = r.DecodeBytes(yys575Slc, true, true) + yys575 := string(yys575Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys563 { + switch yys575 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -8996,25 +9260,25 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv565 := &x.AccessModes - yym566 := z.DecBinary() - _ = yym566 + yyv577 := &x.AccessModes + yym578 := z.DecBinary() + _ = yym578 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv565), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv577), d) } } case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv567 := &x.Capacity - yyv567.CodecDecodeSelf(d) + yyv579 := &x.Capacity + yyv579.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys563) - } // end switch yys563 - } // end for yyj563 + z.DecStructFieldNotFound(-1, yys575) + } // end switch yys575 + } // end for yyj575 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9022,16 +9286,16 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj568 int - var yyb568 bool - var yyhl568 bool = l >= 0 - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + var yyj580 int + var yyb580 bool + var yyhl580 bool = l >= 0 + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9041,13 +9305,13 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Phase = PersistentVolumeClaimPhase(r.DecodeString()) } - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9055,21 +9319,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.AccessModes = nil } else { - yyv570 := &x.AccessModes - yym571 := z.DecBinary() - _ = yym571 + yyv582 := &x.AccessModes + yym583 := z.DecBinary() + _ = yym583 if false { } else { - h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv570), d) + h.decSlicePersistentVolumeAccessMode((*[]PersistentVolumeAccessMode)(yyv582), d) } } - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9077,21 +9341,21 @@ func (x *PersistentVolumeClaimStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv572 := &x.Capacity - yyv572.CodecDecodeSelf(d) + yyv584 := &x.Capacity + yyv584.CodecDecodeSelf(d) } for { - yyj568++ - if yyhl568 { - yyb568 = yyj568 > l + yyj580++ + if yyhl580 { + yyb580 = yyj580 > l } else { - yyb568 = r.CheckBreak() + yyb580 = r.CheckBreak() } - if yyb568 { + if yyb580 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj568-1, "") + z.DecStructFieldNotFound(yyj580-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9100,8 +9364,8 @@ func (x PersistentVolumeAccessMode) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym573 := z.EncBinary() - _ = yym573 + yym585 := z.EncBinary() + _ = yym585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9113,8 +9377,8 @@ func (x *PersistentVolumeAccessMode) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym574 := z.DecBinary() - _ = yym574 + yym586 := z.DecBinary() + _ = yym586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9126,8 +9390,8 @@ func (x PersistentVolumePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym575 := z.EncBinary() - _ = yym575 + yym587 := z.EncBinary() + _ = yym587 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9139,8 +9403,8 @@ func (x *PersistentVolumePhase) 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 { @@ -9152,8 +9416,8 @@ func (x PersistentVolumeClaimPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym577 := z.EncBinary() - _ = yym577 + yym589 := z.EncBinary() + _ = yym589 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -9165,8 +9429,8 @@ func (x *PersistentVolumeClaimPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym578 := z.DecBinary() - _ = yym578 + yym590 := z.DecBinary() + _ = yym590 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -9181,33 +9445,33 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym579 := z.EncBinary() - _ = yym579 + yym591 := z.EncBinary() + _ = yym591 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep580 := !z.EncBinary() - yy2arr580 := z.EncBasicHandle().StructToArray - var yyq580 [1]bool - _, _, _ = yysep580, yyq580, yy2arr580 - const yyr580 bool = false - var yynn580 int - if yyr580 || yy2arr580 { + yysep592 := !z.EncBinary() + yy2arr592 := z.EncBasicHandle().StructToArray + var yyq592 [1]bool + _, _, _ = yysep592, yyq592, yy2arr592 + const yyr592 bool = false + var yynn592 int + if yyr592 || yy2arr592 { r.EncodeArrayStart(1) } else { - yynn580 = 1 - for _, b := range yyq580 { + yynn592 = 1 + for _, b := range yyq592 { if b { - yynn580++ + yynn592++ } } - r.EncodeMapStart(yynn580) - yynn580 = 0 + r.EncodeMapStart(yynn592) + yynn592 = 0 } - if yyr580 || yy2arr580 { + if yyr592 || yy2arr592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym582 := z.EncBinary() - _ = yym582 + yym594 := z.EncBinary() + _ = yym594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -9216,14 +9480,14 @@ func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym583 := z.EncBinary() - _ = yym583 + yym595 := z.EncBinary() + _ = yym595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr580 || yy2arr580 { + if yyr592 || yy2arr592 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9236,25 +9500,25 @@ func (x *HostPathVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym584 := z.DecBinary() - _ = yym584 + yym596 := z.DecBinary() + _ = yym596 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct585 := r.ContainerType() - if yyct585 == codecSelferValueTypeMap1234 { - yyl585 := r.ReadMapStart() - if yyl585 == 0 { + yyct597 := r.ContainerType() + if yyct597 == codecSelferValueTypeMap1234 { + yyl597 := r.ReadMapStart() + if yyl597 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl585, d) + x.codecDecodeSelfFromMap(yyl597, d) } - } else if yyct585 == codecSelferValueTypeArray1234 { - yyl585 := r.ReadArrayStart() - if yyl585 == 0 { + } else if yyct597 == codecSelferValueTypeArray1234 { + yyl597 := r.ReadArrayStart() + if yyl597 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl585, d) + x.codecDecodeSelfFromArray(yyl597, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9266,12 +9530,12 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys586Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys586Slc - var yyhl586 bool = l >= 0 - for yyj586 := 0; ; yyj586++ { - if yyhl586 { - if yyj586 >= l { + var yys598Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys598Slc + var yyhl598 bool = l >= 0 + for yyj598 := 0; ; yyj598++ { + if yyhl598 { + if yyj598 >= l { break } } else { @@ -9280,10 +9544,10 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys586Slc = r.DecodeBytes(yys586Slc, true, true) - yys586 := string(yys586Slc) + yys598Slc = r.DecodeBytes(yys598Slc, true, true) + yys598 := string(yys598Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys586 { + switch yys598 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -9291,9 +9555,9 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys586) - } // end switch yys586 - } // end for yyj586 + z.DecStructFieldNotFound(-1, yys598) + } // end switch yys598 + } // end for yyj598 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9301,16 +9565,16 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj588 int - var yyb588 bool - var yyhl588 bool = l >= 0 - yyj588++ - if yyhl588 { - yyb588 = yyj588 > l + var yyj600 int + var yyb600 bool + var yyhl600 bool = l >= 0 + yyj600++ + if yyhl600 { + yyb600 = yyj600 > l } else { - yyb588 = r.CheckBreak() + yyb600 = r.CheckBreak() } - if yyb588 { + if yyb600 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9321,17 +9585,17 @@ func (x *HostPathVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Path = string(r.DecodeString()) } for { - yyj588++ - if yyhl588 { - yyb588 = yyj588 > l + yyj600++ + if yyhl600 { + yyb600 = yyj600 > l } else { - yyb588 = r.CheckBreak() + yyb600 = r.CheckBreak() } - if yyb588 { + if yyb600 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj588-1, "") + z.DecStructFieldNotFound(yyj600-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9343,46 +9607,46 @@ func (x *EmptyDirVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym590 := z.EncBinary() - _ = yym590 + yym602 := z.EncBinary() + _ = yym602 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep591 := !z.EncBinary() - yy2arr591 := z.EncBasicHandle().StructToArray - var yyq591 [1]bool - _, _, _ = yysep591, yyq591, yy2arr591 - const yyr591 bool = false - yyq591[0] = x.Medium != "" - var yynn591 int - if yyr591 || yy2arr591 { + yysep603 := !z.EncBinary() + yy2arr603 := z.EncBasicHandle().StructToArray + var yyq603 [1]bool + _, _, _ = yysep603, yyq603, yy2arr603 + const yyr603 bool = false + yyq603[0] = x.Medium != "" + var yynn603 int + if yyr603 || yy2arr603 { r.EncodeArrayStart(1) } else { - yynn591 = 0 - for _, b := range yyq591 { + yynn603 = 0 + for _, b := range yyq603 { if b { - yynn591++ + yynn603++ } } - r.EncodeMapStart(yynn591) - yynn591 = 0 + r.EncodeMapStart(yynn603) + yynn603 = 0 } - if yyr591 || yy2arr591 { + if yyr603 || yy2arr603 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq591[0] { + if yyq603[0] { x.Medium.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq591[0] { + if yyq603[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("medium")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Medium.CodecEncodeSelf(e) } } - if yyr591 || yy2arr591 { + if yyr603 || yy2arr603 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9395,25 +9659,25 @@ func (x *EmptyDirVolumeSource) 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) @@ -9425,12 +9689,12 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode 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 { @@ -9439,10 +9703,10 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } 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 "medium": if r.TryDecodeAsNil() { x.Medium = "" @@ -9450,9 +9714,9 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Medium = StorageMedium(r.DecodeString()) } 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) } @@ -9460,16 +9724,16 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj597 int - var yyb597 bool - var yyhl597 bool = l >= 0 - yyj597++ - if yyhl597 { - yyb597 = yyj597 > l + var yyj609 int + var yyb609 bool + var yyhl609 bool = l >= 0 + yyj609++ + if yyhl609 { + yyb609 = yyj609 > l } else { - yyb597 = r.CheckBreak() + yyb609 = r.CheckBreak() } - if yyb597 { + if yyb609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9480,17 +9744,17 @@ func (x *EmptyDirVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Medium = StorageMedium(r.DecodeString()) } for { - yyj597++ - if yyhl597 { - yyb597 = yyj597 > l + yyj609++ + if yyhl609 { + yyb609 = yyj609 > l } else { - yyb597 = r.CheckBreak() + yyb609 = r.CheckBreak() } - if yyb597 { + if yyb609 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj597-1, "") + z.DecStructFieldNotFound(yyj609-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9502,34 +9766,34 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym599 := z.EncBinary() - _ = yym599 + yym611 := z.EncBinary() + _ = yym611 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep600 := !z.EncBinary() - yy2arr600 := z.EncBasicHandle().StructToArray - var yyq600 [3]bool - _, _, _ = yysep600, yyq600, yy2arr600 - const yyr600 bool = false - yyq600[2] = x.ReadOnly != false - var yynn600 int - if yyr600 || yy2arr600 { + yysep612 := !z.EncBinary() + yy2arr612 := z.EncBasicHandle().StructToArray + var yyq612 [3]bool + _, _, _ = yysep612, yyq612, yy2arr612 + const yyr612 bool = false + yyq612[2] = x.ReadOnly != false + var yynn612 int + if yyr612 || yy2arr612 { r.EncodeArrayStart(3) } else { - yynn600 = 2 - for _, b := range yyq600 { + yynn612 = 2 + for _, b := range yyq612 { if b { - yynn600++ + yynn612++ } } - r.EncodeMapStart(yynn600) - yynn600 = 0 + r.EncodeMapStart(yynn612) + yynn612 = 0 } - if yyr600 || yy2arr600 { + if yyr612 || yy2arr612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym602 := z.EncBinary() - _ = yym602 + yym614 := z.EncBinary() + _ = yym614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) @@ -9538,17 +9802,17 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("endpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym603 := z.EncBinary() - _ = yym603 + yym615 := z.EncBinary() + _ = yym615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) } } - if yyr600 || yy2arr600 { + if yyr612 || yy2arr612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym605 := z.EncBinary() - _ = yym605 + yym617 := z.EncBinary() + _ = yym617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -9557,18 +9821,18 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym606 := z.EncBinary() - _ = yym606 + yym618 := z.EncBinary() + _ = yym618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr600 || yy2arr600 { + if yyr612 || yy2arr612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq600[2] { - yym608 := z.EncBinary() - _ = yym608 + if yyq612[2] { + yym620 := z.EncBinary() + _ = yym620 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9577,19 +9841,19 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq600[2] { + if yyq612[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym609 := z.EncBinary() - _ = yym609 + yym621 := z.EncBinary() + _ = yym621 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr600 || yy2arr600 { + if yyr612 || yy2arr612 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9602,25 +9866,25 @@ func (x *GlusterfsVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym610 := z.DecBinary() - _ = yym610 + yym622 := z.DecBinary() + _ = yym622 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct611 := r.ContainerType() - if yyct611 == codecSelferValueTypeMap1234 { - yyl611 := r.ReadMapStart() - if yyl611 == 0 { + yyct623 := r.ContainerType() + if yyct623 == codecSelferValueTypeMap1234 { + yyl623 := r.ReadMapStart() + if yyl623 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl611, d) + x.codecDecodeSelfFromMap(yyl623, d) } - } else if yyct611 == codecSelferValueTypeArray1234 { - yyl611 := r.ReadArrayStart() - if yyl611 == 0 { + } else if yyct623 == codecSelferValueTypeArray1234 { + yyl623 := r.ReadArrayStart() + if yyl623 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl611, d) + x.codecDecodeSelfFromArray(yyl623, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9632,12 +9896,12 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys612Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys612Slc - var yyhl612 bool = l >= 0 - for yyj612 := 0; ; yyj612++ { - if yyhl612 { - if yyj612 >= l { + var yys624Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys624Slc + var yyhl624 bool = l >= 0 + for yyj624 := 0; ; yyj624++ { + if yyhl624 { + if yyj624 >= l { break } } else { @@ -9646,10 +9910,10 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys612Slc = r.DecodeBytes(yys612Slc, true, true) - yys612 := string(yys612Slc) + yys624Slc = r.DecodeBytes(yys624Slc, true, true) + yys624 := string(yys624Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys612 { + switch yys624 { case "endpoints": if r.TryDecodeAsNil() { x.EndpointsName = "" @@ -9669,9 +9933,9 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys612) - } // end switch yys612 - } // end for yyj612 + z.DecStructFieldNotFound(-1, yys624) + } // end switch yys624 + } // end for yyj624 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9679,16 +9943,16 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj616 int - var yyb616 bool - var yyhl616 bool = l >= 0 - yyj616++ - if yyhl616 { - yyb616 = yyj616 > l + var yyj628 int + var yyb628 bool + var yyhl628 bool = l >= 0 + yyj628++ + if yyhl628 { + yyb628 = yyj628 > l } else { - yyb616 = r.CheckBreak() + yyb628 = r.CheckBreak() } - if yyb616 { + if yyb628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9698,13 +9962,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.EndpointsName = string(r.DecodeString()) } - yyj616++ - if yyhl616 { - yyb616 = yyj616 > l + yyj628++ + if yyhl628 { + yyb628 = yyj628 > l } else { - yyb616 = r.CheckBreak() + yyb628 = r.CheckBreak() } - if yyb616 { + if yyb628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9714,13 +9978,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj616++ - if yyhl616 { - yyb616 = yyj616 > l + yyj628++ + if yyhl628 { + yyb628 = yyj628 > l } else { - yyb616 = r.CheckBreak() + yyb628 = r.CheckBreak() } - if yyb616 { + if yyb628 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9731,17 +9995,17 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj616++ - if yyhl616 { - yyb616 = yyj616 > l + yyj628++ + if yyhl628 { + yyb628 = yyj628 > l } else { - yyb616 = r.CheckBreak() + yyb628 = r.CheckBreak() } - if yyb616 { + if yyb628 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj616-1, "") + z.DecStructFieldNotFound(yyj628-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9753,42 +10017,42 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym620 := z.EncBinary() - _ = yym620 + yym632 := z.EncBinary() + _ = yym632 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep621 := !z.EncBinary() - yy2arr621 := z.EncBasicHandle().StructToArray - var yyq621 [8]bool - _, _, _ = yysep621, yyq621, yy2arr621 - const yyr621 bool = false - yyq621[2] = x.FSType != "" - yyq621[3] = x.RBDPool != "" - yyq621[4] = x.RadosUser != "" - yyq621[5] = x.Keyring != "" - yyq621[6] = x.SecretRef != nil - yyq621[7] = x.ReadOnly != false - var yynn621 int - if yyr621 || yy2arr621 { + yysep633 := !z.EncBinary() + yy2arr633 := z.EncBasicHandle().StructToArray + var yyq633 [8]bool + _, _, _ = yysep633, yyq633, yy2arr633 + const yyr633 bool = false + yyq633[2] = x.FSType != "" + yyq633[3] = x.RBDPool != "" + yyq633[4] = x.RadosUser != "" + yyq633[5] = x.Keyring != "" + yyq633[6] = x.SecretRef != nil + yyq633[7] = x.ReadOnly != false + var yynn633 int + if yyr633 || yy2arr633 { r.EncodeArrayStart(8) } else { - yynn621 = 2 - for _, b := range yyq621 { + yynn633 = 2 + for _, b := range yyq633 { if b { - yynn621++ + yynn633++ } } - r.EncodeMapStart(yynn621) - yynn621 = 0 + r.EncodeMapStart(yynn633) + yynn633 = 0 } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.CephMonitors == nil { r.EncodeNil() } else { - yym623 := z.EncBinary() - _ = yym623 + yym635 := z.EncBinary() + _ = yym635 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) @@ -9801,18 +10065,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.CephMonitors == nil { r.EncodeNil() } else { - yym624 := z.EncBinary() - _ = yym624 + yym636 := z.EncBinary() + _ = yym636 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym626 := z.EncBinary() - _ = yym626 + yym638 := z.EncBinary() + _ = yym638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) @@ -9821,18 +10085,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym627 := z.EncBinary() - _ = yym627 + yym639 := z.EncBinary() + _ = yym639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq621[2] { - yym629 := z.EncBinary() - _ = yym629 + if yyq633[2] { + yym641 := z.EncBinary() + _ = yym641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9841,23 +10105,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq621[2] { + if yyq633[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym630 := z.EncBinary() - _ = yym630 + yym642 := z.EncBinary() + _ = yym642 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq621[3] { - yym632 := z.EncBinary() - _ = yym632 + if yyq633[3] { + yym644 := z.EncBinary() + _ = yym644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) @@ -9866,23 +10130,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq621[3] { + if yyq633[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pool")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym633 := z.EncBinary() - _ = yym633 + yym645 := z.EncBinary() + _ = yym645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq621[4] { - yym635 := z.EncBinary() - _ = yym635 + if yyq633[4] { + yym647 := z.EncBinary() + _ = yym647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) @@ -9891,23 +10155,23 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq621[4] { + if yyq633[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym636 := z.EncBinary() - _ = yym636 + yym648 := z.EncBinary() + _ = yym648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq621[5] { - yym638 := z.EncBinary() - _ = yym638 + if yyq633[5] { + yym650 := z.EncBinary() + _ = yym650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) @@ -9916,21 +10180,21 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq621[5] { + if yyq633[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("keyring")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym639 := z.EncBinary() - _ = yym639 + yym651 := z.EncBinary() + _ = yym651 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq621[6] { + if yyq633[6] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -9940,7 +10204,7 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq621[6] { + if yyq633[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -9951,11 +10215,11 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq621[7] { - yym642 := z.EncBinary() - _ = yym642 + if yyq633[7] { + yym654 := z.EncBinary() + _ = yym654 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9964,19 +10228,19 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq621[7] { + if yyq633[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym643 := z.EncBinary() - _ = yym643 + yym655 := z.EncBinary() + _ = yym655 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr621 || yy2arr621 { + if yyr633 || yy2arr633 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9989,25 +10253,25 @@ func (x *RBDVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym644 := z.DecBinary() - _ = yym644 + yym656 := z.DecBinary() + _ = yym656 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct645 := r.ContainerType() - if yyct645 == codecSelferValueTypeMap1234 { - yyl645 := r.ReadMapStart() - if yyl645 == 0 { + yyct657 := r.ContainerType() + if yyct657 == codecSelferValueTypeMap1234 { + yyl657 := r.ReadMapStart() + if yyl657 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl645, d) + x.codecDecodeSelfFromMap(yyl657, d) } - } else if yyct645 == codecSelferValueTypeArray1234 { - yyl645 := r.ReadArrayStart() - if yyl645 == 0 { + } else if yyct657 == codecSelferValueTypeArray1234 { + yyl657 := r.ReadArrayStart() + if yyl657 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl645, d) + x.codecDecodeSelfFromArray(yyl657, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10019,12 +10283,12 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys646Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys646Slc - var yyhl646 bool = l >= 0 - for yyj646 := 0; ; yyj646++ { - if yyhl646 { - if yyj646 >= l { + var yys658Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys658Slc + var yyhl658 bool = l >= 0 + for yyj658 := 0; ; yyj658++ { + if yyhl658 { + if yyj658 >= l { break } } else { @@ -10033,20 +10297,20 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys646Slc = r.DecodeBytes(yys646Slc, true, true) - yys646 := string(yys646Slc) + yys658Slc = r.DecodeBytes(yys658Slc, true, true) + yys658 := string(yys658Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys646 { + switch yys658 { case "monitors": if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv647 := &x.CephMonitors - yym648 := z.DecBinary() - _ = yym648 + yyv659 := &x.CephMonitors + yym660 := z.DecBinary() + _ = yym660 if false { } else { - z.F.DecSliceStringX(yyv647, false, d) + z.F.DecSliceStringX(yyv659, false, d) } } case "image": @@ -10097,9 +10361,9 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys646) - } // end switch yys646 - } // end for yyj646 + z.DecStructFieldNotFound(-1, yys658) + } // end switch yys658 + } // end for yyj658 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10107,16 +10371,16 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj656 int - var yyb656 bool - var yyhl656 bool = l >= 0 - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + var yyj668 int + var yyb668 bool + var yyhl668 bool = l >= 0 + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10124,21 +10388,21 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv657 := &x.CephMonitors - yym658 := z.DecBinary() - _ = yym658 + yyv669 := &x.CephMonitors + yym670 := z.DecBinary() + _ = yym670 if false { } else { - z.F.DecSliceStringX(yyv657, false, d) + z.F.DecSliceStringX(yyv669, false, d) } } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10148,13 +10412,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDImage = string(r.DecodeString()) } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10164,13 +10428,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10180,13 +10444,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDPool = string(r.DecodeString()) } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10196,13 +10460,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RadosUser = string(r.DecodeString()) } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10212,13 +10476,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Keyring = string(r.DecodeString()) } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10233,13 +10497,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10250,17 +10514,17 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj656++ - if yyhl656 { - yyb656 = yyj656 > l + yyj668++ + if yyhl668 { + yyb668 = yyj668 > l } else { - yyb656 = r.CheckBreak() + yyb668 = r.CheckBreak() } - if yyb656 { + if yyb668 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj656-1, "") + z.DecStructFieldNotFound(yyj668-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10272,35 +10536,35 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym666 := z.EncBinary() - _ = yym666 + yym678 := z.EncBinary() + _ = yym678 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep667 := !z.EncBinary() - yy2arr667 := z.EncBasicHandle().StructToArray - var yyq667 [3]bool - _, _, _ = yysep667, yyq667, yy2arr667 - const yyr667 bool = false - yyq667[1] = x.FSType != "" - yyq667[2] = x.ReadOnly != false - var yynn667 int - if yyr667 || yy2arr667 { + yysep679 := !z.EncBinary() + yy2arr679 := z.EncBasicHandle().StructToArray + var yyq679 [3]bool + _, _, _ = yysep679, yyq679, yy2arr679 + const yyr679 bool = false + yyq679[1] = x.FSType != "" + yyq679[2] = x.ReadOnly != false + var yynn679 int + if yyr679 || yy2arr679 { r.EncodeArrayStart(3) } else { - yynn667 = 1 - for _, b := range yyq667 { + yynn679 = 1 + for _, b := range yyq679 { if b { - yynn667++ + yynn679++ } } - r.EncodeMapStart(yynn667) - yynn667 = 0 + r.EncodeMapStart(yynn679) + yynn679 = 0 } - if yyr667 || yy2arr667 { + if yyr679 || yy2arr679 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym669 := z.EncBinary() - _ = yym669 + yym681 := z.EncBinary() + _ = yym681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -10309,18 +10573,18 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym670 := z.EncBinary() - _ = yym670 + yym682 := z.EncBinary() + _ = yym682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr667 || yy2arr667 { + if yyr679 || yy2arr679 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq667[1] { - yym672 := z.EncBinary() - _ = yym672 + if yyq679[1] { + yym684 := z.EncBinary() + _ = yym684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10329,23 +10593,23 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq667[1] { + if yyq679[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym673 := z.EncBinary() - _ = yym673 + yym685 := z.EncBinary() + _ = yym685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr667 || yy2arr667 { + if yyr679 || yy2arr679 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq667[2] { - yym675 := z.EncBinary() - _ = yym675 + if yyq679[2] { + yym687 := z.EncBinary() + _ = yym687 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10354,19 +10618,19 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq667[2] { + if yyq679[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym676 := z.EncBinary() - _ = yym676 + yym688 := z.EncBinary() + _ = yym688 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr667 || yy2arr667 { + if yyr679 || yy2arr679 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10379,25 +10643,25 @@ func (x *CinderVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym677 := z.DecBinary() - _ = yym677 + yym689 := z.DecBinary() + _ = yym689 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct678 := r.ContainerType() - if yyct678 == codecSelferValueTypeMap1234 { - yyl678 := r.ReadMapStart() - if yyl678 == 0 { + yyct690 := r.ContainerType() + if yyct690 == codecSelferValueTypeMap1234 { + yyl690 := r.ReadMapStart() + if yyl690 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl678, d) + x.codecDecodeSelfFromMap(yyl690, d) } - } else if yyct678 == codecSelferValueTypeArray1234 { - yyl678 := r.ReadArrayStart() - if yyl678 == 0 { + } else if yyct690 == codecSelferValueTypeArray1234 { + yyl690 := r.ReadArrayStart() + if yyl690 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl678, d) + x.codecDecodeSelfFromArray(yyl690, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10409,12 +10673,12 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys679Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys679Slc - var yyhl679 bool = l >= 0 - for yyj679 := 0; ; yyj679++ { - if yyhl679 { - if yyj679 >= l { + var yys691Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys691Slc + var yyhl691 bool = l >= 0 + for yyj691 := 0; ; yyj691++ { + if yyhl691 { + if yyj691 >= l { break } } else { @@ -10423,10 +10687,10 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys679Slc = r.DecodeBytes(yys679Slc, true, true) - yys679 := string(yys679Slc) + yys691Slc = r.DecodeBytes(yys691Slc, true, true) + yys691 := string(yys691Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys679 { + switch yys691 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -10446,9 +10710,9 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys679) - } // end switch yys679 - } // end for yyj679 + z.DecStructFieldNotFound(-1, yys691) + } // end switch yys691 + } // end for yyj691 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10456,16 +10720,16 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj683 int - var yyb683 bool - var yyhl683 bool = l >= 0 - yyj683++ - if yyhl683 { - yyb683 = yyj683 > l + var yyj695 int + var yyb695 bool + var yyhl695 bool = l >= 0 + yyj695++ + if yyhl695 { + yyb695 = yyj695 > l } else { - yyb683 = r.CheckBreak() + yyb695 = r.CheckBreak() } - if yyb683 { + if yyb695 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10475,13 +10739,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.VolumeID = string(r.DecodeString()) } - yyj683++ - if yyhl683 { - yyb683 = yyj683 > l + yyj695++ + if yyhl695 { + yyb695 = yyj695 > l } else { - yyb683 = r.CheckBreak() + yyb695 = r.CheckBreak() } - if yyb683 { + if yyb695 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10491,13 +10755,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.FSType = string(r.DecodeString()) } - yyj683++ - if yyhl683 { - yyb683 = yyj683 > l + yyj695++ + if yyhl695 { + yyb695 = yyj695 > l } else { - yyb683 = r.CheckBreak() + yyb695 = r.CheckBreak() } - if yyb683 { + if yyb695 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10508,17 +10772,17 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj683++ - if yyhl683 { - yyb683 = yyj683 > l + yyj695++ + if yyhl695 { + yyb695 = yyj695 > l } else { - yyb683 = r.CheckBreak() + yyb695 = r.CheckBreak() } - if yyb683 { + if yyb695 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj683-1, "") + z.DecStructFieldNotFound(yyj695-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10530,41 +10794,41 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym687 := z.EncBinary() - _ = yym687 + yym699 := z.EncBinary() + _ = yym699 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep688 := !z.EncBinary() - yy2arr688 := z.EncBasicHandle().StructToArray - var yyq688 [6]bool - _, _, _ = yysep688, yyq688, yy2arr688 - const yyr688 bool = false - yyq688[1] = x.Path != "" - yyq688[2] = x.User != "" - yyq688[3] = x.SecretFile != "" - yyq688[4] = x.SecretRef != nil - yyq688[5] = x.ReadOnly != false - var yynn688 int - if yyr688 || yy2arr688 { + yysep700 := !z.EncBinary() + yy2arr700 := z.EncBasicHandle().StructToArray + var yyq700 [6]bool + _, _, _ = yysep700, yyq700, yy2arr700 + const yyr700 bool = false + yyq700[1] = x.Path != "" + yyq700[2] = x.User != "" + yyq700[3] = x.SecretFile != "" + yyq700[4] = x.SecretRef != nil + yyq700[5] = x.ReadOnly != false + var yynn700 int + if yyr700 || yy2arr700 { r.EncodeArrayStart(6) } else { - yynn688 = 1 - for _, b := range yyq688 { + yynn700 = 1 + for _, b := range yyq700 { if b { - yynn688++ + yynn700++ } } - r.EncodeMapStart(yynn688) - yynn688 = 0 + r.EncodeMapStart(yynn700) + yynn700 = 0 } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Monitors == nil { r.EncodeNil() } else { - yym690 := z.EncBinary() - _ = yym690 + yym702 := z.EncBinary() + _ = yym702 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) @@ -10577,19 +10841,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Monitors == nil { r.EncodeNil() } else { - yym691 := z.EncBinary() - _ = yym691 + yym703 := z.EncBinary() + _ = yym703 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) } } } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq688[1] { - yym693 := z.EncBinary() - _ = yym693 + if yyq700[1] { + yym705 := z.EncBinary() + _ = yym705 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -10598,23 +10862,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq688[1] { + if yyq700[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym694 := z.EncBinary() - _ = yym694 + yym706 := z.EncBinary() + _ = yym706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq688[2] { - yym696 := z.EncBinary() - _ = yym696 + if yyq700[2] { + yym708 := z.EncBinary() + _ = yym708 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -10623,23 +10887,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq688[2] { + if yyq700[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym697 := z.EncBinary() - _ = yym697 + yym709 := z.EncBinary() + _ = yym709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq688[3] { - yym699 := z.EncBinary() - _ = yym699 + if yyq700[3] { + yym711 := z.EncBinary() + _ = yym711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) @@ -10648,21 +10912,21 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq688[3] { + if yyq700[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym700 := z.EncBinary() - _ = yym700 + yym712 := z.EncBinary() + _ = yym712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) } } } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq688[4] { + if yyq700[4] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -10672,7 +10936,7 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq688[4] { + if yyq700[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -10683,11 +10947,11 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq688[5] { - yym703 := z.EncBinary() - _ = yym703 + if yyq700[5] { + yym715 := z.EncBinary() + _ = yym715 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10696,19 +10960,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq688[5] { + if yyq700[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym704 := z.EncBinary() - _ = yym704 + yym716 := z.EncBinary() + _ = yym716 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr688 || yy2arr688 { + if yyr700 || yy2arr700 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10721,25 +10985,25 @@ func (x *CephFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym705 := z.DecBinary() - _ = yym705 + yym717 := z.DecBinary() + _ = yym717 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct706 := r.ContainerType() - if yyct706 == codecSelferValueTypeMap1234 { - yyl706 := r.ReadMapStart() - if yyl706 == 0 { + yyct718 := r.ContainerType() + if yyct718 == codecSelferValueTypeMap1234 { + yyl718 := r.ReadMapStart() + if yyl718 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl706, d) + x.codecDecodeSelfFromMap(yyl718, d) } - } else if yyct706 == codecSelferValueTypeArray1234 { - yyl706 := r.ReadArrayStart() - if yyl706 == 0 { + } else if yyct718 == codecSelferValueTypeArray1234 { + yyl718 := r.ReadArrayStart() + if yyl718 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl706, d) + x.codecDecodeSelfFromArray(yyl718, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10751,12 +11015,12 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys707Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys707Slc - var yyhl707 bool = l >= 0 - for yyj707 := 0; ; yyj707++ { - if yyhl707 { - if yyj707 >= l { + var yys719Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys719Slc + var yyhl719 bool = l >= 0 + for yyj719 := 0; ; yyj719++ { + if yyhl719 { + if yyj719 >= l { break } } else { @@ -10765,20 +11029,20 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys707Slc = r.DecodeBytes(yys707Slc, true, true) - yys707 := string(yys707Slc) + yys719Slc = r.DecodeBytes(yys719Slc, true, true) + yys719 := string(yys719Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys707 { + switch yys719 { case "monitors": if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv708 := &x.Monitors - yym709 := z.DecBinary() - _ = yym709 + yyv720 := &x.Monitors + yym721 := z.DecBinary() + _ = yym721 if false { } else { - z.F.DecSliceStringX(yyv708, false, d) + z.F.DecSliceStringX(yyv720, false, d) } } case "path": @@ -10817,9 +11081,9 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys707) - } // end switch yys707 - } // end for yyj707 + z.DecStructFieldNotFound(-1, yys719) + } // end switch yys719 + } // end for yyj719 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10827,16 +11091,16 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode 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 } @@ -10844,21 +11108,21 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv716 := &x.Monitors - yym717 := z.DecBinary() - _ = yym717 + yyv728 := &x.Monitors + yym729 := z.DecBinary() + _ = yym729 if false { } else { - z.F.DecSliceStringX(yyv716, false, d) + z.F.DecSliceStringX(yyv728, false, d) } } - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10868,13 +11132,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Path = string(r.DecodeString()) } - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10884,13 +11148,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.User = string(r.DecodeString()) } - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10900,13 +11164,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretFile = string(r.DecodeString()) } - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10921,13 +11185,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SecretRef.CodecDecodeSelf(d) } - yyj715++ - if yyhl715 { - yyb715 = yyj715 > l + yyj727++ + if yyhl727 { + yyb727 = yyj727 > l } else { - yyb715 = r.CheckBreak() + yyb727 = r.CheckBreak() } - if yyb715 { + if yyb727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10938,17 +11202,17 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } 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) } @@ -10960,33 +11224,33 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym723 := z.EncBinary() - _ = yym723 + yym735 := z.EncBinary() + _ = yym735 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep724 := !z.EncBinary() - yy2arr724 := z.EncBasicHandle().StructToArray - var yyq724 [1]bool - _, _, _ = yysep724, yyq724, yy2arr724 - const yyr724 bool = false - var yynn724 int - if yyr724 || yy2arr724 { + yysep736 := !z.EncBinary() + yy2arr736 := z.EncBasicHandle().StructToArray + var yyq736 [1]bool + _, _, _ = yysep736, yyq736, yy2arr736 + const yyr736 bool = false + var yynn736 int + if yyr736 || yy2arr736 { r.EncodeArrayStart(1) } else { - yynn724 = 1 - for _, b := range yyq724 { + yynn736 = 1 + for _, b := range yyq736 { if b { - yynn724++ + yynn736++ } } - r.EncodeMapStart(yynn724) - yynn724 = 0 + r.EncodeMapStart(yynn736) + yynn736 = 0 } - if yyr724 || yy2arr724 { + if yyr736 || yy2arr736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym726 := z.EncBinary() - _ = yym726 + yym738 := z.EncBinary() + _ = yym738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) @@ -10995,14 +11259,14 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("datasetName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym727 := z.EncBinary() - _ = yym727 + yym739 := z.EncBinary() + _ = yym739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) } } - if yyr724 || yy2arr724 { + if yyr736 || yy2arr736 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11015,25 +11279,25 @@ func (x *FlockerVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym728 := z.DecBinary() - _ = yym728 + yym740 := z.DecBinary() + _ = yym740 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct729 := r.ContainerType() - if yyct729 == codecSelferValueTypeMap1234 { - yyl729 := r.ReadMapStart() - if yyl729 == 0 { + yyct741 := r.ContainerType() + if yyct741 == codecSelferValueTypeMap1234 { + yyl741 := r.ReadMapStart() + if yyl741 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl729, d) + x.codecDecodeSelfFromMap(yyl741, d) } - } else if yyct729 == codecSelferValueTypeArray1234 { - yyl729 := r.ReadArrayStart() - if yyl729 == 0 { + } else if yyct741 == codecSelferValueTypeArray1234 { + yyl741 := r.ReadArrayStart() + if yyl741 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl729, d) + x.codecDecodeSelfFromArray(yyl741, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11045,12 +11309,12 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys730Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys730Slc - var yyhl730 bool = l >= 0 - for yyj730 := 0; ; yyj730++ { - if yyhl730 { - if yyj730 >= l { + var yys742Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys742Slc + var yyhl742 bool = l >= 0 + for yyj742 := 0; ; yyj742++ { + if yyhl742 { + if yyj742 >= l { break } } else { @@ -11059,10 +11323,10 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys730Slc = r.DecodeBytes(yys730Slc, true, true) - yys730 := string(yys730Slc) + yys742Slc = r.DecodeBytes(yys742Slc, true, true) + yys742 := string(yys742Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys730 { + switch yys742 { case "datasetName": if r.TryDecodeAsNil() { x.DatasetName = "" @@ -11070,9 +11334,9 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.DatasetName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys730) - } // end switch yys730 - } // end for yyj730 + z.DecStructFieldNotFound(-1, yys742) + } // end switch yys742 + } // end for yyj742 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11080,16 +11344,16 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 } @@ -11100,17 +11364,17 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.DatasetName = string(r.DecodeString()) } 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) } @@ -11119,8 +11383,8 @@ func (x StorageMedium) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym734 := z.EncBinary() - _ = yym734 + yym746 := z.EncBinary() + _ = yym746 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -11132,8 +11396,8 @@ func (x *StorageMedium) 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 { @@ -11145,8 +11409,8 @@ func (x Protocol) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym736 := z.EncBinary() - _ = yym736 + yym748 := z.EncBinary() + _ = yym748 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -11158,8 +11422,8 @@ func (x *Protocol) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym737 := z.DecBinary() - _ = yym737 + yym749 := z.DecBinary() + _ = yym749 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -11174,36 +11438,36 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym738 := z.EncBinary() - _ = yym738 + yym750 := z.EncBinary() + _ = yym750 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep739 := !z.EncBinary() - yy2arr739 := z.EncBasicHandle().StructToArray - var yyq739 [4]bool - _, _, _ = yysep739, yyq739, yy2arr739 - const yyr739 bool = false - yyq739[1] = x.FSType != "" - yyq739[2] = x.Partition != 0 - yyq739[3] = x.ReadOnly != false - var yynn739 int - if yyr739 || yy2arr739 { + yysep751 := !z.EncBinary() + yy2arr751 := z.EncBasicHandle().StructToArray + var yyq751 [4]bool + _, _, _ = yysep751, yyq751, yy2arr751 + const yyr751 bool = false + yyq751[1] = x.FSType != "" + yyq751[2] = x.Partition != 0 + yyq751[3] = x.ReadOnly != false + var yynn751 int + if yyr751 || yy2arr751 { r.EncodeArrayStart(4) } else { - yynn739 = 1 - for _, b := range yyq739 { + yynn751 = 1 + for _, b := range yyq751 { if b { - yynn739++ + yynn751++ } } - r.EncodeMapStart(yynn739) - yynn739 = 0 + r.EncodeMapStart(yynn751) + yynn751 = 0 } - if yyr739 || yy2arr739 { + if yyr751 || yy2arr751 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym741 := z.EncBinary() - _ = yym741 + yym753 := z.EncBinary() + _ = yym753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) @@ -11212,18 +11476,18 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pdName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym742 := z.EncBinary() - _ = yym742 + yym754 := z.EncBinary() + _ = yym754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PDName)) } } - if yyr739 || yy2arr739 { + if yyr751 || yy2arr751 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq739[1] { - yym744 := z.EncBinary() - _ = yym744 + if yyq751[1] { + yym756 := z.EncBinary() + _ = yym756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11232,23 +11496,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq739[1] { + if yyq751[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym745 := z.EncBinary() - _ = yym745 + yym757 := z.EncBinary() + _ = yym757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr739 || yy2arr739 { + if yyr751 || yy2arr751 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq739[2] { - yym747 := z.EncBinary() - _ = yym747 + if yyq751[2] { + yym759 := z.EncBinary() + _ = yym759 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -11257,23 +11521,23 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq739[2] { + if yyq751[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym748 := z.EncBinary() - _ = yym748 + yym760 := z.EncBinary() + _ = yym760 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr739 || yy2arr739 { + if yyr751 || yy2arr751 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq739[3] { - yym750 := z.EncBinary() - _ = yym750 + if yyq751[3] { + yym762 := z.EncBinary() + _ = yym762 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11282,19 +11546,19 @@ func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq739[3] { + if yyq751[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym751 := z.EncBinary() - _ = yym751 + yym763 := z.EncBinary() + _ = yym763 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr739 || yy2arr739 { + if yyr751 || yy2arr751 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11307,25 +11571,25 @@ func (x *GCEPersistentDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym752 := z.DecBinary() - _ = yym752 + yym764 := z.DecBinary() + _ = yym764 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct753 := r.ContainerType() - if yyct753 == codecSelferValueTypeMap1234 { - yyl753 := r.ReadMapStart() - if yyl753 == 0 { + yyct765 := r.ContainerType() + if yyct765 == codecSelferValueTypeMap1234 { + yyl765 := r.ReadMapStart() + if yyl765 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl753, d) + x.codecDecodeSelfFromMap(yyl765, d) } - } else if yyct753 == codecSelferValueTypeArray1234 { - yyl753 := r.ReadArrayStart() - if yyl753 == 0 { + } else if yyct765 == codecSelferValueTypeArray1234 { + yyl765 := r.ReadArrayStart() + if yyl765 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl753, d) + x.codecDecodeSelfFromArray(yyl765, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11337,12 +11601,12 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys754Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys754Slc - var yyhl754 bool = l >= 0 - for yyj754 := 0; ; yyj754++ { - if yyhl754 { - if yyj754 >= l { + var yys766Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys766Slc + var yyhl766 bool = l >= 0 + for yyj766 := 0; ; yyj766++ { + if yyhl766 { + if yyj766 >= l { break } } else { @@ -11351,10 +11615,10 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys754Slc = r.DecodeBytes(yys754Slc, true, true) - yys754 := string(yys754Slc) + yys766Slc = r.DecodeBytes(yys766Slc, true, true) + yys766 := string(yys766Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys754 { + switch yys766 { case "pdName": if r.TryDecodeAsNil() { x.PDName = "" @@ -11380,9 +11644,9 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec19 x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys754) - } // end switch yys754 - } // end for yyj754 + z.DecStructFieldNotFound(-1, yys766) + } // end switch yys766 + } // end for yyj766 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11390,16 +11654,16 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj759 int - var yyb759 bool - var yyhl759 bool = l >= 0 - yyj759++ - if yyhl759 { - yyb759 = yyj759 > l + var yyj771 int + var yyb771 bool + var yyhl771 bool = l >= 0 + yyj771++ + if yyhl771 { + yyb771 = yyj771 > l } else { - yyb759 = r.CheckBreak() + yyb771 = r.CheckBreak() } - if yyb759 { + if yyb771 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11409,13 +11673,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.PDName = string(r.DecodeString()) } - yyj759++ - if yyhl759 { - yyb759 = yyj759 > l + yyj771++ + if yyhl771 { + yyb771 = yyj771 > l } else { - yyb759 = r.CheckBreak() + yyb771 = r.CheckBreak() } - if yyb759 { + if yyb771 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11425,13 +11689,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.FSType = string(r.DecodeString()) } - yyj759++ - if yyhl759 { - yyb759 = yyj759 > l + yyj771++ + if yyhl771 { + yyb771 = yyj771 > l } else { - yyb759 = r.CheckBreak() + yyb771 = r.CheckBreak() } - if yyb759 { + if yyb771 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11441,13 +11705,13 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec } else { x.Partition = int32(r.DecodeInt(32)) } - yyj759++ - if yyhl759 { - yyb759 = yyj759 > l + yyj771++ + if yyhl771 { + yyb771 = yyj771 > l } else { - yyb759 = r.CheckBreak() + yyb771 = r.CheckBreak() } - if yyb759 { + if yyb771 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11458,17 +11722,17 @@ func (x *GCEPersistentDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj759++ - if yyhl759 { - yyb759 = yyj759 > l + yyj771++ + if yyhl771 { + yyb771 = yyj771 > l } else { - yyb759 = r.CheckBreak() + yyb771 = r.CheckBreak() } - if yyb759 { + if yyb771 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj759-1, "") + z.DecStructFieldNotFound(yyj771-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11480,36 +11744,36 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym764 := z.EncBinary() - _ = yym764 + yym776 := z.EncBinary() + _ = yym776 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep765 := !z.EncBinary() - yy2arr765 := z.EncBasicHandle().StructToArray - var yyq765 [5]bool - _, _, _ = yysep765, yyq765, yy2arr765 - const yyr765 bool = false - yyq765[2] = x.ReadOnly != false - yyq765[3] = x.User != "" - yyq765[4] = x.Group != "" - var yynn765 int - if yyr765 || yy2arr765 { + yysep777 := !z.EncBinary() + yy2arr777 := z.EncBasicHandle().StructToArray + var yyq777 [5]bool + _, _, _ = yysep777, yyq777, yy2arr777 + const yyr777 bool = false + yyq777[2] = x.ReadOnly != false + yyq777[3] = x.User != "" + yyq777[4] = x.Group != "" + var yynn777 int + if yyr777 || yy2arr777 { r.EncodeArrayStart(5) } else { - yynn765 = 2 - for _, b := range yyq765 { + yynn777 = 2 + for _, b := range yyq777 { if b { - yynn765++ + yynn777++ } } - r.EncodeMapStart(yynn765) - yynn765 = 0 + r.EncodeMapStart(yynn777) + yynn777 = 0 } - if yyr765 || yy2arr765 { + if yyr777 || yy2arr777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym767 := z.EncBinary() - _ = yym767 + yym779 := z.EncBinary() + _ = yym779 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) @@ -11518,17 +11782,17 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("registry")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym768 := z.EncBinary() - _ = yym768 + yym780 := z.EncBinary() + _ = yym780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Registry)) } } - if yyr765 || yy2arr765 { + if yyr777 || yy2arr777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym770 := z.EncBinary() - _ = yym770 + yym782 := z.EncBinary() + _ = yym782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) @@ -11537,18 +11801,18 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volume")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym771 := z.EncBinary() - _ = yym771 + yym783 := z.EncBinary() + _ = yym783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Volume)) } } - if yyr765 || yy2arr765 { + if yyr777 || yy2arr777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq765[2] { - yym773 := z.EncBinary() - _ = yym773 + if yyq777[2] { + yym785 := z.EncBinary() + _ = yym785 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11557,23 +11821,23 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq765[2] { + if yyq777[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym774 := z.EncBinary() - _ = yym774 + yym786 := z.EncBinary() + _ = yym786 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr765 || yy2arr765 { + if yyr777 || yy2arr777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq765[3] { - yym776 := z.EncBinary() - _ = yym776 + if yyq777[3] { + yym788 := z.EncBinary() + _ = yym788 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -11582,23 +11846,23 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq765[3] { + if yyq777[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym777 := z.EncBinary() - _ = yym777 + yym789 := z.EncBinary() + _ = yym789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr765 || yy2arr765 { + if yyr777 || yy2arr777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq765[4] { - yym779 := z.EncBinary() - _ = yym779 + if yyq777[4] { + yym791 := z.EncBinary() + _ = yym791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Group)) @@ -11607,19 +11871,19 @@ func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq765[4] { + if yyq777[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("group")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym780 := z.EncBinary() - _ = yym780 + yym792 := z.EncBinary() + _ = yym792 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Group)) } } } - if yyr765 || yy2arr765 { + if yyr777 || yy2arr777 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11632,25 +11896,25 @@ func (x *QuobyteVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym781 := z.DecBinary() - _ = yym781 + yym793 := z.DecBinary() + _ = yym793 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct782 := r.ContainerType() - if yyct782 == codecSelferValueTypeMap1234 { - yyl782 := r.ReadMapStart() - if yyl782 == 0 { + yyct794 := r.ContainerType() + if yyct794 == codecSelferValueTypeMap1234 { + yyl794 := r.ReadMapStart() + if yyl794 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl782, d) + x.codecDecodeSelfFromMap(yyl794, d) } - } else if yyct782 == codecSelferValueTypeArray1234 { - yyl782 := r.ReadArrayStart() - if yyl782 == 0 { + } else if yyct794 == codecSelferValueTypeArray1234 { + yyl794 := r.ReadArrayStart() + if yyl794 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl782, d) + x.codecDecodeSelfFromArray(yyl794, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11662,12 +11926,12 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys783Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys783Slc - var yyhl783 bool = l >= 0 - for yyj783 := 0; ; yyj783++ { - if yyhl783 { - if yyj783 >= l { + var yys795Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys795Slc + var yyhl795 bool = l >= 0 + for yyj795 := 0; ; yyj795++ { + if yyhl795 { + if yyj795 >= l { break } } else { @@ -11676,10 +11940,10 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys783Slc = r.DecodeBytes(yys783Slc, true, true) - yys783 := string(yys783Slc) + yys795Slc = r.DecodeBytes(yys795Slc, true, true) + yys795 := string(yys795Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys783 { + switch yys795 { case "registry": if r.TryDecodeAsNil() { x.Registry = "" @@ -11711,9 +11975,9 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Group = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys783) - } // end switch yys783 - } // end for yyj783 + z.DecStructFieldNotFound(-1, yys795) + } // end switch yys795 + } // end for yyj795 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11721,16 +11985,16 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj789 int - var yyb789 bool - var yyhl789 bool = l >= 0 - yyj789++ - if yyhl789 { - yyb789 = yyj789 > l + var yyj801 int + var yyb801 bool + var yyhl801 bool = l >= 0 + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb789 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb789 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11740,13 +12004,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Registry = string(r.DecodeString()) } - yyj789++ - if yyhl789 { - yyb789 = yyj789 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb789 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb789 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11756,13 +12020,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Volume = string(r.DecodeString()) } - yyj789++ - if yyhl789 { - yyb789 = yyj789 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb789 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb789 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11772,13 +12036,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj789++ - if yyhl789 { - yyb789 = yyj789 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb789 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb789 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11788,13 +12052,13 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.User = string(r.DecodeString()) } - yyj789++ - if yyhl789 { - yyb789 = yyj789 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb789 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb789 { + if yyb801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11805,17 +12069,17 @@ func (x *QuobyteVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Group = string(r.DecodeString()) } for { - yyj789++ - if yyhl789 { - yyb789 = yyj789 > l + yyj801++ + if yyhl801 { + yyb801 = yyj801 > l } else { - yyb789 = r.CheckBreak() + yyb801 = r.CheckBreak() } - if yyb789 { + if yyb801 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj789-1, "") + z.DecStructFieldNotFound(yyj801-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11827,37 +12091,37 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym795 := z.EncBinary() - _ = yym795 + yym807 := z.EncBinary() + _ = yym807 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep796 := !z.EncBinary() - yy2arr796 := z.EncBasicHandle().StructToArray - var yyq796 [5]bool - _, _, _ = yysep796, yyq796, yy2arr796 - const yyr796 bool = false - yyq796[1] = x.FSType != "" - yyq796[2] = x.SecretRef != nil - yyq796[3] = x.ReadOnly != false - yyq796[4] = len(x.Options) != 0 - var yynn796 int - if yyr796 || yy2arr796 { + yysep808 := !z.EncBinary() + yy2arr808 := z.EncBasicHandle().StructToArray + var yyq808 [5]bool + _, _, _ = yysep808, yyq808, yy2arr808 + const yyr808 bool = false + yyq808[1] = x.FSType != "" + yyq808[2] = x.SecretRef != nil + yyq808[3] = x.ReadOnly != false + yyq808[4] = len(x.Options) != 0 + var yynn808 int + if yyr808 || yy2arr808 { r.EncodeArrayStart(5) } else { - yynn796 = 1 - for _, b := range yyq796 { + yynn808 = 1 + for _, b := range yyq808 { if b { - yynn796++ + yynn808++ } } - r.EncodeMapStart(yynn796) - yynn796 = 0 + r.EncodeMapStart(yynn808) + yynn808 = 0 } - if yyr796 || yy2arr796 { + if yyr808 || yy2arr808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym798 := z.EncBinary() - _ = yym798 + yym810 := z.EncBinary() + _ = yym810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) @@ -11866,18 +12130,18 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("driver")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym799 := z.EncBinary() - _ = yym799 + yym811 := z.EncBinary() + _ = yym811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Driver)) } } - if yyr796 || yy2arr796 { + if yyr808 || yy2arr808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq796[1] { - yym801 := z.EncBinary() - _ = yym801 + if yyq808[1] { + yym813 := z.EncBinary() + _ = yym813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11886,21 +12150,21 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq796[1] { + if yyq808[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym802 := z.EncBinary() - _ = yym802 + yym814 := z.EncBinary() + _ = yym814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr796 || yy2arr796 { + if yyr808 || yy2arr808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq796[2] { + if yyq808[2] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -11910,7 +12174,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq796[2] { + if yyq808[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -11921,11 +12185,11 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr796 || yy2arr796 { + if yyr808 || yy2arr808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq796[3] { - yym805 := z.EncBinary() - _ = yym805 + if yyq808[3] { + yym817 := z.EncBinary() + _ = yym817 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11934,26 +12198,26 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq796[3] { + if yyq808[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym806 := z.EncBinary() - _ = yym806 + yym818 := z.EncBinary() + _ = yym818 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr796 || yy2arr796 { + if yyr808 || yy2arr808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq796[4] { + if yyq808[4] { if x.Options == nil { r.EncodeNil() } else { - yym808 := z.EncBinary() - _ = yym808 + yym820 := z.EncBinary() + _ = yym820 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -11963,15 +12227,15 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq796[4] { + if yyq808[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("options")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Options == nil { r.EncodeNil() } else { - yym809 := z.EncBinary() - _ = yym809 + yym821 := z.EncBinary() + _ = yym821 if false { } else { z.F.EncMapStringStringV(x.Options, false, e) @@ -11979,7 +12243,7 @@ func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr796 || yy2arr796 { + if yyr808 || yy2arr808 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11992,25 +12256,25 @@ func (x *FlexVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym810 := z.DecBinary() - _ = yym810 + yym822 := z.DecBinary() + _ = yym822 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct811 := r.ContainerType() - if yyct811 == codecSelferValueTypeMap1234 { - yyl811 := r.ReadMapStart() - if yyl811 == 0 { + yyct823 := r.ContainerType() + if yyct823 == codecSelferValueTypeMap1234 { + yyl823 := r.ReadMapStart() + if yyl823 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl811, d) + x.codecDecodeSelfFromMap(yyl823, d) } - } else if yyct811 == codecSelferValueTypeArray1234 { - yyl811 := r.ReadArrayStart() - if yyl811 == 0 { + } else if yyct823 == codecSelferValueTypeArray1234 { + yyl823 := r.ReadArrayStart() + if yyl823 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl811, d) + x.codecDecodeSelfFromArray(yyl823, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12022,12 +12286,12 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys812Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys812Slc - var yyhl812 bool = l >= 0 - for yyj812 := 0; ; yyj812++ { - if yyhl812 { - if yyj812 >= l { + var yys824Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys824Slc + var yyhl824 bool = l >= 0 + for yyj824 := 0; ; yyj824++ { + if yyhl824 { + if yyj824 >= l { break } } else { @@ -12036,10 +12300,10 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys812Slc = r.DecodeBytes(yys812Slc, true, true) - yys812 := string(yys812Slc) + yys824Slc = r.DecodeBytes(yys824Slc, true, true) + yys824 := string(yys824Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys812 { + switch yys824 { case "driver": if r.TryDecodeAsNil() { x.Driver = "" @@ -12073,18 +12337,18 @@ func (x *FlexVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Options = nil } else { - yyv817 := &x.Options - yym818 := z.DecBinary() - _ = yym818 + yyv829 := &x.Options + yym830 := z.DecBinary() + _ = yym830 if false { } else { - z.F.DecMapStringStringX(yyv817, false, d) + z.F.DecMapStringStringX(yyv829, false, d) } } default: - z.DecStructFieldNotFound(-1, yys812) - } // end switch yys812 - } // end for yyj812 + z.DecStructFieldNotFound(-1, yys824) + } // end switch yys824 + } // end for yyj824 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12092,16 +12356,16 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj819 int - var yyb819 bool - var yyhl819 bool = l >= 0 - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + var yyj831 int + var yyb831 bool + var yyhl831 bool = l >= 0 + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12111,13 +12375,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Driver = string(r.DecodeString()) } - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12127,13 +12391,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12148,13 +12412,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12164,13 +12428,13 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12178,26 +12442,26 @@ func (x *FlexVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Options = nil } else { - yyv824 := &x.Options - yym825 := z.DecBinary() - _ = yym825 + yyv836 := &x.Options + yym837 := z.DecBinary() + _ = yym837 if false { } else { - z.F.DecMapStringStringX(yyv824, false, d) + z.F.DecMapStringStringX(yyv836, false, d) } } for { - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj831++ + if yyhl831 { + yyb831 = yyj831 > l } else { - yyb819 = r.CheckBreak() + yyb831 = r.CheckBreak() } - if yyb819 { + if yyb831 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj819-1, "") + z.DecStructFieldNotFound(yyj831-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12209,36 +12473,36 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) if x == nil { r.EncodeNil() } else { - yym826 := z.EncBinary() - _ = yym826 + yym838 := z.EncBinary() + _ = yym838 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep827 := !z.EncBinary() - yy2arr827 := z.EncBasicHandle().StructToArray - var yyq827 [4]bool - _, _, _ = yysep827, yyq827, yy2arr827 - const yyr827 bool = false - yyq827[1] = x.FSType != "" - yyq827[2] = x.Partition != 0 - yyq827[3] = x.ReadOnly != false - var yynn827 int - if yyr827 || yy2arr827 { + yysep839 := !z.EncBinary() + yy2arr839 := z.EncBasicHandle().StructToArray + var yyq839 [4]bool + _, _, _ = yysep839, yyq839, yy2arr839 + const yyr839 bool = false + yyq839[1] = x.FSType != "" + yyq839[2] = x.Partition != 0 + yyq839[3] = x.ReadOnly != false + var yynn839 int + if yyr839 || yy2arr839 { r.EncodeArrayStart(4) } else { - yynn827 = 1 - for _, b := range yyq827 { + yynn839 = 1 + for _, b := range yyq839 { if b { - yynn827++ + yynn839++ } } - r.EncodeMapStart(yynn827) - yynn827 = 0 + r.EncodeMapStart(yynn839) + yynn839 = 0 } - if yyr827 || yy2arr827 { + if yyr839 || yy2arr839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym829 := z.EncBinary() - _ = yym829 + yym841 := z.EncBinary() + _ = yym841 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -12247,18 +12511,18 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym830 := z.EncBinary() - _ = yym830 + yym842 := z.EncBinary() + _ = yym842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr827 || yy2arr827 { + if yyr839 || yy2arr839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq827[1] { - yym832 := z.EncBinary() - _ = yym832 + if yyq839[1] { + yym844 := z.EncBinary() + _ = yym844 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -12267,23 +12531,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq827[1] { + if yyq839[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym833 := z.EncBinary() - _ = yym833 + yym845 := z.EncBinary() + _ = yym845 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr827 || yy2arr827 { + if yyr839 || yy2arr839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq827[2] { - yym835 := z.EncBinary() - _ = yym835 + if yyq839[2] { + yym847 := z.EncBinary() + _ = yym847 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -12292,23 +12556,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeInt(0) } } else { - if yyq827[2] { + if yyq839[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym836 := z.EncBinary() - _ = yym836 + yym848 := z.EncBinary() + _ = yym848 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr827 || yy2arr827 { + if yyr839 || yy2arr839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq827[3] { - yym838 := z.EncBinary() - _ = yym838 + if yyq839[3] { + yym850 := z.EncBinary() + _ = yym850 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12317,19 +12581,19 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeBool(false) } } else { - if yyq827[3] { + if yyq839[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym839 := z.EncBinary() - _ = yym839 + yym851 := z.EncBinary() + _ = yym851 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr827 || yy2arr827 { + if yyr839 || yy2arr839 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12342,25 +12606,25 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym840 := z.DecBinary() - _ = yym840 + yym852 := z.DecBinary() + _ = yym852 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct841 := r.ContainerType() - if yyct841 == codecSelferValueTypeMap1234 { - yyl841 := r.ReadMapStart() - if yyl841 == 0 { + yyct853 := r.ContainerType() + if yyct853 == codecSelferValueTypeMap1234 { + yyl853 := r.ReadMapStart() + if yyl853 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl841, d) + x.codecDecodeSelfFromMap(yyl853, d) } - } else if yyct841 == codecSelferValueTypeArray1234 { - yyl841 := r.ReadArrayStart() - if yyl841 == 0 { + } else if yyct853 == codecSelferValueTypeArray1234 { + yyl853 := r.ReadArrayStart() + if yyl853 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl841, d) + x.codecDecodeSelfFromArray(yyl853, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12372,12 +12636,12 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys842Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys842Slc - var yyhl842 bool = l >= 0 - for yyj842 := 0; ; yyj842++ { - if yyhl842 { - if yyj842 >= l { + var yys854Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys854Slc + var yyhl854 bool = l >= 0 + for yyj854 := 0; ; yyj854++ { + if yyhl854 { + if yyj854 >= l { break } } else { @@ -12386,10 +12650,10 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys842Slc = r.DecodeBytes(yys842Slc, true, true) - yys842 := string(yys842Slc) + yys854Slc = r.DecodeBytes(yys854Slc, true, true) + yys854 := string(yys854Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys842 { + switch yys854 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -12415,9 +12679,9 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys842) - } // end switch yys842 - } // end for yyj842 + z.DecStructFieldNotFound(-1, yys854) + } // end switch yys854 + } // end for yyj854 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12425,16 +12689,16 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj847 int - var yyb847 bool - var yyhl847 bool = l >= 0 - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + var yyj859 int + var yyb859 bool + var yyhl859 bool = l >= 0 + yyj859++ + if yyhl859 { + yyb859 = yyj859 > l } else { - yyb847 = r.CheckBreak() + yyb859 = r.CheckBreak() } - if yyb847 { + if yyb859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12444,13 +12708,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.VolumeID = string(r.DecodeString()) } - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + yyj859++ + if yyhl859 { + yyb859 = yyj859 > l } else { - yyb847 = r.CheckBreak() + yyb859 = r.CheckBreak() } - if yyb847 { + if yyb859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12460,13 +12724,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.FSType = string(r.DecodeString()) } - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + yyj859++ + if yyhl859 { + yyb859 = yyj859 > l } else { - yyb847 = r.CheckBreak() + yyb859 = r.CheckBreak() } - if yyb847 { + if yyb859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12476,13 +12740,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.Partition = int32(r.DecodeInt(32)) } - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + yyj859++ + if yyhl859 { + yyb859 = yyj859 > l } else { - yyb847 = r.CheckBreak() + yyb859 = r.CheckBreak() } - if yyb847 { + if yyb859 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12493,17 +12757,17 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co x.ReadOnly = bool(r.DecodeBool()) } for { - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + yyj859++ + if yyhl859 { + yyb859 = yyj859 > l } else { - yyb847 = r.CheckBreak() + yyb859 = r.CheckBreak() } - if yyb847 { + if yyb859 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj847-1, "") + z.DecStructFieldNotFound(yyj859-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12515,35 +12779,35 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym852 := z.EncBinary() - _ = yym852 + yym864 := z.EncBinary() + _ = yym864 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[1] = x.Revision != "" - yyq853[2] = x.Directory != "" - var yynn853 int - if yyr853 || yy2arr853 { + yysep865 := !z.EncBinary() + yy2arr865 := z.EncBasicHandle().StructToArray + var yyq865 [3]bool + _, _, _ = yysep865, yyq865, yy2arr865 + const yyr865 bool = false + yyq865[1] = x.Revision != "" + yyq865[2] = x.Directory != "" + var yynn865 int + if yyr865 || yy2arr865 { r.EncodeArrayStart(3) } else { - yynn853 = 1 - for _, b := range yyq853 { + yynn865 = 1 + for _, b := range yyq865 { if b { - yynn853++ + yynn865++ } } - r.EncodeMapStart(yynn853) - yynn853 = 0 + r.EncodeMapStart(yynn865) + yynn865 = 0 } - if yyr853 || yy2arr853 { + if yyr865 || yy2arr865 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym855 := z.EncBinary() - _ = yym855 + yym867 := z.EncBinary() + _ = yym867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) @@ -12552,18 +12816,18 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("repository")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym856 := z.EncBinary() - _ = yym856 + yym868 := z.EncBinary() + _ = yym868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) } } - if yyr853 || yy2arr853 { + if yyr865 || yy2arr865 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq853[1] { - yym858 := z.EncBinary() - _ = yym858 + if yyq865[1] { + yym870 := z.EncBinary() + _ = yym870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) @@ -12572,23 +12836,23 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq853[1] { + if yyq865[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("revision")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym859 := z.EncBinary() - _ = yym859 + yym871 := z.EncBinary() + _ = yym871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) } } } - if yyr853 || yy2arr853 { + if yyr865 || yy2arr865 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq853[2] { - yym861 := z.EncBinary() - _ = yym861 + if yyq865[2] { + yym873 := z.EncBinary() + _ = yym873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) @@ -12597,19 +12861,19 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq853[2] { + if yyq865[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("directory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym862 := z.EncBinary() - _ = yym862 + yym874 := z.EncBinary() + _ = yym874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) } } } - if yyr853 || yy2arr853 { + if yyr865 || yy2arr865 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12622,25 +12886,25 @@ func (x *GitRepoVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym863 := z.DecBinary() - _ = yym863 + yym875 := z.DecBinary() + _ = yym875 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct864 := r.ContainerType() - if yyct864 == codecSelferValueTypeMap1234 { - yyl864 := r.ReadMapStart() - if yyl864 == 0 { + yyct876 := r.ContainerType() + if yyct876 == codecSelferValueTypeMap1234 { + yyl876 := r.ReadMapStart() + if yyl876 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl864, d) + x.codecDecodeSelfFromMap(yyl876, d) } - } else if yyct864 == codecSelferValueTypeArray1234 { - yyl864 := r.ReadArrayStart() - if yyl864 == 0 { + } else if yyct876 == codecSelferValueTypeArray1234 { + yyl876 := r.ReadArrayStart() + if yyl876 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl864, d) + x.codecDecodeSelfFromArray(yyl876, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12652,12 +12916,12 @@ func (x *GitRepoVolumeSource) 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 yys877Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys877Slc + var yyhl877 bool = l >= 0 + for yyj877 := 0; ; yyj877++ { + if yyhl877 { + if yyj877 >= l { break } } else { @@ -12666,10 +12930,10 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys865Slc = r.DecodeBytes(yys865Slc, true, true) - yys865 := string(yys865Slc) + yys877Slc = r.DecodeBytes(yys877Slc, true, true) + yys877 := string(yys877Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys865 { + switch yys877 { case "repository": if r.TryDecodeAsNil() { x.Repository = "" @@ -12689,9 +12953,9 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Directory = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys865) - } // end switch yys865 - } // end for yyj865 + z.DecStructFieldNotFound(-1, yys877) + } // end switch yys877 + } // end for yyj877 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12699,16 +12963,16 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 yyj881 int + var yyb881 bool + var yyhl881 bool = l >= 0 + yyj881++ + if yyhl881 { + yyb881 = yyj881 > l } else { - yyb869 = r.CheckBreak() + yyb881 = r.CheckBreak() } - if yyb869 { + if yyb881 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12718,13 +12982,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Repository = string(r.DecodeString()) } - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj881++ + if yyhl881 { + yyb881 = yyj881 > l } else { - yyb869 = r.CheckBreak() + yyb881 = r.CheckBreak() } - if yyb869 { + if yyb881 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12734,13 +12998,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Revision = string(r.DecodeString()) } - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj881++ + if yyhl881 { + yyb881 = yyj881 > l } else { - yyb869 = r.CheckBreak() + yyb881 = r.CheckBreak() } - if yyb869 { + if yyb881 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12751,17 +13015,17 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Directory = string(r.DecodeString()) } for { - yyj869++ - if yyhl869 { - yyb869 = yyj869 > l + yyj881++ + if yyhl881 { + yyb881 = yyj881 > l } else { - yyb869 = r.CheckBreak() + yyb881 = r.CheckBreak() } - if yyb869 { + if yyb881 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj869-1, "") + z.DecStructFieldNotFound(yyj881-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12773,37 +13037,37 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym873 := z.EncBinary() - _ = yym873 + yym885 := z.EncBinary() + _ = yym885 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[0] = x.SecretName != "" - yyq874[1] = len(x.Items) != 0 - yyq874[2] = x.DefaultMode != nil - var yynn874 int - if yyr874 || yy2arr874 { + yysep886 := !z.EncBinary() + yy2arr886 := z.EncBasicHandle().StructToArray + var yyq886 [3]bool + _, _, _ = yysep886, yyq886, yy2arr886 + const yyr886 bool = false + yyq886[0] = x.SecretName != "" + yyq886[1] = len(x.Items) != 0 + yyq886[2] = x.DefaultMode != nil + var yynn886 int + if yyr886 || yy2arr886 { r.EncodeArrayStart(3) } else { - yynn874 = 0 - for _, b := range yyq874 { + yynn886 = 0 + for _, b := range yyq886 { if b { - yynn874++ + yynn886++ } } - r.EncodeMapStart(yynn874) - yynn874 = 0 + r.EncodeMapStart(yynn886) + yynn886 = 0 } - if yyr874 || yy2arr874 { + if yyr886 || yy2arr886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[0] { - yym876 := z.EncBinary() - _ = yym876 + if yyq886[0] { + yym888 := z.EncBinary() + _ = yym888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -12812,26 +13076,26 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq874[0] { + if yyq886[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym877 := z.EncBinary() - _ = yym877 + yym889 := z.EncBinary() + _ = yym889 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } } - if yyr874 || yy2arr874 { + if yyr886 || yy2arr886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[1] { + if yyq886[1] { if x.Items == nil { r.EncodeNil() } else { - yym879 := z.EncBinary() - _ = yym879 + yym891 := z.EncBinary() + _ = yym891 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -12841,15 +13105,15 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq874[1] { + if yyq886[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym880 := z.EncBinary() - _ = yym880 + yym892 := z.EncBinary() + _ = yym892 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -12857,42 +13121,42 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr874 || yy2arr874 { + if yyr886 || yy2arr886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq874[2] { + if yyq886[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy882 := *x.DefaultMode - yym883 := z.EncBinary() - _ = yym883 + yy894 := *x.DefaultMode + yym895 := z.EncBinary() + _ = yym895 if false { } else { - r.EncodeInt(int64(yy882)) + r.EncodeInt(int64(yy894)) } } } else { r.EncodeNil() } } else { - if yyq874[2] { + if yyq886[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy884 := *x.DefaultMode - yym885 := z.EncBinary() - _ = yym885 + yy896 := *x.DefaultMode + yym897 := z.EncBinary() + _ = yym897 if false { } else { - r.EncodeInt(int64(yy884)) + r.EncodeInt(int64(yy896)) } } } } - if yyr874 || yy2arr874 { + if yyr886 || yy2arr886 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12905,25 +13169,25 @@ func (x *SecretVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym886 := z.DecBinary() - _ = yym886 + yym898 := z.DecBinary() + _ = yym898 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct887 := r.ContainerType() - if yyct887 == codecSelferValueTypeMap1234 { - yyl887 := r.ReadMapStart() - if yyl887 == 0 { + yyct899 := r.ContainerType() + if yyct899 == codecSelferValueTypeMap1234 { + yyl899 := r.ReadMapStart() + if yyl899 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl887, d) + x.codecDecodeSelfFromMap(yyl899, d) } - } else if yyct887 == codecSelferValueTypeArray1234 { - yyl887 := r.ReadArrayStart() - if yyl887 == 0 { + } else if yyct899 == codecSelferValueTypeArray1234 { + yyl899 := r.ReadArrayStart() + if yyl899 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl887, d) + x.codecDecodeSelfFromArray(yyl899, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12935,12 +13199,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys888Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys888Slc - var yyhl888 bool = l >= 0 - for yyj888 := 0; ; yyj888++ { - if yyhl888 { - if yyj888 >= l { + var yys900Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys900Slc + var yyhl900 bool = l >= 0 + for yyj900 := 0; ; yyj900++ { + if yyhl900 { + if yyj900 >= l { break } } else { @@ -12949,10 +13213,10 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys888Slc = r.DecodeBytes(yys888Slc, true, true) - yys888 := string(yys888Slc) + yys900Slc = r.DecodeBytes(yys900Slc, true, true) + yys900 := string(yys900Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys888 { + switch yys900 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -12963,12 +13227,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv890 := &x.Items - yym891 := z.DecBinary() - _ = yym891 + yyv902 := &x.Items + yym903 := z.DecBinary() + _ = yym903 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv890), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv902), d) } } case "defaultMode": @@ -12980,17 +13244,17 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym893 := z.DecBinary() - _ = yym893 + yym905 := z.DecBinary() + _ = yym905 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys888) - } // end switch yys888 - } // end for yyj888 + z.DecStructFieldNotFound(-1, yys900) + } // end switch yys900 + } // end for yyj900 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12998,16 +13262,16 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj894 int - var yyb894 bool - var yyhl894 bool = l >= 0 - yyj894++ - if yyhl894 { - yyb894 = yyj894 > l + var yyj906 int + var yyb906 bool + var yyhl906 bool = l >= 0 + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb894 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb894 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13017,13 +13281,13 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretName = string(r.DecodeString()) } - yyj894++ - if yyhl894 { - yyb894 = yyj894 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb894 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb894 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13031,21 +13295,21 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv896 := &x.Items - yym897 := z.DecBinary() - _ = yym897 + yyv908 := &x.Items + yym909 := z.DecBinary() + _ = yym909 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv896), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv908), d) } } - yyj894++ - if yyhl894 { - yyb894 = yyj894 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb894 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb894 { + if yyb906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13058,25 +13322,25 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym899 := z.DecBinary() - _ = yym899 + yym911 := z.DecBinary() + _ = yym911 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj894++ - if yyhl894 { - yyb894 = yyj894 > l + yyj906++ + if yyhl906 { + yyb906 = yyj906 > l } else { - yyb894 = r.CheckBreak() + yyb906 = r.CheckBreak() } - if yyb894 { + if yyb906 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj894-1, "") + z.DecStructFieldNotFound(yyj906-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13088,34 +13352,34 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym900 := z.EncBinary() - _ = yym900 + yym912 := z.EncBinary() + _ = yym912 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep901 := !z.EncBinary() - yy2arr901 := z.EncBasicHandle().StructToArray - var yyq901 [3]bool - _, _, _ = yysep901, yyq901, yy2arr901 - const yyr901 bool = false - yyq901[2] = x.ReadOnly != false - var yynn901 int - if yyr901 || yy2arr901 { + yysep913 := !z.EncBinary() + yy2arr913 := z.EncBasicHandle().StructToArray + var yyq913 [3]bool + _, _, _ = yysep913, yyq913, yy2arr913 + const yyr913 bool = false + yyq913[2] = x.ReadOnly != false + var yynn913 int + if yyr913 || yy2arr913 { r.EncodeArrayStart(3) } else { - yynn901 = 2 - for _, b := range yyq901 { + yynn913 = 2 + for _, b := range yyq913 { if b { - yynn901++ + yynn913++ } } - r.EncodeMapStart(yynn901) - yynn901 = 0 + r.EncodeMapStart(yynn913) + yynn913 = 0 } - if yyr901 || yy2arr901 { + if yyr913 || yy2arr913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym903 := z.EncBinary() - _ = yym903 + yym915 := z.EncBinary() + _ = yym915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) @@ -13124,17 +13388,17 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("server")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym904 := z.EncBinary() - _ = yym904 + yym916 := z.EncBinary() + _ = yym916 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) } } - if yyr901 || yy2arr901 { + if yyr913 || yy2arr913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym906 := z.EncBinary() - _ = yym906 + yym918 := z.EncBinary() + _ = yym918 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -13143,18 +13407,18 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym907 := z.EncBinary() - _ = yym907 + yym919 := z.EncBinary() + _ = yym919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr901 || yy2arr901 { + if yyr913 || yy2arr913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq901[2] { - yym909 := z.EncBinary() - _ = yym909 + if yyq913[2] { + yym921 := z.EncBinary() + _ = yym921 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13163,19 +13427,19 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq901[2] { + if yyq913[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym910 := z.EncBinary() - _ = yym910 + yym922 := z.EncBinary() + _ = yym922 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr901 || yy2arr901 { + if yyr913 || yy2arr913 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13188,25 +13452,25 @@ func (x *NFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym911 := z.DecBinary() - _ = yym911 + yym923 := z.DecBinary() + _ = yym923 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct912 := r.ContainerType() - if yyct912 == codecSelferValueTypeMap1234 { - yyl912 := r.ReadMapStart() - if yyl912 == 0 { + yyct924 := r.ContainerType() + if yyct924 == codecSelferValueTypeMap1234 { + yyl924 := r.ReadMapStart() + if yyl924 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl912, d) + x.codecDecodeSelfFromMap(yyl924, d) } - } else if yyct912 == codecSelferValueTypeArray1234 { - yyl912 := r.ReadArrayStart() - if yyl912 == 0 { + } else if yyct924 == codecSelferValueTypeArray1234 { + yyl924 := r.ReadArrayStart() + if yyl924 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl912, d) + x.codecDecodeSelfFromArray(yyl924, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13218,12 +13482,12 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys913Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys913Slc - var yyhl913 bool = l >= 0 - for yyj913 := 0; ; yyj913++ { - if yyhl913 { - if yyj913 >= l { + var yys925Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys925Slc + var yyhl925 bool = l >= 0 + for yyj925 := 0; ; yyj925++ { + if yyhl925 { + if yyj925 >= l { break } } else { @@ -13232,10 +13496,10 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys913Slc = r.DecodeBytes(yys913Slc, true, true) - yys913 := string(yys913Slc) + yys925Slc = r.DecodeBytes(yys925Slc, true, true) + yys925 := string(yys925Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys913 { + switch yys925 { case "server": if r.TryDecodeAsNil() { x.Server = "" @@ -13255,9 +13519,9 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys913) - } // end switch yys913 - } // end for yyj913 + z.DecStructFieldNotFound(-1, yys925) + } // end switch yys925 + } // end for yyj925 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13265,16 +13529,16 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj917 int - var yyb917 bool - var yyhl917 bool = l >= 0 - yyj917++ - if yyhl917 { - yyb917 = yyj917 > l + var yyj929 int + var yyb929 bool + var yyhl929 bool = l >= 0 + yyj929++ + if yyhl929 { + yyb929 = yyj929 > l } else { - yyb917 = r.CheckBreak() + yyb929 = r.CheckBreak() } - if yyb917 { + if yyb929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13284,13 +13548,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Server = string(r.DecodeString()) } - yyj917++ - if yyhl917 { - yyb917 = yyj917 > l + yyj929++ + if yyhl929 { + yyb929 = yyj929 > l } else { - yyb917 = r.CheckBreak() + yyb929 = r.CheckBreak() } - if yyb917 { + if yyb929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13300,13 +13564,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Path = string(r.DecodeString()) } - yyj917++ - if yyhl917 { - yyb917 = yyj917 > l + yyj929++ + if yyhl929 { + yyb929 = yyj929 > l } else { - yyb917 = r.CheckBreak() + yyb929 = r.CheckBreak() } - if yyb917 { + if yyb929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13317,17 +13581,17 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj917++ - if yyhl917 { - yyb917 = yyj917 > l + yyj929++ + if yyhl929 { + yyb929 = yyj929 > l } else { - yyb917 = r.CheckBreak() + yyb929 = r.CheckBreak() } - if yyb917 { + if yyb929 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj917-1, "") + z.DecStructFieldNotFound(yyj929-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13339,36 +13603,36 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym921 := z.EncBinary() - _ = yym921 + yym933 := z.EncBinary() + _ = yym933 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep922 := !z.EncBinary() - yy2arr922 := z.EncBasicHandle().StructToArray - var yyq922 [6]bool - _, _, _ = yysep922, yyq922, yy2arr922 - const yyr922 bool = false - yyq922[3] = x.ISCSIInterface != "" - yyq922[4] = x.FSType != "" - yyq922[5] = x.ReadOnly != false - var yynn922 int - if yyr922 || yy2arr922 { + yysep934 := !z.EncBinary() + yy2arr934 := z.EncBasicHandle().StructToArray + var yyq934 [6]bool + _, _, _ = yysep934, yyq934, yy2arr934 + const yyr934 bool = false + yyq934[3] = x.ISCSIInterface != "" + yyq934[4] = x.FSType != "" + yyq934[5] = x.ReadOnly != false + var yynn934 int + if yyr934 || yy2arr934 { r.EncodeArrayStart(6) } else { - yynn922 = 3 - for _, b := range yyq922 { + yynn934 = 3 + for _, b := range yyq934 { if b { - yynn922++ + yynn934++ } } - r.EncodeMapStart(yynn922) - yynn922 = 0 + r.EncodeMapStart(yynn934) + yynn934 = 0 } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym924 := z.EncBinary() - _ = yym924 + yym936 := z.EncBinary() + _ = yym936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) @@ -13377,17 +13641,17 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPortal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym925 := z.EncBinary() - _ = yym925 + yym937 := z.EncBinary() + _ = yym937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TargetPortal)) } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym927 := z.EncBinary() - _ = yym927 + yym939 := z.EncBinary() + _ = yym939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) @@ -13396,17 +13660,17 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iqn")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym928 := z.EncBinary() - _ = yym928 + yym940 := z.EncBinary() + _ = yym940 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IQN)) } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym930 := z.EncBinary() - _ = yym930 + yym942 := z.EncBinary() + _ = yym942 if false { } else { r.EncodeInt(int64(x.Lun)) @@ -13415,18 +13679,18 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lun")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym931 := z.EncBinary() - _ = yym931 + yym943 := z.EncBinary() + _ = yym943 if false { } else { r.EncodeInt(int64(x.Lun)) } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq922[3] { - yym933 := z.EncBinary() - _ = yym933 + if yyq934[3] { + yym945 := z.EncBinary() + _ = yym945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) @@ -13435,23 +13699,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq922[3] { + if yyq934[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("iscsiInterface")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym934 := z.EncBinary() - _ = yym934 + yym946 := z.EncBinary() + _ = yym946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) } } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq922[4] { - yym936 := z.EncBinary() - _ = yym936 + if yyq934[4] { + yym948 := z.EncBinary() + _ = yym948 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -13460,23 +13724,23 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq922[4] { + if yyq934[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym937 := z.EncBinary() - _ = yym937 + yym949 := z.EncBinary() + _ = yym949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq922[5] { - yym939 := z.EncBinary() - _ = yym939 + if yyq934[5] { + yym951 := z.EncBinary() + _ = yym951 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13485,19 +13749,19 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq922[5] { + if yyq934[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym940 := z.EncBinary() - _ = yym940 + yym952 := z.EncBinary() + _ = yym952 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr922 || yy2arr922 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13510,25 +13774,25 @@ func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym941 := z.DecBinary() - _ = yym941 + yym953 := z.DecBinary() + _ = yym953 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct942 := r.ContainerType() - if yyct942 == codecSelferValueTypeMap1234 { - yyl942 := r.ReadMapStart() - if yyl942 == 0 { + yyct954 := r.ContainerType() + if yyct954 == codecSelferValueTypeMap1234 { + yyl954 := r.ReadMapStart() + if yyl954 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl942, d) + x.codecDecodeSelfFromMap(yyl954, d) } - } else if yyct942 == codecSelferValueTypeArray1234 { - yyl942 := r.ReadArrayStart() - if yyl942 == 0 { + } else if yyct954 == codecSelferValueTypeArray1234 { + yyl954 := r.ReadArrayStart() + if yyl954 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl942, d) + x.codecDecodeSelfFromArray(yyl954, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13540,12 +13804,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys943Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys943Slc - var yyhl943 bool = l >= 0 - for yyj943 := 0; ; yyj943++ { - if yyhl943 { - if yyj943 >= l { + var yys955Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys955Slc + var yyhl955 bool = l >= 0 + for yyj955 := 0; ; yyj955++ { + if yyhl955 { + if yyj955 >= l { break } } else { @@ -13554,10 +13818,10 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys943Slc = r.DecodeBytes(yys943Slc, true, true) - yys943 := string(yys943Slc) + yys955Slc = r.DecodeBytes(yys955Slc, true, true) + yys955 := string(yys955Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys943 { + switch yys955 { case "targetPortal": if r.TryDecodeAsNil() { x.TargetPortal = "" @@ -13595,9 +13859,9 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys943) - } // end switch yys943 - } // end for yyj943 + z.DecStructFieldNotFound(-1, yys955) + } // end switch yys955 + } // end for yyj955 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13605,16 +13869,16 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj950 int - var yyb950 bool - var yyhl950 bool = l >= 0 - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + var yyj962 int + var yyb962 bool + var yyhl962 bool = l >= 0 + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13624,13 +13888,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.TargetPortal = string(r.DecodeString()) } - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13640,13 +13904,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.IQN = string(r.DecodeString()) } - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13656,13 +13920,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Lun = int32(r.DecodeInt(32)) } - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13672,13 +13936,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.ISCSIInterface = string(r.DecodeString()) } - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13688,13 +13952,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.FSType = string(r.DecodeString()) } - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13705,17 +13969,17 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.ReadOnly = bool(r.DecodeBool()) } for { - yyj950++ - if yyhl950 { - yyb950 = yyj950 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb950 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb950 { + if yyb962 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj950-1, "") + z.DecStructFieldNotFound(yyj962-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13727,38 +13991,38 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym957 := z.EncBinary() - _ = yym957 + yym969 := z.EncBinary() + _ = yym969 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep958 := !z.EncBinary() - yy2arr958 := z.EncBasicHandle().StructToArray - var yyq958 [4]bool - _, _, _ = yysep958, yyq958, yy2arr958 - const yyr958 bool = false - yyq958[2] = x.FSType != "" - yyq958[3] = x.ReadOnly != false - var yynn958 int - if yyr958 || yy2arr958 { + yysep970 := !z.EncBinary() + yy2arr970 := z.EncBasicHandle().StructToArray + var yyq970 [4]bool + _, _, _ = yysep970, yyq970, yy2arr970 + const yyr970 bool = false + yyq970[2] = x.FSType != "" + yyq970[3] = x.ReadOnly != false + var yynn970 int + if yyr970 || yy2arr970 { r.EncodeArrayStart(4) } else { - yynn958 = 2 - for _, b := range yyq958 { + yynn970 = 2 + for _, b := range yyq970 { if b { - yynn958++ + yynn970++ } } - r.EncodeMapStart(yynn958) - yynn958 = 0 + r.EncodeMapStart(yynn970) + yynn970 = 0 } - if yyr958 || yy2arr958 { + if yyr970 || yy2arr970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetWWNs == nil { r.EncodeNil() } else { - yym960 := z.EncBinary() - _ = yym960 + yym972 := z.EncBinary() + _ = yym972 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) @@ -13771,25 +14035,25 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.TargetWWNs == nil { r.EncodeNil() } else { - yym961 := z.EncBinary() - _ = yym961 + yym973 := z.EncBinary() + _ = yym973 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) } } } - if yyr958 || yy2arr958 { + if yyr970 || yy2arr970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Lun == nil { r.EncodeNil() } else { - yy963 := *x.Lun - yym964 := z.EncBinary() - _ = yym964 + yy975 := *x.Lun + yym976 := z.EncBinary() + _ = yym976 if false { } else { - r.EncodeInt(int64(yy963)) + r.EncodeInt(int64(yy975)) } } } else { @@ -13799,20 +14063,20 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Lun == nil { r.EncodeNil() } else { - yy965 := *x.Lun - yym966 := z.EncBinary() - _ = yym966 + yy977 := *x.Lun + yym978 := z.EncBinary() + _ = yym978 if false { } else { - r.EncodeInt(int64(yy965)) + r.EncodeInt(int64(yy977)) } } } - if yyr958 || yy2arr958 { + if yyr970 || yy2arr970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq958[2] { - yym968 := z.EncBinary() - _ = yym968 + if yyq970[2] { + yym980 := z.EncBinary() + _ = yym980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -13821,23 +14085,23 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq958[2] { + if yyq970[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym969 := z.EncBinary() - _ = yym969 + yym981 := z.EncBinary() + _ = yym981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr958 || yy2arr958 { + if yyr970 || yy2arr970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq958[3] { - yym971 := z.EncBinary() - _ = yym971 + if yyq970[3] { + yym983 := z.EncBinary() + _ = yym983 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -13846,19 +14110,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq958[3] { + if yyq970[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym972 := z.EncBinary() - _ = yym972 + yym984 := z.EncBinary() + _ = yym984 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr958 || yy2arr958 { + if yyr970 || yy2arr970 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13871,25 +14135,25 @@ func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym973 := z.DecBinary() - _ = yym973 + yym985 := z.DecBinary() + _ = yym985 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct974 := r.ContainerType() - if yyct974 == codecSelferValueTypeMap1234 { - yyl974 := r.ReadMapStart() - if yyl974 == 0 { + yyct986 := r.ContainerType() + if yyct986 == codecSelferValueTypeMap1234 { + yyl986 := r.ReadMapStart() + if yyl986 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl974, d) + x.codecDecodeSelfFromMap(yyl986, d) } - } else if yyct974 == codecSelferValueTypeArray1234 { - yyl974 := r.ReadArrayStart() - if yyl974 == 0 { + } else if yyct986 == codecSelferValueTypeArray1234 { + yyl986 := r.ReadArrayStart() + if yyl986 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl974, d) + x.codecDecodeSelfFromArray(yyl986, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13901,12 +14165,12 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys975Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys975Slc - var yyhl975 bool = l >= 0 - for yyj975 := 0; ; yyj975++ { - if yyhl975 { - if yyj975 >= l { + var yys987Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys987Slc + var yyhl987 bool = l >= 0 + for yyj987 := 0; ; yyj987++ { + if yyhl987 { + if yyj987 >= l { break } } else { @@ -13915,20 +14179,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys975Slc = r.DecodeBytes(yys975Slc, true, true) - yys975 := string(yys975Slc) + yys987Slc = r.DecodeBytes(yys987Slc, true, true) + yys987 := string(yys987Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys975 { + switch yys987 { case "targetWWNs": if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv976 := &x.TargetWWNs - yym977 := z.DecBinary() - _ = yym977 + yyv988 := &x.TargetWWNs + yym989 := z.DecBinary() + _ = yym989 if false { } else { - z.F.DecSliceStringX(yyv976, false, d) + z.F.DecSliceStringX(yyv988, false, d) } } case "lun": @@ -13940,8 +14204,8 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym979 := z.DecBinary() - _ = yym979 + yym991 := z.DecBinary() + _ = yym991 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) @@ -13960,9 +14224,9 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys975) - } // end switch yys975 - } // end for yyj975 + z.DecStructFieldNotFound(-1, yys987) + } // end switch yys987 + } // end for yyj987 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13970,16 +14234,16 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj982 int - var yyb982 bool - var yyhl982 bool = l >= 0 - yyj982++ - if yyhl982 { - yyb982 = yyj982 > l + var yyj994 int + var yyb994 bool + var yyhl994 bool = l >= 0 + yyj994++ + if yyhl994 { + yyb994 = yyj994 > l } else { - yyb982 = r.CheckBreak() + yyb994 = r.CheckBreak() } - if yyb982 { + if yyb994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13987,21 +14251,21 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv983 := &x.TargetWWNs - yym984 := z.DecBinary() - _ = yym984 + yyv995 := &x.TargetWWNs + yym996 := z.DecBinary() + _ = yym996 if false { } else { - z.F.DecSliceStringX(yyv983, false, d) + z.F.DecSliceStringX(yyv995, false, d) } } - yyj982++ - if yyhl982 { - yyb982 = yyj982 > l + yyj994++ + if yyhl994 { + yyb994 = yyj994 > l } else { - yyb982 = r.CheckBreak() + yyb994 = r.CheckBreak() } - if yyb982 { + if yyb994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14014,20 +14278,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym986 := z.DecBinary() - _ = yym986 + yym998 := z.DecBinary() + _ = yym998 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) } } - yyj982++ - if yyhl982 { - yyb982 = yyj982 > l + yyj994++ + if yyhl994 { + yyb994 = yyj994 > l } else { - yyb982 = r.CheckBreak() + yyb994 = r.CheckBreak() } - if yyb982 { + if yyb994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14037,13 +14301,13 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FSType = string(r.DecodeString()) } - yyj982++ - if yyhl982 { - yyb982 = yyj982 > l + yyj994++ + if yyhl994 { + yyb994 = yyj994 > l } else { - yyb982 = r.CheckBreak() + yyb994 = r.CheckBreak() } - if yyb982 { + if yyb994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14054,17 +14318,17 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } for { - yyj982++ - if yyhl982 { - yyb982 = yyj982 > l + yyj994++ + if yyhl994 { + yyb994 = yyj994 > l } else { - yyb982 = r.CheckBreak() + yyb994 = r.CheckBreak() } - if yyb982 { + if yyb994 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj982-1, "") + z.DecStructFieldNotFound(yyj994-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14076,34 +14340,34 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym989 := z.EncBinary() - _ = yym989 + yym1001 := z.EncBinary() + _ = yym1001 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 { + yysep1002 := !z.EncBinary() + yy2arr1002 := z.EncBasicHandle().StructToArray + var yyq1002 [3]bool + _, _, _ = yysep1002, yyq1002, yy2arr1002 + const yyr1002 bool = false + yyq1002[2] = x.ReadOnly != false + var yynn1002 int + if yyr1002 || yy2arr1002 { r.EncodeArrayStart(3) } else { - yynn990 = 2 - for _, b := range yyq990 { + yynn1002 = 2 + for _, b := range yyq1002 { if b { - yynn990++ + yynn1002++ } } - r.EncodeMapStart(yynn990) - yynn990 = 0 + r.EncodeMapStart(yynn1002) + yynn1002 = 0 } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym992 := z.EncBinary() - _ = yym992 + yym1004 := z.EncBinary() + _ = yym1004 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -14112,17 +14376,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 + yym1005 := z.EncBinary() + _ = yym1005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym995 := z.EncBinary() - _ = yym995 + yym1007 := z.EncBinary() + _ = yym1007 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) @@ -14131,18 +14395,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 + yym1008 := z.EncBinary() + _ = yym1008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ShareName)) } } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq990[2] { - yym998 := z.EncBinary() - _ = yym998 + if yyq1002[2] { + yym1010 := z.EncBinary() + _ = yym1010 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -14151,19 +14415,19 @@ func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq990[2] { + if yyq1002[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym999 := z.EncBinary() - _ = yym999 + yym1011 := z.EncBinary() + _ = yym1011 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr990 || yy2arr990 { + if yyr1002 || yy2arr1002 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14176,25 +14440,25 @@ func (x *AzureFileVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1000 := z.DecBinary() - _ = yym1000 + yym1012 := z.DecBinary() + _ = yym1012 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1001 := r.ContainerType() - if yyct1001 == codecSelferValueTypeMap1234 { - yyl1001 := r.ReadMapStart() - if yyl1001 == 0 { + yyct1013 := r.ContainerType() + if yyct1013 == codecSelferValueTypeMap1234 { + yyl1013 := r.ReadMapStart() + if yyl1013 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1001, d) + x.codecDecodeSelfFromMap(yyl1013, d) } - } else if yyct1001 == codecSelferValueTypeArray1234 { - yyl1001 := r.ReadArrayStart() - if yyl1001 == 0 { + } else if yyct1013 == codecSelferValueTypeArray1234 { + yyl1013 := r.ReadArrayStart() + if yyl1013 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1001, d) + x.codecDecodeSelfFromArray(yyl1013, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14206,12 +14470,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 yys1014Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1014Slc + var yyhl1014 bool = l >= 0 + for yyj1014 := 0; ; yyj1014++ { + if yyhl1014 { + if yyj1014 >= l { break } } else { @@ -14220,10 +14484,10 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1002Slc = r.DecodeBytes(yys1002Slc, true, true) - yys1002 := string(yys1002Slc) + yys1014Slc = r.DecodeBytes(yys1014Slc, true, true) + yys1014 := string(yys1014Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1002 { + switch yys1014 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -14243,9 +14507,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, yys1014) + } // end switch yys1014 + } // end for yyj1014 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14253,16 +14517,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 yyj1018 int + var yyb1018 bool + var yyhl1018 bool = l >= 0 + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14272,13 +14536,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.SecretName = string(r.DecodeString()) } - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14288,13 +14552,13 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ShareName = string(r.DecodeString()) } - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14305,17 +14569,17 @@ func (x *AzureFileVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj1006++ - if yyhl1006 { - yyb1006 = yyj1006 > l + yyj1018++ + if yyhl1018 { + yyb1018 = yyj1018 > l } else { - yyb1006 = r.CheckBreak() + yyb1018 = r.CheckBreak() } - if yyb1006 { + if yyb1018 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1006-1, "") + z.DecStructFieldNotFound(yyj1018-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14327,34 +14591,34 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1010 := z.EncBinary() - _ = yym1010 + yym1022 := z.EncBinary() + _ = yym1022 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 { + yysep1023 := !z.EncBinary() + yy2arr1023 := z.EncBasicHandle().StructToArray + var yyq1023 [2]bool + _, _, _ = yysep1023, yyq1023, yy2arr1023 + const yyr1023 bool = false + yyq1023[1] = x.FSType != "" + var yynn1023 int + if yyr1023 || yy2arr1023 { r.EncodeArrayStart(2) } else { - yynn1011 = 1 - for _, b := range yyq1011 { + yynn1023 = 1 + for _, b := range yyq1023 { if b { - yynn1011++ + yynn1023++ } } - r.EncodeMapStart(yynn1011) - yynn1011 = 0 + r.EncodeMapStart(yynn1023) + yynn1023 = 0 } - if yyr1011 || yy2arr1011 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1013 := z.EncBinary() - _ = yym1013 + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) @@ -14363,18 +14627,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 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumePath)) } } - if yyr1011 || yy2arr1011 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1011[1] { - yym1016 := z.EncBinary() - _ = yym1016 + if yyq1023[1] { + yym1028 := z.EncBinary() + _ = yym1028 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -14383,19 +14647,19 @@ func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1011[1] { + if yyq1023[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1017 := z.EncBinary() - _ = yym1017 + yym1029 := z.EncBinary() + _ = yym1029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr1011 || yy2arr1011 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14408,25 +14672,25 @@ func (x *VsphereVirtualDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1018 := z.DecBinary() - _ = yym1018 + yym1030 := z.DecBinary() + _ = yym1030 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1019 := r.ContainerType() - if yyct1019 == codecSelferValueTypeMap1234 { - yyl1019 := r.ReadMapStart() - if yyl1019 == 0 { + yyct1031 := r.ContainerType() + if yyct1031 == codecSelferValueTypeMap1234 { + yyl1031 := r.ReadMapStart() + if yyl1031 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1019, d) + x.codecDecodeSelfFromMap(yyl1031, d) } - } else if yyct1019 == codecSelferValueTypeArray1234 { - yyl1019 := r.ReadArrayStart() - if yyl1019 == 0 { + } else if yyct1031 == codecSelferValueTypeArray1234 { + yyl1031 := r.ReadArrayStart() + if yyl1031 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1019, d) + x.codecDecodeSelfFromArray(yyl1031, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14438,12 +14702,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 yys1032Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1032Slc + var yyhl1032 bool = l >= 0 + for yyj1032 := 0; ; yyj1032++ { + if yyhl1032 { + if yyj1032 >= l { break } } else { @@ -14452,10 +14716,10 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1020Slc = r.DecodeBytes(yys1020Slc, true, true) - yys1020 := string(yys1020Slc) + yys1032Slc = r.DecodeBytes(yys1032Slc, true, true) + yys1032 := string(yys1032Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1020 { + switch yys1032 { case "volumePath": if r.TryDecodeAsNil() { x.VolumePath = "" @@ -14469,9 +14733,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, yys1032) + } // end switch yys1032 + } // end for yyj1032 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14479,16 +14743,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 yyj1035 int + var yyb1035 bool + var yyhl1035 bool = l >= 0 + yyj1035++ + if yyhl1035 { + yyb1035 = yyj1035 > l } else { - yyb1023 = r.CheckBreak() + yyb1035 = r.CheckBreak() } - if yyb1023 { + if yyb1035 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14498,13 +14762,13 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code } else { x.VolumePath = string(r.DecodeString()) } - yyj1023++ - if yyhl1023 { - yyb1023 = yyj1023 > l + yyj1035++ + if yyhl1035 { + yyb1035 = yyj1035 > l } else { - yyb1023 = r.CheckBreak() + yyb1035 = r.CheckBreak() } - if yyb1023 { + if yyb1035 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14515,17 +14779,460 @@ func (x *VsphereVirtualDiskVolumeSource) codecDecodeSelfFromArray(l int, d *code x.FSType = string(r.DecodeString()) } for { - yyj1023++ - if yyhl1023 { - yyb1023 = yyj1023 > l + yyj1035++ + if yyhl1035 { + yyb1035 = yyj1035 > l } else { - yyb1023 = r.CheckBreak() + yyb1035 = r.CheckBreak() } - if yyb1023 { + if yyb1035 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1023-1, "") + z.DecStructFieldNotFound(yyj1035-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x AzureDataDiskCachingMode) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1038 := z.EncBinary() + _ = yym1038 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *AzureDataDiskCachingMode) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1039 := z.DecBinary() + _ = yym1039 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *AzureDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1040 := z.EncBinary() + _ = yym1040 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1041 := !z.EncBinary() + yy2arr1041 := z.EncBasicHandle().StructToArray + var yyq1041 [5]bool + _, _, _ = yysep1041, yyq1041, yy2arr1041 + const yyr1041 bool = false + yyq1041[2] = x.CachingMode != nil + yyq1041[3] = x.FSType != nil + yyq1041[4] = x.ReadOnly != nil + var yynn1041 int + if yyr1041 || yy2arr1041 { + r.EncodeArrayStart(5) + } else { + yynn1041 = 2 + for _, b := range yyq1041 { + if b { + yynn1041++ + } + } + r.EncodeMapStart(yynn1041) + yynn1041 = 0 + } + if yyr1041 || yy2arr1041 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1043 := z.EncBinary() + _ = yym1043 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DiskName)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("diskName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1044 := z.EncBinary() + _ = yym1044 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DiskName)) + } + } + if yyr1041 || yy2arr1041 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1046 := z.EncBinary() + _ = yym1046 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DataDiskURI)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("diskURI")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1047 := z.EncBinary() + _ = yym1047 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.DataDiskURI)) + } + } + if yyr1041 || yy2arr1041 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1041[2] { + if x.CachingMode == nil { + r.EncodeNil() + } else { + yy1049 := *x.CachingMode + yy1049.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq1041[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("cachingMode")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.CachingMode == nil { + r.EncodeNil() + } else { + yy1050 := *x.CachingMode + yy1050.CodecEncodeSelf(e) + } + } + } + if yyr1041 || yy2arr1041 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1041[3] { + if x.FSType == nil { + r.EncodeNil() + } else { + yy1052 := *x.FSType + yym1053 := z.EncBinary() + _ = yym1053 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy1052)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1041[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fsType")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.FSType == nil { + r.EncodeNil() + } else { + yy1054 := *x.FSType + yym1055 := z.EncBinary() + _ = yym1055 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy1054)) + } + } + } + } + if yyr1041 || yy2arr1041 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1041[4] { + if x.ReadOnly == nil { + r.EncodeNil() + } else { + yy1057 := *x.ReadOnly + yym1058 := z.EncBinary() + _ = yym1058 + if false { + } else { + r.EncodeBool(bool(yy1057)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1041[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("readOnly")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ReadOnly == nil { + r.EncodeNil() + } else { + yy1059 := *x.ReadOnly + yym1060 := z.EncBinary() + _ = yym1060 + if false { + } else { + r.EncodeBool(bool(yy1059)) + } + } + } + } + if yyr1041 || yy2arr1041 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *AzureDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1061 := z.DecBinary() + _ = yym1061 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1062 := r.ContainerType() + if yyct1062 == codecSelferValueTypeMap1234 { + yyl1062 := r.ReadMapStart() + if yyl1062 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1062, d) + } + } else if yyct1062 == codecSelferValueTypeArray1234 { + yyl1062 := r.ReadArrayStart() + if yyl1062 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1062, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *AzureDiskVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + 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 { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1063Slc = r.DecodeBytes(yys1063Slc, true, true) + yys1063 := string(yys1063Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1063 { + case "diskName": + if r.TryDecodeAsNil() { + x.DiskName = "" + } else { + x.DiskName = string(r.DecodeString()) + } + case "diskURI": + if r.TryDecodeAsNil() { + x.DataDiskURI = "" + } else { + x.DataDiskURI = string(r.DecodeString()) + } + case "cachingMode": + if r.TryDecodeAsNil() { + if x.CachingMode != nil { + x.CachingMode = nil + } + } else { + if x.CachingMode == nil { + x.CachingMode = new(AzureDataDiskCachingMode) + } + x.CachingMode.CodecDecodeSelf(d) + } + case "fsType": + if r.TryDecodeAsNil() { + if x.FSType != nil { + x.FSType = nil + } + } else { + if x.FSType == nil { + x.FSType = new(string) + } + yym1068 := z.DecBinary() + _ = yym1068 + if false { + } else { + *((*string)(x.FSType)) = r.DecodeString() + } + } + case "readOnly": + if r.TryDecodeAsNil() { + if x.ReadOnly != nil { + x.ReadOnly = nil + } + } else { + if x.ReadOnly == nil { + x.ReadOnly = new(bool) + } + yym1070 := z.DecBinary() + _ = yym1070 + if false { + } else { + *((*bool)(x.ReadOnly)) = r.DecodeBool() + } + } + default: + z.DecStructFieldNotFound(-1, yys1063) + } // end switch yys1063 + } // end for yyj1063 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *AzureDiskVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1071 int + var yyb1071 bool + var yyhl1071 bool = l >= 0 + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l + } else { + yyb1071 = r.CheckBreak() + } + if yyb1071 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DiskName = "" + } else { + x.DiskName = string(r.DecodeString()) + } + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l + } else { + yyb1071 = r.CheckBreak() + } + if yyb1071 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DataDiskURI = "" + } else { + x.DataDiskURI = string(r.DecodeString()) + } + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l + } else { + yyb1071 = r.CheckBreak() + } + if yyb1071 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.CachingMode != nil { + x.CachingMode = nil + } + } else { + if x.CachingMode == nil { + x.CachingMode = new(AzureDataDiskCachingMode) + } + x.CachingMode.CodecDecodeSelf(d) + } + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l + } else { + yyb1071 = r.CheckBreak() + } + if yyb1071 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.FSType != nil { + x.FSType = nil + } + } else { + if x.FSType == nil { + x.FSType = new(string) + } + yym1076 := z.DecBinary() + _ = yym1076 + if false { + } else { + *((*string)(x.FSType)) = r.DecodeString() + } + } + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l + } else { + yyb1071 = r.CheckBreak() + } + if yyb1071 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.ReadOnly != nil { + x.ReadOnly = nil + } + } else { + if x.ReadOnly == nil { + x.ReadOnly = new(bool) + } + yym1078 := z.DecBinary() + _ = yym1078 + if false { + } else { + *((*bool)(x.ReadOnly)) = r.DecodeBool() + } + } + for { + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l + } else { + yyb1071 = r.CheckBreak() + } + if yyb1071 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1071-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14537,37 +15244,37 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1026 := z.EncBinary() - _ = yym1026 + yym1079 := z.EncBinary() + _ = yym1079 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[0] = x.Name != "" - yyq1027[1] = len(x.Items) != 0 - yyq1027[2] = x.DefaultMode != nil - var yynn1027 int - if yyr1027 || yy2arr1027 { + yysep1080 := !z.EncBinary() + yy2arr1080 := z.EncBasicHandle().StructToArray + var yyq1080 [3]bool + _, _, _ = yysep1080, yyq1080, yy2arr1080 + const yyr1080 bool = false + yyq1080[0] = x.Name != "" + yyq1080[1] = len(x.Items) != 0 + yyq1080[2] = x.DefaultMode != nil + var yynn1080 int + if yyr1080 || yy2arr1080 { r.EncodeArrayStart(3) } else { - yynn1027 = 0 - for _, b := range yyq1027 { + yynn1080 = 0 + for _, b := range yyq1080 { if b { - yynn1027++ + yynn1080++ } } - r.EncodeMapStart(yynn1027) - yynn1027 = 0 + r.EncodeMapStart(yynn1080) + yynn1080 = 0 } - if yyr1027 || yy2arr1027 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1027[0] { - yym1029 := z.EncBinary() - _ = yym1029 + if yyq1080[0] { + yym1082 := z.EncBinary() + _ = yym1082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -14576,26 +15283,26 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1027[0] { + if yyq1080[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1030 := z.EncBinary() - _ = yym1030 + yym1083 := z.EncBinary() + _ = yym1083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1027 || yy2arr1027 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1027[1] { + if yyq1080[1] { if x.Items == nil { r.EncodeNil() } else { - yym1032 := z.EncBinary() - _ = yym1032 + yym1085 := z.EncBinary() + _ = yym1085 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -14605,15 +15312,15 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1027[1] { + if yyq1080[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 + yym1086 := z.EncBinary() + _ = yym1086 if false { } else { h.encSliceKeyToPath(([]KeyToPath)(x.Items), e) @@ -14621,42 +15328,42 @@ func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1027 || yy2arr1027 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1027[2] { + if yyq1080[2] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy1035 := *x.DefaultMode - yym1036 := z.EncBinary() - _ = yym1036 + yy1088 := *x.DefaultMode + yym1089 := z.EncBinary() + _ = yym1089 if false { } else { - r.EncodeInt(int64(yy1035)) + r.EncodeInt(int64(yy1088)) } } } else { r.EncodeNil() } } else { - if yyq1027[2] { + if yyq1080[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 + yy1090 := *x.DefaultMode + yym1091 := z.EncBinary() + _ = yym1091 if false { } else { - r.EncodeInt(int64(yy1037)) + r.EncodeInt(int64(yy1090)) } } } } - if yyr1027 || yy2arr1027 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14669,25 +15376,25 @@ func (x *ConfigMapVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1039 := z.DecBinary() - _ = yym1039 + yym1092 := z.DecBinary() + _ = yym1092 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1040 := r.ContainerType() - if yyct1040 == codecSelferValueTypeMap1234 { - yyl1040 := r.ReadMapStart() - if yyl1040 == 0 { + yyct1093 := r.ContainerType() + if yyct1093 == codecSelferValueTypeMap1234 { + yyl1093 := r.ReadMapStart() + if yyl1093 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1040, d) + x.codecDecodeSelfFromMap(yyl1093, d) } - } else if yyct1040 == codecSelferValueTypeArray1234 { - yyl1040 := r.ReadArrayStart() - if yyl1040 == 0 { + } else if yyct1093 == codecSelferValueTypeArray1234 { + yyl1093 := r.ReadArrayStart() + if yyl1093 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1040, d) + x.codecDecodeSelfFromArray(yyl1093, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14699,12 +15406,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 yys1094Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1094Slc + var yyhl1094 bool = l >= 0 + for yyj1094 := 0; ; yyj1094++ { + if yyhl1094 { + if yyj1094 >= l { break } } else { @@ -14713,10 +15420,10 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1041Slc = r.DecodeBytes(yys1041Slc, true, true) - yys1041 := string(yys1041Slc) + yys1094Slc = r.DecodeBytes(yys1094Slc, true, true) + yys1094 := string(yys1094Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1041 { + switch yys1094 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -14727,12 +15434,12 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1043 := &x.Items - yym1044 := z.DecBinary() - _ = yym1044 + yyv1096 := &x.Items + yym1097 := z.DecBinary() + _ = yym1097 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1043), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1096), d) } } case "defaultMode": @@ -14744,17 +15451,17 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1046 := z.DecBinary() - _ = yym1046 + yym1099 := z.DecBinary() + _ = yym1099 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1041) - } // end switch yys1041 - } // end for yyj1041 + z.DecStructFieldNotFound(-1, yys1094) + } // end switch yys1094 + } // end for yyj1094 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14762,16 +15469,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 yyj1100 int + var yyb1100 bool + var yyhl1100 bool = l >= 0 + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1047 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1047 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14781,13 +15488,13 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Name = string(r.DecodeString()) } - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1047 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1047 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14795,21 +15502,21 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1049 := &x.Items - yym1050 := z.DecBinary() - _ = yym1050 + yyv1102 := &x.Items + yym1103 := z.DecBinary() + _ = yym1103 if false { } else { - h.decSliceKeyToPath((*[]KeyToPath)(yyv1049), d) + h.decSliceKeyToPath((*[]KeyToPath)(yyv1102), d) } } - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1047 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1047 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14822,25 +15529,25 @@ func (x *ConfigMapVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym1052 := z.DecBinary() - _ = yym1052 + yym1105 := z.DecBinary() + _ = yym1105 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1047 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1047 { + if yyb1100 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1047-1, "") + z.DecStructFieldNotFound(yyj1100-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14852,34 +15559,34 @@ func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1053 := z.EncBinary() - _ = yym1053 + yym1106 := z.EncBinary() + _ = yym1106 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 { + yysep1107 := !z.EncBinary() + yy2arr1107 := z.EncBasicHandle().StructToArray + var yyq1107 [3]bool + _, _, _ = yysep1107, yyq1107, yy2arr1107 + const yyr1107 bool = false + yyq1107[2] = x.Mode != nil + var yynn1107 int + if yyr1107 || yy2arr1107 { r.EncodeArrayStart(3) } else { - yynn1054 = 2 - for _, b := range yyq1054 { + yynn1107 = 2 + for _, b := range yyq1107 { if b { - yynn1054++ + yynn1107++ } } - r.EncodeMapStart(yynn1054) - yynn1054 = 0 + r.EncodeMapStart(yynn1107) + yynn1107 = 0 } - if yyr1054 || yy2arr1054 { + if yyr1107 || yy2arr1107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1056 := z.EncBinary() - _ = yym1056 + yym1109 := z.EncBinary() + _ = yym1109 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -14888,17 +15595,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 + yym1110 := z.EncBinary() + _ = yym1110 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1054 || yy2arr1054 { + if yyr1107 || yy2arr1107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1059 := z.EncBinary() - _ = yym1059 + yym1112 := z.EncBinary() + _ = yym1112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -14907,49 +15614,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 + yym1113 := z.EncBinary() + _ = yym1113 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr1054 || yy2arr1054 { + if yyr1107 || yy2arr1107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1054[2] { + if yyq1107[2] { if x.Mode == nil { r.EncodeNil() } else { - yy1062 := *x.Mode - yym1063 := z.EncBinary() - _ = yym1063 + yy1115 := *x.Mode + yym1116 := z.EncBinary() + _ = yym1116 if false { } else { - r.EncodeInt(int64(yy1062)) + r.EncodeInt(int64(yy1115)) } } } else { r.EncodeNil() } } else { - if yyq1054[2] { + if yyq1107[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 + yy1117 := *x.Mode + yym1118 := z.EncBinary() + _ = yym1118 if false { } else { - r.EncodeInt(int64(yy1064)) + r.EncodeInt(int64(yy1117)) } } } } - if yyr1054 || yy2arr1054 { + if yyr1107 || yy2arr1107 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14962,25 +15669,25 @@ func (x *KeyToPath) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1066 := z.DecBinary() - _ = yym1066 + yym1119 := z.DecBinary() + _ = yym1119 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1067 := r.ContainerType() - if yyct1067 == codecSelferValueTypeMap1234 { - yyl1067 := r.ReadMapStart() - if yyl1067 == 0 { + yyct1120 := r.ContainerType() + if yyct1120 == codecSelferValueTypeMap1234 { + yyl1120 := r.ReadMapStart() + if yyl1120 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1067, d) + x.codecDecodeSelfFromMap(yyl1120, d) } - } else if yyct1067 == codecSelferValueTypeArray1234 { - yyl1067 := r.ReadArrayStart() - if yyl1067 == 0 { + } else if yyct1120 == codecSelferValueTypeArray1234 { + yyl1120 := r.ReadArrayStart() + if yyl1120 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1067, d) + x.codecDecodeSelfFromArray(yyl1120, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14992,12 +15699,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 yys1121Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1121Slc + var yyhl1121 bool = l >= 0 + for yyj1121 := 0; ; yyj1121++ { + if yyhl1121 { + if yyj1121 >= l { break } } else { @@ -15006,10 +15713,10 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1068Slc = r.DecodeBytes(yys1068Slc, true, true) - yys1068 := string(yys1068Slc) + yys1121Slc = r.DecodeBytes(yys1121Slc, true, true) + yys1121 := string(yys1121Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1068 { + switch yys1121 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -15031,17 +15738,17 @@ func (x *KeyToPath) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1072 := z.DecBinary() - _ = yym1072 + yym1125 := z.DecBinary() + _ = yym1125 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys1068) - } // end switch yys1068 - } // end for yyj1068 + z.DecStructFieldNotFound(-1, yys1121) + } // end switch yys1121 + } // end for yyj1121 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15049,16 +15756,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 yyj1126 int + var yyb1126 bool + var yyhl1126 bool = l >= 0 + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1073 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1073 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15068,13 +15775,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1073 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1073 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15084,13 +15791,13 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1073 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1073 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15103,25 +15810,25 @@ func (x *KeyToPath) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Mode == nil { x.Mode = new(int32) } - yym1077 := z.DecBinary() - _ = yym1077 + yym1130 := z.DecBinary() + _ = yym1130 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj1073++ - if yyhl1073 { - yyb1073 = yyj1073 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1073 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1073 { + if yyb1126 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1073-1, "") + z.DecStructFieldNotFound(yyj1126-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15133,38 +15840,38 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1078 := z.EncBinary() - _ = yym1078 + yym1131 := z.EncBinary() + _ = yym1131 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 { + yysep1132 := !z.EncBinary() + yy2arr1132 := z.EncBasicHandle().StructToArray + var yyq1132 [5]bool + _, _, _ = yysep1132, yyq1132, yy2arr1132 + const yyr1132 bool = false + yyq1132[0] = x.Name != "" + yyq1132[1] = x.HostPort != 0 + yyq1132[3] = x.Protocol != "" + yyq1132[4] = x.HostIP != "" + var yynn1132 int + if yyr1132 || yy2arr1132 { r.EncodeArrayStart(5) } else { - yynn1079 = 1 - for _, b := range yyq1079 { + yynn1132 = 1 + for _, b := range yyq1132 { if b { - yynn1079++ + yynn1132++ } } - r.EncodeMapStart(yynn1079) - yynn1079 = 0 + r.EncodeMapStart(yynn1132) + yynn1132 = 0 } - if yyr1079 || yy2arr1079 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[0] { - yym1081 := z.EncBinary() - _ = yym1081 + if yyq1132[0] { + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15173,23 +15880,23 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[0] { + if yyq1132[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1082 := z.EncBinary() - _ = yym1082 + yym1135 := z.EncBinary() + _ = yym1135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1079 || yy2arr1079 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[1] { - yym1084 := z.EncBinary() - _ = yym1084 + if yyq1132[1] { + yym1137 := z.EncBinary() + _ = yym1137 if false { } else { r.EncodeInt(int64(x.HostPort)) @@ -15198,22 +15905,22 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1079[1] { + if yyq1132[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1085 := z.EncBinary() - _ = yym1085 + yym1138 := z.EncBinary() + _ = yym1138 if false { } else { r.EncodeInt(int64(x.HostPort)) } } } - if yyr1079 || yy2arr1079 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1087 := z.EncBinary() - _ = yym1087 + yym1140 := z.EncBinary() + _ = yym1140 if false { } else { r.EncodeInt(int64(x.ContainerPort)) @@ -15222,33 +15929,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 + yym1141 := z.EncBinary() + _ = yym1141 if false { } else { r.EncodeInt(int64(x.ContainerPort)) } } - if yyr1079 || yy2arr1079 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[3] { + if yyq1132[3] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[3] { + if yyq1132[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr1079 || yy2arr1079 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[4] { - yym1091 := z.EncBinary() - _ = yym1091 + if yyq1132[4] { + yym1144 := z.EncBinary() + _ = yym1144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -15257,19 +15964,19 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[4] { + if yyq1132[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1092 := z.EncBinary() - _ = yym1092 + yym1145 := z.EncBinary() + _ = yym1145 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1079 || yy2arr1079 { + if yyr1132 || yy2arr1132 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15282,25 +15989,25 @@ func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1093 := z.DecBinary() - _ = yym1093 + yym1146 := z.DecBinary() + _ = yym1146 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1094 := r.ContainerType() - if yyct1094 == codecSelferValueTypeMap1234 { - yyl1094 := r.ReadMapStart() - if yyl1094 == 0 { + yyct1147 := r.ContainerType() + if yyct1147 == codecSelferValueTypeMap1234 { + yyl1147 := r.ReadMapStart() + if yyl1147 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1094, d) + x.codecDecodeSelfFromMap(yyl1147, d) } - } else if yyct1094 == codecSelferValueTypeArray1234 { - yyl1094 := r.ReadArrayStart() - if yyl1094 == 0 { + } else if yyct1147 == codecSelferValueTypeArray1234 { + yyl1147 := r.ReadArrayStart() + if yyl1147 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1094, d) + x.codecDecodeSelfFromArray(yyl1147, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15312,12 +16019,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 yys1148Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1148Slc + var yyhl1148 bool = l >= 0 + for yyj1148 := 0; ; yyj1148++ { + if yyhl1148 { + if yyj1148 >= l { break } } else { @@ -15326,10 +16033,10 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1095Slc = r.DecodeBytes(yys1095Slc, true, true) - yys1095 := string(yys1095Slc) + yys1148Slc = r.DecodeBytes(yys1148Slc, true, true) + yys1148 := string(yys1148Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1095 { + switch yys1148 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15361,9 +16068,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, yys1148) + } // end switch yys1148 + } // end for yyj1148 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15371,16 +16078,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 yyj1154 int + var yyb1154 bool + var yyhl1154 bool = l >= 0 + yyj1154++ + if yyhl1154 { + yyb1154 = yyj1154 > l } else { - yyb1101 = r.CheckBreak() + yyb1154 = r.CheckBreak() } - if yyb1101 { + if yyb1154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15390,13 +16097,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1154++ + if yyhl1154 { + yyb1154 = yyj1154 > l } else { - yyb1101 = r.CheckBreak() + yyb1154 = r.CheckBreak() } - if yyb1101 { + if yyb1154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15406,13 +16113,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPort = int32(r.DecodeInt(32)) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1154++ + if yyhl1154 { + yyb1154 = yyj1154 > l } else { - yyb1101 = r.CheckBreak() + yyb1154 = r.CheckBreak() } - if yyb1101 { + if yyb1154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15422,13 +16129,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerPort = int32(r.DecodeInt(32)) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1154++ + if yyhl1154 { + yyb1154 = yyj1154 > l } else { - yyb1101 = r.CheckBreak() + yyb1154 = r.CheckBreak() } - if yyb1101 { + if yyb1154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15438,13 +16145,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1154++ + if yyhl1154 { + yyb1154 = yyj1154 > l } else { - yyb1101 = r.CheckBreak() + yyb1154 = r.CheckBreak() } - if yyb1101 { + if yyb1154 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15455,17 +16162,17 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } for { - yyj1101++ - if yyhl1101 { - yyb1101 = yyj1101 > l + yyj1154++ + if yyhl1154 { + yyb1154 = yyj1154 > l } else { - yyb1101 = r.CheckBreak() + yyb1154 = r.CheckBreak() } - if yyb1101 { + if yyb1154 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1101-1, "") + z.DecStructFieldNotFound(yyj1154-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15477,35 +16184,35 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1107 := z.EncBinary() - _ = yym1107 + yym1160 := z.EncBinary() + _ = yym1160 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 { + yysep1161 := !z.EncBinary() + yy2arr1161 := z.EncBasicHandle().StructToArray + var yyq1161 [4]bool + _, _, _ = yysep1161, yyq1161, yy2arr1161 + const yyr1161 bool = false + yyq1161[1] = x.ReadOnly != false + yyq1161[3] = x.SubPath != "" + var yynn1161 int + if yyr1161 || yy2arr1161 { r.EncodeArrayStart(4) } else { - yynn1108 = 2 - for _, b := range yyq1108 { + yynn1161 = 2 + for _, b := range yyq1161 { if b { - yynn1108++ + yynn1161++ } } - r.EncodeMapStart(yynn1108) - yynn1108 = 0 + r.EncodeMapStart(yynn1161) + yynn1161 = 0 } - if yyr1108 || yy2arr1108 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1110 := z.EncBinary() - _ = yym1110 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15514,18 +16221,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 + yym1164 := z.EncBinary() + _ = yym1164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1108 || yy2arr1108 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1108[1] { - yym1113 := z.EncBinary() - _ = yym1113 + if yyq1161[1] { + yym1166 := z.EncBinary() + _ = yym1166 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -15534,22 +16241,22 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1108[1] { + if yyq1161[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1114 := z.EncBinary() - _ = yym1114 + yym1167 := z.EncBinary() + _ = yym1167 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr1108 || yy2arr1108 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1116 := z.EncBinary() - _ = yym1116 + yym1169 := z.EncBinary() + _ = yym1169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) @@ -15558,18 +16265,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 + yym1170 := z.EncBinary() + _ = yym1170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) } } - if yyr1108 || yy2arr1108 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1108[3] { - yym1119 := z.EncBinary() - _ = yym1119 + if yyq1161[3] { + yym1172 := z.EncBinary() + _ = yym1172 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) @@ -15578,19 +16285,19 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1108[3] { + if yyq1161[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1120 := z.EncBinary() - _ = yym1120 + yym1173 := z.EncBinary() + _ = yym1173 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SubPath)) } } } - if yyr1108 || yy2arr1108 { + if yyr1161 || yy2arr1161 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15603,25 +16310,25 @@ func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1121 := z.DecBinary() - _ = yym1121 + yym1174 := z.DecBinary() + _ = yym1174 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1122 := r.ContainerType() - if yyct1122 == codecSelferValueTypeMap1234 { - yyl1122 := r.ReadMapStart() - if yyl1122 == 0 { + yyct1175 := r.ContainerType() + if yyct1175 == codecSelferValueTypeMap1234 { + yyl1175 := r.ReadMapStart() + if yyl1175 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1122, d) + x.codecDecodeSelfFromMap(yyl1175, d) } - } else if yyct1122 == codecSelferValueTypeArray1234 { - yyl1122 := r.ReadArrayStart() - if yyl1122 == 0 { + } else if yyct1175 == codecSelferValueTypeArray1234 { + yyl1175 := r.ReadArrayStart() + if yyl1175 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1122, d) + x.codecDecodeSelfFromArray(yyl1175, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15633,12 +16340,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 yys1176Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1176Slc + var yyhl1176 bool = l >= 0 + for yyj1176 := 0; ; yyj1176++ { + if yyhl1176 { + if yyj1176 >= l { break } } else { @@ -15647,10 +16354,10 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1123Slc = r.DecodeBytes(yys1123Slc, true, true) - yys1123 := string(yys1123Slc) + yys1176Slc = r.DecodeBytes(yys1176Slc, true, true) + yys1176 := string(yys1176Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1123 { + switch yys1176 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15676,9 +16383,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, yys1176) + } // end switch yys1176 + } // end for yyj1176 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15686,16 +16393,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 yyj1181 int + var yyb1181 bool + var yyhl1181 bool = l >= 0 + yyj1181++ + if yyhl1181 { + yyb1181 = yyj1181 > l } else { - yyb1128 = r.CheckBreak() + yyb1181 = r.CheckBreak() } - if yyb1128 { + if yyb1181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15705,13 +16412,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1181++ + if yyhl1181 { + yyb1181 = yyj1181 > l } else { - yyb1128 = r.CheckBreak() + yyb1181 = r.CheckBreak() } - if yyb1128 { + if yyb1181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15721,13 +16428,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1181++ + if yyhl1181 { + yyb1181 = yyj1181 > l } else { - yyb1128 = r.CheckBreak() + yyb1181 = r.CheckBreak() } - if yyb1128 { + if yyb1181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15737,13 +16444,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MountPath = string(r.DecodeString()) } - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1181++ + if yyhl1181 { + yyb1181 = yyj1181 > l } else { - yyb1128 = r.CheckBreak() + yyb1181 = r.CheckBreak() } - if yyb1128 { + if yyb1181 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15754,17 +16461,17 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SubPath = string(r.DecodeString()) } for { - yyj1128++ - if yyhl1128 { - yyb1128 = yyj1128 > l + yyj1181++ + if yyhl1181 { + yyb1181 = yyj1181 > l } else { - yyb1128 = r.CheckBreak() + yyb1181 = r.CheckBreak() } - if yyb1128 { + if yyb1181 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1128-1, "") + z.DecStructFieldNotFound(yyj1181-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15776,35 +16483,35 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1133 := z.EncBinary() - _ = yym1133 + yym1186 := z.EncBinary() + _ = yym1186 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 { + yysep1187 := !z.EncBinary() + yy2arr1187 := z.EncBasicHandle().StructToArray + var yyq1187 [3]bool + _, _, _ = yysep1187, yyq1187, yy2arr1187 + const yyr1187 bool = false + yyq1187[1] = x.Value != "" + yyq1187[2] = x.ValueFrom != nil + var yynn1187 int + if yyr1187 || yy2arr1187 { r.EncodeArrayStart(3) } else { - yynn1134 = 1 - for _, b := range yyq1134 { + yynn1187 = 1 + for _, b := range yyq1187 { if b { - yynn1134++ + yynn1187++ } } - r.EncodeMapStart(yynn1134) - yynn1134 = 0 + r.EncodeMapStart(yynn1187) + yynn1187 = 0 } - if yyr1134 || yy2arr1134 { + if yyr1187 || yy2arr1187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1136 := z.EncBinary() - _ = yym1136 + yym1189 := z.EncBinary() + _ = yym1189 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15813,18 +16520,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 + yym1190 := z.EncBinary() + _ = yym1190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1134 || yy2arr1134 { + if yyr1187 || yy2arr1187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1134[1] { - yym1139 := z.EncBinary() - _ = yym1139 + if yyq1187[1] { + yym1192 := z.EncBinary() + _ = yym1192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -15833,21 +16540,21 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1134[1] { + if yyq1187[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1140 := z.EncBinary() - _ = yym1140 + yym1193 := z.EncBinary() + _ = yym1193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1134 || yy2arr1134 { + if yyr1187 || yy2arr1187 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1134[2] { + if yyq1187[2] { if x.ValueFrom == nil { r.EncodeNil() } else { @@ -15857,7 +16564,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1134[2] { + if yyq1187[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("valueFrom")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15868,7 +16575,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1134 || yy2arr1134 { + if yyr1187 || yy2arr1187 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15881,25 +16588,25 @@ func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1142 := z.DecBinary() - _ = yym1142 + yym1195 := z.DecBinary() + _ = yym1195 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1143 := r.ContainerType() - if yyct1143 == codecSelferValueTypeMap1234 { - yyl1143 := r.ReadMapStart() - if yyl1143 == 0 { + yyct1196 := r.ContainerType() + if yyct1196 == codecSelferValueTypeMap1234 { + yyl1196 := r.ReadMapStart() + if yyl1196 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1143, d) + x.codecDecodeSelfFromMap(yyl1196, d) } - } else if yyct1143 == codecSelferValueTypeArray1234 { - yyl1143 := r.ReadArrayStart() - if yyl1143 == 0 { + } else if yyct1196 == codecSelferValueTypeArray1234 { + yyl1196 := r.ReadArrayStart() + if yyl1196 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1143, d) + x.codecDecodeSelfFromArray(yyl1196, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15911,12 +16618,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 yys1197Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1197Slc + var yyhl1197 bool = l >= 0 + for yyj1197 := 0; ; yyj1197++ { + if yyhl1197 { + if yyj1197 >= l { break } } else { @@ -15925,10 +16632,10 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1144Slc = r.DecodeBytes(yys1144Slc, true, true) - yys1144 := string(yys1144Slc) + yys1197Slc = r.DecodeBytes(yys1197Slc, true, true) + yys1197 := string(yys1197Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1144 { + switch yys1197 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15953,9 +16660,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, yys1197) + } // end switch yys1197 + } // end for yyj1197 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15963,16 +16670,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 yyj1201 int + var yyb1201 bool + var yyhl1201 bool = l >= 0 + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1148 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1148 { + if yyb1201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15982,13 +16689,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1148 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1148 { + if yyb1201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15998,13 +16705,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1148 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1148 { + if yyb1201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16020,17 +16727,17 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } for { - yyj1148++ - if yyhl1148 { - yyb1148 = yyj1148 > l + yyj1201++ + if yyhl1201 { + yyb1201 = yyj1201 > l } else { - yyb1148 = r.CheckBreak() + yyb1201 = r.CheckBreak() } - if yyb1148 { + if yyb1201 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1148-1, "") + z.DecStructFieldNotFound(yyj1201-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16042,36 +16749,36 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1152 := z.EncBinary() - _ = yym1152 + yym1205 := z.EncBinary() + _ = yym1205 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 { + yysep1206 := !z.EncBinary() + yy2arr1206 := z.EncBasicHandle().StructToArray + var yyq1206 [4]bool + _, _, _ = yysep1206, yyq1206, yy2arr1206 + const yyr1206 bool = false + yyq1206[0] = x.FieldRef != nil + yyq1206[1] = x.ResourceFieldRef != nil + yyq1206[2] = x.ConfigMapKeyRef != nil + yyq1206[3] = x.SecretKeyRef != nil + var yynn1206 int + if yyr1206 || yy2arr1206 { r.EncodeArrayStart(4) } else { - yynn1153 = 0 - for _, b := range yyq1153 { + yynn1206 = 0 + for _, b := range yyq1206 { if b { - yynn1153++ + yynn1206++ } } - r.EncodeMapStart(yynn1153) - yynn1153 = 0 + r.EncodeMapStart(yynn1206) + yynn1206 = 0 } - if yyr1153 || yy2arr1153 { + if yyr1206 || yy2arr1206 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[0] { + if yyq1206[0] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -16081,7 +16788,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[0] { + if yyq1206[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16092,9 +16799,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1206 || yy2arr1206 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[1] { + if yyq1206[1] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -16104,7 +16811,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[1] { + if yyq1206[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16115,9 +16822,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1206 || yy2arr1206 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[2] { + if yyq1206[2] { if x.ConfigMapKeyRef == nil { r.EncodeNil() } else { @@ -16127,7 +16834,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[2] { + if yyq1206[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("configMapKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16138,9 +16845,9 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1206 || yy2arr1206 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1153[3] { + if yyq1206[3] { if x.SecretKeyRef == nil { r.EncodeNil() } else { @@ -16150,7 +16857,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1153[3] { + if yyq1206[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretKeyRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16161,7 +16868,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1153 || yy2arr1153 { + if yyr1206 || yy2arr1206 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16174,25 +16881,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1158 := z.DecBinary() - _ = yym1158 + yym1211 := z.DecBinary() + _ = yym1211 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1159 := r.ContainerType() - if yyct1159 == codecSelferValueTypeMap1234 { - yyl1159 := r.ReadMapStart() - if yyl1159 == 0 { + yyct1212 := r.ContainerType() + if yyct1212 == codecSelferValueTypeMap1234 { + yyl1212 := r.ReadMapStart() + if yyl1212 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1159, d) + x.codecDecodeSelfFromMap(yyl1212, d) } - } else if yyct1159 == codecSelferValueTypeArray1234 { - yyl1159 := r.ReadArrayStart() - if yyl1159 == 0 { + } else if yyct1212 == codecSelferValueTypeArray1234 { + yyl1212 := r.ReadArrayStart() + if yyl1212 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1159, d) + x.codecDecodeSelfFromArray(yyl1212, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16204,12 +16911,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 yys1213Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1213Slc + var yyhl1213 bool = l >= 0 + for yyj1213 := 0; ; yyj1213++ { + if yyhl1213 { + if yyj1213 >= l { break } } else { @@ -16218,10 +16925,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1160Slc = r.DecodeBytes(yys1160Slc, true, true) - yys1160 := string(yys1160Slc) + yys1213Slc = r.DecodeBytes(yys1213Slc, true, true) + yys1213 := string(yys1213Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1160 { + switch yys1213 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -16267,9 +16974,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, yys1213) + } // end switch yys1213 + } // end for yyj1213 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16277,16 +16984,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 yyj1218 int + var yyb1218 bool + var yyhl1218 bool = l >= 0 + yyj1218++ + if yyhl1218 { + yyb1218 = yyj1218 > l } else { - yyb1165 = r.CheckBreak() + yyb1218 = r.CheckBreak() } - if yyb1165 { + if yyb1218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16301,13 +17008,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1218++ + if yyhl1218 { + yyb1218 = yyj1218 > l } else { - yyb1165 = r.CheckBreak() + yyb1218 = r.CheckBreak() } - if yyb1165 { + if yyb1218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16322,13 +17029,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1218++ + if yyhl1218 { + yyb1218 = yyj1218 > l } else { - yyb1165 = r.CheckBreak() + yyb1218 = r.CheckBreak() } - if yyb1165 { + if yyb1218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16343,13 +17050,13 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ConfigMapKeyRef.CodecDecodeSelf(d) } - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1218++ + if yyhl1218 { + yyb1218 = yyj1218 > l } else { - yyb1165 = r.CheckBreak() + yyb1218 = r.CheckBreak() } - if yyb1165 { + if yyb1218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16365,17 +17072,17 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SecretKeyRef.CodecDecodeSelf(d) } for { - yyj1165++ - if yyhl1165 { - yyb1165 = yyj1165 > l + yyj1218++ + if yyhl1218 { + yyb1218 = yyj1218 > l } else { - yyb1165 = r.CheckBreak() + yyb1218 = r.CheckBreak() } - if yyb1165 { + if yyb1218 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1165-1, "") + z.DecStructFieldNotFound(yyj1218-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16387,35 +17094,35 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1170 := z.EncBinary() - _ = yym1170 + yym1223 := z.EncBinary() + _ = yym1223 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 - yyq1171[0] = x.APIVersion != "" - var yynn1171 int - if yyr1171 || yy2arr1171 { + yysep1224 := !z.EncBinary() + yy2arr1224 := z.EncBasicHandle().StructToArray + var yyq1224 [2]bool + _, _, _ = yysep1224, yyq1224, yy2arr1224 + const yyr1224 bool = false + yyq1224[0] = x.APIVersion != "" + var yynn1224 int + if yyr1224 || yy2arr1224 { r.EncodeArrayStart(2) } else { - yynn1171 = 1 - for _, b := range yyq1171 { + yynn1224 = 1 + for _, b := range yyq1224 { if b { - yynn1171++ + yynn1224++ } } - r.EncodeMapStart(yynn1171) - yynn1171 = 0 + r.EncodeMapStart(yynn1224) + yynn1224 = 0 } - if yyr1171 || yy2arr1171 { + if yyr1224 || yy2arr1224 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1171[0] { - yym1173 := z.EncBinary() - _ = yym1173 + if yyq1224[0] { + yym1226 := z.EncBinary() + _ = yym1226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -16424,22 +17131,22 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1171[0] { + if yyq1224[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1174 := z.EncBinary() - _ = yym1174 + yym1227 := z.EncBinary() + _ = yym1227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1171 || yy2arr1171 { + if yyr1224 || yy2arr1224 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1176 := z.EncBinary() - _ = yym1176 + yym1229 := z.EncBinary() + _ = yym1229 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -16448,14 +17155,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 + yym1230 := z.EncBinary() + _ = yym1230 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr1171 || yy2arr1171 { + if yyr1224 || yy2arr1224 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16468,25 +17175,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1178 := z.DecBinary() - _ = yym1178 + yym1231 := z.DecBinary() + _ = yym1231 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1179 := r.ContainerType() - if yyct1179 == codecSelferValueTypeMap1234 { - yyl1179 := r.ReadMapStart() - if yyl1179 == 0 { + yyct1232 := r.ContainerType() + if yyct1232 == codecSelferValueTypeMap1234 { + yyl1232 := r.ReadMapStart() + if yyl1232 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1179, d) + x.codecDecodeSelfFromMap(yyl1232, d) } - } else if yyct1179 == codecSelferValueTypeArray1234 { - yyl1179 := r.ReadArrayStart() - if yyl1179 == 0 { + } else if yyct1232 == codecSelferValueTypeArray1234 { + yyl1232 := r.ReadArrayStart() + if yyl1232 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1179, d) + x.codecDecodeSelfFromArray(yyl1232, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16498,12 +17205,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 yys1233Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1233Slc + var yyhl1233 bool = l >= 0 + for yyj1233 := 0; ; yyj1233++ { + if yyhl1233 { + if yyj1233 >= l { break } } else { @@ -16512,10 +17219,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1180Slc = r.DecodeBytes(yys1180Slc, true, true) - yys1180 := string(yys1180Slc) + yys1233Slc = r.DecodeBytes(yys1233Slc, true, true) + yys1233 := string(yys1233Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1180 { + switch yys1233 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -16529,9 +17236,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, yys1233) + } // end switch yys1233 + } // end for yyj1233 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16539,16 +17246,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 yyj1236 int + var yyb1236 bool + var yyhl1236 bool = l >= 0 + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1183 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1183 { + if yyb1236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16558,13 +17265,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1183 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1183 { + if yyb1236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16575,17 +17282,17 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1183 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1183 { + if yyb1236 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1183-1, "") + z.DecStructFieldNotFound(yyj1236-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16597,36 +17304,36 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1186 := z.EncBinary() - _ = yym1186 + yym1239 := z.EncBinary() + _ = yym1239 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 { + yysep1240 := !z.EncBinary() + yy2arr1240 := z.EncBasicHandle().StructToArray + var yyq1240 [3]bool + _, _, _ = yysep1240, yyq1240, yy2arr1240 + const yyr1240 bool = false + yyq1240[0] = x.ContainerName != "" + yyq1240[2] = true + var yynn1240 int + if yyr1240 || yy2arr1240 { r.EncodeArrayStart(3) } else { - yynn1187 = 1 - for _, b := range yyq1187 { + yynn1240 = 1 + for _, b := range yyq1240 { if b { - yynn1187++ + yynn1240++ } } - r.EncodeMapStart(yynn1187) - yynn1187 = 0 + r.EncodeMapStart(yynn1240) + yynn1240 = 0 } - if yyr1187 || yy2arr1187 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1187[0] { - yym1189 := z.EncBinary() - _ = yym1189 + if yyq1240[0] { + yym1242 := z.EncBinary() + _ = yym1242 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) @@ -16635,22 +17342,22 @@ func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1187[0] { + if yyq1240[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1190 := z.EncBinary() - _ = yym1190 + yym1243 := z.EncBinary() + _ = yym1243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerName)) } } } - if yyr1187 || yy2arr1187 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1192 := z.EncBinary() - _ = yym1192 + yym1245 := z.EncBinary() + _ = yym1245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) @@ -16659,47 +17366,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 + yym1246 := z.EncBinary() + _ = yym1246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Resource)) } } - if yyr1187 || yy2arr1187 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1187[2] { - yy1195 := &x.Divisor - yym1196 := z.EncBinary() - _ = yym1196 + if yyq1240[2] { + yy1248 := &x.Divisor + yym1249 := z.EncBinary() + _ = yym1249 if false { - } else if z.HasExtensions() && z.EncExt(yy1195) { - } else if !yym1196 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1195) + } else if z.HasExtensions() && z.EncExt(yy1248) { + } else if !yym1249 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1248) } else { - z.EncFallback(yy1195) + z.EncFallback(yy1248) } } else { r.EncodeNil() } } else { - if yyq1187[2] { + if yyq1240[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("divisor")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1197 := &x.Divisor - yym1198 := z.EncBinary() - _ = yym1198 + yy1250 := &x.Divisor + yym1251 := z.EncBinary() + _ = yym1251 if false { - } else if z.HasExtensions() && z.EncExt(yy1197) { - } else if !yym1198 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1197) + } else if z.HasExtensions() && z.EncExt(yy1250) { + } else if !yym1251 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1250) } else { - z.EncFallback(yy1197) + z.EncFallback(yy1250) } } } - if yyr1187 || yy2arr1187 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16712,25 +17419,25 @@ func (x *ResourceFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1199 := z.DecBinary() - _ = yym1199 + yym1252 := z.DecBinary() + _ = yym1252 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1200 := r.ContainerType() - if yyct1200 == codecSelferValueTypeMap1234 { - yyl1200 := r.ReadMapStart() - if yyl1200 == 0 { + yyct1253 := r.ContainerType() + if yyct1253 == codecSelferValueTypeMap1234 { + yyl1253 := r.ReadMapStart() + if yyl1253 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1200, d) + x.codecDecodeSelfFromMap(yyl1253, d) } - } else if yyct1200 == codecSelferValueTypeArray1234 { - yyl1200 := r.ReadArrayStart() - if yyl1200 == 0 { + } else if yyct1253 == codecSelferValueTypeArray1234 { + yyl1253 := r.ReadArrayStart() + if yyl1253 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1200, d) + x.codecDecodeSelfFromArray(yyl1253, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16742,12 +17449,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 yys1254Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1254Slc + var yyhl1254 bool = l >= 0 + for yyj1254 := 0; ; yyj1254++ { + if yyhl1254 { + if yyj1254 >= l { break } } else { @@ -16756,10 +17463,10 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1201Slc = r.DecodeBytes(yys1201Slc, true, true) - yys1201 := string(yys1201Slc) + yys1254Slc = r.DecodeBytes(yys1254Slc, true, true) + yys1254 := string(yys1254Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1201 { + switch yys1254 { case "containerName": if r.TryDecodeAsNil() { x.ContainerName = "" @@ -16776,21 +17483,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 + yyv1257 := &x.Divisor + yym1258 := z.DecBinary() + _ = yym1258 if false { - } else if z.HasExtensions() && z.DecExt(yyv1204) { - } else if !yym1205 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1204) + } else if z.HasExtensions() && z.DecExt(yyv1257) { + } else if !yym1258 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1257) } else { - z.DecFallback(yyv1204, false) + z.DecFallback(yyv1257, false) } } default: - z.DecStructFieldNotFound(-1, yys1201) - } // end switch yys1201 - } // end for yyj1201 + z.DecStructFieldNotFound(-1, yys1254) + } // end switch yys1254 + } // end for yyj1254 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16798,16 +17505,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 yyj1259 int + var yyb1259 bool + var yyhl1259 bool = l >= 0 + yyj1259++ + if yyhl1259 { + yyb1259 = yyj1259 > l } else { - yyb1206 = r.CheckBreak() + yyb1259 = r.CheckBreak() } - if yyb1206 { + if yyb1259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16817,13 +17524,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.ContainerName = string(r.DecodeString()) } - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + yyj1259++ + if yyhl1259 { + yyb1259 = yyj1259 > l } else { - yyb1206 = r.CheckBreak() + yyb1259 = r.CheckBreak() } - if yyb1206 { + if yyb1259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16833,13 +17540,13 @@ func (x *ResourceFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Resource = string(r.DecodeString()) } - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + yyj1259++ + if yyhl1259 { + yyb1259 = yyj1259 > l } else { - yyb1206 = r.CheckBreak() + yyb1259 = r.CheckBreak() } - if yyb1206 { + if yyb1259 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16847,29 +17554,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 + yyv1262 := &x.Divisor + yym1263 := z.DecBinary() + _ = yym1263 if false { - } else if z.HasExtensions() && z.DecExt(yyv1209) { - } else if !yym1210 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1209) + } else if z.HasExtensions() && z.DecExt(yyv1262) { + } else if !yym1263 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1262) } else { - z.DecFallback(yyv1209, false) + z.DecFallback(yyv1262, false) } } for { - yyj1206++ - if yyhl1206 { - yyb1206 = yyj1206 > l + yyj1259++ + if yyhl1259 { + yyb1259 = yyj1259 > l } else { - yyb1206 = r.CheckBreak() + yyb1259 = r.CheckBreak() } - if yyb1206 { + if yyb1259 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1206-1, "") + z.DecStructFieldNotFound(yyj1259-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16881,35 +17588,35 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1211 := z.EncBinary() - _ = yym1211 + yym1264 := z.EncBinary() + _ = yym1264 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 - yyq1212[0] = x.Name != "" - var yynn1212 int - if yyr1212 || yy2arr1212 { + yysep1265 := !z.EncBinary() + yy2arr1265 := z.EncBasicHandle().StructToArray + var yyq1265 [2]bool + _, _, _ = yysep1265, yyq1265, yy2arr1265 + const yyr1265 bool = false + yyq1265[0] = x.Name != "" + var yynn1265 int + if yyr1265 || yy2arr1265 { r.EncodeArrayStart(2) } else { - yynn1212 = 1 - for _, b := range yyq1212 { + yynn1265 = 1 + for _, b := range yyq1265 { if b { - yynn1212++ + yynn1265++ } } - r.EncodeMapStart(yynn1212) - yynn1212 = 0 + r.EncodeMapStart(yynn1265) + yynn1265 = 0 } - if yyr1212 || yy2arr1212 { + if yyr1265 || yy2arr1265 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1212[0] { - yym1214 := z.EncBinary() - _ = yym1214 + if yyq1265[0] { + yym1267 := z.EncBinary() + _ = yym1267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -16918,22 +17625,22 @@ func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1212[0] { + if yyq1265[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1215 := z.EncBinary() - _ = yym1215 + yym1268 := z.EncBinary() + _ = yym1268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1212 || yy2arr1212 { + if yyr1265 || yy2arr1265 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1217 := z.EncBinary() - _ = yym1217 + yym1270 := z.EncBinary() + _ = yym1270 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -16942,14 +17649,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 + yym1271 := z.EncBinary() + _ = yym1271 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1212 || yy2arr1212 { + if yyr1265 || yy2arr1265 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16962,25 +17669,25 @@ func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1219 := z.DecBinary() - _ = yym1219 + yym1272 := z.DecBinary() + _ = yym1272 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1220 := r.ContainerType() - if yyct1220 == codecSelferValueTypeMap1234 { - yyl1220 := r.ReadMapStart() - if yyl1220 == 0 { + yyct1273 := r.ContainerType() + if yyct1273 == codecSelferValueTypeMap1234 { + yyl1273 := r.ReadMapStart() + if yyl1273 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1220, d) + x.codecDecodeSelfFromMap(yyl1273, d) } - } else if yyct1220 == codecSelferValueTypeArray1234 { - yyl1220 := r.ReadArrayStart() - if yyl1220 == 0 { + } else if yyct1273 == codecSelferValueTypeArray1234 { + yyl1273 := r.ReadArrayStart() + if yyl1273 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1220, d) + x.codecDecodeSelfFromArray(yyl1273, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16992,12 +17699,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 yys1274Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1274Slc + var yyhl1274 bool = l >= 0 + for yyj1274 := 0; ; yyj1274++ { + if yyhl1274 { + if yyj1274 >= l { break } } else { @@ -17006,10 +17713,10 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1221Slc = r.DecodeBytes(yys1221Slc, true, true) - yys1221 := string(yys1221Slc) + yys1274Slc = r.DecodeBytes(yys1274Slc, true, true) + yys1274 := string(yys1274Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1221 { + switch yys1274 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -17023,9 +17730,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, yys1274) + } // end switch yys1274 + } // end for yyj1274 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17033,16 +17740,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 yyj1277 int + var yyb1277 bool + var yyhl1277 bool = l >= 0 + yyj1277++ + if yyhl1277 { + yyb1277 = yyj1277 > l } else { - yyb1224 = r.CheckBreak() + yyb1277 = r.CheckBreak() } - if yyb1224 { + if yyb1277 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17052,13 +17759,13 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Name = string(r.DecodeString()) } - yyj1224++ - if yyhl1224 { - yyb1224 = yyj1224 > l + yyj1277++ + if yyhl1277 { + yyb1277 = yyj1277 > l } else { - yyb1224 = r.CheckBreak() + yyb1277 = r.CheckBreak() } - if yyb1224 { + if yyb1277 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17069,17 +17776,17 @@ func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Key = string(r.DecodeString()) } for { - yyj1224++ - if yyhl1224 { - yyb1224 = yyj1224 > l + yyj1277++ + if yyhl1277 { + yyb1277 = yyj1277 > l } else { - yyb1224 = r.CheckBreak() + yyb1277 = r.CheckBreak() } - if yyb1224 { + if yyb1277 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1224-1, "") + z.DecStructFieldNotFound(yyj1277-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17091,35 +17798,35 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1227 := z.EncBinary() - _ = yym1227 + yym1280 := z.EncBinary() + _ = yym1280 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 - yyq1228[0] = x.Name != "" - var yynn1228 int - if yyr1228 || yy2arr1228 { + yysep1281 := !z.EncBinary() + yy2arr1281 := z.EncBasicHandle().StructToArray + var yyq1281 [2]bool + _, _, _ = yysep1281, yyq1281, yy2arr1281 + const yyr1281 bool = false + yyq1281[0] = x.Name != "" + var yynn1281 int + if yyr1281 || yy2arr1281 { r.EncodeArrayStart(2) } else { - yynn1228 = 1 - for _, b := range yyq1228 { + yynn1281 = 1 + for _, b := range yyq1281 { if b { - yynn1228++ + yynn1281++ } } - r.EncodeMapStart(yynn1228) - yynn1228 = 0 + r.EncodeMapStart(yynn1281) + yynn1281 = 0 } - if yyr1228 || yy2arr1228 { + if yyr1281 || yy2arr1281 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1228[0] { - yym1230 := z.EncBinary() - _ = yym1230 + if yyq1281[0] { + yym1283 := z.EncBinary() + _ = yym1283 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17128,22 +17835,22 @@ func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1228[0] { + if yyq1281[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1231 := z.EncBinary() - _ = yym1231 + yym1284 := z.EncBinary() + _ = yym1284 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1228 || yy2arr1228 { + if yyr1281 || yy2arr1281 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1233 := z.EncBinary() - _ = yym1233 + yym1286 := z.EncBinary() + _ = yym1286 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -17152,14 +17859,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 + yym1287 := z.EncBinary() + _ = yym1287 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1228 || yy2arr1228 { + if yyr1281 || yy2arr1281 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17172,25 +17879,25 @@ func (x *SecretKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1235 := z.DecBinary() - _ = yym1235 + yym1288 := z.DecBinary() + _ = yym1288 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1236 := r.ContainerType() - if yyct1236 == codecSelferValueTypeMap1234 { - yyl1236 := r.ReadMapStart() - if yyl1236 == 0 { + yyct1289 := r.ContainerType() + if yyct1289 == codecSelferValueTypeMap1234 { + yyl1289 := r.ReadMapStart() + if yyl1289 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1236, d) + x.codecDecodeSelfFromMap(yyl1289, d) } - } else if yyct1236 == codecSelferValueTypeArray1234 { - yyl1236 := r.ReadArrayStart() - if yyl1236 == 0 { + } else if yyct1289 == codecSelferValueTypeArray1234 { + yyl1289 := r.ReadArrayStart() + if yyl1289 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1236, d) + x.codecDecodeSelfFromArray(yyl1289, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17202,12 +17909,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 yys1290Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1290Slc + var yyhl1290 bool = l >= 0 + for yyj1290 := 0; ; yyj1290++ { + if yyhl1290 { + if yyj1290 >= l { break } } else { @@ -17216,10 +17923,10 @@ func (x *SecretKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1237Slc = r.DecodeBytes(yys1237Slc, true, true) - yys1237 := string(yys1237Slc) + yys1290Slc = r.DecodeBytes(yys1290Slc, true, true) + yys1290 := string(yys1290Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1237 { + switch yys1290 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -17233,9 +17940,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, yys1290) + } // end switch yys1290 + } // end for yyj1290 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17243,16 +17950,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 yyj1293 int + var yyb1293 bool + var yyhl1293 bool = l >= 0 + yyj1293++ + if yyhl1293 { + yyb1293 = yyj1293 > l } else { - yyb1240 = r.CheckBreak() + yyb1293 = r.CheckBreak() } - if yyb1240 { + if yyb1293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17262,13 +17969,13 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Name = string(r.DecodeString()) } - yyj1240++ - if yyhl1240 { - yyb1240 = yyj1240 > l + yyj1293++ + if yyhl1293 { + yyb1293 = yyj1293 > l } else { - yyb1240 = r.CheckBreak() + yyb1293 = r.CheckBreak() } - if yyb1240 { + if yyb1293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17279,17 +17986,17 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.Key = string(r.DecodeString()) } for { - yyj1240++ - if yyhl1240 { - yyb1240 = yyj1240 > l + yyj1293++ + if yyhl1293 { + yyb1293 = yyj1293 > l } else { - yyb1240 = r.CheckBreak() + yyb1293 = r.CheckBreak() } - if yyb1240 { + if yyb1293 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1240-1, "") + z.DecStructFieldNotFound(yyj1293-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17301,33 +18008,33 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1243 := z.EncBinary() - _ = yym1243 + yym1296 := z.EncBinary() + _ = yym1296 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 { + yysep1297 := !z.EncBinary() + yy2arr1297 := z.EncBasicHandle().StructToArray + var yyq1297 [2]bool + _, _, _ = yysep1297, yyq1297, yy2arr1297 + const yyr1297 bool = false + var yynn1297 int + if yyr1297 || yy2arr1297 { r.EncodeArrayStart(2) } else { - yynn1244 = 2 - for _, b := range yyq1244 { + yynn1297 = 2 + for _, b := range yyq1297 { if b { - yynn1244++ + yynn1297++ } } - r.EncodeMapStart(yynn1244) - yynn1244 = 0 + r.EncodeMapStart(yynn1297) + yynn1297 = 0 } - if yyr1244 || yy2arr1244 { + if yyr1297 || yy2arr1297 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1246 := z.EncBinary() - _ = yym1246 + yym1299 := z.EncBinary() + _ = yym1299 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17336,17 +18043,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 + yym1300 := z.EncBinary() + _ = yym1300 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1244 || yy2arr1244 { + if yyr1297 || yy2arr1297 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1249 := z.EncBinary() - _ = yym1249 + yym1302 := z.EncBinary() + _ = yym1302 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -17355,14 +18062,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 + yym1303 := z.EncBinary() + _ = yym1303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } - if yyr1244 || yy2arr1244 { + if yyr1297 || yy2arr1297 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17375,25 +18082,25 @@ func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1251 := z.DecBinary() - _ = yym1251 + yym1304 := z.DecBinary() + _ = yym1304 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1252 := r.ContainerType() - if yyct1252 == codecSelferValueTypeMap1234 { - yyl1252 := r.ReadMapStart() - if yyl1252 == 0 { + yyct1305 := r.ContainerType() + if yyct1305 == codecSelferValueTypeMap1234 { + yyl1305 := r.ReadMapStart() + if yyl1305 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1252, d) + x.codecDecodeSelfFromMap(yyl1305, d) } - } else if yyct1252 == codecSelferValueTypeArray1234 { - yyl1252 := r.ReadArrayStart() - if yyl1252 == 0 { + } else if yyct1305 == codecSelferValueTypeArray1234 { + yyl1305 := r.ReadArrayStart() + if yyl1305 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1252, d) + x.codecDecodeSelfFromArray(yyl1305, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17405,12 +18112,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 yys1306Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1306Slc + var yyhl1306 bool = l >= 0 + for yyj1306 := 0; ; yyj1306++ { + if yyhl1306 { + if yyj1306 >= l { break } } else { @@ -17419,10 +18126,10 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1253Slc = r.DecodeBytes(yys1253Slc, true, true) - yys1253 := string(yys1253Slc) + yys1306Slc = r.DecodeBytes(yys1306Slc, true, true) + yys1306 := string(yys1306Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1253 { + switch yys1306 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -17436,9 +18143,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, yys1306) + } // end switch yys1306 + } // end for yyj1306 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17446,16 +18153,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 yyj1309 int + var yyb1309 bool + var yyhl1309 bool = l >= 0 + yyj1309++ + if yyhl1309 { + yyb1309 = yyj1309 > l } else { - yyb1256 = r.CheckBreak() + yyb1309 = r.CheckBreak() } - if yyb1256 { + if yyb1309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17465,13 +18172,13 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1256++ - if yyhl1256 { - yyb1256 = yyj1256 > l + yyj1309++ + if yyhl1309 { + yyb1309 = yyj1309 > l } else { - yyb1256 = r.CheckBreak() + yyb1309 = r.CheckBreak() } - if yyb1256 { + if yyb1309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17482,17 +18189,17 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Value = string(r.DecodeString()) } for { - yyj1256++ - if yyhl1256 { - yyb1256 = yyj1256 > l + yyj1309++ + if yyhl1309 { + yyb1309 = yyj1309 > l } else { - yyb1256 = r.CheckBreak() + yyb1309 = r.CheckBreak() } - if yyb1256 { + if yyb1309 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1256-1, "") + z.DecStructFieldNotFound(yyj1309-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17504,38 +18211,38 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1259 := z.EncBinary() - _ = yym1259 + yym1312 := z.EncBinary() + _ = yym1312 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[2] = x.Host != "" - yyq1260[3] = x.Scheme != "" - yyq1260[4] = len(x.HTTPHeaders) != 0 - var yynn1260 int - if yyr1260 || yy2arr1260 { + yysep1313 := !z.EncBinary() + yy2arr1313 := z.EncBasicHandle().StructToArray + var yyq1313 [5]bool + _, _, _ = yysep1313, yyq1313, yy2arr1313 + const yyr1313 bool = false + yyq1313[0] = x.Path != "" + yyq1313[2] = x.Host != "" + yyq1313[3] = x.Scheme != "" + yyq1313[4] = len(x.HTTPHeaders) != 0 + var yynn1313 int + if yyr1313 || yy2arr1313 { r.EncodeArrayStart(5) } else { - yynn1260 = 1 - for _, b := range yyq1260 { + yynn1313 = 1 + for _, b := range yyq1313 { if b { - yynn1260++ + yynn1313++ } } - r.EncodeMapStart(yynn1260) - yynn1260 = 0 + r.EncodeMapStart(yynn1313) + yynn1313 = 0 } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[0] { - yym1262 := z.EncBinary() - _ = yym1262 + if yyq1313[0] { + yym1315 := z.EncBinary() + _ = yym1315 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -17544,50 +18251,50 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1260[0] { + if yyq1313[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1263 := z.EncBinary() - _ = yym1263 + yym1316 := z.EncBinary() + _ = yym1316 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1265 := &x.Port - yym1266 := z.EncBinary() - _ = yym1266 + yy1318 := &x.Port + yym1319 := z.EncBinary() + _ = yym1319 if false { - } else if z.HasExtensions() && z.EncExt(yy1265) { - } else if !yym1266 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1265) + } else if z.HasExtensions() && z.EncExt(yy1318) { + } else if !yym1319 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1318) } else { - z.EncFallback(yy1265) + z.EncFallback(yy1318) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1267 := &x.Port - yym1268 := z.EncBinary() - _ = yym1268 + yy1320 := &x.Port + yym1321 := z.EncBinary() + _ = yym1321 if false { - } else if z.HasExtensions() && z.EncExt(yy1267) { - } else if !yym1268 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1267) + } else if z.HasExtensions() && z.EncExt(yy1320) { + } else if !yym1321 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1320) } else { - z.EncFallback(yy1267) + z.EncFallback(yy1320) } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[2] { - yym1270 := z.EncBinary() - _ = yym1270 + if yyq1313[2] { + yym1323 := z.EncBinary() + _ = yym1323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -17596,41 +18303,41 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1260[2] { + if yyq1313[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1271 := z.EncBinary() - _ = yym1271 + yym1324 := z.EncBinary() + _ = yym1324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[3] { + if yyq1313[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1260[3] { + if yyq1313[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1260[4] { + if yyq1313[4] { if x.HTTPHeaders == nil { r.EncodeNil() } else { - yym1274 := z.EncBinary() - _ = yym1274 + yym1327 := z.EncBinary() + _ = yym1327 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -17640,15 +18347,15 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1260[4] { + if yyq1313[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 + yym1328 := z.EncBinary() + _ = yym1328 if false { } else { h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) @@ -17656,7 +18363,7 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1260 || yy2arr1260 { + if yyr1313 || yy2arr1313 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17669,25 +18376,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1276 := z.DecBinary() - _ = yym1276 + yym1329 := z.DecBinary() + _ = yym1329 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1277 := r.ContainerType() - if yyct1277 == codecSelferValueTypeMap1234 { - yyl1277 := r.ReadMapStart() - if yyl1277 == 0 { + yyct1330 := r.ContainerType() + if yyct1330 == codecSelferValueTypeMap1234 { + yyl1330 := r.ReadMapStart() + if yyl1330 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1277, d) + x.codecDecodeSelfFromMap(yyl1330, d) } - } else if yyct1277 == codecSelferValueTypeArray1234 { - yyl1277 := r.ReadArrayStart() - if yyl1277 == 0 { + } else if yyct1330 == codecSelferValueTypeArray1234 { + yyl1330 := r.ReadArrayStart() + if yyl1330 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1277, d) + x.codecDecodeSelfFromArray(yyl1330, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17699,12 +18406,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 yys1331Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1331Slc + var yyhl1331 bool = l >= 0 + for yyj1331 := 0; ; yyj1331++ { + if yyhl1331 { + if yyj1331 >= l { break } } else { @@ -17713,10 +18420,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1278Slc = r.DecodeBytes(yys1278Slc, true, true) - yys1278 := string(yys1278Slc) + yys1331Slc = r.DecodeBytes(yys1331Slc, true, true) + yys1331 := string(yys1331Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1278 { + switch yys1331 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -17727,15 +18434,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 + yyv1333 := &x.Port + yym1334 := z.DecBinary() + _ = yym1334 if false { - } else if z.HasExtensions() && z.DecExt(yyv1280) { - } else if !yym1281 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1280) + } else if z.HasExtensions() && z.DecExt(yyv1333) { + } else if !yym1334 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1333) } else { - z.DecFallback(yyv1280, false) + z.DecFallback(yyv1333, false) } } case "host": @@ -17754,18 +18461,18 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1284 := &x.HTTPHeaders - yym1285 := z.DecBinary() - _ = yym1285 + yyv1337 := &x.HTTPHeaders + yym1338 := z.DecBinary() + _ = yym1338 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1284), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1337), d) } } default: - z.DecStructFieldNotFound(-1, yys1278) - } // end switch yys1278 - } // end for yyj1278 + z.DecStructFieldNotFound(-1, yys1331) + } // end switch yys1331 + } // end for yyj1331 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17773,16 +18480,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 yyj1339 int + var yyb1339 bool + var yyhl1339 bool = l >= 0 + yyj1339++ + if yyhl1339 { + yyb1339 = yyj1339 > l } else { - yyb1286 = r.CheckBreak() + yyb1339 = r.CheckBreak() } - if yyb1286 { + if yyb1339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17792,13 +18499,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1339++ + if yyhl1339 { + yyb1339 = yyj1339 > l } else { - yyb1286 = r.CheckBreak() + yyb1339 = r.CheckBreak() } - if yyb1286 { + if yyb1339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17806,24 +18513,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 + yyv1341 := &x.Port + yym1342 := z.DecBinary() + _ = yym1342 if false { - } else if z.HasExtensions() && z.DecExt(yyv1288) { - } else if !yym1289 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1288) + } else if z.HasExtensions() && z.DecExt(yyv1341) { + } else if !yym1342 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1341) } else { - z.DecFallback(yyv1288, false) + z.DecFallback(yyv1341, false) } } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1339++ + if yyhl1339 { + yyb1339 = yyj1339 > l } else { - yyb1286 = r.CheckBreak() + yyb1339 = r.CheckBreak() } - if yyb1286 { + if yyb1339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17833,13 +18540,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1339++ + if yyhl1339 { + yyb1339 = yyj1339 > l } else { - yyb1286 = r.CheckBreak() + yyb1339 = r.CheckBreak() } - if yyb1286 { + if yyb1339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17849,13 +18556,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1339++ + if yyhl1339 { + yyb1339 = yyj1339 > l } else { - yyb1286 = r.CheckBreak() + yyb1339 = r.CheckBreak() } - if yyb1286 { + if yyb1339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17863,26 +18570,26 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1292 := &x.HTTPHeaders - yym1293 := z.DecBinary() - _ = yym1293 + yyv1345 := &x.HTTPHeaders + yym1346 := z.DecBinary() + _ = yym1346 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1292), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1345), d) } } for { - yyj1286++ - if yyhl1286 { - yyb1286 = yyj1286 > l + yyj1339++ + if yyhl1339 { + yyb1339 = yyj1339 > l } else { - yyb1286 = r.CheckBreak() + yyb1339 = r.CheckBreak() } - if yyb1286 { + if yyb1339 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1286-1, "") + z.DecStructFieldNotFound(yyj1339-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17891,8 +18598,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1294 := z.EncBinary() - _ = yym1294 + yym1347 := z.EncBinary() + _ = yym1347 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17904,8 +18611,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1295 := z.DecBinary() - _ = yym1295 + yym1348 := z.DecBinary() + _ = yym1348 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17920,57 +18627,57 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1296 := z.EncBinary() - _ = yym1296 + yym1349 := z.EncBinary() + _ = yym1349 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 - var yynn1297 int - if yyr1297 || yy2arr1297 { + yysep1350 := !z.EncBinary() + yy2arr1350 := z.EncBasicHandle().StructToArray + var yyq1350 [1]bool + _, _, _ = yysep1350, yyq1350, yy2arr1350 + const yyr1350 bool = false + var yynn1350 int + if yyr1350 || yy2arr1350 { r.EncodeArrayStart(1) } else { - yynn1297 = 1 - for _, b := range yyq1297 { + yynn1350 = 1 + for _, b := range yyq1350 { if b { - yynn1297++ + yynn1350++ } } - r.EncodeMapStart(yynn1297) - yynn1297 = 0 + r.EncodeMapStart(yynn1350) + yynn1350 = 0 } - if yyr1297 || yy2arr1297 { + if yyr1350 || yy2arr1350 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1299 := &x.Port - yym1300 := z.EncBinary() - _ = yym1300 + yy1352 := &x.Port + yym1353 := z.EncBinary() + _ = yym1353 if false { - } else if z.HasExtensions() && z.EncExt(yy1299) { - } else if !yym1300 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1299) + } else if z.HasExtensions() && z.EncExt(yy1352) { + } else if !yym1353 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1352) } else { - z.EncFallback(yy1299) + z.EncFallback(yy1352) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1301 := &x.Port - yym1302 := z.EncBinary() - _ = yym1302 + yy1354 := &x.Port + yym1355 := z.EncBinary() + _ = yym1355 if false { - } else if z.HasExtensions() && z.EncExt(yy1301) { - } else if !yym1302 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1301) + } else if z.HasExtensions() && z.EncExt(yy1354) { + } else if !yym1355 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1354) } else { - z.EncFallback(yy1301) + z.EncFallback(yy1354) } } - if yyr1297 || yy2arr1297 { + if yyr1350 || yy2arr1350 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17983,25 +18690,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1303 := z.DecBinary() - _ = yym1303 + yym1356 := z.DecBinary() + _ = yym1356 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1304 := r.ContainerType() - if yyct1304 == codecSelferValueTypeMap1234 { - yyl1304 := r.ReadMapStart() - if yyl1304 == 0 { + yyct1357 := r.ContainerType() + if yyct1357 == codecSelferValueTypeMap1234 { + yyl1357 := r.ReadMapStart() + if yyl1357 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1304, d) + x.codecDecodeSelfFromMap(yyl1357, d) } - } else if yyct1304 == codecSelferValueTypeArray1234 { - yyl1304 := r.ReadArrayStart() - if yyl1304 == 0 { + } else if yyct1357 == codecSelferValueTypeArray1234 { + yyl1357 := r.ReadArrayStart() + if yyl1357 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1304, d) + x.codecDecodeSelfFromArray(yyl1357, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18013,12 +18720,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 yys1358Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1358Slc + var yyhl1358 bool = l >= 0 + for yyj1358 := 0; ; yyj1358++ { + if yyhl1358 { + if yyj1358 >= l { break } } else { @@ -18027,29 +18734,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1305Slc = r.DecodeBytes(yys1305Slc, true, true) - yys1305 := string(yys1305Slc) + yys1358Slc = r.DecodeBytes(yys1358Slc, true, true) + yys1358 := string(yys1358Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1305 { + switch yys1358 { case "port": if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1306 := &x.Port - yym1307 := z.DecBinary() - _ = yym1307 + yyv1359 := &x.Port + yym1360 := z.DecBinary() + _ = yym1360 if false { - } else if z.HasExtensions() && z.DecExt(yyv1306) { - } else if !yym1307 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1306) + } else if z.HasExtensions() && z.DecExt(yyv1359) { + } else if !yym1360 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1359) } else { - z.DecFallback(yyv1306, false) + z.DecFallback(yyv1359, false) } } default: - z.DecStructFieldNotFound(-1, yys1305) - } // end switch yys1305 - } // end for yyj1305 + z.DecStructFieldNotFound(-1, yys1358) + } // end switch yys1358 + } // end for yyj1358 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18057,16 +18764,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 yyj1361 int + var yyb1361 bool + var yyhl1361 bool = l >= 0 + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1308 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1308 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18074,29 +18781,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 + yyv1362 := &x.Port + yym1363 := z.DecBinary() + _ = yym1363 if false { - } else if z.HasExtensions() && z.DecExt(yyv1309) { - } else if !yym1310 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1309) + } else if z.HasExtensions() && z.DecExt(yyv1362) { + } else if !yym1363 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1362) } else { - z.DecFallback(yyv1309, false) + z.DecFallback(yyv1362, false) } } for { - yyj1308++ - if yyhl1308 { - yyb1308 = yyj1308 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1308 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1308 { + if yyb1361 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1308-1, "") + z.DecStructFieldNotFound(yyj1361-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18108,38 +18815,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1311 := z.EncBinary() - _ = yym1311 + yym1364 := z.EncBinary() + _ = yym1364 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 { + yysep1365 := !z.EncBinary() + yy2arr1365 := z.EncBasicHandle().StructToArray + var yyq1365 [1]bool + _, _, _ = yysep1365, yyq1365, yy2arr1365 + const yyr1365 bool = false + yyq1365[0] = len(x.Command) != 0 + var yynn1365 int + if yyr1365 || yy2arr1365 { r.EncodeArrayStart(1) } else { - yynn1312 = 0 - for _, b := range yyq1312 { + yynn1365 = 0 + for _, b := range yyq1365 { if b { - yynn1312++ + yynn1365++ } } - r.EncodeMapStart(yynn1312) - yynn1312 = 0 + r.EncodeMapStart(yynn1365) + yynn1365 = 0 } - if yyr1312 || yy2arr1312 { + if yyr1365 || yy2arr1365 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1312[0] { + if yyq1365[0] { if x.Command == nil { r.EncodeNil() } else { - yym1314 := z.EncBinary() - _ = yym1314 + yym1367 := z.EncBinary() + _ = yym1367 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18149,15 +18856,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1312[0] { + if yyq1365[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 + yym1368 := z.EncBinary() + _ = yym1368 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -18165,7 +18872,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1312 || yy2arr1312 { + if yyr1365 || yy2arr1365 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18178,25 +18885,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1316 := z.DecBinary() - _ = yym1316 + yym1369 := z.DecBinary() + _ = yym1369 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1317 := r.ContainerType() - if yyct1317 == codecSelferValueTypeMap1234 { - yyl1317 := r.ReadMapStart() - if yyl1317 == 0 { + yyct1370 := r.ContainerType() + if yyct1370 == codecSelferValueTypeMap1234 { + yyl1370 := r.ReadMapStart() + if yyl1370 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1317, d) + x.codecDecodeSelfFromMap(yyl1370, d) } - } else if yyct1317 == codecSelferValueTypeArray1234 { - yyl1317 := r.ReadArrayStart() - if yyl1317 == 0 { + } else if yyct1370 == codecSelferValueTypeArray1234 { + yyl1370 := r.ReadArrayStart() + if yyl1370 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1317, d) + x.codecDecodeSelfFromArray(yyl1370, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18208,12 +18915,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 yys1371Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1371Slc + var yyhl1371 bool = l >= 0 + for yyj1371 := 0; ; yyj1371++ { + if yyhl1371 { + if yyj1371 >= l { break } } else { @@ -18222,26 +18929,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1318Slc = r.DecodeBytes(yys1318Slc, true, true) - yys1318 := string(yys1318Slc) + yys1371Slc = r.DecodeBytes(yys1371Slc, true, true) + yys1371 := string(yys1371Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1318 { + switch yys1371 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1319 := &x.Command - yym1320 := z.DecBinary() - _ = yym1320 + yyv1372 := &x.Command + yym1373 := z.DecBinary() + _ = yym1373 if false { } else { - z.F.DecSliceStringX(yyv1319, false, d) + z.F.DecSliceStringX(yyv1372, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1318) - } // end switch yys1318 - } // end for yyj1318 + z.DecStructFieldNotFound(-1, yys1371) + } // end switch yys1371 + } // end for yyj1371 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18249,16 +18956,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 yyj1374 int + var yyb1374 bool + var yyhl1374 bool = l >= 0 + yyj1374++ + if yyhl1374 { + yyb1374 = yyj1374 > l } else { - yyb1321 = r.CheckBreak() + yyb1374 = r.CheckBreak() } - if yyb1321 { + if yyb1374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18266,26 +18973,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1322 := &x.Command - yym1323 := z.DecBinary() - _ = yym1323 + yyv1375 := &x.Command + yym1376 := z.DecBinary() + _ = yym1376 if false { } else { - z.F.DecSliceStringX(yyv1322, false, d) + z.F.DecSliceStringX(yyv1375, false, d) } } for { - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1374++ + if yyhl1374 { + yyb1374 = yyj1374 > l } else { - yyb1321 = r.CheckBreak() + yyb1374 = r.CheckBreak() } - if yyb1321 { + if yyb1374 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1321-1, "") + z.DecStructFieldNotFound(yyj1374-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18297,49 +19004,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1324 := z.EncBinary() - _ = yym1324 + yym1377 := z.EncBinary() + _ = yym1377 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 { + yysep1378 := !z.EncBinary() + yy2arr1378 := z.EncBasicHandle().StructToArray + var yyq1378 [8]bool + _, _, _ = yysep1378, yyq1378, yy2arr1378 + const yyr1378 bool = false + yyq1378[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1378[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1378[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1378[3] = x.InitialDelaySeconds != 0 + yyq1378[4] = x.TimeoutSeconds != 0 + yyq1378[5] = x.PeriodSeconds != 0 + yyq1378[6] = x.SuccessThreshold != 0 + yyq1378[7] = x.FailureThreshold != 0 + var yynn1378 int + if yyr1378 || yy2arr1378 { r.EncodeArrayStart(8) } else { - yynn1325 = 0 - for _, b := range yyq1325 { + yynn1378 = 0 + for _, b := range yyq1378 { if b { - yynn1325++ + yynn1378++ } } - r.EncodeMapStart(yynn1325) - yynn1325 = 0 + r.EncodeMapStart(yynn1378) + yynn1378 = 0 } - var yyn1326 bool + var yyn1379 bool if x.Handler.Exec == nil { - yyn1326 = true - goto LABEL1326 + yyn1379 = true + goto LABEL1379 } - LABEL1326: - if yyr1325 || yy2arr1325 { - if yyn1326 { + LABEL1379: + if yyr1378 || yy2arr1378 { + if yyn1379 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[0] { + if yyq1378[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -18350,11 +19057,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1325[0] { + if yyq1378[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1326 { + if yyn1379 { r.EncodeNil() } else { if x.Exec == nil { @@ -18365,18 +19072,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1327 bool + var yyn1380 bool if x.Handler.HTTPGet == nil { - yyn1327 = true - goto LABEL1327 + yyn1380 = true + goto LABEL1380 } - LABEL1327: - if yyr1325 || yy2arr1325 { - if yyn1327 { + LABEL1380: + if yyr1378 || yy2arr1378 { + if yyn1380 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[1] { + if yyq1378[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -18387,11 +19094,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1325[1] { + if yyq1378[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1327 { + if yyn1380 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -18402,18 +19109,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1328 bool + var yyn1381 bool if x.Handler.TCPSocket == nil { - yyn1328 = true - goto LABEL1328 + yyn1381 = true + goto LABEL1381 } - LABEL1328: - if yyr1325 || yy2arr1325 { - if yyn1328 { + LABEL1381: + if yyr1378 || yy2arr1378 { + if yyn1381 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[2] { + if yyq1378[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -18424,11 +19131,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1325[2] { + if yyq1378[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1328 { + if yyn1381 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -18439,11 +19146,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1325 || yy2arr1325 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[3] { - yym1330 := z.EncBinary() - _ = yym1330 + if yyq1378[3] { + yym1383 := z.EncBinary() + _ = yym1383 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -18452,23 +19159,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[3] { + if yyq1378[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1331 := z.EncBinary() - _ = yym1331 + yym1384 := z.EncBinary() + _ = yym1384 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1325 || yy2arr1325 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[4] { - yym1333 := z.EncBinary() - _ = yym1333 + if yyq1378[4] { + yym1386 := z.EncBinary() + _ = yym1386 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -18477,23 +19184,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[4] { + if yyq1378[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1334 := z.EncBinary() - _ = yym1334 + yym1387 := z.EncBinary() + _ = yym1387 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1325 || yy2arr1325 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[5] { - yym1336 := z.EncBinary() - _ = yym1336 + if yyq1378[5] { + yym1389 := z.EncBinary() + _ = yym1389 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -18502,23 +19209,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[5] { + if yyq1378[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1337 := z.EncBinary() - _ = yym1337 + yym1390 := z.EncBinary() + _ = yym1390 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1325 || yy2arr1325 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[6] { - yym1339 := z.EncBinary() - _ = yym1339 + if yyq1378[6] { + yym1392 := z.EncBinary() + _ = yym1392 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -18527,23 +19234,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[6] { + if yyq1378[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1340 := z.EncBinary() - _ = yym1340 + yym1393 := z.EncBinary() + _ = yym1393 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1325 || yy2arr1325 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1325[7] { - yym1342 := z.EncBinary() - _ = yym1342 + if yyq1378[7] { + yym1395 := z.EncBinary() + _ = yym1395 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -18552,19 +19259,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1325[7] { + if yyq1378[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1343 := z.EncBinary() - _ = yym1343 + yym1396 := z.EncBinary() + _ = yym1396 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1325 || yy2arr1325 { + if yyr1378 || yy2arr1378 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18577,25 +19284,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1344 := z.DecBinary() - _ = yym1344 + yym1397 := z.DecBinary() + _ = yym1397 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1345 := r.ContainerType() - if yyct1345 == codecSelferValueTypeMap1234 { - yyl1345 := r.ReadMapStart() - if yyl1345 == 0 { + yyct1398 := r.ContainerType() + if yyct1398 == codecSelferValueTypeMap1234 { + yyl1398 := r.ReadMapStart() + if yyl1398 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1345, d) + x.codecDecodeSelfFromMap(yyl1398, d) } - } else if yyct1345 == codecSelferValueTypeArray1234 { - yyl1345 := r.ReadArrayStart() - if yyl1345 == 0 { + } else if yyct1398 == codecSelferValueTypeArray1234 { + yyl1398 := r.ReadArrayStart() + if yyl1398 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1345, d) + x.codecDecodeSelfFromArray(yyl1398, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18607,12 +19314,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 yys1399Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1399Slc + var yyhl1399 bool = l >= 0 + for yyj1399 := 0; ; yyj1399++ { + if yyhl1399 { + if yyj1399 >= l { break } } else { @@ -18621,10 +19328,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1346Slc = r.DecodeBytes(yys1346Slc, true, true) - yys1346 := string(yys1346Slc) + yys1399Slc = r.DecodeBytes(yys1399Slc, true, true) + yys1399 := string(yys1399Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1346 { + switch yys1399 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -18698,9 +19405,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, yys1399) + } // end switch yys1399 + } // end for yyj1399 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18708,19 +19415,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 yyj1408 int + var yyb1408 bool + var yyhl1408 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18738,13 +19445,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 + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18762,13 +19469,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 + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18783,13 +19490,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18799,13 +19506,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18815,13 +19522,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18831,13 +19538,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18847,13 +19554,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18864,17 +19571,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1355++ - if yyhl1355 { - yyb1355 = yyj1355 > l + yyj1408++ + if yyhl1408 { + yyb1408 = yyj1408 > l } else { - yyb1355 = r.CheckBreak() + yyb1408 = r.CheckBreak() } - if yyb1355 { + if yyb1408 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1355-1, "") + z.DecStructFieldNotFound(yyj1408-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18883,8 +19590,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1364 := z.EncBinary() - _ = yym1364 + yym1417 := z.EncBinary() + _ = yym1417 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18896,8 +19603,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1365 := z.DecBinary() - _ = yym1365 + yym1418 := z.DecBinary() + _ = yym1418 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18909,8 +19616,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1366 := z.EncBinary() - _ = yym1366 + yym1419 := z.EncBinary() + _ = yym1419 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18922,8 +19629,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1367 := z.DecBinary() - _ = yym1367 + yym1420 := z.DecBinary() + _ = yym1420 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18938,39 +19645,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1368 := z.EncBinary() - _ = yym1368 + yym1421 := z.EncBinary() + _ = yym1421 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 { + yysep1422 := !z.EncBinary() + yy2arr1422 := z.EncBasicHandle().StructToArray + var yyq1422 [2]bool + _, _, _ = yysep1422, yyq1422, yy2arr1422 + const yyr1422 bool = false + yyq1422[0] = len(x.Add) != 0 + yyq1422[1] = len(x.Drop) != 0 + var yynn1422 int + if yyr1422 || yy2arr1422 { r.EncodeArrayStart(2) } else { - yynn1369 = 0 - for _, b := range yyq1369 { + yynn1422 = 0 + for _, b := range yyq1422 { if b { - yynn1369++ + yynn1422++ } } - r.EncodeMapStart(yynn1369) - yynn1369 = 0 + r.EncodeMapStart(yynn1422) + yynn1422 = 0 } - if yyr1369 || yy2arr1369 { + if yyr1422 || yy2arr1422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1369[0] { + if yyq1422[0] { if x.Add == nil { r.EncodeNil() } else { - yym1371 := z.EncBinary() - _ = yym1371 + yym1424 := z.EncBinary() + _ = yym1424 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -18980,15 +19687,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1369[0] { + if yyq1422[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 + yym1425 := z.EncBinary() + _ = yym1425 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -18996,14 +19703,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1369 || yy2arr1369 { + if yyr1422 || yy2arr1422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1369[1] { + if yyq1422[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1374 := z.EncBinary() - _ = yym1374 + yym1427 := z.EncBinary() + _ = yym1427 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -19013,15 +19720,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1369[1] { + if yyq1422[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 + yym1428 := z.EncBinary() + _ = yym1428 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -19029,7 +19736,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1369 || yy2arr1369 { + if yyr1422 || yy2arr1422 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19042,25 +19749,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1376 := z.DecBinary() - _ = yym1376 + yym1429 := z.DecBinary() + _ = yym1429 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1377 := r.ContainerType() - if yyct1377 == codecSelferValueTypeMap1234 { - yyl1377 := r.ReadMapStart() - if yyl1377 == 0 { + yyct1430 := r.ContainerType() + if yyct1430 == codecSelferValueTypeMap1234 { + yyl1430 := r.ReadMapStart() + if yyl1430 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1377, d) + x.codecDecodeSelfFromMap(yyl1430, d) } - } else if yyct1377 == codecSelferValueTypeArray1234 { - yyl1377 := r.ReadArrayStart() - if yyl1377 == 0 { + } else if yyct1430 == codecSelferValueTypeArray1234 { + yyl1430 := r.ReadArrayStart() + if yyl1430 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1377, d) + x.codecDecodeSelfFromArray(yyl1430, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19072,12 +19779,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 yys1431Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1431Slc + var yyhl1431 bool = l >= 0 + for yyj1431 := 0; ; yyj1431++ { + if yyhl1431 { + if yyj1431 >= l { break } } else { @@ -19086,38 +19793,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1378Slc = r.DecodeBytes(yys1378Slc, true, true) - yys1378 := string(yys1378Slc) + yys1431Slc = r.DecodeBytes(yys1431Slc, true, true) + yys1431 := string(yys1431Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1378 { + switch yys1431 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1379 := &x.Add - yym1380 := z.DecBinary() - _ = yym1380 + yyv1432 := &x.Add + yym1433 := z.DecBinary() + _ = yym1433 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1379), d) + h.decSliceCapability((*[]Capability)(yyv1432), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1381 := &x.Drop - yym1382 := z.DecBinary() - _ = yym1382 + yyv1434 := &x.Drop + yym1435 := z.DecBinary() + _ = yym1435 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1381), d) + h.decSliceCapability((*[]Capability)(yyv1434), d) } } default: - z.DecStructFieldNotFound(-1, yys1378) - } // end switch yys1378 - } // end for yyj1378 + z.DecStructFieldNotFound(-1, yys1431) + } // end switch yys1431 + } // end for yyj1431 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19125,16 +19832,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 yyj1436 int + var yyb1436 bool + var yyhl1436 bool = l >= 0 + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1383 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1383 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19142,21 +19849,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1384 := &x.Add - yym1385 := z.DecBinary() - _ = yym1385 + yyv1437 := &x.Add + yym1438 := z.DecBinary() + _ = yym1438 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1384), d) + h.decSliceCapability((*[]Capability)(yyv1437), d) } } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1383 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1383 { + if yyb1436 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19164,26 +19871,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1386 := &x.Drop - yym1387 := z.DecBinary() - _ = yym1387 + yyv1439 := &x.Drop + yym1440 := z.DecBinary() + _ = yym1440 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1386), d) + h.decSliceCapability((*[]Capability)(yyv1439), d) } } for { - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1436++ + if yyhl1436 { + yyb1436 = yyj1436 > l } else { - yyb1383 = r.CheckBreak() + yyb1436 = r.CheckBreak() } - if yyb1383 { + if yyb1436 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1383-1, "") + z.DecStructFieldNotFound(yyj1436-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19195,34 +19902,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1388 := z.EncBinary() - _ = yym1388 + yym1441 := z.EncBinary() + _ = yym1441 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 { + yysep1442 := !z.EncBinary() + yy2arr1442 := z.EncBasicHandle().StructToArray + var yyq1442 [2]bool + _, _, _ = yysep1442, yyq1442, yy2arr1442 + const yyr1442 bool = false + yyq1442[0] = len(x.Limits) != 0 + yyq1442[1] = len(x.Requests) != 0 + var yynn1442 int + if yyr1442 || yy2arr1442 { r.EncodeArrayStart(2) } else { - yynn1389 = 0 - for _, b := range yyq1389 { + yynn1442 = 0 + for _, b := range yyq1442 { if b { - yynn1389++ + yynn1442++ } } - r.EncodeMapStart(yynn1389) - yynn1389 = 0 + r.EncodeMapStart(yynn1442) + yynn1442 = 0 } - if yyr1389 || yy2arr1389 { + if yyr1442 || yy2arr1442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1389[0] { + if yyq1442[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -19232,7 +19939,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1389[0] { + if yyq1442[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19243,9 +19950,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1389 || yy2arr1389 { + if yyr1442 || yy2arr1442 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1389[1] { + if yyq1442[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -19255,7 +19962,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1389[1] { + if yyq1442[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19266,7 +19973,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1389 || yy2arr1389 { + if yyr1442 || yy2arr1442 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19279,25 +19986,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1392 := z.DecBinary() - _ = yym1392 + yym1445 := z.DecBinary() + _ = yym1445 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1393 := r.ContainerType() - if yyct1393 == codecSelferValueTypeMap1234 { - yyl1393 := r.ReadMapStart() - if yyl1393 == 0 { + yyct1446 := r.ContainerType() + if yyct1446 == codecSelferValueTypeMap1234 { + yyl1446 := r.ReadMapStart() + if yyl1446 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1393, d) + x.codecDecodeSelfFromMap(yyl1446, d) } - } else if yyct1393 == codecSelferValueTypeArray1234 { - yyl1393 := r.ReadArrayStart() - if yyl1393 == 0 { + } else if yyct1446 == codecSelferValueTypeArray1234 { + yyl1446 := r.ReadArrayStart() + if yyl1446 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1393, d) + x.codecDecodeSelfFromArray(yyl1446, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19309,12 +20016,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 yys1447Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1447Slc + var yyhl1447 bool = l >= 0 + for yyj1447 := 0; ; yyj1447++ { + if yyhl1447 { + if yyj1447 >= l { break } } else { @@ -19323,28 +20030,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1394Slc = r.DecodeBytes(yys1394Slc, true, true) - yys1394 := string(yys1394Slc) + yys1447Slc = r.DecodeBytes(yys1447Slc, true, true) + yys1447 := string(yys1447Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1394 { + switch yys1447 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1395 := &x.Limits - yyv1395.CodecDecodeSelf(d) + yyv1448 := &x.Limits + yyv1448.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1396 := &x.Requests - yyv1396.CodecDecodeSelf(d) + yyv1449 := &x.Requests + yyv1449.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1394) - } // end switch yys1394 - } // end for yyj1394 + z.DecStructFieldNotFound(-1, yys1447) + } // end switch yys1447 + } // end for yyj1447 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19352,16 +20059,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 yyj1450 int + var yyb1450 bool + var yyhl1450 bool = l >= 0 + yyj1450++ + if yyhl1450 { + yyb1450 = yyj1450 > l } else { - yyb1397 = r.CheckBreak() + yyb1450 = r.CheckBreak() } - if yyb1397 { + if yyb1450 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19369,16 +20076,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1398 := &x.Limits - yyv1398.CodecDecodeSelf(d) + yyv1451 := &x.Limits + yyv1451.CodecDecodeSelf(d) } - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1450++ + if yyhl1450 { + yyb1450 = yyj1450 > l } else { - yyb1397 = r.CheckBreak() + yyb1450 = r.CheckBreak() } - if yyb1397 { + if yyb1450 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19386,21 +20093,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1399 := &x.Requests - yyv1399.CodecDecodeSelf(d) + yyv1452 := &x.Requests + yyv1452.CodecDecodeSelf(d) } for { - yyj1397++ - if yyhl1397 { - yyb1397 = yyj1397 > l + yyj1450++ + if yyhl1450 { + yyb1450 = yyj1450 > l } else { - yyb1397 = r.CheckBreak() + yyb1450 = r.CheckBreak() } - if yyb1397 { + if yyb1450 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1397-1, "") + z.DecStructFieldNotFound(yyj1450-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19412,50 +20119,50 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1400 := z.EncBinary() - _ = yym1400 + yym1453 := z.EncBinary() + _ = yym1453 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[1] = x.Image != "" - 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[13] = x.ImagePullPolicy != "" - 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 { + yysep1454 := !z.EncBinary() + yy2arr1454 := z.EncBasicHandle().StructToArray + var yyq1454 [18]bool + _, _, _ = yysep1454, yyq1454, yy2arr1454 + const yyr1454 bool = false + yyq1454[1] = x.Image != "" + yyq1454[2] = len(x.Command) != 0 + yyq1454[3] = len(x.Args) != 0 + yyq1454[4] = x.WorkingDir != "" + yyq1454[5] = len(x.Ports) != 0 + yyq1454[6] = len(x.Env) != 0 + yyq1454[7] = true + yyq1454[8] = len(x.VolumeMounts) != 0 + yyq1454[9] = x.LivenessProbe != nil + yyq1454[10] = x.ReadinessProbe != nil + yyq1454[11] = x.Lifecycle != nil + yyq1454[12] = x.TerminationMessagePath != "" + yyq1454[13] = x.ImagePullPolicy != "" + yyq1454[14] = x.SecurityContext != nil + yyq1454[15] = x.Stdin != false + yyq1454[16] = x.StdinOnce != false + yyq1454[17] = x.TTY != false + var yynn1454 int + if yyr1454 || yy2arr1454 { r.EncodeArrayStart(18) } else { - yynn1401 = 1 - for _, b := range yyq1401 { + yynn1454 = 1 + for _, b := range yyq1454 { if b { - yynn1401++ + yynn1454++ } } - r.EncodeMapStart(yynn1401) - yynn1401 = 0 + r.EncodeMapStart(yynn1454) + yynn1454 = 0 } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1403 := z.EncBinary() - _ = yym1403 + yym1456 := z.EncBinary() + _ = yym1456 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -19464,18 +20171,18 @@ 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 + yym1457 := z.EncBinary() + _ = yym1457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[1] { - yym1406 := z.EncBinary() - _ = yym1406 + if yyq1454[1] { + yym1459 := z.EncBinary() + _ = yym1459 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -19484,26 +20191,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1401[1] { + if yyq1454[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1407 := z.EncBinary() - _ = yym1407 + yym1460 := z.EncBinary() + _ = yym1460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[2] { + if yyq1454[2] { if x.Command == nil { r.EncodeNil() } else { - yym1409 := z.EncBinary() - _ = yym1409 + yym1462 := z.EncBinary() + _ = yym1462 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -19513,15 +20220,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[2] { + if yyq1454[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 + yym1463 := z.EncBinary() + _ = yym1463 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -19529,14 +20236,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[3] { + if yyq1454[3] { if x.Args == nil { r.EncodeNil() } else { - yym1412 := z.EncBinary() - _ = yym1412 + yym1465 := z.EncBinary() + _ = yym1465 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -19546,15 +20253,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[3] { + if yyq1454[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 + yym1466 := z.EncBinary() + _ = yym1466 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -19562,11 +20269,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[4] { - yym1415 := z.EncBinary() - _ = yym1415 + if yyq1454[4] { + yym1468 := z.EncBinary() + _ = yym1468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -19575,26 +20282,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1401[4] { + if yyq1454[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1416 := z.EncBinary() - _ = yym1416 + yym1469 := z.EncBinary() + _ = yym1469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[5] { + if yyq1454[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1418 := z.EncBinary() - _ = yym1418 + yym1471 := z.EncBinary() + _ = yym1471 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -19604,15 +20311,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[5] { + if yyq1454[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 + yym1472 := z.EncBinary() + _ = yym1472 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -19620,14 +20327,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[6] { + if yyq1454[6] { if x.Env == nil { r.EncodeNil() } else { - yym1421 := z.EncBinary() - _ = yym1421 + yym1474 := z.EncBinary() + _ = yym1474 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -19637,15 +20344,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[6] { + if yyq1454[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 + yym1475 := z.EncBinary() + _ = yym1475 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -19653,31 +20360,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[7] { - yy1424 := &x.Resources - yy1424.CodecEncodeSelf(e) + if yyq1454[7] { + yy1477 := &x.Resources + yy1477.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1401[7] { + if yyq1454[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1425 := &x.Resources - yy1425.CodecEncodeSelf(e) + yy1478 := &x.Resources + yy1478.CodecEncodeSelf(e) } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[8] { + if yyq1454[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1427 := z.EncBinary() - _ = yym1427 + yym1480 := z.EncBinary() + _ = yym1480 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -19687,15 +20394,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[8] { + if yyq1454[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 + yym1481 := z.EncBinary() + _ = yym1481 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -19703,9 +20410,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[9] { + if yyq1454[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -19715,7 +20422,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[9] { + if yyq1454[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19726,9 +20433,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[10] { + if yyq1454[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -19738,7 +20445,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[10] { + if yyq1454[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19749,9 +20456,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[11] { + if yyq1454[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -19761,7 +20468,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[11] { + if yyq1454[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19772,11 +20479,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[12] { - yym1433 := z.EncBinary() - _ = yym1433 + if yyq1454[12] { + yym1486 := z.EncBinary() + _ = yym1486 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -19785,36 +20492,36 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1401[12] { + if yyq1454[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1434 := z.EncBinary() - _ = yym1434 + yym1487 := z.EncBinary() + _ = yym1487 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[13] { + if yyq1454[13] { x.ImagePullPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1401[13] { + if yyq1454[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[14] { + if yyq1454[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -19824,7 +20531,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1401[14] { + if yyq1454[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19835,11 +20542,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[15] { - yym1438 := z.EncBinary() - _ = yym1438 + if yyq1454[15] { + yym1491 := z.EncBinary() + _ = yym1491 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -19848,23 +20555,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1401[15] { + if yyq1454[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1439 := z.EncBinary() - _ = yym1439 + yym1492 := z.EncBinary() + _ = yym1492 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[16] { - yym1441 := z.EncBinary() - _ = yym1441 + if yyq1454[16] { + yym1494 := z.EncBinary() + _ = yym1494 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -19873,23 +20580,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1401[16] { + if yyq1454[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1442 := z.EncBinary() - _ = yym1442 + yym1495 := z.EncBinary() + _ = yym1495 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1401[17] { - yym1444 := z.EncBinary() - _ = yym1444 + if yyq1454[17] { + yym1497 := z.EncBinary() + _ = yym1497 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -19898,19 +20605,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1401[17] { + if yyq1454[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1445 := z.EncBinary() - _ = yym1445 + yym1498 := z.EncBinary() + _ = yym1498 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1401 || yy2arr1401 { + if yyr1454 || yy2arr1454 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19923,25 +20630,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1446 := z.DecBinary() - _ = yym1446 + yym1499 := z.DecBinary() + _ = yym1499 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1447 := r.ContainerType() - if yyct1447 == codecSelferValueTypeMap1234 { - yyl1447 := r.ReadMapStart() - if yyl1447 == 0 { + yyct1500 := r.ContainerType() + if yyct1500 == codecSelferValueTypeMap1234 { + yyl1500 := r.ReadMapStart() + if yyl1500 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1447, d) + x.codecDecodeSelfFromMap(yyl1500, d) } - } else if yyct1447 == codecSelferValueTypeArray1234 { - yyl1447 := r.ReadArrayStart() - if yyl1447 == 0 { + } else if yyct1500 == codecSelferValueTypeArray1234 { + yyl1500 := r.ReadArrayStart() + if yyl1500 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1447, d) + x.codecDecodeSelfFromArray(yyl1500, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19953,12 +20660,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 yys1501Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1501Slc + var yyhl1501 bool = l >= 0 + for yyj1501 := 0; ; yyj1501++ { + if yyhl1501 { + if yyj1501 >= l { break } } else { @@ -19967,10 +20674,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1448Slc = r.DecodeBytes(yys1448Slc, true, true) - yys1448 := string(yys1448Slc) + yys1501Slc = r.DecodeBytes(yys1501Slc, true, true) + yys1501 := string(yys1501Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1448 { + switch yys1501 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -19987,24 +20694,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1451 := &x.Command - yym1452 := z.DecBinary() - _ = yym1452 + yyv1504 := &x.Command + yym1505 := z.DecBinary() + _ = yym1505 if false { } else { - z.F.DecSliceStringX(yyv1451, false, d) + z.F.DecSliceStringX(yyv1504, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1453 := &x.Args - yym1454 := z.DecBinary() - _ = yym1454 + yyv1506 := &x.Args + yym1507 := z.DecBinary() + _ = yym1507 if false { } else { - z.F.DecSliceStringX(yyv1453, false, d) + z.F.DecSliceStringX(yyv1506, false, d) } } case "workingDir": @@ -20017,43 +20724,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1456 := &x.Ports - yym1457 := z.DecBinary() - _ = yym1457 + yyv1509 := &x.Ports + yym1510 := z.DecBinary() + _ = yym1510 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1456), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1509), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1458 := &x.Env - yym1459 := z.DecBinary() - _ = yym1459 + yyv1511 := &x.Env + yym1512 := z.DecBinary() + _ = yym1512 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1458), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1511), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1460 := &x.Resources - yyv1460.CodecDecodeSelf(d) + yyv1513 := &x.Resources + yyv1513.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1461 := &x.VolumeMounts - yym1462 := z.DecBinary() - _ = yym1462 + yyv1514 := &x.VolumeMounts + yym1515 := z.DecBinary() + _ = yym1515 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1461), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1514), d) } } case "livenessProbe": @@ -20131,9 +20838,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, yys1501) + } // end switch yys1501 + } // end for yyj1501 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20141,16 +20848,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 yyj1525 int + var yyb1525 bool + var yyhl1525 bool = l >= 0 + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20160,13 +20867,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20176,13 +20883,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20190,21 +20897,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1475 := &x.Command - yym1476 := z.DecBinary() - _ = yym1476 + yyv1528 := &x.Command + yym1529 := z.DecBinary() + _ = yym1529 if false { } else { - z.F.DecSliceStringX(yyv1475, false, d) + z.F.DecSliceStringX(yyv1528, false, d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20212,21 +20919,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1477 := &x.Args - yym1478 := z.DecBinary() - _ = yym1478 + yyv1530 := &x.Args + yym1531 := z.DecBinary() + _ = yym1531 if false { } else { - z.F.DecSliceStringX(yyv1477, false, d) + z.F.DecSliceStringX(yyv1530, false, d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20236,13 +20943,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20250,21 +20957,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1480 := &x.Ports - yym1481 := z.DecBinary() - _ = yym1481 + yyv1533 := &x.Ports + yym1534 := z.DecBinary() + _ = yym1534 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1480), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1533), d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20272,21 +20979,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1482 := &x.Env - yym1483 := z.DecBinary() - _ = yym1483 + yyv1535 := &x.Env + yym1536 := z.DecBinary() + _ = yym1536 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1482), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1535), d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20294,16 +21001,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1484 := &x.Resources - yyv1484.CodecDecodeSelf(d) + yyv1537 := &x.Resources + yyv1537.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20311,21 +21018,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1485 := &x.VolumeMounts - yym1486 := z.DecBinary() - _ = yym1486 + yyv1538 := &x.VolumeMounts + yym1539 := z.DecBinary() + _ = yym1539 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1485), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1538), d) } } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20340,13 +21047,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20361,13 +21068,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20382,13 +21089,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20398,13 +21105,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20414,13 +21121,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20435,13 +21142,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20451,13 +21158,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20467,13 +21174,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20484,17 +21191,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1472++ - if yyhl1472 { - yyb1472 = yyj1472 > l + yyj1525++ + if yyhl1525 { + yyb1525 = yyj1525 > l } else { - yyb1472 = r.CheckBreak() + yyb1525 = r.CheckBreak() } - if yyb1472 { + if yyb1525 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1472-1, "") + z.DecStructFieldNotFound(yyj1525-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20506,35 +21213,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1496 := z.EncBinary() - _ = yym1496 + yym1549 := z.EncBinary() + _ = yym1549 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 { + yysep1550 := !z.EncBinary() + yy2arr1550 := z.EncBasicHandle().StructToArray + var yyq1550 [3]bool + _, _, _ = yysep1550, yyq1550, yy2arr1550 + const yyr1550 bool = false + yyq1550[0] = x.Exec != nil + yyq1550[1] = x.HTTPGet != nil + yyq1550[2] = x.TCPSocket != nil + var yynn1550 int + if yyr1550 || yy2arr1550 { r.EncodeArrayStart(3) } else { - yynn1497 = 0 - for _, b := range yyq1497 { + yynn1550 = 0 + for _, b := range yyq1550 { if b { - yynn1497++ + yynn1550++ } } - r.EncodeMapStart(yynn1497) - yynn1497 = 0 + r.EncodeMapStart(yynn1550) + yynn1550 = 0 } - if yyr1497 || yy2arr1497 { + if yyr1550 || yy2arr1550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1497[0] { + if yyq1550[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -20544,7 +21251,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1497[0] { + if yyq1550[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20555,9 +21262,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1497 || yy2arr1497 { + if yyr1550 || yy2arr1550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1497[1] { + if yyq1550[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -20567,7 +21274,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1497[1] { + if yyq1550[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20578,9 +21285,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1497 || yy2arr1497 { + if yyr1550 || yy2arr1550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1497[2] { + if yyq1550[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -20590,7 +21297,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1497[2] { + if yyq1550[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20601,7 +21308,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1497 || yy2arr1497 { + if yyr1550 || yy2arr1550 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20614,25 +21321,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1501 := z.DecBinary() - _ = yym1501 + yym1554 := z.DecBinary() + _ = yym1554 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1502 := r.ContainerType() - if yyct1502 == codecSelferValueTypeMap1234 { - yyl1502 := r.ReadMapStart() - if yyl1502 == 0 { + yyct1555 := r.ContainerType() + if yyct1555 == codecSelferValueTypeMap1234 { + yyl1555 := r.ReadMapStart() + if yyl1555 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1502, d) + x.codecDecodeSelfFromMap(yyl1555, d) } - } else if yyct1502 == codecSelferValueTypeArray1234 { - yyl1502 := r.ReadArrayStart() - if yyl1502 == 0 { + } else if yyct1555 == codecSelferValueTypeArray1234 { + yyl1555 := r.ReadArrayStart() + if yyl1555 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1502, d) + x.codecDecodeSelfFromArray(yyl1555, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20644,12 +21351,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 yys1556Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1556Slc + var yyhl1556 bool = l >= 0 + for yyj1556 := 0; ; yyj1556++ { + if yyhl1556 { + if yyj1556 >= l { break } } else { @@ -20658,10 +21365,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1503Slc = r.DecodeBytes(yys1503Slc, true, true) - yys1503 := string(yys1503Slc) + yys1556Slc = r.DecodeBytes(yys1556Slc, true, true) + yys1556 := string(yys1556Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1503 { + switch yys1556 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -20696,9 +21403,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, yys1556) + } // end switch yys1556 + } // end for yyj1556 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20706,16 +21413,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 yyj1560 int + var yyb1560 bool + var yyhl1560 bool = l >= 0 + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1507 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1507 { + if yyb1560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20730,13 +21437,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1507 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1507 { + if yyb1560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20751,13 +21458,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1507 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1507 { + if yyb1560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20773,17 +21480,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1507++ - if yyhl1507 { - yyb1507 = yyj1507 > l + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1507 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1507 { + if yyb1560 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1507-1, "") + z.DecStructFieldNotFound(yyj1560-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20795,34 +21502,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1511 := z.EncBinary() - _ = yym1511 + yym1564 := z.EncBinary() + _ = yym1564 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 { + yysep1565 := !z.EncBinary() + yy2arr1565 := z.EncBasicHandle().StructToArray + var yyq1565 [2]bool + _, _, _ = yysep1565, yyq1565, yy2arr1565 + const yyr1565 bool = false + yyq1565[0] = x.PostStart != nil + yyq1565[1] = x.PreStop != nil + var yynn1565 int + if yyr1565 || yy2arr1565 { r.EncodeArrayStart(2) } else { - yynn1512 = 0 - for _, b := range yyq1512 { + yynn1565 = 0 + for _, b := range yyq1565 { if b { - yynn1512++ + yynn1565++ } } - r.EncodeMapStart(yynn1512) - yynn1512 = 0 + r.EncodeMapStart(yynn1565) + yynn1565 = 0 } - if yyr1512 || yy2arr1512 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1512[0] { + if yyq1565[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -20832,7 +21539,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1512[0] { + if yyq1565[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20843,9 +21550,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1512 || yy2arr1512 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1512[1] { + if yyq1565[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -20855,7 +21562,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1512[1] { + if yyq1565[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20866,7 +21573,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1512 || yy2arr1512 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20879,25 +21586,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1515 := z.DecBinary() - _ = yym1515 + yym1568 := z.DecBinary() + _ = yym1568 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1516 := r.ContainerType() - if yyct1516 == codecSelferValueTypeMap1234 { - yyl1516 := r.ReadMapStart() - if yyl1516 == 0 { + yyct1569 := r.ContainerType() + if yyct1569 == codecSelferValueTypeMap1234 { + yyl1569 := r.ReadMapStart() + if yyl1569 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1516, d) + x.codecDecodeSelfFromMap(yyl1569, d) } - } else if yyct1516 == codecSelferValueTypeArray1234 { - yyl1516 := r.ReadArrayStart() - if yyl1516 == 0 { + } else if yyct1569 == codecSelferValueTypeArray1234 { + yyl1569 := r.ReadArrayStart() + if yyl1569 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1516, d) + x.codecDecodeSelfFromArray(yyl1569, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20909,12 +21616,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 yys1570Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1570Slc + var yyhl1570 bool = l >= 0 + for yyj1570 := 0; ; yyj1570++ { + if yyhl1570 { + if yyj1570 >= l { break } } else { @@ -20923,10 +21630,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1517Slc = r.DecodeBytes(yys1517Slc, true, true) - yys1517 := string(yys1517Slc) + yys1570Slc = r.DecodeBytes(yys1570Slc, true, true) + yys1570 := string(yys1570Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1517 { + switch yys1570 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -20950,9 +21657,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, yys1570) + } // end switch yys1570 + } // end for yyj1570 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20960,16 +21667,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 yyj1573 int + var yyb1573 bool + var yyhl1573 bool = l >= 0 + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20984,13 +21691,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21006,17 +21713,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1520++ - if yyhl1520 { - yyb1520 = yyj1520 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1520 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1520 { + if yyb1573 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1520-1, "") + z.DecStructFieldNotFound(yyj1573-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21025,8 +21732,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1523 := z.EncBinary() - _ = yym1523 + yym1576 := z.EncBinary() + _ = yym1576 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -21038,8 +21745,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1524 := z.DecBinary() - _ = yym1524 + yym1577 := z.DecBinary() + _ = yym1577 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -21054,36 +21761,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1525 := z.EncBinary() - _ = yym1525 + yym1578 := z.EncBinary() + _ = yym1578 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 { + yysep1579 := !z.EncBinary() + yy2arr1579 := z.EncBasicHandle().StructToArray + var yyq1579 [2]bool + _, _, _ = yysep1579, yyq1579, yy2arr1579 + const yyr1579 bool = false + yyq1579[0] = x.Reason != "" + yyq1579[1] = x.Message != "" + var yynn1579 int + if yyr1579 || yy2arr1579 { r.EncodeArrayStart(2) } else { - yynn1526 = 0 - for _, b := range yyq1526 { + yynn1579 = 0 + for _, b := range yyq1579 { if b { - yynn1526++ + yynn1579++ } } - r.EncodeMapStart(yynn1526) - yynn1526 = 0 + r.EncodeMapStart(yynn1579) + yynn1579 = 0 } - if yyr1526 || yy2arr1526 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1526[0] { - yym1528 := z.EncBinary() - _ = yym1528 + if yyq1579[0] { + yym1581 := z.EncBinary() + _ = yym1581 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -21092,23 +21799,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1526[0] { + if yyq1579[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1529 := z.EncBinary() - _ = yym1529 + yym1582 := z.EncBinary() + _ = yym1582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1526 || yy2arr1526 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1526[1] { - yym1531 := z.EncBinary() - _ = yym1531 + if yyq1579[1] { + yym1584 := z.EncBinary() + _ = yym1584 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -21117,19 +21824,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1526[1] { + if yyq1579[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1532 := z.EncBinary() - _ = yym1532 + yym1585 := z.EncBinary() + _ = yym1585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1526 || yy2arr1526 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21142,25 +21849,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1533 := z.DecBinary() - _ = yym1533 + yym1586 := z.DecBinary() + _ = yym1586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1534 := r.ContainerType() - if yyct1534 == codecSelferValueTypeMap1234 { - yyl1534 := r.ReadMapStart() - if yyl1534 == 0 { + yyct1587 := r.ContainerType() + if yyct1587 == codecSelferValueTypeMap1234 { + yyl1587 := r.ReadMapStart() + if yyl1587 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1534, d) + x.codecDecodeSelfFromMap(yyl1587, d) } - } else if yyct1534 == codecSelferValueTypeArray1234 { - yyl1534 := r.ReadArrayStart() - if yyl1534 == 0 { + } else if yyct1587 == codecSelferValueTypeArray1234 { + yyl1587 := r.ReadArrayStart() + if yyl1587 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1534, d) + x.codecDecodeSelfFromArray(yyl1587, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21172,12 +21879,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 yys1588Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1588Slc + var yyhl1588 bool = l >= 0 + for yyj1588 := 0; ; yyj1588++ { + if yyhl1588 { + if yyj1588 >= l { break } } else { @@ -21186,10 +21893,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1535Slc = r.DecodeBytes(yys1535Slc, true, true) - yys1535 := string(yys1535Slc) + yys1588Slc = r.DecodeBytes(yys1588Slc, true, true) + yys1588 := string(yys1588Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1535 { + switch yys1588 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -21203,9 +21910,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, yys1588) + } // end switch yys1588 + } // end for yyj1588 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21213,16 +21920,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 yyj1591 int + var yyb1591 bool + var yyhl1591 bool = l >= 0 + yyj1591++ + if yyhl1591 { + yyb1591 = yyj1591 > l } else { - yyb1538 = r.CheckBreak() + yyb1591 = r.CheckBreak() } - if yyb1538 { + if yyb1591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21232,13 +21939,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1538++ - if yyhl1538 { - yyb1538 = yyj1538 > l + yyj1591++ + if yyhl1591 { + yyb1591 = yyj1591 > l } else { - yyb1538 = r.CheckBreak() + yyb1591 = r.CheckBreak() } - if yyb1538 { + if yyb1591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21249,17 +21956,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1538++ - if yyhl1538 { - yyb1538 = yyj1538 > l + yyj1591++ + if yyhl1591 { + yyb1591 = yyj1591 > l } else { - yyb1538 = r.CheckBreak() + yyb1591 = r.CheckBreak() } - if yyb1538 { + if yyb1591 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1538-1, "") + z.DecStructFieldNotFound(yyj1591-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21271,68 +21978,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1541 := z.EncBinary() - _ = yym1541 + yym1594 := z.EncBinary() + _ = yym1594 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 { + yysep1595 := !z.EncBinary() + yy2arr1595 := z.EncBasicHandle().StructToArray + var yyq1595 [1]bool + _, _, _ = yysep1595, yyq1595, yy2arr1595 + const yyr1595 bool = false + yyq1595[0] = true + var yynn1595 int + if yyr1595 || yy2arr1595 { r.EncodeArrayStart(1) } else { - yynn1542 = 0 - for _, b := range yyq1542 { + yynn1595 = 0 + for _, b := range yyq1595 { if b { - yynn1542++ + yynn1595++ } } - r.EncodeMapStart(yynn1542) - yynn1542 = 0 + r.EncodeMapStart(yynn1595) + yynn1595 = 0 } - if yyr1542 || yy2arr1542 { + if yyr1595 || yy2arr1595 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1542[0] { - yy1544 := &x.StartedAt - yym1545 := z.EncBinary() - _ = yym1545 + if yyq1595[0] { + yy1597 := &x.StartedAt + yym1598 := z.EncBinary() + _ = yym1598 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(yy1597) { + } else if yym1598 { + z.EncBinaryMarshal(yy1597) + } else if !yym1598 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1597) } else { - z.EncFallback(yy1544) + z.EncFallback(yy1597) } } else { r.EncodeNil() } } else { - if yyq1542[0] { + if yyq1595[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1546 := &x.StartedAt - yym1547 := z.EncBinary() - _ = yym1547 + yy1599 := &x.StartedAt + yym1600 := z.EncBinary() + _ = yym1600 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(yy1599) { + } else if yym1600 { + z.EncBinaryMarshal(yy1599) + } else if !yym1600 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1599) } else { - z.EncFallback(yy1546) + z.EncFallback(yy1599) } } } - if yyr1542 || yy2arr1542 { + if yyr1595 || yy2arr1595 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21345,25 +22052,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1548 := z.DecBinary() - _ = yym1548 + yym1601 := z.DecBinary() + _ = yym1601 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1549 := r.ContainerType() - if yyct1549 == codecSelferValueTypeMap1234 { - yyl1549 := r.ReadMapStart() - if yyl1549 == 0 { + yyct1602 := r.ContainerType() + if yyct1602 == codecSelferValueTypeMap1234 { + yyl1602 := r.ReadMapStart() + if yyl1602 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1549, d) + x.codecDecodeSelfFromMap(yyl1602, d) } - } else if yyct1549 == codecSelferValueTypeArray1234 { - yyl1549 := r.ReadArrayStart() - if yyl1549 == 0 { + } else if yyct1602 == codecSelferValueTypeArray1234 { + yyl1602 := r.ReadArrayStart() + if yyl1602 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1549, d) + x.codecDecodeSelfFromArray(yyl1602, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21375,12 +22082,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 yys1603Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1603Slc + var yyhl1603 bool = l >= 0 + for yyj1603 := 0; ; yyj1603++ { + if yyhl1603 { + if yyj1603 >= l { break } } else { @@ -21389,31 +22096,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1550Slc = r.DecodeBytes(yys1550Slc, true, true) - yys1550 := string(yys1550Slc) + yys1603Slc = r.DecodeBytes(yys1603Slc, true, true) + yys1603 := string(yys1603Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1550 { + switch yys1603 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1551 := &x.StartedAt - yym1552 := z.DecBinary() - _ = yym1552 + yyv1604 := &x.StartedAt + yym1605 := z.DecBinary() + _ = yym1605 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(yyv1604) { + } else if yym1605 { + z.DecBinaryUnmarshal(yyv1604) + } else if !yym1605 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1604) } else { - z.DecFallback(yyv1551, false) + z.DecFallback(yyv1604, false) } } default: - z.DecStructFieldNotFound(-1, yys1550) - } // end switch yys1550 - } // end for yyj1550 + z.DecStructFieldNotFound(-1, yys1603) + } // end switch yys1603 + } // end for yyj1603 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21421,16 +22128,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 yyj1606 int + var yyb1606 bool + var yyhl1606 bool = l >= 0 + yyj1606++ + if yyhl1606 { + yyb1606 = yyj1606 > l } else { - yyb1553 = r.CheckBreak() + yyb1606 = r.CheckBreak() } - if yyb1553 { + if yyb1606 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21438,31 +22145,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 + yyv1607 := &x.StartedAt + yym1608 := z.DecBinary() + _ = yym1608 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(yyv1607) { + } else if yym1608 { + z.DecBinaryUnmarshal(yyv1607) + } else if !yym1608 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1607) } else { - z.DecFallback(yyv1554, false) + z.DecFallback(yyv1607, false) } } for { - yyj1553++ - if yyhl1553 { - yyb1553 = yyj1553 > l + yyj1606++ + if yyhl1606 { + yyb1606 = yyj1606 > l } else { - yyb1553 = r.CheckBreak() + yyb1606 = r.CheckBreak() } - if yyb1553 { + if yyb1606 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1553-1, "") + z.DecStructFieldNotFound(yyj1606-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21474,39 +22181,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1556 := z.EncBinary() - _ = yym1556 + yym1609 := z.EncBinary() + _ = yym1609 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 { + yysep1610 := !z.EncBinary() + yy2arr1610 := z.EncBasicHandle().StructToArray + var yyq1610 [7]bool + _, _, _ = yysep1610, yyq1610, yy2arr1610 + const yyr1610 bool = false + yyq1610[1] = x.Signal != 0 + yyq1610[2] = x.Reason != "" + yyq1610[3] = x.Message != "" + yyq1610[4] = true + yyq1610[5] = true + yyq1610[6] = x.ContainerID != "" + var yynn1610 int + if yyr1610 || yy2arr1610 { r.EncodeArrayStart(7) } else { - yynn1557 = 1 - for _, b := range yyq1557 { + yynn1610 = 1 + for _, b := range yyq1610 { if b { - yynn1557++ + yynn1610++ } } - r.EncodeMapStart(yynn1557) - yynn1557 = 0 + r.EncodeMapStart(yynn1610) + yynn1610 = 0 } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1559 := z.EncBinary() - _ = yym1559 + yym1612 := z.EncBinary() + _ = yym1612 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -21515,18 +22222,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 + yym1613 := z.EncBinary() + _ = yym1613 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[1] { - yym1562 := z.EncBinary() - _ = yym1562 + if yyq1610[1] { + yym1615 := z.EncBinary() + _ = yym1615 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -21535,23 +22242,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1557[1] { + if yyq1610[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1563 := z.EncBinary() - _ = yym1563 + yym1616 := z.EncBinary() + _ = yym1616 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[2] { - yym1565 := z.EncBinary() - _ = yym1565 + if yyq1610[2] { + yym1618 := z.EncBinary() + _ = yym1618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -21560,23 +22267,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1557[2] { + if yyq1610[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1566 := z.EncBinary() - _ = yym1566 + yym1619 := z.EncBinary() + _ = yym1619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[3] { - yym1568 := z.EncBinary() - _ = yym1568 + if yyq1610[3] { + yym1621 := z.EncBinary() + _ = yym1621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -21585,97 +22292,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1557[3] { + if yyq1610[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1569 := z.EncBinary() - _ = yym1569 + yym1622 := z.EncBinary() + _ = yym1622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[4] { - yy1571 := &x.StartedAt - yym1572 := z.EncBinary() - _ = yym1572 + if yyq1610[4] { + yy1624 := &x.StartedAt + yym1625 := z.EncBinary() + _ = yym1625 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(yy1624) { + } else if yym1625 { + z.EncBinaryMarshal(yy1624) + } else if !yym1625 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1624) } else { - z.EncFallback(yy1571) + z.EncFallback(yy1624) } } else { r.EncodeNil() } } else { - if yyq1557[4] { + if yyq1610[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1573 := &x.StartedAt - yym1574 := z.EncBinary() - _ = yym1574 + yy1626 := &x.StartedAt + yym1627 := z.EncBinary() + _ = yym1627 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(yy1626) { + } else if yym1627 { + z.EncBinaryMarshal(yy1626) + } else if !yym1627 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1626) } else { - z.EncFallback(yy1573) + z.EncFallback(yy1626) } } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[5] { - yy1576 := &x.FinishedAt - yym1577 := z.EncBinary() - _ = yym1577 + if yyq1610[5] { + yy1629 := &x.FinishedAt + yym1630 := z.EncBinary() + _ = yym1630 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(yy1629) { + } else if yym1630 { + z.EncBinaryMarshal(yy1629) + } else if !yym1630 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1629) } else { - z.EncFallback(yy1576) + z.EncFallback(yy1629) } } else { r.EncodeNil() } } else { - if yyq1557[5] { + if yyq1610[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1578 := &x.FinishedAt - yym1579 := z.EncBinary() - _ = yym1579 + yy1631 := &x.FinishedAt + yym1632 := z.EncBinary() + _ = yym1632 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(yy1631) { + } else if yym1632 { + z.EncBinaryMarshal(yy1631) + } else if !yym1632 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1631) } else { - z.EncFallback(yy1578) + z.EncFallback(yy1631) } } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1557[6] { - yym1581 := z.EncBinary() - _ = yym1581 + if yyq1610[6] { + yym1634 := z.EncBinary() + _ = yym1634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -21684,19 +22391,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1557[6] { + if yyq1610[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1582 := z.EncBinary() - _ = yym1582 + yym1635 := z.EncBinary() + _ = yym1635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1557 || yy2arr1557 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21709,25 +22416,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1583 := z.DecBinary() - _ = yym1583 + yym1636 := z.DecBinary() + _ = yym1636 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1584 := r.ContainerType() - if yyct1584 == codecSelferValueTypeMap1234 { - yyl1584 := r.ReadMapStart() - if yyl1584 == 0 { + yyct1637 := r.ContainerType() + if yyct1637 == codecSelferValueTypeMap1234 { + yyl1637 := r.ReadMapStart() + if yyl1637 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1584, d) + x.codecDecodeSelfFromMap(yyl1637, d) } - } else if yyct1584 == codecSelferValueTypeArray1234 { - yyl1584 := r.ReadArrayStart() - if yyl1584 == 0 { + } else if yyct1637 == codecSelferValueTypeArray1234 { + yyl1637 := r.ReadArrayStart() + if yyl1637 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1584, d) + x.codecDecodeSelfFromArray(yyl1637, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21739,12 +22446,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 yys1638Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1638Slc + var yyhl1638 bool = l >= 0 + for yyj1638 := 0; ; yyj1638++ { + if yyhl1638 { + if yyj1638 >= l { break } } else { @@ -21753,10 +22460,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1585Slc = r.DecodeBytes(yys1585Slc, true, true) - yys1585 := string(yys1585Slc) + yys1638Slc = r.DecodeBytes(yys1638Slc, true, true) + yys1638 := string(yys1638Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1585 { + switch yys1638 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -21785,34 +22492,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 + yyv1643 := &x.StartedAt + yym1644 := z.DecBinary() + _ = yym1644 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(yyv1643) { + } else if yym1644 { + z.DecBinaryUnmarshal(yyv1643) + } else if !yym1644 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1643) } else { - z.DecFallback(yyv1590, false) + z.DecFallback(yyv1643, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1592 := &x.FinishedAt - yym1593 := z.DecBinary() - _ = yym1593 + yyv1645 := &x.FinishedAt + yym1646 := z.DecBinary() + _ = yym1646 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(yyv1645) { + } else if yym1646 { + z.DecBinaryUnmarshal(yyv1645) + } else if !yym1646 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1645) } else { - z.DecFallback(yyv1592, false) + z.DecFallback(yyv1645, false) } } case "containerID": @@ -21822,9 +22529,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, yys1638) + } // end switch yys1638 + } // end for yyj1638 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21832,16 +22539,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 yyj1648 int + var yyb1648 bool + var yyhl1648 bool = l >= 0 + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21851,13 +22558,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21867,13 +22574,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21883,13 +22590,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21899,13 +22606,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21913,26 +22620,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 + yyv1653 := &x.StartedAt + yym1654 := z.DecBinary() + _ = yym1654 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(yyv1653) { + } else if yym1654 { + z.DecBinaryUnmarshal(yyv1653) + } else if !yym1654 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1653) } else { - z.DecFallback(yyv1600, false) + z.DecFallback(yyv1653, false) } } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21940,26 +22647,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 + yyv1655 := &x.FinishedAt + yym1656 := z.DecBinary() + _ = yym1656 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(yyv1655) { + } else if yym1656 { + z.DecBinaryUnmarshal(yyv1655) + } else if !yym1656 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1655) } else { - z.DecFallback(yyv1602, false) + z.DecFallback(yyv1655, false) } } - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21970,17 +22677,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1595++ - if yyhl1595 { - yyb1595 = yyj1595 > l + yyj1648++ + if yyhl1648 { + yyb1648 = yyj1648 > l } else { - yyb1595 = r.CheckBreak() + yyb1648 = r.CheckBreak() } - if yyb1595 { + if yyb1648 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1595-1, "") + z.DecStructFieldNotFound(yyj1648-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21992,35 +22699,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1605 := z.EncBinary() - _ = yym1605 + yym1658 := z.EncBinary() + _ = yym1658 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 { + yysep1659 := !z.EncBinary() + yy2arr1659 := z.EncBasicHandle().StructToArray + var yyq1659 [3]bool + _, _, _ = yysep1659, yyq1659, yy2arr1659 + const yyr1659 bool = false + yyq1659[0] = x.Waiting != nil + yyq1659[1] = x.Running != nil + yyq1659[2] = x.Terminated != nil + var yynn1659 int + if yyr1659 || yy2arr1659 { r.EncodeArrayStart(3) } else { - yynn1606 = 0 - for _, b := range yyq1606 { + yynn1659 = 0 + for _, b := range yyq1659 { if b { - yynn1606++ + yynn1659++ } } - r.EncodeMapStart(yynn1606) - yynn1606 = 0 + r.EncodeMapStart(yynn1659) + yynn1659 = 0 } - if yyr1606 || yy2arr1606 { + if yyr1659 || yy2arr1659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1606[0] { + if yyq1659[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -22030,7 +22737,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1606[0] { + if yyq1659[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22041,9 +22748,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1606 || yy2arr1606 { + if yyr1659 || yy2arr1659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1606[1] { + if yyq1659[1] { if x.Running == nil { r.EncodeNil() } else { @@ -22053,7 +22760,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1606[1] { + if yyq1659[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22064,9 +22771,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1606 || yy2arr1606 { + if yyr1659 || yy2arr1659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1606[2] { + if yyq1659[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -22076,7 +22783,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1606[2] { + if yyq1659[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22087,7 +22794,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1606 || yy2arr1606 { + if yyr1659 || yy2arr1659 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22100,25 +22807,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1610 := z.DecBinary() - _ = yym1610 + yym1663 := z.DecBinary() + _ = yym1663 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1611 := r.ContainerType() - if yyct1611 == codecSelferValueTypeMap1234 { - yyl1611 := r.ReadMapStart() - if yyl1611 == 0 { + yyct1664 := r.ContainerType() + if yyct1664 == codecSelferValueTypeMap1234 { + yyl1664 := r.ReadMapStart() + if yyl1664 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1611, d) + x.codecDecodeSelfFromMap(yyl1664, d) } - } else if yyct1611 == codecSelferValueTypeArray1234 { - yyl1611 := r.ReadArrayStart() - if yyl1611 == 0 { + } else if yyct1664 == codecSelferValueTypeArray1234 { + yyl1664 := r.ReadArrayStart() + if yyl1664 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1611, d) + x.codecDecodeSelfFromArray(yyl1664, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22130,12 +22837,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 yys1665Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1665Slc + var yyhl1665 bool = l >= 0 + for yyj1665 := 0; ; yyj1665++ { + if yyhl1665 { + if yyj1665 >= l { break } } else { @@ -22144,10 +22851,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1612Slc = r.DecodeBytes(yys1612Slc, true, true) - yys1612 := string(yys1612Slc) + yys1665Slc = r.DecodeBytes(yys1665Slc, true, true) + yys1665 := string(yys1665Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1612 { + switch yys1665 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -22182,9 +22889,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, yys1665) + } // end switch yys1665 + } // end for yyj1665 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22192,16 +22899,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 yyj1669 int + var yyb1669 bool + var yyhl1669 bool = l >= 0 + yyj1669++ + if yyhl1669 { + yyb1669 = yyj1669 > l } else { - yyb1616 = r.CheckBreak() + yyb1669 = r.CheckBreak() } - if yyb1616 { + if yyb1669 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22216,13 +22923,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1669++ + if yyhl1669 { + yyb1669 = yyj1669 > l } else { - yyb1616 = r.CheckBreak() + yyb1669 = r.CheckBreak() } - if yyb1616 { + if yyb1669 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22237,13 +22944,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1669++ + if yyhl1669 { + yyb1669 = yyj1669 > l } else { - yyb1616 = r.CheckBreak() + yyb1669 = r.CheckBreak() } - if yyb1616 { + if yyb1669 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22259,17 +22966,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1669++ + if yyhl1669 { + yyb1669 = yyj1669 > l } else { - yyb1616 = r.CheckBreak() + yyb1669 = r.CheckBreak() } - if yyb1616 { + if yyb1669 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1616-1, "") + z.DecStructFieldNotFound(yyj1669-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22281,36 +22988,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1620 := z.EncBinary() - _ = yym1620 + yym1673 := z.EncBinary() + _ = yym1673 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 { + yysep1674 := !z.EncBinary() + yy2arr1674 := z.EncBasicHandle().StructToArray + var yyq1674 [8]bool + _, _, _ = yysep1674, yyq1674, yy2arr1674 + const yyr1674 bool = false + yyq1674[1] = true + yyq1674[2] = true + yyq1674[7] = x.ContainerID != "" + var yynn1674 int + if yyr1674 || yy2arr1674 { r.EncodeArrayStart(8) } else { - yynn1621 = 5 - for _, b := range yyq1621 { + yynn1674 = 5 + for _, b := range yyq1674 { if b { - yynn1621++ + yynn1674++ } } - r.EncodeMapStart(yynn1621) - yynn1621 = 0 + r.EncodeMapStart(yynn1674) + yynn1674 = 0 } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1623 := z.EncBinary() - _ = yym1623 + yym1676 := z.EncBinary() + _ = yym1676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -22319,51 +23026,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 + yym1677 := z.EncBinary() + _ = yym1677 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1621[1] { - yy1626 := &x.State - yy1626.CodecEncodeSelf(e) + if yyq1674[1] { + yy1679 := &x.State + yy1679.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1621[1] { + if yyq1674[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1627 := &x.State - yy1627.CodecEncodeSelf(e) + yy1680 := &x.State + yy1680.CodecEncodeSelf(e) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1621[2] { - yy1629 := &x.LastTerminationState - yy1629.CodecEncodeSelf(e) + if yyq1674[2] { + yy1682 := &x.LastTerminationState + yy1682.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1621[2] { + if yyq1674[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1630 := &x.LastTerminationState - yy1630.CodecEncodeSelf(e) + yy1683 := &x.LastTerminationState + yy1683.CodecEncodeSelf(e) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1632 := z.EncBinary() - _ = yym1632 + yym1685 := z.EncBinary() + _ = yym1685 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -22372,17 +23079,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 + yym1686 := z.EncBinary() + _ = yym1686 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1635 := z.EncBinary() - _ = yym1635 + yym1688 := z.EncBinary() + _ = yym1688 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -22391,17 +23098,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 + yym1689 := z.EncBinary() + _ = yym1689 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1638 := z.EncBinary() - _ = yym1638 + yym1691 := z.EncBinary() + _ = yym1691 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -22410,17 +23117,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 + yym1692 := z.EncBinary() + _ = yym1692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1641 := z.EncBinary() - _ = yym1641 + yym1694 := z.EncBinary() + _ = yym1694 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -22429,18 +23136,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 + yym1695 := z.EncBinary() + _ = yym1695 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1621[7] { - yym1644 := z.EncBinary() - _ = yym1644 + if yyq1674[7] { + yym1697 := z.EncBinary() + _ = yym1697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -22449,19 +23156,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1621[7] { + if yyq1674[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1645 := z.EncBinary() - _ = yym1645 + yym1698 := z.EncBinary() + _ = yym1698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1621 || yy2arr1621 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22474,25 +23181,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1646 := z.DecBinary() - _ = yym1646 + yym1699 := z.DecBinary() + _ = yym1699 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1647 := r.ContainerType() - if yyct1647 == codecSelferValueTypeMap1234 { - yyl1647 := r.ReadMapStart() - if yyl1647 == 0 { + yyct1700 := r.ContainerType() + if yyct1700 == codecSelferValueTypeMap1234 { + yyl1700 := r.ReadMapStart() + if yyl1700 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1647, d) + x.codecDecodeSelfFromMap(yyl1700, d) } - } else if yyct1647 == codecSelferValueTypeArray1234 { - yyl1647 := r.ReadArrayStart() - if yyl1647 == 0 { + } else if yyct1700 == codecSelferValueTypeArray1234 { + yyl1700 := r.ReadArrayStart() + if yyl1700 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1647, d) + x.codecDecodeSelfFromArray(yyl1700, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22504,12 +23211,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 yys1701Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1701Slc + var yyhl1701 bool = l >= 0 + for yyj1701 := 0; ; yyj1701++ { + if yyhl1701 { + if yyj1701 >= l { break } } else { @@ -22518,10 +23225,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1648Slc = r.DecodeBytes(yys1648Slc, true, true) - yys1648 := string(yys1648Slc) + yys1701Slc = r.DecodeBytes(yys1701Slc, true, true) + yys1701 := string(yys1701Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1648 { + switch yys1701 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -22532,15 +23239,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1650 := &x.State - yyv1650.CodecDecodeSelf(d) + yyv1703 := &x.State + yyv1703.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1651 := &x.LastTerminationState - yyv1651.CodecDecodeSelf(d) + yyv1704 := &x.LastTerminationState + yyv1704.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -22573,9 +23280,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, yys1701) + } // end switch yys1701 + } // end for yyj1701 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22583,16 +23290,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 yyj1710 int + var yyb1710 bool + var yyhl1710 bool = l >= 0 + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22602,13 +23309,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22616,16 +23323,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1659 := &x.State - yyv1659.CodecDecodeSelf(d) + yyv1712 := &x.State + yyv1712.CodecDecodeSelf(d) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22633,16 +23340,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1660 := &x.LastTerminationState - yyv1660.CodecDecodeSelf(d) + yyv1713 := &x.LastTerminationState + yyv1713.CodecDecodeSelf(d) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22652,13 +23359,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22668,13 +23375,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22684,13 +23391,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22700,13 +23407,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22717,17 +23424,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1657++ - if yyhl1657 { - yyb1657 = yyj1657 > l + yyj1710++ + if yyhl1710 { + yyb1710 = yyj1710 > l } else { - yyb1657 = r.CheckBreak() + yyb1710 = r.CheckBreak() } - if yyb1657 { + if yyb1710 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1657-1, "") + z.DecStructFieldNotFound(yyj1710-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22736,8 +23443,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1666 := z.EncBinary() - _ = yym1666 + yym1719 := z.EncBinary() + _ = yym1719 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22749,8 +23456,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1667 := z.DecBinary() - _ = yym1667 + yym1720 := z.DecBinary() + _ = yym1720 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22762,8 +23469,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1668 := z.EncBinary() - _ = yym1668 + yym1721 := z.EncBinary() + _ = yym1721 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22775,8 +23482,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1669 := z.DecBinary() - _ = yym1669 + yym1722 := z.DecBinary() + _ = yym1722 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22791,34 +23498,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1670 := z.EncBinary() - _ = yym1670 + yym1723 := z.EncBinary() + _ = yym1723 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 { + yysep1724 := !z.EncBinary() + yy2arr1724 := z.EncBasicHandle().StructToArray + var yyq1724 [6]bool + _, _, _ = yysep1724, yyq1724, yy2arr1724 + const yyr1724 bool = false + yyq1724[2] = true + yyq1724[3] = true + yyq1724[4] = x.Reason != "" + yyq1724[5] = x.Message != "" + var yynn1724 int + if yyr1724 || yy2arr1724 { r.EncodeArrayStart(6) } else { - yynn1671 = 2 - for _, b := range yyq1671 { + yynn1724 = 2 + for _, b := range yyq1724 { if b { - yynn1671++ + yynn1724++ } } - r.EncodeMapStart(yynn1671) - yynn1671 = 0 + r.EncodeMapStart(yynn1724) + yynn1724 = 0 } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -22827,7 +23534,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -22836,85 +23543,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[2] { - yy1675 := &x.LastProbeTime - yym1676 := z.EncBinary() - _ = yym1676 + if yyq1724[2] { + yy1728 := &x.LastProbeTime + yym1729 := z.EncBinary() + _ = yym1729 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(yy1728) { + } else if yym1729 { + z.EncBinaryMarshal(yy1728) + } else if !yym1729 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1728) } else { - z.EncFallback(yy1675) + z.EncFallback(yy1728) } } else { r.EncodeNil() } } else { - if yyq1671[2] { + if yyq1724[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1677 := &x.LastProbeTime - yym1678 := z.EncBinary() - _ = yym1678 + yy1730 := &x.LastProbeTime + yym1731 := z.EncBinary() + _ = yym1731 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(yy1730) { + } else if yym1731 { + z.EncBinaryMarshal(yy1730) + } else if !yym1731 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1730) } else { - z.EncFallback(yy1677) + z.EncFallback(yy1730) } } } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[3] { - yy1680 := &x.LastTransitionTime - yym1681 := z.EncBinary() - _ = yym1681 + if yyq1724[3] { + yy1733 := &x.LastTransitionTime + yym1734 := z.EncBinary() + _ = yym1734 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(yy1733) { + } else if yym1734 { + z.EncBinaryMarshal(yy1733) + } else if !yym1734 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1733) } else { - z.EncFallback(yy1680) + z.EncFallback(yy1733) } } else { r.EncodeNil() } } else { - if yyq1671[3] { + if yyq1724[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1682 := &x.LastTransitionTime - yym1683 := z.EncBinary() - _ = yym1683 + yy1735 := &x.LastTransitionTime + yym1736 := z.EncBinary() + _ = yym1736 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(yy1735) { + } else if yym1736 { + z.EncBinaryMarshal(yy1735) + } else if !yym1736 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1735) } else { - z.EncFallback(yy1682) + z.EncFallback(yy1735) } } } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[4] { - yym1685 := z.EncBinary() - _ = yym1685 + if yyq1724[4] { + yym1738 := z.EncBinary() + _ = yym1738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -22923,23 +23630,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1671[4] { + if yyq1724[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1686 := z.EncBinary() - _ = yym1686 + yym1739 := z.EncBinary() + _ = yym1739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1671[5] { - yym1688 := z.EncBinary() - _ = yym1688 + if yyq1724[5] { + yym1741 := z.EncBinary() + _ = yym1741 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -22948,19 +23655,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1671[5] { + if yyq1724[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1689 := z.EncBinary() - _ = yym1689 + yym1742 := z.EncBinary() + _ = yym1742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1671 || yy2arr1671 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22973,25 +23680,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1690 := z.DecBinary() - _ = yym1690 + yym1743 := z.DecBinary() + _ = yym1743 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1691 := r.ContainerType() - if yyct1691 == codecSelferValueTypeMap1234 { - yyl1691 := r.ReadMapStart() - if yyl1691 == 0 { + yyct1744 := r.ContainerType() + if yyct1744 == codecSelferValueTypeMap1234 { + yyl1744 := r.ReadMapStart() + if yyl1744 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1691, d) + x.codecDecodeSelfFromMap(yyl1744, d) } - } else if yyct1691 == codecSelferValueTypeArray1234 { - yyl1691 := r.ReadArrayStart() - if yyl1691 == 0 { + } else if yyct1744 == codecSelferValueTypeArray1234 { + yyl1744 := r.ReadArrayStart() + if yyl1744 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1691, d) + x.codecDecodeSelfFromArray(yyl1744, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23003,12 +23710,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 yys1745Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1745Slc + var yyhl1745 bool = l >= 0 + for yyj1745 := 0; ; yyj1745++ { + if yyhl1745 { + if yyj1745 >= l { break } } else { @@ -23017,10 +23724,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1692Slc = r.DecodeBytes(yys1692Slc, true, true) - yys1692 := string(yys1692Slc) + yys1745Slc = r.DecodeBytes(yys1745Slc, true, true) + yys1745 := string(yys1745Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1692 { + switch yys1745 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -23037,34 +23744,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 + yyv1748 := &x.LastProbeTime + yym1749 := z.DecBinary() + _ = yym1749 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(yyv1748) { + } else if yym1749 { + z.DecBinaryUnmarshal(yyv1748) + } else if !yym1749 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1748) } else { - z.DecFallback(yyv1695, false) + z.DecFallback(yyv1748, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1697 := &x.LastTransitionTime - yym1698 := z.DecBinary() - _ = yym1698 + yyv1750 := &x.LastTransitionTime + yym1751 := z.DecBinary() + _ = yym1751 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(yyv1750) { + } else if yym1751 { + z.DecBinaryUnmarshal(yyv1750) + } else if !yym1751 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1750) } else { - z.DecFallback(yyv1697, false) + z.DecFallback(yyv1750, false) } } case "reason": @@ -23080,9 +23787,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, yys1745) + } // end switch yys1745 + } // end for yyj1745 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23090,16 +23797,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 yyj1754 int + var yyb1754 bool + var yyhl1754 bool = l >= 0 + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23109,13 +23816,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23125,13 +23832,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23139,26 +23846,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 + yyv1757 := &x.LastProbeTime + yym1758 := z.DecBinary() + _ = yym1758 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(yyv1757) { + } else if yym1758 { + z.DecBinaryUnmarshal(yyv1757) + } else if !yym1758 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1757) } else { - z.DecFallback(yyv1704, false) + z.DecFallback(yyv1757, false) } } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23166,26 +23873,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 + yyv1759 := &x.LastTransitionTime + yym1760 := z.DecBinary() + _ = yym1760 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(yyv1759) { + } else if yym1760 { + z.DecBinaryUnmarshal(yyv1759) + } else if !yym1760 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1759) } else { - z.DecFallback(yyv1706, false) + z.DecFallback(yyv1759, false) } } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23195,13 +23902,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23212,17 +23919,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1701++ - if yyhl1701 { - yyb1701 = yyj1701 > l + yyj1754++ + if yyhl1754 { + yyb1754 = yyj1754 > l } else { - yyb1701 = r.CheckBreak() + yyb1754 = r.CheckBreak() } - if yyb1701 { + if yyb1754 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1701-1, "") + z.DecStructFieldNotFound(yyj1754-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23231,8 +23938,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1710 := z.EncBinary() - _ = yym1710 + yym1763 := z.EncBinary() + _ = yym1763 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23244,8 +23951,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1711 := z.DecBinary() - _ = yym1711 + yym1764 := z.DecBinary() + _ = yym1764 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23257,8 +23964,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1712 := z.EncBinary() - _ = yym1712 + yym1765 := z.EncBinary() + _ = yym1765 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23270,8 +23977,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1713 := z.DecBinary() - _ = yym1713 + yym1766 := z.DecBinary() + _ = yym1766 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23286,36 +23993,36 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1714 := z.EncBinary() - _ = yym1714 + yym1767 := z.EncBinary() + _ = yym1767 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1715 := !z.EncBinary() - yy2arr1715 := z.EncBasicHandle().StructToArray - var yyq1715 [1]bool - _, _, _ = yysep1715, yyq1715, yy2arr1715 - const yyr1715 bool = false - var yynn1715 int - if yyr1715 || yy2arr1715 { + yysep1768 := !z.EncBinary() + yy2arr1768 := z.EncBasicHandle().StructToArray + var yyq1768 [1]bool + _, _, _ = yysep1768, yyq1768, yy2arr1768 + const yyr1768 bool = false + var yynn1768 int + if yyr1768 || yy2arr1768 { r.EncodeArrayStart(1) } else { - yynn1715 = 1 - for _, b := range yyq1715 { + yynn1768 = 1 + for _, b := range yyq1768 { if b { - yynn1715++ + yynn1768++ } } - r.EncodeMapStart(yynn1715) - yynn1715 = 0 + r.EncodeMapStart(yynn1768) + yynn1768 = 0 } - if yyr1715 || yy2arr1715 { + if yyr1768 || yy2arr1768 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1717 := z.EncBinary() - _ = yym1717 + yym1770 := z.EncBinary() + _ = yym1770 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) @@ -23328,15 +24035,15 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1718 := z.EncBinary() - _ = yym1718 + yym1771 := z.EncBinary() + _ = yym1771 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) } } } - if yyr1715 || yy2arr1715 { + if yyr1768 || yy2arr1768 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23349,25 +24056,25 @@ func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1719 := z.DecBinary() - _ = yym1719 + yym1772 := z.DecBinary() + _ = yym1772 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1720 := r.ContainerType() - if yyct1720 == codecSelferValueTypeMap1234 { - yyl1720 := r.ReadMapStart() - if yyl1720 == 0 { + yyct1773 := r.ContainerType() + if yyct1773 == codecSelferValueTypeMap1234 { + yyl1773 := r.ReadMapStart() + if yyl1773 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1720, d) + x.codecDecodeSelfFromMap(yyl1773, d) } - } else if yyct1720 == codecSelferValueTypeArray1234 { - yyl1720 := r.ReadArrayStart() - if yyl1720 == 0 { + } else if yyct1773 == codecSelferValueTypeArray1234 { + yyl1773 := r.ReadArrayStart() + if yyl1773 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1720, d) + x.codecDecodeSelfFromArray(yyl1773, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23379,12 +24086,12 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1721Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1721Slc - var yyhl1721 bool = l >= 0 - for yyj1721 := 0; ; yyj1721++ { - if yyhl1721 { - if yyj1721 >= l { + var yys1774Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1774Slc + var yyhl1774 bool = l >= 0 + for yyj1774 := 0; ; yyj1774++ { + if yyhl1774 { + if yyj1774 >= l { break } } else { @@ -23393,26 +24100,26 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1721Slc = r.DecodeBytes(yys1721Slc, true, true) - yys1721 := string(yys1721Slc) + yys1774Slc = r.DecodeBytes(yys1774Slc, true, true) + yys1774 := string(yys1774Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1721 { + switch yys1774 { case "nodeSelectorTerms": if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1722 := &x.NodeSelectorTerms - yym1723 := z.DecBinary() - _ = yym1723 + yyv1775 := &x.NodeSelectorTerms + yym1776 := z.DecBinary() + _ = yym1776 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1722), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1775), d) } } default: - z.DecStructFieldNotFound(-1, yys1721) - } // end switch yys1721 - } // end for yyj1721 + z.DecStructFieldNotFound(-1, yys1774) + } // end switch yys1774 + } // end for yyj1774 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23420,16 +24127,16 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1724 int - var yyb1724 bool - var yyhl1724 bool = l >= 0 - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + var yyj1777 int + var yyb1777 bool + var yyhl1777 bool = l >= 0 + yyj1777++ + if yyhl1777 { + yyb1777 = yyj1777 > l } else { - yyb1724 = r.CheckBreak() + yyb1777 = r.CheckBreak() } - if yyb1724 { + if yyb1777 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23437,26 +24144,26 @@ func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1725 := &x.NodeSelectorTerms - yym1726 := z.DecBinary() - _ = yym1726 + yyv1778 := &x.NodeSelectorTerms + yym1779 := z.DecBinary() + _ = yym1779 if false { } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1725), d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1778), d) } } for { - yyj1724++ - if yyhl1724 { - yyb1724 = yyj1724 > l + yyj1777++ + if yyhl1777 { + yyb1777 = yyj1777 > l } else { - yyb1724 = r.CheckBreak() + yyb1777 = r.CheckBreak() } - if yyb1724 { + if yyb1777 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1724-1, "") + z.DecStructFieldNotFound(yyj1777-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23468,36 +24175,36 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1727 := z.EncBinary() - _ = yym1727 + yym1780 := z.EncBinary() + _ = yym1780 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1728 := !z.EncBinary() - yy2arr1728 := z.EncBasicHandle().StructToArray - var yyq1728 [1]bool - _, _, _ = yysep1728, yyq1728, yy2arr1728 - const yyr1728 bool = false - var yynn1728 int - if yyr1728 || yy2arr1728 { + yysep1781 := !z.EncBinary() + yy2arr1781 := z.EncBasicHandle().StructToArray + var yyq1781 [1]bool + _, _, _ = yysep1781, yyq1781, yy2arr1781 + const yyr1781 bool = false + var yynn1781 int + if yyr1781 || yy2arr1781 { r.EncodeArrayStart(1) } else { - yynn1728 = 1 - for _, b := range yyq1728 { + yynn1781 = 1 + for _, b := range yyq1781 { if b { - yynn1728++ + yynn1781++ } } - r.EncodeMapStart(yynn1728) - yynn1728 = 0 + r.EncodeMapStart(yynn1781) + yynn1781 = 0 } - if yyr1728 || yy2arr1728 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1730 := z.EncBinary() - _ = yym1730 + yym1783 := z.EncBinary() + _ = yym1783 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) @@ -23510,15 +24217,15 @@ func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.MatchExpressions == nil { r.EncodeNil() } else { - yym1731 := z.EncBinary() - _ = yym1731 + yym1784 := z.EncBinary() + _ = yym1784 if false { } else { h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) } } } - if yyr1728 || yy2arr1728 { + if yyr1781 || yy2arr1781 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23531,25 +24238,25 @@ func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1732 := z.DecBinary() - _ = yym1732 + yym1785 := z.DecBinary() + _ = yym1785 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1733 := r.ContainerType() - if yyct1733 == codecSelferValueTypeMap1234 { - yyl1733 := r.ReadMapStart() - if yyl1733 == 0 { + yyct1786 := r.ContainerType() + if yyct1786 == codecSelferValueTypeMap1234 { + yyl1786 := r.ReadMapStart() + if yyl1786 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1733, d) + x.codecDecodeSelfFromMap(yyl1786, d) } - } else if yyct1733 == codecSelferValueTypeArray1234 { - yyl1733 := r.ReadArrayStart() - if yyl1733 == 0 { + } else if yyct1786 == codecSelferValueTypeArray1234 { + yyl1786 := r.ReadArrayStart() + if yyl1786 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1733, d) + x.codecDecodeSelfFromArray(yyl1786, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23561,12 +24268,12 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1734Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1734Slc - var yyhl1734 bool = l >= 0 - for yyj1734 := 0; ; yyj1734++ { - if yyhl1734 { - if yyj1734 >= l { + var yys1787Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1787Slc + var yyhl1787 bool = l >= 0 + for yyj1787 := 0; ; yyj1787++ { + if yyhl1787 { + if yyj1787 >= l { break } } else { @@ -23575,26 +24282,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1734Slc = r.DecodeBytes(yys1734Slc, true, true) - yys1734 := string(yys1734Slc) + yys1787Slc = r.DecodeBytes(yys1787Slc, true, true) + yys1787 := string(yys1787Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1734 { + switch yys1787 { case "matchExpressions": if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1735 := &x.MatchExpressions - yym1736 := z.DecBinary() - _ = yym1736 + yyv1788 := &x.MatchExpressions + yym1789 := z.DecBinary() + _ = yym1789 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1735), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1788), d) } } default: - z.DecStructFieldNotFound(-1, yys1734) - } // end switch yys1734 - } // end for yyj1734 + z.DecStructFieldNotFound(-1, yys1787) + } // end switch yys1787 + } // end for yyj1787 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23602,16 +24309,16 @@ func (x *NodeSelectorTerm) 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 yyj1790 int + var yyb1790 bool + var yyhl1790 bool = l >= 0 + yyj1790++ + if yyhl1790 { + yyb1790 = yyj1790 > l } else { - yyb1737 = r.CheckBreak() + yyb1790 = r.CheckBreak() } - if yyb1737 { + if yyb1790 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23619,26 +24326,26 @@ func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.MatchExpressions = nil } else { - yyv1738 := &x.MatchExpressions - yym1739 := z.DecBinary() - _ = yym1739 + yyv1791 := &x.MatchExpressions + yym1792 := z.DecBinary() + _ = yym1792 if false { } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1738), d) + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1791), d) } } for { - yyj1737++ - if yyhl1737 { - yyb1737 = yyj1737 > l + yyj1790++ + if yyhl1790 { + yyb1790 = yyj1790 > l } else { - yyb1737 = r.CheckBreak() + yyb1790 = r.CheckBreak() } - if yyb1737 { + if yyb1790 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1737-1, "") + z.DecStructFieldNotFound(yyj1790-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23650,34 +24357,34 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1740 := z.EncBinary() - _ = yym1740 + yym1793 := z.EncBinary() + _ = yym1793 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1741 := !z.EncBinary() - yy2arr1741 := z.EncBasicHandle().StructToArray - var yyq1741 [3]bool - _, _, _ = yysep1741, yyq1741, yy2arr1741 - const yyr1741 bool = false - yyq1741[2] = len(x.Values) != 0 - var yynn1741 int - if yyr1741 || yy2arr1741 { + yysep1794 := !z.EncBinary() + yy2arr1794 := z.EncBasicHandle().StructToArray + var yyq1794 [3]bool + _, _, _ = yysep1794, yyq1794, yy2arr1794 + const yyr1794 bool = false + yyq1794[2] = len(x.Values) != 0 + var yynn1794 int + if yyr1794 || yy2arr1794 { r.EncodeArrayStart(3) } else { - yynn1741 = 2 - for _, b := range yyq1741 { + yynn1794 = 2 + for _, b := range yyq1794 { if b { - yynn1741++ + yynn1794++ } } - r.EncodeMapStart(yynn1741) - yynn1741 = 0 + r.EncodeMapStart(yynn1794) + yynn1794 = 0 } - if yyr1741 || yy2arr1741 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1743 := z.EncBinary() - _ = yym1743 + yym1796 := z.EncBinary() + _ = yym1796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -23686,14 +24393,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1744 := z.EncBinary() - _ = yym1744 + yym1797 := z.EncBinary() + _ = yym1797 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1741 || yy2arr1741 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Operator.CodecEncodeSelf(e) } else { @@ -23702,14 +24409,14 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } - if yyr1741 || yy2arr1741 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1741[2] { + if yyq1794[2] { if x.Values == nil { r.EncodeNil() } else { - yym1747 := z.EncBinary() - _ = yym1747 + yym1800 := z.EncBinary() + _ = yym1800 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -23719,15 +24426,15 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1741[2] { + if yyq1794[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("values")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Values == nil { r.EncodeNil() } else { - yym1748 := z.EncBinary() - _ = yym1748 + yym1801 := z.EncBinary() + _ = yym1801 if false { } else { z.F.EncSliceStringV(x.Values, false, e) @@ -23735,7 +24442,7 @@ func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1741 || yy2arr1741 { + if yyr1794 || yy2arr1794 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23748,25 +24455,25 @@ func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1749 := z.DecBinary() - _ = yym1749 + yym1802 := z.DecBinary() + _ = yym1802 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1750 := r.ContainerType() - if yyct1750 == codecSelferValueTypeMap1234 { - yyl1750 := r.ReadMapStart() - if yyl1750 == 0 { + yyct1803 := r.ContainerType() + if yyct1803 == codecSelferValueTypeMap1234 { + yyl1803 := r.ReadMapStart() + if yyl1803 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1750, d) + x.codecDecodeSelfFromMap(yyl1803, d) } - } else if yyct1750 == codecSelferValueTypeArray1234 { - yyl1750 := r.ReadArrayStart() - if yyl1750 == 0 { + } else if yyct1803 == codecSelferValueTypeArray1234 { + yyl1803 := r.ReadArrayStart() + if yyl1803 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1750, d) + x.codecDecodeSelfFromArray(yyl1803, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23778,12 +24485,12 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1751Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1751Slc - var yyhl1751 bool = l >= 0 - for yyj1751 := 0; ; yyj1751++ { - if yyhl1751 { - if yyj1751 >= l { + var yys1804Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1804Slc + var yyhl1804 bool = l >= 0 + for yyj1804 := 0; ; yyj1804++ { + if yyhl1804 { + if yyj1804 >= l { break } } else { @@ -23792,10 +24499,10 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1751Slc = r.DecodeBytes(yys1751Slc, true, true) - yys1751 := string(yys1751Slc) + yys1804Slc = r.DecodeBytes(yys1804Slc, true, true) + yys1804 := string(yys1804Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1751 { + switch yys1804 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -23812,18 +24519,18 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1754 := &x.Values - yym1755 := z.DecBinary() - _ = yym1755 + yyv1807 := &x.Values + yym1808 := z.DecBinary() + _ = yym1808 if false { } else { - z.F.DecSliceStringX(yyv1754, false, d) + z.F.DecSliceStringX(yyv1807, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1751) - } // end switch yys1751 - } // end for yyj1751 + z.DecStructFieldNotFound(-1, yys1804) + } // end switch yys1804 + } // end for yyj1804 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23831,16 +24538,16 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D 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 yyj1809 int + var yyb1809 bool + var yyhl1809 bool = l >= 0 + yyj1809++ + if yyhl1809 { + yyb1809 = yyj1809 > l } else { - yyb1756 = r.CheckBreak() + yyb1809 = r.CheckBreak() } - if yyb1756 { + if yyb1809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23850,13 +24557,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Key = string(r.DecodeString()) } - yyj1756++ - if yyhl1756 { - yyb1756 = yyj1756 > l + yyj1809++ + if yyhl1809 { + yyb1809 = yyj1809 > l } else { - yyb1756 = r.CheckBreak() + yyb1809 = r.CheckBreak() } - if yyb1756 { + if yyb1809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23866,13 +24573,13 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Operator = NodeSelectorOperator(r.DecodeString()) } - yyj1756++ - if yyhl1756 { - yyb1756 = yyj1756 > l + yyj1809++ + if yyhl1809 { + yyb1809 = yyj1809 > l } else { - yyb1756 = r.CheckBreak() + yyb1809 = r.CheckBreak() } - if yyb1756 { + if yyb1809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23880,26 +24587,26 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Values = nil } else { - yyv1759 := &x.Values - yym1760 := z.DecBinary() - _ = yym1760 + yyv1812 := &x.Values + yym1813 := z.DecBinary() + _ = yym1813 if false { } else { - z.F.DecSliceStringX(yyv1759, false, d) + z.F.DecSliceStringX(yyv1812, false, d) } } for { - yyj1756++ - if yyhl1756 { - yyb1756 = yyj1756 > l + yyj1809++ + if yyhl1809 { + yyb1809 = yyj1809 > l } else { - yyb1756 = r.CheckBreak() + yyb1809 = r.CheckBreak() } - if yyb1756 { + if yyb1809 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1756-1, "") + z.DecStructFieldNotFound(yyj1809-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23908,8 +24615,8 @@ func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1761 := z.EncBinary() - _ = yym1761 + yym1814 := z.EncBinary() + _ = yym1814 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23921,8 +24628,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1762 := z.DecBinary() - _ = yym1762 + yym1815 := z.DecBinary() + _ = yym1815 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23937,35 +24644,35 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1763 := z.EncBinary() - _ = yym1763 + yym1816 := z.EncBinary() + _ = yym1816 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1764 := !z.EncBinary() - yy2arr1764 := z.EncBasicHandle().StructToArray - var yyq1764 [3]bool - _, _, _ = yysep1764, yyq1764, yy2arr1764 - const yyr1764 bool = false - yyq1764[0] = x.NodeAffinity != nil - yyq1764[1] = x.PodAffinity != nil - yyq1764[2] = x.PodAntiAffinity != nil - var yynn1764 int - if yyr1764 || yy2arr1764 { + yysep1817 := !z.EncBinary() + yy2arr1817 := z.EncBasicHandle().StructToArray + var yyq1817 [3]bool + _, _, _ = yysep1817, yyq1817, yy2arr1817 + const yyr1817 bool = false + yyq1817[0] = x.NodeAffinity != nil + yyq1817[1] = x.PodAffinity != nil + yyq1817[2] = x.PodAntiAffinity != nil + var yynn1817 int + if yyr1817 || yy2arr1817 { r.EncodeArrayStart(3) } else { - yynn1764 = 0 - for _, b := range yyq1764 { + yynn1817 = 0 + for _, b := range yyq1817 { if b { - yynn1764++ + yynn1817++ } } - r.EncodeMapStart(yynn1764) - yynn1764 = 0 + r.EncodeMapStart(yynn1817) + yynn1817 = 0 } - if yyr1764 || yy2arr1764 { + if yyr1817 || yy2arr1817 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1764[0] { + if yyq1817[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -23975,7 +24682,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1764[0] { + if yyq1817[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23986,9 +24693,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1764 || yy2arr1764 { + if yyr1817 || yy2arr1817 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1764[1] { + if yyq1817[1] { if x.PodAffinity == nil { r.EncodeNil() } else { @@ -23998,7 +24705,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1764[1] { + if yyq1817[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24009,9 +24716,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1764 || yy2arr1764 { + if yyr1817 || yy2arr1817 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1764[2] { + if yyq1817[2] { if x.PodAntiAffinity == nil { r.EncodeNil() } else { @@ -24021,7 +24728,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1764[2] { + if yyq1817[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAntiAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -24032,7 +24739,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1764 || yy2arr1764 { + if yyr1817 || yy2arr1817 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24045,25 +24752,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1768 := z.DecBinary() - _ = yym1768 + yym1821 := z.DecBinary() + _ = yym1821 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1769 := r.ContainerType() - if yyct1769 == codecSelferValueTypeMap1234 { - yyl1769 := r.ReadMapStart() - if yyl1769 == 0 { + yyct1822 := r.ContainerType() + if yyct1822 == codecSelferValueTypeMap1234 { + yyl1822 := r.ReadMapStart() + if yyl1822 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1769, d) + x.codecDecodeSelfFromMap(yyl1822, d) } - } else if yyct1769 == codecSelferValueTypeArray1234 { - yyl1769 := r.ReadArrayStart() - if yyl1769 == 0 { + } else if yyct1822 == codecSelferValueTypeArray1234 { + yyl1822 := r.ReadArrayStart() + if yyl1822 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1769, d) + x.codecDecodeSelfFromArray(yyl1822, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24075,12 +24782,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1770Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1770Slc - var yyhl1770 bool = l >= 0 - for yyj1770 := 0; ; yyj1770++ { - if yyhl1770 { - if yyj1770 >= l { + var 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 { @@ -24089,10 +24796,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1770Slc = r.DecodeBytes(yys1770Slc, true, true) - yys1770 := string(yys1770Slc) + yys1823Slc = r.DecodeBytes(yys1823Slc, true, true) + yys1823 := string(yys1823Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1770 { + switch yys1823 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -24127,9 +24834,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1770) - } // end switch yys1770 - } // end for yyj1770 + z.DecStructFieldNotFound(-1, yys1823) + } // end switch yys1823 + } // end for yyj1823 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24137,16 +24844,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1774 int - var yyb1774 bool - var yyhl1774 bool = l >= 0 - yyj1774++ - if yyhl1774 { - yyb1774 = yyj1774 > l + var yyj1827 int + var yyb1827 bool + var yyhl1827 bool = l >= 0 + yyj1827++ + if yyhl1827 { + yyb1827 = yyj1827 > l } else { - yyb1774 = r.CheckBreak() + yyb1827 = r.CheckBreak() } - if yyb1774 { + if yyb1827 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24161,13 +24868,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NodeAffinity.CodecDecodeSelf(d) } - yyj1774++ - if yyhl1774 { - yyb1774 = yyj1774 > l + yyj1827++ + if yyhl1827 { + yyb1827 = yyj1827 > l } else { - yyb1774 = r.CheckBreak() + yyb1827 = r.CheckBreak() } - if yyb1774 { + if yyb1827 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24182,13 +24889,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PodAffinity.CodecDecodeSelf(d) } - yyj1774++ - if yyhl1774 { - yyb1774 = yyj1774 > l + yyj1827++ + if yyhl1827 { + yyb1827 = yyj1827 > l } else { - yyb1774 = r.CheckBreak() + yyb1827 = r.CheckBreak() } - if yyb1774 { + if yyb1827 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24204,17 +24911,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } for { - yyj1774++ - if yyhl1774 { - yyb1774 = yyj1774 > l + yyj1827++ + if yyhl1827 { + yyb1827 = yyj1827 > l } else { - yyb1774 = r.CheckBreak() + yyb1827 = r.CheckBreak() } - if yyb1774 { + if yyb1827 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1774-1, "") + z.DecStructFieldNotFound(yyj1827-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24226,39 +24933,39 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1778 := z.EncBinary() - _ = yym1778 + yym1831 := z.EncBinary() + _ = yym1831 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1779 := !z.EncBinary() - yy2arr1779 := z.EncBasicHandle().StructToArray - var yyq1779 [2]bool - _, _, _ = yysep1779, yyq1779, yy2arr1779 - const yyr1779 bool = false - yyq1779[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1779[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1779 int - if yyr1779 || yy2arr1779 { + yysep1832 := !z.EncBinary() + yy2arr1832 := z.EncBasicHandle().StructToArray + var yyq1832 [2]bool + _, _, _ = yysep1832, yyq1832, yy2arr1832 + const yyr1832 bool = false + yyq1832[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1832[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1832 int + if yyr1832 || yy2arr1832 { r.EncodeArrayStart(2) } else { - yynn1779 = 0 - for _, b := range yyq1779 { + yynn1832 = 0 + for _, b := range yyq1832 { if b { - yynn1779++ + yynn1832++ } } - r.EncodeMapStart(yynn1779) - yynn1779 = 0 + r.EncodeMapStart(yynn1832) + yynn1832 = 0 } - if yyr1779 || yy2arr1779 { + if yyr1832 || yy2arr1832 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1779[0] { + if yyq1832[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1781 := z.EncBinary() - _ = yym1781 + yym1834 := z.EncBinary() + _ = yym1834 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24268,15 +24975,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1779[0] { + if yyq1832[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1782 := z.EncBinary() - _ = yym1782 + yym1835 := z.EncBinary() + _ = yym1835 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24284,14 +24991,14 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1779 || yy2arr1779 { + if yyr1832 || yy2arr1832 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1779[1] { + if yyq1832[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1784 := z.EncBinary() - _ = yym1784 + yym1837 := z.EncBinary() + _ = yym1837 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24301,15 +25008,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1779[1] { + if yyq1832[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1785 := z.EncBinary() - _ = yym1785 + yym1838 := z.EncBinary() + _ = yym1838 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24317,7 +25024,7 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1779 || yy2arr1779 { + if yyr1832 || yy2arr1832 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24330,25 +25037,25 @@ func (x *PodAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1786 := z.DecBinary() - _ = yym1786 + yym1839 := z.DecBinary() + _ = yym1839 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1787 := r.ContainerType() - if yyct1787 == codecSelferValueTypeMap1234 { - yyl1787 := r.ReadMapStart() - if yyl1787 == 0 { + yyct1840 := r.ContainerType() + if yyct1840 == codecSelferValueTypeMap1234 { + yyl1840 := r.ReadMapStart() + if yyl1840 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1787, d) + x.codecDecodeSelfFromMap(yyl1840, d) } - } else if yyct1787 == codecSelferValueTypeArray1234 { - yyl1787 := r.ReadArrayStart() - if yyl1787 == 0 { + } else if yyct1840 == codecSelferValueTypeArray1234 { + yyl1840 := r.ReadArrayStart() + if yyl1840 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1787, d) + x.codecDecodeSelfFromArray(yyl1840, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24360,12 +25067,12 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1788Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1788Slc - var yyhl1788 bool = l >= 0 - for yyj1788 := 0; ; yyj1788++ { - if yyhl1788 { - if yyj1788 >= l { + var yys1841Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1841Slc + var yyhl1841 bool = l >= 0 + for yyj1841 := 0; ; yyj1841++ { + if yyhl1841 { + if yyj1841 >= l { break } } else { @@ -24374,38 +25081,38 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1788Slc = r.DecodeBytes(yys1788Slc, true, true) - yys1788 := string(yys1788Slc) + yys1841Slc = r.DecodeBytes(yys1841Slc, true, true) + yys1841 := string(yys1841Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1788 { + switch yys1841 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1789 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1790 := z.DecBinary() - _ = yym1790 + yyv1842 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1843 := z.DecBinary() + _ = yym1843 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1789), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1842), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1791 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1792 := z.DecBinary() - _ = yym1792 + yyv1844 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1845 := z.DecBinary() + _ = yym1845 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1791), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1844), d) } } default: - z.DecStructFieldNotFound(-1, yys1788) - } // end switch yys1788 - } // end for yyj1788 + z.DecStructFieldNotFound(-1, yys1841) + } // end switch yys1841 + } // end for yyj1841 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24413,16 +25120,16 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1793 int - var yyb1793 bool - var yyhl1793 bool = l >= 0 - yyj1793++ - if yyhl1793 { - yyb1793 = yyj1793 > l + var yyj1846 int + var yyb1846 bool + var yyhl1846 bool = l >= 0 + yyj1846++ + if yyhl1846 { + yyb1846 = yyj1846 > l } else { - yyb1793 = r.CheckBreak() + yyb1846 = r.CheckBreak() } - if yyb1793 { + if yyb1846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24430,21 +25137,21 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1794 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1795 := z.DecBinary() - _ = yym1795 + yyv1847 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1848 := z.DecBinary() + _ = yym1848 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1794), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1847), d) } } - yyj1793++ - if yyhl1793 { - yyb1793 = yyj1793 > l + yyj1846++ + if yyhl1846 { + yyb1846 = yyj1846 > l } else { - yyb1793 = r.CheckBreak() + yyb1846 = r.CheckBreak() } - if yyb1793 { + if yyb1846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24452,26 +25159,26 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1796 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1797 := z.DecBinary() - _ = yym1797 + yyv1849 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1850 := z.DecBinary() + _ = yym1850 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1796), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1849), d) } } for { - yyj1793++ - if yyhl1793 { - yyb1793 = yyj1793 > l + yyj1846++ + if yyhl1846 { + yyb1846 = yyj1846 > l } else { - yyb1793 = r.CheckBreak() + yyb1846 = r.CheckBreak() } - if yyb1793 { + if yyb1846 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1793-1, "") + z.DecStructFieldNotFound(yyj1846-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24483,39 +25190,39 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1798 := z.EncBinary() - _ = yym1798 + yym1851 := z.EncBinary() + _ = yym1851 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1799 := !z.EncBinary() - yy2arr1799 := z.EncBasicHandle().StructToArray - var yyq1799 [2]bool - _, _, _ = yysep1799, yyq1799, yy2arr1799 - const yyr1799 bool = false - yyq1799[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1799[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1799 int - if yyr1799 || yy2arr1799 { + yysep1852 := !z.EncBinary() + yy2arr1852 := z.EncBasicHandle().StructToArray + var yyq1852 [2]bool + _, _, _ = yysep1852, yyq1852, yy2arr1852 + const yyr1852 bool = false + yyq1852[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1852[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1852 int + if yyr1852 || yy2arr1852 { r.EncodeArrayStart(2) } else { - yynn1799 = 0 - for _, b := range yyq1799 { + yynn1852 = 0 + for _, b := range yyq1852 { if b { - yynn1799++ + yynn1852++ } } - r.EncodeMapStart(yynn1799) - yynn1799 = 0 + r.EncodeMapStart(yynn1852) + yynn1852 = 0 } - if yyr1799 || yy2arr1799 { + if yyr1852 || yy2arr1852 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1799[0] { + if yyq1852[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1801 := z.EncBinary() - _ = yym1801 + yym1854 := z.EncBinary() + _ = yym1854 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24525,15 +25232,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1799[0] { + if yyq1852[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1802 := z.EncBinary() - _ = yym1802 + yym1855 := z.EncBinary() + _ = yym1855 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -24541,14 +25248,14 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1799 || yy2arr1799 { + if yyr1852 || yy2arr1852 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1799[1] { + if yyq1852[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1804 := z.EncBinary() - _ = yym1804 + yym1857 := z.EncBinary() + _ = yym1857 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24558,15 +25265,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1799[1] { + if yyq1852[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1805 := z.EncBinary() - _ = yym1805 + yym1858 := z.EncBinary() + _ = yym1858 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -24574,7 +25281,7 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1799 || yy2arr1799 { + if yyr1852 || yy2arr1852 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24587,25 +25294,25 @@ func (x *PodAntiAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1806 := z.DecBinary() - _ = yym1806 + yym1859 := z.DecBinary() + _ = yym1859 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1807 := r.ContainerType() - if yyct1807 == codecSelferValueTypeMap1234 { - yyl1807 := r.ReadMapStart() - if yyl1807 == 0 { + yyct1860 := r.ContainerType() + if yyct1860 == codecSelferValueTypeMap1234 { + yyl1860 := r.ReadMapStart() + if yyl1860 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1807, d) + x.codecDecodeSelfFromMap(yyl1860, d) } - } else if yyct1807 == codecSelferValueTypeArray1234 { - yyl1807 := r.ReadArrayStart() - if yyl1807 == 0 { + } else if yyct1860 == codecSelferValueTypeArray1234 { + yyl1860 := r.ReadArrayStart() + if yyl1860 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1807, d) + x.codecDecodeSelfFromArray(yyl1860, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24617,12 +25324,12 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1808Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1808Slc - var yyhl1808 bool = l >= 0 - for yyj1808 := 0; ; yyj1808++ { - if yyhl1808 { - if yyj1808 >= l { + var yys1861Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1861Slc + var yyhl1861 bool = l >= 0 + for yyj1861 := 0; ; yyj1861++ { + if yyhl1861 { + if yyj1861 >= l { break } } else { @@ -24631,38 +25338,38 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1808Slc = r.DecodeBytes(yys1808Slc, true, true) - yys1808 := string(yys1808Slc) + yys1861Slc = r.DecodeBytes(yys1861Slc, true, true) + yys1861 := string(yys1861Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1808 { + switch yys1861 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1809 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1810 := z.DecBinary() - _ = yym1810 + yyv1862 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1863 := z.DecBinary() + _ = yym1863 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1809), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1862), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1811 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1812 := z.DecBinary() - _ = yym1812 + yyv1864 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1865 := z.DecBinary() + _ = yym1865 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1811), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1864), d) } } default: - z.DecStructFieldNotFound(-1, yys1808) - } // end switch yys1808 - } // end for yyj1808 + z.DecStructFieldNotFound(-1, yys1861) + } // end switch yys1861 + } // end for yyj1861 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24670,16 +25377,16 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1813 int - var yyb1813 bool - var yyhl1813 bool = l >= 0 - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + var yyj1866 int + var yyb1866 bool + var yyhl1866 bool = l >= 0 + yyj1866++ + if yyhl1866 { + yyb1866 = yyj1866 > l } else { - yyb1813 = r.CheckBreak() + yyb1866 = r.CheckBreak() } - if yyb1813 { + if yyb1866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24687,21 +25394,21 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1814 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1815 := z.DecBinary() - _ = yym1815 + yyv1867 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1868 := z.DecBinary() + _ = yym1868 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1814), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1867), d) } } - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + yyj1866++ + if yyhl1866 { + yyb1866 = yyj1866 > l } else { - yyb1813 = r.CheckBreak() + yyb1866 = r.CheckBreak() } - if yyb1813 { + if yyb1866 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24709,26 +25416,26 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1816 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1817 := z.DecBinary() - _ = yym1817 + yyv1869 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1870 := z.DecBinary() + _ = yym1870 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1816), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1869), d) } } for { - yyj1813++ - if yyhl1813 { - yyb1813 = yyj1813 > l + yyj1866++ + if yyhl1866 { + yyb1866 = yyj1866 > l } else { - yyb1813 = r.CheckBreak() + yyb1866 = r.CheckBreak() } - if yyb1813 { + if yyb1866 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1813-1, "") + z.DecStructFieldNotFound(yyj1866-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24740,33 +25447,33 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1818 := z.EncBinary() - _ = yym1818 + yym1871 := z.EncBinary() + _ = yym1871 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1819 := !z.EncBinary() - yy2arr1819 := z.EncBasicHandle().StructToArray - var yyq1819 [2]bool - _, _, _ = yysep1819, yyq1819, yy2arr1819 - const yyr1819 bool = false - var yynn1819 int - if yyr1819 || yy2arr1819 { + yysep1872 := !z.EncBinary() + yy2arr1872 := z.EncBasicHandle().StructToArray + var yyq1872 [2]bool + _, _, _ = yysep1872, yyq1872, yy2arr1872 + const yyr1872 bool = false + var yynn1872 int + if yyr1872 || yy2arr1872 { r.EncodeArrayStart(2) } else { - yynn1819 = 2 - for _, b := range yyq1819 { + yynn1872 = 2 + for _, b := range yyq1872 { if b { - yynn1819++ + yynn1872++ } } - r.EncodeMapStart(yynn1819) - yynn1819 = 0 + r.EncodeMapStart(yynn1872) + yynn1872 = 0 } - if yyr1819 || yy2arr1819 { + if yyr1872 || yy2arr1872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1821 := z.EncBinary() - _ = yym1821 + yym1874 := z.EncBinary() + _ = yym1874 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -24775,25 +25482,25 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1822 := z.EncBinary() - _ = yym1822 + yym1875 := z.EncBinary() + _ = yym1875 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1819 || yy2arr1819 { + if yyr1872 || yy2arr1872 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1824 := &x.PodAffinityTerm - yy1824.CodecEncodeSelf(e) + yy1877 := &x.PodAffinityTerm + yy1877.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinityTerm")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1825 := &x.PodAffinityTerm - yy1825.CodecEncodeSelf(e) + yy1878 := &x.PodAffinityTerm + yy1878.CodecEncodeSelf(e) } - if yyr1819 || yy2arr1819 { + if yyr1872 || yy2arr1872 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24806,25 +25513,25 @@ func (x *WeightedPodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1826 := z.DecBinary() - _ = yym1826 + yym1879 := z.DecBinary() + _ = yym1879 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1827 := r.ContainerType() - if yyct1827 == codecSelferValueTypeMap1234 { - yyl1827 := r.ReadMapStart() - if yyl1827 == 0 { + yyct1880 := r.ContainerType() + if yyct1880 == codecSelferValueTypeMap1234 { + yyl1880 := r.ReadMapStart() + if yyl1880 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1827, d) + x.codecDecodeSelfFromMap(yyl1880, d) } - } else if yyct1827 == codecSelferValueTypeArray1234 { - yyl1827 := r.ReadArrayStart() - if yyl1827 == 0 { + } else if yyct1880 == codecSelferValueTypeArray1234 { + yyl1880 := r.ReadArrayStart() + if yyl1880 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1827, d) + x.codecDecodeSelfFromArray(yyl1880, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24836,12 +25543,12 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1828Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1828Slc - var yyhl1828 bool = l >= 0 - for yyj1828 := 0; ; yyj1828++ { - if yyhl1828 { - if yyj1828 >= l { + var yys1881Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1881Slc + var yyhl1881 bool = l >= 0 + for yyj1881 := 0; ; yyj1881++ { + if yyhl1881 { + if yyj1881 >= l { break } } else { @@ -24850,10 +25557,10 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1828Slc = r.DecodeBytes(yys1828Slc, true, true) - yys1828 := string(yys1828Slc) + yys1881Slc = r.DecodeBytes(yys1881Slc, true, true) + yys1881 := string(yys1881Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1828 { + switch yys1881 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -24864,13 +25571,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1830 := &x.PodAffinityTerm - yyv1830.CodecDecodeSelf(d) + yyv1883 := &x.PodAffinityTerm + yyv1883.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1828) - } // end switch yys1828 - } // end for yyj1828 + z.DecStructFieldNotFound(-1, yys1881) + } // end switch yys1881 + } // end for yyj1881 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24878,16 +25585,16 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1831 int - var yyb1831 bool - var yyhl1831 bool = l >= 0 - yyj1831++ - if yyhl1831 { - yyb1831 = yyj1831 > l + var yyj1884 int + var yyb1884 bool + var yyhl1884 bool = l >= 0 + yyj1884++ + if yyhl1884 { + yyb1884 = yyj1884 > l } else { - yyb1831 = r.CheckBreak() + yyb1884 = r.CheckBreak() } - if yyb1831 { + if yyb1884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24897,13 +25604,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1831++ - if yyhl1831 { - yyb1831 = yyj1831 > l + yyj1884++ + if yyhl1884 { + yyb1884 = yyj1884 > l } else { - yyb1831 = r.CheckBreak() + yyb1884 = r.CheckBreak() } - if yyb1831 { + if yyb1884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24911,21 +25618,21 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1833 := &x.PodAffinityTerm - yyv1833.CodecDecodeSelf(d) + yyv1886 := &x.PodAffinityTerm + yyv1886.CodecDecodeSelf(d) } for { - yyj1831++ - if yyhl1831 { - yyb1831 = yyj1831 > l + yyj1884++ + if yyhl1884 { + yyb1884 = yyj1884 > l } else { - yyb1831 = r.CheckBreak() + yyb1884 = r.CheckBreak() } - if yyb1831 { + if yyb1884 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1831-1, "") + z.DecStructFieldNotFound(yyj1884-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24937,39 +25644,39 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1834 := z.EncBinary() - _ = yym1834 + yym1887 := z.EncBinary() + _ = yym1887 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1835 := !z.EncBinary() - yy2arr1835 := z.EncBasicHandle().StructToArray - var yyq1835 [3]bool - _, _, _ = yysep1835, yyq1835, yy2arr1835 - const yyr1835 bool = false - yyq1835[0] = x.LabelSelector != nil - yyq1835[2] = x.TopologyKey != "" - var yynn1835 int - if yyr1835 || yy2arr1835 { + yysep1888 := !z.EncBinary() + yy2arr1888 := z.EncBasicHandle().StructToArray + var yyq1888 [3]bool + _, _, _ = yysep1888, yyq1888, yy2arr1888 + const yyr1888 bool = false + yyq1888[0] = x.LabelSelector != nil + yyq1888[2] = x.TopologyKey != "" + var yynn1888 int + if yyr1888 || yy2arr1888 { r.EncodeArrayStart(3) } else { - yynn1835 = 1 - for _, b := range yyq1835 { + yynn1888 = 1 + for _, b := range yyq1888 { if b { - yynn1835++ + yynn1888++ } } - r.EncodeMapStart(yynn1835) - yynn1835 = 0 + r.EncodeMapStart(yynn1888) + yynn1888 = 0 } - if yyr1835 || yy2arr1835 { + if yyr1888 || yy2arr1888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1835[0] { + if yyq1888[0] { if x.LabelSelector == nil { r.EncodeNil() } else { - yym1837 := z.EncBinary() - _ = yym1837 + yym1890 := z.EncBinary() + _ = yym1890 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -24980,15 +25687,15 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1835[0] { + if yyq1888[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym1838 := z.EncBinary() - _ = yym1838 + yym1891 := z.EncBinary() + _ = yym1891 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -24997,13 +25704,13 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1835 || yy2arr1835 { + if yyr1888 || yy2arr1888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Namespaces == nil { r.EncodeNil() } else { - yym1840 := z.EncBinary() - _ = yym1840 + yym1893 := z.EncBinary() + _ = yym1893 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) @@ -25016,19 +25723,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.Namespaces == nil { r.EncodeNil() } else { - yym1841 := z.EncBinary() - _ = yym1841 + yym1894 := z.EncBinary() + _ = yym1894 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) } } } - if yyr1835 || yy2arr1835 { + if yyr1888 || yy2arr1888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1835[2] { - yym1843 := z.EncBinary() - _ = yym1843 + if yyq1888[2] { + yym1896 := z.EncBinary() + _ = yym1896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) @@ -25037,19 +25744,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1835[2] { + if yyq1888[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("topologyKey")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1844 := z.EncBinary() - _ = yym1844 + yym1897 := z.EncBinary() + _ = yym1897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) } } } - if yyr1835 || yy2arr1835 { + if yyr1888 || yy2arr1888 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25062,25 +25769,25 @@ func (x *PodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1845 := z.DecBinary() - _ = yym1845 + yym1898 := z.DecBinary() + _ = yym1898 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1846 := r.ContainerType() - if yyct1846 == codecSelferValueTypeMap1234 { - yyl1846 := r.ReadMapStart() - if yyl1846 == 0 { + yyct1899 := r.ContainerType() + if yyct1899 == codecSelferValueTypeMap1234 { + yyl1899 := r.ReadMapStart() + if yyl1899 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1846, d) + x.codecDecodeSelfFromMap(yyl1899, d) } - } else if yyct1846 == codecSelferValueTypeArray1234 { - yyl1846 := r.ReadArrayStart() - if yyl1846 == 0 { + } else if yyct1899 == codecSelferValueTypeArray1234 { + yyl1899 := r.ReadArrayStart() + if yyl1899 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1846, d) + x.codecDecodeSelfFromArray(yyl1899, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25092,12 +25799,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1847Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1847Slc - var yyhl1847 bool = l >= 0 - for yyj1847 := 0; ; yyj1847++ { - if yyhl1847 { - if yyj1847 >= l { + var yys1900Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1900Slc + var yyhl1900 bool = l >= 0 + for yyj1900 := 0; ; yyj1900++ { + if yyhl1900 { + if yyj1900 >= l { break } } else { @@ -25106,10 +25813,10 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1847Slc = r.DecodeBytes(yys1847Slc, true, true) - yys1847 := string(yys1847Slc) + yys1900Slc = r.DecodeBytes(yys1900Slc, true, true) + yys1900 := string(yys1900Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1847 { + switch yys1900 { case "labelSelector": if r.TryDecodeAsNil() { if x.LabelSelector != nil { @@ -25119,8 +25826,8 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1849 := z.DecBinary() - _ = yym1849 + yym1902 := z.DecBinary() + _ = yym1902 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { @@ -25131,12 +25838,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1850 := &x.Namespaces - yym1851 := z.DecBinary() - _ = yym1851 + yyv1903 := &x.Namespaces + yym1904 := z.DecBinary() + _ = yym1904 if false { } else { - z.F.DecSliceStringX(yyv1850, false, d) + z.F.DecSliceStringX(yyv1903, false, d) } } case "topologyKey": @@ -25146,9 +25853,9 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TopologyKey = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1847) - } // end switch yys1847 - } // end for yyj1847 + z.DecStructFieldNotFound(-1, yys1900) + } // end switch yys1900 + } // end for yyj1900 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25156,16 +25863,16 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1853 int - var yyb1853 bool - var yyhl1853 bool = l >= 0 - yyj1853++ - if yyhl1853 { - yyb1853 = yyj1853 > l + var yyj1906 int + var yyb1906 bool + var yyhl1906 bool = l >= 0 + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1853 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1853 { + if yyb1906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25178,21 +25885,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.LabelSelector == nil { x.LabelSelector = new(pkg2_unversioned.LabelSelector) } - yym1855 := z.DecBinary() - _ = yym1855 + yym1908 := z.DecBinary() + _ = yym1908 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { z.DecFallback(x.LabelSelector, false) } } - yyj1853++ - if yyhl1853 { - yyb1853 = yyj1853 > l + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1853 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1853 { + if yyb1906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25200,21 +25907,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1856 := &x.Namespaces - yym1857 := z.DecBinary() - _ = yym1857 + yyv1909 := &x.Namespaces + yym1910 := z.DecBinary() + _ = yym1910 if false { } else { - z.F.DecSliceStringX(yyv1856, false, d) + z.F.DecSliceStringX(yyv1909, false, d) } } - yyj1853++ - if yyhl1853 { - yyb1853 = yyj1853 > l + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1853 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1853 { + if yyb1906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25225,17 +25932,17 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TopologyKey = string(r.DecodeString()) } for { - yyj1853++ - if yyhl1853 { - yyb1853 = yyj1853 > l + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1853 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1853 { + if yyb1906 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1853-1, "") + z.DecStructFieldNotFound(yyj1906-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25247,34 +25954,34 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1859 := z.EncBinary() - _ = yym1859 + yym1912 := z.EncBinary() + _ = yym1912 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1860 := !z.EncBinary() - yy2arr1860 := z.EncBasicHandle().StructToArray - var yyq1860 [2]bool - _, _, _ = yysep1860, yyq1860, yy2arr1860 - const yyr1860 bool = false - yyq1860[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1860[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1860 int - if yyr1860 || yy2arr1860 { + yysep1913 := !z.EncBinary() + yy2arr1913 := z.EncBasicHandle().StructToArray + var yyq1913 [2]bool + _, _, _ = yysep1913, yyq1913, yy2arr1913 + const yyr1913 bool = false + yyq1913[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1913[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1913 int + if yyr1913 || yy2arr1913 { r.EncodeArrayStart(2) } else { - yynn1860 = 0 - for _, b := range yyq1860 { + yynn1913 = 0 + for _, b := range yyq1913 { if b { - yynn1860++ + yynn1913++ } } - r.EncodeMapStart(yynn1860) - yynn1860 = 0 + r.EncodeMapStart(yynn1913) + yynn1913 = 0 } - if yyr1860 || yy2arr1860 { + if yyr1913 || yy2arr1913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1860[0] { + if yyq1913[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { @@ -25284,7 +25991,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1860[0] { + if yyq1913[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -25295,14 +26002,14 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1860 || yy2arr1860 { + if yyr1913 || yy2arr1913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1860[1] { + if yyq1913[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1863 := z.EncBinary() - _ = yym1863 + yym1916 := z.EncBinary() + _ = yym1916 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25312,15 +26019,15 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1860[1] { + if yyq1913[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1864 := z.EncBinary() - _ = yym1864 + yym1917 := z.EncBinary() + _ = yym1917 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25328,7 +26035,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1860 || yy2arr1860 { + if yyr1913 || yy2arr1913 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25341,25 +26048,25 @@ func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1865 := z.DecBinary() - _ = yym1865 + yym1918 := z.DecBinary() + _ = yym1918 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1866 := r.ContainerType() - if yyct1866 == codecSelferValueTypeMap1234 { - yyl1866 := r.ReadMapStart() - if yyl1866 == 0 { + yyct1919 := r.ContainerType() + if yyct1919 == codecSelferValueTypeMap1234 { + yyl1919 := r.ReadMapStart() + if yyl1919 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1866, d) + x.codecDecodeSelfFromMap(yyl1919, d) } - } else if yyct1866 == codecSelferValueTypeArray1234 { - yyl1866 := r.ReadArrayStart() - if yyl1866 == 0 { + } else if yyct1919 == codecSelferValueTypeArray1234 { + yyl1919 := r.ReadArrayStart() + if yyl1919 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1866, d) + x.codecDecodeSelfFromArray(yyl1919, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25371,12 +26078,12 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1867Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1867Slc - var yyhl1867 bool = l >= 0 - for yyj1867 := 0; ; yyj1867++ { - if yyhl1867 { - if yyj1867 >= l { + var yys1920Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1920Slc + var yyhl1920 bool = l >= 0 + for yyj1920 := 0; ; yyj1920++ { + if yyhl1920 { + if yyj1920 >= l { break } } else { @@ -25385,10 +26092,10 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1867Slc = r.DecodeBytes(yys1867Slc, true, true) - yys1867 := string(yys1867Slc) + yys1920Slc = r.DecodeBytes(yys1920Slc, true, true) + yys1920 := string(yys1920Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1867 { + switch yys1920 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { @@ -25404,18 +26111,18 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1869 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1870 := z.DecBinary() - _ = yym1870 + yyv1922 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1923 := z.DecBinary() + _ = yym1923 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1869), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1922), d) } } default: - z.DecStructFieldNotFound(-1, yys1867) - } // end switch yys1867 - } // end for yyj1867 + z.DecStructFieldNotFound(-1, yys1920) + } // end switch yys1920 + } // end for yyj1920 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25423,16 +26130,16 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1871 int - var yyb1871 bool - var yyhl1871 bool = l >= 0 - yyj1871++ - if yyhl1871 { - yyb1871 = yyj1871 > l + var yyj1924 int + var yyb1924 bool + var yyhl1924 bool = l >= 0 + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1871 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1871 { + if yyb1924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25447,13 +26154,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) } - yyj1871++ - if yyhl1871 { - yyb1871 = yyj1871 > l + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1871 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1871 { + if yyb1924 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25461,26 +26168,26 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1873 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1874 := z.DecBinary() - _ = yym1874 + yyv1926 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1927 := z.DecBinary() + _ = yym1927 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1873), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1926), d) } } for { - yyj1871++ - if yyhl1871 { - yyb1871 = yyj1871 > l + yyj1924++ + if yyhl1924 { + yyb1924 = yyj1924 > l } else { - yyb1871 = r.CheckBreak() + yyb1924 = r.CheckBreak() } - if yyb1871 { + if yyb1924 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1871-1, "") + z.DecStructFieldNotFound(yyj1924-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25492,33 +26199,33 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1875 := z.EncBinary() - _ = yym1875 + yym1928 := z.EncBinary() + _ = yym1928 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1876 := !z.EncBinary() - yy2arr1876 := z.EncBasicHandle().StructToArray - var yyq1876 [2]bool - _, _, _ = yysep1876, yyq1876, yy2arr1876 - const yyr1876 bool = false - var yynn1876 int - if yyr1876 || yy2arr1876 { + yysep1929 := !z.EncBinary() + yy2arr1929 := z.EncBasicHandle().StructToArray + var yyq1929 [2]bool + _, _, _ = yysep1929, yyq1929, yy2arr1929 + const yyr1929 bool = false + var yynn1929 int + if yyr1929 || yy2arr1929 { r.EncodeArrayStart(2) } else { - yynn1876 = 2 - for _, b := range yyq1876 { + yynn1929 = 2 + for _, b := range yyq1929 { if b { - yynn1876++ + yynn1929++ } } - r.EncodeMapStart(yynn1876) - yynn1876 = 0 + r.EncodeMapStart(yynn1929) + yynn1929 = 0 } - if yyr1876 || yy2arr1876 { + if yyr1929 || yy2arr1929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1878 := z.EncBinary() - _ = yym1878 + yym1931 := z.EncBinary() + _ = yym1931 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -25527,25 +26234,25 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1879 := z.EncBinary() - _ = yym1879 + yym1932 := z.EncBinary() + _ = yym1932 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1876 || yy2arr1876 { + if yyr1929 || yy2arr1929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1881 := &x.Preference - yy1881.CodecEncodeSelf(e) + yy1934 := &x.Preference + yy1934.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1882 := &x.Preference - yy1882.CodecEncodeSelf(e) + yy1935 := &x.Preference + yy1935.CodecEncodeSelf(e) } - if yyr1876 || yy2arr1876 { + if yyr1929 || yy2arr1929 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25558,25 +26265,25 @@ func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1883 := z.DecBinary() - _ = yym1883 + yym1936 := z.DecBinary() + _ = yym1936 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1884 := r.ContainerType() - if yyct1884 == codecSelferValueTypeMap1234 { - yyl1884 := r.ReadMapStart() - if yyl1884 == 0 { + yyct1937 := r.ContainerType() + if yyct1937 == codecSelferValueTypeMap1234 { + yyl1937 := r.ReadMapStart() + if yyl1937 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1884, d) + x.codecDecodeSelfFromMap(yyl1937, d) } - } else if yyct1884 == codecSelferValueTypeArray1234 { - yyl1884 := r.ReadArrayStart() - if yyl1884 == 0 { + } else if yyct1937 == codecSelferValueTypeArray1234 { + yyl1937 := r.ReadArrayStart() + if yyl1937 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1884, d) + x.codecDecodeSelfFromArray(yyl1937, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25588,12 +26295,12 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1885Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1885Slc - var yyhl1885 bool = l >= 0 - for yyj1885 := 0; ; yyj1885++ { - if yyhl1885 { - if yyj1885 >= l { + var yys1938Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1938Slc + var yyhl1938 bool = l >= 0 + for yyj1938 := 0; ; yyj1938++ { + if yyhl1938 { + if yyj1938 >= l { break } } else { @@ -25602,10 +26309,10 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1885Slc = r.DecodeBytes(yys1885Slc, true, true) - yys1885 := string(yys1885Slc) + yys1938Slc = r.DecodeBytes(yys1938Slc, true, true) + yys1938 := string(yys1938Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1885 { + switch yys1938 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -25616,13 +26323,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1887 := &x.Preference - yyv1887.CodecDecodeSelf(d) + yyv1940 := &x.Preference + yyv1940.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1885) - } // end switch yys1885 - } // end for yyj1885 + z.DecStructFieldNotFound(-1, yys1938) + } // end switch yys1938 + } // end for yyj1938 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25630,16 +26337,16 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1888 int - var yyb1888 bool - var yyhl1888 bool = l >= 0 - yyj1888++ - if yyhl1888 { - yyb1888 = yyj1888 > l + var yyj1941 int + var yyb1941 bool + var yyhl1941 bool = l >= 0 + yyj1941++ + if yyhl1941 { + yyb1941 = yyj1941 > l } else { - yyb1888 = r.CheckBreak() + yyb1941 = r.CheckBreak() } - if yyb1888 { + if yyb1941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25649,13 +26356,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1888++ - if yyhl1888 { - yyb1888 = yyj1888 > l + yyj1941++ + if yyhl1941 { + yyb1941 = yyj1941 > l } else { - yyb1888 = r.CheckBreak() + yyb1941 = r.CheckBreak() } - if yyb1888 { + if yyb1941 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25663,21 +26370,21 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1890 := &x.Preference - yyv1890.CodecDecodeSelf(d) + yyv1943 := &x.Preference + yyv1943.CodecDecodeSelf(d) } for { - yyj1888++ - if yyhl1888 { - yyb1888 = yyj1888 > l + yyj1941++ + if yyhl1941 { + yyb1941 = yyj1941 > l } else { - yyb1888 = r.CheckBreak() + yyb1941 = r.CheckBreak() } - if yyb1888 { + if yyb1941 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1888-1, "") + z.DecStructFieldNotFound(yyj1941-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25689,34 +26396,34 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1891 := z.EncBinary() - _ = yym1891 + yym1944 := z.EncBinary() + _ = yym1944 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1892 := !z.EncBinary() - yy2arr1892 := z.EncBasicHandle().StructToArray - var yyq1892 [3]bool - _, _, _ = yysep1892, yyq1892, yy2arr1892 - const yyr1892 bool = false - yyq1892[1] = x.Value != "" - var yynn1892 int - if yyr1892 || yy2arr1892 { + yysep1945 := !z.EncBinary() + yy2arr1945 := z.EncBasicHandle().StructToArray + var yyq1945 [3]bool + _, _, _ = yysep1945, yyq1945, yy2arr1945 + const yyr1945 bool = false + yyq1945[1] = x.Value != "" + var yynn1945 int + if yyr1945 || yy2arr1945 { r.EncodeArrayStart(3) } else { - yynn1892 = 2 - for _, b := range yyq1892 { + yynn1945 = 2 + for _, b := range yyq1945 { if b { - yynn1892++ + yynn1945++ } } - r.EncodeMapStart(yynn1892) - yynn1892 = 0 + r.EncodeMapStart(yynn1945) + yynn1945 = 0 } - if yyr1892 || yy2arr1892 { + if yyr1945 || yy2arr1945 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1894 := z.EncBinary() - _ = yym1894 + yym1947 := z.EncBinary() + _ = yym1947 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -25725,18 +26432,18 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1895 := z.EncBinary() - _ = yym1895 + yym1948 := z.EncBinary() + _ = yym1948 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1892 || yy2arr1892 { + if yyr1945 || yy2arr1945 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1892[1] { - yym1897 := z.EncBinary() - _ = yym1897 + if yyq1945[1] { + yym1950 := z.EncBinary() + _ = yym1950 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -25745,19 +26452,19 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1892[1] { + if yyq1945[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1898 := z.EncBinary() - _ = yym1898 + yym1951 := z.EncBinary() + _ = yym1951 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1892 || yy2arr1892 { + if yyr1945 || yy2arr1945 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Effect.CodecEncodeSelf(e) } else { @@ -25766,7 +26473,7 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } - if yyr1892 || yy2arr1892 { + if yyr1945 || yy2arr1945 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25779,25 +26486,25 @@ func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1900 := z.DecBinary() - _ = yym1900 + yym1953 := z.DecBinary() + _ = yym1953 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1901 := r.ContainerType() - if yyct1901 == codecSelferValueTypeMap1234 { - yyl1901 := r.ReadMapStart() - if yyl1901 == 0 { + yyct1954 := r.ContainerType() + if yyct1954 == codecSelferValueTypeMap1234 { + yyl1954 := r.ReadMapStart() + if yyl1954 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1901, d) + x.codecDecodeSelfFromMap(yyl1954, d) } - } else if yyct1901 == codecSelferValueTypeArray1234 { - yyl1901 := r.ReadArrayStart() - if yyl1901 == 0 { + } else if yyct1954 == codecSelferValueTypeArray1234 { + yyl1954 := r.ReadArrayStart() + if yyl1954 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1901, d) + x.codecDecodeSelfFromArray(yyl1954, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25809,12 +26516,12 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1902Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1902Slc - var yyhl1902 bool = l >= 0 - for yyj1902 := 0; ; yyj1902++ { - if yyhl1902 { - if yyj1902 >= l { + var yys1955Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1955Slc + var yyhl1955 bool = l >= 0 + for yyj1955 := 0; ; yyj1955++ { + if yyhl1955 { + if yyj1955 >= l { break } } else { @@ -25823,10 +26530,10 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1902Slc = r.DecodeBytes(yys1902Slc, true, true) - yys1902 := string(yys1902Slc) + yys1955Slc = r.DecodeBytes(yys1955Slc, true, true) + yys1955 := string(yys1955Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1902 { + switch yys1955 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -25846,9 +26553,9 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1902) - } // end switch yys1902 - } // end for yyj1902 + z.DecStructFieldNotFound(-1, yys1955) + } // end switch yys1955 + } // end for yyj1955 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25856,16 +26563,16 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1906 int - var yyb1906 bool - var yyhl1906 bool = l >= 0 - yyj1906++ - if yyhl1906 { - yyb1906 = yyj1906 > l + var yyj1959 int + var yyb1959 bool + var yyhl1959 bool = l >= 0 + yyj1959++ + if yyhl1959 { + yyb1959 = yyj1959 > l } else { - yyb1906 = r.CheckBreak() + yyb1959 = r.CheckBreak() } - if yyb1906 { + if yyb1959 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25875,13 +26582,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1906++ - if yyhl1906 { - yyb1906 = yyj1906 > l + yyj1959++ + if yyhl1959 { + yyb1959 = yyj1959 > l } else { - yyb1906 = r.CheckBreak() + yyb1959 = r.CheckBreak() } - if yyb1906 { + if yyb1959 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25891,13 +26598,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1906++ - if yyhl1906 { - yyb1906 = yyj1906 > l + yyj1959++ + if yyhl1959 { + yyb1959 = yyj1959 > l } else { - yyb1906 = r.CheckBreak() + yyb1959 = r.CheckBreak() } - if yyb1906 { + if yyb1959 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25908,17 +26615,17 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1906++ - if yyhl1906 { - yyb1906 = yyj1906 > l + yyj1959++ + if yyhl1959 { + yyb1959 = yyj1959 > l } else { - yyb1906 = r.CheckBreak() + yyb1959 = r.CheckBreak() } - if yyb1906 { + if yyb1959 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1906-1, "") + z.DecStructFieldNotFound(yyj1959-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25927,8 +26634,8 @@ func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1910 := z.EncBinary() - _ = yym1910 + yym1963 := z.EncBinary() + _ = yym1963 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -25940,8 +26647,8 @@ func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1911 := z.DecBinary() - _ = yym1911 + yym1964 := z.DecBinary() + _ = yym1964 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -25956,38 +26663,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1912 := z.EncBinary() - _ = yym1912 + yym1965 := z.EncBinary() + _ = yym1965 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1913 := !z.EncBinary() - yy2arr1913 := z.EncBasicHandle().StructToArray - var yyq1913 [4]bool - _, _, _ = yysep1913, yyq1913, yy2arr1913 - const yyr1913 bool = false - yyq1913[0] = x.Key != "" - yyq1913[1] = x.Operator != "" - yyq1913[2] = x.Value != "" - yyq1913[3] = x.Effect != "" - var yynn1913 int - if yyr1913 || yy2arr1913 { + yysep1966 := !z.EncBinary() + yy2arr1966 := z.EncBasicHandle().StructToArray + var yyq1966 [4]bool + _, _, _ = yysep1966, yyq1966, yy2arr1966 + const yyr1966 bool = false + yyq1966[0] = x.Key != "" + yyq1966[1] = x.Operator != "" + yyq1966[2] = x.Value != "" + yyq1966[3] = x.Effect != "" + var yynn1966 int + if yyr1966 || yy2arr1966 { r.EncodeArrayStart(4) } else { - yynn1913 = 0 - for _, b := range yyq1913 { + yynn1966 = 0 + for _, b := range yyq1966 { if b { - yynn1913++ + yynn1966++ } } - r.EncodeMapStart(yynn1913) - yynn1913 = 0 + r.EncodeMapStart(yynn1966) + yynn1966 = 0 } - if yyr1913 || yy2arr1913 { + if yyr1966 || yy2arr1966 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1913[0] { - yym1915 := z.EncBinary() - _ = yym1915 + if yyq1966[0] { + yym1968 := z.EncBinary() + _ = yym1968 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -25996,38 +26703,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1913[0] { + if yyq1966[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1916 := z.EncBinary() - _ = yym1916 + yym1969 := z.EncBinary() + _ = yym1969 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } } - if yyr1913 || yy2arr1913 { + if yyr1966 || yy2arr1966 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1913[1] { + if yyq1966[1] { x.Operator.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1913[1] { + if yyq1966[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operator")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } } - if yyr1913 || yy2arr1913 { + if yyr1966 || yy2arr1966 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1913[2] { - yym1919 := z.EncBinary() - _ = yym1919 + if yyq1966[2] { + yym1972 := z.EncBinary() + _ = yym1972 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -26036,34 +26743,34 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1913[2] { + if yyq1966[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1920 := z.EncBinary() - _ = yym1920 + yym1973 := z.EncBinary() + _ = yym1973 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1913 || yy2arr1913 { + if yyr1966 || yy2arr1966 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1913[3] { + if yyq1966[3] { x.Effect.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1913[3] { + if yyq1966[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("effect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } } - if yyr1913 || yy2arr1913 { + if yyr1966 || yy2arr1966 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26076,25 +26783,25 @@ func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1922 := z.DecBinary() - _ = yym1922 + yym1975 := z.DecBinary() + _ = yym1975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1923 := r.ContainerType() - if yyct1923 == codecSelferValueTypeMap1234 { - yyl1923 := r.ReadMapStart() - if yyl1923 == 0 { + yyct1976 := r.ContainerType() + if yyct1976 == codecSelferValueTypeMap1234 { + yyl1976 := r.ReadMapStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1923, d) + x.codecDecodeSelfFromMap(yyl1976, d) } - } else if yyct1923 == codecSelferValueTypeArray1234 { - yyl1923 := r.ReadArrayStart() - if yyl1923 == 0 { + } else if yyct1976 == codecSelferValueTypeArray1234 { + yyl1976 := r.ReadArrayStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1923, d) + x.codecDecodeSelfFromArray(yyl1976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26106,12 +26813,12 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1924Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1924Slc - var yyhl1924 bool = l >= 0 - for yyj1924 := 0; ; yyj1924++ { - if yyhl1924 { - if yyj1924 >= 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 { @@ -26120,10 +26827,10 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1924Slc = r.DecodeBytes(yys1924Slc, true, true) - yys1924 := string(yys1924Slc) + yys1977Slc = r.DecodeBytes(yys1977Slc, true, true) + yys1977 := string(yys1977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1924 { + switch yys1977 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -26149,9 +26856,9 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1924) - } // end switch yys1924 - } // end for yyj1924 + z.DecStructFieldNotFound(-1, yys1977) + } // end switch yys1977 + } // end for yyj1977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26159,16 +26866,16 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1929 int - var yyb1929 bool - var yyhl1929 bool = l >= 0 - yyj1929++ - if yyhl1929 { - yyb1929 = yyj1929 > l + var yyj1982 int + var yyb1982 bool + var yyhl1982 bool = l >= 0 + yyj1982++ + if yyhl1982 { + yyb1982 = yyj1982 > l } else { - yyb1929 = r.CheckBreak() + yyb1982 = r.CheckBreak() } - if yyb1929 { + if yyb1982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26178,13 +26885,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1929++ - if yyhl1929 { - yyb1929 = yyj1929 > l + yyj1982++ + if yyhl1982 { + yyb1982 = yyj1982 > l } else { - yyb1929 = r.CheckBreak() + yyb1982 = r.CheckBreak() } - if yyb1929 { + if yyb1982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26194,13 +26901,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Operator = TolerationOperator(r.DecodeString()) } - yyj1929++ - if yyhl1929 { - yyb1929 = yyj1929 > l + yyj1982++ + if yyhl1982 { + yyb1982 = yyj1982 > l } else { - yyb1929 = r.CheckBreak() + yyb1982 = r.CheckBreak() } - if yyb1929 { + if yyb1982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26210,13 +26917,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1929++ - if yyhl1929 { - yyb1929 = yyj1929 > l + yyj1982++ + if yyhl1982 { + yyb1982 = yyj1982 > l } else { - yyb1929 = r.CheckBreak() + yyb1982 = r.CheckBreak() } - if yyb1929 { + if yyb1982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26227,17 +26934,17 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1929++ - if yyhl1929 { - yyb1929 = yyj1929 > l + yyj1982++ + if yyhl1982 { + yyb1982 = yyj1982 > l } else { - yyb1929 = r.CheckBreak() + yyb1982 = r.CheckBreak() } - if yyb1929 { + if yyb1982 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1929-1, "") + z.DecStructFieldNotFound(yyj1982-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26246,8 +26953,8 @@ func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1934 := z.EncBinary() - _ = yym1934 + yym1987 := z.EncBinary() + _ = yym1987 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -26259,8 +26966,8 @@ func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1935 := z.DecBinary() - _ = yym1935 + yym1988 := z.DecBinary() + _ = yym1988 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -26275,53 +26982,53 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1936 := z.EncBinary() - _ = yym1936 + yym1989 := z.EncBinary() + _ = yym1989 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1937 := !z.EncBinary() - yy2arr1937 := z.EncBasicHandle().StructToArray - var yyq1937 [17]bool - _, _, _ = yysep1937, yyq1937, yy2arr1937 - const yyr1937 bool = false - yyq1937[0] = len(x.Volumes) != 0 - yyq1937[2] = x.RestartPolicy != "" - yyq1937[3] = x.TerminationGracePeriodSeconds != nil - yyq1937[4] = x.ActiveDeadlineSeconds != nil - yyq1937[5] = x.DNSPolicy != "" - yyq1937[6] = len(x.NodeSelector) != 0 - yyq1937[7] = x.ServiceAccountName != "" - yyq1937[8] = x.DeprecatedServiceAccount != "" - yyq1937[9] = x.NodeName != "" - yyq1937[10] = x.HostNetwork != false - yyq1937[11] = x.HostPID != false - yyq1937[12] = x.HostIPC != false - yyq1937[13] = x.SecurityContext != nil - yyq1937[14] = len(x.ImagePullSecrets) != 0 - yyq1937[15] = x.Hostname != "" - yyq1937[16] = x.Subdomain != "" - var yynn1937 int - if yyr1937 || yy2arr1937 { + yysep1990 := !z.EncBinary() + yy2arr1990 := z.EncBasicHandle().StructToArray + var yyq1990 [17]bool + _, _, _ = yysep1990, yyq1990, yy2arr1990 + const yyr1990 bool = false + yyq1990[0] = len(x.Volumes) != 0 + yyq1990[2] = x.RestartPolicy != "" + yyq1990[3] = x.TerminationGracePeriodSeconds != nil + yyq1990[4] = x.ActiveDeadlineSeconds != nil + yyq1990[5] = x.DNSPolicy != "" + yyq1990[6] = len(x.NodeSelector) != 0 + yyq1990[7] = x.ServiceAccountName != "" + yyq1990[8] = x.DeprecatedServiceAccount != "" + yyq1990[9] = x.NodeName != "" + yyq1990[10] = x.HostNetwork != false + yyq1990[11] = x.HostPID != false + yyq1990[12] = x.HostIPC != false + yyq1990[13] = x.SecurityContext != nil + yyq1990[14] = len(x.ImagePullSecrets) != 0 + yyq1990[15] = x.Hostname != "" + yyq1990[16] = x.Subdomain != "" + var yynn1990 int + if yyr1990 || yy2arr1990 { r.EncodeArrayStart(17) } else { - yynn1937 = 1 - for _, b := range yyq1937 { + yynn1990 = 1 + for _, b := range yyq1990 { if b { - yynn1937++ + yynn1990++ } } - r.EncodeMapStart(yynn1937) - yynn1937 = 0 + r.EncodeMapStart(yynn1990) + yynn1990 = 0 } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[0] { + if yyq1990[0] { if x.Volumes == nil { r.EncodeNil() } else { - yym1939 := z.EncBinary() - _ = yym1939 + yym1992 := z.EncBinary() + _ = yym1992 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -26331,15 +27038,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1937[0] { + if yyq1990[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1940 := z.EncBinary() - _ = yym1940 + yym1993 := z.EncBinary() + _ = yym1993 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -26347,13 +27054,13 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1942 := z.EncBinary() - _ = yym1942 + yym1995 := z.EncBinary() + _ = yym1995 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -26366,122 +27073,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1943 := z.EncBinary() - _ = yym1943 + yym1996 := z.EncBinary() + _ = yym1996 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[2] { + if yyq1990[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[2] { + if yyq1990[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[3] { + if yyq1990[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1946 := *x.TerminationGracePeriodSeconds - yym1947 := z.EncBinary() - _ = yym1947 + yy1999 := *x.TerminationGracePeriodSeconds + yym2000 := z.EncBinary() + _ = yym2000 if false { } else { - r.EncodeInt(int64(yy1946)) + r.EncodeInt(int64(yy1999)) } } } else { r.EncodeNil() } } else { - if yyq1937[3] { + if yyq1990[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1948 := *x.TerminationGracePeriodSeconds - yym1949 := z.EncBinary() - _ = yym1949 + yy2001 := *x.TerminationGracePeriodSeconds + yym2002 := z.EncBinary() + _ = yym2002 if false { } else { - r.EncodeInt(int64(yy1948)) + r.EncodeInt(int64(yy2001)) } } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[4] { + if yyq1990[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1951 := *x.ActiveDeadlineSeconds - yym1952 := z.EncBinary() - _ = yym1952 + yy2004 := *x.ActiveDeadlineSeconds + yym2005 := z.EncBinary() + _ = yym2005 if false { } else { - r.EncodeInt(int64(yy1951)) + r.EncodeInt(int64(yy2004)) } } } else { r.EncodeNil() } } else { - if yyq1937[4] { + if yyq1990[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1953 := *x.ActiveDeadlineSeconds - yym1954 := z.EncBinary() - _ = yym1954 + yy2006 := *x.ActiveDeadlineSeconds + yym2007 := z.EncBinary() + _ = yym2007 if false { } else { - r.EncodeInt(int64(yy1953)) + r.EncodeInt(int64(yy2006)) } } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[5] { + if yyq1990[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[5] { + if yyq1990[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[6] { + if yyq1990[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1957 := z.EncBinary() - _ = yym1957 + yym2010 := z.EncBinary() + _ = yym2010 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -26491,15 +27198,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1937[6] { + if yyq1990[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1958 := z.EncBinary() - _ = yym1958 + yym2011 := z.EncBinary() + _ = yym2011 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -26507,11 +27214,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[7] { - yym1960 := z.EncBinary() - _ = yym1960 + if yyq1990[7] { + yym2013 := z.EncBinary() + _ = yym2013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -26520,23 +27227,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[7] { + if yyq1990[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1961 := z.EncBinary() - _ = yym1961 + yym2014 := z.EncBinary() + _ = yym2014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[8] { - yym1963 := z.EncBinary() - _ = yym1963 + if yyq1990[8] { + yym2016 := z.EncBinary() + _ = yym2016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) @@ -26545,23 +27252,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[8] { + if yyq1990[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1964 := z.EncBinary() - _ = yym1964 + yym2017 := z.EncBinary() + _ = yym2017 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[9] { - yym1966 := z.EncBinary() - _ = yym1966 + if yyq1990[9] { + yym2019 := z.EncBinary() + _ = yym2019 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -26570,23 +27277,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[9] { + if yyq1990[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1967 := z.EncBinary() - _ = yym1967 + yym2020 := z.EncBinary() + _ = yym2020 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[10] { - yym1969 := z.EncBinary() - _ = yym1969 + if yyq1990[10] { + yym2022 := z.EncBinary() + _ = yym2022 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -26595,23 +27302,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1937[10] { + if yyq1990[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1970 := z.EncBinary() - _ = yym1970 + yym2023 := z.EncBinary() + _ = yym2023 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[11] { - yym1972 := z.EncBinary() - _ = yym1972 + if yyq1990[11] { + yym2025 := z.EncBinary() + _ = yym2025 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -26620,23 +27327,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1937[11] { + if yyq1990[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1973 := z.EncBinary() - _ = yym1973 + yym2026 := z.EncBinary() + _ = yym2026 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[12] { - yym1975 := z.EncBinary() - _ = yym1975 + if yyq1990[12] { + yym2028 := z.EncBinary() + _ = yym2028 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -26645,21 +27352,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1937[12] { + if yyq1990[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1976 := z.EncBinary() - _ = yym1976 + yym2029 := z.EncBinary() + _ = yym2029 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[13] { + if yyq1990[13] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -26669,7 +27376,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1937[13] { + if yyq1990[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -26680,14 +27387,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[14] { + if yyq1990[14] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1979 := z.EncBinary() - _ = yym1979 + yym2032 := z.EncBinary() + _ = yym2032 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26697,15 +27404,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1937[14] { + if yyq1990[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1980 := z.EncBinary() - _ = yym1980 + yym2033 := z.EncBinary() + _ = yym2033 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26713,11 +27420,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[15] { - yym1982 := z.EncBinary() - _ = yym1982 + if yyq1990[15] { + yym2035 := z.EncBinary() + _ = yym2035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -26726,23 +27433,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[15] { + if yyq1990[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1983 := z.EncBinary() - _ = yym1983 + yym2036 := z.EncBinary() + _ = yym2036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1937[16] { - yym1985 := z.EncBinary() - _ = yym1985 + if yyq1990[16] { + yym2038 := z.EncBinary() + _ = yym2038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) @@ -26751,19 +27458,19 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1937[16] { + if yyq1990[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subdomain")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1986 := z.EncBinary() - _ = yym1986 + yym2039 := z.EncBinary() + _ = yym2039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) } } } - if yyr1937 || yy2arr1937 { + if yyr1990 || yy2arr1990 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26776,25 +27483,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1987 := z.DecBinary() - _ = yym1987 + yym2040 := z.DecBinary() + _ = yym2040 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1988 := r.ContainerType() - if yyct1988 == codecSelferValueTypeMap1234 { - yyl1988 := r.ReadMapStart() - if yyl1988 == 0 { + yyct2041 := r.ContainerType() + if yyct2041 == codecSelferValueTypeMap1234 { + yyl2041 := r.ReadMapStart() + if yyl2041 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1988, d) + x.codecDecodeSelfFromMap(yyl2041, d) } - } else if yyct1988 == codecSelferValueTypeArray1234 { - yyl1988 := r.ReadArrayStart() - if yyl1988 == 0 { + } else if yyct2041 == codecSelferValueTypeArray1234 { + yyl2041 := r.ReadArrayStart() + if yyl2041 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1988, d) + x.codecDecodeSelfFromArray(yyl2041, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26806,12 +27513,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1989Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1989Slc - var yyhl1989 bool = l >= 0 - for yyj1989 := 0; ; yyj1989++ { - if yyhl1989 { - if yyj1989 >= l { + var yys2042Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2042Slc + var yyhl2042 bool = l >= 0 + for yyj2042 := 0; ; yyj2042++ { + if yyhl2042 { + if yyj2042 >= l { break } } else { @@ -26820,32 +27527,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1989Slc = r.DecodeBytes(yys1989Slc, true, true) - yys1989 := string(yys1989Slc) + yys2042Slc = r.DecodeBytes(yys2042Slc, true, true) + yys2042 := string(yys2042Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1989 { + switch yys2042 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1990 := &x.Volumes - yym1991 := z.DecBinary() - _ = yym1991 + yyv2043 := &x.Volumes + yym2044 := z.DecBinary() + _ = yym2044 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1990), d) + h.decSliceVolume((*[]Volume)(yyv2043), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1992 := &x.Containers - yym1993 := z.DecBinary() - _ = yym1993 + yyv2045 := &x.Containers + yym2046 := z.DecBinary() + _ = yym2046 if false { } else { - h.decSliceContainer((*[]Container)(yyv1992), d) + h.decSliceContainer((*[]Container)(yyv2045), d) } } case "restartPolicy": @@ -26863,8 +27570,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1996 := z.DecBinary() - _ = yym1996 + yym2049 := z.DecBinary() + _ = yym2049 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -26879,8 +27586,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1998 := z.DecBinary() - _ = yym1998 + yym2051 := z.DecBinary() + _ = yym2051 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -26896,12 +27603,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2000 := &x.NodeSelector - yym2001 := z.DecBinary() - _ = yym2001 + yyv2053 := &x.NodeSelector + yym2054 := z.DecBinary() + _ = yym2054 if false { } else { - z.F.DecMapStringStringX(yyv2000, false, d) + z.F.DecMapStringStringX(yyv2053, false, d) } } case "serviceAccountName": @@ -26955,12 +27662,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2009 := &x.ImagePullSecrets - yym2010 := z.DecBinary() - _ = yym2010 + yyv2062 := &x.ImagePullSecrets + yym2063 := z.DecBinary() + _ = yym2063 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2009), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2062), d) } } case "hostname": @@ -26976,9 +27683,9 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1989) - } // end switch yys1989 - } // end for yyj1989 + z.DecStructFieldNotFound(-1, yys2042) + } // end switch yys2042 + } // end for yyj2042 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26986,16 +27693,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2013 int - var yyb2013 bool - var yyhl2013 bool = l >= 0 - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + var yyj2066 int + var yyb2066 bool + var yyhl2066 bool = l >= 0 + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27003,21 +27710,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2014 := &x.Volumes - yym2015 := z.DecBinary() - _ = yym2015 + yyv2067 := &x.Volumes + yym2068 := z.DecBinary() + _ = yym2068 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2014), d) + h.decSliceVolume((*[]Volume)(yyv2067), d) } } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27025,21 +27732,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2016 := &x.Containers - yym2017 := z.DecBinary() - _ = yym2017 + yyv2069 := &x.Containers + yym2070 := z.DecBinary() + _ = yym2070 if false { } else { - h.decSliceContainer((*[]Container)(yyv2016), d) + h.decSliceContainer((*[]Container)(yyv2069), d) } } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27049,13 +27756,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27068,20 +27775,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2020 := z.DecBinary() - _ = yym2020 + yym2073 := z.DecBinary() + _ = yym2073 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27094,20 +27801,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2022 := z.DecBinary() - _ = yym2022 + yym2075 := z.DecBinary() + _ = yym2075 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27117,13 +27824,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27131,21 +27838,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2024 := &x.NodeSelector - yym2025 := z.DecBinary() - _ = yym2025 + yyv2077 := &x.NodeSelector + yym2078 := z.DecBinary() + _ = yym2078 if false { } else { - z.F.DecMapStringStringX(yyv2024, false, d) + z.F.DecMapStringStringX(yyv2077, false, d) } } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27155,13 +27862,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27171,13 +27878,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27187,13 +27894,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27203,13 +27910,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27219,13 +27926,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27235,13 +27942,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27256,13 +27963,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27270,21 +27977,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2033 := &x.ImagePullSecrets - yym2034 := z.DecBinary() - _ = yym2034 + yyv2086 := &x.ImagePullSecrets + yym2087 := z.DecBinary() + _ = yym2087 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2033), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2086), d) } } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27294,13 +28001,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Hostname = string(r.DecodeString()) } - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27311,17 +28018,17 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Subdomain = string(r.DecodeString()) } for { - yyj2013++ - if yyhl2013 { - yyb2013 = yyj2013 > l + yyj2066++ + if yyhl2066 { + yyb2066 = yyj2066 > l } else { - yyb2013 = r.CheckBreak() + yyb2066 = r.CheckBreak() } - if yyb2013 { + if yyb2066 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2013-1, "") + z.DecStructFieldNotFound(yyj2066-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27333,37 +28040,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2037 := z.EncBinary() - _ = yym2037 + yym2090 := z.EncBinary() + _ = yym2090 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2038 := !z.EncBinary() - yy2arr2038 := z.EncBasicHandle().StructToArray - var yyq2038 [5]bool - _, _, _ = yysep2038, yyq2038, yy2arr2038 - const yyr2038 bool = false - yyq2038[0] = x.SELinuxOptions != nil - yyq2038[1] = x.RunAsUser != nil - yyq2038[2] = x.RunAsNonRoot != nil - yyq2038[3] = len(x.SupplementalGroups) != 0 - yyq2038[4] = x.FSGroup != nil - var yynn2038 int - if yyr2038 || yy2arr2038 { + yysep2091 := !z.EncBinary() + yy2arr2091 := z.EncBasicHandle().StructToArray + var yyq2091 [5]bool + _, _, _ = yysep2091, yyq2091, yy2arr2091 + const yyr2091 bool = false + yyq2091[0] = x.SELinuxOptions != nil + yyq2091[1] = x.RunAsUser != nil + yyq2091[2] = x.RunAsNonRoot != nil + yyq2091[3] = len(x.SupplementalGroups) != 0 + yyq2091[4] = x.FSGroup != nil + var yynn2091 int + if yyr2091 || yy2arr2091 { r.EncodeArrayStart(5) } else { - yynn2038 = 0 - for _, b := range yyq2038 { + yynn2091 = 0 + for _, b := range yyq2091 { if b { - yynn2038++ + yynn2091++ } } - r.EncodeMapStart(yynn2038) - yynn2038 = 0 + r.EncodeMapStart(yynn2091) + yynn2091 = 0 } - if yyr2038 || yy2arr2038 { + if yyr2091 || yy2arr2091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2038[0] { + if yyq2091[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -27373,7 +28080,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2038[0] { + if yyq2091[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -27384,84 +28091,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2038 || yy2arr2038 { + if yyr2091 || yy2arr2091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2038[1] { + if yyq2091[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy2041 := *x.RunAsUser - yym2042 := z.EncBinary() - _ = yym2042 + yy2094 := *x.RunAsUser + yym2095 := z.EncBinary() + _ = yym2095 if false { } else { - r.EncodeInt(int64(yy2041)) + r.EncodeInt(int64(yy2094)) } } } else { r.EncodeNil() } } else { - if yyq2038[1] { + if yyq2091[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy2043 := *x.RunAsUser - yym2044 := z.EncBinary() - _ = yym2044 + yy2096 := *x.RunAsUser + yym2097 := z.EncBinary() + _ = yym2097 if false { } else { - r.EncodeInt(int64(yy2043)) + r.EncodeInt(int64(yy2096)) } } } } - if yyr2038 || yy2arr2038 { + if yyr2091 || yy2arr2091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2038[2] { + if yyq2091[2] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2046 := *x.RunAsNonRoot - yym2047 := z.EncBinary() - _ = yym2047 + yy2099 := *x.RunAsNonRoot + yym2100 := z.EncBinary() + _ = yym2100 if false { } else { - r.EncodeBool(bool(yy2046)) + r.EncodeBool(bool(yy2099)) } } } else { r.EncodeNil() } } else { - if yyq2038[2] { + if yyq2091[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2048 := *x.RunAsNonRoot - yym2049 := z.EncBinary() - _ = yym2049 + yy2101 := *x.RunAsNonRoot + yym2102 := z.EncBinary() + _ = yym2102 if false { } else { - r.EncodeBool(bool(yy2048)) + r.EncodeBool(bool(yy2101)) } } } } - if yyr2038 || yy2arr2038 { + if yyr2091 || yy2arr2091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2038[3] { + if yyq2091[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2051 := z.EncBinary() - _ = yym2051 + yym2104 := z.EncBinary() + _ = yym2104 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -27471,15 +28178,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2038[3] { + if yyq2091[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2052 := z.EncBinary() - _ = yym2052 + yym2105 := z.EncBinary() + _ = yym2105 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -27487,42 +28194,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2038 || yy2arr2038 { + if yyr2091 || yy2arr2091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2038[4] { + if yyq2091[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy2054 := *x.FSGroup - yym2055 := z.EncBinary() - _ = yym2055 + yy2107 := *x.FSGroup + yym2108 := z.EncBinary() + _ = yym2108 if false { } else { - r.EncodeInt(int64(yy2054)) + r.EncodeInt(int64(yy2107)) } } } else { r.EncodeNil() } } else { - if yyq2038[4] { + if yyq2091[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy2056 := *x.FSGroup - yym2057 := z.EncBinary() - _ = yym2057 + yy2109 := *x.FSGroup + yym2110 := z.EncBinary() + _ = yym2110 if false { } else { - r.EncodeInt(int64(yy2056)) + r.EncodeInt(int64(yy2109)) } } } } - if yyr2038 || yy2arr2038 { + if yyr2091 || yy2arr2091 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27535,25 +28242,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2058 := z.DecBinary() - _ = yym2058 + yym2111 := z.DecBinary() + _ = yym2111 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2059 := r.ContainerType() - if yyct2059 == codecSelferValueTypeMap1234 { - yyl2059 := r.ReadMapStart() - if yyl2059 == 0 { + yyct2112 := r.ContainerType() + if yyct2112 == codecSelferValueTypeMap1234 { + yyl2112 := r.ReadMapStart() + if yyl2112 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2059, d) + x.codecDecodeSelfFromMap(yyl2112, d) } - } else if yyct2059 == codecSelferValueTypeArray1234 { - yyl2059 := r.ReadArrayStart() - if yyl2059 == 0 { + } else if yyct2112 == codecSelferValueTypeArray1234 { + yyl2112 := r.ReadArrayStart() + if yyl2112 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2059, d) + x.codecDecodeSelfFromArray(yyl2112, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27565,12 +28272,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2060Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2060Slc - var yyhl2060 bool = l >= 0 - for yyj2060 := 0; ; yyj2060++ { - if yyhl2060 { - if yyj2060 >= l { + var yys2113Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2113Slc + var yyhl2113 bool = l >= 0 + for yyj2113 := 0; ; yyj2113++ { + if yyhl2113 { + if yyj2113 >= l { break } } else { @@ -27579,10 +28286,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2060Slc = r.DecodeBytes(yys2060Slc, true, true) - yys2060 := string(yys2060Slc) + yys2113Slc = r.DecodeBytes(yys2113Slc, true, true) + yys2113 := string(yys2113Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2060 { + switch yys2113 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -27603,8 +28310,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2063 := z.DecBinary() - _ = yym2063 + yym2116 := z.DecBinary() + _ = yym2116 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -27619,8 +28326,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2065 := z.DecBinary() - _ = yym2065 + yym2118 := z.DecBinary() + _ = yym2118 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -27630,12 +28337,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2066 := &x.SupplementalGroups - yym2067 := z.DecBinary() - _ = yym2067 + yyv2119 := &x.SupplementalGroups + yym2120 := z.DecBinary() + _ = yym2120 if false { } else { - z.F.DecSliceInt64X(yyv2066, false, d) + z.F.DecSliceInt64X(yyv2119, false, d) } } case "fsGroup": @@ -27647,17 +28354,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2069 := z.DecBinary() - _ = yym2069 + yym2122 := z.DecBinary() + _ = yym2122 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2060) - } // end switch yys2060 - } // end for yyj2060 + z.DecStructFieldNotFound(-1, yys2113) + } // end switch yys2113 + } // end for yyj2113 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27665,16 +28372,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode 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 yyj2123 int + var yyb2123 bool + var yyhl2123 bool = l >= 0 + yyj2123++ + if yyhl2123 { + yyb2123 = yyj2123 > l } else { - yyb2070 = r.CheckBreak() + yyb2123 = r.CheckBreak() } - if yyb2070 { + if yyb2123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27689,13 +28396,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2123++ + if yyhl2123 { + yyb2123 = yyj2123 > l } else { - yyb2070 = r.CheckBreak() + yyb2123 = r.CheckBreak() } - if yyb2070 { + if yyb2123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27708,20 +28415,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2073 := z.DecBinary() - _ = yym2073 + yym2126 := z.DecBinary() + _ = yym2126 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2123++ + if yyhl2123 { + yyb2123 = yyj2123 > l } else { - yyb2070 = r.CheckBreak() + yyb2123 = r.CheckBreak() } - if yyb2070 { + if yyb2123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27734,20 +28441,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2075 := z.DecBinary() - _ = yym2075 + yym2128 := z.DecBinary() + _ = yym2128 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2123++ + if yyhl2123 { + yyb2123 = yyj2123 > l } else { - yyb2070 = r.CheckBreak() + yyb2123 = r.CheckBreak() } - if yyb2070 { + if yyb2123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27755,21 +28462,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2076 := &x.SupplementalGroups - yym2077 := z.DecBinary() - _ = yym2077 + yyv2129 := &x.SupplementalGroups + yym2130 := z.DecBinary() + _ = yym2130 if false { } else { - z.F.DecSliceInt64X(yyv2076, false, d) + z.F.DecSliceInt64X(yyv2129, false, d) } } - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2123++ + if yyhl2123 { + yyb2123 = yyj2123 > l } else { - yyb2070 = r.CheckBreak() + yyb2123 = r.CheckBreak() } - if yyb2070 { + if yyb2123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27782,25 +28489,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2079 := z.DecBinary() - _ = yym2079 + yym2132 := z.DecBinary() + _ = yym2132 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj2070++ - if yyhl2070 { - yyb2070 = yyj2070 > l + yyj2123++ + if yyhl2123 { + yyb2123 = yyj2123 > l } else { - yyb2070 = r.CheckBreak() + yyb2123 = r.CheckBreak() } - if yyb2070 { + if yyb2123 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2070-1, "") + z.DecStructFieldNotFound(yyj2123-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27812,60 +28519,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2080 := z.EncBinary() - _ = yym2080 + yym2133 := z.EncBinary() + _ = yym2133 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2081 := !z.EncBinary() - yy2arr2081 := z.EncBasicHandle().StructToArray - var yyq2081 [8]bool - _, _, _ = yysep2081, yyq2081, yy2arr2081 - const yyr2081 bool = false - yyq2081[0] = x.Phase != "" - yyq2081[1] = len(x.Conditions) != 0 - yyq2081[2] = x.Message != "" - yyq2081[3] = x.Reason != "" - yyq2081[4] = x.HostIP != "" - yyq2081[5] = x.PodIP != "" - yyq2081[6] = x.StartTime != nil - yyq2081[7] = len(x.ContainerStatuses) != 0 - var yynn2081 int - if yyr2081 || yy2arr2081 { + yysep2134 := !z.EncBinary() + yy2arr2134 := z.EncBasicHandle().StructToArray + var yyq2134 [8]bool + _, _, _ = yysep2134, yyq2134, yy2arr2134 + const yyr2134 bool = false + yyq2134[0] = x.Phase != "" + yyq2134[1] = len(x.Conditions) != 0 + yyq2134[2] = x.Message != "" + yyq2134[3] = x.Reason != "" + yyq2134[4] = x.HostIP != "" + yyq2134[5] = x.PodIP != "" + yyq2134[6] = x.StartTime != nil + yyq2134[7] = len(x.ContainerStatuses) != 0 + var yynn2134 int + if yyr2134 || yy2arr2134 { r.EncodeArrayStart(8) } else { - yynn2081 = 0 - for _, b := range yyq2081 { + yynn2134 = 0 + for _, b := range yyq2134 { if b { - yynn2081++ + yynn2134++ } } - r.EncodeMapStart(yynn2081) - yynn2081 = 0 + r.EncodeMapStart(yynn2134) + yynn2134 = 0 } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[0] { + if yyq2134[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2081[0] { + if yyq2134[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[1] { + if yyq2134[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym2084 := z.EncBinary() - _ = yym2084 + yym2137 := z.EncBinary() + _ = yym2137 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -27875,15 +28582,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2081[1] { + if yyq2134[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2085 := z.EncBinary() - _ = yym2085 + yym2138 := z.EncBinary() + _ = yym2138 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -27891,11 +28598,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[2] { - yym2087 := z.EncBinary() - _ = yym2087 + if yyq2134[2] { + yym2140 := z.EncBinary() + _ = yym2140 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -27904,23 +28611,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2081[2] { + if yyq2134[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2088 := z.EncBinary() - _ = yym2088 + yym2141 := z.EncBinary() + _ = yym2141 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[3] { - yym2090 := z.EncBinary() - _ = yym2090 + if yyq2134[3] { + yym2143 := z.EncBinary() + _ = yym2143 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -27929,23 +28636,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2081[3] { + if yyq2134[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2091 := z.EncBinary() - _ = yym2091 + yym2144 := z.EncBinary() + _ = yym2144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[4] { - yym2093 := z.EncBinary() - _ = yym2093 + if yyq2134[4] { + yym2146 := z.EncBinary() + _ = yym2146 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -27954,23 +28661,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2081[4] { + if yyq2134[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2094 := z.EncBinary() - _ = yym2094 + yym2147 := z.EncBinary() + _ = yym2147 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[5] { - yym2096 := z.EncBinary() - _ = yym2096 + if yyq2134[5] { + yym2149 := z.EncBinary() + _ = yym2149 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -27979,31 +28686,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2081[5] { + if yyq2134[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2097 := z.EncBinary() - _ = yym2097 + yym2150 := z.EncBinary() + _ = yym2150 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[6] { + if yyq2134[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym2099 := z.EncBinary() - _ = yym2099 + yym2152 := z.EncBinary() + _ = yym2152 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2099 { + } else if yym2152 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2099 && z.IsJSONHandle() { + } else if !yym2152 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -28013,20 +28720,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2081[6] { + if yyq2134[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym2100 := z.EncBinary() - _ = yym2100 + yym2153 := z.EncBinary() + _ = yym2153 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2100 { + } else if yym2153 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2100 && z.IsJSONHandle() { + } else if !yym2153 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -28034,14 +28741,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2081[7] { + if yyq2134[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2102 := z.EncBinary() - _ = yym2102 + yym2155 := z.EncBinary() + _ = yym2155 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -28051,15 +28758,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2081[7] { + if yyq2134[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2103 := z.EncBinary() - _ = yym2103 + yym2156 := z.EncBinary() + _ = yym2156 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -28067,7 +28774,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2081 || yy2arr2081 { + if yyr2134 || yy2arr2134 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28080,25 +28787,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2104 := z.DecBinary() - _ = yym2104 + yym2157 := z.DecBinary() + _ = yym2157 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2105 := r.ContainerType() - if yyct2105 == codecSelferValueTypeMap1234 { - yyl2105 := r.ReadMapStart() - if yyl2105 == 0 { + yyct2158 := r.ContainerType() + if yyct2158 == codecSelferValueTypeMap1234 { + yyl2158 := r.ReadMapStart() + if yyl2158 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2105, d) + x.codecDecodeSelfFromMap(yyl2158, d) } - } else if yyct2105 == codecSelferValueTypeArray1234 { - yyl2105 := r.ReadArrayStart() - if yyl2105 == 0 { + } else if yyct2158 == codecSelferValueTypeArray1234 { + yyl2158 := r.ReadArrayStart() + if yyl2158 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2105, d) + x.codecDecodeSelfFromArray(yyl2158, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28110,12 +28817,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2106Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2106Slc - var yyhl2106 bool = l >= 0 - for yyj2106 := 0; ; yyj2106++ { - if yyhl2106 { - if yyj2106 >= l { + var yys2159Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2159Slc + var yyhl2159 bool = l >= 0 + for yyj2159 := 0; ; yyj2159++ { + if yyhl2159 { + if yyj2159 >= l { break } } else { @@ -28124,10 +28831,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2106Slc = r.DecodeBytes(yys2106Slc, true, true) - yys2106 := string(yys2106Slc) + yys2159Slc = r.DecodeBytes(yys2159Slc, true, true) + yys2159 := string(yys2159Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2106 { + switch yys2159 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -28138,12 +28845,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2108 := &x.Conditions - yym2109 := z.DecBinary() - _ = yym2109 + yyv2161 := &x.Conditions + yym2162 := z.DecBinary() + _ = yym2162 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2108), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2161), d) } } case "message": @@ -28179,13 +28886,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2115 := z.DecBinary() - _ = yym2115 + yym2168 := z.DecBinary() + _ = yym2168 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2115 { + } else if yym2168 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2115 && z.IsJSONHandle() { + } else if !yym2168 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -28195,18 +28902,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2116 := &x.ContainerStatuses - yym2117 := z.DecBinary() - _ = yym2117 + yyv2169 := &x.ContainerStatuses + yym2170 := z.DecBinary() + _ = yym2170 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2116), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2169), d) } } default: - z.DecStructFieldNotFound(-1, yys2106) - } // end switch yys2106 - } // end for yyj2106 + z.DecStructFieldNotFound(-1, yys2159) + } // end switch yys2159 + } // end for yyj2159 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28214,16 +28921,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2118 int - var yyb2118 bool - var yyhl2118 bool = l >= 0 - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + var yyj2171 int + var yyb2171 bool + var yyhl2171 bool = l >= 0 + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28233,13 +28940,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28247,21 +28954,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2120 := &x.Conditions - yym2121 := z.DecBinary() - _ = yym2121 + yyv2173 := &x.Conditions + yym2174 := z.DecBinary() + _ = yym2174 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2120), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2173), d) } } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28271,13 +28978,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28287,13 +28994,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28303,13 +29010,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28319,13 +29026,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28338,25 +29045,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym2127 := z.DecBinary() - _ = yym2127 + yym2180 := z.DecBinary() + _ = yym2180 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2127 { + } else if yym2180 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2127 && z.IsJSONHandle() { + } else if !yym2180 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28364,26 +29071,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2128 := &x.ContainerStatuses - yym2129 := z.DecBinary() - _ = yym2129 + yyv2181 := &x.ContainerStatuses + yym2182 := z.DecBinary() + _ = yym2182 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2128), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2181), d) } } for { - yyj2118++ - if yyhl2118 { - yyb2118 = yyj2118 > l + yyj2171++ + if yyhl2171 { + yyb2171 = yyj2171 > l } else { - yyb2118 = r.CheckBreak() + yyb2171 = r.CheckBreak() } - if yyb2118 { + if yyb2171 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2118-1, "") + z.DecStructFieldNotFound(yyj2171-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28395,38 +29102,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2130 := z.EncBinary() - _ = yym2130 + yym2183 := z.EncBinary() + _ = yym2183 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2131 := !z.EncBinary() - yy2arr2131 := z.EncBasicHandle().StructToArray - var yyq2131 [4]bool - _, _, _ = yysep2131, yyq2131, yy2arr2131 - const yyr2131 bool = false - yyq2131[0] = x.Kind != "" - yyq2131[1] = x.APIVersion != "" - yyq2131[2] = true - yyq2131[3] = true - var yynn2131 int - if yyr2131 || yy2arr2131 { + yysep2184 := !z.EncBinary() + yy2arr2184 := z.EncBasicHandle().StructToArray + var yyq2184 [4]bool + _, _, _ = yysep2184, yyq2184, yy2arr2184 + const yyr2184 bool = false + yyq2184[0] = x.Kind != "" + yyq2184[1] = x.APIVersion != "" + yyq2184[2] = true + yyq2184[3] = true + var yynn2184 int + if yyr2184 || yy2arr2184 { r.EncodeArrayStart(4) } else { - yynn2131 = 0 - for _, b := range yyq2131 { + yynn2184 = 0 + for _, b := range yyq2184 { if b { - yynn2131++ + yynn2184++ } } - r.EncodeMapStart(yynn2131) - yynn2131 = 0 + r.EncodeMapStart(yynn2184) + yynn2184 = 0 } - if yyr2131 || yy2arr2131 { + if yyr2184 || yy2arr2184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2131[0] { - yym2133 := z.EncBinary() - _ = yym2133 + if yyq2184[0] { + yym2186 := z.EncBinary() + _ = yym2186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28435,23 +29142,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2131[0] { + if yyq2184[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2134 := z.EncBinary() - _ = yym2134 + yym2187 := z.EncBinary() + _ = yym2187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2131 || yy2arr2131 { + if yyr2184 || yy2arr2184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2131[1] { - yym2136 := z.EncBinary() - _ = yym2136 + if yyq2184[1] { + yym2189 := z.EncBinary() + _ = yym2189 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28460,53 +29167,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2131[1] { + if yyq2184[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2137 := z.EncBinary() - _ = yym2137 + yym2190 := z.EncBinary() + _ = yym2190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2131 || yy2arr2131 { + if yyr2184 || yy2arr2184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2131[2] { - yy2139 := &x.ObjectMeta - yy2139.CodecEncodeSelf(e) + if yyq2184[2] { + yy2192 := &x.ObjectMeta + yy2192.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2131[2] { + if yyq2184[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2140 := &x.ObjectMeta - yy2140.CodecEncodeSelf(e) + yy2193 := &x.ObjectMeta + yy2193.CodecEncodeSelf(e) } } - if yyr2131 || yy2arr2131 { + if yyr2184 || yy2arr2184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2131[3] { - yy2142 := &x.Status - yy2142.CodecEncodeSelf(e) + if yyq2184[3] { + yy2195 := &x.Status + yy2195.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2131[3] { + if yyq2184[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2143 := &x.Status - yy2143.CodecEncodeSelf(e) + yy2196 := &x.Status + yy2196.CodecEncodeSelf(e) } } - if yyr2131 || yy2arr2131 { + if yyr2184 || yy2arr2184 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28519,25 +29226,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2144 := z.DecBinary() - _ = yym2144 + yym2197 := z.DecBinary() + _ = yym2197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2145 := r.ContainerType() - if yyct2145 == codecSelferValueTypeMap1234 { - yyl2145 := r.ReadMapStart() - if yyl2145 == 0 { + yyct2198 := r.ContainerType() + if yyct2198 == codecSelferValueTypeMap1234 { + yyl2198 := r.ReadMapStart() + if yyl2198 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2145, d) + x.codecDecodeSelfFromMap(yyl2198, d) } - } else if yyct2145 == codecSelferValueTypeArray1234 { - yyl2145 := r.ReadArrayStart() - if yyl2145 == 0 { + } else if yyct2198 == codecSelferValueTypeArray1234 { + yyl2198 := r.ReadArrayStart() + if yyl2198 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2145, d) + x.codecDecodeSelfFromArray(yyl2198, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28549,12 +29256,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2146Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2146Slc - var yyhl2146 bool = l >= 0 - for yyj2146 := 0; ; yyj2146++ { - if yyhl2146 { - if yyj2146 >= l { + var yys2199Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2199Slc + var yyhl2199 bool = l >= 0 + for yyj2199 := 0; ; yyj2199++ { + if yyhl2199 { + if yyj2199 >= l { break } } else { @@ -28563,10 +29270,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2146Slc = r.DecodeBytes(yys2146Slc, true, true) - yys2146 := string(yys2146Slc) + yys2199Slc = r.DecodeBytes(yys2199Slc, true, true) + yys2199 := string(yys2199Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2146 { + switch yys2199 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28583,20 +29290,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2149 := &x.ObjectMeta - yyv2149.CodecDecodeSelf(d) + yyv2202 := &x.ObjectMeta + yyv2202.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2150 := &x.Status - yyv2150.CodecDecodeSelf(d) + yyv2203 := &x.Status + yyv2203.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2146) - } // end switch yys2146 - } // end for yyj2146 + z.DecStructFieldNotFound(-1, yys2199) + } // end switch yys2199 + } // end for yyj2199 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28604,16 +29311,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2151 int - var yyb2151 bool - var yyhl2151 bool = l >= 0 - yyj2151++ - if yyhl2151 { - yyb2151 = yyj2151 > l + var yyj2204 int + var yyb2204 bool + var yyhl2204 bool = l >= 0 + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2151 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2151 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28623,13 +29330,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2151++ - if yyhl2151 { - yyb2151 = yyj2151 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2151 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2151 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28639,13 +29346,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2151++ - if yyhl2151 { - yyb2151 = yyj2151 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2151 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2151 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28653,16 +29360,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2154 := &x.ObjectMeta - yyv2154.CodecDecodeSelf(d) + yyv2207 := &x.ObjectMeta + yyv2207.CodecDecodeSelf(d) } - yyj2151++ - if yyhl2151 { - yyb2151 = yyj2151 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2151 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2151 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28670,21 +29377,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2155 := &x.Status - yyv2155.CodecDecodeSelf(d) + yyv2208 := &x.Status + yyv2208.CodecDecodeSelf(d) } for { - yyj2151++ - if yyhl2151 { - yyb2151 = yyj2151 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2151 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2151 { + if yyb2204 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2151-1, "") + z.DecStructFieldNotFound(yyj2204-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28696,39 +29403,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2156 := z.EncBinary() - _ = yym2156 + yym2209 := z.EncBinary() + _ = yym2209 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2157 := !z.EncBinary() - yy2arr2157 := z.EncBasicHandle().StructToArray - var yyq2157 [5]bool - _, _, _ = yysep2157, yyq2157, yy2arr2157 - const yyr2157 bool = false - yyq2157[0] = x.Kind != "" - yyq2157[1] = x.APIVersion != "" - yyq2157[2] = true - yyq2157[3] = true - yyq2157[4] = true - var yynn2157 int - if yyr2157 || yy2arr2157 { + yysep2210 := !z.EncBinary() + yy2arr2210 := z.EncBasicHandle().StructToArray + var yyq2210 [5]bool + _, _, _ = yysep2210, yyq2210, yy2arr2210 + const yyr2210 bool = false + yyq2210[0] = x.Kind != "" + yyq2210[1] = x.APIVersion != "" + yyq2210[2] = true + yyq2210[3] = true + yyq2210[4] = true + var yynn2210 int + if yyr2210 || yy2arr2210 { r.EncodeArrayStart(5) } else { - yynn2157 = 0 - for _, b := range yyq2157 { + yynn2210 = 0 + for _, b := range yyq2210 { if b { - yynn2157++ + yynn2210++ } } - r.EncodeMapStart(yynn2157) - yynn2157 = 0 + r.EncodeMapStart(yynn2210) + yynn2210 = 0 } - if yyr2157 || yy2arr2157 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[0] { - yym2159 := z.EncBinary() - _ = yym2159 + if yyq2210[0] { + yym2212 := z.EncBinary() + _ = yym2212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28737,23 +29444,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2157[0] { + if yyq2210[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2160 := z.EncBinary() - _ = yym2160 + yym2213 := z.EncBinary() + _ = yym2213 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2157 || yy2arr2157 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[1] { - yym2162 := z.EncBinary() - _ = yym2162 + if yyq2210[1] { + yym2215 := z.EncBinary() + _ = yym2215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28762,70 +29469,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2157[1] { + if yyq2210[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2163 := z.EncBinary() - _ = yym2163 + yym2216 := z.EncBinary() + _ = yym2216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2157 || yy2arr2157 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[2] { - yy2165 := &x.ObjectMeta - yy2165.CodecEncodeSelf(e) + if yyq2210[2] { + yy2218 := &x.ObjectMeta + yy2218.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2157[2] { + if yyq2210[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2166 := &x.ObjectMeta - yy2166.CodecEncodeSelf(e) + yy2219 := &x.ObjectMeta + yy2219.CodecEncodeSelf(e) } } - if yyr2157 || yy2arr2157 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[3] { - yy2168 := &x.Spec - yy2168.CodecEncodeSelf(e) + if yyq2210[3] { + yy2221 := &x.Spec + yy2221.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2157[3] { + if yyq2210[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2169 := &x.Spec - yy2169.CodecEncodeSelf(e) + yy2222 := &x.Spec + yy2222.CodecEncodeSelf(e) } } - if yyr2157 || yy2arr2157 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2157[4] { - yy2171 := &x.Status - yy2171.CodecEncodeSelf(e) + if yyq2210[4] { + yy2224 := &x.Status + yy2224.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2157[4] { + if yyq2210[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2172 := &x.Status - yy2172.CodecEncodeSelf(e) + yy2225 := &x.Status + yy2225.CodecEncodeSelf(e) } } - if yyr2157 || yy2arr2157 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28838,25 +29545,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2173 := z.DecBinary() - _ = yym2173 + yym2226 := z.DecBinary() + _ = yym2226 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2174 := r.ContainerType() - if yyct2174 == codecSelferValueTypeMap1234 { - yyl2174 := r.ReadMapStart() - if yyl2174 == 0 { + yyct2227 := r.ContainerType() + if yyct2227 == codecSelferValueTypeMap1234 { + yyl2227 := r.ReadMapStart() + if yyl2227 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2174, d) + x.codecDecodeSelfFromMap(yyl2227, d) } - } else if yyct2174 == codecSelferValueTypeArray1234 { - yyl2174 := r.ReadArrayStart() - if yyl2174 == 0 { + } else if yyct2227 == codecSelferValueTypeArray1234 { + yyl2227 := r.ReadArrayStart() + if yyl2227 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2174, d) + x.codecDecodeSelfFromArray(yyl2227, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28868,12 +29575,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2175Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2175Slc - var yyhl2175 bool = l >= 0 - for yyj2175 := 0; ; yyj2175++ { - if yyhl2175 { - if yyj2175 >= l { + var yys2228Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2228Slc + var yyhl2228 bool = l >= 0 + for yyj2228 := 0; ; yyj2228++ { + if yyhl2228 { + if yyj2228 >= l { break } } else { @@ -28882,10 +29589,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2175Slc = r.DecodeBytes(yys2175Slc, true, true) - yys2175 := string(yys2175Slc) + yys2228Slc = r.DecodeBytes(yys2228Slc, true, true) + yys2228 := string(yys2228Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2175 { + switch yys2228 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28902,27 +29609,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2178 := &x.ObjectMeta - yyv2178.CodecDecodeSelf(d) + yyv2231 := &x.ObjectMeta + yyv2231.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2179 := &x.Spec - yyv2179.CodecDecodeSelf(d) + yyv2232 := &x.Spec + yyv2232.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2180 := &x.Status - yyv2180.CodecDecodeSelf(d) + yyv2233 := &x.Status + yyv2233.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2175) - } // end switch yys2175 - } // end for yyj2175 + z.DecStructFieldNotFound(-1, yys2228) + } // end switch yys2228 + } // end for yyj2228 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28930,16 +29637,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2181 int - var yyb2181 bool - var yyhl2181 bool = l >= 0 - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + var yyj2234 int + var yyb2234 bool + var yyhl2234 bool = l >= 0 + yyj2234++ + if yyhl2234 { + yyb2234 = yyj2234 > l } else { - yyb2181 = r.CheckBreak() + yyb2234 = r.CheckBreak() } - if yyb2181 { + if yyb2234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28949,13 +29656,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2234++ + if yyhl2234 { + yyb2234 = yyj2234 > l } else { - yyb2181 = r.CheckBreak() + yyb2234 = r.CheckBreak() } - if yyb2181 { + if yyb2234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28965,13 +29672,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2234++ + if yyhl2234 { + yyb2234 = yyj2234 > l } else { - yyb2181 = r.CheckBreak() + yyb2234 = r.CheckBreak() } - if yyb2181 { + if yyb2234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28979,16 +29686,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2184 := &x.ObjectMeta - yyv2184.CodecDecodeSelf(d) + yyv2237 := &x.ObjectMeta + yyv2237.CodecDecodeSelf(d) } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2234++ + if yyhl2234 { + yyb2234 = yyj2234 > l } else { - yyb2181 = r.CheckBreak() + yyb2234 = r.CheckBreak() } - if yyb2181 { + if yyb2234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28996,16 +29703,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2185 := &x.Spec - yyv2185.CodecDecodeSelf(d) + yyv2238 := &x.Spec + yyv2238.CodecDecodeSelf(d) } - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2234++ + if yyhl2234 { + yyb2234 = yyj2234 > l } else { - yyb2181 = r.CheckBreak() + yyb2234 = r.CheckBreak() } - if yyb2181 { + if yyb2234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29013,21 +29720,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2186 := &x.Status - yyv2186.CodecDecodeSelf(d) + yyv2239 := &x.Status + yyv2239.CodecDecodeSelf(d) } for { - yyj2181++ - if yyhl2181 { - yyb2181 = yyj2181 > l + yyj2234++ + if yyhl2234 { + yyb2234 = yyj2234 > l } else { - yyb2181 = r.CheckBreak() + yyb2234 = r.CheckBreak() } - if yyb2181 { + if yyb2234 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2181-1, "") + z.DecStructFieldNotFound(yyj2234-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29039,37 +29746,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2187 := z.EncBinary() - _ = yym2187 + yym2240 := z.EncBinary() + _ = yym2240 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 - var yynn2188 int - if yyr2188 || yy2arr2188 { + yysep2241 := !z.EncBinary() + yy2arr2241 := z.EncBasicHandle().StructToArray + var yyq2241 [4]bool + _, _, _ = yysep2241, yyq2241, yy2arr2241 + const yyr2241 bool = false + yyq2241[0] = x.Kind != "" + yyq2241[1] = x.APIVersion != "" + yyq2241[2] = true + var yynn2241 int + if yyr2241 || yy2arr2241 { r.EncodeArrayStart(4) } else { - yynn2188 = 1 - for _, b := range yyq2188 { + yynn2241 = 1 + for _, b := range yyq2241 { if b { - yynn2188++ + yynn2241++ } } - r.EncodeMapStart(yynn2188) - yynn2188 = 0 + r.EncodeMapStart(yynn2241) + yynn2241 = 0 } - if yyr2188 || yy2arr2188 { + if yyr2241 || yy2arr2241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[0] { - yym2190 := z.EncBinary() - _ = yym2190 + if yyq2241[0] { + yym2243 := z.EncBinary() + _ = yym2243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29078,23 +29785,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2188[0] { + if yyq2241[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2191 := z.EncBinary() - _ = yym2191 + yym2244 := z.EncBinary() + _ = yym2244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2188 || yy2arr2188 { + if yyr2241 || yy2arr2241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[1] { - yym2193 := z.EncBinary() - _ = yym2193 + if yyq2241[1] { + yym2246 := z.EncBinary() + _ = yym2246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29103,54 +29810,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2188[1] { + if yyq2241[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2194 := z.EncBinary() - _ = yym2194 + yym2247 := z.EncBinary() + _ = yym2247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2188 || yy2arr2188 { + if yyr2241 || yy2arr2241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2188[2] { - yy2196 := &x.ListMeta - yym2197 := z.EncBinary() - _ = yym2197 + if yyq2241[2] { + yy2249 := &x.ListMeta + yym2250 := z.EncBinary() + _ = yym2250 if false { - } else if z.HasExtensions() && z.EncExt(yy2196) { + } else if z.HasExtensions() && z.EncExt(yy2249) { } else { - z.EncFallback(yy2196) + z.EncFallback(yy2249) } } else { r.EncodeNil() } } else { - if yyq2188[2] { + if yyq2241[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2198 := &x.ListMeta - yym2199 := z.EncBinary() - _ = yym2199 + yy2251 := &x.ListMeta + yym2252 := z.EncBinary() + _ = yym2252 if false { - } else if z.HasExtensions() && z.EncExt(yy2198) { + } else if z.HasExtensions() && z.EncExt(yy2251) { } else { - z.EncFallback(yy2198) + z.EncFallback(yy2251) } } } - if yyr2188 || yy2arr2188 { + if yyr2241 || yy2arr2241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2201 := z.EncBinary() - _ = yym2201 + yym2254 := z.EncBinary() + _ = yym2254 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -29163,15 +29870,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2202 := z.EncBinary() - _ = yym2202 + yym2255 := z.EncBinary() + _ = yym2255 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr2188 || yy2arr2188 { + if yyr2241 || yy2arr2241 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29184,25 +29891,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2203 := z.DecBinary() - _ = yym2203 + yym2256 := z.DecBinary() + _ = yym2256 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2204 := r.ContainerType() - if yyct2204 == codecSelferValueTypeMap1234 { - yyl2204 := r.ReadMapStart() - if yyl2204 == 0 { + yyct2257 := r.ContainerType() + if yyct2257 == codecSelferValueTypeMap1234 { + yyl2257 := r.ReadMapStart() + if yyl2257 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2204, d) + x.codecDecodeSelfFromMap(yyl2257, d) } - } else if yyct2204 == codecSelferValueTypeArray1234 { - yyl2204 := r.ReadArrayStart() - if yyl2204 == 0 { + } else if yyct2257 == codecSelferValueTypeArray1234 { + yyl2257 := r.ReadArrayStart() + if yyl2257 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2204, d) + x.codecDecodeSelfFromArray(yyl2257, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29214,12 +29921,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2205Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2205Slc - var yyhl2205 bool = l >= 0 - for yyj2205 := 0; ; yyj2205++ { - if yyhl2205 { - if yyj2205 >= l { + var yys2258Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2258Slc + var yyhl2258 bool = l >= 0 + for yyj2258 := 0; ; yyj2258++ { + if yyhl2258 { + if yyj2258 >= l { break } } else { @@ -29228,10 +29935,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2205Slc = r.DecodeBytes(yys2205Slc, true, true) - yys2205 := string(yys2205Slc) + yys2258Slc = r.DecodeBytes(yys2258Slc, true, true) + yys2258 := string(yys2258Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2205 { + switch yys2258 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29248,31 +29955,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2208 := &x.ListMeta - yym2209 := z.DecBinary() - _ = yym2209 + yyv2261 := &x.ListMeta + yym2262 := z.DecBinary() + _ = yym2262 if false { - } else if z.HasExtensions() && z.DecExt(yyv2208) { + } else if z.HasExtensions() && z.DecExt(yyv2261) { } else { - z.DecFallback(yyv2208, false) + z.DecFallback(yyv2261, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2210 := &x.Items - yym2211 := z.DecBinary() - _ = yym2211 + yyv2263 := &x.Items + yym2264 := z.DecBinary() + _ = yym2264 if false { } else { - h.decSlicePod((*[]Pod)(yyv2210), d) + h.decSlicePod((*[]Pod)(yyv2263), d) } } default: - z.DecStructFieldNotFound(-1, yys2205) - } // end switch yys2205 - } // end for yyj2205 + z.DecStructFieldNotFound(-1, yys2258) + } // end switch yys2258 + } // end for yyj2258 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29280,16 +29987,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2212 int - var yyb2212 bool - var yyhl2212 bool = l >= 0 - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + var yyj2265 int + var yyb2265 bool + var yyhl2265 bool = l >= 0 + yyj2265++ + if yyhl2265 { + yyb2265 = yyj2265 > l } else { - yyb2212 = r.CheckBreak() + yyb2265 = r.CheckBreak() } - if yyb2212 { + if yyb2265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29299,13 +30006,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2265++ + if yyhl2265 { + yyb2265 = yyj2265 > l } else { - yyb2212 = r.CheckBreak() + yyb2265 = r.CheckBreak() } - if yyb2212 { + if yyb2265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29315,13 +30022,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2265++ + if yyhl2265 { + yyb2265 = yyj2265 > l } else { - yyb2212 = r.CheckBreak() + yyb2265 = r.CheckBreak() } - if yyb2212 { + if yyb2265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29329,22 +30036,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2215 := &x.ListMeta - yym2216 := z.DecBinary() - _ = yym2216 + yyv2268 := &x.ListMeta + yym2269 := z.DecBinary() + _ = yym2269 if false { - } else if z.HasExtensions() && z.DecExt(yyv2215) { + } else if z.HasExtensions() && z.DecExt(yyv2268) { } else { - z.DecFallback(yyv2215, false) + z.DecFallback(yyv2268, false) } } - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2265++ + if yyhl2265 { + yyb2265 = yyj2265 > l } else { - yyb2212 = r.CheckBreak() + yyb2265 = r.CheckBreak() } - if yyb2212 { + if yyb2265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29352,26 +30059,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2217 := &x.Items - yym2218 := z.DecBinary() - _ = yym2218 + yyv2270 := &x.Items + yym2271 := z.DecBinary() + _ = yym2271 if false { } else { - h.decSlicePod((*[]Pod)(yyv2217), d) + h.decSlicePod((*[]Pod)(yyv2270), d) } } for { - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2265++ + if yyhl2265 { + yyb2265 = yyj2265 > l } else { - yyb2212 = r.CheckBreak() + yyb2265 = r.CheckBreak() } - if yyb2212 { + if yyb2265 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2212-1, "") + z.DecStructFieldNotFound(yyj2265-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29383,66 +30090,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2219 := z.EncBinary() - _ = yym2219 + yym2272 := z.EncBinary() + _ = yym2272 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2220 := !z.EncBinary() - yy2arr2220 := z.EncBasicHandle().StructToArray - var yyq2220 [2]bool - _, _, _ = yysep2220, yyq2220, yy2arr2220 - const yyr2220 bool = false - yyq2220[0] = true - yyq2220[1] = true - var yynn2220 int - if yyr2220 || yy2arr2220 { + yysep2273 := !z.EncBinary() + yy2arr2273 := z.EncBasicHandle().StructToArray + var yyq2273 [2]bool + _, _, _ = yysep2273, yyq2273, yy2arr2273 + const yyr2273 bool = false + yyq2273[0] = true + yyq2273[1] = true + var yynn2273 int + if yyr2273 || yy2arr2273 { r.EncodeArrayStart(2) } else { - yynn2220 = 0 - for _, b := range yyq2220 { + yynn2273 = 0 + for _, b := range yyq2273 { if b { - yynn2220++ + yynn2273++ } } - r.EncodeMapStart(yynn2220) - yynn2220 = 0 + r.EncodeMapStart(yynn2273) + yynn2273 = 0 } - if yyr2220 || yy2arr2220 { + if yyr2273 || yy2arr2273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2220[0] { - yy2222 := &x.ObjectMeta - yy2222.CodecEncodeSelf(e) + if yyq2273[0] { + yy2275 := &x.ObjectMeta + yy2275.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2220[0] { + if yyq2273[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2223 := &x.ObjectMeta - yy2223.CodecEncodeSelf(e) + yy2276 := &x.ObjectMeta + yy2276.CodecEncodeSelf(e) } } - if yyr2220 || yy2arr2220 { + if yyr2273 || yy2arr2273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2220[1] { - yy2225 := &x.Spec - yy2225.CodecEncodeSelf(e) + if yyq2273[1] { + yy2278 := &x.Spec + yy2278.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2220[1] { + if yyq2273[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2226 := &x.Spec - yy2226.CodecEncodeSelf(e) + yy2279 := &x.Spec + yy2279.CodecEncodeSelf(e) } } - if yyr2220 || yy2arr2220 { + if yyr2273 || yy2arr2273 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29455,25 +30162,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2227 := z.DecBinary() - _ = yym2227 + yym2280 := z.DecBinary() + _ = yym2280 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2228 := r.ContainerType() - if yyct2228 == codecSelferValueTypeMap1234 { - yyl2228 := r.ReadMapStart() - if yyl2228 == 0 { + yyct2281 := r.ContainerType() + if yyct2281 == codecSelferValueTypeMap1234 { + yyl2281 := r.ReadMapStart() + if yyl2281 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2228, d) + x.codecDecodeSelfFromMap(yyl2281, d) } - } else if yyct2228 == codecSelferValueTypeArray1234 { - yyl2228 := r.ReadArrayStart() - if yyl2228 == 0 { + } else if yyct2281 == codecSelferValueTypeArray1234 { + yyl2281 := r.ReadArrayStart() + if yyl2281 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2228, d) + x.codecDecodeSelfFromArray(yyl2281, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29485,12 +30192,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2229Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2229Slc - var yyhl2229 bool = l >= 0 - for yyj2229 := 0; ; yyj2229++ { - if yyhl2229 { - if yyj2229 >= l { + var yys2282Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2282Slc + var yyhl2282 bool = l >= 0 + for yyj2282 := 0; ; yyj2282++ { + if yyhl2282 { + if yyj2282 >= l { break } } else { @@ -29499,28 +30206,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2229Slc = r.DecodeBytes(yys2229Slc, true, true) - yys2229 := string(yys2229Slc) + yys2282Slc = r.DecodeBytes(yys2282Slc, true, true) + yys2282 := string(yys2282Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2229 { + switch yys2282 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2230 := &x.ObjectMeta - yyv2230.CodecDecodeSelf(d) + yyv2283 := &x.ObjectMeta + yyv2283.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2231 := &x.Spec - yyv2231.CodecDecodeSelf(d) + yyv2284 := &x.Spec + yyv2284.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2229) - } // end switch yys2229 - } // end for yyj2229 + z.DecStructFieldNotFound(-1, yys2282) + } // end switch yys2282 + } // end for yyj2282 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29528,16 +30235,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2232 int - var yyb2232 bool - var yyhl2232 bool = l >= 0 - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + var yyj2285 int + var yyb2285 bool + var yyhl2285 bool = l >= 0 + yyj2285++ + if yyhl2285 { + yyb2285 = yyj2285 > l } else { - yyb2232 = r.CheckBreak() + yyb2285 = r.CheckBreak() } - if yyb2232 { + if yyb2285 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29545,16 +30252,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2233 := &x.ObjectMeta - yyv2233.CodecDecodeSelf(d) + yyv2286 := &x.ObjectMeta + yyv2286.CodecDecodeSelf(d) } - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + yyj2285++ + if yyhl2285 { + yyb2285 = yyj2285 > l } else { - yyb2232 = r.CheckBreak() + yyb2285 = r.CheckBreak() } - if yyb2232 { + if yyb2285 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29562,21 +30269,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2234 := &x.Spec - yyv2234.CodecDecodeSelf(d) + yyv2287 := &x.Spec + yyv2287.CodecDecodeSelf(d) } for { - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + yyj2285++ + if yyhl2285 { + yyb2285 = yyj2285 > l } else { - yyb2232 = r.CheckBreak() + yyb2285 = r.CheckBreak() } - if yyb2232 { + if yyb2285 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2232-1, "") + z.DecStructFieldNotFound(yyj2285-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29588,38 +30295,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2235 := z.EncBinary() - _ = yym2235 + yym2288 := z.EncBinary() + _ = yym2288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2236 := !z.EncBinary() - yy2arr2236 := z.EncBasicHandle().StructToArray - var yyq2236 [4]bool - _, _, _ = yysep2236, yyq2236, yy2arr2236 - const yyr2236 bool = false - yyq2236[0] = x.Kind != "" - yyq2236[1] = x.APIVersion != "" - yyq2236[2] = true - yyq2236[3] = true - var yynn2236 int - if yyr2236 || yy2arr2236 { + yysep2289 := !z.EncBinary() + yy2arr2289 := z.EncBasicHandle().StructToArray + var yyq2289 [4]bool + _, _, _ = yysep2289, yyq2289, yy2arr2289 + const yyr2289 bool = false + yyq2289[0] = x.Kind != "" + yyq2289[1] = x.APIVersion != "" + yyq2289[2] = true + yyq2289[3] = true + var yynn2289 int + if yyr2289 || yy2arr2289 { r.EncodeArrayStart(4) } else { - yynn2236 = 0 - for _, b := range yyq2236 { + yynn2289 = 0 + for _, b := range yyq2289 { if b { - yynn2236++ + yynn2289++ } } - r.EncodeMapStart(yynn2236) - yynn2236 = 0 + r.EncodeMapStart(yynn2289) + yynn2289 = 0 } - if yyr2236 || yy2arr2236 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2236[0] { - yym2238 := z.EncBinary() - _ = yym2238 + if yyq2289[0] { + yym2291 := z.EncBinary() + _ = yym2291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29628,23 +30335,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2236[0] { + if yyq2289[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2239 := z.EncBinary() - _ = yym2239 + yym2292 := z.EncBinary() + _ = yym2292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2236 || yy2arr2236 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2236[1] { - yym2241 := z.EncBinary() - _ = yym2241 + if yyq2289[1] { + yym2294 := z.EncBinary() + _ = yym2294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29653,53 +30360,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2236[1] { + if yyq2289[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2242 := z.EncBinary() - _ = yym2242 + yym2295 := z.EncBinary() + _ = yym2295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2236 || yy2arr2236 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2236[2] { - yy2244 := &x.ObjectMeta - yy2244.CodecEncodeSelf(e) + if yyq2289[2] { + yy2297 := &x.ObjectMeta + yy2297.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2236[2] { + if yyq2289[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2245 := &x.ObjectMeta - yy2245.CodecEncodeSelf(e) + yy2298 := &x.ObjectMeta + yy2298.CodecEncodeSelf(e) } } - if yyr2236 || yy2arr2236 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2236[3] { - yy2247 := &x.Template - yy2247.CodecEncodeSelf(e) + if yyq2289[3] { + yy2300 := &x.Template + yy2300.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2236[3] { + if yyq2289[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2248 := &x.Template - yy2248.CodecEncodeSelf(e) + yy2301 := &x.Template + yy2301.CodecEncodeSelf(e) } } - if yyr2236 || yy2arr2236 { + if yyr2289 || yy2arr2289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29712,25 +30419,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2249 := z.DecBinary() - _ = yym2249 + yym2302 := z.DecBinary() + _ = yym2302 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2250 := r.ContainerType() - if yyct2250 == codecSelferValueTypeMap1234 { - yyl2250 := r.ReadMapStart() - if yyl2250 == 0 { + yyct2303 := r.ContainerType() + if yyct2303 == codecSelferValueTypeMap1234 { + yyl2303 := r.ReadMapStart() + if yyl2303 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2250, d) + x.codecDecodeSelfFromMap(yyl2303, d) } - } else if yyct2250 == codecSelferValueTypeArray1234 { - yyl2250 := r.ReadArrayStart() - if yyl2250 == 0 { + } else if yyct2303 == codecSelferValueTypeArray1234 { + yyl2303 := r.ReadArrayStart() + if yyl2303 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2250, d) + x.codecDecodeSelfFromArray(yyl2303, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29742,12 +30449,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2251Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2251Slc - var yyhl2251 bool = l >= 0 - for yyj2251 := 0; ; yyj2251++ { - if yyhl2251 { - if yyj2251 >= l { + var yys2304Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2304Slc + var yyhl2304 bool = l >= 0 + for yyj2304 := 0; ; yyj2304++ { + if yyhl2304 { + if yyj2304 >= l { break } } else { @@ -29756,10 +30463,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2251Slc = r.DecodeBytes(yys2251Slc, true, true) - yys2251 := string(yys2251Slc) + yys2304Slc = r.DecodeBytes(yys2304Slc, true, true) + yys2304 := string(yys2304Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2251 { + switch yys2304 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29776,20 +30483,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2254 := &x.ObjectMeta - yyv2254.CodecDecodeSelf(d) + yyv2307 := &x.ObjectMeta + yyv2307.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2255 := &x.Template - yyv2255.CodecDecodeSelf(d) + yyv2308 := &x.Template + yyv2308.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2251) - } // end switch yys2251 - } // end for yyj2251 + z.DecStructFieldNotFound(-1, yys2304) + } // end switch yys2304 + } // end for yyj2304 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29797,16 +30504,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2256 int - var yyb2256 bool - var yyhl2256 bool = l >= 0 - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + var yyj2309 int + var yyb2309 bool + var yyhl2309 bool = l >= 0 + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29816,13 +30523,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29832,13 +30539,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29846,16 +30553,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2259 := &x.ObjectMeta - yyv2259.CodecDecodeSelf(d) + yyv2312 := &x.ObjectMeta + yyv2312.CodecDecodeSelf(d) } - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29863,21 +30570,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2260 := &x.Template - yyv2260.CodecDecodeSelf(d) + yyv2313 := &x.Template + yyv2313.CodecDecodeSelf(d) } for { - yyj2256++ - if yyhl2256 { - yyb2256 = yyj2256 > l + yyj2309++ + if yyhl2309 { + yyb2309 = yyj2309 > l } else { - yyb2256 = r.CheckBreak() + yyb2309 = r.CheckBreak() } - if yyb2256 { + if yyb2309 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2256-1, "") + z.DecStructFieldNotFound(yyj2309-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29889,37 +30596,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2261 := z.EncBinary() - _ = yym2261 + yym2314 := z.EncBinary() + _ = yym2314 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2262 := !z.EncBinary() - yy2arr2262 := z.EncBasicHandle().StructToArray - var yyq2262 [4]bool - _, _, _ = yysep2262, yyq2262, yy2arr2262 - const yyr2262 bool = false - yyq2262[0] = x.Kind != "" - yyq2262[1] = x.APIVersion != "" - yyq2262[2] = true - var yynn2262 int - if yyr2262 || yy2arr2262 { + yysep2315 := !z.EncBinary() + yy2arr2315 := z.EncBasicHandle().StructToArray + var yyq2315 [4]bool + _, _, _ = yysep2315, yyq2315, yy2arr2315 + const yyr2315 bool = false + yyq2315[0] = x.Kind != "" + yyq2315[1] = x.APIVersion != "" + yyq2315[2] = true + var yynn2315 int + if yyr2315 || yy2arr2315 { r.EncodeArrayStart(4) } else { - yynn2262 = 1 - for _, b := range yyq2262 { + yynn2315 = 1 + for _, b := range yyq2315 { if b { - yynn2262++ + yynn2315++ } } - r.EncodeMapStart(yynn2262) - yynn2262 = 0 + r.EncodeMapStart(yynn2315) + yynn2315 = 0 } - if yyr2262 || yy2arr2262 { + if yyr2315 || yy2arr2315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2262[0] { - yym2264 := z.EncBinary() - _ = yym2264 + if yyq2315[0] { + yym2317 := z.EncBinary() + _ = yym2317 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29928,23 +30635,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2262[0] { + if yyq2315[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2265 := z.EncBinary() - _ = yym2265 + yym2318 := z.EncBinary() + _ = yym2318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2262 || yy2arr2262 { + if yyr2315 || yy2arr2315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2262[1] { - yym2267 := z.EncBinary() - _ = yym2267 + if yyq2315[1] { + yym2320 := z.EncBinary() + _ = yym2320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29953,54 +30660,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2262[1] { + if yyq2315[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2268 := z.EncBinary() - _ = yym2268 + yym2321 := z.EncBinary() + _ = yym2321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2262 || yy2arr2262 { + if yyr2315 || yy2arr2315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2262[2] { - yy2270 := &x.ListMeta - yym2271 := z.EncBinary() - _ = yym2271 + if yyq2315[2] { + yy2323 := &x.ListMeta + yym2324 := z.EncBinary() + _ = yym2324 if false { - } else if z.HasExtensions() && z.EncExt(yy2270) { + } else if z.HasExtensions() && z.EncExt(yy2323) { } else { - z.EncFallback(yy2270) + z.EncFallback(yy2323) } } else { r.EncodeNil() } } else { - if yyq2262[2] { + if yyq2315[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2272 := &x.ListMeta - yym2273 := z.EncBinary() - _ = yym2273 + yy2325 := &x.ListMeta + yym2326 := z.EncBinary() + _ = yym2326 if false { - } else if z.HasExtensions() && z.EncExt(yy2272) { + } else if z.HasExtensions() && z.EncExt(yy2325) { } else { - z.EncFallback(yy2272) + z.EncFallback(yy2325) } } } - if yyr2262 || yy2arr2262 { + if yyr2315 || yy2arr2315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2275 := z.EncBinary() - _ = yym2275 + yym2328 := z.EncBinary() + _ = yym2328 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -30013,15 +30720,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2276 := z.EncBinary() - _ = yym2276 + yym2329 := z.EncBinary() + _ = yym2329 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr2262 || yy2arr2262 { + if yyr2315 || yy2arr2315 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30034,25 +30741,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2277 := z.DecBinary() - _ = yym2277 + yym2330 := z.DecBinary() + _ = yym2330 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2278 := r.ContainerType() - if yyct2278 == codecSelferValueTypeMap1234 { - yyl2278 := r.ReadMapStart() - if yyl2278 == 0 { + yyct2331 := r.ContainerType() + if yyct2331 == codecSelferValueTypeMap1234 { + yyl2331 := r.ReadMapStart() + if yyl2331 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2278, d) + x.codecDecodeSelfFromMap(yyl2331, d) } - } else if yyct2278 == codecSelferValueTypeArray1234 { - yyl2278 := r.ReadArrayStart() - if yyl2278 == 0 { + } else if yyct2331 == codecSelferValueTypeArray1234 { + yyl2331 := r.ReadArrayStart() + if yyl2331 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2278, d) + x.codecDecodeSelfFromArray(yyl2331, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30064,12 +30771,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2279Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2279Slc - var yyhl2279 bool = l >= 0 - for yyj2279 := 0; ; yyj2279++ { - if yyhl2279 { - if yyj2279 >= l { + var yys2332Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2332Slc + var yyhl2332 bool = l >= 0 + for yyj2332 := 0; ; yyj2332++ { + if yyhl2332 { + if yyj2332 >= l { break } } else { @@ -30078,10 +30785,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2279Slc = r.DecodeBytes(yys2279Slc, true, true) - yys2279 := string(yys2279Slc) + yys2332Slc = r.DecodeBytes(yys2332Slc, true, true) + yys2332 := string(yys2332Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2279 { + switch yys2332 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30098,31 +30805,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2282 := &x.ListMeta - yym2283 := z.DecBinary() - _ = yym2283 + yyv2335 := &x.ListMeta + yym2336 := z.DecBinary() + _ = yym2336 if false { - } else if z.HasExtensions() && z.DecExt(yyv2282) { + } else if z.HasExtensions() && z.DecExt(yyv2335) { } else { - z.DecFallback(yyv2282, false) + z.DecFallback(yyv2335, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2284 := &x.Items - yym2285 := z.DecBinary() - _ = yym2285 + yyv2337 := &x.Items + yym2338 := z.DecBinary() + _ = yym2338 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2284), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2337), d) } } default: - z.DecStructFieldNotFound(-1, yys2279) - } // end switch yys2279 - } // end for yyj2279 + z.DecStructFieldNotFound(-1, yys2332) + } // end switch yys2332 + } // end for yyj2332 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30130,16 +30837,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2286 int - var yyb2286 bool - var yyhl2286 bool = l >= 0 - yyj2286++ - if yyhl2286 { - yyb2286 = yyj2286 > l + var yyj2339 int + var yyb2339 bool + var yyhl2339 bool = l >= 0 + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2286 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2286 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30149,13 +30856,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2286++ - if yyhl2286 { - yyb2286 = yyj2286 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2286 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2286 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30165,13 +30872,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2286++ - if yyhl2286 { - yyb2286 = yyj2286 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2286 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2286 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30179,22 +30886,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2289 := &x.ListMeta - yym2290 := z.DecBinary() - _ = yym2290 + yyv2342 := &x.ListMeta + yym2343 := z.DecBinary() + _ = yym2343 if false { - } else if z.HasExtensions() && z.DecExt(yyv2289) { + } else if z.HasExtensions() && z.DecExt(yyv2342) { } else { - z.DecFallback(yyv2289, false) + z.DecFallback(yyv2342, false) } } - yyj2286++ - if yyhl2286 { - yyb2286 = yyj2286 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2286 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2286 { + if yyb2339 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30202,26 +30909,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2291 := &x.Items - yym2292 := z.DecBinary() - _ = yym2292 + yyv2344 := &x.Items + yym2345 := z.DecBinary() + _ = yym2345 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2291), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2344), d) } } for { - yyj2286++ - if yyhl2286 { - yyb2286 = yyj2286 > l + yyj2339++ + if yyhl2339 { + yyb2339 = yyj2339 > l } else { - yyb2286 = r.CheckBreak() + yyb2339 = r.CheckBreak() } - if yyb2286 { + if yyb2339 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2286-1, "") + z.DecStructFieldNotFound(yyj2339-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30233,75 +30940,75 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2293 := z.EncBinary() - _ = yym2293 + yym2346 := z.EncBinary() + _ = yym2346 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2294 := !z.EncBinary() - yy2arr2294 := z.EncBasicHandle().StructToArray - var yyq2294 [3]bool - _, _, _ = yysep2294, yyq2294, yy2arr2294 - const yyr2294 bool = false - yyq2294[0] = x.Replicas != nil - yyq2294[1] = len(x.Selector) != 0 - yyq2294[2] = x.Template != nil - var yynn2294 int - if yyr2294 || yy2arr2294 { + yysep2347 := !z.EncBinary() + yy2arr2347 := z.EncBasicHandle().StructToArray + var yyq2347 [3]bool + _, _, _ = yysep2347, yyq2347, yy2arr2347 + const yyr2347 bool = false + yyq2347[0] = x.Replicas != nil + yyq2347[1] = len(x.Selector) != 0 + yyq2347[2] = x.Template != nil + var yynn2347 int + if yyr2347 || yy2arr2347 { r.EncodeArrayStart(3) } else { - yynn2294 = 0 - for _, b := range yyq2294 { + yynn2347 = 0 + for _, b := range yyq2347 { if b { - yynn2294++ + yynn2347++ } } - r.EncodeMapStart(yynn2294) - yynn2294 = 0 + r.EncodeMapStart(yynn2347) + yynn2347 = 0 } - if yyr2294 || yy2arr2294 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2294[0] { + if yyq2347[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy2296 := *x.Replicas - yym2297 := z.EncBinary() - _ = yym2297 + yy2349 := *x.Replicas + yym2350 := z.EncBinary() + _ = yym2350 if false { } else { - r.EncodeInt(int64(yy2296)) + r.EncodeInt(int64(yy2349)) } } } else { r.EncodeNil() } } else { - if yyq2294[0] { + if yyq2347[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy2298 := *x.Replicas - yym2299 := z.EncBinary() - _ = yym2299 + yy2351 := *x.Replicas + yym2352 := z.EncBinary() + _ = yym2352 if false { } else { - r.EncodeInt(int64(yy2298)) + r.EncodeInt(int64(yy2351)) } } } } - if yyr2294 || yy2arr2294 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2294[1] { + if yyq2347[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2301 := z.EncBinary() - _ = yym2301 + yym2354 := z.EncBinary() + _ = yym2354 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -30311,15 +31018,15 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2294[1] { + if yyq2347[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2302 := z.EncBinary() - _ = yym2302 + yym2355 := z.EncBinary() + _ = yym2355 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -30327,9 +31034,9 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2294 || yy2arr2294 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2294[2] { + if yyq2347[2] { if x.Template == nil { r.EncodeNil() } else { @@ -30339,7 +31046,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2294[2] { + if yyq2347[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -30350,7 +31057,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2294 || yy2arr2294 { + if yyr2347 || yy2arr2347 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30363,25 +31070,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2304 := z.DecBinary() - _ = yym2304 + yym2357 := z.DecBinary() + _ = yym2357 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2305 := r.ContainerType() - if yyct2305 == codecSelferValueTypeMap1234 { - yyl2305 := r.ReadMapStart() - if yyl2305 == 0 { + yyct2358 := r.ContainerType() + if yyct2358 == codecSelferValueTypeMap1234 { + yyl2358 := r.ReadMapStart() + if yyl2358 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2305, d) + x.codecDecodeSelfFromMap(yyl2358, d) } - } else if yyct2305 == codecSelferValueTypeArray1234 { - yyl2305 := r.ReadArrayStart() - if yyl2305 == 0 { + } else if yyct2358 == codecSelferValueTypeArray1234 { + yyl2358 := r.ReadArrayStart() + if yyl2358 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2305, d) + x.codecDecodeSelfFromArray(yyl2358, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30393,12 +31100,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2306Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2306Slc - var yyhl2306 bool = l >= 0 - for yyj2306 := 0; ; yyj2306++ { - if yyhl2306 { - if yyj2306 >= l { + var yys2359Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2359Slc + var yyhl2359 bool = l >= 0 + for yyj2359 := 0; ; yyj2359++ { + if yyhl2359 { + if yyj2359 >= l { break } } else { @@ -30407,10 +31114,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2306Slc = r.DecodeBytes(yys2306Slc, true, true) - yys2306 := string(yys2306Slc) + yys2359Slc = r.DecodeBytes(yys2359Slc, true, true) + yys2359 := string(yys2359Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2306 { + switch yys2359 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -30420,8 +31127,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym2308 := z.DecBinary() - _ = yym2308 + yym2361 := z.DecBinary() + _ = yym2361 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -30431,12 +31138,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2309 := &x.Selector - yym2310 := z.DecBinary() - _ = yym2310 + yyv2362 := &x.Selector + yym2363 := z.DecBinary() + _ = yym2363 if false { } else { - z.F.DecMapStringStringX(yyv2309, false, d) + z.F.DecMapStringStringX(yyv2362, false, d) } } case "template": @@ -30451,9 +31158,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2306) - } // end switch yys2306 - } // end for yyj2306 + z.DecStructFieldNotFound(-1, yys2359) + } // end switch yys2359 + } // end for yyj2359 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30461,16 +31168,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2312 int - var yyb2312 bool - var yyhl2312 bool = l >= 0 - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + var yyj2365 int + var yyb2365 bool + var yyhl2365 bool = l >= 0 + yyj2365++ + if yyhl2365 { + yyb2365 = yyj2365 > l } else { - yyb2312 = r.CheckBreak() + yyb2365 = r.CheckBreak() } - if yyb2312 { + if yyb2365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30483,20 +31190,20 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Replicas == nil { x.Replicas = new(int32) } - yym2314 := z.DecBinary() - _ = yym2314 + yym2367 := z.DecBinary() + _ = yym2367 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2365++ + if yyhl2365 { + yyb2365 = yyj2365 > l } else { - yyb2312 = r.CheckBreak() + yyb2365 = r.CheckBreak() } - if yyb2312 { + if yyb2365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30504,21 +31211,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2315 := &x.Selector - yym2316 := z.DecBinary() - _ = yym2316 + yyv2368 := &x.Selector + yym2369 := z.DecBinary() + _ = yym2369 if false { } else { - z.F.DecMapStringStringX(yyv2315, false, d) + z.F.DecMapStringStringX(yyv2368, false, d) } } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2365++ + if yyhl2365 { + yyb2365 = yyj2365 > l } else { - yyb2312 = r.CheckBreak() + yyb2365 = r.CheckBreak() } - if yyb2312 { + if yyb2365 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30534,17 +31241,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2365++ + if yyhl2365 { + yyb2365 = yyj2365 > l } else { - yyb2312 = r.CheckBreak() + yyb2365 = r.CheckBreak() } - if yyb2312 { + if yyb2365 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2312-1, "") + z.DecStructFieldNotFound(yyj2365-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30556,36 +31263,36 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2318 := z.EncBinary() - _ = yym2318 + yym2371 := z.EncBinary() + _ = yym2371 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2319 := !z.EncBinary() - yy2arr2319 := z.EncBasicHandle().StructToArray - var yyq2319 [4]bool - _, _, _ = yysep2319, yyq2319, yy2arr2319 - const yyr2319 bool = false - yyq2319[1] = x.FullyLabeledReplicas != 0 - yyq2319[2] = x.ReadyReplicas != 0 - yyq2319[3] = x.ObservedGeneration != 0 - var yynn2319 int - if yyr2319 || yy2arr2319 { + yysep2372 := !z.EncBinary() + yy2arr2372 := z.EncBasicHandle().StructToArray + var yyq2372 [4]bool + _, _, _ = yysep2372, yyq2372, yy2arr2372 + const yyr2372 bool = false + yyq2372[1] = x.FullyLabeledReplicas != 0 + yyq2372[2] = x.ReadyReplicas != 0 + yyq2372[3] = x.ObservedGeneration != 0 + var yynn2372 int + if yyr2372 || yy2arr2372 { r.EncodeArrayStart(4) } else { - yynn2319 = 1 - for _, b := range yyq2319 { + yynn2372 = 1 + for _, b := range yyq2372 { if b { - yynn2319++ + yynn2372++ } } - r.EncodeMapStart(yynn2319) - yynn2319 = 0 + r.EncodeMapStart(yynn2372) + yynn2372 = 0 } - if yyr2319 || yy2arr2319 { + if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2321 := z.EncBinary() - _ = yym2321 + yym2374 := z.EncBinary() + _ = yym2374 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -30594,18 +31301,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2322 := z.EncBinary() - _ = yym2322 + yym2375 := z.EncBinary() + _ = yym2375 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr2319 || yy2arr2319 { + if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2319[1] { - yym2324 := z.EncBinary() - _ = yym2324 + if yyq2372[1] { + yym2377 := z.EncBinary() + _ = yym2377 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) @@ -30614,23 +31321,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2319[1] { + if yyq2372[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2325 := z.EncBinary() - _ = yym2325 + yym2378 := z.EncBinary() + _ = yym2378 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) } } } - if yyr2319 || yy2arr2319 { + if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2319[2] { - yym2327 := z.EncBinary() - _ = yym2327 + if yyq2372[2] { + yym2380 := z.EncBinary() + _ = yym2380 if false { } else { r.EncodeInt(int64(x.ReadyReplicas)) @@ -30639,23 +31346,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2319[2] { + if yyq2372[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2328 := z.EncBinary() - _ = yym2328 + yym2381 := z.EncBinary() + _ = yym2381 if false { } else { r.EncodeInt(int64(x.ReadyReplicas)) } } } - if yyr2319 || yy2arr2319 { + if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2319[3] { - yym2330 := z.EncBinary() - _ = yym2330 + if yyq2372[3] { + yym2383 := z.EncBinary() + _ = yym2383 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -30664,19 +31371,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2319[3] { + if yyq2372[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2331 := z.EncBinary() - _ = yym2331 + yym2384 := z.EncBinary() + _ = yym2384 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr2319 || yy2arr2319 { + if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30689,25 +31396,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2332 := z.DecBinary() - _ = yym2332 + yym2385 := z.DecBinary() + _ = yym2385 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2333 := r.ContainerType() - if yyct2333 == codecSelferValueTypeMap1234 { - yyl2333 := r.ReadMapStart() - if yyl2333 == 0 { + yyct2386 := r.ContainerType() + if yyct2386 == codecSelferValueTypeMap1234 { + yyl2386 := r.ReadMapStart() + if yyl2386 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2333, d) + x.codecDecodeSelfFromMap(yyl2386, d) } - } else if yyct2333 == codecSelferValueTypeArray1234 { - yyl2333 := r.ReadArrayStart() - if yyl2333 == 0 { + } else if yyct2386 == codecSelferValueTypeArray1234 { + yyl2386 := r.ReadArrayStart() + if yyl2386 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2333, d) + x.codecDecodeSelfFromArray(yyl2386, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30719,12 +31426,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2334Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2334Slc - var yyhl2334 bool = l >= 0 - for yyj2334 := 0; ; yyj2334++ { - if yyhl2334 { - if yyj2334 >= l { + var yys2387Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2387Slc + var yyhl2387 bool = l >= 0 + for yyj2387 := 0; ; yyj2387++ { + if yyhl2387 { + if yyj2387 >= l { break } } else { @@ -30733,10 +31440,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2334Slc = r.DecodeBytes(yys2334Slc, true, true) - yys2334 := string(yys2334Slc) + yys2387Slc = r.DecodeBytes(yys2387Slc, true, true) + yys2387 := string(yys2387Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2334 { + switch yys2387 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -30762,9 +31469,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2334) - } // end switch yys2334 - } // end for yyj2334 + z.DecStructFieldNotFound(-1, yys2387) + } // end switch yys2387 + } // end for yyj2387 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30772,16 +31479,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2339 int - var yyb2339 bool - var yyhl2339 bool = l >= 0 - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + var yyj2392 int + var yyb2392 bool + var yyhl2392 bool = l >= 0 + yyj2392++ + if yyhl2392 { + yyb2392 = yyj2392 > l } else { - yyb2339 = r.CheckBreak() + yyb2392 = r.CheckBreak() } - if yyb2339 { + if yyb2392 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30791,13 +31498,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2392++ + if yyhl2392 { + yyb2392 = yyj2392 > l } else { - yyb2339 = r.CheckBreak() + yyb2392 = r.CheckBreak() } - if yyb2339 { + if yyb2392 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30807,13 +31514,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2392++ + if yyhl2392 { + yyb2392 = yyj2392 > l } else { - yyb2339 = r.CheckBreak() + yyb2392 = r.CheckBreak() } - if yyb2339 { + if yyb2392 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30823,13 +31530,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2392++ + if yyhl2392 { + yyb2392 = yyj2392 > l } else { - yyb2339 = r.CheckBreak() + yyb2392 = r.CheckBreak() } - if yyb2339 { + if yyb2392 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30840,17 +31547,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj2339++ - if yyhl2339 { - yyb2339 = yyj2339 > l + yyj2392++ + if yyhl2392 { + yyb2392 = yyj2392 > l } else { - yyb2339 = r.CheckBreak() + yyb2392 = r.CheckBreak() } - if yyb2339 { + if yyb2392 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2339-1, "") + z.DecStructFieldNotFound(yyj2392-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30862,39 +31569,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2344 := z.EncBinary() - _ = yym2344 + yym2397 := z.EncBinary() + _ = yym2397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2345 := !z.EncBinary() - yy2arr2345 := z.EncBasicHandle().StructToArray - var yyq2345 [5]bool - _, _, _ = yysep2345, yyq2345, yy2arr2345 - const yyr2345 bool = false - yyq2345[0] = x.Kind != "" - yyq2345[1] = x.APIVersion != "" - yyq2345[2] = true - yyq2345[3] = true - yyq2345[4] = true - var yynn2345 int - if yyr2345 || yy2arr2345 { + yysep2398 := !z.EncBinary() + yy2arr2398 := z.EncBasicHandle().StructToArray + var yyq2398 [5]bool + _, _, _ = yysep2398, yyq2398, yy2arr2398 + const yyr2398 bool = false + yyq2398[0] = x.Kind != "" + yyq2398[1] = x.APIVersion != "" + yyq2398[2] = true + yyq2398[3] = true + yyq2398[4] = true + var yynn2398 int + if yyr2398 || yy2arr2398 { r.EncodeArrayStart(5) } else { - yynn2345 = 0 - for _, b := range yyq2345 { + yynn2398 = 0 + for _, b := range yyq2398 { if b { - yynn2345++ + yynn2398++ } } - r.EncodeMapStart(yynn2345) - yynn2345 = 0 + r.EncodeMapStart(yynn2398) + yynn2398 = 0 } - if yyr2345 || yy2arr2345 { + if yyr2398 || yy2arr2398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2345[0] { - yym2347 := z.EncBinary() - _ = yym2347 + if yyq2398[0] { + yym2400 := z.EncBinary() + _ = yym2400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30903,23 +31610,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2345[0] { + if yyq2398[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2348 := z.EncBinary() - _ = yym2348 + yym2401 := z.EncBinary() + _ = yym2401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2345 || yy2arr2345 { + if yyr2398 || yy2arr2398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2345[1] { - yym2350 := z.EncBinary() - _ = yym2350 + if yyq2398[1] { + yym2403 := z.EncBinary() + _ = yym2403 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30928,70 +31635,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2345[1] { + if yyq2398[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2351 := z.EncBinary() - _ = yym2351 + yym2404 := z.EncBinary() + _ = yym2404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2345 || yy2arr2345 { + if yyr2398 || yy2arr2398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2345[2] { - yy2353 := &x.ObjectMeta - yy2353.CodecEncodeSelf(e) + if yyq2398[2] { + yy2406 := &x.ObjectMeta + yy2406.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2345[2] { + if yyq2398[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2354 := &x.ObjectMeta - yy2354.CodecEncodeSelf(e) + yy2407 := &x.ObjectMeta + yy2407.CodecEncodeSelf(e) } } - if yyr2345 || yy2arr2345 { + if yyr2398 || yy2arr2398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2345[3] { - yy2356 := &x.Spec - yy2356.CodecEncodeSelf(e) + if yyq2398[3] { + yy2409 := &x.Spec + yy2409.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2345[3] { + if yyq2398[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2357 := &x.Spec - yy2357.CodecEncodeSelf(e) + yy2410 := &x.Spec + yy2410.CodecEncodeSelf(e) } } - if yyr2345 || yy2arr2345 { + if yyr2398 || yy2arr2398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2345[4] { - yy2359 := &x.Status - yy2359.CodecEncodeSelf(e) + if yyq2398[4] { + yy2412 := &x.Status + yy2412.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2345[4] { + if yyq2398[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2360 := &x.Status - yy2360.CodecEncodeSelf(e) + yy2413 := &x.Status + yy2413.CodecEncodeSelf(e) } } - if yyr2345 || yy2arr2345 { + if yyr2398 || yy2arr2398 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31004,25 +31711,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2361 := z.DecBinary() - _ = yym2361 + yym2414 := z.DecBinary() + _ = yym2414 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2362 := r.ContainerType() - if yyct2362 == codecSelferValueTypeMap1234 { - yyl2362 := r.ReadMapStart() - if yyl2362 == 0 { + yyct2415 := r.ContainerType() + if yyct2415 == codecSelferValueTypeMap1234 { + yyl2415 := r.ReadMapStart() + if yyl2415 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2362, d) + x.codecDecodeSelfFromMap(yyl2415, d) } - } else if yyct2362 == codecSelferValueTypeArray1234 { - yyl2362 := r.ReadArrayStart() - if yyl2362 == 0 { + } else if yyct2415 == codecSelferValueTypeArray1234 { + yyl2415 := r.ReadArrayStart() + if yyl2415 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2362, d) + x.codecDecodeSelfFromArray(yyl2415, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31034,12 +31741,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2363Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2363Slc - var yyhl2363 bool = l >= 0 - for yyj2363 := 0; ; yyj2363++ { - if yyhl2363 { - if yyj2363 >= l { + var yys2416Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2416Slc + var yyhl2416 bool = l >= 0 + for yyj2416 := 0; ; yyj2416++ { + if yyhl2416 { + if yyj2416 >= l { break } } else { @@ -31048,10 +31755,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2363Slc = r.DecodeBytes(yys2363Slc, true, true) - yys2363 := string(yys2363Slc) + yys2416Slc = r.DecodeBytes(yys2416Slc, true, true) + yys2416 := string(yys2416Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2363 { + switch yys2416 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31068,27 +31775,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2366 := &x.ObjectMeta - yyv2366.CodecDecodeSelf(d) + yyv2419 := &x.ObjectMeta + yyv2419.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2367 := &x.Spec - yyv2367.CodecDecodeSelf(d) + yyv2420 := &x.Spec + yyv2420.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2368 := &x.Status - yyv2368.CodecDecodeSelf(d) + yyv2421 := &x.Status + yyv2421.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2363) - } // end switch yys2363 - } // end for yyj2363 + z.DecStructFieldNotFound(-1, yys2416) + } // end switch yys2416 + } // end for yyj2416 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31096,16 +31803,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2369 int - var yyb2369 bool - var yyhl2369 bool = l >= 0 - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + var yyj2422 int + var yyb2422 bool + var yyhl2422 bool = l >= 0 + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2369 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2369 { + if yyb2422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31115,13 +31822,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2369 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2369 { + if yyb2422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31131,13 +31838,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2369 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2369 { + if yyb2422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31145,16 +31852,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2372 := &x.ObjectMeta - yyv2372.CodecDecodeSelf(d) + yyv2425 := &x.ObjectMeta + yyv2425.CodecDecodeSelf(d) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2369 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2369 { + if yyb2422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31162,16 +31869,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2373 := &x.Spec - yyv2373.CodecDecodeSelf(d) + yyv2426 := &x.Spec + yyv2426.CodecDecodeSelf(d) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2369 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2369 { + if yyb2422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31179,21 +31886,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2374 := &x.Status - yyv2374.CodecDecodeSelf(d) + yyv2427 := &x.Status + yyv2427.CodecDecodeSelf(d) } for { - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2422++ + if yyhl2422 { + yyb2422 = yyj2422 > l } else { - yyb2369 = r.CheckBreak() + yyb2422 = r.CheckBreak() } - if yyb2369 { + if yyb2422 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2369-1, "") + z.DecStructFieldNotFound(yyj2422-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31205,37 +31912,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2375 := z.EncBinary() - _ = yym2375 + yym2428 := z.EncBinary() + _ = yym2428 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2376 := !z.EncBinary() - yy2arr2376 := z.EncBasicHandle().StructToArray - var yyq2376 [4]bool - _, _, _ = yysep2376, yyq2376, yy2arr2376 - const yyr2376 bool = false - yyq2376[0] = x.Kind != "" - yyq2376[1] = x.APIVersion != "" - yyq2376[2] = true - var yynn2376 int - if yyr2376 || yy2arr2376 { + yysep2429 := !z.EncBinary() + yy2arr2429 := z.EncBasicHandle().StructToArray + var yyq2429 [4]bool + _, _, _ = yysep2429, yyq2429, yy2arr2429 + const yyr2429 bool = false + yyq2429[0] = x.Kind != "" + yyq2429[1] = x.APIVersion != "" + yyq2429[2] = true + var yynn2429 int + if yyr2429 || yy2arr2429 { r.EncodeArrayStart(4) } else { - yynn2376 = 1 - for _, b := range yyq2376 { + yynn2429 = 1 + for _, b := range yyq2429 { if b { - yynn2376++ + yynn2429++ } } - r.EncodeMapStart(yynn2376) - yynn2376 = 0 + r.EncodeMapStart(yynn2429) + yynn2429 = 0 } - if yyr2376 || yy2arr2376 { + if yyr2429 || yy2arr2429 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[0] { - yym2378 := z.EncBinary() - _ = yym2378 + if yyq2429[0] { + yym2431 := z.EncBinary() + _ = yym2431 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31244,23 +31951,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2376[0] { + if yyq2429[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2379 := z.EncBinary() - _ = yym2379 + yym2432 := z.EncBinary() + _ = yym2432 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2376 || yy2arr2376 { + if yyr2429 || yy2arr2429 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[1] { - yym2381 := z.EncBinary() - _ = yym2381 + if yyq2429[1] { + yym2434 := z.EncBinary() + _ = yym2434 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31269,54 +31976,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2376[1] { + if yyq2429[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2382 := z.EncBinary() - _ = yym2382 + yym2435 := z.EncBinary() + _ = yym2435 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2376 || yy2arr2376 { + if yyr2429 || yy2arr2429 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2376[2] { - yy2384 := &x.ListMeta - yym2385 := z.EncBinary() - _ = yym2385 + if yyq2429[2] { + yy2437 := &x.ListMeta + yym2438 := z.EncBinary() + _ = yym2438 if false { - } else if z.HasExtensions() && z.EncExt(yy2384) { + } else if z.HasExtensions() && z.EncExt(yy2437) { } else { - z.EncFallback(yy2384) + z.EncFallback(yy2437) } } else { r.EncodeNil() } } else { - if yyq2376[2] { + if yyq2429[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2386 := &x.ListMeta - yym2387 := z.EncBinary() - _ = yym2387 + yy2439 := &x.ListMeta + yym2440 := z.EncBinary() + _ = yym2440 if false { - } else if z.HasExtensions() && z.EncExt(yy2386) { + } else if z.HasExtensions() && z.EncExt(yy2439) { } else { - z.EncFallback(yy2386) + z.EncFallback(yy2439) } } } - if yyr2376 || yy2arr2376 { + if yyr2429 || yy2arr2429 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2389 := z.EncBinary() - _ = yym2389 + yym2442 := z.EncBinary() + _ = yym2442 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -31329,15 +32036,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2390 := z.EncBinary() - _ = yym2390 + yym2443 := z.EncBinary() + _ = yym2443 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2376 || yy2arr2376 { + if yyr2429 || yy2arr2429 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31350,25 +32057,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2391 := z.DecBinary() - _ = yym2391 + yym2444 := z.DecBinary() + _ = yym2444 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2392 := r.ContainerType() - if yyct2392 == codecSelferValueTypeMap1234 { - yyl2392 := r.ReadMapStart() - if yyl2392 == 0 { + yyct2445 := r.ContainerType() + if yyct2445 == codecSelferValueTypeMap1234 { + yyl2445 := r.ReadMapStart() + if yyl2445 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2392, d) + x.codecDecodeSelfFromMap(yyl2445, d) } - } else if yyct2392 == codecSelferValueTypeArray1234 { - yyl2392 := r.ReadArrayStart() - if yyl2392 == 0 { + } else if yyct2445 == codecSelferValueTypeArray1234 { + yyl2445 := r.ReadArrayStart() + if yyl2445 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2392, d) + x.codecDecodeSelfFromArray(yyl2445, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31380,12 +32087,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2393Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2393Slc - var yyhl2393 bool = l >= 0 - for yyj2393 := 0; ; yyj2393++ { - if yyhl2393 { - if yyj2393 >= l { + var yys2446Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2446Slc + var yyhl2446 bool = l >= 0 + for yyj2446 := 0; ; yyj2446++ { + if yyhl2446 { + if yyj2446 >= l { break } } else { @@ -31394,10 +32101,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2393Slc = r.DecodeBytes(yys2393Slc, true, true) - yys2393 := string(yys2393Slc) + yys2446Slc = r.DecodeBytes(yys2446Slc, true, true) + yys2446 := string(yys2446Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2393 { + switch yys2446 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31414,31 +32121,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2396 := &x.ListMeta - yym2397 := z.DecBinary() - _ = yym2397 + yyv2449 := &x.ListMeta + yym2450 := z.DecBinary() + _ = yym2450 if false { - } else if z.HasExtensions() && z.DecExt(yyv2396) { + } else if z.HasExtensions() && z.DecExt(yyv2449) { } else { - z.DecFallback(yyv2396, false) + z.DecFallback(yyv2449, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2398 := &x.Items - yym2399 := z.DecBinary() - _ = yym2399 + yyv2451 := &x.Items + yym2452 := z.DecBinary() + _ = yym2452 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2398), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2451), d) } } default: - z.DecStructFieldNotFound(-1, yys2393) - } // end switch yys2393 - } // end for yyj2393 + z.DecStructFieldNotFound(-1, yys2446) + } // end switch yys2446 + } // end for yyj2446 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31446,16 +32153,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2400 int - var yyb2400 bool - var yyhl2400 bool = l >= 0 - yyj2400++ - if yyhl2400 { - yyb2400 = yyj2400 > l + var yyj2453 int + var yyb2453 bool + var yyhl2453 bool = l >= 0 + yyj2453++ + if yyhl2453 { + yyb2453 = yyj2453 > l } else { - yyb2400 = r.CheckBreak() + yyb2453 = r.CheckBreak() } - if yyb2400 { + if yyb2453 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31465,13 +32172,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2400++ - if yyhl2400 { - yyb2400 = yyj2400 > l + yyj2453++ + if yyhl2453 { + yyb2453 = yyj2453 > l } else { - yyb2400 = r.CheckBreak() + yyb2453 = r.CheckBreak() } - if yyb2400 { + if yyb2453 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31481,13 +32188,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2400++ - if yyhl2400 { - yyb2400 = yyj2400 > l + yyj2453++ + if yyhl2453 { + yyb2453 = yyj2453 > l } else { - yyb2400 = r.CheckBreak() + yyb2453 = r.CheckBreak() } - if yyb2400 { + if yyb2453 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31495,22 +32202,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2403 := &x.ListMeta - yym2404 := z.DecBinary() - _ = yym2404 + yyv2456 := &x.ListMeta + yym2457 := z.DecBinary() + _ = yym2457 if false { - } else if z.HasExtensions() && z.DecExt(yyv2403) { + } else if z.HasExtensions() && z.DecExt(yyv2456) { } else { - z.DecFallback(yyv2403, false) + z.DecFallback(yyv2456, false) } } - yyj2400++ - if yyhl2400 { - yyb2400 = yyj2400 > l + yyj2453++ + if yyhl2453 { + yyb2453 = yyj2453 > l } else { - yyb2400 = r.CheckBreak() + yyb2453 = r.CheckBreak() } - if yyb2400 { + if yyb2453 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31518,26 +32225,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2405 := &x.Items - yym2406 := z.DecBinary() - _ = yym2406 + yyv2458 := &x.Items + yym2459 := z.DecBinary() + _ = yym2459 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2405), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2458), d) } } for { - yyj2400++ - if yyhl2400 { - yyb2400 = yyj2400 > l + yyj2453++ + if yyhl2453 { + yyb2453 = yyj2453 > l } else { - yyb2400 = r.CheckBreak() + yyb2453 = r.CheckBreak() } - if yyb2400 { + if yyb2453 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2400-1, "") + z.DecStructFieldNotFound(yyj2453-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31546,8 +32253,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2407 := z.EncBinary() - _ = yym2407 + yym2460 := z.EncBinary() + _ = yym2460 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31559,8 +32266,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2408 := z.DecBinary() - _ = yym2408 + yym2461 := z.DecBinary() + _ = yym2461 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31572,8 +32279,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2409 := z.EncBinary() - _ = yym2409 + yym2462 := z.EncBinary() + _ = yym2462 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31585,8 +32292,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2410 := z.DecBinary() - _ = yym2410 + yym2463 := z.DecBinary() + _ = yym2463 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31601,48 +32308,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2411 := z.EncBinary() - _ = yym2411 + yym2464 := z.EncBinary() + _ = yym2464 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2412 := !z.EncBinary() - yy2arr2412 := z.EncBasicHandle().StructToArray - var yyq2412 [1]bool - _, _, _ = yysep2412, yyq2412, yy2arr2412 - const yyr2412 bool = false - yyq2412[0] = true - var yynn2412 int - if yyr2412 || yy2arr2412 { + yysep2465 := !z.EncBinary() + yy2arr2465 := z.EncBasicHandle().StructToArray + var yyq2465 [1]bool + _, _, _ = yysep2465, yyq2465, yy2arr2465 + const yyr2465 bool = false + yyq2465[0] = true + var yynn2465 int + if yyr2465 || yy2arr2465 { r.EncodeArrayStart(1) } else { - yynn2412 = 0 - for _, b := range yyq2412 { + yynn2465 = 0 + for _, b := range yyq2465 { if b { - yynn2412++ + yynn2465++ } } - r.EncodeMapStart(yynn2412) - yynn2412 = 0 + r.EncodeMapStart(yynn2465) + yynn2465 = 0 } - if yyr2412 || yy2arr2412 { + if yyr2465 || yy2arr2465 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2412[0] { - yy2414 := &x.LoadBalancer - yy2414.CodecEncodeSelf(e) + if yyq2465[0] { + yy2467 := &x.LoadBalancer + yy2467.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2412[0] { + if yyq2465[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2415 := &x.LoadBalancer - yy2415.CodecEncodeSelf(e) + yy2468 := &x.LoadBalancer + yy2468.CodecEncodeSelf(e) } } - if yyr2412 || yy2arr2412 { + if yyr2465 || yy2arr2465 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31655,25 +32362,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2416 := z.DecBinary() - _ = yym2416 + yym2469 := z.DecBinary() + _ = yym2469 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2417 := r.ContainerType() - if yyct2417 == codecSelferValueTypeMap1234 { - yyl2417 := r.ReadMapStart() - if yyl2417 == 0 { + yyct2470 := r.ContainerType() + if yyct2470 == codecSelferValueTypeMap1234 { + yyl2470 := r.ReadMapStart() + if yyl2470 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2417, d) + x.codecDecodeSelfFromMap(yyl2470, d) } - } else if yyct2417 == codecSelferValueTypeArray1234 { - yyl2417 := r.ReadArrayStart() - if yyl2417 == 0 { + } else if yyct2470 == codecSelferValueTypeArray1234 { + yyl2470 := r.ReadArrayStart() + if yyl2470 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2417, d) + x.codecDecodeSelfFromArray(yyl2470, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31685,12 +32392,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2418Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2418Slc - var yyhl2418 bool = l >= 0 - for yyj2418 := 0; ; yyj2418++ { - if yyhl2418 { - if yyj2418 >= l { + var yys2471Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2471Slc + var yyhl2471 bool = l >= 0 + for yyj2471 := 0; ; yyj2471++ { + if yyhl2471 { + if yyj2471 >= l { break } } else { @@ -31699,21 +32406,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2418Slc = r.DecodeBytes(yys2418Slc, true, true) - yys2418 := string(yys2418Slc) + yys2471Slc = r.DecodeBytes(yys2471Slc, true, true) + yys2471 := string(yys2471Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2418 { + switch yys2471 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2419 := &x.LoadBalancer - yyv2419.CodecDecodeSelf(d) + yyv2472 := &x.LoadBalancer + yyv2472.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2418) - } // end switch yys2418 - } // end for yyj2418 + z.DecStructFieldNotFound(-1, yys2471) + } // end switch yys2471 + } // end for yyj2471 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31721,16 +32428,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2420 int - var yyb2420 bool - var yyhl2420 bool = l >= 0 - yyj2420++ - if yyhl2420 { - yyb2420 = yyj2420 > l + var yyj2473 int + var yyb2473 bool + var yyhl2473 bool = l >= 0 + yyj2473++ + if yyhl2473 { + yyb2473 = yyj2473 > l } else { - yyb2420 = r.CheckBreak() + yyb2473 = r.CheckBreak() } - if yyb2420 { + if yyb2473 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31738,21 +32445,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2421 := &x.LoadBalancer - yyv2421.CodecDecodeSelf(d) + yyv2474 := &x.LoadBalancer + yyv2474.CodecDecodeSelf(d) } for { - yyj2420++ - if yyhl2420 { - yyb2420 = yyj2420 > l + yyj2473++ + if yyhl2473 { + yyb2473 = yyj2473 > l } else { - yyb2420 = r.CheckBreak() + yyb2473 = r.CheckBreak() } - if yyb2420 { + if yyb2473 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2420-1, "") + z.DecStructFieldNotFound(yyj2473-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31764,38 +32471,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2422 := z.EncBinary() - _ = yym2422 + yym2475 := z.EncBinary() + _ = yym2475 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2423 := !z.EncBinary() - yy2arr2423 := z.EncBasicHandle().StructToArray - var yyq2423 [1]bool - _, _, _ = yysep2423, yyq2423, yy2arr2423 - const yyr2423 bool = false - yyq2423[0] = len(x.Ingress) != 0 - var yynn2423 int - if yyr2423 || yy2arr2423 { + yysep2476 := !z.EncBinary() + yy2arr2476 := z.EncBasicHandle().StructToArray + var yyq2476 [1]bool + _, _, _ = yysep2476, yyq2476, yy2arr2476 + const yyr2476 bool = false + yyq2476[0] = len(x.Ingress) != 0 + var yynn2476 int + if yyr2476 || yy2arr2476 { r.EncodeArrayStart(1) } else { - yynn2423 = 0 - for _, b := range yyq2423 { + yynn2476 = 0 + for _, b := range yyq2476 { if b { - yynn2423++ + yynn2476++ } } - r.EncodeMapStart(yynn2423) - yynn2423 = 0 + r.EncodeMapStart(yynn2476) + yynn2476 = 0 } - if yyr2423 || yy2arr2423 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2423[0] { + if yyq2476[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2425 := z.EncBinary() - _ = yym2425 + yym2478 := z.EncBinary() + _ = yym2478 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -31805,15 +32512,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2423[0] { + if yyq2476[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2426 := z.EncBinary() - _ = yym2426 + yym2479 := z.EncBinary() + _ = yym2479 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -31821,7 +32528,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2423 || yy2arr2423 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31834,25 +32541,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2427 := z.DecBinary() - _ = yym2427 + yym2480 := z.DecBinary() + _ = yym2480 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2428 := r.ContainerType() - if yyct2428 == codecSelferValueTypeMap1234 { - yyl2428 := r.ReadMapStart() - if yyl2428 == 0 { + yyct2481 := r.ContainerType() + if yyct2481 == codecSelferValueTypeMap1234 { + yyl2481 := r.ReadMapStart() + if yyl2481 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2428, d) + x.codecDecodeSelfFromMap(yyl2481, d) } - } else if yyct2428 == codecSelferValueTypeArray1234 { - yyl2428 := r.ReadArrayStart() - if yyl2428 == 0 { + } else if yyct2481 == codecSelferValueTypeArray1234 { + yyl2481 := r.ReadArrayStart() + if yyl2481 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2428, d) + x.codecDecodeSelfFromArray(yyl2481, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31864,12 +32571,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2429Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2429Slc - var yyhl2429 bool = l >= 0 - for yyj2429 := 0; ; yyj2429++ { - if yyhl2429 { - if yyj2429 >= l { + var yys2482Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2482Slc + var yyhl2482 bool = l >= 0 + for yyj2482 := 0; ; yyj2482++ { + if yyhl2482 { + if yyj2482 >= l { break } } else { @@ -31878,26 +32585,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2429Slc = r.DecodeBytes(yys2429Slc, true, true) - yys2429 := string(yys2429Slc) + yys2482Slc = r.DecodeBytes(yys2482Slc, true, true) + yys2482 := string(yys2482Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2429 { + switch yys2482 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2430 := &x.Ingress - yym2431 := z.DecBinary() - _ = yym2431 + yyv2483 := &x.Ingress + yym2484 := z.DecBinary() + _ = yym2484 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2430), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2483), d) } } default: - z.DecStructFieldNotFound(-1, yys2429) - } // end switch yys2429 - } // end for yyj2429 + z.DecStructFieldNotFound(-1, yys2482) + } // end switch yys2482 + } // end for yyj2482 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31905,16 +32612,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2432 int - var yyb2432 bool - var yyhl2432 bool = l >= 0 - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + var yyj2485 int + var yyb2485 bool + var yyhl2485 bool = l >= 0 + yyj2485++ + if yyhl2485 { + yyb2485 = yyj2485 > l } else { - yyb2432 = r.CheckBreak() + yyb2485 = r.CheckBreak() } - if yyb2432 { + if yyb2485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31922,26 +32629,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2433 := &x.Ingress - yym2434 := z.DecBinary() - _ = yym2434 + yyv2486 := &x.Ingress + yym2487 := z.DecBinary() + _ = yym2487 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2433), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2486), d) } } for { - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2485++ + if yyhl2485 { + yyb2485 = yyj2485 > l } else { - yyb2432 = r.CheckBreak() + yyb2485 = r.CheckBreak() } - if yyb2432 { + if yyb2485 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2432-1, "") + z.DecStructFieldNotFound(yyj2485-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31953,36 +32660,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2435 := z.EncBinary() - _ = yym2435 + yym2488 := z.EncBinary() + _ = yym2488 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2436 := !z.EncBinary() - yy2arr2436 := z.EncBasicHandle().StructToArray - var yyq2436 [2]bool - _, _, _ = yysep2436, yyq2436, yy2arr2436 - const yyr2436 bool = false - yyq2436[0] = x.IP != "" - yyq2436[1] = x.Hostname != "" - var yynn2436 int - if yyr2436 || yy2arr2436 { + yysep2489 := !z.EncBinary() + yy2arr2489 := z.EncBasicHandle().StructToArray + var yyq2489 [2]bool + _, _, _ = yysep2489, yyq2489, yy2arr2489 + const yyr2489 bool = false + yyq2489[0] = x.IP != "" + yyq2489[1] = x.Hostname != "" + var yynn2489 int + if yyr2489 || yy2arr2489 { r.EncodeArrayStart(2) } else { - yynn2436 = 0 - for _, b := range yyq2436 { + yynn2489 = 0 + for _, b := range yyq2489 { if b { - yynn2436++ + yynn2489++ } } - r.EncodeMapStart(yynn2436) - yynn2436 = 0 + r.EncodeMapStart(yynn2489) + yynn2489 = 0 } - if yyr2436 || yy2arr2436 { + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2436[0] { - yym2438 := z.EncBinary() - _ = yym2438 + if yyq2489[0] { + yym2491 := z.EncBinary() + _ = yym2491 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -31991,23 +32698,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2436[0] { + if yyq2489[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2439 := z.EncBinary() - _ = yym2439 + yym2492 := z.EncBinary() + _ = yym2492 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2436 || yy2arr2436 { + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2436[1] { - yym2441 := z.EncBinary() - _ = yym2441 + if yyq2489[1] { + yym2494 := z.EncBinary() + _ = yym2494 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -32016,19 +32723,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2436[1] { + if yyq2489[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2442 := z.EncBinary() - _ = yym2442 + yym2495 := z.EncBinary() + _ = yym2495 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2436 || yy2arr2436 { + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32041,25 +32748,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2443 := z.DecBinary() - _ = yym2443 + yym2496 := z.DecBinary() + _ = yym2496 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2444 := r.ContainerType() - if yyct2444 == codecSelferValueTypeMap1234 { - yyl2444 := r.ReadMapStart() - if yyl2444 == 0 { + yyct2497 := r.ContainerType() + if yyct2497 == codecSelferValueTypeMap1234 { + yyl2497 := r.ReadMapStart() + if yyl2497 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2444, d) + x.codecDecodeSelfFromMap(yyl2497, d) } - } else if yyct2444 == codecSelferValueTypeArray1234 { - yyl2444 := r.ReadArrayStart() - if yyl2444 == 0 { + } else if yyct2497 == codecSelferValueTypeArray1234 { + yyl2497 := r.ReadArrayStart() + if yyl2497 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2444, d) + x.codecDecodeSelfFromArray(yyl2497, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32071,12 +32778,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2445Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2445Slc - var yyhl2445 bool = l >= 0 - for yyj2445 := 0; ; yyj2445++ { - if yyhl2445 { - if yyj2445 >= l { + var yys2498Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2498Slc + var yyhl2498 bool = l >= 0 + for yyj2498 := 0; ; yyj2498++ { + if yyhl2498 { + if yyj2498 >= l { break } } else { @@ -32085,10 +32792,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2445Slc = r.DecodeBytes(yys2445Slc, true, true) - yys2445 := string(yys2445Slc) + yys2498Slc = r.DecodeBytes(yys2498Slc, true, true) + yys2498 := string(yys2498Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2445 { + switch yys2498 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -32102,9 +32809,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2445) - } // end switch yys2445 - } // end for yyj2445 + z.DecStructFieldNotFound(-1, yys2498) + } // end switch yys2498 + } // end for yyj2498 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32112,16 +32819,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2448 int - var yyb2448 bool - var yyhl2448 bool = l >= 0 - yyj2448++ - if yyhl2448 { - yyb2448 = yyj2448 > l + var yyj2501 int + var yyb2501 bool + var yyhl2501 bool = l >= 0 + yyj2501++ + if yyhl2501 { + yyb2501 = yyj2501 > l } else { - yyb2448 = r.CheckBreak() + yyb2501 = r.CheckBreak() } - if yyb2448 { + if yyb2501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32131,13 +32838,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2448++ - if yyhl2448 { - yyb2448 = yyj2448 > l + yyj2501++ + if yyhl2501 { + yyb2501 = yyj2501 > l } else { - yyb2448 = r.CheckBreak() + yyb2501 = r.CheckBreak() } - if yyb2448 { + if yyb2501 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32148,17 +32855,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2448++ - if yyhl2448 { - yyb2448 = yyj2448 > l + yyj2501++ + if yyhl2501 { + yyb2501 = yyj2501 > l } else { - yyb2448 = r.CheckBreak() + yyb2501 = r.CheckBreak() } - if yyb2448 { + if yyb2501 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2448-1, "") + z.DecStructFieldNotFound(yyj2501-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32170,45 +32877,45 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2451 := z.EncBinary() - _ = yym2451 + yym2504 := z.EncBinary() + _ = yym2504 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2452 := !z.EncBinary() - yy2arr2452 := z.EncBasicHandle().StructToArray - var yyq2452 [10]bool - _, _, _ = yysep2452, yyq2452, yy2arr2452 - const yyr2452 bool = false - yyq2452[1] = len(x.Selector) != 0 - yyq2452[2] = x.ClusterIP != "" - yyq2452[3] = x.Type != "" - yyq2452[4] = len(x.ExternalIPs) != 0 - yyq2452[5] = len(x.DeprecatedPublicIPs) != 0 - yyq2452[6] = x.SessionAffinity != "" - yyq2452[7] = x.LoadBalancerIP != "" - yyq2452[8] = len(x.LoadBalancerSourceRanges) != 0 - yyq2452[9] = x.ExternalName != "" - var yynn2452 int - if yyr2452 || yy2arr2452 { + yysep2505 := !z.EncBinary() + yy2arr2505 := z.EncBasicHandle().StructToArray + var yyq2505 [10]bool + _, _, _ = yysep2505, yyq2505, yy2arr2505 + const yyr2505 bool = false + yyq2505[1] = len(x.Selector) != 0 + yyq2505[2] = x.ClusterIP != "" + yyq2505[3] = x.Type != "" + yyq2505[4] = len(x.ExternalIPs) != 0 + yyq2505[5] = len(x.DeprecatedPublicIPs) != 0 + yyq2505[6] = x.SessionAffinity != "" + yyq2505[7] = x.LoadBalancerIP != "" + yyq2505[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2505[9] = x.ExternalName != "" + var yynn2505 int + if yyr2505 || yy2arr2505 { r.EncodeArrayStart(10) } else { - yynn2452 = 1 - for _, b := range yyq2452 { + yynn2505 = 1 + for _, b := range yyq2505 { if b { - yynn2452++ + yynn2505++ } } - r.EncodeMapStart(yynn2452) - yynn2452 = 0 + r.EncodeMapStart(yynn2505) + yynn2505 = 0 } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2454 := z.EncBinary() - _ = yym2454 + yym2507 := z.EncBinary() + _ = yym2507 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -32221,22 +32928,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2455 := z.EncBinary() - _ = yym2455 + yym2508 := z.EncBinary() + _ = yym2508 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[1] { + if yyq2505[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2457 := z.EncBinary() - _ = yym2457 + yym2510 := z.EncBinary() + _ = yym2510 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -32246,15 +32953,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2452[1] { + if yyq2505[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2458 := z.EncBinary() - _ = yym2458 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -32262,11 +32969,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[2] { - yym2460 := z.EncBinary() - _ = yym2460 + if yyq2505[2] { + yym2513 := z.EncBinary() + _ = yym2513 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -32275,41 +32982,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2452[2] { + if yyq2505[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2461 := z.EncBinary() - _ = yym2461 + yym2514 := z.EncBinary() + _ = yym2514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[3] { + if yyq2505[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2452[3] { + if yyq2505[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[4] { + if yyq2505[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2464 := z.EncBinary() - _ = yym2464 + yym2517 := z.EncBinary() + _ = yym2517 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32319,15 +33026,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2452[4] { + if yyq2505[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2465 := z.EncBinary() - _ = yym2465 + yym2518 := z.EncBinary() + _ = yym2518 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32335,14 +33042,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[5] { + if yyq2505[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2467 := z.EncBinary() - _ = yym2467 + yym2520 := z.EncBinary() + _ = yym2520 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -32352,15 +33059,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2452[5] { + if yyq2505[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2468 := z.EncBinary() - _ = yym2468 + yym2521 := z.EncBinary() + _ = yym2521 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -32368,26 +33075,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[6] { + if yyq2505[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2452[6] { + if yyq2505[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[7] { - yym2471 := z.EncBinary() - _ = yym2471 + if yyq2505[7] { + yym2524 := z.EncBinary() + _ = yym2524 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -32396,26 +33103,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2452[7] { + if yyq2505[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2472 := z.EncBinary() - _ = yym2472 + yym2525 := z.EncBinary() + _ = yym2525 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[8] { + if yyq2505[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2474 := z.EncBinary() - _ = yym2474 + yym2527 := z.EncBinary() + _ = yym2527 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32425,15 +33132,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2452[8] { + if yyq2505[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2475 := z.EncBinary() - _ = yym2475 + yym2528 := z.EncBinary() + _ = yym2528 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32441,11 +33148,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2452[9] { - yym2477 := z.EncBinary() - _ = yym2477 + if yyq2505[9] { + yym2530 := z.EncBinary() + _ = yym2530 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) @@ -32454,19 +33161,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2452[9] { + if yyq2505[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2478 := z.EncBinary() - _ = yym2478 + yym2531 := z.EncBinary() + _ = yym2531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) } } } - if yyr2452 || yy2arr2452 { + if yyr2505 || yy2arr2505 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32479,25 +33186,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2479 := z.DecBinary() - _ = yym2479 + yym2532 := z.DecBinary() + _ = yym2532 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2480 := r.ContainerType() - if yyct2480 == codecSelferValueTypeMap1234 { - yyl2480 := r.ReadMapStart() - if yyl2480 == 0 { + yyct2533 := r.ContainerType() + if yyct2533 == codecSelferValueTypeMap1234 { + yyl2533 := r.ReadMapStart() + if yyl2533 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2480, d) + x.codecDecodeSelfFromMap(yyl2533, d) } - } else if yyct2480 == codecSelferValueTypeArray1234 { - yyl2480 := r.ReadArrayStart() - if yyl2480 == 0 { + } else if yyct2533 == codecSelferValueTypeArray1234 { + yyl2533 := r.ReadArrayStart() + if yyl2533 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2480, d) + x.codecDecodeSelfFromArray(yyl2533, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32509,12 +33216,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2481Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2481Slc - var yyhl2481 bool = l >= 0 - for yyj2481 := 0; ; yyj2481++ { - if yyhl2481 { - if yyj2481 >= l { + var yys2534Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2534Slc + var yyhl2534 bool = l >= 0 + for yyj2534 := 0; ; yyj2534++ { + if yyhl2534 { + if yyj2534 >= l { break } } else { @@ -32523,32 +33230,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2481Slc = r.DecodeBytes(yys2481Slc, true, true) - yys2481 := string(yys2481Slc) + yys2534Slc = r.DecodeBytes(yys2534Slc, true, true) + yys2534 := string(yys2534Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2481 { + switch yys2534 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2482 := &x.Ports - yym2483 := z.DecBinary() - _ = yym2483 + yyv2535 := &x.Ports + yym2536 := z.DecBinary() + _ = yym2536 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2482), d) + h.decSliceServicePort((*[]ServicePort)(yyv2535), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2484 := &x.Selector - yym2485 := z.DecBinary() - _ = yym2485 + yyv2537 := &x.Selector + yym2538 := z.DecBinary() + _ = yym2538 if false { } else { - z.F.DecMapStringStringX(yyv2484, false, d) + z.F.DecMapStringStringX(yyv2537, false, d) } } case "clusterIP": @@ -32567,24 +33274,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2488 := &x.ExternalIPs - yym2489 := z.DecBinary() - _ = yym2489 + yyv2541 := &x.ExternalIPs + yym2542 := z.DecBinary() + _ = yym2542 if false { } else { - z.F.DecSliceStringX(yyv2488, false, d) + z.F.DecSliceStringX(yyv2541, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2490 := &x.DeprecatedPublicIPs - yym2491 := z.DecBinary() - _ = yym2491 + yyv2543 := &x.DeprecatedPublicIPs + yym2544 := z.DecBinary() + _ = yym2544 if false { } else { - z.F.DecSliceStringX(yyv2490, false, d) + z.F.DecSliceStringX(yyv2543, false, d) } } case "sessionAffinity": @@ -32603,12 +33310,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2494 := &x.LoadBalancerSourceRanges - yym2495 := z.DecBinary() - _ = yym2495 + yyv2547 := &x.LoadBalancerSourceRanges + yym2548 := z.DecBinary() + _ = yym2548 if false { } else { - z.F.DecSliceStringX(yyv2494, false, d) + z.F.DecSliceStringX(yyv2547, false, d) } } case "externalName": @@ -32618,9 +33325,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2481) - } // end switch yys2481 - } // end for yyj2481 + z.DecStructFieldNotFound(-1, yys2534) + } // end switch yys2534 + } // end for yyj2534 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32628,16 +33335,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2497 int - var yyb2497 bool - var yyhl2497 bool = l >= 0 - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + var yyj2550 int + var yyb2550 bool + var yyhl2550 bool = l >= 0 + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32645,21 +33352,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2498 := &x.Ports - yym2499 := z.DecBinary() - _ = yym2499 + yyv2551 := &x.Ports + yym2552 := z.DecBinary() + _ = yym2552 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2498), d) + h.decSliceServicePort((*[]ServicePort)(yyv2551), d) } } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32667,21 +33374,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2500 := &x.Selector - yym2501 := z.DecBinary() - _ = yym2501 + yyv2553 := &x.Selector + yym2554 := z.DecBinary() + _ = yym2554 if false { } else { - z.F.DecMapStringStringX(yyv2500, false, d) + z.F.DecMapStringStringX(yyv2553, false, d) } } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32691,13 +33398,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32707,13 +33414,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32721,21 +33428,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2504 := &x.ExternalIPs - yym2505 := z.DecBinary() - _ = yym2505 + yyv2557 := &x.ExternalIPs + yym2558 := z.DecBinary() + _ = yym2558 if false { } else { - z.F.DecSliceStringX(yyv2504, false, d) + z.F.DecSliceStringX(yyv2557, false, d) } } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32743,21 +33450,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2506 := &x.DeprecatedPublicIPs - yym2507 := z.DecBinary() - _ = yym2507 + yyv2559 := &x.DeprecatedPublicIPs + yym2560 := z.DecBinary() + _ = yym2560 if false { } else { - z.F.DecSliceStringX(yyv2506, false, d) + z.F.DecSliceStringX(yyv2559, false, d) } } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32767,13 +33474,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32783,13 +33490,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32797,21 +33504,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2510 := &x.LoadBalancerSourceRanges - yym2511 := z.DecBinary() - _ = yym2511 + yyv2563 := &x.LoadBalancerSourceRanges + yym2564 := z.DecBinary() + _ = yym2564 if false { } else { - z.F.DecSliceStringX(yyv2510, false, d) + z.F.DecSliceStringX(yyv2563, false, d) } } - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32822,17 +33529,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } for { - yyj2497++ - if yyhl2497 { - yyb2497 = yyj2497 > l + yyj2550++ + if yyhl2550 { + yyb2550 = yyj2550 > l } else { - yyb2497 = r.CheckBreak() + yyb2550 = r.CheckBreak() } - if yyb2497 { + if yyb2550 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2497-1, "") + z.DecStructFieldNotFound(yyj2550-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32844,38 +33551,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2513 := z.EncBinary() - _ = yym2513 + yym2566 := z.EncBinary() + _ = yym2566 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2514 := !z.EncBinary() - yy2arr2514 := z.EncBasicHandle().StructToArray - var yyq2514 [5]bool - _, _, _ = yysep2514, yyq2514, yy2arr2514 - const yyr2514 bool = false - yyq2514[0] = x.Name != "" - yyq2514[1] = x.Protocol != "" - yyq2514[3] = true - yyq2514[4] = x.NodePort != 0 - var yynn2514 int - if yyr2514 || yy2arr2514 { + yysep2567 := !z.EncBinary() + yy2arr2567 := z.EncBasicHandle().StructToArray + var yyq2567 [5]bool + _, _, _ = yysep2567, yyq2567, yy2arr2567 + const yyr2567 bool = false + yyq2567[0] = x.Name != "" + yyq2567[1] = x.Protocol != "" + yyq2567[3] = true + yyq2567[4] = x.NodePort != 0 + var yynn2567 int + if yyr2567 || yy2arr2567 { r.EncodeArrayStart(5) } else { - yynn2514 = 1 - for _, b := range yyq2514 { + yynn2567 = 1 + for _, b := range yyq2567 { if b { - yynn2514++ + yynn2567++ } } - r.EncodeMapStart(yynn2514) - yynn2514 = 0 + r.EncodeMapStart(yynn2567) + yynn2567 = 0 } - if yyr2514 || yy2arr2514 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2514[0] { - yym2516 := z.EncBinary() - _ = yym2516 + if yyq2567[0] { + yym2569 := z.EncBinary() + _ = yym2569 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -32884,37 +33591,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2514[0] { + if yyq2567[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2517 := z.EncBinary() - _ = yym2517 + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2514 || yy2arr2514 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2514[1] { + if yyq2567[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2514[1] { + if yyq2567[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2514 || yy2arr2514 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2520 := z.EncBinary() - _ = yym2520 + yym2573 := z.EncBinary() + _ = yym2573 if false { } else { r.EncodeInt(int64(x.Port)) @@ -32923,51 +33630,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2521 := z.EncBinary() - _ = yym2521 + yym2574 := z.EncBinary() + _ = yym2574 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2514 || yy2arr2514 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2514[3] { - yy2523 := &x.TargetPort - yym2524 := z.EncBinary() - _ = yym2524 + if yyq2567[3] { + yy2576 := &x.TargetPort + yym2577 := z.EncBinary() + _ = yym2577 if false { - } else if z.HasExtensions() && z.EncExt(yy2523) { - } else if !yym2524 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2523) + } else if z.HasExtensions() && z.EncExt(yy2576) { + } else if !yym2577 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2576) } else { - z.EncFallback(yy2523) + z.EncFallback(yy2576) } } else { r.EncodeNil() } } else { - if yyq2514[3] { + if yyq2567[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2525 := &x.TargetPort - yym2526 := z.EncBinary() - _ = yym2526 + yy2578 := &x.TargetPort + yym2579 := z.EncBinary() + _ = yym2579 if false { - } else if z.HasExtensions() && z.EncExt(yy2525) { - } else if !yym2526 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2525) + } else if z.HasExtensions() && z.EncExt(yy2578) { + } else if !yym2579 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2578) } else { - z.EncFallback(yy2525) + z.EncFallback(yy2578) } } } - if yyr2514 || yy2arr2514 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2514[4] { - yym2528 := z.EncBinary() - _ = yym2528 + if yyq2567[4] { + yym2581 := z.EncBinary() + _ = yym2581 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -32976,19 +33683,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2514[4] { + if yyq2567[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2529 := z.EncBinary() - _ = yym2529 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2514 || yy2arr2514 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33001,25 +33708,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2530 := z.DecBinary() - _ = yym2530 + yym2583 := z.DecBinary() + _ = yym2583 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2531 := r.ContainerType() - if yyct2531 == codecSelferValueTypeMap1234 { - yyl2531 := r.ReadMapStart() - if yyl2531 == 0 { + yyct2584 := r.ContainerType() + if yyct2584 == codecSelferValueTypeMap1234 { + yyl2584 := r.ReadMapStart() + if yyl2584 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2531, d) + x.codecDecodeSelfFromMap(yyl2584, d) } - } else if yyct2531 == codecSelferValueTypeArray1234 { - yyl2531 := r.ReadArrayStart() - if yyl2531 == 0 { + } else if yyct2584 == codecSelferValueTypeArray1234 { + yyl2584 := r.ReadArrayStart() + if yyl2584 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2531, d) + x.codecDecodeSelfFromArray(yyl2584, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33031,12 +33738,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2532Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2532Slc - var yyhl2532 bool = l >= 0 - for yyj2532 := 0; ; yyj2532++ { - if yyhl2532 { - if yyj2532 >= l { + var yys2585Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2585Slc + var yyhl2585 bool = l >= 0 + for yyj2585 := 0; ; yyj2585++ { + if yyhl2585 { + if yyj2585 >= l { break } } else { @@ -33045,10 +33752,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2532Slc = r.DecodeBytes(yys2532Slc, true, true) - yys2532 := string(yys2532Slc) + yys2585Slc = r.DecodeBytes(yys2585Slc, true, true) + yys2585 := string(yys2585Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2532 { + switch yys2585 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -33071,15 +33778,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2536 := &x.TargetPort - yym2537 := z.DecBinary() - _ = yym2537 + yyv2589 := &x.TargetPort + yym2590 := z.DecBinary() + _ = yym2590 if false { - } else if z.HasExtensions() && z.DecExt(yyv2536) { - } else if !yym2537 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2536) + } else if z.HasExtensions() && z.DecExt(yyv2589) { + } else if !yym2590 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2589) } else { - z.DecFallback(yyv2536, false) + z.DecFallback(yyv2589, false) } } case "nodePort": @@ -33089,9 +33796,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2532) - } // end switch yys2532 - } // end for yyj2532 + z.DecStructFieldNotFound(-1, yys2585) + } // end switch yys2585 + } // end for yyj2585 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33099,16 +33806,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2539 int - var yyb2539 bool - var yyhl2539 bool = l >= 0 - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + var yyj2592 int + var yyb2592 bool + var yyhl2592 bool = l >= 0 + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2539 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2539 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33118,13 +33825,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2539 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2539 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33134,13 +33841,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2539 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2539 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33150,13 +33857,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2539 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2539 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33164,24 +33871,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2543 := &x.TargetPort - yym2544 := z.DecBinary() - _ = yym2544 + yyv2596 := &x.TargetPort + yym2597 := z.DecBinary() + _ = yym2597 if false { - } else if z.HasExtensions() && z.DecExt(yyv2543) { - } else if !yym2544 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2543) + } else if z.HasExtensions() && z.DecExt(yyv2596) { + } else if !yym2597 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2596) } else { - z.DecFallback(yyv2543, false) + z.DecFallback(yyv2596, false) } } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2539 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2539 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33192,17 +33899,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2539 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2539 { + if yyb2592 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2539-1, "") + z.DecStructFieldNotFound(yyj2592-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33214,39 +33921,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2546 := z.EncBinary() - _ = yym2546 + yym2599 := z.EncBinary() + _ = yym2599 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2547 := !z.EncBinary() - yy2arr2547 := z.EncBasicHandle().StructToArray - var yyq2547 [5]bool - _, _, _ = yysep2547, yyq2547, yy2arr2547 - const yyr2547 bool = false - yyq2547[0] = x.Kind != "" - yyq2547[1] = x.APIVersion != "" - yyq2547[2] = true - yyq2547[3] = true - yyq2547[4] = true - var yynn2547 int - if yyr2547 || yy2arr2547 { + yysep2600 := !z.EncBinary() + yy2arr2600 := z.EncBasicHandle().StructToArray + var yyq2600 [5]bool + _, _, _ = yysep2600, yyq2600, yy2arr2600 + const yyr2600 bool = false + yyq2600[0] = x.Kind != "" + yyq2600[1] = x.APIVersion != "" + yyq2600[2] = true + yyq2600[3] = true + yyq2600[4] = true + var yynn2600 int + if yyr2600 || yy2arr2600 { r.EncodeArrayStart(5) } else { - yynn2547 = 0 - for _, b := range yyq2547 { + yynn2600 = 0 + for _, b := range yyq2600 { if b { - yynn2547++ + yynn2600++ } } - r.EncodeMapStart(yynn2547) - yynn2547 = 0 + r.EncodeMapStart(yynn2600) + yynn2600 = 0 } - if yyr2547 || yy2arr2547 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2547[0] { - yym2549 := z.EncBinary() - _ = yym2549 + if yyq2600[0] { + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33255,23 +33962,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2547[0] { + if yyq2600[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2550 := z.EncBinary() - _ = yym2550 + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2547 || yy2arr2547 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2547[1] { - yym2552 := z.EncBinary() - _ = yym2552 + if yyq2600[1] { + yym2605 := z.EncBinary() + _ = yym2605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33280,70 +33987,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2547[1] { + if yyq2600[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2553 := z.EncBinary() - _ = yym2553 + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2547 || yy2arr2547 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2547[2] { - yy2555 := &x.ObjectMeta - yy2555.CodecEncodeSelf(e) + if yyq2600[2] { + yy2608 := &x.ObjectMeta + yy2608.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2547[2] { + if yyq2600[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2556 := &x.ObjectMeta - yy2556.CodecEncodeSelf(e) + yy2609 := &x.ObjectMeta + yy2609.CodecEncodeSelf(e) } } - if yyr2547 || yy2arr2547 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2547[3] { - yy2558 := &x.Spec - yy2558.CodecEncodeSelf(e) + if yyq2600[3] { + yy2611 := &x.Spec + yy2611.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2547[3] { + if yyq2600[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2559 := &x.Spec - yy2559.CodecEncodeSelf(e) + yy2612 := &x.Spec + yy2612.CodecEncodeSelf(e) } } - if yyr2547 || yy2arr2547 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2547[4] { - yy2561 := &x.Status - yy2561.CodecEncodeSelf(e) + if yyq2600[4] { + yy2614 := &x.Status + yy2614.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2547[4] { + if yyq2600[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2562 := &x.Status - yy2562.CodecEncodeSelf(e) + yy2615 := &x.Status + yy2615.CodecEncodeSelf(e) } } - if yyr2547 || yy2arr2547 { + if yyr2600 || yy2arr2600 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33356,25 +34063,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2563 := z.DecBinary() - _ = yym2563 + yym2616 := z.DecBinary() + _ = yym2616 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2564 := r.ContainerType() - if yyct2564 == codecSelferValueTypeMap1234 { - yyl2564 := r.ReadMapStart() - if yyl2564 == 0 { + yyct2617 := r.ContainerType() + if yyct2617 == codecSelferValueTypeMap1234 { + yyl2617 := r.ReadMapStart() + if yyl2617 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2564, d) + x.codecDecodeSelfFromMap(yyl2617, d) } - } else if yyct2564 == codecSelferValueTypeArray1234 { - yyl2564 := r.ReadArrayStart() - if yyl2564 == 0 { + } else if yyct2617 == codecSelferValueTypeArray1234 { + yyl2617 := r.ReadArrayStart() + if yyl2617 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2564, d) + x.codecDecodeSelfFromArray(yyl2617, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33386,12 +34093,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2565Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2565Slc - var yyhl2565 bool = l >= 0 - for yyj2565 := 0; ; yyj2565++ { - if yyhl2565 { - if yyj2565 >= l { + var yys2618Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2618Slc + var yyhl2618 bool = l >= 0 + for yyj2618 := 0; ; yyj2618++ { + if yyhl2618 { + if yyj2618 >= l { break } } else { @@ -33400,10 +34107,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2565Slc = r.DecodeBytes(yys2565Slc, true, true) - yys2565 := string(yys2565Slc) + yys2618Slc = r.DecodeBytes(yys2618Slc, true, true) + yys2618 := string(yys2618Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2565 { + switch yys2618 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33420,27 +34127,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2568 := &x.ObjectMeta - yyv2568.CodecDecodeSelf(d) + yyv2621 := &x.ObjectMeta + yyv2621.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2569 := &x.Spec - yyv2569.CodecDecodeSelf(d) + yyv2622 := &x.Spec + yyv2622.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2570 := &x.Status - yyv2570.CodecDecodeSelf(d) + yyv2623 := &x.Status + yyv2623.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2565) - } // end switch yys2565 - } // end for yyj2565 + z.DecStructFieldNotFound(-1, yys2618) + } // end switch yys2618 + } // end for yyj2618 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33448,16 +34155,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2571 int - var yyb2571 bool - var yyhl2571 bool = l >= 0 - yyj2571++ - if yyhl2571 { - yyb2571 = yyj2571 > l + var yyj2624 int + var yyb2624 bool + var yyhl2624 bool = l >= 0 + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2571 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2571 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33467,13 +34174,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2571++ - if yyhl2571 { - yyb2571 = yyj2571 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2571 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2571 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33483,13 +34190,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2571++ - if yyhl2571 { - yyb2571 = yyj2571 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2571 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2571 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33497,16 +34204,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2574 := &x.ObjectMeta - yyv2574.CodecDecodeSelf(d) + yyv2627 := &x.ObjectMeta + yyv2627.CodecDecodeSelf(d) } - yyj2571++ - if yyhl2571 { - yyb2571 = yyj2571 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2571 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2571 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33514,16 +34221,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2575 := &x.Spec - yyv2575.CodecDecodeSelf(d) + yyv2628 := &x.Spec + yyv2628.CodecDecodeSelf(d) } - yyj2571++ - if yyhl2571 { - yyb2571 = yyj2571 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2571 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2571 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33531,21 +34238,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2576 := &x.Status - yyv2576.CodecDecodeSelf(d) + yyv2629 := &x.Status + yyv2629.CodecDecodeSelf(d) } for { - yyj2571++ - if yyhl2571 { - yyb2571 = yyj2571 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2571 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2571 { + if yyb2624 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2571-1, "") + z.DecStructFieldNotFound(yyj2624-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33557,37 +34264,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2577 := z.EncBinary() - _ = yym2577 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2578 := !z.EncBinary() - yy2arr2578 := z.EncBasicHandle().StructToArray - var yyq2578 [4]bool - _, _, _ = yysep2578, yyq2578, yy2arr2578 - const yyr2578 bool = false - yyq2578[0] = x.Kind != "" - yyq2578[1] = x.APIVersion != "" - yyq2578[2] = true - var yynn2578 int - if yyr2578 || yy2arr2578 { + yysep2631 := !z.EncBinary() + yy2arr2631 := z.EncBasicHandle().StructToArray + var yyq2631 [4]bool + _, _, _ = yysep2631, yyq2631, yy2arr2631 + const yyr2631 bool = false + yyq2631[0] = x.Kind != "" + yyq2631[1] = x.APIVersion != "" + yyq2631[2] = true + var yynn2631 int + if yyr2631 || yy2arr2631 { r.EncodeArrayStart(4) } else { - yynn2578 = 1 - for _, b := range yyq2578 { + yynn2631 = 1 + for _, b := range yyq2631 { if b { - yynn2578++ + yynn2631++ } } - r.EncodeMapStart(yynn2578) - yynn2578 = 0 + r.EncodeMapStart(yynn2631) + yynn2631 = 0 } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2578[0] { - yym2580 := z.EncBinary() - _ = yym2580 + if yyq2631[0] { + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33596,23 +34303,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2578[0] { + if yyq2631[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2581 := z.EncBinary() - _ = yym2581 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2578[1] { - yym2583 := z.EncBinary() - _ = yym2583 + if yyq2631[1] { + yym2636 := z.EncBinary() + _ = yym2636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33621,54 +34328,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2578[1] { + if yyq2631[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2584 := z.EncBinary() - _ = yym2584 + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2578[2] { - yy2586 := &x.ListMeta - yym2587 := z.EncBinary() - _ = yym2587 + if yyq2631[2] { + yy2639 := &x.ListMeta + yym2640 := z.EncBinary() + _ = yym2640 if false { - } else if z.HasExtensions() && z.EncExt(yy2586) { + } else if z.HasExtensions() && z.EncExt(yy2639) { } else { - z.EncFallback(yy2586) + z.EncFallback(yy2639) } } else { r.EncodeNil() } } else { - if yyq2578[2] { + if yyq2631[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2588 := &x.ListMeta - yym2589 := z.EncBinary() - _ = yym2589 + yy2641 := &x.ListMeta + yym2642 := z.EncBinary() + _ = yym2642 if false { - } else if z.HasExtensions() && z.EncExt(yy2588) { + } else if z.HasExtensions() && z.EncExt(yy2641) { } else { - z.EncFallback(yy2588) + z.EncFallback(yy2641) } } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2591 := z.EncBinary() - _ = yym2591 + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -33681,15 +34388,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2592 := z.EncBinary() - _ = yym2592 + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2578 || yy2arr2578 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33702,25 +34409,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2593 := z.DecBinary() - _ = yym2593 + yym2646 := z.DecBinary() + _ = yym2646 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2594 := r.ContainerType() - if yyct2594 == codecSelferValueTypeMap1234 { - yyl2594 := r.ReadMapStart() - if yyl2594 == 0 { + yyct2647 := r.ContainerType() + if yyct2647 == codecSelferValueTypeMap1234 { + yyl2647 := r.ReadMapStart() + if yyl2647 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2594, d) + x.codecDecodeSelfFromMap(yyl2647, d) } - } else if yyct2594 == codecSelferValueTypeArray1234 { - yyl2594 := r.ReadArrayStart() - if yyl2594 == 0 { + } else if yyct2647 == codecSelferValueTypeArray1234 { + yyl2647 := r.ReadArrayStart() + if yyl2647 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2594, d) + x.codecDecodeSelfFromArray(yyl2647, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33732,12 +34439,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2595Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2595Slc - var yyhl2595 bool = l >= 0 - for yyj2595 := 0; ; yyj2595++ { - if yyhl2595 { - if yyj2595 >= l { + var yys2648Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2648Slc + var yyhl2648 bool = l >= 0 + for yyj2648 := 0; ; yyj2648++ { + if yyhl2648 { + if yyj2648 >= l { break } } else { @@ -33746,10 +34453,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2595Slc = r.DecodeBytes(yys2595Slc, true, true) - yys2595 := string(yys2595Slc) + yys2648Slc = r.DecodeBytes(yys2648Slc, true, true) + yys2648 := string(yys2648Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2595 { + switch yys2648 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33766,31 +34473,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2598 := &x.ListMeta - yym2599 := z.DecBinary() - _ = yym2599 + yyv2651 := &x.ListMeta + yym2652 := z.DecBinary() + _ = yym2652 if false { - } else if z.HasExtensions() && z.DecExt(yyv2598) { + } else if z.HasExtensions() && z.DecExt(yyv2651) { } else { - z.DecFallback(yyv2598, false) + z.DecFallback(yyv2651, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2600 := &x.Items - yym2601 := z.DecBinary() - _ = yym2601 + yyv2653 := &x.Items + yym2654 := z.DecBinary() + _ = yym2654 if false { } else { - h.decSliceService((*[]Service)(yyv2600), d) + h.decSliceService((*[]Service)(yyv2653), d) } } default: - z.DecStructFieldNotFound(-1, yys2595) - } // end switch yys2595 - } // end for yyj2595 + z.DecStructFieldNotFound(-1, yys2648) + } // end switch yys2648 + } // end for yyj2648 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33798,16 +34505,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2602 int - var yyb2602 bool - var yyhl2602 bool = l >= 0 - yyj2602++ - if yyhl2602 { - yyb2602 = yyj2602 > l + var yyj2655 int + var yyb2655 bool + var yyhl2655 bool = l >= 0 + yyj2655++ + if yyhl2655 { + yyb2655 = yyj2655 > l } else { - yyb2602 = r.CheckBreak() + yyb2655 = r.CheckBreak() } - if yyb2602 { + if yyb2655 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33817,13 +34524,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2602++ - if yyhl2602 { - yyb2602 = yyj2602 > l + yyj2655++ + if yyhl2655 { + yyb2655 = yyj2655 > l } else { - yyb2602 = r.CheckBreak() + yyb2655 = r.CheckBreak() } - if yyb2602 { + if yyb2655 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33833,13 +34540,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2602++ - if yyhl2602 { - yyb2602 = yyj2602 > l + yyj2655++ + if yyhl2655 { + yyb2655 = yyj2655 > l } else { - yyb2602 = r.CheckBreak() + yyb2655 = r.CheckBreak() } - if yyb2602 { + if yyb2655 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33847,22 +34554,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2605 := &x.ListMeta - yym2606 := z.DecBinary() - _ = yym2606 + yyv2658 := &x.ListMeta + yym2659 := z.DecBinary() + _ = yym2659 if false { - } else if z.HasExtensions() && z.DecExt(yyv2605) { + } else if z.HasExtensions() && z.DecExt(yyv2658) { } else { - z.DecFallback(yyv2605, false) + z.DecFallback(yyv2658, false) } } - yyj2602++ - if yyhl2602 { - yyb2602 = yyj2602 > l + yyj2655++ + if yyhl2655 { + yyb2655 = yyj2655 > l } else { - yyb2602 = r.CheckBreak() + yyb2655 = r.CheckBreak() } - if yyb2602 { + if yyb2655 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33870,26 +34577,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2607 := &x.Items - yym2608 := z.DecBinary() - _ = yym2608 + yyv2660 := &x.Items + yym2661 := z.DecBinary() + _ = yym2661 if false { } else { - h.decSliceService((*[]Service)(yyv2607), d) + h.decSliceService((*[]Service)(yyv2660), d) } } for { - yyj2602++ - if yyhl2602 { - yyb2602 = yyj2602 > l + yyj2655++ + if yyhl2655 { + yyb2655 = yyj2655 > l } else { - yyb2602 = r.CheckBreak() + yyb2655 = r.CheckBreak() } - if yyb2602 { + if yyb2655 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2602-1, "") + z.DecStructFieldNotFound(yyj2655-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33901,39 +34608,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2609 := z.EncBinary() - _ = yym2609 + yym2662 := z.EncBinary() + _ = yym2662 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2610 := !z.EncBinary() - yy2arr2610 := z.EncBasicHandle().StructToArray - var yyq2610 [5]bool - _, _, _ = yysep2610, yyq2610, yy2arr2610 - const yyr2610 bool = false - yyq2610[0] = x.Kind != "" - yyq2610[1] = x.APIVersion != "" - yyq2610[2] = true - yyq2610[3] = len(x.Secrets) != 0 - yyq2610[4] = len(x.ImagePullSecrets) != 0 - var yynn2610 int - if yyr2610 || yy2arr2610 { + yysep2663 := !z.EncBinary() + yy2arr2663 := z.EncBasicHandle().StructToArray + var yyq2663 [5]bool + _, _, _ = yysep2663, yyq2663, yy2arr2663 + const yyr2663 bool = false + yyq2663[0] = x.Kind != "" + yyq2663[1] = x.APIVersion != "" + yyq2663[2] = true + yyq2663[3] = len(x.Secrets) != 0 + yyq2663[4] = len(x.ImagePullSecrets) != 0 + var yynn2663 int + if yyr2663 || yy2arr2663 { r.EncodeArrayStart(5) } else { - yynn2610 = 0 - for _, b := range yyq2610 { + yynn2663 = 0 + for _, b := range yyq2663 { if b { - yynn2610++ + yynn2663++ } } - r.EncodeMapStart(yynn2610) - yynn2610 = 0 + r.EncodeMapStart(yynn2663) + yynn2663 = 0 } - if yyr2610 || yy2arr2610 { + if yyr2663 || yy2arr2663 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2610[0] { - yym2612 := z.EncBinary() - _ = yym2612 + if yyq2663[0] { + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33942,23 +34649,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2610[0] { + if yyq2663[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2613 := z.EncBinary() - _ = yym2613 + yym2666 := z.EncBinary() + _ = yym2666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2610 || yy2arr2610 { + if yyr2663 || yy2arr2663 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2610[1] { - yym2615 := z.EncBinary() - _ = yym2615 + if yyq2663[1] { + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33967,43 +34674,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2610[1] { + if yyq2663[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2616 := z.EncBinary() - _ = yym2616 + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2610 || yy2arr2610 { + if yyr2663 || yy2arr2663 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2610[2] { - yy2618 := &x.ObjectMeta - yy2618.CodecEncodeSelf(e) + if yyq2663[2] { + yy2671 := &x.ObjectMeta + yy2671.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2610[2] { + if yyq2663[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2619 := &x.ObjectMeta - yy2619.CodecEncodeSelf(e) + yy2672 := &x.ObjectMeta + yy2672.CodecEncodeSelf(e) } } - if yyr2610 || yy2arr2610 { + if yyr2663 || yy2arr2663 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2610[3] { + if yyq2663[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2621 := z.EncBinary() - _ = yym2621 + yym2674 := z.EncBinary() + _ = yym2674 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -34013,15 +34720,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2610[3] { + if yyq2663[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2622 := z.EncBinary() - _ = yym2622 + yym2675 := z.EncBinary() + _ = yym2675 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -34029,14 +34736,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2610 || yy2arr2610 { + if yyr2663 || yy2arr2663 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2610[4] { + if yyq2663[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2624 := z.EncBinary() - _ = yym2624 + yym2677 := z.EncBinary() + _ = yym2677 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34046,15 +34753,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2610[4] { + if yyq2663[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2625 := z.EncBinary() - _ = yym2625 + yym2678 := z.EncBinary() + _ = yym2678 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34062,7 +34769,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2610 || yy2arr2610 { + if yyr2663 || yy2arr2663 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34075,25 +34782,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2626 := z.DecBinary() - _ = yym2626 + yym2679 := z.DecBinary() + _ = yym2679 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2627 := r.ContainerType() - if yyct2627 == codecSelferValueTypeMap1234 { - yyl2627 := r.ReadMapStart() - if yyl2627 == 0 { + yyct2680 := r.ContainerType() + if yyct2680 == codecSelferValueTypeMap1234 { + yyl2680 := r.ReadMapStart() + if yyl2680 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2627, d) + x.codecDecodeSelfFromMap(yyl2680, d) } - } else if yyct2627 == codecSelferValueTypeArray1234 { - yyl2627 := r.ReadArrayStart() - if yyl2627 == 0 { + } else if yyct2680 == codecSelferValueTypeArray1234 { + yyl2680 := r.ReadArrayStart() + if yyl2680 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2627, d) + x.codecDecodeSelfFromArray(yyl2680, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34105,12 +34812,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2628Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2628Slc - var yyhl2628 bool = l >= 0 - for yyj2628 := 0; ; yyj2628++ { - if yyhl2628 { - if yyj2628 >= l { + var yys2681Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2681Slc + var yyhl2681 bool = l >= 0 + for yyj2681 := 0; ; yyj2681++ { + if yyhl2681 { + if yyj2681 >= l { break } } else { @@ -34119,10 +34826,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2628Slc = r.DecodeBytes(yys2628Slc, true, true) - yys2628 := string(yys2628Slc) + yys2681Slc = r.DecodeBytes(yys2681Slc, true, true) + yys2681 := string(yys2681Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2628 { + switch yys2681 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34139,37 +34846,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2631 := &x.ObjectMeta - yyv2631.CodecDecodeSelf(d) + yyv2684 := &x.ObjectMeta + yyv2684.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2632 := &x.Secrets - yym2633 := z.DecBinary() - _ = yym2633 + yyv2685 := &x.Secrets + yym2686 := z.DecBinary() + _ = yym2686 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2632), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2685), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2634 := &x.ImagePullSecrets - yym2635 := z.DecBinary() - _ = yym2635 + yyv2687 := &x.ImagePullSecrets + yym2688 := z.DecBinary() + _ = yym2688 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2634), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2687), d) } } default: - z.DecStructFieldNotFound(-1, yys2628) - } // end switch yys2628 - } // end for yyj2628 + z.DecStructFieldNotFound(-1, yys2681) + } // end switch yys2681 + } // end for yyj2681 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34177,16 +34884,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2636 int - var yyb2636 bool - var yyhl2636 bool = l >= 0 - yyj2636++ - if yyhl2636 { - yyb2636 = yyj2636 > l + var yyj2689 int + var yyb2689 bool + var yyhl2689 bool = l >= 0 + yyj2689++ + if yyhl2689 { + yyb2689 = yyj2689 > l } else { - yyb2636 = r.CheckBreak() + yyb2689 = r.CheckBreak() } - if yyb2636 { + if yyb2689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34196,13 +34903,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2636++ - if yyhl2636 { - yyb2636 = yyj2636 > l + yyj2689++ + if yyhl2689 { + yyb2689 = yyj2689 > l } else { - yyb2636 = r.CheckBreak() + yyb2689 = r.CheckBreak() } - if yyb2636 { + if yyb2689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34212,13 +34919,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2636++ - if yyhl2636 { - yyb2636 = yyj2636 > l + yyj2689++ + if yyhl2689 { + yyb2689 = yyj2689 > l } else { - yyb2636 = r.CheckBreak() + yyb2689 = r.CheckBreak() } - if yyb2636 { + if yyb2689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34226,16 +34933,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2639 := &x.ObjectMeta - yyv2639.CodecDecodeSelf(d) + yyv2692 := &x.ObjectMeta + yyv2692.CodecDecodeSelf(d) } - yyj2636++ - if yyhl2636 { - yyb2636 = yyj2636 > l + yyj2689++ + if yyhl2689 { + yyb2689 = yyj2689 > l } else { - yyb2636 = r.CheckBreak() + yyb2689 = r.CheckBreak() } - if yyb2636 { + if yyb2689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34243,21 +34950,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2640 := &x.Secrets - yym2641 := z.DecBinary() - _ = yym2641 + yyv2693 := &x.Secrets + yym2694 := z.DecBinary() + _ = yym2694 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2640), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2693), d) } } - yyj2636++ - if yyhl2636 { - yyb2636 = yyj2636 > l + yyj2689++ + if yyhl2689 { + yyb2689 = yyj2689 > l } else { - yyb2636 = r.CheckBreak() + yyb2689 = r.CheckBreak() } - if yyb2636 { + if yyb2689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34265,26 +34972,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2642 := &x.ImagePullSecrets - yym2643 := z.DecBinary() - _ = yym2643 + yyv2695 := &x.ImagePullSecrets + yym2696 := z.DecBinary() + _ = yym2696 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2642), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2695), d) } } for { - yyj2636++ - if yyhl2636 { - yyb2636 = yyj2636 > l + yyj2689++ + if yyhl2689 { + yyb2689 = yyj2689 > l } else { - yyb2636 = r.CheckBreak() + yyb2689 = r.CheckBreak() } - if yyb2636 { + if yyb2689 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2636-1, "") + z.DecStructFieldNotFound(yyj2689-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34296,37 +35003,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2644 := z.EncBinary() - _ = yym2644 + yym2697 := z.EncBinary() + _ = yym2697 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2645 := !z.EncBinary() - yy2arr2645 := z.EncBasicHandle().StructToArray - var yyq2645 [4]bool - _, _, _ = yysep2645, yyq2645, yy2arr2645 - const yyr2645 bool = false - yyq2645[0] = x.Kind != "" - yyq2645[1] = x.APIVersion != "" - yyq2645[2] = true - var yynn2645 int - if yyr2645 || yy2arr2645 { + yysep2698 := !z.EncBinary() + yy2arr2698 := z.EncBasicHandle().StructToArray + var yyq2698 [4]bool + _, _, _ = yysep2698, yyq2698, yy2arr2698 + const yyr2698 bool = false + yyq2698[0] = x.Kind != "" + yyq2698[1] = x.APIVersion != "" + yyq2698[2] = true + var yynn2698 int + if yyr2698 || yy2arr2698 { r.EncodeArrayStart(4) } else { - yynn2645 = 1 - for _, b := range yyq2645 { + yynn2698 = 1 + for _, b := range yyq2698 { if b { - yynn2645++ + yynn2698++ } } - r.EncodeMapStart(yynn2645) - yynn2645 = 0 + r.EncodeMapStart(yynn2698) + yynn2698 = 0 } - if yyr2645 || yy2arr2645 { + if yyr2698 || yy2arr2698 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2645[0] { - yym2647 := z.EncBinary() - _ = yym2647 + if yyq2698[0] { + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34335,23 +35042,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2645[0] { + if yyq2698[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2648 := z.EncBinary() - _ = yym2648 + yym2701 := z.EncBinary() + _ = yym2701 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2645 || yy2arr2645 { + if yyr2698 || yy2arr2698 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2645[1] { - yym2650 := z.EncBinary() - _ = yym2650 + if yyq2698[1] { + yym2703 := z.EncBinary() + _ = yym2703 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34360,54 +35067,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2645[1] { + if yyq2698[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2651 := z.EncBinary() - _ = yym2651 + yym2704 := z.EncBinary() + _ = yym2704 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2645 || yy2arr2645 { + if yyr2698 || yy2arr2698 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2645[2] { - yy2653 := &x.ListMeta - yym2654 := z.EncBinary() - _ = yym2654 + if yyq2698[2] { + yy2706 := &x.ListMeta + yym2707 := z.EncBinary() + _ = yym2707 if false { - } else if z.HasExtensions() && z.EncExt(yy2653) { + } else if z.HasExtensions() && z.EncExt(yy2706) { } else { - z.EncFallback(yy2653) + z.EncFallback(yy2706) } } else { r.EncodeNil() } } else { - if yyq2645[2] { + if yyq2698[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2655 := &x.ListMeta - yym2656 := z.EncBinary() - _ = yym2656 + yy2708 := &x.ListMeta + yym2709 := z.EncBinary() + _ = yym2709 if false { - } else if z.HasExtensions() && z.EncExt(yy2655) { + } else if z.HasExtensions() && z.EncExt(yy2708) { } else { - z.EncFallback(yy2655) + z.EncFallback(yy2708) } } } - if yyr2645 || yy2arr2645 { + if yyr2698 || yy2arr2698 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2658 := z.EncBinary() - _ = yym2658 + yym2711 := z.EncBinary() + _ = yym2711 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -34420,15 +35127,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2659 := z.EncBinary() - _ = yym2659 + yym2712 := z.EncBinary() + _ = yym2712 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2645 || yy2arr2645 { + if yyr2698 || yy2arr2698 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34441,25 +35148,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2660 := z.DecBinary() - _ = yym2660 + yym2713 := z.DecBinary() + _ = yym2713 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2661 := r.ContainerType() - if yyct2661 == codecSelferValueTypeMap1234 { - yyl2661 := r.ReadMapStart() - if yyl2661 == 0 { + yyct2714 := r.ContainerType() + if yyct2714 == codecSelferValueTypeMap1234 { + yyl2714 := r.ReadMapStart() + if yyl2714 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2661, d) + x.codecDecodeSelfFromMap(yyl2714, d) } - } else if yyct2661 == codecSelferValueTypeArray1234 { - yyl2661 := r.ReadArrayStart() - if yyl2661 == 0 { + } else if yyct2714 == codecSelferValueTypeArray1234 { + yyl2714 := r.ReadArrayStart() + if yyl2714 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2661, d) + x.codecDecodeSelfFromArray(yyl2714, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34471,12 +35178,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2662Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2662Slc - var yyhl2662 bool = l >= 0 - for yyj2662 := 0; ; yyj2662++ { - if yyhl2662 { - if yyj2662 >= l { + var yys2715Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2715Slc + var yyhl2715 bool = l >= 0 + for yyj2715 := 0; ; yyj2715++ { + if yyhl2715 { + if yyj2715 >= l { break } } else { @@ -34485,10 +35192,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2662Slc = r.DecodeBytes(yys2662Slc, true, true) - yys2662 := string(yys2662Slc) + yys2715Slc = r.DecodeBytes(yys2715Slc, true, true) + yys2715 := string(yys2715Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2662 { + switch yys2715 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34505,31 +35212,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2665 := &x.ListMeta - yym2666 := z.DecBinary() - _ = yym2666 + yyv2718 := &x.ListMeta + yym2719 := z.DecBinary() + _ = yym2719 if false { - } else if z.HasExtensions() && z.DecExt(yyv2665) { + } else if z.HasExtensions() && z.DecExt(yyv2718) { } else { - z.DecFallback(yyv2665, false) + z.DecFallback(yyv2718, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2667 := &x.Items - yym2668 := z.DecBinary() - _ = yym2668 + yyv2720 := &x.Items + yym2721 := z.DecBinary() + _ = yym2721 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2667), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2720), d) } } default: - z.DecStructFieldNotFound(-1, yys2662) - } // end switch yys2662 - } // end for yyj2662 + z.DecStructFieldNotFound(-1, yys2715) + } // end switch yys2715 + } // end for yyj2715 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34537,16 +35244,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2669 int - var yyb2669 bool - var yyhl2669 bool = l >= 0 - yyj2669++ - if yyhl2669 { - yyb2669 = yyj2669 > l + var yyj2722 int + var yyb2722 bool + var yyhl2722 bool = l >= 0 + yyj2722++ + if yyhl2722 { + yyb2722 = yyj2722 > l } else { - yyb2669 = r.CheckBreak() + yyb2722 = r.CheckBreak() } - if yyb2669 { + if yyb2722 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34556,13 +35263,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2669++ - if yyhl2669 { - yyb2669 = yyj2669 > l + yyj2722++ + if yyhl2722 { + yyb2722 = yyj2722 > l } else { - yyb2669 = r.CheckBreak() + yyb2722 = r.CheckBreak() } - if yyb2669 { + if yyb2722 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34572,13 +35279,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2669++ - if yyhl2669 { - yyb2669 = yyj2669 > l + yyj2722++ + if yyhl2722 { + yyb2722 = yyj2722 > l } else { - yyb2669 = r.CheckBreak() + yyb2722 = r.CheckBreak() } - if yyb2669 { + if yyb2722 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34586,22 +35293,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2672 := &x.ListMeta - yym2673 := z.DecBinary() - _ = yym2673 + yyv2725 := &x.ListMeta + yym2726 := z.DecBinary() + _ = yym2726 if false { - } else if z.HasExtensions() && z.DecExt(yyv2672) { + } else if z.HasExtensions() && z.DecExt(yyv2725) { } else { - z.DecFallback(yyv2672, false) + z.DecFallback(yyv2725, false) } } - yyj2669++ - if yyhl2669 { - yyb2669 = yyj2669 > l + yyj2722++ + if yyhl2722 { + yyb2722 = yyj2722 > l } else { - yyb2669 = r.CheckBreak() + yyb2722 = r.CheckBreak() } - if yyb2669 { + if yyb2722 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34609,26 +35316,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2674 := &x.Items - yym2675 := z.DecBinary() - _ = yym2675 + yyv2727 := &x.Items + yym2728 := z.DecBinary() + _ = yym2728 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2674), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2727), d) } } for { - yyj2669++ - if yyhl2669 { - yyb2669 = yyj2669 > l + yyj2722++ + if yyhl2722 { + yyb2722 = yyj2722 > l } else { - yyb2669 = r.CheckBreak() + yyb2722 = r.CheckBreak() } - if yyb2669 { + if yyb2722 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2669-1, "") + z.DecStructFieldNotFound(yyj2722-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34640,37 +35347,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2676 := z.EncBinary() - _ = yym2676 + yym2729 := z.EncBinary() + _ = yym2729 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2677 := !z.EncBinary() - yy2arr2677 := z.EncBasicHandle().StructToArray - var yyq2677 [4]bool - _, _, _ = yysep2677, yyq2677, yy2arr2677 - const yyr2677 bool = false - yyq2677[0] = x.Kind != "" - yyq2677[1] = x.APIVersion != "" - yyq2677[2] = true - var yynn2677 int - if yyr2677 || yy2arr2677 { + yysep2730 := !z.EncBinary() + yy2arr2730 := z.EncBasicHandle().StructToArray + var yyq2730 [4]bool + _, _, _ = yysep2730, yyq2730, yy2arr2730 + const yyr2730 bool = false + yyq2730[0] = x.Kind != "" + yyq2730[1] = x.APIVersion != "" + yyq2730[2] = true + var yynn2730 int + if yyr2730 || yy2arr2730 { r.EncodeArrayStart(4) } else { - yynn2677 = 1 - for _, b := range yyq2677 { + yynn2730 = 1 + for _, b := range yyq2730 { if b { - yynn2677++ + yynn2730++ } } - r.EncodeMapStart(yynn2677) - yynn2677 = 0 + r.EncodeMapStart(yynn2730) + yynn2730 = 0 } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2677[0] { - yym2679 := z.EncBinary() - _ = yym2679 + if yyq2730[0] { + yym2732 := z.EncBinary() + _ = yym2732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34679,23 +35386,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2677[0] { + if yyq2730[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2680 := z.EncBinary() - _ = yym2680 + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2677[1] { - yym2682 := z.EncBinary() - _ = yym2682 + if yyq2730[1] { + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34704,42 +35411,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2677[1] { + if yyq2730[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2683 := z.EncBinary() - _ = yym2683 + yym2736 := z.EncBinary() + _ = yym2736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2677[2] { - yy2685 := &x.ObjectMeta - yy2685.CodecEncodeSelf(e) + if yyq2730[2] { + yy2738 := &x.ObjectMeta + yy2738.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2677[2] { + if yyq2730[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2686 := &x.ObjectMeta - yy2686.CodecEncodeSelf(e) + yy2739 := &x.ObjectMeta + yy2739.CodecEncodeSelf(e) } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2688 := z.EncBinary() - _ = yym2688 + yym2741 := z.EncBinary() + _ = yym2741 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -34752,15 +35459,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2689 := z.EncBinary() - _ = yym2689 + yym2742 := z.EncBinary() + _ = yym2742 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2677 || yy2arr2677 { + if yyr2730 || yy2arr2730 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34773,25 +35480,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2690 := z.DecBinary() - _ = yym2690 + yym2743 := z.DecBinary() + _ = yym2743 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2691 := r.ContainerType() - if yyct2691 == codecSelferValueTypeMap1234 { - yyl2691 := r.ReadMapStart() - if yyl2691 == 0 { + yyct2744 := r.ContainerType() + if yyct2744 == codecSelferValueTypeMap1234 { + yyl2744 := r.ReadMapStart() + if yyl2744 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2691, d) + x.codecDecodeSelfFromMap(yyl2744, d) } - } else if yyct2691 == codecSelferValueTypeArray1234 { - yyl2691 := r.ReadArrayStart() - if yyl2691 == 0 { + } else if yyct2744 == codecSelferValueTypeArray1234 { + yyl2744 := r.ReadArrayStart() + if yyl2744 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2691, d) + x.codecDecodeSelfFromArray(yyl2744, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34803,12 +35510,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2692Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2692Slc - var yyhl2692 bool = l >= 0 - for yyj2692 := 0; ; yyj2692++ { - if yyhl2692 { - if yyj2692 >= l { + var yys2745Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2745Slc + var yyhl2745 bool = l >= 0 + for yyj2745 := 0; ; yyj2745++ { + if yyhl2745 { + if yyj2745 >= l { break } } else { @@ -34817,10 +35524,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2692Slc = r.DecodeBytes(yys2692Slc, true, true) - yys2692 := string(yys2692Slc) + yys2745Slc = r.DecodeBytes(yys2745Slc, true, true) + yys2745 := string(yys2745Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2692 { + switch yys2745 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34837,25 +35544,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2695 := &x.ObjectMeta - yyv2695.CodecDecodeSelf(d) + yyv2748 := &x.ObjectMeta + yyv2748.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2696 := &x.Subsets - yym2697 := z.DecBinary() - _ = yym2697 + yyv2749 := &x.Subsets + yym2750 := z.DecBinary() + _ = yym2750 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2696), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2749), d) } } default: - z.DecStructFieldNotFound(-1, yys2692) - } // end switch yys2692 - } // end for yyj2692 + z.DecStructFieldNotFound(-1, yys2745) + } // end switch yys2745 + } // end for yyj2745 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34863,16 +35570,16 @@ func (x *Endpoints) 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 yyj2751 int + var yyb2751 bool + var yyhl2751 bool = l >= 0 + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2698 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2698 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34882,13 +35589,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2698 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2698 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34898,13 +35605,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2698 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2698 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34912,16 +35619,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2701 := &x.ObjectMeta - yyv2701.CodecDecodeSelf(d) + yyv2754 := &x.ObjectMeta + yyv2754.CodecDecodeSelf(d) } - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2698 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2698 { + if yyb2751 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34929,26 +35636,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2702 := &x.Subsets - yym2703 := z.DecBinary() - _ = yym2703 + yyv2755 := &x.Subsets + yym2756 := z.DecBinary() + _ = yym2756 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2702), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2755), d) } } for { - yyj2698++ - if yyhl2698 { - yyb2698 = yyj2698 > l + yyj2751++ + if yyhl2751 { + yyb2751 = yyj2751 > l } else { - yyb2698 = r.CheckBreak() + yyb2751 = r.CheckBreak() } - if yyb2698 { + if yyb2751 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2698-1, "") + z.DecStructFieldNotFound(yyj2751-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34960,40 +35667,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2704 := z.EncBinary() - _ = yym2704 + yym2757 := z.EncBinary() + _ = yym2757 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2705 := !z.EncBinary() - yy2arr2705 := z.EncBasicHandle().StructToArray - var yyq2705 [3]bool - _, _, _ = yysep2705, yyq2705, yy2arr2705 - const yyr2705 bool = false - yyq2705[0] = len(x.Addresses) != 0 - yyq2705[1] = len(x.NotReadyAddresses) != 0 - yyq2705[2] = len(x.Ports) != 0 - var yynn2705 int - if yyr2705 || yy2arr2705 { + yysep2758 := !z.EncBinary() + yy2arr2758 := z.EncBasicHandle().StructToArray + var yyq2758 [3]bool + _, _, _ = yysep2758, yyq2758, yy2arr2758 + const yyr2758 bool = false + yyq2758[0] = len(x.Addresses) != 0 + yyq2758[1] = len(x.NotReadyAddresses) != 0 + yyq2758[2] = len(x.Ports) != 0 + var yynn2758 int + if yyr2758 || yy2arr2758 { r.EncodeArrayStart(3) } else { - yynn2705 = 0 - for _, b := range yyq2705 { + yynn2758 = 0 + for _, b := range yyq2758 { if b { - yynn2705++ + yynn2758++ } } - r.EncodeMapStart(yynn2705) - yynn2705 = 0 + r.EncodeMapStart(yynn2758) + yynn2758 = 0 } - if yyr2705 || yy2arr2705 { + if yyr2758 || yy2arr2758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2705[0] { + if yyq2758[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2707 := z.EncBinary() - _ = yym2707 + yym2760 := z.EncBinary() + _ = yym2760 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -35003,15 +35710,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2705[0] { + if yyq2758[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2708 := z.EncBinary() - _ = yym2708 + yym2761 := z.EncBinary() + _ = yym2761 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -35019,14 +35726,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2705 || yy2arr2705 { + if yyr2758 || yy2arr2758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2705[1] { + if yyq2758[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2710 := z.EncBinary() - _ = yym2710 + yym2763 := z.EncBinary() + _ = yym2763 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -35036,15 +35743,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2705[1] { + if yyq2758[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2711 := z.EncBinary() - _ = yym2711 + yym2764 := z.EncBinary() + _ = yym2764 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -35052,14 +35759,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2705 || yy2arr2705 { + if yyr2758 || yy2arr2758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2705[2] { + if yyq2758[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2713 := z.EncBinary() - _ = yym2713 + yym2766 := z.EncBinary() + _ = yym2766 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -35069,15 +35776,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2705[2] { + if yyq2758[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2714 := z.EncBinary() - _ = yym2714 + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -35085,7 +35792,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2705 || yy2arr2705 { + if yyr2758 || yy2arr2758 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35095,634 +35802,6 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2715 := z.DecBinary() - _ = yym2715 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2716 := r.ContainerType() - if yyct2716 == codecSelferValueTypeMap1234 { - yyl2716 := r.ReadMapStart() - if yyl2716 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2716, d) - } - } else if yyct2716 == codecSelferValueTypeArray1234 { - yyl2716 := r.ReadArrayStart() - if yyl2716 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2716, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2717Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2717Slc - var yyhl2717 bool = l >= 0 - for yyj2717 := 0; ; yyj2717++ { - if yyhl2717 { - if yyj2717 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2717Slc = r.DecodeBytes(yys2717Slc, true, true) - yys2717 := string(yys2717Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2717 { - case "addresses": - if r.TryDecodeAsNil() { - x.Addresses = nil - } else { - yyv2718 := &x.Addresses - yym2719 := z.DecBinary() - _ = yym2719 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2718), d) - } - } - case "notReadyAddresses": - if r.TryDecodeAsNil() { - x.NotReadyAddresses = nil - } else { - yyv2720 := &x.NotReadyAddresses - yym2721 := z.DecBinary() - _ = yym2721 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2720), d) - } - } - case "ports": - if r.TryDecodeAsNil() { - x.Ports = nil - } else { - yyv2722 := &x.Ports - yym2723 := z.DecBinary() - _ = yym2723 - if false { - } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2722), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2717) - } // end switch yys2717 - } // end for yyj2717 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2724 int - var yyb2724 bool - var yyhl2724 bool = l >= 0 - yyj2724++ - if yyhl2724 { - yyb2724 = yyj2724 > l - } else { - yyb2724 = r.CheckBreak() - } - if yyb2724 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Addresses = nil - } else { - yyv2725 := &x.Addresses - yym2726 := z.DecBinary() - _ = yym2726 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2725), d) - } - } - yyj2724++ - if yyhl2724 { - yyb2724 = yyj2724 > l - } else { - yyb2724 = r.CheckBreak() - } - if yyb2724 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NotReadyAddresses = nil - } else { - yyv2727 := &x.NotReadyAddresses - yym2728 := z.DecBinary() - _ = yym2728 - if false { - } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2727), d) - } - } - yyj2724++ - if yyhl2724 { - yyb2724 = yyj2724 > l - } else { - yyb2724 = r.CheckBreak() - } - if yyb2724 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Ports = nil - } else { - yyv2729 := &x.Ports - yym2730 := z.DecBinary() - _ = yym2730 - if false { - } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2729), d) - } - } - for { - yyj2724++ - if yyhl2724 { - yyb2724 = yyj2724 > l - } else { - yyb2724 = r.CheckBreak() - } - if yyb2724 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2724-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2731 := z.EncBinary() - _ = yym2731 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2732 := !z.EncBinary() - yy2arr2732 := z.EncBasicHandle().StructToArray - var yyq2732 [4]bool - _, _, _ = yysep2732, yyq2732, yy2arr2732 - const yyr2732 bool = false - yyq2732[1] = x.Hostname != "" - yyq2732[2] = x.NodeName != nil - yyq2732[3] = x.TargetRef != nil - var yynn2732 int - if yyr2732 || yy2arr2732 { - r.EncodeArrayStart(4) - } else { - yynn2732 = 1 - for _, b := range yyq2732 { - if b { - yynn2732++ - } - } - r.EncodeMapStart(yynn2732) - yynn2732 = 0 - } - if yyr2732 || yy2arr2732 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2734 := z.EncBinary() - _ = yym2734 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.IP)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("ip")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2735 := z.EncBinary() - _ = yym2735 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.IP)) - } - } - if yyr2732 || yy2arr2732 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2732[1] { - yym2737 := z.EncBinary() - _ = yym2737 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2732[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostname")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2738 := z.EncBinary() - _ = yym2738 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) - } - } - } - if yyr2732 || yy2arr2732 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2732[2] { - if x.NodeName == nil { - r.EncodeNil() - } else { - yy2740 := *x.NodeName - yym2741 := z.EncBinary() - _ = yym2741 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2740)) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2732[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeName")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NodeName == nil { - r.EncodeNil() - } else { - yy2742 := *x.NodeName - yym2743 := z.EncBinary() - _ = yym2743 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2742)) - } - } - } - } - if yyr2732 || yy2arr2732 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2732[3] { - if x.TargetRef == nil { - r.EncodeNil() - } else { - x.TargetRef.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq2732[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("targetRef")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.TargetRef == nil { - r.EncodeNil() - } else { - x.TargetRef.CodecEncodeSelf(e) - } - } - } - if yyr2732 || yy2arr2732 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2745 := z.DecBinary() - _ = yym2745 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2746 := r.ContainerType() - if yyct2746 == codecSelferValueTypeMap1234 { - yyl2746 := r.ReadMapStart() - if yyl2746 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2746, d) - } - } else if yyct2746 == codecSelferValueTypeArray1234 { - yyl2746 := r.ReadArrayStart() - if yyl2746 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2746, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2747Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2747Slc - var yyhl2747 bool = l >= 0 - for yyj2747 := 0; ; yyj2747++ { - if yyhl2747 { - if yyj2747 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2747Slc = r.DecodeBytes(yys2747Slc, true, true) - yys2747 := string(yys2747Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2747 { - case "ip": - if r.TryDecodeAsNil() { - x.IP = "" - } else { - x.IP = string(r.DecodeString()) - } - case "hostname": - if r.TryDecodeAsNil() { - x.Hostname = "" - } else { - x.Hostname = string(r.DecodeString()) - } - case "nodeName": - if r.TryDecodeAsNil() { - if x.NodeName != nil { - x.NodeName = nil - } - } else { - if x.NodeName == nil { - x.NodeName = new(string) - } - yym2751 := z.DecBinary() - _ = yym2751 - if false { - } else { - *((*string)(x.NodeName)) = r.DecodeString() - } - } - case "targetRef": - if r.TryDecodeAsNil() { - if x.TargetRef != nil { - x.TargetRef = nil - } - } else { - if x.TargetRef == nil { - x.TargetRef = new(ObjectReference) - } - x.TargetRef.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2747) - } // end switch yys2747 - } // end for yyj2747 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2753 int - var yyb2753 bool - var yyhl2753 bool = l >= 0 - yyj2753++ - if yyhl2753 { - yyb2753 = yyj2753 > l - } else { - yyb2753 = r.CheckBreak() - } - if yyb2753 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.IP = "" - } else { - x.IP = string(r.DecodeString()) - } - yyj2753++ - if yyhl2753 { - yyb2753 = yyj2753 > l - } else { - yyb2753 = r.CheckBreak() - } - if yyb2753 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Hostname = "" - } else { - x.Hostname = string(r.DecodeString()) - } - yyj2753++ - if yyhl2753 { - yyb2753 = yyj2753 > l - } else { - yyb2753 = r.CheckBreak() - } - if yyb2753 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.NodeName != nil { - x.NodeName = nil - } - } else { - if x.NodeName == nil { - x.NodeName = new(string) - } - yym2757 := z.DecBinary() - _ = yym2757 - if false { - } else { - *((*string)(x.NodeName)) = r.DecodeString() - } - } - yyj2753++ - if yyhl2753 { - yyb2753 = yyj2753 > l - } else { - yyb2753 = r.CheckBreak() - } - if yyb2753 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.TargetRef != nil { - x.TargetRef = nil - } - } else { - if x.TargetRef == nil { - x.TargetRef = new(ObjectReference) - } - x.TargetRef.CodecDecodeSelf(d) - } - for { - yyj2753++ - if yyhl2753 { - yyb2753 = yyj2753 > l - } else { - yyb2753 = r.CheckBreak() - } - if yyb2753 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2753-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2759 := z.EncBinary() - _ = yym2759 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2760 := !z.EncBinary() - yy2arr2760 := z.EncBasicHandle().StructToArray - var yyq2760 [3]bool - _, _, _ = yysep2760, yyq2760, yy2arr2760 - const yyr2760 bool = false - yyq2760[0] = x.Name != "" - yyq2760[2] = x.Protocol != "" - var yynn2760 int - if yyr2760 || yy2arr2760 { - r.EncodeArrayStart(3) - } else { - yynn2760 = 1 - for _, b := range yyq2760 { - if b { - yynn2760++ - } - } - r.EncodeMapStart(yynn2760) - yynn2760 = 0 - } - if yyr2760 || yy2arr2760 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2760[0] { - yym2762 := z.EncBinary() - _ = yym2762 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2760[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2763 := z.EncBinary() - _ = yym2763 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - } - if yyr2760 || yy2arr2760 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2765 := z.EncBinary() - _ = yym2765 - if false { - } else { - r.EncodeInt(int64(x.Port)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("port")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2766 := z.EncBinary() - _ = yym2766 - if false { - } else { - r.EncodeInt(int64(x.Port)) - } - } - if yyr2760 || yy2arr2760 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2760[2] { - x.Protocol.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2760[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("protocol")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Protocol.CodecEncodeSelf(e) - } - } - if yyr2760 || yy2arr2760 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -35752,7 +35831,7 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -35774,6 +35853,634 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys2770 := string(yys2770Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys2770 { + case "addresses": + if r.TryDecodeAsNil() { + x.Addresses = nil + } else { + yyv2771 := &x.Addresses + yym2772 := z.DecBinary() + _ = yym2772 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2771), d) + } + } + case "notReadyAddresses": + if r.TryDecodeAsNil() { + x.NotReadyAddresses = nil + } else { + yyv2773 := &x.NotReadyAddresses + yym2774 := z.DecBinary() + _ = yym2774 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2773), d) + } + } + case "ports": + if r.TryDecodeAsNil() { + x.Ports = nil + } else { + yyv2775 := &x.Ports + yym2776 := z.DecBinary() + _ = yym2776 + if false { + } else { + h.decSliceEndpointPort((*[]EndpointPort)(yyv2775), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2770) + } // end switch yys2770 + } // end for yyj2770 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EndpointSubset) 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 + } else { + yyb2777 = r.CheckBreak() + } + if yyb2777 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Addresses = nil + } else { + yyv2778 := &x.Addresses + yym2779 := z.DecBinary() + _ = yym2779 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2778), d) + } + } + yyj2777++ + if yyhl2777 { + yyb2777 = yyj2777 > l + } else { + yyb2777 = r.CheckBreak() + } + if yyb2777 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.NotReadyAddresses = nil + } else { + yyv2780 := &x.NotReadyAddresses + yym2781 := z.DecBinary() + _ = yym2781 + if false { + } else { + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2780), d) + } + } + yyj2777++ + if yyhl2777 { + yyb2777 = yyj2777 > l + } else { + yyb2777 = r.CheckBreak() + } + if yyb2777 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Ports = nil + } else { + yyv2782 := &x.Ports + yym2783 := z.DecBinary() + _ = yym2783 + if false { + } else { + h.decSliceEndpointPort((*[]EndpointPort)(yyv2782), d) + } + } + for { + yyj2777++ + if yyhl2777 { + yyb2777 = yyj2777 > l + } else { + yyb2777 = r.CheckBreak() + } + if yyb2777 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2777-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2784 := z.EncBinary() + _ = yym2784 + 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[1] = x.Hostname != "" + yyq2785[2] = x.NodeName != nil + yyq2785[3] = x.TargetRef != nil + var yynn2785 int + if yyr2785 || yy2arr2785 { + r.EncodeArrayStart(4) + } else { + yynn2785 = 1 + for _, b := range yyq2785 { + if b { + yynn2785++ + } + } + r.EncodeMapStart(yynn2785) + yynn2785 = 0 + } + if yyr2785 || yy2arr2785 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2787 := z.EncBinary() + _ = yym2787 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.IP)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("ip")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2788 := z.EncBinary() + _ = yym2788 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.IP)) + } + } + if yyr2785 || yy2arr2785 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2785[1] { + yym2790 := z.EncBinary() + _ = yym2790 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2785[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostname")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2791 := z.EncBinary() + _ = yym2791 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } + } + if yyr2785 || yy2arr2785 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2785[2] { + if x.NodeName == nil { + r.EncodeNil() + } else { + yy2793 := *x.NodeName + yym2794 := z.EncBinary() + _ = yym2794 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy2793)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2785[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("nodeName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NodeName == nil { + r.EncodeNil() + } else { + yy2795 := *x.NodeName + yym2796 := z.EncBinary() + _ = yym2796 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(yy2795)) + } + } + } + } + if yyr2785 || yy2arr2785 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2785[3] { + if x.TargetRef == nil { + r.EncodeNil() + } else { + x.TargetRef.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq2785[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("targetRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.TargetRef == nil { + r.EncodeNil() + } else { + x.TargetRef.CodecEncodeSelf(e) + } + } + } + if yyr2785 || yy2arr2785 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2798 := z.DecBinary() + _ = yym2798 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2799 := r.ContainerType() + if yyct2799 == codecSelferValueTypeMap1234 { + yyl2799 := r.ReadMapStart() + if yyl2799 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2799, d) + } + } else if yyct2799 == codecSelferValueTypeArray1234 { + yyl2799 := r.ReadArrayStart() + if yyl2799 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2799, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EndpointAddress) 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 { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2800Slc = r.DecodeBytes(yys2800Slc, true, true) + yys2800 := string(yys2800Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2800 { + case "ip": + if r.TryDecodeAsNil() { + x.IP = "" + } else { + x.IP = string(r.DecodeString()) + } + case "hostname": + if r.TryDecodeAsNil() { + x.Hostname = "" + } else { + x.Hostname = string(r.DecodeString()) + } + case "nodeName": + if r.TryDecodeAsNil() { + if x.NodeName != nil { + x.NodeName = nil + } + } else { + if x.NodeName == nil { + x.NodeName = new(string) + } + yym2804 := z.DecBinary() + _ = yym2804 + if false { + } else { + *((*string)(x.NodeName)) = r.DecodeString() + } + } + case "targetRef": + if r.TryDecodeAsNil() { + if x.TargetRef != nil { + x.TargetRef = nil + } + } else { + if x.TargetRef == nil { + x.TargetRef = new(ObjectReference) + } + x.TargetRef.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2800) + } // end switch yys2800 + } // end for yyj2800 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2806 int + var yyb2806 bool + var yyhl2806 bool = l >= 0 + yyj2806++ + if yyhl2806 { + yyb2806 = yyj2806 > l + } else { + yyb2806 = r.CheckBreak() + } + if yyb2806 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.IP = "" + } else { + x.IP = string(r.DecodeString()) + } + yyj2806++ + if yyhl2806 { + yyb2806 = yyj2806 > l + } else { + yyb2806 = r.CheckBreak() + } + if yyb2806 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Hostname = "" + } else { + x.Hostname = string(r.DecodeString()) + } + yyj2806++ + if yyhl2806 { + yyb2806 = yyj2806 > l + } else { + yyb2806 = r.CheckBreak() + } + if yyb2806 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.NodeName != nil { + x.NodeName = nil + } + } else { + if x.NodeName == nil { + x.NodeName = new(string) + } + yym2810 := z.DecBinary() + _ = yym2810 + if false { + } else { + *((*string)(x.NodeName)) = r.DecodeString() + } + } + yyj2806++ + if yyhl2806 { + yyb2806 = yyj2806 > l + } else { + yyb2806 = r.CheckBreak() + } + if yyb2806 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.TargetRef != nil { + x.TargetRef = nil + } + } else { + if x.TargetRef == nil { + x.TargetRef = new(ObjectReference) + } + x.TargetRef.CodecDecodeSelf(d) + } + for { + yyj2806++ + if yyhl2806 { + yyb2806 = yyj2806 > l + } else { + yyb2806 = r.CheckBreak() + } + if yyb2806 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2806-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2812 := z.EncBinary() + _ = yym2812 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2813 := !z.EncBinary() + yy2arr2813 := z.EncBasicHandle().StructToArray + var yyq2813 [3]bool + _, _, _ = yysep2813, yyq2813, yy2arr2813 + const yyr2813 bool = false + yyq2813[0] = x.Name != "" + yyq2813[2] = x.Protocol != "" + var yynn2813 int + if yyr2813 || yy2arr2813 { + r.EncodeArrayStart(3) + } else { + yynn2813 = 1 + for _, b := range yyq2813 { + if b { + yynn2813++ + } + } + r.EncodeMapStart(yynn2813) + yynn2813 = 0 + } + if yyr2813 || yy2arr2813 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2813[0] { + yym2815 := z.EncBinary() + _ = yym2815 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2813[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2816 := z.EncBinary() + _ = yym2816 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr2813 || yy2arr2813 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym2818 := z.EncBinary() + _ = yym2818 + if false { + } else { + r.EncodeInt(int64(x.Port)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("port")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2819 := z.EncBinary() + _ = yym2819 + if false { + } else { + r.EncodeInt(int64(x.Port)) + } + } + if yyr2813 || yy2arr2813 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2813[2] { + x.Protocol.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2813[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("protocol")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Protocol.CodecEncodeSelf(e) + } + } + if yyr2813 || yy2arr2813 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2821 := z.DecBinary() + _ = yym2821 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2822 := r.ContainerType() + if yyct2822 == codecSelferValueTypeMap1234 { + yyl2822 := r.ReadMapStart() + if yyl2822 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2822, d) + } + } else if yyct2822 == codecSelferValueTypeArray1234 { + yyl2822 := r.ReadArrayStart() + if yyl2822 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2822, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2823Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2823Slc + var yyhl2823 bool = l >= 0 + for yyj2823 := 0; ; yyj2823++ { + if yyhl2823 { + if yyj2823 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2823Slc = r.DecodeBytes(yys2823Slc, true, true) + yys2823 := string(yys2823Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2823 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -35793,9 +36500,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2770) - } // end switch yys2770 - } // end for yyj2770 + z.DecStructFieldNotFound(-1, yys2823) + } // end switch yys2823 + } // end for yyj2823 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35803,16 +36510,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2774 int - var yyb2774 bool - var yyhl2774 bool = l >= 0 - yyj2774++ - if yyhl2774 { - yyb2774 = yyj2774 > l + var yyj2827 int + var yyb2827 bool + var yyhl2827 bool = l >= 0 + yyj2827++ + if yyhl2827 { + yyb2827 = yyj2827 > l } else { - yyb2774 = r.CheckBreak() + yyb2827 = r.CheckBreak() } - if yyb2774 { + if yyb2827 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35822,13 +36529,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2774++ - if yyhl2774 { - yyb2774 = yyj2774 > l + yyj2827++ + if yyhl2827 { + yyb2827 = yyj2827 > l } else { - yyb2774 = r.CheckBreak() + yyb2827 = r.CheckBreak() } - if yyb2774 { + if yyb2827 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35838,13 +36545,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2774++ - if yyhl2774 { - yyb2774 = yyj2774 > l + yyj2827++ + if yyhl2827 { + yyb2827 = yyj2827 > l } else { - yyb2774 = r.CheckBreak() + yyb2827 = r.CheckBreak() } - if yyb2774 { + if yyb2827 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35855,17 +36562,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2774++ - if yyhl2774 { - yyb2774 = yyj2774 > l + yyj2827++ + if yyhl2827 { + yyb2827 = yyj2827 > l } else { - yyb2774 = r.CheckBreak() + yyb2827 = r.CheckBreak() } - if yyb2774 { + if yyb2827 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2774-1, "") + z.DecStructFieldNotFound(yyj2827-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35877,37 +36584,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2778 := z.EncBinary() - _ = yym2778 + yym2831 := z.EncBinary() + _ = yym2831 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2779 := !z.EncBinary() - yy2arr2779 := z.EncBasicHandle().StructToArray - var yyq2779 [4]bool - _, _, _ = yysep2779, yyq2779, yy2arr2779 - const yyr2779 bool = false - yyq2779[0] = x.Kind != "" - yyq2779[1] = x.APIVersion != "" - yyq2779[2] = true - var yynn2779 int - if yyr2779 || yy2arr2779 { + yysep2832 := !z.EncBinary() + yy2arr2832 := z.EncBasicHandle().StructToArray + var yyq2832 [4]bool + _, _, _ = yysep2832, yyq2832, yy2arr2832 + const yyr2832 bool = false + yyq2832[0] = x.Kind != "" + yyq2832[1] = x.APIVersion != "" + yyq2832[2] = true + var yynn2832 int + if yyr2832 || yy2arr2832 { r.EncodeArrayStart(4) } else { - yynn2779 = 1 - for _, b := range yyq2779 { + yynn2832 = 1 + for _, b := range yyq2832 { if b { - yynn2779++ + yynn2832++ } } - r.EncodeMapStart(yynn2779) - yynn2779 = 0 + r.EncodeMapStart(yynn2832) + yynn2832 = 0 } - if yyr2779 || yy2arr2779 { + if yyr2832 || yy2arr2832 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2779[0] { - yym2781 := z.EncBinary() - _ = yym2781 + if yyq2832[0] { + yym2834 := z.EncBinary() + _ = yym2834 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35916,23 +36623,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2779[0] { + if yyq2832[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2835 := z.EncBinary() + _ = yym2835 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2779 || yy2arr2779 { + if yyr2832 || yy2arr2832 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2779[1] { - yym2784 := z.EncBinary() - _ = yym2784 + if yyq2832[1] { + yym2837 := z.EncBinary() + _ = yym2837 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35941,54 +36648,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2779[1] { + if yyq2832[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2785 := z.EncBinary() - _ = yym2785 + yym2838 := z.EncBinary() + _ = yym2838 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2779 || yy2arr2779 { + if yyr2832 || yy2arr2832 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2779[2] { - yy2787 := &x.ListMeta - yym2788 := z.EncBinary() - _ = yym2788 + if yyq2832[2] { + yy2840 := &x.ListMeta + yym2841 := z.EncBinary() + _ = yym2841 if false { - } else if z.HasExtensions() && z.EncExt(yy2787) { + } else if z.HasExtensions() && z.EncExt(yy2840) { } else { - z.EncFallback(yy2787) + z.EncFallback(yy2840) } } else { r.EncodeNil() } } else { - if yyq2779[2] { + if yyq2832[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2789 := &x.ListMeta - yym2790 := z.EncBinary() - _ = yym2790 + yy2842 := &x.ListMeta + yym2843 := z.EncBinary() + _ = yym2843 if false { - } else if z.HasExtensions() && z.EncExt(yy2789) { + } else if z.HasExtensions() && z.EncExt(yy2842) { } else { - z.EncFallback(yy2789) + z.EncFallback(yy2842) } } } - if yyr2779 || yy2arr2779 { + if yyr2832 || yy2arr2832 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2792 := z.EncBinary() - _ = yym2792 + yym2845 := z.EncBinary() + _ = yym2845 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -36001,15 +36708,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2793 := z.EncBinary() - _ = yym2793 + yym2846 := z.EncBinary() + _ = yym2846 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2779 || yy2arr2779 { + if yyr2832 || yy2arr2832 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36022,25 +36729,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2794 := z.DecBinary() - _ = yym2794 + yym2847 := z.DecBinary() + _ = yym2847 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2795 := r.ContainerType() - if yyct2795 == codecSelferValueTypeMap1234 { - yyl2795 := r.ReadMapStart() - if yyl2795 == 0 { + yyct2848 := r.ContainerType() + if yyct2848 == codecSelferValueTypeMap1234 { + yyl2848 := r.ReadMapStart() + if yyl2848 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2795, d) + x.codecDecodeSelfFromMap(yyl2848, d) } - } else if yyct2795 == codecSelferValueTypeArray1234 { - yyl2795 := r.ReadArrayStart() - if yyl2795 == 0 { + } else if yyct2848 == codecSelferValueTypeArray1234 { + yyl2848 := r.ReadArrayStart() + if yyl2848 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2795, d) + x.codecDecodeSelfFromArray(yyl2848, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36052,12 +36759,12 @@ func (x *EndpointsList) 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 yys2849Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2849Slc + var yyhl2849 bool = l >= 0 + for yyj2849 := 0; ; yyj2849++ { + if yyhl2849 { + if yyj2849 >= l { break } } else { @@ -36066,10 +36773,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2796Slc = r.DecodeBytes(yys2796Slc, true, true) - yys2796 := string(yys2796Slc) + yys2849Slc = r.DecodeBytes(yys2849Slc, true, true) + yys2849 := string(yys2849Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2796 { + switch yys2849 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36086,31 +36793,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2799 := &x.ListMeta - yym2800 := z.DecBinary() - _ = yym2800 + yyv2852 := &x.ListMeta + yym2853 := z.DecBinary() + _ = yym2853 if false { - } else if z.HasExtensions() && z.DecExt(yyv2799) { + } else if z.HasExtensions() && z.DecExt(yyv2852) { } else { - z.DecFallback(yyv2799, false) + z.DecFallback(yyv2852, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2801 := &x.Items - yym2802 := z.DecBinary() - _ = yym2802 + yyv2854 := &x.Items + yym2855 := z.DecBinary() + _ = yym2855 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2801), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2854), d) } } default: - z.DecStructFieldNotFound(-1, yys2796) - } // end switch yys2796 - } // end for yyj2796 + z.DecStructFieldNotFound(-1, yys2849) + } // end switch yys2849 + } // end for yyj2849 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36118,16 +36825,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2803 int - var yyb2803 bool - var yyhl2803 bool = l >= 0 - yyj2803++ - if yyhl2803 { - yyb2803 = yyj2803 > l + var yyj2856 int + var yyb2856 bool + var yyhl2856 bool = l >= 0 + yyj2856++ + if yyhl2856 { + yyb2856 = yyj2856 > l } else { - yyb2803 = r.CheckBreak() + yyb2856 = r.CheckBreak() } - if yyb2803 { + if yyb2856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36137,13 +36844,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2803++ - if yyhl2803 { - yyb2803 = yyj2803 > l + yyj2856++ + if yyhl2856 { + yyb2856 = yyj2856 > l } else { - yyb2803 = r.CheckBreak() + yyb2856 = r.CheckBreak() } - if yyb2803 { + if yyb2856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36153,13 +36860,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2803++ - if yyhl2803 { - yyb2803 = yyj2803 > l + yyj2856++ + if yyhl2856 { + yyb2856 = yyj2856 > l } else { - yyb2803 = r.CheckBreak() + yyb2856 = r.CheckBreak() } - if yyb2803 { + if yyb2856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36167,22 +36874,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2806 := &x.ListMeta - yym2807 := z.DecBinary() - _ = yym2807 + yyv2859 := &x.ListMeta + yym2860 := z.DecBinary() + _ = yym2860 if false { - } else if z.HasExtensions() && z.DecExt(yyv2806) { + } else if z.HasExtensions() && z.DecExt(yyv2859) { } else { - z.DecFallback(yyv2806, false) + z.DecFallback(yyv2859, false) } } - yyj2803++ - if yyhl2803 { - yyb2803 = yyj2803 > l + yyj2856++ + if yyhl2856 { + yyb2856 = yyj2856 > l } else { - yyb2803 = r.CheckBreak() + yyb2856 = r.CheckBreak() } - if yyb2803 { + if yyb2856 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36190,26 +36897,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2808 := &x.Items - yym2809 := z.DecBinary() - _ = yym2809 + yyv2861 := &x.Items + yym2862 := z.DecBinary() + _ = yym2862 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2808), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2861), d) } } for { - yyj2803++ - if yyhl2803 { - yyb2803 = yyj2803 > l + yyj2856++ + if yyhl2856 { + yyb2856 = yyj2856 > l } else { - yyb2803 = r.CheckBreak() + yyb2856 = r.CheckBreak() } - if yyb2803 { + if yyb2856 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2803-1, "") + z.DecStructFieldNotFound(yyj2856-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36221,38 +36928,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2810 := z.EncBinary() - _ = yym2810 + yym2863 := z.EncBinary() + _ = yym2863 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2811 := !z.EncBinary() - yy2arr2811 := z.EncBasicHandle().StructToArray - var yyq2811 [4]bool - _, _, _ = yysep2811, yyq2811, yy2arr2811 - const yyr2811 bool = false - yyq2811[0] = x.PodCIDR != "" - yyq2811[1] = x.ExternalID != "" - yyq2811[2] = x.ProviderID != "" - yyq2811[3] = x.Unschedulable != false - var yynn2811 int - if yyr2811 || yy2arr2811 { + yysep2864 := !z.EncBinary() + yy2arr2864 := z.EncBasicHandle().StructToArray + var yyq2864 [4]bool + _, _, _ = yysep2864, yyq2864, yy2arr2864 + const yyr2864 bool = false + yyq2864[0] = x.PodCIDR != "" + yyq2864[1] = x.ExternalID != "" + yyq2864[2] = x.ProviderID != "" + yyq2864[3] = x.Unschedulable != false + var yynn2864 int + if yyr2864 || yy2arr2864 { r.EncodeArrayStart(4) } else { - yynn2811 = 0 - for _, b := range yyq2811 { + yynn2864 = 0 + for _, b := range yyq2864 { if b { - yynn2811++ + yynn2864++ } } - r.EncodeMapStart(yynn2811) - yynn2811 = 0 + r.EncodeMapStart(yynn2864) + yynn2864 = 0 } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[0] { - yym2813 := z.EncBinary() - _ = yym2813 + if yyq2864[0] { + yym2866 := z.EncBinary() + _ = yym2866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -36261,23 +36968,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2811[0] { + if yyq2864[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2814 := z.EncBinary() - _ = yym2814 + yym2867 := z.EncBinary() + _ = yym2867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[1] { - yym2816 := z.EncBinary() - _ = yym2816 + if yyq2864[1] { + yym2869 := z.EncBinary() + _ = yym2869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -36286,23 +36993,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2811[1] { + if yyq2864[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2817 := z.EncBinary() - _ = yym2817 + yym2870 := z.EncBinary() + _ = yym2870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[2] { - yym2819 := z.EncBinary() - _ = yym2819 + if yyq2864[2] { + yym2872 := z.EncBinary() + _ = yym2872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -36311,23 +37018,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2811[2] { + if yyq2864[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2820 := z.EncBinary() - _ = yym2820 + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2811[3] { - yym2822 := z.EncBinary() - _ = yym2822 + if yyq2864[3] { + yym2875 := z.EncBinary() + _ = yym2875 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -36336,19 +37043,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2811[3] { + if yyq2864[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2823 := z.EncBinary() - _ = yym2823 + yym2876 := z.EncBinary() + _ = yym2876 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2811 || yy2arr2811 { + if yyr2864 || yy2arr2864 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36361,25 +37068,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2824 := z.DecBinary() - _ = yym2824 + yym2877 := z.DecBinary() + _ = yym2877 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2825 := r.ContainerType() - if yyct2825 == codecSelferValueTypeMap1234 { - yyl2825 := r.ReadMapStart() - if yyl2825 == 0 { + yyct2878 := r.ContainerType() + if yyct2878 == codecSelferValueTypeMap1234 { + yyl2878 := r.ReadMapStart() + if yyl2878 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2825, d) + x.codecDecodeSelfFromMap(yyl2878, d) } - } else if yyct2825 == codecSelferValueTypeArray1234 { - yyl2825 := r.ReadArrayStart() - if yyl2825 == 0 { + } else if yyct2878 == codecSelferValueTypeArray1234 { + yyl2878 := r.ReadArrayStart() + if yyl2878 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2825, d) + x.codecDecodeSelfFromArray(yyl2878, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36391,12 +37098,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2826Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2826Slc - var yyhl2826 bool = l >= 0 - for yyj2826 := 0; ; yyj2826++ { - if yyhl2826 { - if yyj2826 >= l { + var yys2879Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2879Slc + var yyhl2879 bool = l >= 0 + for yyj2879 := 0; ; yyj2879++ { + if yyhl2879 { + if yyj2879 >= l { break } } else { @@ -36405,10 +37112,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2826Slc = r.DecodeBytes(yys2826Slc, true, true) - yys2826 := string(yys2826Slc) + yys2879Slc = r.DecodeBytes(yys2879Slc, true, true) + yys2879 := string(yys2879Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2826 { + switch yys2879 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -36434,9 +37141,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2826) - } // end switch yys2826 - } // end for yyj2826 + z.DecStructFieldNotFound(-1, yys2879) + } // end switch yys2879 + } // end for yyj2879 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36444,16 +37151,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2831 int - var yyb2831 bool - var yyhl2831 bool = l >= 0 - yyj2831++ - if yyhl2831 { - yyb2831 = yyj2831 > l + var yyj2884 int + var yyb2884 bool + var yyhl2884 bool = l >= 0 + yyj2884++ + if yyhl2884 { + yyb2884 = yyj2884 > l } else { - yyb2831 = r.CheckBreak() + yyb2884 = r.CheckBreak() } - if yyb2831 { + if yyb2884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36463,13 +37170,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2831++ - if yyhl2831 { - yyb2831 = yyj2831 > l + yyj2884++ + if yyhl2884 { + yyb2884 = yyj2884 > l } else { - yyb2831 = r.CheckBreak() + yyb2884 = r.CheckBreak() } - if yyb2831 { + if yyb2884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36479,13 +37186,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2831++ - if yyhl2831 { - yyb2831 = yyj2831 > l + yyj2884++ + if yyhl2884 { + yyb2884 = yyj2884 > l } else { - yyb2831 = r.CheckBreak() + yyb2884 = r.CheckBreak() } - if yyb2831 { + if yyb2884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36495,13 +37202,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2831++ - if yyhl2831 { - yyb2831 = yyj2831 > l + yyj2884++ + if yyhl2884 { + yyb2884 = yyj2884 > l } else { - yyb2831 = r.CheckBreak() + yyb2884 = r.CheckBreak() } - if yyb2831 { + if yyb2884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36512,17 +37219,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2831++ - if yyhl2831 { - yyb2831 = yyj2831 > l + yyj2884++ + if yyhl2884 { + yyb2884 = yyj2884 > l } else { - yyb2831 = r.CheckBreak() + yyb2884 = r.CheckBreak() } - if yyb2831 { + if yyb2884 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2831-1, "") + z.DecStructFieldNotFound(yyj2884-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36534,33 +37241,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2836 := z.EncBinary() - _ = yym2836 + yym2889 := z.EncBinary() + _ = yym2889 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2837 := !z.EncBinary() - yy2arr2837 := z.EncBasicHandle().StructToArray - var yyq2837 [1]bool - _, _, _ = yysep2837, yyq2837, yy2arr2837 - const yyr2837 bool = false - var yynn2837 int - if yyr2837 || yy2arr2837 { + yysep2890 := !z.EncBinary() + yy2arr2890 := z.EncBasicHandle().StructToArray + var yyq2890 [1]bool + _, _, _ = yysep2890, yyq2890, yy2arr2890 + const yyr2890 bool = false + var yynn2890 int + if yyr2890 || yy2arr2890 { r.EncodeArrayStart(1) } else { - yynn2837 = 1 - for _, b := range yyq2837 { + yynn2890 = 1 + for _, b := range yyq2890 { if b { - yynn2837++ + yynn2890++ } } - r.EncodeMapStart(yynn2837) - yynn2837 = 0 + r.EncodeMapStart(yynn2890) + yynn2890 = 0 } - if yyr2837 || yy2arr2837 { + if yyr2890 || yy2arr2890 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2839 := z.EncBinary() - _ = yym2839 + yym2892 := z.EncBinary() + _ = yym2892 if false { } else { r.EncodeInt(int64(x.Port)) @@ -36569,14 +37276,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2840 := z.EncBinary() - _ = yym2840 + yym2893 := z.EncBinary() + _ = yym2893 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2837 || yy2arr2837 { + if yyr2890 || yy2arr2890 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36589,25 +37296,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2841 := z.DecBinary() - _ = yym2841 + yym2894 := z.DecBinary() + _ = yym2894 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2842 := r.ContainerType() - if yyct2842 == codecSelferValueTypeMap1234 { - yyl2842 := r.ReadMapStart() - if yyl2842 == 0 { + yyct2895 := r.ContainerType() + if yyct2895 == codecSelferValueTypeMap1234 { + yyl2895 := r.ReadMapStart() + if yyl2895 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2842, d) + x.codecDecodeSelfFromMap(yyl2895, d) } - } else if yyct2842 == codecSelferValueTypeArray1234 { - yyl2842 := r.ReadArrayStart() - if yyl2842 == 0 { + } else if yyct2895 == codecSelferValueTypeArray1234 { + yyl2895 := r.ReadArrayStart() + if yyl2895 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2842, d) + x.codecDecodeSelfFromArray(yyl2895, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36619,12 +37326,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2843Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2843Slc - var yyhl2843 bool = l >= 0 - for yyj2843 := 0; ; yyj2843++ { - if yyhl2843 { - if yyj2843 >= l { + var yys2896Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2896Slc + var yyhl2896 bool = l >= 0 + for yyj2896 := 0; ; yyj2896++ { + if yyhl2896 { + if yyj2896 >= l { break } } else { @@ -36633,10 +37340,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2843Slc = r.DecodeBytes(yys2843Slc, true, true) - yys2843 := string(yys2843Slc) + yys2896Slc = r.DecodeBytes(yys2896Slc, true, true) + yys2896 := string(yys2896Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2843 { + switch yys2896 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -36644,9 +37351,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2843) - } // end switch yys2843 - } // end for yyj2843 + z.DecStructFieldNotFound(-1, yys2896) + } // end switch yys2896 + } // end for yyj2896 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36654,16 +37361,16 @@ func (x *DaemonEndpoint) 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 yyj2898 int + var yyb2898 bool + var yyhl2898 bool = l >= 0 + yyj2898++ + if yyhl2898 { + yyb2898 = yyj2898 > l } else { - yyb2845 = r.CheckBreak() + yyb2898 = r.CheckBreak() } - if yyb2845 { + if yyb2898 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36674,17 +37381,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2845++ - if yyhl2845 { - yyb2845 = yyj2845 > l + yyj2898++ + if yyhl2898 { + yyb2898 = yyj2898 > l } else { - yyb2845 = r.CheckBreak() + yyb2898 = r.CheckBreak() } - if yyb2845 { + if yyb2898 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2845-1, "") + z.DecStructFieldNotFound(yyj2898-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36696,48 +37403,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2847 := z.EncBinary() - _ = yym2847 + yym2900 := z.EncBinary() + _ = yym2900 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2848 := !z.EncBinary() - yy2arr2848 := z.EncBasicHandle().StructToArray - var yyq2848 [1]bool - _, _, _ = yysep2848, yyq2848, yy2arr2848 - const yyr2848 bool = false - yyq2848[0] = true - var yynn2848 int - if yyr2848 || yy2arr2848 { + yysep2901 := !z.EncBinary() + yy2arr2901 := z.EncBasicHandle().StructToArray + var yyq2901 [1]bool + _, _, _ = yysep2901, yyq2901, yy2arr2901 + const yyr2901 bool = false + yyq2901[0] = true + var yynn2901 int + if yyr2901 || yy2arr2901 { r.EncodeArrayStart(1) } else { - yynn2848 = 0 - for _, b := range yyq2848 { + yynn2901 = 0 + for _, b := range yyq2901 { if b { - yynn2848++ + yynn2901++ } } - r.EncodeMapStart(yynn2848) - yynn2848 = 0 + r.EncodeMapStart(yynn2901) + yynn2901 = 0 } - if yyr2848 || yy2arr2848 { + if yyr2901 || yy2arr2901 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2848[0] { - yy2850 := &x.KubeletEndpoint - yy2850.CodecEncodeSelf(e) + if yyq2901[0] { + yy2903 := &x.KubeletEndpoint + yy2903.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2848[0] { + if yyq2901[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2851 := &x.KubeletEndpoint - yy2851.CodecEncodeSelf(e) + yy2904 := &x.KubeletEndpoint + yy2904.CodecEncodeSelf(e) } } - if yyr2848 || yy2arr2848 { + if yyr2901 || yy2arr2901 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36750,25 +37457,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2852 := z.DecBinary() - _ = yym2852 + yym2905 := z.DecBinary() + _ = yym2905 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2853 := r.ContainerType() - if yyct2853 == codecSelferValueTypeMap1234 { - yyl2853 := r.ReadMapStart() - if yyl2853 == 0 { + yyct2906 := r.ContainerType() + if yyct2906 == codecSelferValueTypeMap1234 { + yyl2906 := r.ReadMapStart() + if yyl2906 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2853, d) + x.codecDecodeSelfFromMap(yyl2906, d) } - } else if yyct2853 == codecSelferValueTypeArray1234 { - yyl2853 := r.ReadArrayStart() - if yyl2853 == 0 { + } else if yyct2906 == codecSelferValueTypeArray1234 { + yyl2906 := r.ReadArrayStart() + if yyl2906 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2853, d) + x.codecDecodeSelfFromArray(yyl2906, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36780,12 +37487,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2854Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2854Slc - var yyhl2854 bool = l >= 0 - for yyj2854 := 0; ; yyj2854++ { - if yyhl2854 { - if yyj2854 >= l { + var yys2907Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2907Slc + var yyhl2907 bool = l >= 0 + for yyj2907 := 0; ; yyj2907++ { + if yyhl2907 { + if yyj2907 >= l { break } } else { @@ -36794,21 +37501,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2854Slc = r.DecodeBytes(yys2854Slc, true, true) - yys2854 := string(yys2854Slc) + yys2907Slc = r.DecodeBytes(yys2907Slc, true, true) + yys2907 := string(yys2907Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2854 { + switch yys2907 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2855 := &x.KubeletEndpoint - yyv2855.CodecDecodeSelf(d) + yyv2908 := &x.KubeletEndpoint + yyv2908.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2854) - } // end switch yys2854 - } // end for yyj2854 + z.DecStructFieldNotFound(-1, yys2907) + } // end switch yys2907 + } // end for yyj2907 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36816,16 +37523,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2856 int - var yyb2856 bool - var yyhl2856 bool = l >= 0 - yyj2856++ - if yyhl2856 { - yyb2856 = yyj2856 > l + var yyj2909 int + var yyb2909 bool + var yyhl2909 bool = l >= 0 + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2856 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2856 { + if yyb2909 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36833,21 +37540,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2857 := &x.KubeletEndpoint - yyv2857.CodecDecodeSelf(d) + yyv2910 := &x.KubeletEndpoint + yyv2910.CodecDecodeSelf(d) } for { - yyj2856++ - if yyhl2856 { - yyb2856 = yyj2856 > l + yyj2909++ + if yyhl2909 { + yyb2909 = yyj2909 > l } else { - yyb2856 = r.CheckBreak() + yyb2909 = r.CheckBreak() } - if yyb2856 { + if yyb2909 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2856-1, "") + z.DecStructFieldNotFound(yyj2909-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36859,33 +37566,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2858 := z.EncBinary() - _ = yym2858 + yym2911 := z.EncBinary() + _ = yym2911 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2859 := !z.EncBinary() - yy2arr2859 := z.EncBasicHandle().StructToArray - var yyq2859 [10]bool - _, _, _ = yysep2859, yyq2859, yy2arr2859 - const yyr2859 bool = false - var yynn2859 int - if yyr2859 || yy2arr2859 { + yysep2912 := !z.EncBinary() + yy2arr2912 := z.EncBasicHandle().StructToArray + var yyq2912 [10]bool + _, _, _ = yysep2912, yyq2912, yy2arr2912 + const yyr2912 bool = false + var yynn2912 int + if yyr2912 || yy2arr2912 { r.EncodeArrayStart(10) } else { - yynn2859 = 10 - for _, b := range yyq2859 { + yynn2912 = 10 + for _, b := range yyq2912 { if b { - yynn2859++ + yynn2912++ } } - r.EncodeMapStart(yynn2859) - yynn2859 = 0 + r.EncodeMapStart(yynn2912) + yynn2912 = 0 } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2861 := z.EncBinary() - _ = yym2861 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -36894,17 +37601,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2862 := z.EncBinary() - _ = yym2862 + yym2915 := z.EncBinary() + _ = yym2915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2864 := z.EncBinary() - _ = yym2864 + yym2917 := z.EncBinary() + _ = yym2917 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -36913,17 +37620,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2865 := z.EncBinary() - _ = yym2865 + yym2918 := z.EncBinary() + _ = yym2918 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2867 := z.EncBinary() - _ = yym2867 + yym2920 := z.EncBinary() + _ = yym2920 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -36932,17 +37639,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2868 := z.EncBinary() - _ = yym2868 + yym2921 := z.EncBinary() + _ = yym2921 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2870 := z.EncBinary() - _ = yym2870 + yym2923 := z.EncBinary() + _ = yym2923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -36951,17 +37658,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2871 := z.EncBinary() - _ = yym2871 + yym2924 := z.EncBinary() + _ = yym2924 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2873 := z.EncBinary() - _ = yym2873 + yym2926 := z.EncBinary() + _ = yym2926 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -36970,17 +37677,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2874 := z.EncBinary() - _ = yym2874 + yym2927 := z.EncBinary() + _ = yym2927 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2876 := z.EncBinary() - _ = yym2876 + yym2929 := z.EncBinary() + _ = yym2929 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36989,17 +37696,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2877 := z.EncBinary() - _ = yym2877 + yym2930 := z.EncBinary() + _ = yym2930 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2879 := z.EncBinary() - _ = yym2879 + yym2932 := z.EncBinary() + _ = yym2932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -37008,17 +37715,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2880 := z.EncBinary() - _ = yym2880 + yym2933 := z.EncBinary() + _ = yym2933 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2882 := z.EncBinary() - _ = yym2882 + yym2935 := z.EncBinary() + _ = yym2935 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -37027,17 +37734,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2883 := z.EncBinary() - _ = yym2883 + yym2936 := z.EncBinary() + _ = yym2936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2885 := z.EncBinary() - _ = yym2885 + yym2938 := z.EncBinary() + _ = yym2938 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -37046,17 +37753,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2886 := z.EncBinary() - _ = yym2886 + yym2939 := z.EncBinary() + _ = yym2939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2888 := z.EncBinary() - _ = yym2888 + yym2941 := z.EncBinary() + _ = yym2941 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -37065,14 +37772,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2889 := z.EncBinary() - _ = yym2889 + yym2942 := z.EncBinary() + _ = yym2942 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2859 || yy2arr2859 { + if yyr2912 || yy2arr2912 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37085,25 +37792,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2890 := z.DecBinary() - _ = yym2890 + yym2943 := z.DecBinary() + _ = yym2943 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2891 := r.ContainerType() - if yyct2891 == codecSelferValueTypeMap1234 { - yyl2891 := r.ReadMapStart() - if yyl2891 == 0 { + yyct2944 := r.ContainerType() + if yyct2944 == codecSelferValueTypeMap1234 { + yyl2944 := r.ReadMapStart() + if yyl2944 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2891, d) + x.codecDecodeSelfFromMap(yyl2944, d) } - } else if yyct2891 == codecSelferValueTypeArray1234 { - yyl2891 := r.ReadArrayStart() - if yyl2891 == 0 { + } else if yyct2944 == codecSelferValueTypeArray1234 { + yyl2944 := r.ReadArrayStart() + if yyl2944 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2891, d) + x.codecDecodeSelfFromArray(yyl2944, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37115,12 +37822,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2892Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2892Slc - var yyhl2892 bool = l >= 0 - for yyj2892 := 0; ; yyj2892++ { - if yyhl2892 { - if yyj2892 >= l { + var yys2945Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2945Slc + var yyhl2945 bool = l >= 0 + for yyj2945 := 0; ; yyj2945++ { + if yyhl2945 { + if yyj2945 >= l { break } } else { @@ -37129,10 +37836,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2892Slc = r.DecodeBytes(yys2892Slc, true, true) - yys2892 := string(yys2892Slc) + yys2945Slc = r.DecodeBytes(yys2945Slc, true, true) + yys2945 := string(yys2945Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2892 { + switch yys2945 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -37194,9 +37901,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2892) - } // end switch yys2892 - } // end for yyj2892 + z.DecStructFieldNotFound(-1, yys2945) + } // end switch yys2945 + } // end for yyj2945 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37204,16 +37911,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2903 int - var yyb2903 bool - var yyhl2903 bool = l >= 0 - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + var yyj2956 int + var yyb2956 bool + var yyhl2956 bool = l >= 0 + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37223,13 +37930,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37239,13 +37946,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37255,13 +37962,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37271,13 +37978,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37287,13 +37994,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37303,13 +38010,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37319,13 +38026,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37335,13 +38042,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37351,13 +38058,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37368,17 +38075,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2903++ - if yyhl2903 { - yyb2903 = yyj2903 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2903 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2903 { + if yyb2956 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2903-1, "") + z.DecStructFieldNotFound(yyj2956-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37390,42 +38097,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2914 := z.EncBinary() - _ = yym2914 + yym2967 := z.EncBinary() + _ = yym2967 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2915 := !z.EncBinary() - yy2arr2915 := z.EncBasicHandle().StructToArray - var yyq2915 [10]bool - _, _, _ = yysep2915, yyq2915, yy2arr2915 - const yyr2915 bool = false - yyq2915[0] = len(x.Capacity) != 0 - yyq2915[1] = len(x.Allocatable) != 0 - yyq2915[2] = x.Phase != "" - yyq2915[3] = len(x.Conditions) != 0 - yyq2915[4] = len(x.Addresses) != 0 - yyq2915[5] = true - yyq2915[6] = true - yyq2915[7] = len(x.Images) != 0 - yyq2915[8] = len(x.VolumesInUse) != 0 - yyq2915[9] = len(x.VolumesAttached) != 0 - var yynn2915 int - if yyr2915 || yy2arr2915 { + yysep2968 := !z.EncBinary() + yy2arr2968 := z.EncBasicHandle().StructToArray + var yyq2968 [10]bool + _, _, _ = yysep2968, yyq2968, yy2arr2968 + const yyr2968 bool = false + yyq2968[0] = len(x.Capacity) != 0 + yyq2968[1] = len(x.Allocatable) != 0 + yyq2968[2] = x.Phase != "" + yyq2968[3] = len(x.Conditions) != 0 + yyq2968[4] = len(x.Addresses) != 0 + yyq2968[5] = true + yyq2968[6] = true + yyq2968[7] = len(x.Images) != 0 + yyq2968[8] = len(x.VolumesInUse) != 0 + yyq2968[9] = len(x.VolumesAttached) != 0 + var yynn2968 int + if yyr2968 || yy2arr2968 { r.EncodeArrayStart(10) } else { - yynn2915 = 0 - for _, b := range yyq2915 { + yynn2968 = 0 + for _, b := range yyq2968 { if b { - yynn2915++ + yynn2968++ } } - r.EncodeMapStart(yynn2915) - yynn2915 = 0 + r.EncodeMapStart(yynn2968) + yynn2968 = 0 } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[0] { + if yyq2968[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -37435,7 +38142,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[0] { + if yyq2968[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37446,9 +38153,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[1] { + if yyq2968[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -37458,7 +38165,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[1] { + if yyq2968[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37469,29 +38176,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[2] { + if yyq2968[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2915[2] { + if yyq2968[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[3] { + if yyq2968[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2920 := z.EncBinary() - _ = yym2920 + yym2973 := z.EncBinary() + _ = yym2973 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37501,15 +38208,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[3] { + if yyq2968[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2921 := z.EncBinary() - _ = yym2921 + yym2974 := z.EncBinary() + _ = yym2974 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -37517,14 +38224,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[4] { + if yyq2968[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2923 := z.EncBinary() - _ = yym2923 + yym2976 := z.EncBinary() + _ = yym2976 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37534,15 +38241,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[4] { + if yyq2968[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2924 := z.EncBinary() - _ = yym2924 + yym2977 := z.EncBinary() + _ = yym2977 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -37550,48 +38257,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[5] { - yy2926 := &x.DaemonEndpoints - yy2926.CodecEncodeSelf(e) + if yyq2968[5] { + yy2979 := &x.DaemonEndpoints + yy2979.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2915[5] { + if yyq2968[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2927 := &x.DaemonEndpoints - yy2927.CodecEncodeSelf(e) + yy2980 := &x.DaemonEndpoints + yy2980.CodecEncodeSelf(e) } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[6] { - yy2929 := &x.NodeInfo - yy2929.CodecEncodeSelf(e) + if yyq2968[6] { + yy2982 := &x.NodeInfo + yy2982.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2915[6] { + if yyq2968[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2930 := &x.NodeInfo - yy2930.CodecEncodeSelf(e) + yy2983 := &x.NodeInfo + yy2983.CodecEncodeSelf(e) } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[7] { + if yyq2968[7] { if x.Images == nil { r.EncodeNil() } else { - yym2932 := z.EncBinary() - _ = yym2932 + yym2985 := z.EncBinary() + _ = yym2985 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37601,15 +38308,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[7] { + if yyq2968[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2933 := z.EncBinary() - _ = yym2933 + yym2986 := z.EncBinary() + _ = yym2986 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -37617,14 +38324,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[8] { + if yyq2968[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2935 := z.EncBinary() - _ = yym2935 + yym2988 := z.EncBinary() + _ = yym2988 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37634,15 +38341,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[8] { + if yyq2968[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2936 := z.EncBinary() - _ = yym2936 + yym2989 := z.EncBinary() + _ = yym2989 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -37650,14 +38357,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2915[9] { + if yyq2968[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2938 := z.EncBinary() - _ = yym2938 + yym2991 := z.EncBinary() + _ = yym2991 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37667,15 +38374,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2915[9] { + if yyq2968[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2939 := z.EncBinary() - _ = yym2939 + yym2992 := z.EncBinary() + _ = yym2992 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -37683,7 +38390,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2915 || yy2arr2915 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37696,25 +38403,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2940 := z.DecBinary() - _ = yym2940 + yym2993 := z.DecBinary() + _ = yym2993 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2941 := r.ContainerType() - if yyct2941 == codecSelferValueTypeMap1234 { - yyl2941 := r.ReadMapStart() - if yyl2941 == 0 { + yyct2994 := r.ContainerType() + if yyct2994 == codecSelferValueTypeMap1234 { + yyl2994 := r.ReadMapStart() + if yyl2994 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2941, d) + x.codecDecodeSelfFromMap(yyl2994, d) } - } else if yyct2941 == codecSelferValueTypeArray1234 { - yyl2941 := r.ReadArrayStart() - if yyl2941 == 0 { + } else if yyct2994 == codecSelferValueTypeArray1234 { + yyl2994 := r.ReadArrayStart() + if yyl2994 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2941, d) + x.codecDecodeSelfFromArray(yyl2994, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37726,12 +38433,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2942Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2942Slc - var yyhl2942 bool = l >= 0 - for yyj2942 := 0; ; yyj2942++ { - if yyhl2942 { - if yyj2942 >= l { + var yys2995Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2995Slc + var yyhl2995 bool = l >= 0 + for yyj2995 := 0; ; yyj2995++ { + if yyhl2995 { + if yyj2995 >= l { break } } else { @@ -37740,23 +38447,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2942Slc = r.DecodeBytes(yys2942Slc, true, true) - yys2942 := string(yys2942Slc) + yys2995Slc = r.DecodeBytes(yys2995Slc, true, true) + yys2995 := string(yys2995Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2942 { + switch yys2995 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2943 := &x.Capacity - yyv2943.CodecDecodeSelf(d) + yyv2996 := &x.Capacity + yyv2996.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2944 := &x.Allocatable - yyv2944.CodecDecodeSelf(d) + yyv2997 := &x.Allocatable + yyv2997.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -37768,80 +38475,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2946 := &x.Conditions - yym2947 := z.DecBinary() - _ = yym2947 + yyv2999 := &x.Conditions + yym3000 := z.DecBinary() + _ = yym3000 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2946), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2999), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2948 := &x.Addresses - yym2949 := z.DecBinary() - _ = yym2949 + yyv3001 := &x.Addresses + yym3002 := z.DecBinary() + _ = yym3002 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2948), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3001), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2950 := &x.DaemonEndpoints - yyv2950.CodecDecodeSelf(d) + yyv3003 := &x.DaemonEndpoints + yyv3003.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2951 := &x.NodeInfo - yyv2951.CodecDecodeSelf(d) + yyv3004 := &x.NodeInfo + yyv3004.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2952 := &x.Images - yym2953 := z.DecBinary() - _ = yym2953 + yyv3005 := &x.Images + yym3006 := z.DecBinary() + _ = yym3006 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2952), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3005), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2954 := &x.VolumesInUse - yym2955 := z.DecBinary() - _ = yym2955 + yyv3007 := &x.VolumesInUse + yym3008 := z.DecBinary() + _ = yym3008 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2954), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3007), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2956 := &x.VolumesAttached - yym2957 := z.DecBinary() - _ = yym2957 + yyv3009 := &x.VolumesAttached + yym3010 := z.DecBinary() + _ = yym3010 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2956), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3009), d) } } default: - z.DecStructFieldNotFound(-1, yys2942) - } // end switch yys2942 - } // end for yyj2942 + z.DecStructFieldNotFound(-1, yys2995) + } // end switch yys2995 + } // end for yyj2995 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37849,16 +38556,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2958 int - var yyb2958 bool - var yyhl2958 bool = l >= 0 - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + var yyj3011 int + var yyb3011 bool + var yyhl3011 bool = l >= 0 + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37866,16 +38573,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2959 := &x.Capacity - yyv2959.CodecDecodeSelf(d) + yyv3012 := &x.Capacity + yyv3012.CodecDecodeSelf(d) } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37883,16 +38590,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2960 := &x.Allocatable - yyv2960.CodecDecodeSelf(d) + yyv3013 := &x.Allocatable + yyv3013.CodecDecodeSelf(d) } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37902,13 +38609,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37916,21 +38623,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2962 := &x.Conditions - yym2963 := z.DecBinary() - _ = yym2963 + yyv3015 := &x.Conditions + yym3016 := z.DecBinary() + _ = yym3016 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2962), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3015), d) } } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37938,21 +38645,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2964 := &x.Addresses - yym2965 := z.DecBinary() - _ = yym2965 + yyv3017 := &x.Addresses + yym3018 := z.DecBinary() + _ = yym3018 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2964), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3017), d) } } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37960,16 +38667,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2966 := &x.DaemonEndpoints - yyv2966.CodecDecodeSelf(d) + yyv3019 := &x.DaemonEndpoints + yyv3019.CodecDecodeSelf(d) } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37977,16 +38684,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2967 := &x.NodeInfo - yyv2967.CodecDecodeSelf(d) + yyv3020 := &x.NodeInfo + yyv3020.CodecDecodeSelf(d) } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37994,21 +38701,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2968 := &x.Images - yym2969 := z.DecBinary() - _ = yym2969 + yyv3021 := &x.Images + yym3022 := z.DecBinary() + _ = yym3022 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2968), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3021), d) } } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38016,21 +38723,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2970 := &x.VolumesInUse - yym2971 := z.DecBinary() - _ = yym2971 + yyv3023 := &x.VolumesInUse + yym3024 := z.DecBinary() + _ = yym3024 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2970), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3023), d) } } - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38038,26 +38745,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2972 := &x.VolumesAttached - yym2973 := z.DecBinary() - _ = yym2973 + yyv3025 := &x.VolumesAttached + yym3026 := z.DecBinary() + _ = yym3026 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2972), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3025), d) } } for { - yyj2958++ - if yyhl2958 { - yyb2958 = yyj2958 > l + yyj3011++ + if yyhl3011 { + yyb3011 = yyj3011 > l } else { - yyb2958 = r.CheckBreak() + yyb3011 = r.CheckBreak() } - if yyb2958 { + if yyb3011 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2958-1, "") + z.DecStructFieldNotFound(yyj3011-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38066,8 +38773,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2974 := z.EncBinary() - _ = yym2974 + yym3027 := z.EncBinary() + _ = yym3027 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38079,8 +38786,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2975 := z.DecBinary() - _ = yym2975 + yym3028 := z.DecBinary() + _ = yym3028 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38095,30 +38802,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2976 := z.EncBinary() - _ = yym2976 + yym3029 := z.EncBinary() + _ = yym3029 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2977 := !z.EncBinary() - yy2arr2977 := z.EncBasicHandle().StructToArray - var yyq2977 [2]bool - _, _, _ = yysep2977, yyq2977, yy2arr2977 - const yyr2977 bool = false - var yynn2977 int - if yyr2977 || yy2arr2977 { + yysep3030 := !z.EncBinary() + yy2arr3030 := z.EncBasicHandle().StructToArray + var yyq3030 [2]bool + _, _, _ = yysep3030, yyq3030, yy2arr3030 + const yyr3030 bool = false + var yynn3030 int + if yyr3030 || yy2arr3030 { r.EncodeArrayStart(2) } else { - yynn2977 = 2 - for _, b := range yyq2977 { + yynn3030 = 2 + for _, b := range yyq3030 { if b { - yynn2977++ + yynn3030++ } } - r.EncodeMapStart(yynn2977) - yynn2977 = 0 + r.EncodeMapStart(yynn3030) + yynn3030 = 0 } - if yyr2977 || yy2arr2977 { + if yyr3030 || yy2arr3030 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -38127,10 +38834,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2977 || yy2arr2977 { + if yyr3030 || yy2arr3030 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2980 := z.EncBinary() - _ = yym2980 + yym3033 := z.EncBinary() + _ = yym3033 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -38139,14 +38846,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2981 := z.EncBinary() - _ = yym2981 + yym3034 := z.EncBinary() + _ = yym3034 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2977 || yy2arr2977 { + if yyr3030 || yy2arr3030 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38159,25 +38866,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2982 := z.DecBinary() - _ = yym2982 + yym3035 := z.DecBinary() + _ = yym3035 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2983 := r.ContainerType() - if yyct2983 == codecSelferValueTypeMap1234 { - yyl2983 := r.ReadMapStart() - if yyl2983 == 0 { + yyct3036 := r.ContainerType() + if yyct3036 == codecSelferValueTypeMap1234 { + yyl3036 := r.ReadMapStart() + if yyl3036 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2983, d) + x.codecDecodeSelfFromMap(yyl3036, d) } - } else if yyct2983 == codecSelferValueTypeArray1234 { - yyl2983 := r.ReadArrayStart() - if yyl2983 == 0 { + } else if yyct3036 == codecSelferValueTypeArray1234 { + yyl3036 := r.ReadArrayStart() + if yyl3036 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2983, d) + x.codecDecodeSelfFromArray(yyl3036, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38189,12 +38896,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2984Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2984Slc - var yyhl2984 bool = l >= 0 - for yyj2984 := 0; ; yyj2984++ { - if yyhl2984 { - if yyj2984 >= 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 { @@ -38203,10 +38910,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2984Slc = r.DecodeBytes(yys2984Slc, true, true) - yys2984 := string(yys2984Slc) + yys3037Slc = r.DecodeBytes(yys3037Slc, true, true) + yys3037 := string(yys3037Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2984 { + switch yys3037 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -38220,724 +38927,13 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2984) - } // end switch yys2984 - } // end for yyj2984 + z.DecStructFieldNotFound(-1, yys3037) + } // end switch yys3037 + } // end for yyj3037 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2987 int - var yyb2987 bool - var yyhl2987 bool = l >= 0 - yyj2987++ - if yyhl2987 { - yyb2987 = yyj2987 > l - } else { - yyb2987 = r.CheckBreak() - } - if yyb2987 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = UniqueVolumeName(r.DecodeString()) - } - yyj2987++ - if yyhl2987 { - yyb2987 = yyj2987 > l - } else { - yyb2987 = r.CheckBreak() - } - if yyb2987 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.DevicePath = "" - } else { - x.DevicePath = string(r.DecodeString()) - } - for { - yyj2987++ - if yyhl2987 { - yyb2987 = yyj2987 > l - } else { - yyb2987 = r.CheckBreak() - } - if yyb2987 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2987-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2990 := z.EncBinary() - _ = yym2990 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2991 := !z.EncBinary() - yy2arr2991 := z.EncBasicHandle().StructToArray - var yyq2991 [1]bool - _, _, _ = yysep2991, yyq2991, yy2arr2991 - const yyr2991 bool = false - yyq2991[0] = len(x.PreferAvoidPods) != 0 - var yynn2991 int - if yyr2991 || yy2arr2991 { - r.EncodeArrayStart(1) - } else { - yynn2991 = 0 - for _, b := range yyq2991 { - if b { - yynn2991++ - } - } - r.EncodeMapStart(yynn2991) - yynn2991 = 0 - } - if yyr2991 || yy2arr2991 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2991[0] { - if x.PreferAvoidPods == nil { - r.EncodeNil() - } else { - yym2993 := z.EncBinary() - _ = yym2993 - if false { - } else { - h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2991[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.PreferAvoidPods == nil { - r.EncodeNil() - } else { - yym2994 := z.EncBinary() - _ = yym2994 - if false { - } else { - h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) - } - } - } - } - if yyr2991 || yy2arr2991 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2995 := z.DecBinary() - _ = yym2995 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2996 := r.ContainerType() - if yyct2996 == codecSelferValueTypeMap1234 { - yyl2996 := r.ReadMapStart() - if yyl2996 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2996, d) - } - } else if yyct2996 == codecSelferValueTypeArray1234 { - yyl2996 := r.ReadArrayStart() - if yyl2996 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2996, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2997Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2997Slc - var yyhl2997 bool = l >= 0 - for yyj2997 := 0; ; yyj2997++ { - if yyhl2997 { - if yyj2997 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2997Slc = r.DecodeBytes(yys2997Slc, true, true) - yys2997 := string(yys2997Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2997 { - case "preferAvoidPods": - if r.TryDecodeAsNil() { - x.PreferAvoidPods = nil - } else { - yyv2998 := &x.PreferAvoidPods - yym2999 := z.DecBinary() - _ = yym2999 - if false { - } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2998), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2997) - } // end switch yys2997 - } // end for yyj2997 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3000 int - var yyb3000 bool - var yyhl3000 bool = l >= 0 - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l - } else { - yyb3000 = r.CheckBreak() - } - if yyb3000 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.PreferAvoidPods = nil - } else { - yyv3001 := &x.PreferAvoidPods - yym3002 := z.DecBinary() - _ = yym3002 - if false { - } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3001), d) - } - } - for { - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l - } else { - yyb3000 = r.CheckBreak() - } - if yyb3000 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3000-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3003 := z.EncBinary() - _ = yym3003 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3004 := !z.EncBinary() - yy2arr3004 := z.EncBasicHandle().StructToArray - var yyq3004 [4]bool - _, _, _ = yysep3004, yyq3004, yy2arr3004 - const yyr3004 bool = false - yyq3004[1] = true - yyq3004[2] = x.Reason != "" - yyq3004[3] = x.Message != "" - var yynn3004 int - if yyr3004 || yy2arr3004 { - r.EncodeArrayStart(4) - } else { - yynn3004 = 1 - for _, b := range yyq3004 { - if b { - yynn3004++ - } - } - r.EncodeMapStart(yynn3004) - yynn3004 = 0 - } - if yyr3004 || yy2arr3004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3006 := &x.PodSignature - yy3006.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podSignature")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3007 := &x.PodSignature - yy3007.CodecEncodeSelf(e) - } - if yyr3004 || yy2arr3004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3004[1] { - yy3009 := &x.EvictionTime - yym3010 := z.EncBinary() - _ = yym3010 - if false { - } else if z.HasExtensions() && z.EncExt(yy3009) { - } else if yym3010 { - z.EncBinaryMarshal(yy3009) - } else if !yym3010 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3009) - } else { - z.EncFallback(yy3009) - } - } else { - r.EncodeNil() - } - } else { - if yyq3004[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3011 := &x.EvictionTime - yym3012 := z.EncBinary() - _ = yym3012 - if false { - } else if z.HasExtensions() && z.EncExt(yy3011) { - } else if yym3012 { - z.EncBinaryMarshal(yy3011) - } else if !yym3012 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3011) - } else { - z.EncFallback(yy3011) - } - } - } - if yyr3004 || yy2arr3004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3004[2] { - yym3014 := z.EncBinary() - _ = yym3014 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3004[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3015 := z.EncBinary() - _ = yym3015 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr3004 || yy2arr3004 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3004[3] { - yym3017 := z.EncBinary() - _ = yym3017 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3004[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3018 := z.EncBinary() - _ = yym3018 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr3004 || yy2arr3004 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3019 := z.DecBinary() - _ = yym3019 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3020 := r.ContainerType() - if yyct3020 == codecSelferValueTypeMap1234 { - yyl3020 := r.ReadMapStart() - if yyl3020 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3020, d) - } - } else if yyct3020 == codecSelferValueTypeArray1234 { - yyl3020 := r.ReadArrayStart() - if yyl3020 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3020, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3021Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3021Slc - var yyhl3021 bool = l >= 0 - for yyj3021 := 0; ; yyj3021++ { - if yyhl3021 { - if yyj3021 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3021Slc = r.DecodeBytes(yys3021Slc, true, true) - yys3021 := string(yys3021Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3021 { - case "podSignature": - if r.TryDecodeAsNil() { - x.PodSignature = PodSignature{} - } else { - yyv3022 := &x.PodSignature - yyv3022.CodecDecodeSelf(d) - } - case "evictionTime": - if r.TryDecodeAsNil() { - x.EvictionTime = pkg2_unversioned.Time{} - } else { - yyv3023 := &x.EvictionTime - yym3024 := z.DecBinary() - _ = yym3024 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3023) { - } else if yym3024 { - z.DecBinaryUnmarshal(yyv3023) - } else if !yym3024 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3023) - } else { - z.DecFallback(yyv3023, false) - } - } - case "reason": - if r.TryDecodeAsNil() { - x.Reason = "" - } else { - x.Reason = string(r.DecodeString()) - } - case "message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3021) - } // end switch yys3021 - } // end for yyj3021 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3027 int - var yyb3027 bool - var yyhl3027 bool = l >= 0 - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l - } else { - yyb3027 = r.CheckBreak() - } - if yyb3027 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.PodSignature = PodSignature{} - } else { - yyv3028 := &x.PodSignature - yyv3028.CodecDecodeSelf(d) - } - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l - } else { - yyb3027 = r.CheckBreak() - } - if yyb3027 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.EvictionTime = pkg2_unversioned.Time{} - } else { - yyv3029 := &x.EvictionTime - yym3030 := z.DecBinary() - _ = yym3030 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3029) { - } else if yym3030 { - z.DecBinaryUnmarshal(yyv3029) - } else if !yym3030 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3029) - } else { - z.DecFallback(yyv3029, false) - } - } - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l - } else { - yyb3027 = r.CheckBreak() - } - if yyb3027 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reason = "" - } else { - x.Reason = string(r.DecodeString()) - } - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l - } else { - yyb3027 = r.CheckBreak() - } - if yyb3027 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - for { - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l - } else { - yyb3027 = r.CheckBreak() - } - if yyb3027 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3027-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3033 := z.EncBinary() - _ = yym3033 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3034 := !z.EncBinary() - yy2arr3034 := z.EncBasicHandle().StructToArray - var yyq3034 [1]bool - _, _, _ = yysep3034, yyq3034, yy2arr3034 - const yyr3034 bool = false - yyq3034[0] = x.PodController != nil - var yynn3034 int - if yyr3034 || yy2arr3034 { - r.EncodeArrayStart(1) - } else { - yynn3034 = 0 - for _, b := range yyq3034 { - if b { - yynn3034++ - } - } - r.EncodeMapStart(yynn3034) - yynn3034 = 0 - } - if yyr3034 || yy2arr3034 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3034[0] { - if x.PodController == nil { - r.EncodeNil() - } else { - x.PodController.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3034[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podController")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.PodController == nil { - r.EncodeNil() - } else { - x.PodController.CodecEncodeSelf(e) - } - } - } - if yyr3034 || yy2arr3034 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3036 := z.DecBinary() - _ = yym3036 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3037 := r.ContainerType() - if yyct3037 == codecSelferValueTypeMap1234 { - yyl3037 := r.ReadMapStart() - if yyl3037 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3037, d) - } - } else if yyct3037 == codecSelferValueTypeArray1234 { - yyl3037 := r.ReadArrayStart() - if yyl3037 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3037, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3038Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3038Slc - var yyhl3038 bool = l >= 0 - for yyj3038 := 0; ; yyj3038++ { - if yyhl3038 { - if yyj3038 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3038Slc = r.DecodeBytes(yys3038Slc, true, true) - yys3038 := string(yys3038Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3038 { - case "podController": - if r.TryDecodeAsNil() { - if x.PodController != nil { - x.PodController = nil - } - } else { - if x.PodController == nil { - x.PodController = new(OwnerReference) - } - x.PodController.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3038) - } // end switch yys3038 - } // end for yyj3038 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -38956,14 +38952,25 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - if x.PodController != nil { - x.PodController = nil - } + x.Name = "" } else { - if x.PodController == nil { - x.PodController = new(OwnerReference) - } - x.PodController.CodecDecodeSelf(d) + x.Name = UniqueVolumeName(r.DecodeString()) + } + yyj3040++ + if yyhl3040 { + yyb3040 = yyj3040 > l + } else { + yyb3040 = r.CheckBreak() + } + if yyb3040 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DevicePath = "" + } else { + x.DevicePath = string(r.DecodeString()) } for { yyj3040++ @@ -38981,6 +38988,706 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3043 := z.EncBinary() + _ = yym3043 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3044 := !z.EncBinary() + yy2arr3044 := z.EncBasicHandle().StructToArray + var yyq3044 [1]bool + _, _, _ = yysep3044, yyq3044, yy2arr3044 + const yyr3044 bool = false + yyq3044[0] = len(x.PreferAvoidPods) != 0 + var yynn3044 int + if yyr3044 || yy2arr3044 { + r.EncodeArrayStart(1) + } else { + yynn3044 = 0 + for _, b := range yyq3044 { + if b { + yynn3044++ + } + } + r.EncodeMapStart(yynn3044) + yynn3044 = 0 + } + if yyr3044 || yy2arr3044 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3044[0] { + if x.PreferAvoidPods == nil { + r.EncodeNil() + } else { + yym3046 := z.EncBinary() + _ = yym3046 + if false { + } else { + h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3044[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.PreferAvoidPods == nil { + r.EncodeNil() + } else { + yym3047 := z.EncBinary() + _ = yym3047 + if false { + } else { + h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) + } + } + } + } + if yyr3044 || yy2arr3044 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3048 := z.DecBinary() + _ = yym3048 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3049 := r.ContainerType() + if yyct3049 == codecSelferValueTypeMap1234 { + yyl3049 := r.ReadMapStart() + if yyl3049 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3049, d) + } + } else if yyct3049 == codecSelferValueTypeArray1234 { + yyl3049 := r.ReadArrayStart() + if yyl3049 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3049, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3050Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3050Slc + var yyhl3050 bool = l >= 0 + for yyj3050 := 0; ; yyj3050++ { + if yyhl3050 { + if yyj3050 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3050Slc = r.DecodeBytes(yys3050Slc, true, true) + yys3050 := string(yys3050Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3050 { + case "preferAvoidPods": + if r.TryDecodeAsNil() { + x.PreferAvoidPods = nil + } else { + yyv3051 := &x.PreferAvoidPods + yym3052 := z.DecBinary() + _ = yym3052 + if false { + } else { + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3051), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3050) + } // end switch yys3050 + } // end for yyj3050 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3053 int + var yyb3053 bool + var yyhl3053 bool = l >= 0 + yyj3053++ + if yyhl3053 { + yyb3053 = yyj3053 > l + } else { + yyb3053 = r.CheckBreak() + } + if yyb3053 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.PreferAvoidPods = nil + } else { + yyv3054 := &x.PreferAvoidPods + yym3055 := z.DecBinary() + _ = yym3055 + if false { + } else { + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3054), d) + } + } + for { + yyj3053++ + if yyhl3053 { + yyb3053 = yyj3053 > l + } else { + yyb3053 = r.CheckBreak() + } + if yyb3053 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3053-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3056 := z.EncBinary() + _ = yym3056 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3057 := !z.EncBinary() + yy2arr3057 := z.EncBasicHandle().StructToArray + var yyq3057 [4]bool + _, _, _ = yysep3057, yyq3057, yy2arr3057 + const yyr3057 bool = false + yyq3057[1] = true + yyq3057[2] = x.Reason != "" + yyq3057[3] = x.Message != "" + var yynn3057 int + if yyr3057 || yy2arr3057 { + r.EncodeArrayStart(4) + } else { + yynn3057 = 1 + for _, b := range yyq3057 { + if b { + yynn3057++ + } + } + r.EncodeMapStart(yynn3057) + yynn3057 = 0 + } + if yyr3057 || yy2arr3057 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3059 := &x.PodSignature + yy3059.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podSignature")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3060 := &x.PodSignature + yy3060.CodecEncodeSelf(e) + } + if yyr3057 || yy2arr3057 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3057[1] { + yy3062 := &x.EvictionTime + yym3063 := z.EncBinary() + _ = yym3063 + if false { + } else if z.HasExtensions() && z.EncExt(yy3062) { + } else if yym3063 { + z.EncBinaryMarshal(yy3062) + } else if !yym3063 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3062) + } else { + z.EncFallback(yy3062) + } + } else { + r.EncodeNil() + } + } else { + if yyq3057[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3064 := &x.EvictionTime + yym3065 := z.EncBinary() + _ = yym3065 + if false { + } else if z.HasExtensions() && z.EncExt(yy3064) { + } else if yym3065 { + z.EncBinaryMarshal(yy3064) + } else if !yym3065 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3064) + } else { + z.EncFallback(yy3064) + } + } + } + if yyr3057 || yy2arr3057 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3057[2] { + yym3067 := z.EncBinary() + _ = yym3067 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3057[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3068 := z.EncBinary() + _ = yym3068 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr3057 || yy2arr3057 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3057[3] { + yym3070 := z.EncBinary() + _ = yym3070 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3057[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3071 := z.EncBinary() + _ = yym3071 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr3057 || yy2arr3057 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3072 := z.DecBinary() + _ = yym3072 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3073 := r.ContainerType() + if yyct3073 == codecSelferValueTypeMap1234 { + yyl3073 := r.ReadMapStart() + if yyl3073 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3073, d) + } + } else if yyct3073 == codecSelferValueTypeArray1234 { + yyl3073 := r.ReadArrayStart() + if yyl3073 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3073, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3074Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3074Slc + var yyhl3074 bool = l >= 0 + for yyj3074 := 0; ; yyj3074++ { + if yyhl3074 { + if yyj3074 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3074Slc = r.DecodeBytes(yys3074Slc, true, true) + yys3074 := string(yys3074Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3074 { + case "podSignature": + if r.TryDecodeAsNil() { + x.PodSignature = PodSignature{} + } else { + yyv3075 := &x.PodSignature + yyv3075.CodecDecodeSelf(d) + } + case "evictionTime": + if r.TryDecodeAsNil() { + x.EvictionTime = pkg2_unversioned.Time{} + } else { + yyv3076 := &x.EvictionTime + yym3077 := z.DecBinary() + _ = yym3077 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3076) { + } else if yym3077 { + z.DecBinaryUnmarshal(yyv3076) + } else if !yym3077 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3076) + } else { + z.DecFallback(yyv3076, false) + } + } + case "reason": + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3074) + } // end switch yys3074 + } // end for yyj3074 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3080 int + var yyb3080 bool + var yyhl3080 bool = l >= 0 + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l + } else { + yyb3080 = r.CheckBreak() + } + if yyb3080 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.PodSignature = PodSignature{} + } else { + yyv3081 := &x.PodSignature + yyv3081.CodecDecodeSelf(d) + } + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l + } else { + yyb3080 = r.CheckBreak() + } + if yyb3080 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.EvictionTime = pkg2_unversioned.Time{} + } else { + yyv3082 := &x.EvictionTime + yym3083 := z.DecBinary() + _ = yym3083 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3082) { + } else if yym3083 { + z.DecBinaryUnmarshal(yyv3082) + } else if !yym3083 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3082) + } else { + z.DecFallback(yyv3082, false) + } + } + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l + } else { + yyb3080 = r.CheckBreak() + } + if yyb3080 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l + } else { + yyb3080 = r.CheckBreak() + } + if yyb3080 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + for { + yyj3080++ + if yyhl3080 { + yyb3080 = yyj3080 > l + } else { + yyb3080 = r.CheckBreak() + } + if yyb3080 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3080-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3086 := z.EncBinary() + _ = yym3086 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3087 := !z.EncBinary() + yy2arr3087 := z.EncBasicHandle().StructToArray + var yyq3087 [1]bool + _, _, _ = yysep3087, yyq3087, yy2arr3087 + const yyr3087 bool = false + yyq3087[0] = x.PodController != nil + var yynn3087 int + if yyr3087 || yy2arr3087 { + r.EncodeArrayStart(1) + } else { + yynn3087 = 0 + for _, b := range yyq3087 { + if b { + yynn3087++ + } + } + r.EncodeMapStart(yynn3087) + yynn3087 = 0 + } + if yyr3087 || yy2arr3087 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3087[0] { + if x.PodController == nil { + r.EncodeNil() + } else { + x.PodController.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq3087[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podController")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.PodController == nil { + r.EncodeNil() + } else { + x.PodController.CodecEncodeSelf(e) + } + } + } + if yyr3087 || yy2arr3087 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3089 := z.DecBinary() + _ = yym3089 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3090 := r.ContainerType() + if yyct3090 == codecSelferValueTypeMap1234 { + yyl3090 := r.ReadMapStart() + if yyl3090 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3090, d) + } + } else if yyct3090 == codecSelferValueTypeArray1234 { + yyl3090 := r.ReadArrayStart() + if yyl3090 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3090, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3091Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3091Slc + var yyhl3091 bool = l >= 0 + for yyj3091 := 0; ; yyj3091++ { + if yyhl3091 { + if yyj3091 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3091Slc = r.DecodeBytes(yys3091Slc, true, true) + yys3091 := string(yys3091Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3091 { + case "podController": + if r.TryDecodeAsNil() { + if x.PodController != nil { + x.PodController = nil + } + } else { + if x.PodController == nil { + x.PodController = new(OwnerReference) + } + x.PodController.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3091) + } // end switch yys3091 + } // end for yyj3091 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3093 int + var yyb3093 bool + var yyhl3093 bool = l >= 0 + yyj3093++ + if yyhl3093 { + yyb3093 = yyj3093 > l + } else { + yyb3093 = r.CheckBreak() + } + if yyb3093 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.PodController != nil { + x.PodController = nil + } + } else { + if x.PodController == nil { + x.PodController = new(OwnerReference) + } + x.PodController.CodecDecodeSelf(d) + } + for { + yyj3093++ + if yyhl3093 { + yyb3093 = yyj3093 > l + } else { + yyb3093 = r.CheckBreak() + } + if yyb3093 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3093-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -38988,37 +39695,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3042 := z.EncBinary() - _ = yym3042 + yym3095 := z.EncBinary() + _ = yym3095 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3043 := !z.EncBinary() - yy2arr3043 := z.EncBasicHandle().StructToArray - var yyq3043 [2]bool - _, _, _ = yysep3043, yyq3043, yy2arr3043 - const yyr3043 bool = false - yyq3043[1] = x.SizeBytes != 0 - var yynn3043 int - if yyr3043 || yy2arr3043 { + yysep3096 := !z.EncBinary() + yy2arr3096 := z.EncBasicHandle().StructToArray + var yyq3096 [2]bool + _, _, _ = yysep3096, yyq3096, yy2arr3096 + const yyr3096 bool = false + yyq3096[1] = x.SizeBytes != 0 + var yynn3096 int + if yyr3096 || yy2arr3096 { r.EncodeArrayStart(2) } else { - yynn3043 = 1 - for _, b := range yyq3043 { + yynn3096 = 1 + for _, b := range yyq3096 { if b { - yynn3043++ + yynn3096++ } } - r.EncodeMapStart(yynn3043) - yynn3043 = 0 + r.EncodeMapStart(yynn3096) + yynn3096 = 0 } - if yyr3043 || yy2arr3043 { + if yyr3096 || yy2arr3096 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3045 := z.EncBinary() - _ = yym3045 + yym3098 := z.EncBinary() + _ = yym3098 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -39031,19 +39738,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3046 := z.EncBinary() - _ = yym3046 + yym3099 := z.EncBinary() + _ = yym3099 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3043 || yy2arr3043 { + if yyr3096 || yy2arr3096 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3043[1] { - yym3048 := z.EncBinary() - _ = yym3048 + if yyq3096[1] { + yym3101 := z.EncBinary() + _ = yym3101 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -39052,19 +39759,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3043[1] { + if yyq3096[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3049 := z.EncBinary() - _ = yym3049 + yym3102 := z.EncBinary() + _ = yym3102 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3043 || yy2arr3043 { + if yyr3096 || yy2arr3096 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39077,25 +39784,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3050 := z.DecBinary() - _ = yym3050 + yym3103 := z.DecBinary() + _ = yym3103 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3051 := r.ContainerType() - if yyct3051 == codecSelferValueTypeMap1234 { - yyl3051 := r.ReadMapStart() - if yyl3051 == 0 { + yyct3104 := r.ContainerType() + if yyct3104 == codecSelferValueTypeMap1234 { + yyl3104 := r.ReadMapStart() + if yyl3104 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3051, d) + x.codecDecodeSelfFromMap(yyl3104, d) } - } else if yyct3051 == codecSelferValueTypeArray1234 { - yyl3051 := r.ReadArrayStart() - if yyl3051 == 0 { + } else if yyct3104 == codecSelferValueTypeArray1234 { + yyl3104 := r.ReadArrayStart() + if yyl3104 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3051, d) + x.codecDecodeSelfFromArray(yyl3104, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39107,12 +39814,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3052Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3052Slc - var yyhl3052 bool = l >= 0 - for yyj3052 := 0; ; yyj3052++ { - if yyhl3052 { - if yyj3052 >= l { + var yys3105Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3105Slc + var yyhl3105 bool = l >= 0 + for yyj3105 := 0; ; yyj3105++ { + if yyhl3105 { + if yyj3105 >= l { break } } else { @@ -39121,20 +39828,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3052Slc = r.DecodeBytes(yys3052Slc, true, true) - yys3052 := string(yys3052Slc) + yys3105Slc = r.DecodeBytes(yys3105Slc, true, true) + yys3105 := string(yys3105Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3052 { + switch yys3105 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3053 := &x.Names - yym3054 := z.DecBinary() - _ = yym3054 + yyv3106 := &x.Names + yym3107 := z.DecBinary() + _ = yym3107 if false { } else { - z.F.DecSliceStringX(yyv3053, false, d) + z.F.DecSliceStringX(yyv3106, false, d) } } case "sizeBytes": @@ -39144,9 +39851,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3052) - } // end switch yys3052 - } // end for yyj3052 + z.DecStructFieldNotFound(-1, yys3105) + } // end switch yys3105 + } // end for yyj3105 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39154,16 +39861,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3056 int - var yyb3056 bool - var yyhl3056 bool = l >= 0 - yyj3056++ - if yyhl3056 { - yyb3056 = yyj3056 > l + var yyj3109 int + var yyb3109 bool + var yyhl3109 bool = l >= 0 + yyj3109++ + if yyhl3109 { + yyb3109 = yyj3109 > l } else { - yyb3056 = r.CheckBreak() + yyb3109 = r.CheckBreak() } - if yyb3056 { + if yyb3109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39171,21 +39878,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3057 := &x.Names - yym3058 := z.DecBinary() - _ = yym3058 + yyv3110 := &x.Names + yym3111 := z.DecBinary() + _ = yym3111 if false { } else { - z.F.DecSliceStringX(yyv3057, false, d) + z.F.DecSliceStringX(yyv3110, false, d) } } - yyj3056++ - if yyhl3056 { - yyb3056 = yyj3056 > l + yyj3109++ + if yyhl3109 { + yyb3109 = yyj3109 > l } else { - yyb3056 = r.CheckBreak() + yyb3109 = r.CheckBreak() } - if yyb3056 { + if yyb3109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39196,17 +39903,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3056++ - if yyhl3056 { - yyb3056 = yyj3056 > l + yyj3109++ + if yyhl3109 { + yyb3109 = yyj3109 > l } else { - yyb3056 = r.CheckBreak() + yyb3109 = r.CheckBreak() } - if yyb3056 { + if yyb3109 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3056-1, "") + z.DecStructFieldNotFound(yyj3109-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39215,8 +39922,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3060 := z.EncBinary() - _ = yym3060 + yym3113 := z.EncBinary() + _ = yym3113 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39228,8 +39935,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3061 := z.DecBinary() - _ = yym3061 + yym3114 := z.DecBinary() + _ = yym3114 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39241,8 +39948,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3062 := z.EncBinary() - _ = yym3062 + yym3115 := z.EncBinary() + _ = yym3115 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39254,8 +39961,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3063 := z.DecBinary() - _ = yym3063 + yym3116 := z.DecBinary() + _ = yym3116 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39270,34 +39977,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3064 := z.EncBinary() - _ = yym3064 + yym3117 := z.EncBinary() + _ = yym3117 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3065 := !z.EncBinary() - yy2arr3065 := z.EncBasicHandle().StructToArray - var yyq3065 [6]bool - _, _, _ = yysep3065, yyq3065, yy2arr3065 - const yyr3065 bool = false - yyq3065[2] = true - yyq3065[3] = true - yyq3065[4] = x.Reason != "" - yyq3065[5] = x.Message != "" - var yynn3065 int - if yyr3065 || yy2arr3065 { + yysep3118 := !z.EncBinary() + yy2arr3118 := z.EncBasicHandle().StructToArray + var yyq3118 [6]bool + _, _, _ = yysep3118, yyq3118, yy2arr3118 + const yyr3118 bool = false + yyq3118[2] = true + yyq3118[3] = true + yyq3118[4] = x.Reason != "" + yyq3118[5] = x.Message != "" + var yynn3118 int + if yyr3118 || yy2arr3118 { r.EncodeArrayStart(6) } else { - yynn3065 = 2 - for _, b := range yyq3065 { + yynn3118 = 2 + for _, b := range yyq3118 { if b { - yynn3065++ + yynn3118++ } } - r.EncodeMapStart(yynn3065) - yynn3065 = 0 + r.EncodeMapStart(yynn3118) + yynn3118 = 0 } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39306,7 +40013,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -39315,85 +40022,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3065[2] { - yy3069 := &x.LastHeartbeatTime - yym3070 := z.EncBinary() - _ = yym3070 + if yyq3118[2] { + yy3122 := &x.LastHeartbeatTime + yym3123 := z.EncBinary() + _ = yym3123 if false { - } else if z.HasExtensions() && z.EncExt(yy3069) { - } else if yym3070 { - z.EncBinaryMarshal(yy3069) - } else if !yym3070 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3069) + } else if z.HasExtensions() && z.EncExt(yy3122) { + } else if yym3123 { + z.EncBinaryMarshal(yy3122) + } else if !yym3123 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3122) } else { - z.EncFallback(yy3069) + z.EncFallback(yy3122) } } else { r.EncodeNil() } } else { - if yyq3065[2] { + if yyq3118[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3071 := &x.LastHeartbeatTime - yym3072 := z.EncBinary() - _ = yym3072 + yy3124 := &x.LastHeartbeatTime + yym3125 := z.EncBinary() + _ = yym3125 if false { - } else if z.HasExtensions() && z.EncExt(yy3071) { - } else if yym3072 { - z.EncBinaryMarshal(yy3071) - } else if !yym3072 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3071) + } else if z.HasExtensions() && z.EncExt(yy3124) { + } else if yym3125 { + z.EncBinaryMarshal(yy3124) + } else if !yym3125 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3124) } else { - z.EncFallback(yy3071) + z.EncFallback(yy3124) } } } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3065[3] { - yy3074 := &x.LastTransitionTime - yym3075 := z.EncBinary() - _ = yym3075 + if yyq3118[3] { + yy3127 := &x.LastTransitionTime + yym3128 := z.EncBinary() + _ = yym3128 if false { - } else if z.HasExtensions() && z.EncExt(yy3074) { - } else if yym3075 { - z.EncBinaryMarshal(yy3074) - } else if !yym3075 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3074) + } else if z.HasExtensions() && z.EncExt(yy3127) { + } else if yym3128 { + z.EncBinaryMarshal(yy3127) + } else if !yym3128 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3127) } else { - z.EncFallback(yy3074) + z.EncFallback(yy3127) } } else { r.EncodeNil() } } else { - if yyq3065[3] { + if yyq3118[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3076 := &x.LastTransitionTime - yym3077 := z.EncBinary() - _ = yym3077 + yy3129 := &x.LastTransitionTime + yym3130 := z.EncBinary() + _ = yym3130 if false { - } else if z.HasExtensions() && z.EncExt(yy3076) { - } else if yym3077 { - z.EncBinaryMarshal(yy3076) - } else if !yym3077 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3076) + } else if z.HasExtensions() && z.EncExt(yy3129) { + } else if yym3130 { + z.EncBinaryMarshal(yy3129) + } else if !yym3130 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3129) } else { - z.EncFallback(yy3076) + z.EncFallback(yy3129) } } } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3065[4] { - yym3079 := z.EncBinary() - _ = yym3079 + if yyq3118[4] { + yym3132 := z.EncBinary() + _ = yym3132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39402,23 +40109,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3065[4] { + if yyq3118[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3080 := z.EncBinary() - _ = yym3080 + yym3133 := z.EncBinary() + _ = yym3133 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3065[5] { - yym3082 := z.EncBinary() - _ = yym3082 + if yyq3118[5] { + yym3135 := z.EncBinary() + _ = yym3135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39427,19 +40134,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3065[5] { + if yyq3118[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3083 := z.EncBinary() - _ = yym3083 + yym3136 := z.EncBinary() + _ = yym3136 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3065 || yy2arr3065 { + if yyr3118 || yy2arr3118 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39452,25 +40159,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3084 := z.DecBinary() - _ = yym3084 + yym3137 := z.DecBinary() + _ = yym3137 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3085 := r.ContainerType() - if yyct3085 == codecSelferValueTypeMap1234 { - yyl3085 := r.ReadMapStart() - if yyl3085 == 0 { + yyct3138 := r.ContainerType() + if yyct3138 == codecSelferValueTypeMap1234 { + yyl3138 := r.ReadMapStart() + if yyl3138 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3085, d) + x.codecDecodeSelfFromMap(yyl3138, d) } - } else if yyct3085 == codecSelferValueTypeArray1234 { - yyl3085 := r.ReadArrayStart() - if yyl3085 == 0 { + } else if yyct3138 == codecSelferValueTypeArray1234 { + yyl3138 := r.ReadArrayStart() + if yyl3138 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3085, d) + x.codecDecodeSelfFromArray(yyl3138, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39482,12 +40189,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3086Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3086Slc - var yyhl3086 bool = l >= 0 - for yyj3086 := 0; ; yyj3086++ { - if yyhl3086 { - if yyj3086 >= l { + var yys3139Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3139Slc + var yyhl3139 bool = l >= 0 + for yyj3139 := 0; ; yyj3139++ { + if yyhl3139 { + if yyj3139 >= l { break } } else { @@ -39496,10 +40203,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3086Slc = r.DecodeBytes(yys3086Slc, true, true) - yys3086 := string(yys3086Slc) + yys3139Slc = r.DecodeBytes(yys3139Slc, true, true) + yys3139 := string(yys3139Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3086 { + switch yys3139 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39516,34 +40223,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3089 := &x.LastHeartbeatTime - yym3090 := z.DecBinary() - _ = yym3090 + yyv3142 := &x.LastHeartbeatTime + yym3143 := z.DecBinary() + _ = yym3143 if false { - } else if z.HasExtensions() && z.DecExt(yyv3089) { - } else if yym3090 { - z.DecBinaryUnmarshal(yyv3089) - } else if !yym3090 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3089) + } else if z.HasExtensions() && z.DecExt(yyv3142) { + } else if yym3143 { + z.DecBinaryUnmarshal(yyv3142) + } else if !yym3143 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3142) } else { - z.DecFallback(yyv3089, false) + z.DecFallback(yyv3142, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3091 := &x.LastTransitionTime - yym3092 := z.DecBinary() - _ = yym3092 + yyv3144 := &x.LastTransitionTime + yym3145 := z.DecBinary() + _ = yym3145 if false { - } else if z.HasExtensions() && z.DecExt(yyv3091) { - } else if yym3092 { - z.DecBinaryUnmarshal(yyv3091) - } else if !yym3092 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3091) + } else if z.HasExtensions() && z.DecExt(yyv3144) { + } else if yym3145 { + z.DecBinaryUnmarshal(yyv3144) + } else if !yym3145 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3144) } else { - z.DecFallback(yyv3091, false) + z.DecFallback(yyv3144, false) } } case "reason": @@ -39559,9 +40266,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3086) - } // end switch yys3086 - } // end for yyj3086 + z.DecStructFieldNotFound(-1, yys3139) + } // end switch yys3139 + } // end for yyj3139 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39569,16 +40276,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3095 int - var yyb3095 bool - var yyhl3095 bool = l >= 0 - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + var yyj3148 int + var yyb3148 bool + var yyhl3148 bool = l >= 0 + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39588,13 +40295,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39604,13 +40311,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39618,26 +40325,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3098 := &x.LastHeartbeatTime - yym3099 := z.DecBinary() - _ = yym3099 + yyv3151 := &x.LastHeartbeatTime + yym3152 := z.DecBinary() + _ = yym3152 if false { - } else if z.HasExtensions() && z.DecExt(yyv3098) { - } else if yym3099 { - z.DecBinaryUnmarshal(yyv3098) - } else if !yym3099 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3098) + } else if z.HasExtensions() && z.DecExt(yyv3151) { + } else if yym3152 { + z.DecBinaryUnmarshal(yyv3151) + } else if !yym3152 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3151) } else { - z.DecFallback(yyv3098, false) + z.DecFallback(yyv3151, false) } } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39645,26 +40352,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3100 := &x.LastTransitionTime - yym3101 := z.DecBinary() - _ = yym3101 + yyv3153 := &x.LastTransitionTime + yym3154 := z.DecBinary() + _ = yym3154 if false { - } else if z.HasExtensions() && z.DecExt(yyv3100) { - } else if yym3101 { - z.DecBinaryUnmarshal(yyv3100) - } else if !yym3101 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3100) + } else if z.HasExtensions() && z.DecExt(yyv3153) { + } else if yym3154 { + z.DecBinaryUnmarshal(yyv3153) + } else if !yym3154 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3153) } else { - z.DecFallback(yyv3100, false) + z.DecFallback(yyv3153, false) } } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39674,13 +40381,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39691,17 +40398,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3148++ + if yyhl3148 { + yyb3148 = yyj3148 > l } else { - yyb3095 = r.CheckBreak() + yyb3148 = r.CheckBreak() } - if yyb3095 { + if yyb3148 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3095-1, "") + z.DecStructFieldNotFound(yyj3148-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39710,8 +40417,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3104 := z.EncBinary() - _ = yym3104 + yym3157 := z.EncBinary() + _ = yym3157 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39723,8 +40430,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3105 := z.DecBinary() - _ = yym3105 + yym3158 := z.DecBinary() + _ = yym3158 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39739,30 +40446,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3106 := z.EncBinary() - _ = yym3106 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3107 := !z.EncBinary() - yy2arr3107 := z.EncBasicHandle().StructToArray - var yyq3107 [2]bool - _, _, _ = yysep3107, yyq3107, yy2arr3107 - const yyr3107 bool = false - var yynn3107 int - if yyr3107 || yy2arr3107 { + yysep3160 := !z.EncBinary() + yy2arr3160 := z.EncBasicHandle().StructToArray + var yyq3160 [2]bool + _, _, _ = yysep3160, yyq3160, yy2arr3160 + const yyr3160 bool = false + var yynn3160 int + if yyr3160 || yy2arr3160 { r.EncodeArrayStart(2) } else { - yynn3107 = 2 - for _, b := range yyq3107 { + yynn3160 = 2 + for _, b := range yyq3160 { if b { - yynn3107++ + yynn3160++ } } - r.EncodeMapStart(yynn3107) - yynn3107 = 0 + r.EncodeMapStart(yynn3160) + yynn3160 = 0 } - if yyr3107 || yy2arr3107 { + if yyr3160 || yy2arr3160 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -39771,10 +40478,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3107 || yy2arr3107 { + if yyr3160 || yy2arr3160 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3110 := z.EncBinary() - _ = yym3110 + yym3163 := z.EncBinary() + _ = yym3163 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -39783,14 +40490,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3111 := z.EncBinary() - _ = yym3111 + yym3164 := z.EncBinary() + _ = yym3164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3107 || yy2arr3107 { + if yyr3160 || yy2arr3160 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39803,25 +40510,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3112 := z.DecBinary() - _ = yym3112 + yym3165 := z.DecBinary() + _ = yym3165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3113 := r.ContainerType() - if yyct3113 == codecSelferValueTypeMap1234 { - yyl3113 := r.ReadMapStart() - if yyl3113 == 0 { + yyct3166 := r.ContainerType() + if yyct3166 == codecSelferValueTypeMap1234 { + yyl3166 := r.ReadMapStart() + if yyl3166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3113, d) + x.codecDecodeSelfFromMap(yyl3166, d) } - } else if yyct3113 == codecSelferValueTypeArray1234 { - yyl3113 := r.ReadArrayStart() - if yyl3113 == 0 { + } else if yyct3166 == codecSelferValueTypeArray1234 { + yyl3166 := r.ReadArrayStart() + if yyl3166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3113, d) + x.codecDecodeSelfFromArray(yyl3166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39833,12 +40540,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3114Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3114Slc - var yyhl3114 bool = l >= 0 - for yyj3114 := 0; ; yyj3114++ { - if yyhl3114 { - if yyj3114 >= l { + var yys3167Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3167Slc + var yyhl3167 bool = l >= 0 + for yyj3167 := 0; ; yyj3167++ { + if yyhl3167 { + if yyj3167 >= l { break } } else { @@ -39847,10 +40554,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3114Slc = r.DecodeBytes(yys3114Slc, true, true) - yys3114 := string(yys3114Slc) + yys3167Slc = r.DecodeBytes(yys3167Slc, true, true) + yys3167 := string(yys3167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3114 { + switch yys3167 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39864,9 +40571,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3114) - } // end switch yys3114 - } // end for yyj3114 + z.DecStructFieldNotFound(-1, yys3167) + } // end switch yys3167 + } // end for yyj3167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39874,16 +40581,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3117 int - var yyb3117 bool - var yyhl3117 bool = l >= 0 - yyj3117++ - if yyhl3117 { - yyb3117 = yyj3117 > l + var yyj3170 int + var yyb3170 bool + var yyhl3170 bool = l >= 0 + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3117 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3117 { + if yyb3170 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39893,13 +40600,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3117++ - if yyhl3117 { - yyb3117 = yyj3117 > l + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3117 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3117 { + if yyb3170 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39910,17 +40617,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3117++ - if yyhl3117 { - yyb3117 = yyj3117 > l + yyj3170++ + if yyhl3170 { + yyb3170 = yyj3170 > l } else { - yyb3117 = r.CheckBreak() + yyb3170 = r.CheckBreak() } - if yyb3117 { + if yyb3170 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3117-1, "") + z.DecStructFieldNotFound(yyj3170-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39929,8 +40636,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3120 := z.EncBinary() - _ = yym3120 + yym3173 := z.EncBinary() + _ = yym3173 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39942,8 +40649,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3121 := z.DecBinary() - _ = yym3121 + yym3174 := z.DecBinary() + _ = yym3174 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39958,8 +40665,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3122 := z.EncBinary() - _ = yym3122 + yym3175 := z.EncBinary() + _ = yym3175 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39972,8 +40679,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3123 := z.DecBinary() - _ = yym3123 + yym3176 := z.DecBinary() + _ = yym3176 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39988,39 +40695,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3124 := z.EncBinary() - _ = yym3124 + yym3177 := z.EncBinary() + _ = yym3177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3125 := !z.EncBinary() - yy2arr3125 := z.EncBasicHandle().StructToArray - var yyq3125 [5]bool - _, _, _ = yysep3125, yyq3125, yy2arr3125 - const yyr3125 bool = false - yyq3125[0] = x.Kind != "" - yyq3125[1] = x.APIVersion != "" - yyq3125[2] = true - yyq3125[3] = true - yyq3125[4] = true - var yynn3125 int - if yyr3125 || yy2arr3125 { + yysep3178 := !z.EncBinary() + yy2arr3178 := z.EncBasicHandle().StructToArray + var yyq3178 [5]bool + _, _, _ = yysep3178, yyq3178, yy2arr3178 + const yyr3178 bool = false + yyq3178[0] = x.Kind != "" + yyq3178[1] = x.APIVersion != "" + yyq3178[2] = true + yyq3178[3] = true + yyq3178[4] = true + var yynn3178 int + if yyr3178 || yy2arr3178 { r.EncodeArrayStart(5) } else { - yynn3125 = 0 - for _, b := range yyq3125 { + yynn3178 = 0 + for _, b := range yyq3178 { if b { - yynn3125++ + yynn3178++ } } - r.EncodeMapStart(yynn3125) - yynn3125 = 0 + r.EncodeMapStart(yynn3178) + yynn3178 = 0 } - if yyr3125 || yy2arr3125 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[0] { - yym3127 := z.EncBinary() - _ = yym3127 + if yyq3178[0] { + yym3180 := z.EncBinary() + _ = yym3180 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40029,23 +40736,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3125[0] { + if yyq3178[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3128 := z.EncBinary() - _ = yym3128 + yym3181 := z.EncBinary() + _ = yym3181 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3125 || yy2arr3125 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[1] { - yym3130 := z.EncBinary() - _ = yym3130 + if yyq3178[1] { + yym3183 := z.EncBinary() + _ = yym3183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40054,70 +40761,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3125[1] { + if yyq3178[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3131 := z.EncBinary() - _ = yym3131 + yym3184 := z.EncBinary() + _ = yym3184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3125 || yy2arr3125 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[2] { - yy3133 := &x.ObjectMeta - yy3133.CodecEncodeSelf(e) + if yyq3178[2] { + yy3186 := &x.ObjectMeta + yy3186.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3125[2] { + if yyq3178[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3134 := &x.ObjectMeta - yy3134.CodecEncodeSelf(e) + yy3187 := &x.ObjectMeta + yy3187.CodecEncodeSelf(e) } } - if yyr3125 || yy2arr3125 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[3] { - yy3136 := &x.Spec - yy3136.CodecEncodeSelf(e) + if yyq3178[3] { + yy3189 := &x.Spec + yy3189.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3125[3] { + if yyq3178[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3137 := &x.Spec - yy3137.CodecEncodeSelf(e) + yy3190 := &x.Spec + yy3190.CodecEncodeSelf(e) } } - if yyr3125 || yy2arr3125 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3125[4] { - yy3139 := &x.Status - yy3139.CodecEncodeSelf(e) + if yyq3178[4] { + yy3192 := &x.Status + yy3192.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3125[4] { + if yyq3178[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3140 := &x.Status - yy3140.CodecEncodeSelf(e) + yy3193 := &x.Status + yy3193.CodecEncodeSelf(e) } } - if yyr3125 || yy2arr3125 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40127,647 +40834,6 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3141 := z.DecBinary() - _ = yym3141 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3142 := r.ContainerType() - if yyct3142 == codecSelferValueTypeMap1234 { - yyl3142 := r.ReadMapStart() - if yyl3142 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3142, d) - } - } else if yyct3142 == codecSelferValueTypeArray1234 { - yyl3142 := r.ReadArrayStart() - if yyl3142 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3142, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3143Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3143Slc - var yyhl3143 bool = l >= 0 - for yyj3143 := 0; ; yyj3143++ { - if yyhl3143 { - if yyj3143 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3143Slc = r.DecodeBytes(yys3143Slc, true, true) - yys3143 := string(yys3143Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3143 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3146 := &x.ObjectMeta - yyv3146.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = NodeSpec{} - } else { - yyv3147 := &x.Spec - yyv3147.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = NodeStatus{} - } else { - yyv3148 := &x.Status - yyv3148.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3143) - } // end switch yys3143 - } // end for yyj3143 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3149 int - var yyb3149 bool - var yyhl3149 bool = l >= 0 - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l - } else { - yyb3149 = r.CheckBreak() - } - if yyb3149 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l - } else { - yyb3149 = r.CheckBreak() - } - if yyb3149 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l - } else { - yyb3149 = r.CheckBreak() - } - if yyb3149 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3152 := &x.ObjectMeta - yyv3152.CodecDecodeSelf(d) - } - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l - } else { - yyb3149 = r.CheckBreak() - } - if yyb3149 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = NodeSpec{} - } else { - yyv3153 := &x.Spec - yyv3153.CodecDecodeSelf(d) - } - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l - } else { - yyb3149 = r.CheckBreak() - } - if yyb3149 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = NodeStatus{} - } else { - yyv3154 := &x.Status - yyv3154.CodecDecodeSelf(d) - } - for { - yyj3149++ - if yyhl3149 { - yyb3149 = yyj3149 > l - } else { - yyb3149 = r.CheckBreak() - } - if yyb3149 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3149-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3155 := z.EncBinary() - _ = yym3155 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3156 := !z.EncBinary() - yy2arr3156 := z.EncBasicHandle().StructToArray - var yyq3156 [4]bool - _, _, _ = yysep3156, yyq3156, yy2arr3156 - const yyr3156 bool = false - yyq3156[0] = x.Kind != "" - yyq3156[1] = x.APIVersion != "" - yyq3156[2] = true - var yynn3156 int - if yyr3156 || yy2arr3156 { - r.EncodeArrayStart(4) - } else { - yynn3156 = 1 - for _, b := range yyq3156 { - if b { - yynn3156++ - } - } - r.EncodeMapStart(yynn3156) - yynn3156 = 0 - } - if yyr3156 || yy2arr3156 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[0] { - yym3158 := z.EncBinary() - _ = yym3158 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3156[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3159 := z.EncBinary() - _ = yym3159 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3156 || yy2arr3156 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[1] { - yym3161 := z.EncBinary() - _ = yym3161 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3156[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3162 := z.EncBinary() - _ = yym3162 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3156 || yy2arr3156 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3156[2] { - yy3164 := &x.ListMeta - yym3165 := z.EncBinary() - _ = yym3165 - if false { - } else if z.HasExtensions() && z.EncExt(yy3164) { - } else { - z.EncFallback(yy3164) - } - } else { - r.EncodeNil() - } - } else { - if yyq3156[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3166 := &x.ListMeta - yym3167 := z.EncBinary() - _ = yym3167 - if false { - } else if z.HasExtensions() && z.EncExt(yy3166) { - } else { - z.EncFallback(yy3166) - } - } - } - if yyr3156 || yy2arr3156 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3169 := z.EncBinary() - _ = yym3169 - if false { - } else { - h.encSliceNode(([]Node)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3170 := z.EncBinary() - _ = yym3170 - if false { - } else { - h.encSliceNode(([]Node)(x.Items), e) - } - } - } - if yyr3156 || yy2arr3156 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3171 := z.DecBinary() - _ = yym3171 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3172 := r.ContainerType() - if yyct3172 == codecSelferValueTypeMap1234 { - yyl3172 := r.ReadMapStart() - if yyl3172 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3172, d) - } - } else if yyct3172 == codecSelferValueTypeArray1234 { - yyl3172 := r.ReadArrayStart() - if yyl3172 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3172, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3173Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3173Slc - var yyhl3173 bool = l >= 0 - for yyj3173 := 0; ; yyj3173++ { - if yyhl3173 { - if yyj3173 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3173Slc = r.DecodeBytes(yys3173Slc, true, true) - yys3173 := string(yys3173Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3173 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv3176 := &x.ListMeta - yym3177 := z.DecBinary() - _ = yym3177 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3176) { - } else { - z.DecFallback(yyv3176, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3178 := &x.Items - yym3179 := z.DecBinary() - _ = yym3179 - if false { - } else { - h.decSliceNode((*[]Node)(yyv3178), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3173) - } // end switch yys3173 - } // end for yyj3173 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3180 int - var yyb3180 bool - var yyhl3180 bool = l >= 0 - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l - } else { - yyb3180 = r.CheckBreak() - } - if yyb3180 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l - } else { - yyb3180 = r.CheckBreak() - } - if yyb3180 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l - } else { - yyb3180 = r.CheckBreak() - } - if yyb3180 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv3183 := &x.ListMeta - yym3184 := z.DecBinary() - _ = yym3184 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3183) { - } else { - z.DecFallback(yyv3183, false) - } - } - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l - } else { - yyb3180 = r.CheckBreak() - } - if yyb3180 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3185 := &x.Items - yym3186 := z.DecBinary() - _ = yym3186 - if false { - } else { - h.decSliceNode((*[]Node)(yyv3185), d) - } - } - for { - yyj3180++ - if yyhl3180 { - yyb3180 = yyj3180 > l - } else { - yyb3180 = r.CheckBreak() - } - if yyb3180 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3180-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym3187 := z.EncBinary() - _ = yym3187 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3188 := z.DecBinary() - _ = yym3188 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3189 := z.EncBinary() - _ = yym3189 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3190 := !z.EncBinary() - yy2arr3190 := z.EncBasicHandle().StructToArray - var yyq3190 [1]bool - _, _, _ = yysep3190, yyq3190, yy2arr3190 - const yyr3190 bool = false - yyq3190[0] = len(x.Finalizers) != 0 - var yynn3190 int - if yyr3190 || yy2arr3190 { - r.EncodeArrayStart(1) - } else { - yynn3190 = 0 - for _, b := range yyq3190 { - if b { - yynn3190++ - } - } - r.EncodeMapStart(yynn3190) - yynn3190 = 0 - } - if yyr3190 || yy2arr3190 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3190[0] { - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym3192 := z.EncBinary() - _ = yym3192 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq3190[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finalizers")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym3193 := z.EncBinary() - _ = yym3193 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } - } - if yyr3190 || yy2arr3190 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -40797,7 +40863,7 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -40819,452 +40885,6 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys3196 := string(yys3196Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys3196 { - case "finalizers": - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv3197 := &x.Finalizers - yym3198 := z.DecBinary() - _ = yym3198 - if false { - } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3197), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3196) - } // end switch yys3196 - } // end for yyj3196 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3199 int - var yyb3199 bool - var yyhl3199 bool = l >= 0 - yyj3199++ - if yyhl3199 { - yyb3199 = yyj3199 > l - } else { - yyb3199 = r.CheckBreak() - } - if yyb3199 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv3200 := &x.Finalizers - yym3201 := z.DecBinary() - _ = yym3201 - if false { - } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3200), d) - } - } - for { - yyj3199++ - if yyhl3199 { - yyb3199 = yyj3199 > l - } else { - yyb3199 = r.CheckBreak() - } - if yyb3199 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3199-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3202 := z.EncBinary() - _ = yym3202 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3203 := !z.EncBinary() - yy2arr3203 := z.EncBasicHandle().StructToArray - var yyq3203 [1]bool - _, _, _ = yysep3203, yyq3203, yy2arr3203 - const yyr3203 bool = false - yyq3203[0] = x.Phase != "" - var yynn3203 int - if yyr3203 || yy2arr3203 { - r.EncodeArrayStart(1) - } else { - yynn3203 = 0 - for _, b := range yyq3203 { - if b { - yynn3203++ - } - } - r.EncodeMapStart(yynn3203) - yynn3203 = 0 - } - if yyr3203 || yy2arr3203 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[0] { - x.Phase.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3203[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("phase")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Phase.CodecEncodeSelf(e) - } - } - if yyr3203 || yy2arr3203 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3205 := z.DecBinary() - _ = yym3205 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3206 := r.ContainerType() - if yyct3206 == codecSelferValueTypeMap1234 { - yyl3206 := r.ReadMapStart() - if yyl3206 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3206, d) - } - } else if yyct3206 == codecSelferValueTypeArray1234 { - yyl3206 := r.ReadArrayStart() - if yyl3206 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3206, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3207Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3207Slc - var yyhl3207 bool = l >= 0 - for yyj3207 := 0; ; yyj3207++ { - if yyhl3207 { - if yyj3207 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3207Slc = r.DecodeBytes(yys3207Slc, true, true) - yys3207 := string(yys3207Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3207 { - case "phase": - if r.TryDecodeAsNil() { - x.Phase = "" - } else { - x.Phase = NamespacePhase(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3207) - } // end switch yys3207 - } // end for yyj3207 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3209 int - var yyb3209 bool - var yyhl3209 bool = l >= 0 - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l - } else { - yyb3209 = r.CheckBreak() - } - if yyb3209 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Phase = "" - } else { - x.Phase = NamespacePhase(r.DecodeString()) - } - for { - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l - } else { - yyb3209 = r.CheckBreak() - } - if yyb3209 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3209-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym3211 := z.EncBinary() - _ = yym3211 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3212 := z.DecBinary() - _ = yym3212 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3213 := z.EncBinary() - _ = yym3213 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3214 := !z.EncBinary() - yy2arr3214 := z.EncBasicHandle().StructToArray - var yyq3214 [5]bool - _, _, _ = yysep3214, yyq3214, yy2arr3214 - const yyr3214 bool = false - yyq3214[0] = x.Kind != "" - yyq3214[1] = x.APIVersion != "" - yyq3214[2] = true - yyq3214[3] = true - yyq3214[4] = true - var yynn3214 int - if yyr3214 || yy2arr3214 { - r.EncodeArrayStart(5) - } else { - yynn3214 = 0 - for _, b := range yyq3214 { - if b { - yynn3214++ - } - } - r.EncodeMapStart(yynn3214) - yynn3214 = 0 - } - if yyr3214 || yy2arr3214 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3214[0] { - yym3216 := z.EncBinary() - _ = yym3216 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3214[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3217 := z.EncBinary() - _ = yym3217 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3214 || yy2arr3214 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3214[1] { - yym3219 := z.EncBinary() - _ = yym3219 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3214[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3220 := z.EncBinary() - _ = yym3220 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3214 || yy2arr3214 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3214[2] { - yy3222 := &x.ObjectMeta - yy3222.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3214[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3223 := &x.ObjectMeta - yy3223.CodecEncodeSelf(e) - } - } - if yyr3214 || yy2arr3214 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3214[3] { - yy3225 := &x.Spec - yy3225.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3214[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3226 := &x.Spec - yy3226.CodecEncodeSelf(e) - } - } - if yyr3214 || yy2arr3214 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3214[4] { - yy3228 := &x.Status - yy3228.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3214[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3229 := &x.Status - yy3229.CodecEncodeSelf(e) - } - } - if yyr3214 || yy2arr3214 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3230 := z.DecBinary() - _ = yym3230 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3231 := r.ContainerType() - if yyct3231 == codecSelferValueTypeMap1234 { - yyl3231 := r.ReadMapStart() - if yyl3231 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3231, d) - } - } else if yyct3231 == codecSelferValueTypeArray1234 { - yyl3231 := r.ReadArrayStart() - if yyl3231 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3231, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3232Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3232Slc - var yyhl3232 bool = l >= 0 - for yyj3232 := 0; ; yyj3232++ { - if yyhl3232 { - if yyj3232 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3232Slc = r.DecodeBytes(yys3232Slc, true, true) - yys3232 := string(yys3232Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3232 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41281,44 +40901,44 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3235 := &x.ObjectMeta - yyv3235.CodecDecodeSelf(d) + yyv3199 := &x.ObjectMeta + yyv3199.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { - x.Spec = NamespaceSpec{} + x.Spec = NodeSpec{} } else { - yyv3236 := &x.Spec - yyv3236.CodecDecodeSelf(d) + yyv3200 := &x.Spec + yyv3200.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { - x.Status = NamespaceStatus{} + x.Status = NodeStatus{} } else { - yyv3237 := &x.Status - yyv3237.CodecDecodeSelf(d) + yyv3201 := &x.Status + yyv3201.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3232) - } // end switch yys3232 - } // end for yyj3232 + z.DecStructFieldNotFound(-1, yys3196) + } // end switch yys3196 + } // end for yyj3196 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3238 int - var yyb3238 bool - var yyhl3238 bool = l >= 0 - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + var yyj3202 int + var yyb3202 bool + var yyhl3202 bool = l >= 0 + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3238 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3238 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41328,13 +40948,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3238 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3238 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41344,13 +40964,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3238 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3238 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41358,97 +40978,97 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3241 := &x.ObjectMeta - yyv3241.CodecDecodeSelf(d) + yyv3205 := &x.ObjectMeta + yyv3205.CodecDecodeSelf(d) } - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3238 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3238 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Spec = NamespaceSpec{} + x.Spec = NodeSpec{} } else { - yyv3242 := &x.Spec - yyv3242.CodecDecodeSelf(d) + yyv3206 := &x.Spec + yyv3206.CodecDecodeSelf(d) } - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3238 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3238 { + if yyb3202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Status = NamespaceStatus{} + x.Status = NodeStatus{} } else { - yyv3243 := &x.Status - yyv3243.CodecDecodeSelf(d) + yyv3207 := &x.Status + yyv3207.CodecDecodeSelf(d) } for { - yyj3238++ - if yyhl3238 { - yyb3238 = yyj3238 > l + yyj3202++ + if yyhl3202 { + yyb3202 = yyj3202 > l } else { - yyb3238 = r.CheckBreak() + yyb3202 = r.CheckBreak() } - if yyb3238 { + if yyb3202 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3238-1, "") + z.DecStructFieldNotFound(yyj3202-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym3244 := z.EncBinary() - _ = yym3244 + yym3208 := z.EncBinary() + _ = yym3208 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3245 := !z.EncBinary() - yy2arr3245 := z.EncBasicHandle().StructToArray - var yyq3245 [4]bool - _, _, _ = yysep3245, yyq3245, yy2arr3245 - const yyr3245 bool = false - yyq3245[0] = x.Kind != "" - yyq3245[1] = x.APIVersion != "" - yyq3245[2] = true - var yynn3245 int - if yyr3245 || yy2arr3245 { + yysep3209 := !z.EncBinary() + yy2arr3209 := z.EncBasicHandle().StructToArray + var yyq3209 [4]bool + _, _, _ = yysep3209, yyq3209, yy2arr3209 + const yyr3209 bool = false + yyq3209[0] = x.Kind != "" + yyq3209[1] = x.APIVersion != "" + yyq3209[2] = true + var yynn3209 int + if yyr3209 || yy2arr3209 { r.EncodeArrayStart(4) } else { - yynn3245 = 1 - for _, b := range yyq3245 { + yynn3209 = 1 + for _, b := range yyq3209 { if b { - yynn3245++ + yynn3209++ } } - r.EncodeMapStart(yynn3245) - yynn3245 = 0 + r.EncodeMapStart(yynn3209) + yynn3209 = 0 } - if yyr3245 || yy2arr3245 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3245[0] { - yym3247 := z.EncBinary() - _ = yym3247 + if yyq3209[0] { + yym3211 := z.EncBinary() + _ = yym3211 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41457,23 +41077,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3245[0] { + if yyq3209[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3248 := z.EncBinary() - _ = yym3248 + yym3212 := z.EncBinary() + _ = yym3212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3245 || yy2arr3245 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3245[1] { - yym3250 := z.EncBinary() - _ = yym3250 + if yyq3209[1] { + yym3214 := z.EncBinary() + _ = yym3214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41482,57 +41102,57 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3245[1] { + if yyq3209[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3251 := z.EncBinary() - _ = yym3251 + yym3215 := z.EncBinary() + _ = yym3215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3245 || yy2arr3245 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3245[2] { - yy3253 := &x.ListMeta - yym3254 := z.EncBinary() - _ = yym3254 + if yyq3209[2] { + yy3217 := &x.ListMeta + yym3218 := z.EncBinary() + _ = yym3218 if false { - } else if z.HasExtensions() && z.EncExt(yy3253) { + } else if z.HasExtensions() && z.EncExt(yy3217) { } else { - z.EncFallback(yy3253) + z.EncFallback(yy3217) } } else { r.EncodeNil() } } else { - if yyq3245[2] { + if yyq3209[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3255 := &x.ListMeta - yym3256 := z.EncBinary() - _ = yym3256 + yy3219 := &x.ListMeta + yym3220 := z.EncBinary() + _ = yym3220 if false { - } else if z.HasExtensions() && z.EncExt(yy3255) { + } else if z.HasExtensions() && z.EncExt(yy3219) { } else { - z.EncFallback(yy3255) + z.EncFallback(yy3219) } } } - if yyr3245 || yy2arr3245 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3258 := z.EncBinary() - _ = yym3258 + yym3222 := z.EncBinary() + _ = yym3222 if false { } else { - h.encSliceNamespace(([]Namespace)(x.Items), e) + h.encSliceNode(([]Node)(x.Items), e) } } } else { @@ -41542,15 +41162,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3259 := z.EncBinary() - _ = yym3259 + yym3223 := z.EncBinary() + _ = yym3223 if false { } else { - h.encSliceNamespace(([]Namespace)(x.Items), e) + h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3245 || yy2arr3245 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41559,29 +41179,29 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3260 := z.DecBinary() - _ = yym3260 + yym3224 := z.DecBinary() + _ = yym3224 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3261 := r.ContainerType() - if yyct3261 == codecSelferValueTypeMap1234 { - yyl3261 := r.ReadMapStart() - if yyl3261 == 0 { + yyct3225 := r.ContainerType() + if yyct3225 == codecSelferValueTypeMap1234 { + yyl3225 := r.ReadMapStart() + if yyl3225 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3261, d) + x.codecDecodeSelfFromMap(yyl3225, d) } - } else if yyct3261 == codecSelferValueTypeArray1234 { - yyl3261 := r.ReadArrayStart() - if yyl3261 == 0 { + } else if yyct3225 == codecSelferValueTypeArray1234 { + yyl3225 := r.ReadArrayStart() + if yyl3225 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3261, d) + x.codecDecodeSelfFromArray(yyl3225, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41589,16 +41209,16 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3262Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3262Slc - var yyhl3262 bool = l >= 0 - for yyj3262 := 0; ; yyj3262++ { - if yyhl3262 { - if yyj3262 >= l { + var yys3226Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3226Slc + var yyhl3226 bool = l >= 0 + for yyj3226 := 0; ; yyj3226++ { + if yyhl3226 { + if yyj3226 >= l { break } } else { @@ -41607,10 +41227,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3262Slc = r.DecodeBytes(yys3262Slc, true, true) - yys3262 := string(yys3262Slc) + yys3226Slc = r.DecodeBytes(yys3226Slc, true, true) + yys3226 := string(yys3226Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3262 { + switch yys3226 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41627,48 +41247,48 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3265 := &x.ListMeta - yym3266 := z.DecBinary() - _ = yym3266 + yyv3229 := &x.ListMeta + yym3230 := z.DecBinary() + _ = yym3230 if false { - } else if z.HasExtensions() && z.DecExt(yyv3265) { + } else if z.HasExtensions() && z.DecExt(yyv3229) { } else { - z.DecFallback(yyv3265, false) + z.DecFallback(yyv3229, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3267 := &x.Items - yym3268 := z.DecBinary() - _ = yym3268 + yyv3231 := &x.Items + yym3232 := z.DecBinary() + _ = yym3232 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3267), d) + h.decSliceNode((*[]Node)(yyv3231), d) } } default: - z.DecStructFieldNotFound(-1, yys3262) - } // end switch yys3262 - } // end for yyj3262 + z.DecStructFieldNotFound(-1, yys3226) + } // end switch yys3226 + } // end for yyj3226 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3269 int - var yyb3269 bool - var yyhl3269 bool = l >= 0 - yyj3269++ - if yyhl3269 { - yyb3269 = yyj3269 > l + var yyj3233 int + var yyb3233 bool + var yyhl3233 bool = l >= 0 + yyj3233++ + if yyhl3233 { + yyb3233 = yyj3233 > l } else { - yyb3269 = r.CheckBreak() + yyb3233 = r.CheckBreak() } - if yyb3269 { + if yyb3233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41678,13 +41298,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3269++ - if yyhl3269 { - yyb3269 = yyj3269 > l + yyj3233++ + if yyhl3233 { + yyb3233 = yyj3233 > l } else { - yyb3269 = r.CheckBreak() + yyb3233 = r.CheckBreak() } - if yyb3269 { + if yyb3233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41694,13 +41314,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3269++ - if yyhl3269 { - yyb3269 = yyj3269 > l + yyj3233++ + if yyhl3233 { + yyb3233 = yyj3233 > l } else { - yyb3269 = r.CheckBreak() + yyb3233 = r.CheckBreak() } - if yyb3269 { + if yyb3233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41708,22 +41328,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3272 := &x.ListMeta - yym3273 := z.DecBinary() - _ = yym3273 + yyv3236 := &x.ListMeta + yym3237 := z.DecBinary() + _ = yym3237 if false { - } else if z.HasExtensions() && z.DecExt(yyv3272) { + } else if z.HasExtensions() && z.DecExt(yyv3236) { } else { - z.DecFallback(yyv3272, false) + z.DecFallback(yyv3236, false) } } - yyj3269++ - if yyhl3269 { - yyb3269 = yyj3269 > l + yyj3233++ + if yyhl3233 { + yyb3233 = yyj3233 > l } else { - yyb3269 = r.CheckBreak() + yyb3233 = r.CheckBreak() } - if yyb3269 { + if yyb3233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41731,142 +41351,121 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3274 := &x.Items - yym3275 := z.DecBinary() - _ = yym3275 + yyv3238 := &x.Items + yym3239 := z.DecBinary() + _ = yym3239 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3274), d) + h.decSliceNode((*[]Node)(yyv3238), d) } } for { - yyj3269++ - if yyhl3269 { - yyb3269 = yyj3269 > l + yyj3233++ + if yyhl3233 { + yyb3233 = yyj3233 > l } else { - yyb3269 = r.CheckBreak() + yyb3233 = r.CheckBreak() } - if yyb3269 { + if yyb3233 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3269-1, "") + z.DecStructFieldNotFound(yyj3233-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { +func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym3240 := z.EncBinary() + _ = yym3240 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3241 := z.DecBinary() + _ = yym3241 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym3276 := z.EncBinary() - _ = yym3276 + yym3242 := z.EncBinary() + _ = yym3242 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3277 := !z.EncBinary() - yy2arr3277 := z.EncBasicHandle().StructToArray - var yyq3277 [4]bool - _, _, _ = yysep3277, yyq3277, yy2arr3277 - const yyr3277 bool = false - yyq3277[0] = x.Kind != "" - yyq3277[1] = x.APIVersion != "" - yyq3277[2] = true - var yynn3277 int - if yyr3277 || yy2arr3277 { - r.EncodeArrayStart(4) + yysep3243 := !z.EncBinary() + yy2arr3243 := z.EncBasicHandle().StructToArray + var yyq3243 [1]bool + _, _, _ = yysep3243, yyq3243, yy2arr3243 + const yyr3243 bool = false + yyq3243[0] = len(x.Finalizers) != 0 + var yynn3243 int + if yyr3243 || yy2arr3243 { + r.EncodeArrayStart(1) } else { - yynn3277 = 1 - for _, b := range yyq3277 { + yynn3243 = 0 + for _, b := range yyq3243 { if b { - yynn3277++ + yynn3243++ } } - r.EncodeMapStart(yynn3277) - yynn3277 = 0 + r.EncodeMapStart(yynn3243) + yynn3243 = 0 } - if yyr3277 || yy2arr3277 { + if yyr3243 || yy2arr3243 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3277[0] { - yym3279 := z.EncBinary() - _ = yym3279 - if false { + if yyq3243[0] { + if x.Finalizers == nil { + r.EncodeNil() } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + yym3245 := z.EncBinary() + _ = yym3245 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3277[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3280 := z.EncBinary() - _ = yym3280 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3277 || yy2arr3277 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3277[1] { - yym3282 := z.EncBinary() - _ = yym3282 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3277[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3283 := z.EncBinary() - _ = yym3283 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3277 || yy2arr3277 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3277[2] { - yy3285 := &x.ObjectMeta - yy3285.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3277[2] { + if yyq3243[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) + r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3286 := &x.ObjectMeta - yy3286.CodecEncodeSelf(e) + if x.Finalizers == nil { + r.EncodeNil() + } else { + yym3246 := z.EncBinary() + _ = yym3246 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } + } } } - if yyr3277 || yy2arr3277 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3288 := &x.Target - yy3288.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("target")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3289 := &x.Target - yy3289.CodecEncodeSelf(e) - } - if yyr3277 || yy2arr3277 { + if yyr3243 || yy2arr3243 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41875,29 +41474,29 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3290 := z.DecBinary() - _ = yym3290 + yym3247 := z.DecBinary() + _ = yym3247 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3291 := r.ContainerType() - if yyct3291 == codecSelferValueTypeMap1234 { - yyl3291 := r.ReadMapStart() - if yyl3291 == 0 { + yyct3248 := r.ContainerType() + if yyct3248 == codecSelferValueTypeMap1234 { + yyl3248 := r.ReadMapStart() + if yyl3248 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3291, d) + x.codecDecodeSelfFromMap(yyl3248, d) } - } else if yyct3291 == codecSelferValueTypeArray1234 { - yyl3291 := r.ReadArrayStart() - if yyl3291 == 0 { + } else if yyct3248 == codecSelferValueTypeArray1234 { + yyl3248 := r.ReadArrayStart() + if yyl3248 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3291, d) + x.codecDecodeSelfFromArray(yyl3248, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41905,16 +41504,16 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3292Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3292Slc - var yyhl3292 bool = l >= 0 - for yyj3292 := 0; ; yyj3292++ { - if yyhl3292 { - if yyj3292 >= l { + var yys3249Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3249Slc + var yyhl3249 bool = l >= 0 + for yyj3249 := 0; ; yyj3249++ { + if yyhl3249 { + if yyj3249 >= l { break } } else { @@ -41923,10 +41522,456 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3292Slc = r.DecodeBytes(yys3292Slc, true, true) - yys3292 := string(yys3292Slc) + yys3249Slc = r.DecodeBytes(yys3249Slc, true, true) + yys3249 := string(yys3249Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3292 { + switch yys3249 { + case "finalizers": + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv3250 := &x.Finalizers + yym3251 := z.DecBinary() + _ = yym3251 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv3250), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3249) + } // end switch yys3249 + } // end for yyj3249 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3252 int + var yyb3252 bool + var yyhl3252 bool = l >= 0 + yyj3252++ + if yyhl3252 { + yyb3252 = yyj3252 > l + } else { + yyb3252 = r.CheckBreak() + } + if yyb3252 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv3253 := &x.Finalizers + yym3254 := z.DecBinary() + _ = yym3254 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv3253), d) + } + } + for { + yyj3252++ + if yyhl3252 { + yyb3252 = yyj3252 > l + } else { + yyb3252 = r.CheckBreak() + } + if yyb3252 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3252-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3255 := z.EncBinary() + _ = yym3255 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3256 := !z.EncBinary() + yy2arr3256 := z.EncBasicHandle().StructToArray + var yyq3256 [1]bool + _, _, _ = yysep3256, yyq3256, yy2arr3256 + const yyr3256 bool = false + yyq3256[0] = x.Phase != "" + var yynn3256 int + if yyr3256 || yy2arr3256 { + r.EncodeArrayStart(1) + } else { + yynn3256 = 0 + for _, b := range yyq3256 { + if b { + yynn3256++ + } + } + r.EncodeMapStart(yynn3256) + yynn3256 = 0 + } + if yyr3256 || yy2arr3256 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3256[0] { + x.Phase.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3256[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("phase")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Phase.CodecEncodeSelf(e) + } + } + if yyr3256 || yy2arr3256 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3258 := z.DecBinary() + _ = yym3258 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3259 := r.ContainerType() + if yyct3259 == codecSelferValueTypeMap1234 { + yyl3259 := r.ReadMapStart() + if yyl3259 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3259, d) + } + } else if yyct3259 == codecSelferValueTypeArray1234 { + yyl3259 := r.ReadArrayStart() + if yyl3259 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3259, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3260Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3260Slc + var yyhl3260 bool = l >= 0 + for yyj3260 := 0; ; yyj3260++ { + if yyhl3260 { + if yyj3260 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3260Slc = r.DecodeBytes(yys3260Slc, true, true) + yys3260 := string(yys3260Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3260 { + case "phase": + if r.TryDecodeAsNil() { + x.Phase = "" + } else { + x.Phase = NamespacePhase(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3260) + } // end switch yys3260 + } // end for yyj3260 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3262 int + var yyb3262 bool + var yyhl3262 bool = l >= 0 + yyj3262++ + if yyhl3262 { + yyb3262 = yyj3262 > l + } else { + yyb3262 = r.CheckBreak() + } + if yyb3262 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Phase = "" + } else { + x.Phase = NamespacePhase(r.DecodeString()) + } + for { + yyj3262++ + if yyhl3262 { + yyb3262 = yyj3262 > l + } else { + yyb3262 = r.CheckBreak() + } + if yyb3262 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3262-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym3264 := z.EncBinary() + _ = yym3264 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3265 := z.DecBinary() + _ = yym3265 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3266 := z.EncBinary() + _ = yym3266 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3267 := !z.EncBinary() + yy2arr3267 := z.EncBasicHandle().StructToArray + var yyq3267 [5]bool + _, _, _ = yysep3267, yyq3267, yy2arr3267 + const yyr3267 bool = false + yyq3267[0] = x.Kind != "" + yyq3267[1] = x.APIVersion != "" + yyq3267[2] = true + yyq3267[3] = true + yyq3267[4] = true + var yynn3267 int + if yyr3267 || yy2arr3267 { + r.EncodeArrayStart(5) + } else { + yynn3267 = 0 + for _, b := range yyq3267 { + if b { + yynn3267++ + } + } + r.EncodeMapStart(yynn3267) + yynn3267 = 0 + } + if yyr3267 || yy2arr3267 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3267[0] { + yym3269 := z.EncBinary() + _ = yym3269 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3267[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3270 := z.EncBinary() + _ = yym3270 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3267 || yy2arr3267 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3267[1] { + yym3272 := z.EncBinary() + _ = yym3272 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3267[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3273 := z.EncBinary() + _ = yym3273 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3267 || yy2arr3267 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3267[2] { + yy3275 := &x.ObjectMeta + yy3275.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3267[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3276 := &x.ObjectMeta + yy3276.CodecEncodeSelf(e) + } + } + if yyr3267 || yy2arr3267 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3267[3] { + yy3278 := &x.Spec + yy3278.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3267[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3279 := &x.Spec + yy3279.CodecEncodeSelf(e) + } + } + if yyr3267 || yy2arr3267 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3267[4] { + yy3281 := &x.Status + yy3281.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3267[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3282 := &x.Status + yy3282.CodecEncodeSelf(e) + } + } + if yyr3267 || yy2arr3267 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3283 := z.DecBinary() + _ = yym3283 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3284 := r.ContainerType() + if yyct3284 == codecSelferValueTypeMap1234 { + yyl3284 := r.ReadMapStart() + if yyl3284 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3284, d) + } + } else if yyct3284 == codecSelferValueTypeArray1234 { + yyl3284 := r.ReadArrayStart() + if yyl3284 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3284, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3285Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3285Slc + var yyhl3285 bool = l >= 0 + for yyj3285 := 0; ; yyj3285++ { + if yyhl3285 { + if yyj3285 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3285Slc = r.DecodeBytes(yys3285Slc, true, true) + yys3285 := string(yys3285Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3285 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41943,37 +41988,44 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3295 := &x.ObjectMeta - yyv3295.CodecDecodeSelf(d) + yyv3288 := &x.ObjectMeta + yyv3288.CodecDecodeSelf(d) } - case "target": + case "spec": if r.TryDecodeAsNil() { - x.Target = ObjectReference{} + x.Spec = NamespaceSpec{} } else { - yyv3296 := &x.Target - yyv3296.CodecDecodeSelf(d) + yyv3289 := &x.Spec + yyv3289.CodecDecodeSelf(d) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = NamespaceStatus{} + } else { + yyv3290 := &x.Status + yyv3290.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3292) - } // end switch yys3292 - } // end for yyj3292 + z.DecStructFieldNotFound(-1, yys3285) + } // end switch yys3285 + } // end for yyj3285 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3297 int - var yyb3297 bool - var yyhl3297 bool = l >= 0 - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + var yyj3291 int + var yyb3291 bool + var yyhl3291 bool = l >= 0 + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l } else { - yyb3297 = r.CheckBreak() + yyb3291 = r.CheckBreak() } - if yyb3297 { + if yyb3291 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41983,13 +42035,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l } else { - yyb3297 = r.CheckBreak() + yyb3291 = r.CheckBreak() } - if yyb3297 { + if yyb3291 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41999,13 +42051,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l } else { - yyb3297 = r.CheckBreak() + yyb3291 = r.CheckBreak() } - if yyb3297 { + if yyb3291 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42013,16 +42065,671 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3300 := &x.ObjectMeta - yyv3300.CodecDecodeSelf(d) + yyv3294 := &x.ObjectMeta + yyv3294.CodecDecodeSelf(d) } - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l } else { - yyb3297 = r.CheckBreak() + yyb3291 = r.CheckBreak() } - if yyb3297 { + if yyb3291 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = NamespaceSpec{} + } else { + yyv3295 := &x.Spec + yyv3295.CodecDecodeSelf(d) + } + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l + } else { + yyb3291 = r.CheckBreak() + } + if yyb3291 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = NamespaceStatus{} + } else { + yyv3296 := &x.Status + yyv3296.CodecDecodeSelf(d) + } + for { + yyj3291++ + if yyhl3291 { + yyb3291 = yyj3291 > l + } else { + yyb3291 = r.CheckBreak() + } + if yyb3291 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3291-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3297 := z.EncBinary() + _ = yym3297 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3298 := !z.EncBinary() + yy2arr3298 := z.EncBasicHandle().StructToArray + var yyq3298 [4]bool + _, _, _ = yysep3298, yyq3298, yy2arr3298 + const yyr3298 bool = false + yyq3298[0] = x.Kind != "" + yyq3298[1] = x.APIVersion != "" + yyq3298[2] = true + var yynn3298 int + if yyr3298 || yy2arr3298 { + r.EncodeArrayStart(4) + } else { + yynn3298 = 1 + for _, b := range yyq3298 { + if b { + yynn3298++ + } + } + r.EncodeMapStart(yynn3298) + yynn3298 = 0 + } + if yyr3298 || yy2arr3298 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3298[0] { + yym3300 := z.EncBinary() + _ = yym3300 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3298[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3301 := z.EncBinary() + _ = yym3301 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3298 || yy2arr3298 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3298[1] { + yym3303 := z.EncBinary() + _ = yym3303 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3298[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3304 := z.EncBinary() + _ = yym3304 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3298 || yy2arr3298 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3298[2] { + yy3306 := &x.ListMeta + yym3307 := z.EncBinary() + _ = yym3307 + if false { + } else if z.HasExtensions() && z.EncExt(yy3306) { + } else { + z.EncFallback(yy3306) + } + } else { + r.EncodeNil() + } + } else { + if yyq3298[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3308 := &x.ListMeta + yym3309 := z.EncBinary() + _ = yym3309 + if false { + } else if z.HasExtensions() && z.EncExt(yy3308) { + } else { + z.EncFallback(yy3308) + } + } + } + if yyr3298 || yy2arr3298 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3311 := z.EncBinary() + _ = yym3311 + if false { + } else { + h.encSliceNamespace(([]Namespace)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3312 := z.EncBinary() + _ = yym3312 + if false { + } else { + h.encSliceNamespace(([]Namespace)(x.Items), e) + } + } + } + if yyr3298 || yy2arr3298 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3313 := z.DecBinary() + _ = yym3313 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3314 := r.ContainerType() + if yyct3314 == codecSelferValueTypeMap1234 { + yyl3314 := r.ReadMapStart() + if yyl3314 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3314, d) + } + } else if yyct3314 == codecSelferValueTypeArray1234 { + yyl3314 := r.ReadArrayStart() + if yyl3314 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3314, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3315Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3315Slc + var yyhl3315 bool = l >= 0 + for yyj3315 := 0; ; yyj3315++ { + if yyhl3315 { + if yyj3315 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3315Slc = r.DecodeBytes(yys3315Slc, true, true) + yys3315 := string(yys3315Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3315 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv3318 := &x.ListMeta + yym3319 := z.DecBinary() + _ = yym3319 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3318) { + } else { + z.DecFallback(yyv3318, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3320 := &x.Items + yym3321 := z.DecBinary() + _ = yym3321 + if false { + } else { + h.decSliceNamespace((*[]Namespace)(yyv3320), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3315) + } // end switch yys3315 + } // end for yyj3315 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3322 int + var yyb3322 bool + var yyhl3322 bool = l >= 0 + yyj3322++ + if yyhl3322 { + yyb3322 = yyj3322 > l + } else { + yyb3322 = r.CheckBreak() + } + if yyb3322 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3322++ + if yyhl3322 { + yyb3322 = yyj3322 > l + } else { + yyb3322 = r.CheckBreak() + } + if yyb3322 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3322++ + if yyhl3322 { + yyb3322 = yyj3322 > l + } else { + yyb3322 = r.CheckBreak() + } + if yyb3322 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv3325 := &x.ListMeta + yym3326 := z.DecBinary() + _ = yym3326 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3325) { + } else { + z.DecFallback(yyv3325, false) + } + } + yyj3322++ + if yyhl3322 { + yyb3322 = yyj3322 > l + } else { + yyb3322 = r.CheckBreak() + } + if yyb3322 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3327 := &x.Items + yym3328 := z.DecBinary() + _ = yym3328 + if false { + } else { + h.decSliceNamespace((*[]Namespace)(yyv3327), d) + } + } + for { + yyj3322++ + if yyhl3322 { + yyb3322 = yyj3322 > l + } else { + yyb3322 = r.CheckBreak() + } + if yyb3322 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3322-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3329 := z.EncBinary() + _ = yym3329 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3330 := !z.EncBinary() + yy2arr3330 := z.EncBasicHandle().StructToArray + var yyq3330 [4]bool + _, _, _ = yysep3330, yyq3330, yy2arr3330 + const yyr3330 bool = false + yyq3330[0] = x.Kind != "" + yyq3330[1] = x.APIVersion != "" + yyq3330[2] = true + var yynn3330 int + if yyr3330 || yy2arr3330 { + r.EncodeArrayStart(4) + } else { + yynn3330 = 1 + for _, b := range yyq3330 { + if b { + yynn3330++ + } + } + r.EncodeMapStart(yynn3330) + yynn3330 = 0 + } + if yyr3330 || yy2arr3330 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3330[0] { + yym3332 := z.EncBinary() + _ = yym3332 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3330[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3333 := z.EncBinary() + _ = yym3333 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3330 || yy2arr3330 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3330[1] { + yym3335 := z.EncBinary() + _ = yym3335 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3330[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3336 := z.EncBinary() + _ = yym3336 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3330 || yy2arr3330 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3330[2] { + yy3338 := &x.ObjectMeta + yy3338.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3330[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3339 := &x.ObjectMeta + yy3339.CodecEncodeSelf(e) + } + } + if yyr3330 || yy2arr3330 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3341 := &x.Target + yy3341.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("target")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3342 := &x.Target + yy3342.CodecEncodeSelf(e) + } + if yyr3330 || yy2arr3330 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3343 := z.DecBinary() + _ = yym3343 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3344 := r.ContainerType() + if yyct3344 == codecSelferValueTypeMap1234 { + yyl3344 := r.ReadMapStart() + if yyl3344 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3344, d) + } + } else if yyct3344 == codecSelferValueTypeArray1234 { + yyl3344 := r.ReadArrayStart() + if yyl3344 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3344, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3345Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3345Slc + var yyhl3345 bool = l >= 0 + for yyj3345 := 0; ; yyj3345++ { + if yyhl3345 { + if yyj3345 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3345Slc = r.DecodeBytes(yys3345Slc, true, true) + yys3345 := string(yys3345Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3345 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3348 := &x.ObjectMeta + yyv3348.CodecDecodeSelf(d) + } + case "target": + if r.TryDecodeAsNil() { + x.Target = ObjectReference{} + } else { + yyv3349 := &x.Target + yyv3349.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3345) + } // end switch yys3345 + } // end for yyj3345 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3350 int + var yyb3350 bool + var yyhl3350 bool = l >= 0 + yyj3350++ + if yyhl3350 { + yyb3350 = yyj3350 > l + } else { + yyb3350 = r.CheckBreak() + } + if yyb3350 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3350++ + if yyhl3350 { + yyb3350 = yyj3350 > l + } else { + yyb3350 = r.CheckBreak() + } + if yyb3350 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3350++ + if yyhl3350 { + yyb3350 = yyj3350 > l + } else { + yyb3350 = r.CheckBreak() + } + if yyb3350 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3353 := &x.ObjectMeta + yyv3353.CodecDecodeSelf(d) + } + yyj3350++ + if yyhl3350 { + yyb3350 = yyj3350 > l + } else { + yyb3350 = r.CheckBreak() + } + if yyb3350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42030,21 +42737,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3301 := &x.Target - yyv3301.CodecDecodeSelf(d) + yyv3354 := &x.Target + yyv3354.CodecDecodeSelf(d) } for { - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l + yyj3350++ + if yyhl3350 { + yyb3350 = yyj3350 > l } else { - yyb3297 = r.CheckBreak() + yyb3350 = r.CheckBreak() } - if yyb3297 { + if yyb3350 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3297-1, "") + z.DecStructFieldNotFound(yyj3350-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42056,68 +42763,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3302 := z.EncBinary() - _ = yym3302 + yym3355 := z.EncBinary() + _ = yym3355 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3303 := !z.EncBinary() - yy2arr3303 := z.EncBasicHandle().StructToArray - var yyq3303 [1]bool - _, _, _ = yysep3303, yyq3303, yy2arr3303 - const yyr3303 bool = false - yyq3303[0] = x.UID != nil - var yynn3303 int - if yyr3303 || yy2arr3303 { + yysep3356 := !z.EncBinary() + yy2arr3356 := z.EncBasicHandle().StructToArray + var yyq3356 [1]bool + _, _, _ = yysep3356, yyq3356, yy2arr3356 + const yyr3356 bool = false + yyq3356[0] = x.UID != nil + var yynn3356 int + if yyr3356 || yy2arr3356 { r.EncodeArrayStart(1) } else { - yynn3303 = 0 - for _, b := range yyq3303 { + yynn3356 = 0 + for _, b := range yyq3356 { if b { - yynn3303++ + yynn3356++ } } - r.EncodeMapStart(yynn3303) - yynn3303 = 0 + r.EncodeMapStart(yynn3356) + yynn3356 = 0 } - if yyr3303 || yy2arr3303 { + if yyr3356 || yy2arr3356 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3303[0] { + if yyq3356[0] { if x.UID == nil { r.EncodeNil() } else { - yy3305 := *x.UID - yym3306 := z.EncBinary() - _ = yym3306 + yy3358 := *x.UID + yym3359 := z.EncBinary() + _ = yym3359 if false { - } else if z.HasExtensions() && z.EncExt(yy3305) { + } else if z.HasExtensions() && z.EncExt(yy3358) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3305)) + r.EncodeString(codecSelferC_UTF81234, string(yy3358)) } } } else { r.EncodeNil() } } else { - if yyq3303[0] { + if yyq3356[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3307 := *x.UID - yym3308 := z.EncBinary() - _ = yym3308 + yy3360 := *x.UID + yym3361 := z.EncBinary() + _ = yym3361 if false { - } else if z.HasExtensions() && z.EncExt(yy3307) { + } else if z.HasExtensions() && z.EncExt(yy3360) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3307)) + r.EncodeString(codecSelferC_UTF81234, string(yy3360)) } } } } - if yyr3303 || yy2arr3303 { + if yyr3356 || yy2arr3356 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42130,25 +42837,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3309 := z.DecBinary() - _ = yym3309 + yym3362 := z.DecBinary() + _ = yym3362 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3310 := r.ContainerType() - if yyct3310 == codecSelferValueTypeMap1234 { - yyl3310 := r.ReadMapStart() - if yyl3310 == 0 { + yyct3363 := r.ContainerType() + if yyct3363 == codecSelferValueTypeMap1234 { + yyl3363 := r.ReadMapStart() + if yyl3363 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3310, d) + x.codecDecodeSelfFromMap(yyl3363, d) } - } else if yyct3310 == codecSelferValueTypeArray1234 { - yyl3310 := r.ReadArrayStart() - if yyl3310 == 0 { + } else if yyct3363 == codecSelferValueTypeArray1234 { + yyl3363 := r.ReadArrayStart() + if yyl3363 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3310, d) + x.codecDecodeSelfFromArray(yyl3363, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42160,12 +42867,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3311Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3311Slc - var yyhl3311 bool = l >= 0 - for yyj3311 := 0; ; yyj3311++ { - if yyhl3311 { - if yyj3311 >= l { + var 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 { @@ -42174,10 +42881,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3311Slc = r.DecodeBytes(yys3311Slc, true, true) - yys3311 := string(yys3311Slc) + yys3364Slc = r.DecodeBytes(yys3364Slc, true, true) + yys3364 := string(yys3364Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3311 { + switch yys3364 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -42187,8 +42894,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3313 := z.DecBinary() - _ = yym3313 + yym3366 := z.DecBinary() + _ = yym3366 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42196,9 +42903,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3311) - } // end switch yys3311 - } // end for yyj3311 + z.DecStructFieldNotFound(-1, yys3364) + } // end switch yys3364 + } // end for yyj3364 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42206,16 +42913,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3314 int - var yyb3314 bool - var yyhl3314 bool = l >= 0 - yyj3314++ - if yyhl3314 { - yyb3314 = yyj3314 > l + var yyj3367 int + var yyb3367 bool + var yyhl3367 bool = l >= 0 + yyj3367++ + if yyhl3367 { + yyb3367 = yyj3367 > l } else { - yyb3314 = r.CheckBreak() + yyb3367 = r.CheckBreak() } - if yyb3314 { + if yyb3367 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42228,8 +42935,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3316 := z.DecBinary() - _ = yym3316 + yym3369 := z.DecBinary() + _ = yym3369 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -42237,17 +42944,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3314++ - if yyhl3314 { - yyb3314 = yyj3314 > l + yyj3367++ + if yyhl3367 { + yyb3367 = yyj3367 > l } else { - yyb3314 = r.CheckBreak() + yyb3367 = r.CheckBreak() } - if yyb3314 { + if yyb3367 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3314-1, "") + z.DecStructFieldNotFound(yyj3367-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42259,39 +42966,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3317 := z.EncBinary() - _ = yym3317 + yym3370 := z.EncBinary() + _ = yym3370 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3318 := !z.EncBinary() - yy2arr3318 := z.EncBasicHandle().StructToArray - var yyq3318 [5]bool - _, _, _ = yysep3318, yyq3318, yy2arr3318 - const yyr3318 bool = false - yyq3318[0] = x.Kind != "" - yyq3318[1] = x.APIVersion != "" - yyq3318[2] = x.GracePeriodSeconds != nil - yyq3318[3] = x.Preconditions != nil - yyq3318[4] = x.OrphanDependents != nil - var yynn3318 int - if yyr3318 || yy2arr3318 { + yysep3371 := !z.EncBinary() + yy2arr3371 := z.EncBasicHandle().StructToArray + var yyq3371 [5]bool + _, _, _ = yysep3371, yyq3371, yy2arr3371 + const yyr3371 bool = false + yyq3371[0] = x.Kind != "" + yyq3371[1] = x.APIVersion != "" + yyq3371[2] = x.GracePeriodSeconds != nil + yyq3371[3] = x.Preconditions != nil + yyq3371[4] = x.OrphanDependents != nil + var yynn3371 int + if yyr3371 || yy2arr3371 { r.EncodeArrayStart(5) } else { - yynn3318 = 0 - for _, b := range yyq3318 { + yynn3371 = 0 + for _, b := range yyq3371 { if b { - yynn3318++ + yynn3371++ } } - r.EncodeMapStart(yynn3318) - yynn3318 = 0 + r.EncodeMapStart(yynn3371) + yynn3371 = 0 } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[0] { - yym3320 := z.EncBinary() - _ = yym3320 + if yyq3371[0] { + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42300,23 +43007,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3318[0] { + if yyq3371[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3321 := z.EncBinary() - _ = yym3321 + yym3374 := z.EncBinary() + _ = yym3374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[1] { - yym3323 := z.EncBinary() - _ = yym3323 + if yyq3371[1] { + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42325,56 +43032,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3318[1] { + if yyq3371[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3324 := z.EncBinary() - _ = yym3324 + yym3377 := z.EncBinary() + _ = yym3377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[2] { + if yyq3371[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3326 := *x.GracePeriodSeconds - yym3327 := z.EncBinary() - _ = yym3327 + yy3379 := *x.GracePeriodSeconds + yym3380 := z.EncBinary() + _ = yym3380 if false { } else { - r.EncodeInt(int64(yy3326)) + r.EncodeInt(int64(yy3379)) } } } else { r.EncodeNil() } } else { - if yyq3318[2] { + if yyq3371[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3328 := *x.GracePeriodSeconds - yym3329 := z.EncBinary() - _ = yym3329 + yy3381 := *x.GracePeriodSeconds + yym3382 := z.EncBinary() + _ = yym3382 if false { } else { - r.EncodeInt(int64(yy3328)) + r.EncodeInt(int64(yy3381)) } } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[3] { + if yyq3371[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -42384,7 +43091,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3318[3] { + if yyq3371[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42395,42 +43102,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3318[4] { + if yyq3371[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3332 := *x.OrphanDependents - yym3333 := z.EncBinary() - _ = yym3333 + yy3385 := *x.OrphanDependents + yym3386 := z.EncBinary() + _ = yym3386 if false { } else { - r.EncodeBool(bool(yy3332)) + r.EncodeBool(bool(yy3385)) } } } else { r.EncodeNil() } } else { - if yyq3318[4] { + if yyq3371[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3334 := *x.OrphanDependents - yym3335 := z.EncBinary() - _ = yym3335 + yy3387 := *x.OrphanDependents + yym3388 := z.EncBinary() + _ = yym3388 if false { } else { - r.EncodeBool(bool(yy3334)) + r.EncodeBool(bool(yy3387)) } } } } - if yyr3318 || yy2arr3318 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42443,25 +43150,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3336 := z.DecBinary() - _ = yym3336 + yym3389 := z.DecBinary() + _ = yym3389 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3337 := r.ContainerType() - if yyct3337 == codecSelferValueTypeMap1234 { - yyl3337 := r.ReadMapStart() - if yyl3337 == 0 { + yyct3390 := r.ContainerType() + if yyct3390 == codecSelferValueTypeMap1234 { + yyl3390 := r.ReadMapStart() + if yyl3390 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3337, d) + x.codecDecodeSelfFromMap(yyl3390, d) } - } else if yyct3337 == codecSelferValueTypeArray1234 { - yyl3337 := r.ReadArrayStart() - if yyl3337 == 0 { + } else if yyct3390 == codecSelferValueTypeArray1234 { + yyl3390 := r.ReadArrayStart() + if yyl3390 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3337, d) + x.codecDecodeSelfFromArray(yyl3390, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42473,12 +43180,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3338Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3338Slc - var yyhl3338 bool = l >= 0 - for yyj3338 := 0; ; yyj3338++ { - if yyhl3338 { - if yyj3338 >= l { + var yys3391Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3391Slc + var yyhl3391 bool = l >= 0 + for yyj3391 := 0; ; yyj3391++ { + if yyhl3391 { + if yyj3391 >= l { break } } else { @@ -42487,10 +43194,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3338Slc = r.DecodeBytes(yys3338Slc, true, true) - yys3338 := string(yys3338Slc) + yys3391Slc = r.DecodeBytes(yys3391Slc, true, true) + yys3391 := string(yys3391Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3338 { + switch yys3391 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42512,8 +43219,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3342 := z.DecBinary() - _ = yym3342 + yym3395 := z.DecBinary() + _ = yym3395 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -42539,17 +43246,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3345 := z.DecBinary() - _ = yym3345 + yym3398 := z.DecBinary() + _ = yym3398 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3338) - } // end switch yys3338 - } // end for yyj3338 + z.DecStructFieldNotFound(-1, yys3391) + } // end switch yys3391 + } // end for yyj3391 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42557,16 +43264,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3346 int - var yyb3346 bool - var yyhl3346 bool = l >= 0 - yyj3346++ - if yyhl3346 { - yyb3346 = yyj3346 > l + var yyj3399 int + var yyb3399 bool + var yyhl3399 bool = l >= 0 + yyj3399++ + if yyhl3399 { + yyb3399 = yyj3399 > l } else { - yyb3346 = r.CheckBreak() + yyb3399 = r.CheckBreak() } - if yyb3346 { + if yyb3399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42576,13 +43283,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3346++ - if yyhl3346 { - yyb3346 = yyj3346 > l + yyj3399++ + if yyhl3399 { + yyb3399 = yyj3399 > l } else { - yyb3346 = r.CheckBreak() + yyb3399 = r.CheckBreak() } - if yyb3346 { + if yyb3399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42592,13 +43299,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3346++ - if yyhl3346 { - yyb3346 = yyj3346 > l + yyj3399++ + if yyhl3399 { + yyb3399 = yyj3399 > l } else { - yyb3346 = r.CheckBreak() + yyb3399 = r.CheckBreak() } - if yyb3346 { + if yyb3399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42611,20 +43318,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3350 := z.DecBinary() - _ = yym3350 + yym3403 := z.DecBinary() + _ = yym3403 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3346++ - if yyhl3346 { - yyb3346 = yyj3346 > l + yyj3399++ + if yyhl3399 { + yyb3399 = yyj3399 > l } else { - yyb3346 = r.CheckBreak() + yyb3399 = r.CheckBreak() } - if yyb3346 { + if yyb3399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42639,13 +43346,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3346++ - if yyhl3346 { - yyb3346 = yyj3346 > l + yyj3399++ + if yyhl3399 { + yyb3399 = yyj3399 > l } else { - yyb3346 = r.CheckBreak() + yyb3399 = r.CheckBreak() } - if yyb3346 { + if yyb3399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42658,25 +43365,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3353 := z.DecBinary() - _ = yym3353 + yym3406 := z.DecBinary() + _ = yym3406 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3346++ - if yyhl3346 { - yyb3346 = yyj3346 > l + yyj3399++ + if yyhl3399 { + yyb3399 = yyj3399 > l } else { - yyb3346 = r.CheckBreak() + yyb3399 = r.CheckBreak() } - if yyb3346 { + if yyb3399 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3346-1, "") + z.DecStructFieldNotFound(yyj3399-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42688,36 +43395,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3354 := z.EncBinary() - _ = yym3354 + yym3407 := z.EncBinary() + _ = yym3407 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3355 := !z.EncBinary() - yy2arr3355 := z.EncBasicHandle().StructToArray - var yyq3355 [4]bool - _, _, _ = yysep3355, yyq3355, yy2arr3355 - const yyr3355 bool = false - yyq3355[0] = x.Kind != "" - yyq3355[1] = x.APIVersion != "" - var yynn3355 int - if yyr3355 || yy2arr3355 { + yysep3408 := !z.EncBinary() + yy2arr3408 := z.EncBasicHandle().StructToArray + var yyq3408 [4]bool + _, _, _ = yysep3408, yyq3408, yy2arr3408 + const yyr3408 bool = false + yyq3408[0] = x.Kind != "" + yyq3408[1] = x.APIVersion != "" + var yynn3408 int + if yyr3408 || yy2arr3408 { r.EncodeArrayStart(4) } else { - yynn3355 = 2 - for _, b := range yyq3355 { + yynn3408 = 2 + for _, b := range yyq3408 { if b { - yynn3355++ + yynn3408++ } } - r.EncodeMapStart(yynn3355) - yynn3355 = 0 + r.EncodeMapStart(yynn3408) + yynn3408 = 0 } - if yyr3355 || yy2arr3355 { + if yyr3408 || yy2arr3408 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3355[0] { - yym3357 := z.EncBinary() - _ = yym3357 + if yyq3408[0] { + yym3410 := z.EncBinary() + _ = yym3410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42726,23 +43433,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3355[0] { + if yyq3408[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3358 := z.EncBinary() - _ = yym3358 + yym3411 := z.EncBinary() + _ = yym3411 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3355 || yy2arr3355 { + if yyr3408 || yy2arr3408 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3355[1] { - yym3360 := z.EncBinary() - _ = yym3360 + if yyq3408[1] { + yym3413 := z.EncBinary() + _ = yym3413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42751,22 +43458,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3355[1] { + if yyq3408[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3361 := z.EncBinary() - _ = yym3361 + yym3414 := z.EncBinary() + _ = yym3414 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3355 || yy2arr3355 { + if yyr3408 || yy2arr3408 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3363 := z.EncBinary() - _ = yym3363 + yym3416 := z.EncBinary() + _ = yym3416 if false { } else { r.EncodeBool(bool(x.Export)) @@ -42775,17 +43482,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3364 := z.EncBinary() - _ = yym3364 + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3355 || yy2arr3355 { + if yyr3408 || yy2arr3408 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3366 := z.EncBinary() - _ = yym3366 + yym3419 := z.EncBinary() + _ = yym3419 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -42794,14 +43501,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3367 := z.EncBinary() - _ = yym3367 + yym3420 := z.EncBinary() + _ = yym3420 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3355 || yy2arr3355 { + if yyr3408 || yy2arr3408 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42814,25 +43521,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3368 := z.DecBinary() - _ = yym3368 + yym3421 := z.DecBinary() + _ = yym3421 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3369 := r.ContainerType() - if yyct3369 == codecSelferValueTypeMap1234 { - yyl3369 := r.ReadMapStart() - if yyl3369 == 0 { + yyct3422 := r.ContainerType() + if yyct3422 == codecSelferValueTypeMap1234 { + yyl3422 := r.ReadMapStart() + if yyl3422 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3369, d) + x.codecDecodeSelfFromMap(yyl3422, d) } - } else if yyct3369 == codecSelferValueTypeArray1234 { - yyl3369 := r.ReadArrayStart() - if yyl3369 == 0 { + } else if yyct3422 == codecSelferValueTypeArray1234 { + yyl3422 := r.ReadArrayStart() + if yyl3422 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3369, d) + x.codecDecodeSelfFromArray(yyl3422, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42844,12 +43551,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3370Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3370Slc - var yyhl3370 bool = l >= 0 - for yyj3370 := 0; ; yyj3370++ { - if yyhl3370 { - if yyj3370 >= l { + var yys3423Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3423Slc + var yyhl3423 bool = l >= 0 + for yyj3423 := 0; ; yyj3423++ { + if yyhl3423 { + if yyj3423 >= l { break } } else { @@ -42858,10 +43565,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3370Slc = r.DecodeBytes(yys3370Slc, true, true) - yys3370 := string(yys3370Slc) + yys3423Slc = r.DecodeBytes(yys3423Slc, true, true) + yys3423 := string(yys3423Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3370 { + switch yys3423 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42887,9 +43594,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3370) - } // end switch yys3370 - } // end for yyj3370 + z.DecStructFieldNotFound(-1, yys3423) + } // end switch yys3423 + } // end for yyj3423 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42897,16 +43604,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3375 int - var yyb3375 bool - var yyhl3375 bool = l >= 0 - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + var yyj3428 int + var yyb3428 bool + var yyhl3428 bool = l >= 0 + yyj3428++ + if yyhl3428 { + yyb3428 = yyj3428 > l } else { - yyb3375 = r.CheckBreak() + yyb3428 = r.CheckBreak() } - if yyb3375 { + if yyb3428 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42916,13 +43623,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + yyj3428++ + if yyhl3428 { + yyb3428 = yyj3428 > l } else { - yyb3375 = r.CheckBreak() + yyb3428 = r.CheckBreak() } - if yyb3375 { + if yyb3428 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42932,13 +43639,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + yyj3428++ + if yyhl3428 { + yyb3428 = yyj3428 > l } else { - yyb3375 = r.CheckBreak() + yyb3428 = r.CheckBreak() } - if yyb3375 { + if yyb3428 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42948,13 +43655,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + yyj3428++ + if yyhl3428 { + yyb3428 = yyj3428 > l } else { - yyb3375 = r.CheckBreak() + yyb3428 = r.CheckBreak() } - if yyb3375 { + if yyb3428 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42965,17 +43672,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + yyj3428++ + if yyhl3428 { + yyb3428 = yyj3428 > l } else { - yyb3375 = r.CheckBreak() + yyb3428 = r.CheckBreak() } - if yyb3375 { + if yyb3428 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3375-1, "") + z.DecStructFieldNotFound(yyj3428-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42987,41 +43694,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3380 := z.EncBinary() - _ = yym3380 + yym3433 := z.EncBinary() + _ = yym3433 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3381 := !z.EncBinary() - yy2arr3381 := z.EncBasicHandle().StructToArray - var yyq3381 [7]bool - _, _, _ = yysep3381, yyq3381, yy2arr3381 - const yyr3381 bool = false - yyq3381[0] = x.Kind != "" - yyq3381[1] = x.APIVersion != "" - yyq3381[2] = x.LabelSelector != "" - yyq3381[3] = x.FieldSelector != "" - yyq3381[4] = x.Watch != false - yyq3381[5] = x.ResourceVersion != "" - yyq3381[6] = x.TimeoutSeconds != nil - var yynn3381 int - if yyr3381 || yy2arr3381 { + yysep3434 := !z.EncBinary() + yy2arr3434 := z.EncBasicHandle().StructToArray + var yyq3434 [7]bool + _, _, _ = yysep3434, yyq3434, yy2arr3434 + const yyr3434 bool = false + yyq3434[0] = x.Kind != "" + yyq3434[1] = x.APIVersion != "" + yyq3434[2] = x.LabelSelector != "" + yyq3434[3] = x.FieldSelector != "" + yyq3434[4] = x.Watch != false + yyq3434[5] = x.ResourceVersion != "" + yyq3434[6] = x.TimeoutSeconds != nil + var yynn3434 int + if yyr3434 || yy2arr3434 { r.EncodeArrayStart(7) } else { - yynn3381 = 0 - for _, b := range yyq3381 { + yynn3434 = 0 + for _, b := range yyq3434 { if b { - yynn3381++ + yynn3434++ } } - r.EncodeMapStart(yynn3381) - yynn3381 = 0 + r.EncodeMapStart(yynn3434) + yynn3434 = 0 } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[0] { - yym3383 := z.EncBinary() - _ = yym3383 + if yyq3434[0] { + yym3436 := z.EncBinary() + _ = yym3436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43030,23 +43737,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[0] { + if yyq3434[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3384 := z.EncBinary() - _ = yym3384 + yym3437 := z.EncBinary() + _ = yym3437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[1] { - yym3386 := z.EncBinary() - _ = yym3386 + if yyq3434[1] { + yym3439 := z.EncBinary() + _ = yym3439 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43055,23 +43762,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[1] { + if yyq3434[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3387 := z.EncBinary() - _ = yym3387 + yym3440 := z.EncBinary() + _ = yym3440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[2] { - yym3389 := z.EncBinary() - _ = yym3389 + if yyq3434[2] { + yym3442 := z.EncBinary() + _ = yym3442 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -43080,23 +43787,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[2] { + if yyq3434[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3390 := z.EncBinary() - _ = yym3390 + yym3443 := z.EncBinary() + _ = yym3443 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[3] { - yym3392 := z.EncBinary() - _ = yym3392 + if yyq3434[3] { + yym3445 := z.EncBinary() + _ = yym3445 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -43105,23 +43812,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[3] { + if yyq3434[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3393 := z.EncBinary() - _ = yym3393 + yym3446 := z.EncBinary() + _ = yym3446 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[4] { - yym3395 := z.EncBinary() - _ = yym3395 + if yyq3434[4] { + yym3448 := z.EncBinary() + _ = yym3448 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -43130,23 +43837,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3381[4] { + if yyq3434[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3396 := z.EncBinary() - _ = yym3396 + yym3449 := z.EncBinary() + _ = yym3449 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[5] { - yym3398 := z.EncBinary() - _ = yym3398 + if yyq3434[5] { + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -43155,54 +43862,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3381[5] { + if yyq3434[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3399 := z.EncBinary() - _ = yym3399 + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3381[6] { + if yyq3434[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3401 := *x.TimeoutSeconds - yym3402 := z.EncBinary() - _ = yym3402 + yy3454 := *x.TimeoutSeconds + yym3455 := z.EncBinary() + _ = yym3455 if false { } else { - r.EncodeInt(int64(yy3401)) + r.EncodeInt(int64(yy3454)) } } } else { r.EncodeNil() } } else { - if yyq3381[6] { + if yyq3434[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3403 := *x.TimeoutSeconds - yym3404 := z.EncBinary() - _ = yym3404 + yy3456 := *x.TimeoutSeconds + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { - r.EncodeInt(int64(yy3403)) + r.EncodeInt(int64(yy3456)) } } } } - if yyr3381 || yy2arr3381 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43215,25 +43922,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3405 := z.DecBinary() - _ = yym3405 + yym3458 := z.DecBinary() + _ = yym3458 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3406 := r.ContainerType() - if yyct3406 == codecSelferValueTypeMap1234 { - yyl3406 := r.ReadMapStart() - if yyl3406 == 0 { + yyct3459 := r.ContainerType() + if yyct3459 == codecSelferValueTypeMap1234 { + yyl3459 := r.ReadMapStart() + if yyl3459 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3406, d) + x.codecDecodeSelfFromMap(yyl3459, d) } - } else if yyct3406 == codecSelferValueTypeArray1234 { - yyl3406 := r.ReadArrayStart() - if yyl3406 == 0 { + } else if yyct3459 == codecSelferValueTypeArray1234 { + yyl3459 := r.ReadArrayStart() + if yyl3459 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3406, d) + x.codecDecodeSelfFromArray(yyl3459, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43245,12 +43952,12 @@ func (x *ListOptions) 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 yys3460Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3460Slc + var yyhl3460 bool = l >= 0 + for yyj3460 := 0; ; yyj3460++ { + if yyhl3460 { + if yyj3460 >= l { break } } else { @@ -43259,10 +43966,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3407Slc = r.DecodeBytes(yys3407Slc, true, true) - yys3407 := string(yys3407Slc) + yys3460Slc = r.DecodeBytes(yys3460Slc, true, true) + yys3460 := string(yys3460Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3407 { + switch yys3460 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43308,17 +44015,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3415 := z.DecBinary() - _ = yym3415 + yym3468 := z.DecBinary() + _ = yym3468 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3407) - } // end switch yys3407 - } // end for yyj3407 + z.DecStructFieldNotFound(-1, yys3460) + } // end switch yys3460 + } // end for yyj3460 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43326,16 +44033,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3416 int - var yyb3416 bool - var yyhl3416 bool = l >= 0 - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + var yyj3469 int + var yyb3469 bool + var yyhl3469 bool = l >= 0 + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43345,13 +44052,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43361,13 +44068,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43377,13 +44084,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43393,13 +44100,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43409,13 +44116,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43425,13 +44132,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43444,25 +44151,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3424 := z.DecBinary() - _ = yym3424 + yym3477 := z.DecBinary() + _ = yym3477 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3416++ - if yyhl3416 { - yyb3416 = yyj3416 > l + yyj3469++ + if yyhl3469 { + yyb3469 = yyj3469 > l } else { - yyb3416 = r.CheckBreak() + yyb3469 = r.CheckBreak() } - if yyb3416 { + if yyb3469 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3416-1, "") + z.DecStructFieldNotFound(yyj3469-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43474,44 +44181,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3425 := z.EncBinary() - _ = yym3425 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3426 := !z.EncBinary() - yy2arr3426 := z.EncBasicHandle().StructToArray - var yyq3426 [10]bool - _, _, _ = yysep3426, yyq3426, yy2arr3426 - const yyr3426 bool = false - yyq3426[0] = x.Kind != "" - yyq3426[1] = x.APIVersion != "" - yyq3426[2] = x.Container != "" - yyq3426[3] = x.Follow != false - yyq3426[4] = x.Previous != false - yyq3426[5] = x.SinceSeconds != nil - yyq3426[6] = x.SinceTime != nil - yyq3426[7] = x.Timestamps != false - yyq3426[8] = x.TailLines != nil - yyq3426[9] = x.LimitBytes != nil - var yynn3426 int - if yyr3426 || yy2arr3426 { + yysep3479 := !z.EncBinary() + yy2arr3479 := z.EncBasicHandle().StructToArray + var yyq3479 [10]bool + _, _, _ = yysep3479, yyq3479, yy2arr3479 + const yyr3479 bool = false + yyq3479[0] = x.Kind != "" + yyq3479[1] = x.APIVersion != "" + yyq3479[2] = x.Container != "" + yyq3479[3] = x.Follow != false + yyq3479[4] = x.Previous != false + yyq3479[5] = x.SinceSeconds != nil + yyq3479[6] = x.SinceTime != nil + yyq3479[7] = x.Timestamps != false + yyq3479[8] = x.TailLines != nil + yyq3479[9] = x.LimitBytes != nil + var yynn3479 int + if yyr3479 || yy2arr3479 { r.EncodeArrayStart(10) } else { - yynn3426 = 0 - for _, b := range yyq3426 { + yynn3479 = 0 + for _, b := range yyq3479 { if b { - yynn3426++ + yynn3479++ } } - r.EncodeMapStart(yynn3426) - yynn3426 = 0 + r.EncodeMapStart(yynn3479) + yynn3479 = 0 } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[0] { - yym3428 := z.EncBinary() - _ = yym3428 + if yyq3479[0] { + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43520,23 +44227,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3426[0] { + if yyq3479[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3429 := z.EncBinary() - _ = yym3429 + yym3482 := z.EncBinary() + _ = yym3482 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[1] { - yym3431 := z.EncBinary() - _ = yym3431 + if yyq3479[1] { + yym3484 := z.EncBinary() + _ = yym3484 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43545,23 +44252,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3426[1] { + if yyq3479[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3432 := z.EncBinary() - _ = yym3432 + yym3485 := z.EncBinary() + _ = yym3485 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[2] { - yym3434 := z.EncBinary() - _ = yym3434 + if yyq3479[2] { + yym3487 := z.EncBinary() + _ = yym3487 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43570,23 +44277,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3426[2] { + if yyq3479[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3435 := z.EncBinary() - _ = yym3435 + yym3488 := z.EncBinary() + _ = yym3488 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[3] { - yym3437 := z.EncBinary() - _ = yym3437 + if yyq3479[3] { + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -43595,23 +44302,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3426[3] { + if yyq3479[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3438 := z.EncBinary() - _ = yym3438 + yym3491 := z.EncBinary() + _ = yym3491 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[4] { - yym3440 := z.EncBinary() - _ = yym3440 + if yyq3479[4] { + yym3493 := z.EncBinary() + _ = yym3493 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -43620,66 +44327,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3426[4] { + if yyq3479[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3441 := z.EncBinary() - _ = yym3441 + yym3494 := z.EncBinary() + _ = yym3494 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[5] { + if yyq3479[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3443 := *x.SinceSeconds - yym3444 := z.EncBinary() - _ = yym3444 + yy3496 := *x.SinceSeconds + yym3497 := z.EncBinary() + _ = yym3497 if false { } else { - r.EncodeInt(int64(yy3443)) + r.EncodeInt(int64(yy3496)) } } } else { r.EncodeNil() } } else { - if yyq3426[5] { + if yyq3479[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3445 := *x.SinceSeconds - yym3446 := z.EncBinary() - _ = yym3446 + yy3498 := *x.SinceSeconds + yym3499 := z.EncBinary() + _ = yym3499 if false { } else { - r.EncodeInt(int64(yy3445)) + r.EncodeInt(int64(yy3498)) } } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[6] { + if yyq3479[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3448 := z.EncBinary() - _ = yym3448 + yym3501 := z.EncBinary() + _ = yym3501 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3448 { + } else if yym3501 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3448 && z.IsJSONHandle() { + } else if !yym3501 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -43689,20 +44396,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3426[6] { + if yyq3479[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3449 := z.EncBinary() - _ = yym3449 + yym3502 := z.EncBinary() + _ = yym3502 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3449 { + } else if yym3502 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3449 && z.IsJSONHandle() { + } else if !yym3502 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -43710,11 +44417,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[7] { - yym3451 := z.EncBinary() - _ = yym3451 + if yyq3479[7] { + yym3504 := z.EncBinary() + _ = yym3504 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -43723,89 +44430,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3426[7] { + if yyq3479[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3452 := z.EncBinary() - _ = yym3452 + yym3505 := z.EncBinary() + _ = yym3505 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[8] { + if yyq3479[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3454 := *x.TailLines - yym3455 := z.EncBinary() - _ = yym3455 + yy3507 := *x.TailLines + yym3508 := z.EncBinary() + _ = yym3508 if false { } else { - r.EncodeInt(int64(yy3454)) + r.EncodeInt(int64(yy3507)) } } } else { r.EncodeNil() } } else { - if yyq3426[8] { + if yyq3479[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3456 := *x.TailLines - yym3457 := z.EncBinary() - _ = yym3457 + yy3509 := *x.TailLines + yym3510 := z.EncBinary() + _ = yym3510 if false { } else { - r.EncodeInt(int64(yy3456)) + r.EncodeInt(int64(yy3509)) } } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3426[9] { + if yyq3479[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3459 := *x.LimitBytes - yym3460 := z.EncBinary() - _ = yym3460 + yy3512 := *x.LimitBytes + yym3513 := z.EncBinary() + _ = yym3513 if false { } else { - r.EncodeInt(int64(yy3459)) + r.EncodeInt(int64(yy3512)) } } } else { r.EncodeNil() } } else { - if yyq3426[9] { + if yyq3479[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3461 := *x.LimitBytes - yym3462 := z.EncBinary() - _ = yym3462 + yy3514 := *x.LimitBytes + yym3515 := z.EncBinary() + _ = yym3515 if false { } else { - r.EncodeInt(int64(yy3461)) + r.EncodeInt(int64(yy3514)) } } } } - if yyr3426 || yy2arr3426 { + if yyr3479 || yy2arr3479 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43818,25 +44525,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3463 := z.DecBinary() - _ = yym3463 + yym3516 := z.DecBinary() + _ = yym3516 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3464 := r.ContainerType() - if yyct3464 == codecSelferValueTypeMap1234 { - yyl3464 := r.ReadMapStart() - if yyl3464 == 0 { + yyct3517 := r.ContainerType() + if yyct3517 == codecSelferValueTypeMap1234 { + yyl3517 := r.ReadMapStart() + if yyl3517 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3464, d) + x.codecDecodeSelfFromMap(yyl3517, d) } - } else if yyct3464 == codecSelferValueTypeArray1234 { - yyl3464 := r.ReadArrayStart() - if yyl3464 == 0 { + } else if yyct3517 == codecSelferValueTypeArray1234 { + yyl3517 := r.ReadArrayStart() + if yyl3517 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3464, d) + x.codecDecodeSelfFromArray(yyl3517, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43848,12 +44555,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3465Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3465Slc - var yyhl3465 bool = l >= 0 - for yyj3465 := 0; ; yyj3465++ { - if yyhl3465 { - if yyj3465 >= l { + var yys3518Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3518Slc + var yyhl3518 bool = l >= 0 + for yyj3518 := 0; ; yyj3518++ { + if yyhl3518 { + if yyj3518 >= l { break } } else { @@ -43862,10 +44569,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3465Slc = r.DecodeBytes(yys3465Slc, true, true) - yys3465 := string(yys3465Slc) + yys3518Slc = r.DecodeBytes(yys3518Slc, true, true) + yys3518 := string(yys3518Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3465 { + switch yys3518 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43905,8 +44612,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3472 := z.DecBinary() - _ = yym3472 + yym3525 := z.DecBinary() + _ = yym3525 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -43921,13 +44628,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3474 := z.DecBinary() - _ = yym3474 + yym3527 := z.DecBinary() + _ = yym3527 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3474 { + } else if yym3527 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3474 && z.IsJSONHandle() { + } else if !yym3527 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -43948,8 +44655,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3477 := z.DecBinary() - _ = yym3477 + yym3530 := z.DecBinary() + _ = yym3530 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -43964,17 +44671,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3479 := z.DecBinary() - _ = yym3479 + yym3532 := z.DecBinary() + _ = yym3532 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3465) - } // end switch yys3465 - } // end for yyj3465 + z.DecStructFieldNotFound(-1, yys3518) + } // end switch yys3518 + } // end for yyj3518 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43982,16 +44689,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3480 int - var yyb3480 bool - var yyhl3480 bool = l >= 0 - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + var yyj3533 int + var yyb3533 bool + var yyhl3533 bool = l >= 0 + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44001,13 +44708,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44017,13 +44724,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44033,13 +44740,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44049,13 +44756,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44065,13 +44772,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44084,20 +44791,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3487 := z.DecBinary() - _ = yym3487 + yym3540 := z.DecBinary() + _ = yym3540 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44110,25 +44817,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3489 := z.DecBinary() - _ = yym3489 + yym3542 := z.DecBinary() + _ = yym3542 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3489 { + } else if yym3542 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3489 && z.IsJSONHandle() { + } else if !yym3542 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44138,13 +44845,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44157,20 +44864,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3492 := z.DecBinary() - _ = yym3492 + yym3545 := z.DecBinary() + _ = yym3545 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44183,25 +44890,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3494 := z.DecBinary() - _ = yym3494 + yym3547 := z.DecBinary() + _ = yym3547 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3480 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3480 { + if yyb3533 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3480-1, "") + z.DecStructFieldNotFound(yyj3533-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44213,41 +44920,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3495 := z.EncBinary() - _ = yym3495 + yym3548 := z.EncBinary() + _ = yym3548 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3496 := !z.EncBinary() - yy2arr3496 := z.EncBasicHandle().StructToArray - var yyq3496 [7]bool - _, _, _ = yysep3496, yyq3496, yy2arr3496 - const yyr3496 bool = false - yyq3496[0] = x.Kind != "" - yyq3496[1] = x.APIVersion != "" - yyq3496[2] = x.Stdin != false - yyq3496[3] = x.Stdout != false - yyq3496[4] = x.Stderr != false - yyq3496[5] = x.TTY != false - yyq3496[6] = x.Container != "" - var yynn3496 int - if yyr3496 || yy2arr3496 { + yysep3549 := !z.EncBinary() + yy2arr3549 := z.EncBasicHandle().StructToArray + var yyq3549 [7]bool + _, _, _ = yysep3549, yyq3549, yy2arr3549 + const yyr3549 bool = false + yyq3549[0] = x.Kind != "" + yyq3549[1] = x.APIVersion != "" + yyq3549[2] = x.Stdin != false + yyq3549[3] = x.Stdout != false + yyq3549[4] = x.Stderr != false + yyq3549[5] = x.TTY != false + yyq3549[6] = x.Container != "" + var yynn3549 int + if yyr3549 || yy2arr3549 { r.EncodeArrayStart(7) } else { - yynn3496 = 0 - for _, b := range yyq3496 { + yynn3549 = 0 + for _, b := range yyq3549 { if b { - yynn3496++ + yynn3549++ } } - r.EncodeMapStart(yynn3496) - yynn3496 = 0 + r.EncodeMapStart(yynn3549) + yynn3549 = 0 } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[0] { - yym3498 := z.EncBinary() - _ = yym3498 + if yyq3549[0] { + yym3551 := z.EncBinary() + _ = yym3551 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44256,23 +44963,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3496[0] { + if yyq3549[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3499 := z.EncBinary() - _ = yym3499 + yym3552 := z.EncBinary() + _ = yym3552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[1] { - yym3501 := z.EncBinary() - _ = yym3501 + if yyq3549[1] { + yym3554 := z.EncBinary() + _ = yym3554 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44281,23 +44988,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3496[1] { + if yyq3549[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3502 := z.EncBinary() - _ = yym3502 + yym3555 := z.EncBinary() + _ = yym3555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[2] { - yym3504 := z.EncBinary() - _ = yym3504 + if yyq3549[2] { + yym3557 := z.EncBinary() + _ = yym3557 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44306,23 +45013,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3496[2] { + if yyq3549[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3505 := z.EncBinary() - _ = yym3505 + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[3] { - yym3507 := z.EncBinary() - _ = yym3507 + if yyq3549[3] { + yym3560 := z.EncBinary() + _ = yym3560 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44331,23 +45038,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3496[3] { + if yyq3549[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3508 := z.EncBinary() - _ = yym3508 + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[4] { - yym3510 := z.EncBinary() - _ = yym3510 + if yyq3549[4] { + yym3563 := z.EncBinary() + _ = yym3563 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44356,23 +45063,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3496[4] { + if yyq3549[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3511 := z.EncBinary() - _ = yym3511 + yym3564 := z.EncBinary() + _ = yym3564 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[5] { - yym3513 := z.EncBinary() - _ = yym3513 + if yyq3549[5] { + yym3566 := z.EncBinary() + _ = yym3566 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44381,23 +45088,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3496[5] { + if yyq3549[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3514 := z.EncBinary() - _ = yym3514 + yym3567 := z.EncBinary() + _ = yym3567 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[6] { - yym3516 := z.EncBinary() - _ = yym3516 + if yyq3549[6] { + yym3569 := z.EncBinary() + _ = yym3569 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44406,19 +45113,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3496[6] { + if yyq3549[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3517 := z.EncBinary() - _ = yym3517 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3496 || yy2arr3496 { + if yyr3549 || yy2arr3549 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44431,25 +45138,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3518 := z.DecBinary() - _ = yym3518 + yym3571 := z.DecBinary() + _ = yym3571 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3519 := r.ContainerType() - if yyct3519 == codecSelferValueTypeMap1234 { - yyl3519 := r.ReadMapStart() - if yyl3519 == 0 { + yyct3572 := r.ContainerType() + if yyct3572 == codecSelferValueTypeMap1234 { + yyl3572 := r.ReadMapStart() + if yyl3572 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3519, d) + x.codecDecodeSelfFromMap(yyl3572, d) } - } else if yyct3519 == codecSelferValueTypeArray1234 { - yyl3519 := r.ReadArrayStart() - if yyl3519 == 0 { + } else if yyct3572 == codecSelferValueTypeArray1234 { + yyl3572 := r.ReadArrayStart() + if yyl3572 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3519, d) + x.codecDecodeSelfFromArray(yyl3572, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44461,12 +45168,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3520Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3520Slc - var yyhl3520 bool = l >= 0 - for yyj3520 := 0; ; yyj3520++ { - if yyhl3520 { - if yyj3520 >= l { + var yys3573Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3573Slc + var yyhl3573 bool = l >= 0 + for yyj3573 := 0; ; yyj3573++ { + if yyhl3573 { + if yyj3573 >= l { break } } else { @@ -44475,10 +45182,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3520Slc = r.DecodeBytes(yys3520Slc, true, true) - yys3520 := string(yys3520Slc) + yys3573Slc = r.DecodeBytes(yys3573Slc, true, true) + yys3573 := string(yys3573Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3520 { + switch yys3573 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44522,9 +45229,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3520) - } // end switch yys3520 - } // end for yyj3520 + z.DecStructFieldNotFound(-1, yys3573) + } // end switch yys3573 + } // end for yyj3573 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44532,16 +45239,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3528 int - var yyb3528 bool - var yyhl3528 bool = l >= 0 - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + var yyj3581 int + var yyb3581 bool + var yyhl3581 bool = l >= 0 + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44551,13 +45258,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44567,13 +45274,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44583,13 +45290,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44599,13 +45306,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44615,13 +45322,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44631,13 +45338,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44648,17 +45355,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3528 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3528 { + if yyb3581 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3528-1, "") + z.DecStructFieldNotFound(yyj3581-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44670,41 +45377,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3536 := z.EncBinary() - _ = yym3536 + yym3589 := z.EncBinary() + _ = yym3589 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3537 := !z.EncBinary() - yy2arr3537 := z.EncBasicHandle().StructToArray - var yyq3537 [8]bool - _, _, _ = yysep3537, yyq3537, yy2arr3537 - const yyr3537 bool = false - yyq3537[0] = x.Kind != "" - yyq3537[1] = x.APIVersion != "" - yyq3537[2] = x.Stdin != false - yyq3537[3] = x.Stdout != false - yyq3537[4] = x.Stderr != false - yyq3537[5] = x.TTY != false - yyq3537[6] = x.Container != "" - var yynn3537 int - if yyr3537 || yy2arr3537 { + yysep3590 := !z.EncBinary() + yy2arr3590 := z.EncBasicHandle().StructToArray + var yyq3590 [8]bool + _, _, _ = yysep3590, yyq3590, yy2arr3590 + const yyr3590 bool = false + yyq3590[0] = x.Kind != "" + yyq3590[1] = x.APIVersion != "" + yyq3590[2] = x.Stdin != false + yyq3590[3] = x.Stdout != false + yyq3590[4] = x.Stderr != false + yyq3590[5] = x.TTY != false + yyq3590[6] = x.Container != "" + var yynn3590 int + if yyr3590 || yy2arr3590 { r.EncodeArrayStart(8) } else { - yynn3537 = 1 - for _, b := range yyq3537 { + yynn3590 = 1 + for _, b := range yyq3590 { if b { - yynn3537++ + yynn3590++ } } - r.EncodeMapStart(yynn3537) - yynn3537 = 0 + r.EncodeMapStart(yynn3590) + yynn3590 = 0 } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[0] { - yym3539 := z.EncBinary() - _ = yym3539 + if yyq3590[0] { + yym3592 := z.EncBinary() + _ = yym3592 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44713,23 +45420,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3537[0] { + if yyq3590[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3540 := z.EncBinary() - _ = yym3540 + yym3593 := z.EncBinary() + _ = yym3593 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[1] { - yym3542 := z.EncBinary() - _ = yym3542 + if yyq3590[1] { + yym3595 := z.EncBinary() + _ = yym3595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44738,23 +45445,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3537[1] { + if yyq3590[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3543 := z.EncBinary() - _ = yym3543 + yym3596 := z.EncBinary() + _ = yym3596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[2] { - yym3545 := z.EncBinary() - _ = yym3545 + if yyq3590[2] { + yym3598 := z.EncBinary() + _ = yym3598 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44763,23 +45470,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3537[2] { + if yyq3590[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3546 := z.EncBinary() - _ = yym3546 + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[3] { - yym3548 := z.EncBinary() - _ = yym3548 + if yyq3590[3] { + yym3601 := z.EncBinary() + _ = yym3601 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44788,23 +45495,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3537[3] { + if yyq3590[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3549 := z.EncBinary() - _ = yym3549 + yym3602 := z.EncBinary() + _ = yym3602 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[4] { - yym3551 := z.EncBinary() - _ = yym3551 + if yyq3590[4] { + yym3604 := z.EncBinary() + _ = yym3604 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44813,23 +45520,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3537[4] { + if yyq3590[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3552 := z.EncBinary() - _ = yym3552 + yym3605 := z.EncBinary() + _ = yym3605 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[5] { - yym3554 := z.EncBinary() - _ = yym3554 + if yyq3590[5] { + yym3607 := z.EncBinary() + _ = yym3607 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44838,23 +45545,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3537[5] { + if yyq3590[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3555 := z.EncBinary() - _ = yym3555 + yym3608 := z.EncBinary() + _ = yym3608 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3537[6] { - yym3557 := z.EncBinary() - _ = yym3557 + if yyq3590[6] { + yym3610 := z.EncBinary() + _ = yym3610 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44863,25 +45570,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3537[6] { + if yyq3590[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3558 := z.EncBinary() - _ = yym3558 + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3560 := z.EncBinary() - _ = yym3560 + yym3613 := z.EncBinary() + _ = yym3613 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -44894,15 +45601,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3561 := z.EncBinary() - _ = yym3561 + yym3614 := z.EncBinary() + _ = yym3614 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3537 || yy2arr3537 { + if yyr3590 || yy2arr3590 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44915,25 +45622,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3562 := z.DecBinary() - _ = yym3562 + yym3615 := z.DecBinary() + _ = yym3615 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3563 := r.ContainerType() - if yyct3563 == codecSelferValueTypeMap1234 { - yyl3563 := r.ReadMapStart() - if yyl3563 == 0 { + yyct3616 := r.ContainerType() + if yyct3616 == codecSelferValueTypeMap1234 { + yyl3616 := r.ReadMapStart() + if yyl3616 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3563, d) + x.codecDecodeSelfFromMap(yyl3616, d) } - } else if yyct3563 == codecSelferValueTypeArray1234 { - yyl3563 := r.ReadArrayStart() - if yyl3563 == 0 { + } else if yyct3616 == codecSelferValueTypeArray1234 { + yyl3616 := r.ReadArrayStart() + if yyl3616 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3563, d) + x.codecDecodeSelfFromArray(yyl3616, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44945,12 +45652,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3564Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3564Slc - var yyhl3564 bool = l >= 0 - for yyj3564 := 0; ; yyj3564++ { - if yyhl3564 { - if yyj3564 >= l { + var yys3617Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3617Slc + var yyhl3617 bool = l >= 0 + for yyj3617 := 0; ; yyj3617++ { + if yyhl3617 { + if yyj3617 >= l { break } } else { @@ -44959,10 +45666,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3564Slc = r.DecodeBytes(yys3564Slc, true, true) - yys3564 := string(yys3564Slc) + yys3617Slc = r.DecodeBytes(yys3617Slc, true, true) + yys3617 := string(yys3617Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3564 { + switch yys3617 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45009,18 +45716,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3572 := &x.Command - yym3573 := z.DecBinary() - _ = yym3573 + yyv3625 := &x.Command + yym3626 := z.DecBinary() + _ = yym3626 if false { } else { - z.F.DecSliceStringX(yyv3572, false, d) + z.F.DecSliceStringX(yyv3625, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3564) - } // end switch yys3564 - } // end for yyj3564 + z.DecStructFieldNotFound(-1, yys3617) + } // end switch yys3617 + } // end for yyj3617 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45028,16 +45735,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3574 int - var yyb3574 bool - var yyhl3574 bool = l >= 0 - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + var yyj3627 int + var yyb3627 bool + var yyhl3627 bool = l >= 0 + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45047,13 +45754,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45063,13 +45770,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45079,13 +45786,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45095,13 +45802,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45111,13 +45818,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45127,13 +45834,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45143,13 +45850,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45157,26 +45864,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3582 := &x.Command - yym3583 := z.DecBinary() - _ = yym3583 + yyv3635 := &x.Command + yym3636 := z.DecBinary() + _ = yym3636 if false { } else { - z.F.DecSliceStringX(yyv3582, false, d) + z.F.DecSliceStringX(yyv3635, false, d) } } for { - yyj3574++ - if yyhl3574 { - yyb3574 = yyj3574 > l + yyj3627++ + if yyhl3627 { + yyb3627 = yyj3627 > l } else { - yyb3574 = r.CheckBreak() + yyb3627 = r.CheckBreak() } - if yyb3574 { + if yyb3627 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3574-1, "") + z.DecStructFieldNotFound(yyj3627-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45188,37 +45895,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3584 := z.EncBinary() - _ = yym3584 + yym3637 := z.EncBinary() + _ = yym3637 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3585 := !z.EncBinary() - yy2arr3585 := z.EncBasicHandle().StructToArray - var yyq3585 [3]bool - _, _, _ = yysep3585, yyq3585, yy2arr3585 - const yyr3585 bool = false - yyq3585[0] = x.Kind != "" - yyq3585[1] = x.APIVersion != "" - yyq3585[2] = x.Path != "" - var yynn3585 int - if yyr3585 || yy2arr3585 { + yysep3638 := !z.EncBinary() + yy2arr3638 := z.EncBasicHandle().StructToArray + var yyq3638 [3]bool + _, _, _ = yysep3638, yyq3638, yy2arr3638 + const yyr3638 bool = false + yyq3638[0] = x.Kind != "" + yyq3638[1] = x.APIVersion != "" + yyq3638[2] = x.Path != "" + var yynn3638 int + if yyr3638 || yy2arr3638 { r.EncodeArrayStart(3) } else { - yynn3585 = 0 - for _, b := range yyq3585 { + yynn3638 = 0 + for _, b := range yyq3638 { if b { - yynn3585++ + yynn3638++ } } - r.EncodeMapStart(yynn3585) - yynn3585 = 0 + r.EncodeMapStart(yynn3638) + yynn3638 = 0 } - if yyr3585 || yy2arr3585 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3585[0] { - yym3587 := z.EncBinary() - _ = yym3587 + if yyq3638[0] { + yym3640 := z.EncBinary() + _ = yym3640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45227,23 +45934,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3585[0] { + if yyq3638[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3588 := z.EncBinary() - _ = yym3588 + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3585 || yy2arr3585 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3585[1] { - yym3590 := z.EncBinary() - _ = yym3590 + if yyq3638[1] { + yym3643 := z.EncBinary() + _ = yym3643 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45252,23 +45959,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3585[1] { + if yyq3638[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3591 := z.EncBinary() - _ = yym3591 + yym3644 := z.EncBinary() + _ = yym3644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3585 || yy2arr3585 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3585[2] { - yym3593 := z.EncBinary() - _ = yym3593 + if yyq3638[2] { + yym3646 := z.EncBinary() + _ = yym3646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45277,19 +45984,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3585[2] { + if yyq3638[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3594 := z.EncBinary() - _ = yym3594 + yym3647 := z.EncBinary() + _ = yym3647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3585 || yy2arr3585 { + if yyr3638 || yy2arr3638 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45302,25 +46009,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3595 := z.DecBinary() - _ = yym3595 + yym3648 := z.DecBinary() + _ = yym3648 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3596 := r.ContainerType() - if yyct3596 == codecSelferValueTypeMap1234 { - yyl3596 := r.ReadMapStart() - if yyl3596 == 0 { + yyct3649 := r.ContainerType() + if yyct3649 == codecSelferValueTypeMap1234 { + yyl3649 := r.ReadMapStart() + if yyl3649 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3596, d) + x.codecDecodeSelfFromMap(yyl3649, d) } - } else if yyct3596 == codecSelferValueTypeArray1234 { - yyl3596 := r.ReadArrayStart() - if yyl3596 == 0 { + } else if yyct3649 == codecSelferValueTypeArray1234 { + yyl3649 := r.ReadArrayStart() + if yyl3649 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3596, d) + x.codecDecodeSelfFromArray(yyl3649, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45332,12 +46039,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3597Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3597Slc - var yyhl3597 bool = l >= 0 - for yyj3597 := 0; ; yyj3597++ { - if yyhl3597 { - if yyj3597 >= l { + var yys3650Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3650Slc + var yyhl3650 bool = l >= 0 + for yyj3650 := 0; ; yyj3650++ { + if yyhl3650 { + if yyj3650 >= l { break } } else { @@ -45346,10 +46053,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3597Slc = r.DecodeBytes(yys3597Slc, true, true) - yys3597 := string(yys3597Slc) + yys3650Slc = r.DecodeBytes(yys3650Slc, true, true) + yys3650 := string(yys3650Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3597 { + switch yys3650 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45369,9 +46076,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3597) - } // end switch yys3597 - } // end for yyj3597 + z.DecStructFieldNotFound(-1, yys3650) + } // end switch yys3650 + } // end for yyj3650 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45379,16 +46086,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3601 int - var yyb3601 bool - var yyhl3601 bool = l >= 0 - yyj3601++ - if yyhl3601 { - yyb3601 = yyj3601 > l + var yyj3654 int + var yyb3654 bool + var yyhl3654 bool = l >= 0 + yyj3654++ + if yyhl3654 { + yyb3654 = yyj3654 > l } else { - yyb3601 = r.CheckBreak() + yyb3654 = r.CheckBreak() } - if yyb3601 { + if yyb3654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45398,13 +46105,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3601++ - if yyhl3601 { - yyb3601 = yyj3601 > l + yyj3654++ + if yyhl3654 { + yyb3654 = yyj3654 > l } else { - yyb3601 = r.CheckBreak() + yyb3654 = r.CheckBreak() } - if yyb3601 { + if yyb3654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45414,13 +46121,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3601++ - if yyhl3601 { - yyb3601 = yyj3601 > l + yyj3654++ + if yyhl3654 { + yyb3654 = yyj3654 > l } else { - yyb3601 = r.CheckBreak() + yyb3654 = r.CheckBreak() } - if yyb3601 { + if yyb3654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45431,17 +46138,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3601++ - if yyhl3601 { - yyb3601 = yyj3601 > l + yyj3654++ + if yyhl3654 { + yyb3654 = yyj3654 > l } else { - yyb3601 = r.CheckBreak() + yyb3654 = r.CheckBreak() } - if yyb3601 { + if yyb3654 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3601-1, "") + z.DecStructFieldNotFound(yyj3654-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45453,37 +46160,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3605 := z.EncBinary() - _ = yym3605 + yym3658 := z.EncBinary() + _ = yym3658 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3606 := !z.EncBinary() - yy2arr3606 := z.EncBasicHandle().StructToArray - var yyq3606 [3]bool - _, _, _ = yysep3606, yyq3606, yy2arr3606 - const yyr3606 bool = false - yyq3606[0] = x.Kind != "" - yyq3606[1] = x.APIVersion != "" - yyq3606[2] = x.Path != "" - var yynn3606 int - if yyr3606 || yy2arr3606 { + yysep3659 := !z.EncBinary() + yy2arr3659 := z.EncBasicHandle().StructToArray + var yyq3659 [3]bool + _, _, _ = yysep3659, yyq3659, yy2arr3659 + const yyr3659 bool = false + yyq3659[0] = x.Kind != "" + yyq3659[1] = x.APIVersion != "" + yyq3659[2] = x.Path != "" + var yynn3659 int + if yyr3659 || yy2arr3659 { r.EncodeArrayStart(3) } else { - yynn3606 = 0 - for _, b := range yyq3606 { + yynn3659 = 0 + for _, b := range yyq3659 { if b { - yynn3606++ + yynn3659++ } } - r.EncodeMapStart(yynn3606) - yynn3606 = 0 + r.EncodeMapStart(yynn3659) + yynn3659 = 0 } - if yyr3606 || yy2arr3606 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3606[0] { - yym3608 := z.EncBinary() - _ = yym3608 + if yyq3659[0] { + yym3661 := z.EncBinary() + _ = yym3661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45492,23 +46199,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3606[0] { + if yyq3659[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3609 := z.EncBinary() - _ = yym3609 + yym3662 := z.EncBinary() + _ = yym3662 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3606 || yy2arr3606 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3606[1] { - yym3611 := z.EncBinary() - _ = yym3611 + if yyq3659[1] { + yym3664 := z.EncBinary() + _ = yym3664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45517,23 +46224,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3606[1] { + if yyq3659[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3612 := z.EncBinary() - _ = yym3612 + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3606 || yy2arr3606 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3606[2] { - yym3614 := z.EncBinary() - _ = yym3614 + if yyq3659[2] { + yym3667 := z.EncBinary() + _ = yym3667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45542,19 +46249,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3606[2] { + if yyq3659[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3615 := z.EncBinary() - _ = yym3615 + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3606 || yy2arr3606 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45567,25 +46274,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3616 := z.DecBinary() - _ = yym3616 + yym3669 := z.DecBinary() + _ = yym3669 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3617 := r.ContainerType() - if yyct3617 == codecSelferValueTypeMap1234 { - yyl3617 := r.ReadMapStart() - if yyl3617 == 0 { + yyct3670 := r.ContainerType() + if yyct3670 == codecSelferValueTypeMap1234 { + yyl3670 := r.ReadMapStart() + if yyl3670 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3617, d) + x.codecDecodeSelfFromMap(yyl3670, d) } - } else if yyct3617 == codecSelferValueTypeArray1234 { - yyl3617 := r.ReadArrayStart() - if yyl3617 == 0 { + } else if yyct3670 == codecSelferValueTypeArray1234 { + yyl3670 := r.ReadArrayStart() + if yyl3670 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3617, d) + x.codecDecodeSelfFromArray(yyl3670, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45597,12 +46304,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3618Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3618Slc - var yyhl3618 bool = l >= 0 - for yyj3618 := 0; ; yyj3618++ { - if yyhl3618 { - if yyj3618 >= l { + var yys3671Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3671Slc + var yyhl3671 bool = l >= 0 + for yyj3671 := 0; ; yyj3671++ { + if yyhl3671 { + if yyj3671 >= l { break } } else { @@ -45611,10 +46318,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3618Slc = r.DecodeBytes(yys3618Slc, true, true) - yys3618 := string(yys3618Slc) + yys3671Slc = r.DecodeBytes(yys3671Slc, true, true) + yys3671 := string(yys3671Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3618 { + switch yys3671 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45634,9 +46341,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3618) - } // end switch yys3618 - } // end for yyj3618 + z.DecStructFieldNotFound(-1, yys3671) + } // end switch yys3671 + } // end for yyj3671 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45644,16 +46351,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3622 int - var yyb3622 bool - var yyhl3622 bool = l >= 0 - yyj3622++ - if yyhl3622 { - yyb3622 = yyj3622 > l + var yyj3675 int + var yyb3675 bool + var yyhl3675 bool = l >= 0 + yyj3675++ + if yyhl3675 { + yyb3675 = yyj3675 > l } else { - yyb3622 = r.CheckBreak() + yyb3675 = r.CheckBreak() } - if yyb3622 { + if yyb3675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45663,13 +46370,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3622++ - if yyhl3622 { - yyb3622 = yyj3622 > l + yyj3675++ + if yyhl3675 { + yyb3675 = yyj3675 > l } else { - yyb3622 = r.CheckBreak() + yyb3675 = r.CheckBreak() } - if yyb3622 { + if yyb3675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45679,13 +46386,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3622++ - if yyhl3622 { - yyb3622 = yyj3622 > l + yyj3675++ + if yyhl3675 { + yyb3675 = yyj3675 > l } else { - yyb3622 = r.CheckBreak() + yyb3675 = r.CheckBreak() } - if yyb3622 { + if yyb3675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45696,17 +46403,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3622++ - if yyhl3622 { - yyb3622 = yyj3622 > l + yyj3675++ + if yyhl3675 { + yyb3675 = yyj3675 > l } else { - yyb3622 = r.CheckBreak() + yyb3675 = r.CheckBreak() } - if yyb3622 { + if yyb3675 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3622-1, "") + z.DecStructFieldNotFound(yyj3675-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45718,37 +46425,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3626 := z.EncBinary() - _ = yym3626 + yym3679 := z.EncBinary() + _ = yym3679 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3627 := !z.EncBinary() - yy2arr3627 := z.EncBasicHandle().StructToArray - var yyq3627 [3]bool - _, _, _ = yysep3627, yyq3627, yy2arr3627 - const yyr3627 bool = false - yyq3627[0] = x.Kind != "" - yyq3627[1] = x.APIVersion != "" - yyq3627[2] = x.Path != "" - var yynn3627 int - if yyr3627 || yy2arr3627 { + yysep3680 := !z.EncBinary() + yy2arr3680 := z.EncBasicHandle().StructToArray + var yyq3680 [3]bool + _, _, _ = yysep3680, yyq3680, yy2arr3680 + const yyr3680 bool = false + yyq3680[0] = x.Kind != "" + yyq3680[1] = x.APIVersion != "" + yyq3680[2] = x.Path != "" + var yynn3680 int + if yyr3680 || yy2arr3680 { r.EncodeArrayStart(3) } else { - yynn3627 = 0 - for _, b := range yyq3627 { + yynn3680 = 0 + for _, b := range yyq3680 { if b { - yynn3627++ + yynn3680++ } } - r.EncodeMapStart(yynn3627) - yynn3627 = 0 + r.EncodeMapStart(yynn3680) + yynn3680 = 0 } - if yyr3627 || yy2arr3627 { + if yyr3680 || yy2arr3680 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3627[0] { - yym3629 := z.EncBinary() - _ = yym3629 + if yyq3680[0] { + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45757,23 +46464,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3627[0] { + if yyq3680[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3630 := z.EncBinary() - _ = yym3630 + yym3683 := z.EncBinary() + _ = yym3683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3627 || yy2arr3627 { + if yyr3680 || yy2arr3680 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3627[1] { - yym3632 := z.EncBinary() - _ = yym3632 + if yyq3680[1] { + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45782,23 +46489,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3627[1] { + if yyq3680[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3633 := z.EncBinary() - _ = yym3633 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3627 || yy2arr3627 { + if yyr3680 || yy2arr3680 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3627[2] { - yym3635 := z.EncBinary() - _ = yym3635 + if yyq3680[2] { + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45807,19 +46514,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3627[2] { + if yyq3680[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3636 := z.EncBinary() - _ = yym3636 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3627 || yy2arr3627 { + if yyr3680 || yy2arr3680 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45832,25 +46539,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3637 := z.DecBinary() - _ = yym3637 + yym3690 := z.DecBinary() + _ = yym3690 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3638 := r.ContainerType() - if yyct3638 == codecSelferValueTypeMap1234 { - yyl3638 := r.ReadMapStart() - if yyl3638 == 0 { + yyct3691 := r.ContainerType() + if yyct3691 == codecSelferValueTypeMap1234 { + yyl3691 := r.ReadMapStart() + if yyl3691 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3638, d) + x.codecDecodeSelfFromMap(yyl3691, d) } - } else if yyct3638 == codecSelferValueTypeArray1234 { - yyl3638 := r.ReadArrayStart() - if yyl3638 == 0 { + } else if yyct3691 == codecSelferValueTypeArray1234 { + yyl3691 := r.ReadArrayStart() + if yyl3691 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3638, d) + x.codecDecodeSelfFromArray(yyl3691, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45862,12 +46569,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3639Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3639Slc - var yyhl3639 bool = l >= 0 - for yyj3639 := 0; ; yyj3639++ { - if yyhl3639 { - if yyj3639 >= 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 { @@ -45876,10 +46583,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3639Slc = r.DecodeBytes(yys3639Slc, true, true) - yys3639 := string(yys3639Slc) + yys3692Slc = r.DecodeBytes(yys3692Slc, true, true) + yys3692 := string(yys3692Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3639 { + switch yys3692 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45899,9 +46606,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3639) - } // end switch yys3639 - } // end for yyj3639 + z.DecStructFieldNotFound(-1, yys3692) + } // end switch yys3692 + } // end for yyj3692 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45909,16 +46616,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3643 int - var yyb3643 bool - var yyhl3643 bool = l >= 0 - yyj3643++ - if yyhl3643 { - yyb3643 = yyj3643 > l + var yyj3696 int + var yyb3696 bool + var yyhl3696 bool = l >= 0 + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3643 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3643 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45928,13 +46635,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3643++ - if yyhl3643 { - yyb3643 = yyj3643 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3643 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3643 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45944,13 +46651,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3643++ - if yyhl3643 { - yyb3643 = yyj3643 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3643 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3643 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45961,17 +46668,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3643++ - if yyhl3643 { - yyb3643 = yyj3643 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3643 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3643 { + if yyb3696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3643-1, "") + z.DecStructFieldNotFound(yyj3696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45983,34 +46690,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3647 := z.EncBinary() - _ = yym3647 + yym3700 := z.EncBinary() + _ = yym3700 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3648 := !z.EncBinary() - yy2arr3648 := z.EncBasicHandle().StructToArray - var yyq3648 [5]bool - _, _, _ = yysep3648, yyq3648, yy2arr3648 - const yyr3648 bool = false - yyq3648[4] = x.Controller != nil - var yynn3648 int - if yyr3648 || yy2arr3648 { + yysep3701 := !z.EncBinary() + yy2arr3701 := z.EncBasicHandle().StructToArray + var yyq3701 [5]bool + _, _, _ = yysep3701, yyq3701, yy2arr3701 + const yyr3701 bool = false + yyq3701[4] = x.Controller != nil + var yynn3701 int + if yyr3701 || yy2arr3701 { r.EncodeArrayStart(5) } else { - yynn3648 = 4 - for _, b := range yyq3648 { + yynn3701 = 4 + for _, b := range yyq3701 { if b { - yynn3648++ + yynn3701++ } } - r.EncodeMapStart(yynn3648) - yynn3648 = 0 + r.EncodeMapStart(yynn3701) + yynn3701 = 0 } - if yyr3648 || yy2arr3648 { + if yyr3701 || yy2arr3701 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3650 := z.EncBinary() - _ = yym3650 + yym3703 := z.EncBinary() + _ = yym3703 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46019,17 +46726,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3651 := z.EncBinary() - _ = yym3651 + yym3704 := z.EncBinary() + _ = yym3704 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3648 || yy2arr3648 { + if yyr3701 || yy2arr3701 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3653 := z.EncBinary() - _ = yym3653 + yym3706 := z.EncBinary() + _ = yym3706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46038,17 +46745,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3654 := z.EncBinary() - _ = yym3654 + yym3707 := z.EncBinary() + _ = yym3707 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3648 || yy2arr3648 { + if yyr3701 || yy2arr3701 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3656 := z.EncBinary() - _ = yym3656 + yym3709 := z.EncBinary() + _ = yym3709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46057,17 +46764,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3657 := z.EncBinary() - _ = yym3657 + yym3710 := z.EncBinary() + _ = yym3710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3648 || yy2arr3648 { + if yyr3701 || yy2arr3701 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3659 := z.EncBinary() - _ = yym3659 + yym3712 := z.EncBinary() + _ = yym3712 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46077,50 +46784,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3660 := z.EncBinary() - _ = yym3660 + yym3713 := z.EncBinary() + _ = yym3713 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3648 || yy2arr3648 { + if yyr3701 || yy2arr3701 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3648[4] { + if yyq3701[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3662 := *x.Controller - yym3663 := z.EncBinary() - _ = yym3663 + yy3715 := *x.Controller + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { - r.EncodeBool(bool(yy3662)) + r.EncodeBool(bool(yy3715)) } } } else { r.EncodeNil() } } else { - if yyq3648[4] { + if yyq3701[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3664 := *x.Controller - yym3665 := z.EncBinary() - _ = yym3665 + yy3717 := *x.Controller + yym3718 := z.EncBinary() + _ = yym3718 if false { } else { - r.EncodeBool(bool(yy3664)) + r.EncodeBool(bool(yy3717)) } } } } - if yyr3648 || yy2arr3648 { + if yyr3701 || yy2arr3701 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46133,25 +46840,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3666 := z.DecBinary() - _ = yym3666 + yym3719 := z.DecBinary() + _ = yym3719 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3667 := r.ContainerType() - if yyct3667 == codecSelferValueTypeMap1234 { - yyl3667 := r.ReadMapStart() - if yyl3667 == 0 { + yyct3720 := r.ContainerType() + if yyct3720 == codecSelferValueTypeMap1234 { + yyl3720 := r.ReadMapStart() + if yyl3720 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3667, d) + x.codecDecodeSelfFromMap(yyl3720, d) } - } else if yyct3667 == codecSelferValueTypeArray1234 { - yyl3667 := r.ReadArrayStart() - if yyl3667 == 0 { + } else if yyct3720 == codecSelferValueTypeArray1234 { + yyl3720 := r.ReadArrayStart() + if yyl3720 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3667, d) + x.codecDecodeSelfFromArray(yyl3720, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46163,12 +46870,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3668Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3668Slc - var yyhl3668 bool = l >= 0 - for yyj3668 := 0; ; yyj3668++ { - if yyhl3668 { - if yyj3668 >= l { + var yys3721Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3721Slc + var yyhl3721 bool = l >= 0 + for yyj3721 := 0; ; yyj3721++ { + if yyhl3721 { + if yyj3721 >= l { break } } else { @@ -46177,10 +46884,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3668Slc = r.DecodeBytes(yys3668Slc, true, true) - yys3668 := string(yys3668Slc) + yys3721Slc = r.DecodeBytes(yys3721Slc, true, true) + yys3721 := string(yys3721Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3668 { + switch yys3721 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -46214,17 +46921,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3674 := z.DecBinary() - _ = yym3674 + yym3727 := z.DecBinary() + _ = yym3727 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3668) - } // end switch yys3668 - } // end for yyj3668 + z.DecStructFieldNotFound(-1, yys3721) + } // end switch yys3721 + } // end for yyj3721 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46232,16 +46939,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3675 int - var yyb3675 bool - var yyhl3675 bool = l >= 0 - yyj3675++ - if yyhl3675 { - yyb3675 = yyj3675 > l + var yyj3728 int + var yyb3728 bool + var yyhl3728 bool = l >= 0 + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3675 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3675 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46251,13 +46958,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3675++ - if yyhl3675 { - yyb3675 = yyj3675 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3675 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3675 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46267,13 +46974,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3675++ - if yyhl3675 { - yyb3675 = yyj3675 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3675 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3675 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46283,13 +46990,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3675++ - if yyhl3675 { - yyb3675 = yyj3675 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3675 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3675 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46299,13 +47006,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3675++ - if yyhl3675 { - yyb3675 = yyj3675 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3675 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3675 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46318,25 +47025,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3681 := z.DecBinary() - _ = yym3681 + yym3734 := z.DecBinary() + _ = yym3734 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3675++ - if yyhl3675 { - yyb3675 = yyj3675 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3675 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3675 { + if yyb3728 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3675-1, "") + z.DecStructFieldNotFound(yyj3728-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46348,41 +47055,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3682 := z.EncBinary() - _ = yym3682 + yym3735 := z.EncBinary() + _ = yym3735 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3683 := !z.EncBinary() - yy2arr3683 := z.EncBasicHandle().StructToArray - var yyq3683 [7]bool - _, _, _ = yysep3683, yyq3683, yy2arr3683 - const yyr3683 bool = false - yyq3683[0] = x.Kind != "" - yyq3683[1] = x.Namespace != "" - yyq3683[2] = x.Name != "" - yyq3683[3] = x.UID != "" - yyq3683[4] = x.APIVersion != "" - yyq3683[5] = x.ResourceVersion != "" - yyq3683[6] = x.FieldPath != "" - var yynn3683 int - if yyr3683 || yy2arr3683 { + yysep3736 := !z.EncBinary() + yy2arr3736 := z.EncBasicHandle().StructToArray + var yyq3736 [7]bool + _, _, _ = yysep3736, yyq3736, yy2arr3736 + const yyr3736 bool = false + yyq3736[0] = x.Kind != "" + yyq3736[1] = x.Namespace != "" + yyq3736[2] = x.Name != "" + yyq3736[3] = x.UID != "" + yyq3736[4] = x.APIVersion != "" + yyq3736[5] = x.ResourceVersion != "" + yyq3736[6] = x.FieldPath != "" + var yynn3736 int + if yyr3736 || yy2arr3736 { r.EncodeArrayStart(7) } else { - yynn3683 = 0 - for _, b := range yyq3683 { + yynn3736 = 0 + for _, b := range yyq3736 { if b { - yynn3683++ + yynn3736++ } } - r.EncodeMapStart(yynn3683) - yynn3683 = 0 + r.EncodeMapStart(yynn3736) + yynn3736 = 0 } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[0] { - yym3685 := z.EncBinary() - _ = yym3685 + if yyq3736[0] { + yym3738 := z.EncBinary() + _ = yym3738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46391,23 +47098,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[0] { + if yyq3736[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3686 := z.EncBinary() - _ = yym3686 + yym3739 := z.EncBinary() + _ = yym3739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[1] { - yym3688 := z.EncBinary() - _ = yym3688 + if yyq3736[1] { + yym3741 := z.EncBinary() + _ = yym3741 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -46416,23 +47123,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[1] { + if yyq3736[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3689 := z.EncBinary() - _ = yym3689 + yym3742 := z.EncBinary() + _ = yym3742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[2] { - yym3691 := z.EncBinary() - _ = yym3691 + if yyq3736[2] { + yym3744 := z.EncBinary() + _ = yym3744 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46441,23 +47148,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[2] { + if yyq3736[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3692 := z.EncBinary() - _ = yym3692 + yym3745 := z.EncBinary() + _ = yym3745 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[3] { - yym3694 := z.EncBinary() - _ = yym3694 + if yyq3736[3] { + yym3747 := z.EncBinary() + _ = yym3747 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46467,12 +47174,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[3] { + if yyq3736[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3695 := z.EncBinary() - _ = yym3695 + yym3748 := z.EncBinary() + _ = yym3748 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46480,11 +47187,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[4] { - yym3697 := z.EncBinary() - _ = yym3697 + if yyq3736[4] { + yym3750 := z.EncBinary() + _ = yym3750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46493,23 +47200,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[4] { + if yyq3736[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3698 := z.EncBinary() - _ = yym3698 + yym3751 := z.EncBinary() + _ = yym3751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[5] { - yym3700 := z.EncBinary() - _ = yym3700 + if yyq3736[5] { + yym3753 := z.EncBinary() + _ = yym3753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -46518,23 +47225,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[5] { + if yyq3736[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3701 := z.EncBinary() - _ = yym3701 + yym3754 := z.EncBinary() + _ = yym3754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3683[6] { - yym3703 := z.EncBinary() - _ = yym3703 + if yyq3736[6] { + yym3756 := z.EncBinary() + _ = yym3756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -46543,19 +47250,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3683[6] { + if yyq3736[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3704 := z.EncBinary() - _ = yym3704 + yym3757 := z.EncBinary() + _ = yym3757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3683 || yy2arr3683 { + if yyr3736 || yy2arr3736 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46568,25 +47275,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3705 := z.DecBinary() - _ = yym3705 + yym3758 := z.DecBinary() + _ = yym3758 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3706 := r.ContainerType() - if yyct3706 == codecSelferValueTypeMap1234 { - yyl3706 := r.ReadMapStart() - if yyl3706 == 0 { + yyct3759 := r.ContainerType() + if yyct3759 == codecSelferValueTypeMap1234 { + yyl3759 := r.ReadMapStart() + if yyl3759 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3706, d) + x.codecDecodeSelfFromMap(yyl3759, d) } - } else if yyct3706 == codecSelferValueTypeArray1234 { - yyl3706 := r.ReadArrayStart() - if yyl3706 == 0 { + } else if yyct3759 == codecSelferValueTypeArray1234 { + yyl3759 := r.ReadArrayStart() + if yyl3759 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3706, d) + x.codecDecodeSelfFromArray(yyl3759, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46598,12 +47305,12 @@ func (x *ObjectReference) 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 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 { @@ -46612,10 +47319,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3707Slc = r.DecodeBytes(yys3707Slc, true, true) - yys3707 := string(yys3707Slc) + yys3760Slc = r.DecodeBytes(yys3760Slc, true, true) + yys3760 := string(yys3760Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3707 { + switch yys3760 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46659,738 +47366,13 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3707) - } // end switch yys3707 - } // end for yyj3707 + z.DecStructFieldNotFound(-1, yys3760) + } // end switch yys3760 + } // end for yyj3760 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3715 int - var yyb3715 bool - var yyhl3715 bool = l >= 0 - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Namespace = "" - } else { - x.Namespace = string(r.DecodeString()) - } - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.UID = "" - } else { - x.UID = pkg1_types.UID(r.DecodeString()) - } - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ResourceVersion = "" - } else { - x.ResourceVersion = string(r.DecodeString()) - } - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.FieldPath = "" - } else { - x.FieldPath = string(r.DecodeString()) - } - for { - yyj3715++ - if yyhl3715 { - yyb3715 = yyj3715 > l - } else { - yyb3715 = r.CheckBreak() - } - if yyb3715 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3715-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3723 := z.EncBinary() - _ = yym3723 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3724 := !z.EncBinary() - yy2arr3724 := z.EncBasicHandle().StructToArray - var yyq3724 [1]bool - _, _, _ = yysep3724, yyq3724, yy2arr3724 - const yyr3724 bool = false - yyq3724[0] = x.Name != "" - var yynn3724 int - if yyr3724 || yy2arr3724 { - r.EncodeArrayStart(1) - } else { - yynn3724 = 0 - for _, b := range yyq3724 { - if b { - yynn3724++ - } - } - r.EncodeMapStart(yynn3724) - yynn3724 = 0 - } - if yyr3724 || yy2arr3724 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3724[0] { - yym3726 := z.EncBinary() - _ = yym3726 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3724[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3727 := z.EncBinary() - _ = yym3727 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - } - if yyr3724 || yy2arr3724 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3728 := z.DecBinary() - _ = yym3728 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3729 := r.ContainerType() - if yyct3729 == codecSelferValueTypeMap1234 { - yyl3729 := r.ReadMapStart() - if yyl3729 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3729, d) - } - } else if yyct3729 == codecSelferValueTypeArray1234 { - yyl3729 := r.ReadArrayStart() - if yyl3729 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3729, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3730Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3730Slc - var yyhl3730 bool = l >= 0 - for yyj3730 := 0; ; yyj3730++ { - if yyhl3730 { - if yyj3730 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3730Slc = r.DecodeBytes(yys3730Slc, true, true) - yys3730 := string(yys3730Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3730 { - case "name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3730) - } // end switch yys3730 - } // end for yyj3730 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3732 int - var yyb3732 bool - var yyhl3732 bool = l >= 0 - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l - } else { - yyb3732 = r.CheckBreak() - } - if yyb3732 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - for { - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l - } else { - yyb3732 = r.CheckBreak() - } - if yyb3732 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3732-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3734 := z.EncBinary() - _ = yym3734 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3735 := !z.EncBinary() - yy2arr3735 := z.EncBasicHandle().StructToArray - var yyq3735 [3]bool - _, _, _ = yysep3735, yyq3735, yy2arr3735 - const yyr3735 bool = false - yyq3735[0] = x.Kind != "" - yyq3735[1] = x.APIVersion != "" - yyq3735[2] = true - var yynn3735 int - if yyr3735 || yy2arr3735 { - r.EncodeArrayStart(3) - } else { - yynn3735 = 0 - for _, b := range yyq3735 { - if b { - yynn3735++ - } - } - r.EncodeMapStart(yynn3735) - yynn3735 = 0 - } - if yyr3735 || yy2arr3735 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3735[0] { - yym3737 := z.EncBinary() - _ = yym3737 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3735[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3738 := z.EncBinary() - _ = yym3738 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3735 || yy2arr3735 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3735[1] { - yym3740 := z.EncBinary() - _ = yym3740 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3735[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3741 := z.EncBinary() - _ = yym3741 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3735 || yy2arr3735 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3735[2] { - yy3743 := &x.Reference - yy3743.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3735[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reference")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3744 := &x.Reference - yy3744.CodecEncodeSelf(e) - } - } - if yyr3735 || yy2arr3735 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3745 := z.DecBinary() - _ = yym3745 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3746 := r.ContainerType() - if yyct3746 == codecSelferValueTypeMap1234 { - yyl3746 := r.ReadMapStart() - if yyl3746 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3746, d) - } - } else if yyct3746 == codecSelferValueTypeArray1234 { - yyl3746 := r.ReadArrayStart() - if yyl3746 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3746, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3747Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3747Slc - var yyhl3747 bool = l >= 0 - for yyj3747 := 0; ; yyj3747++ { - if yyhl3747 { - if yyj3747 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3747Slc = r.DecodeBytes(yys3747Slc, true, true) - yys3747 := string(yys3747Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3747 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "reference": - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3750 := &x.Reference - yyv3750.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3747) - } // end switch yys3747 - } // end for yyj3747 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3751 int - var yyb3751 bool - var yyhl3751 bool = l >= 0 - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l - } else { - yyb3751 = r.CheckBreak() - } - if yyb3751 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l - } else { - yyb3751 = r.CheckBreak() - } - if yyb3751 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l - } else { - yyb3751 = r.CheckBreak() - } - if yyb3751 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3754 := &x.Reference - yyv3754.CodecDecodeSelf(d) - } - for { - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l - } else { - yyb3751 = r.CheckBreak() - } - if yyb3751 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3751-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3755 := z.EncBinary() - _ = yym3755 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3756 := !z.EncBinary() - yy2arr3756 := z.EncBasicHandle().StructToArray - var yyq3756 [2]bool - _, _, _ = yysep3756, yyq3756, yy2arr3756 - const yyr3756 bool = false - yyq3756[0] = x.Component != "" - yyq3756[1] = x.Host != "" - var yynn3756 int - if yyr3756 || yy2arr3756 { - r.EncodeArrayStart(2) - } else { - yynn3756 = 0 - for _, b := range yyq3756 { - if b { - yynn3756++ - } - } - r.EncodeMapStart(yynn3756) - yynn3756 = 0 - } - if yyr3756 || yy2arr3756 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[0] { - yym3758 := z.EncBinary() - _ = yym3758 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3756[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("component")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3759 := z.EncBinary() - _ = yym3759 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } - } - if yyr3756 || yy2arr3756 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[1] { - yym3761 := z.EncBinary() - _ = yym3761 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3756[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("host")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3762 := z.EncBinary() - _ = yym3762 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } - } - } - if yyr3756 || yy2arr3756 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3763 := z.DecBinary() - _ = yym3763 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3764 := r.ContainerType() - if yyct3764 == codecSelferValueTypeMap1234 { - yyl3764 := r.ReadMapStart() - if yyl3764 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3764, d) - } - } else if yyct3764 == codecSelferValueTypeArray1234 { - yyl3764 := r.ReadArrayStart() - if yyl3764 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3764, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3765Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3765Slc - var yyhl3765 bool = l >= 0 - for yyj3765 := 0; ; yyj3765++ { - if yyhl3765 { - if yyj3765 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3765Slc = r.DecodeBytes(yys3765Slc, true, true) - yys3765 := string(yys3765Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3765 { - case "component": - if r.TryDecodeAsNil() { - x.Component = "" - } else { - x.Component = string(r.DecodeString()) - } - case "host": - if r.TryDecodeAsNil() { - x.Host = "" - } else { - x.Host = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3765) - } // end switch yys3765 - } // end for yyj3765 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -47409,9 +47391,9 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Component = "" + x.Kind = "" } else { - x.Component = string(r.DecodeString()) + x.Kind = string(r.DecodeString()) } yyj3768++ if yyhl3768 { @@ -47425,9 +47407,89 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Host = "" + x.Namespace = "" } else { - x.Host = string(r.DecodeString()) + x.Namespace = string(r.DecodeString()) + } + yyj3768++ + if yyhl3768 { + yyb3768 = yyj3768 > l + } else { + yyb3768 = r.CheckBreak() + } + if yyb3768 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj3768++ + if yyhl3768 { + yyb3768 = yyj3768 > l + } else { + yyb3768 = r.CheckBreak() + } + if yyb3768 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.UID = "" + } else { + x.UID = pkg1_types.UID(r.DecodeString()) + } + yyj3768++ + if yyhl3768 { + yyb3768 = yyj3768 > l + } else { + yyb3768 = r.CheckBreak() + } + if yyb3768 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3768++ + if yyhl3768 { + yyb3768 = yyj3768 > l + } else { + yyb3768 = r.CheckBreak() + } + if yyb3768 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ResourceVersion = "" + } else { + x.ResourceVersion = string(r.DecodeString()) + } + yyj3768++ + if yyhl3768 { + yyb3768 = yyj3768 > l + } else { + yyb3768 = r.CheckBreak() + } + if yyb3768 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.FieldPath = "" + } else { + x.FieldPath = string(r.DecodeString()) } for { yyj3768++ @@ -47445,6 +47507,651 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3776 := z.EncBinary() + _ = yym3776 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3777 := !z.EncBinary() + yy2arr3777 := z.EncBasicHandle().StructToArray + var yyq3777 [1]bool + _, _, _ = yysep3777, yyq3777, yy2arr3777 + const yyr3777 bool = false + yyq3777[0] = x.Name != "" + var yynn3777 int + if yyr3777 || yy2arr3777 { + r.EncodeArrayStart(1) + } else { + yynn3777 = 0 + for _, b := range yyq3777 { + if b { + yynn3777++ + } + } + r.EncodeMapStart(yynn3777) + yynn3777 = 0 + } + if yyr3777 || yy2arr3777 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3777[0] { + yym3779 := z.EncBinary() + _ = yym3779 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3777[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3780 := z.EncBinary() + _ = yym3780 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr3777 || yy2arr3777 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3781 := z.DecBinary() + _ = yym3781 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3782 := r.ContainerType() + if yyct3782 == codecSelferValueTypeMap1234 { + yyl3782 := r.ReadMapStart() + if yyl3782 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3782, d) + } + } else if yyct3782 == codecSelferValueTypeArray1234 { + yyl3782 := r.ReadArrayStart() + if yyl3782 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3782, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3783Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3783Slc + var yyhl3783 bool = l >= 0 + for yyj3783 := 0; ; yyj3783++ { + if yyhl3783 { + if yyj3783 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3783Slc = r.DecodeBytes(yys3783Slc, true, true) + yys3783 := string(yys3783Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3783 { + case "name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3783) + } // end switch yys3783 + } // end for yyj3783 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3785 int + var yyb3785 bool + var yyhl3785 bool = l >= 0 + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l + } else { + yyb3785 = r.CheckBreak() + } + if yyb3785 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + for { + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l + } else { + yyb3785 = r.CheckBreak() + } + if yyb3785 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3785-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3787 := z.EncBinary() + _ = yym3787 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3788 := !z.EncBinary() + yy2arr3788 := z.EncBasicHandle().StructToArray + var yyq3788 [3]bool + _, _, _ = yysep3788, yyq3788, yy2arr3788 + const yyr3788 bool = false + yyq3788[0] = x.Kind != "" + yyq3788[1] = x.APIVersion != "" + yyq3788[2] = true + var yynn3788 int + if yyr3788 || yy2arr3788 { + r.EncodeArrayStart(3) + } else { + yynn3788 = 0 + for _, b := range yyq3788 { + if b { + yynn3788++ + } + } + r.EncodeMapStart(yynn3788) + yynn3788 = 0 + } + if yyr3788 || yy2arr3788 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3788[0] { + yym3790 := z.EncBinary() + _ = yym3790 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3788[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3791 := z.EncBinary() + _ = yym3791 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3788 || yy2arr3788 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3788[1] { + yym3793 := z.EncBinary() + _ = yym3793 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3788[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3794 := z.EncBinary() + _ = yym3794 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3788 || yy2arr3788 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3788[2] { + yy3796 := &x.Reference + yy3796.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3788[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reference")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3797 := &x.Reference + yy3797.CodecEncodeSelf(e) + } + } + if yyr3788 || yy2arr3788 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3798 := z.DecBinary() + _ = yym3798 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3799 := r.ContainerType() + if yyct3799 == codecSelferValueTypeMap1234 { + yyl3799 := r.ReadMapStart() + if yyl3799 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3799, d) + } + } else if yyct3799 == codecSelferValueTypeArray1234 { + yyl3799 := r.ReadArrayStart() + if yyl3799 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3799, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *SerializedReference) 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 { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3800Slc = r.DecodeBytes(yys3800Slc, true, true) + yys3800 := string(yys3800Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3800 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "reference": + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3803 := &x.Reference + yyv3803.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3800) + } // end switch yys3800 + } // end for yyj3800 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3804 int + var yyb3804 bool + var yyhl3804 bool = l >= 0 + yyj3804++ + if yyhl3804 { + yyb3804 = yyj3804 > l + } else { + yyb3804 = r.CheckBreak() + } + if yyb3804 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3804++ + if yyhl3804 { + yyb3804 = yyj3804 > l + } else { + yyb3804 = r.CheckBreak() + } + if yyb3804 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3804++ + if yyhl3804 { + yyb3804 = yyj3804 > l + } else { + yyb3804 = r.CheckBreak() + } + if yyb3804 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3807 := &x.Reference + yyv3807.CodecDecodeSelf(d) + } + for { + yyj3804++ + if yyhl3804 { + yyb3804 = yyj3804 > l + } else { + yyb3804 = r.CheckBreak() + } + if yyb3804 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3804-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3808 := z.EncBinary() + _ = yym3808 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3809 := !z.EncBinary() + yy2arr3809 := z.EncBasicHandle().StructToArray + var yyq3809 [2]bool + _, _, _ = yysep3809, yyq3809, yy2arr3809 + const yyr3809 bool = false + yyq3809[0] = x.Component != "" + yyq3809[1] = x.Host != "" + var yynn3809 int + if yyr3809 || yy2arr3809 { + r.EncodeArrayStart(2) + } else { + yynn3809 = 0 + for _, b := range yyq3809 { + if b { + yynn3809++ + } + } + r.EncodeMapStart(yynn3809) + yynn3809 = 0 + } + if yyr3809 || yy2arr3809 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3809[0] { + yym3811 := z.EncBinary() + _ = yym3811 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3809[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("component")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3812 := z.EncBinary() + _ = yym3812 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } + } + if yyr3809 || yy2arr3809 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3809[1] { + yym3814 := z.EncBinary() + _ = yym3814 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3809[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("host")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3815 := z.EncBinary() + _ = yym3815 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } + } + if yyr3809 || yy2arr3809 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3816 := z.DecBinary() + _ = yym3816 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3817 := r.ContainerType() + if yyct3817 == codecSelferValueTypeMap1234 { + yyl3817 := r.ReadMapStart() + if yyl3817 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3817, d) + } + } else if yyct3817 == codecSelferValueTypeArray1234 { + yyl3817 := r.ReadArrayStart() + if yyl3817 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3817, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3818Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3818Slc + var yyhl3818 bool = l >= 0 + for yyj3818 := 0; ; yyj3818++ { + if yyhl3818 { + if yyj3818 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3818Slc = r.DecodeBytes(yys3818Slc, true, true) + yys3818 := string(yys3818Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3818 { + case "component": + if r.TryDecodeAsNil() { + x.Component = "" + } else { + x.Component = string(r.DecodeString()) + } + case "host": + if r.TryDecodeAsNil() { + x.Host = "" + } else { + x.Host = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3818) + } // end switch yys3818 + } // end for yyj3818 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3821 int + var yyb3821 bool + var yyhl3821 bool = l >= 0 + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l + } else { + yyb3821 = r.CheckBreak() + } + if yyb3821 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Component = "" + } else { + x.Component = string(r.DecodeString()) + } + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l + } else { + yyb3821 = r.CheckBreak() + } + if yyb3821 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Host = "" + } else { + x.Host = string(r.DecodeString()) + } + for { + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l + } else { + yyb3821 = r.CheckBreak() + } + if yyb3821 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3821-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -47452,43 +48159,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3771 := z.EncBinary() - _ = yym3771 + yym3824 := z.EncBinary() + _ = yym3824 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3772 := !z.EncBinary() - yy2arr3772 := z.EncBasicHandle().StructToArray - var yyq3772 [11]bool - _, _, _ = yysep3772, yyq3772, yy2arr3772 - const yyr3772 bool = false - yyq3772[0] = x.Kind != "" - yyq3772[1] = x.APIVersion != "" - yyq3772[4] = x.Reason != "" - yyq3772[5] = x.Message != "" - yyq3772[6] = true - yyq3772[7] = true - yyq3772[8] = true - yyq3772[9] = x.Count != 0 - yyq3772[10] = x.Type != "" - var yynn3772 int - if yyr3772 || yy2arr3772 { + yysep3825 := !z.EncBinary() + yy2arr3825 := z.EncBasicHandle().StructToArray + var yyq3825 [11]bool + _, _, _ = yysep3825, yyq3825, yy2arr3825 + const yyr3825 bool = false + yyq3825[0] = x.Kind != "" + yyq3825[1] = x.APIVersion != "" + yyq3825[4] = x.Reason != "" + yyq3825[5] = x.Message != "" + yyq3825[6] = true + yyq3825[7] = true + yyq3825[8] = true + yyq3825[9] = x.Count != 0 + yyq3825[10] = x.Type != "" + var yynn3825 int + if yyr3825 || yy2arr3825 { r.EncodeArrayStart(11) } else { - yynn3772 = 2 - for _, b := range yyq3772 { + yynn3825 = 2 + for _, b := range yyq3825 { if b { - yynn3772++ + yynn3825++ } } - r.EncodeMapStart(yynn3772) - yynn3772 = 0 + r.EncodeMapStart(yynn3825) + yynn3825 = 0 } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[0] { - yym3774 := z.EncBinary() - _ = yym3774 + if yyq3825[0] { + yym3827 := z.EncBinary() + _ = yym3827 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47497,23 +48204,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3772[0] { + if yyq3825[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3775 := z.EncBinary() - _ = yym3775 + yym3828 := z.EncBinary() + _ = yym3828 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[1] { - yym3777 := z.EncBinary() - _ = yym3777 + if yyq3825[1] { + yym3830 := z.EncBinary() + _ = yym3830 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47522,45 +48229,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3772[1] { + if yyq3825[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3778 := z.EncBinary() - _ = yym3778 + yym3831 := z.EncBinary() + _ = yym3831 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3780 := &x.ObjectMeta - yy3780.CodecEncodeSelf(e) + yy3833 := &x.ObjectMeta + yy3833.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3781 := &x.ObjectMeta - yy3781.CodecEncodeSelf(e) + yy3834 := &x.ObjectMeta + yy3834.CodecEncodeSelf(e) } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3783 := &x.InvolvedObject - yy3783.CodecEncodeSelf(e) + yy3836 := &x.InvolvedObject + yy3836.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3784 := &x.InvolvedObject - yy3784.CodecEncodeSelf(e) + yy3837 := &x.InvolvedObject + yy3837.CodecEncodeSelf(e) } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[4] { - yym3786 := z.EncBinary() - _ = yym3786 + if yyq3825[4] { + yym3839 := z.EncBinary() + _ = yym3839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -47569,23 +48276,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3772[4] { + if yyq3825[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3787 := z.EncBinary() - _ = yym3787 + yym3840 := z.EncBinary() + _ = yym3840 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[5] { - yym3789 := z.EncBinary() - _ = yym3789 + if yyq3825[5] { + yym3842 := z.EncBinary() + _ = yym3842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -47594,114 +48301,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3772[5] { + if yyq3825[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3790 := z.EncBinary() - _ = yym3790 + yym3843 := z.EncBinary() + _ = yym3843 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[6] { - yy3792 := &x.Source - yy3792.CodecEncodeSelf(e) + if yyq3825[6] { + yy3845 := &x.Source + yy3845.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3772[6] { + if yyq3825[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3793 := &x.Source - yy3793.CodecEncodeSelf(e) + yy3846 := &x.Source + yy3846.CodecEncodeSelf(e) } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[7] { - yy3795 := &x.FirstTimestamp - yym3796 := z.EncBinary() - _ = yym3796 + if yyq3825[7] { + yy3848 := &x.FirstTimestamp + yym3849 := z.EncBinary() + _ = yym3849 if false { - } else if z.HasExtensions() && z.EncExt(yy3795) { - } else if yym3796 { - z.EncBinaryMarshal(yy3795) - } else if !yym3796 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3795) + } else if z.HasExtensions() && z.EncExt(yy3848) { + } else if yym3849 { + z.EncBinaryMarshal(yy3848) + } else if !yym3849 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3848) } else { - z.EncFallback(yy3795) + z.EncFallback(yy3848) } } else { r.EncodeNil() } } else { - if yyq3772[7] { + if yyq3825[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3797 := &x.FirstTimestamp - yym3798 := z.EncBinary() - _ = yym3798 + yy3850 := &x.FirstTimestamp + yym3851 := z.EncBinary() + _ = yym3851 if false { - } else if z.HasExtensions() && z.EncExt(yy3797) { - } else if yym3798 { - z.EncBinaryMarshal(yy3797) - } else if !yym3798 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3797) + } else if z.HasExtensions() && z.EncExt(yy3850) { + } else if yym3851 { + z.EncBinaryMarshal(yy3850) + } else if !yym3851 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3850) } else { - z.EncFallback(yy3797) + z.EncFallback(yy3850) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[8] { - yy3800 := &x.LastTimestamp - yym3801 := z.EncBinary() - _ = yym3801 + if yyq3825[8] { + yy3853 := &x.LastTimestamp + yym3854 := z.EncBinary() + _ = yym3854 if false { - } else if z.HasExtensions() && z.EncExt(yy3800) { - } else if yym3801 { - z.EncBinaryMarshal(yy3800) - } else if !yym3801 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3800) + } else if z.HasExtensions() && z.EncExt(yy3853) { + } else if yym3854 { + z.EncBinaryMarshal(yy3853) + } else if !yym3854 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3853) } else { - z.EncFallback(yy3800) + z.EncFallback(yy3853) } } else { r.EncodeNil() } } else { - if yyq3772[8] { + if yyq3825[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3802 := &x.LastTimestamp - yym3803 := z.EncBinary() - _ = yym3803 + yy3855 := &x.LastTimestamp + yym3856 := z.EncBinary() + _ = yym3856 if false { - } else if z.HasExtensions() && z.EncExt(yy3802) { - } else if yym3803 { - z.EncBinaryMarshal(yy3802) - } else if !yym3803 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3802) + } else if z.HasExtensions() && z.EncExt(yy3855) { + } else if yym3856 { + z.EncBinaryMarshal(yy3855) + } else if !yym3856 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3855) } else { - z.EncFallback(yy3802) + z.EncFallback(yy3855) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[9] { - yym3805 := z.EncBinary() - _ = yym3805 + if yyq3825[9] { + yym3858 := z.EncBinary() + _ = yym3858 if false { } else { r.EncodeInt(int64(x.Count)) @@ -47710,23 +48417,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3772[9] { + if yyq3825[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3806 := z.EncBinary() - _ = yym3806 + yym3859 := z.EncBinary() + _ = yym3859 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3772[10] { - yym3808 := z.EncBinary() - _ = yym3808 + if yyq3825[10] { + yym3861 := z.EncBinary() + _ = yym3861 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -47735,19 +48442,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3772[10] { + if yyq3825[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3809 := z.EncBinary() - _ = yym3809 + yym3862 := z.EncBinary() + _ = yym3862 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3772 || yy2arr3772 { + if yyr3825 || yy2arr3825 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47760,25 +48467,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3810 := z.DecBinary() - _ = yym3810 + yym3863 := z.DecBinary() + _ = yym3863 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3811 := r.ContainerType() - if yyct3811 == codecSelferValueTypeMap1234 { - yyl3811 := r.ReadMapStart() - if yyl3811 == 0 { + yyct3864 := r.ContainerType() + if yyct3864 == codecSelferValueTypeMap1234 { + yyl3864 := r.ReadMapStart() + if yyl3864 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3811, d) + x.codecDecodeSelfFromMap(yyl3864, d) } - } else if yyct3811 == codecSelferValueTypeArray1234 { - yyl3811 := r.ReadArrayStart() - if yyl3811 == 0 { + } else if yyct3864 == codecSelferValueTypeArray1234 { + yyl3864 := r.ReadArrayStart() + if yyl3864 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3811, d) + x.codecDecodeSelfFromArray(yyl3864, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47790,12 +48497,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3812Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3812Slc - var yyhl3812 bool = l >= 0 - for yyj3812 := 0; ; yyj3812++ { - if yyhl3812 { - if yyj3812 >= l { + var yys3865Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3865Slc + var yyhl3865 bool = l >= 0 + for yyj3865 := 0; ; yyj3865++ { + if yyhl3865 { + if yyj3865 >= l { break } } else { @@ -47804,10 +48511,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3812Slc = r.DecodeBytes(yys3812Slc, true, true) - yys3812 := string(yys3812Slc) + yys3865Slc = r.DecodeBytes(yys3865Slc, true, true) + yys3865 := string(yys3865Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3812 { + switch yys3865 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47824,15 +48531,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3815 := &x.ObjectMeta - yyv3815.CodecDecodeSelf(d) + yyv3868 := &x.ObjectMeta + yyv3868.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3816 := &x.InvolvedObject - yyv3816.CodecDecodeSelf(d) + yyv3869 := &x.InvolvedObject + yyv3869.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -47850,41 +48557,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3819 := &x.Source - yyv3819.CodecDecodeSelf(d) + yyv3872 := &x.Source + yyv3872.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3820 := &x.FirstTimestamp - yym3821 := z.DecBinary() - _ = yym3821 + yyv3873 := &x.FirstTimestamp + yym3874 := z.DecBinary() + _ = yym3874 if false { - } else if z.HasExtensions() && z.DecExt(yyv3820) { - } else if yym3821 { - z.DecBinaryUnmarshal(yyv3820) - } else if !yym3821 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3820) + } else if z.HasExtensions() && z.DecExt(yyv3873) { + } else if yym3874 { + z.DecBinaryUnmarshal(yyv3873) + } else if !yym3874 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3873) } else { - z.DecFallback(yyv3820, false) + z.DecFallback(yyv3873, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3822 := &x.LastTimestamp - yym3823 := z.DecBinary() - _ = yym3823 + yyv3875 := &x.LastTimestamp + yym3876 := z.DecBinary() + _ = yym3876 if false { - } else if z.HasExtensions() && z.DecExt(yyv3822) { - } else if yym3823 { - z.DecBinaryUnmarshal(yyv3822) - } else if !yym3823 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3822) + } else if z.HasExtensions() && z.DecExt(yyv3875) { + } else if yym3876 { + z.DecBinaryUnmarshal(yyv3875) + } else if !yym3876 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3875) } else { - z.DecFallback(yyv3822, false) + z.DecFallback(yyv3875, false) } } case "count": @@ -47900,9 +48607,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3812) - } // end switch yys3812 - } // end for yyj3812 + z.DecStructFieldNotFound(-1, yys3865) + } // end switch yys3865 + } // end for yyj3865 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47910,16 +48617,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3826 int - var yyb3826 bool - var yyhl3826 bool = l >= 0 - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + var yyj3879 int + var yyb3879 bool + var yyhl3879 bool = l >= 0 + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47929,13 +48636,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47945,13 +48652,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47959,16 +48666,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3829 := &x.ObjectMeta - yyv3829.CodecDecodeSelf(d) + yyv3882 := &x.ObjectMeta + yyv3882.CodecDecodeSelf(d) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47976,16 +48683,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3830 := &x.InvolvedObject - yyv3830.CodecDecodeSelf(d) + yyv3883 := &x.InvolvedObject + yyv3883.CodecDecodeSelf(d) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47995,13 +48702,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48011,13 +48718,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48025,16 +48732,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3833 := &x.Source - yyv3833.CodecDecodeSelf(d) + yyv3886 := &x.Source + yyv3886.CodecDecodeSelf(d) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48042,26 +48749,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3834 := &x.FirstTimestamp - yym3835 := z.DecBinary() - _ = yym3835 + yyv3887 := &x.FirstTimestamp + yym3888 := z.DecBinary() + _ = yym3888 if false { - } else if z.HasExtensions() && z.DecExt(yyv3834) { - } else if yym3835 { - z.DecBinaryUnmarshal(yyv3834) - } else if !yym3835 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3834) + } else if z.HasExtensions() && z.DecExt(yyv3887) { + } else if yym3888 { + z.DecBinaryUnmarshal(yyv3887) + } else if !yym3888 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3887) } else { - z.DecFallback(yyv3834, false) + z.DecFallback(yyv3887, false) } } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48069,26 +48776,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3836 := &x.LastTimestamp - yym3837 := z.DecBinary() - _ = yym3837 + yyv3889 := &x.LastTimestamp + yym3890 := z.DecBinary() + _ = yym3890 if false { - } else if z.HasExtensions() && z.DecExt(yyv3836) { - } else if yym3837 { - z.DecBinaryUnmarshal(yyv3836) - } else if !yym3837 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3836) + } else if z.HasExtensions() && z.DecExt(yyv3889) { + } else if yym3890 { + z.DecBinaryUnmarshal(yyv3889) + } else if !yym3890 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3889) } else { - z.DecFallback(yyv3836, false) + z.DecFallback(yyv3889, false) } } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48098,13 +48805,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48115,17 +48822,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3826++ - if yyhl3826 { - yyb3826 = yyj3826 > l + yyj3879++ + if yyhl3879 { + yyb3879 = yyj3879 > l } else { - yyb3826 = r.CheckBreak() + yyb3879 = r.CheckBreak() } - if yyb3826 { + if yyb3879 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3826-1, "") + z.DecStructFieldNotFound(yyj3879-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48137,37 +48844,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3840 := z.EncBinary() - _ = yym3840 + yym3893 := z.EncBinary() + _ = yym3893 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3841 := !z.EncBinary() - yy2arr3841 := z.EncBasicHandle().StructToArray - var yyq3841 [4]bool - _, _, _ = yysep3841, yyq3841, yy2arr3841 - const yyr3841 bool = false - yyq3841[0] = x.Kind != "" - yyq3841[1] = x.APIVersion != "" - yyq3841[2] = true - var yynn3841 int - if yyr3841 || yy2arr3841 { + yysep3894 := !z.EncBinary() + yy2arr3894 := z.EncBasicHandle().StructToArray + var yyq3894 [4]bool + _, _, _ = yysep3894, yyq3894, yy2arr3894 + const yyr3894 bool = false + yyq3894[0] = x.Kind != "" + yyq3894[1] = x.APIVersion != "" + yyq3894[2] = true + var yynn3894 int + if yyr3894 || yy2arr3894 { r.EncodeArrayStart(4) } else { - yynn3841 = 1 - for _, b := range yyq3841 { + yynn3894 = 1 + for _, b := range yyq3894 { if b { - yynn3841++ + yynn3894++ } } - r.EncodeMapStart(yynn3841) - yynn3841 = 0 + r.EncodeMapStart(yynn3894) + yynn3894 = 0 } - if yyr3841 || yy2arr3841 { + if yyr3894 || yy2arr3894 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3841[0] { - yym3843 := z.EncBinary() - _ = yym3843 + if yyq3894[0] { + yym3896 := z.EncBinary() + _ = yym3896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48176,23 +48883,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3841[0] { + if yyq3894[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3844 := z.EncBinary() - _ = yym3844 + yym3897 := z.EncBinary() + _ = yym3897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3841 || yy2arr3841 { + if yyr3894 || yy2arr3894 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3841[1] { - yym3846 := z.EncBinary() - _ = yym3846 + if yyq3894[1] { + yym3899 := z.EncBinary() + _ = yym3899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48201,54 +48908,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3841[1] { + if yyq3894[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3847 := z.EncBinary() - _ = yym3847 + yym3900 := z.EncBinary() + _ = yym3900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3841 || yy2arr3841 { + if yyr3894 || yy2arr3894 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3841[2] { - yy3849 := &x.ListMeta - yym3850 := z.EncBinary() - _ = yym3850 + if yyq3894[2] { + yy3902 := &x.ListMeta + yym3903 := z.EncBinary() + _ = yym3903 if false { - } else if z.HasExtensions() && z.EncExt(yy3849) { + } else if z.HasExtensions() && z.EncExt(yy3902) { } else { - z.EncFallback(yy3849) + z.EncFallback(yy3902) } } else { r.EncodeNil() } } else { - if yyq3841[2] { + if yyq3894[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3851 := &x.ListMeta - yym3852 := z.EncBinary() - _ = yym3852 + yy3904 := &x.ListMeta + yym3905 := z.EncBinary() + _ = yym3905 if false { - } else if z.HasExtensions() && z.EncExt(yy3851) { + } else if z.HasExtensions() && z.EncExt(yy3904) { } else { - z.EncFallback(yy3851) + z.EncFallback(yy3904) } } } - if yyr3841 || yy2arr3841 { + if yyr3894 || yy2arr3894 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3854 := z.EncBinary() - _ = yym3854 + yym3907 := z.EncBinary() + _ = yym3907 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -48261,15 +48968,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3855 := z.EncBinary() - _ = yym3855 + yym3908 := z.EncBinary() + _ = yym3908 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3841 || yy2arr3841 { + if yyr3894 || yy2arr3894 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48282,25 +48989,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3856 := z.DecBinary() - _ = yym3856 + yym3909 := z.DecBinary() + _ = yym3909 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3857 := r.ContainerType() - if yyct3857 == codecSelferValueTypeMap1234 { - yyl3857 := r.ReadMapStart() - if yyl3857 == 0 { + yyct3910 := r.ContainerType() + if yyct3910 == codecSelferValueTypeMap1234 { + yyl3910 := r.ReadMapStart() + if yyl3910 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3857, d) + x.codecDecodeSelfFromMap(yyl3910, d) } - } else if yyct3857 == codecSelferValueTypeArray1234 { - yyl3857 := r.ReadArrayStart() - if yyl3857 == 0 { + } else if yyct3910 == codecSelferValueTypeArray1234 { + yyl3910 := r.ReadArrayStart() + if yyl3910 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3857, d) + x.codecDecodeSelfFromArray(yyl3910, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48312,12 +49019,12 @@ func (x *EventList) 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 yys3911Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3911Slc + var yyhl3911 bool = l >= 0 + for yyj3911 := 0; ; yyj3911++ { + if yyhl3911 { + if yyj3911 >= l { break } } else { @@ -48326,10 +49033,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3858Slc = r.DecodeBytes(yys3858Slc, true, true) - yys3858 := string(yys3858Slc) + yys3911Slc = r.DecodeBytes(yys3911Slc, true, true) + yys3911 := string(yys3911Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3858 { + switch yys3911 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48346,31 +49053,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3861 := &x.ListMeta - yym3862 := z.DecBinary() - _ = yym3862 + yyv3914 := &x.ListMeta + yym3915 := z.DecBinary() + _ = yym3915 if false { - } else if z.HasExtensions() && z.DecExt(yyv3861) { + } else if z.HasExtensions() && z.DecExt(yyv3914) { } else { - z.DecFallback(yyv3861, false) + z.DecFallback(yyv3914, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3863 := &x.Items - yym3864 := z.DecBinary() - _ = yym3864 + yyv3916 := &x.Items + yym3917 := z.DecBinary() + _ = yym3917 if false { } else { - h.decSliceEvent((*[]Event)(yyv3863), d) + h.decSliceEvent((*[]Event)(yyv3916), d) } } default: - z.DecStructFieldNotFound(-1, yys3858) - } // end switch yys3858 - } // end for yyj3858 + z.DecStructFieldNotFound(-1, yys3911) + } // end switch yys3911 + } // end for yyj3911 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48378,16 +49085,16 @@ func (x *EventList) 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 yyj3918 int + var yyb3918 bool + var yyhl3918 bool = l >= 0 + yyj3918++ + if yyhl3918 { + yyb3918 = yyj3918 > l } else { - yyb3865 = r.CheckBreak() + yyb3918 = r.CheckBreak() } - if yyb3865 { + if yyb3918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48397,13 +49104,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3918++ + if yyhl3918 { + yyb3918 = yyj3918 > l } else { - yyb3865 = r.CheckBreak() + yyb3918 = r.CheckBreak() } - if yyb3865 { + if yyb3918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48413,13 +49120,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3918++ + if yyhl3918 { + yyb3918 = yyj3918 > l } else { - yyb3865 = r.CheckBreak() + yyb3918 = r.CheckBreak() } - if yyb3865 { + if yyb3918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48427,22 +49134,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3868 := &x.ListMeta - yym3869 := z.DecBinary() - _ = yym3869 + yyv3921 := &x.ListMeta + yym3922 := z.DecBinary() + _ = yym3922 if false { - } else if z.HasExtensions() && z.DecExt(yyv3868) { + } else if z.HasExtensions() && z.DecExt(yyv3921) { } else { - z.DecFallback(yyv3868, false) + z.DecFallback(yyv3921, false) } } - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3918++ + if yyhl3918 { + yyb3918 = yyj3918 > l } else { - yyb3865 = r.CheckBreak() + yyb3918 = r.CheckBreak() } - if yyb3865 { + if yyb3918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48450,26 +49157,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3870 := &x.Items - yym3871 := z.DecBinary() - _ = yym3871 + yyv3923 := &x.Items + yym3924 := z.DecBinary() + _ = yym3924 if false { } else { - h.decSliceEvent((*[]Event)(yyv3870), d) + h.decSliceEvent((*[]Event)(yyv3923), d) } } for { - yyj3865++ - if yyhl3865 { - yyb3865 = yyj3865 > l + yyj3918++ + if yyhl3918 { + yyb3918 = yyj3918 > l } else { - yyb3865 = r.CheckBreak() + yyb3918 = r.CheckBreak() } - if yyb3865 { + if yyb3918 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3865-1, "") + z.DecStructFieldNotFound(yyj3918-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48481,37 +49188,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3872 := z.EncBinary() - _ = yym3872 + yym3925 := z.EncBinary() + _ = yym3925 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3873 := !z.EncBinary() - yy2arr3873 := z.EncBasicHandle().StructToArray - var yyq3873 [4]bool - _, _, _ = yysep3873, yyq3873, yy2arr3873 - const yyr3873 bool = false - yyq3873[0] = x.Kind != "" - yyq3873[1] = x.APIVersion != "" - yyq3873[2] = true - var yynn3873 int - if yyr3873 || yy2arr3873 { + yysep3926 := !z.EncBinary() + yy2arr3926 := z.EncBasicHandle().StructToArray + var yyq3926 [4]bool + _, _, _ = yysep3926, yyq3926, yy2arr3926 + const yyr3926 bool = false + yyq3926[0] = x.Kind != "" + yyq3926[1] = x.APIVersion != "" + yyq3926[2] = true + var yynn3926 int + if yyr3926 || yy2arr3926 { r.EncodeArrayStart(4) } else { - yynn3873 = 1 - for _, b := range yyq3873 { + yynn3926 = 1 + for _, b := range yyq3926 { if b { - yynn3873++ + yynn3926++ } } - r.EncodeMapStart(yynn3873) - yynn3873 = 0 + r.EncodeMapStart(yynn3926) + yynn3926 = 0 } - if yyr3873 || yy2arr3873 { + if yyr3926 || yy2arr3926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3873[0] { - yym3875 := z.EncBinary() - _ = yym3875 + if yyq3926[0] { + yym3928 := z.EncBinary() + _ = yym3928 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48520,23 +49227,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3873[0] { + if yyq3926[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3876 := z.EncBinary() - _ = yym3876 + yym3929 := z.EncBinary() + _ = yym3929 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3873 || yy2arr3873 { + if yyr3926 || yy2arr3926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3873[1] { - yym3878 := z.EncBinary() - _ = yym3878 + if yyq3926[1] { + yym3931 := z.EncBinary() + _ = yym3931 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48545,54 +49252,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3873[1] { + if yyq3926[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3879 := z.EncBinary() - _ = yym3879 + yym3932 := z.EncBinary() + _ = yym3932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3873 || yy2arr3873 { + if yyr3926 || yy2arr3926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3873[2] { - yy3881 := &x.ListMeta - yym3882 := z.EncBinary() - _ = yym3882 + if yyq3926[2] { + yy3934 := &x.ListMeta + yym3935 := z.EncBinary() + _ = yym3935 if false { - } else if z.HasExtensions() && z.EncExt(yy3881) { + } else if z.HasExtensions() && z.EncExt(yy3934) { } else { - z.EncFallback(yy3881) + z.EncFallback(yy3934) } } else { r.EncodeNil() } } else { - if yyq3873[2] { + if yyq3926[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3883 := &x.ListMeta - yym3884 := z.EncBinary() - _ = yym3884 + yy3936 := &x.ListMeta + yym3937 := z.EncBinary() + _ = yym3937 if false { - } else if z.HasExtensions() && z.EncExt(yy3883) { + } else if z.HasExtensions() && z.EncExt(yy3936) { } else { - z.EncFallback(yy3883) + z.EncFallback(yy3936) } } } - if yyr3873 || yy2arr3873 { + if yyr3926 || yy2arr3926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3886 := z.EncBinary() - _ = yym3886 + yym3939 := z.EncBinary() + _ = yym3939 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -48605,15 +49312,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3887 := z.EncBinary() - _ = yym3887 + yym3940 := z.EncBinary() + _ = yym3940 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3873 || yy2arr3873 { + if yyr3926 || yy2arr3926 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48626,25 +49333,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3888 := z.DecBinary() - _ = yym3888 + yym3941 := z.DecBinary() + _ = yym3941 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3889 := r.ContainerType() - if yyct3889 == codecSelferValueTypeMap1234 { - yyl3889 := r.ReadMapStart() - if yyl3889 == 0 { + yyct3942 := r.ContainerType() + if yyct3942 == codecSelferValueTypeMap1234 { + yyl3942 := r.ReadMapStart() + if yyl3942 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3889, d) + x.codecDecodeSelfFromMap(yyl3942, d) } - } else if yyct3889 == codecSelferValueTypeArray1234 { - yyl3889 := r.ReadArrayStart() - if yyl3889 == 0 { + } else if yyct3942 == codecSelferValueTypeArray1234 { + yyl3942 := r.ReadArrayStart() + if yyl3942 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3889, d) + x.codecDecodeSelfFromArray(yyl3942, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48656,12 +49363,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3890Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3890Slc - var yyhl3890 bool = l >= 0 - for yyj3890 := 0; ; yyj3890++ { - if yyhl3890 { - if yyj3890 >= l { + var yys3943Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3943Slc + var yyhl3943 bool = l >= 0 + for yyj3943 := 0; ; yyj3943++ { + if yyhl3943 { + if yyj3943 >= l { break } } else { @@ -48670,10 +49377,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3890Slc = r.DecodeBytes(yys3890Slc, true, true) - yys3890 := string(yys3890Slc) + yys3943Slc = r.DecodeBytes(yys3943Slc, true, true) + yys3943 := string(yys3943Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3890 { + switch yys3943 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48690,31 +49397,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3893 := &x.ListMeta - yym3894 := z.DecBinary() - _ = yym3894 + yyv3946 := &x.ListMeta + yym3947 := z.DecBinary() + _ = yym3947 if false { - } else if z.HasExtensions() && z.DecExt(yyv3893) { + } else if z.HasExtensions() && z.DecExt(yyv3946) { } else { - z.DecFallback(yyv3893, false) + z.DecFallback(yyv3946, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3895 := &x.Items - yym3896 := z.DecBinary() - _ = yym3896 + yyv3948 := &x.Items + yym3949 := z.DecBinary() + _ = yym3949 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3895), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3948), d) } } default: - z.DecStructFieldNotFound(-1, yys3890) - } // end switch yys3890 - } // end for yyj3890 + z.DecStructFieldNotFound(-1, yys3943) + } // end switch yys3943 + } // end for yyj3943 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48722,16 +49429,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3897 int - var yyb3897 bool - var yyhl3897 bool = l >= 0 - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + var yyj3950 int + var yyb3950 bool + var yyhl3950 bool = l >= 0 + yyj3950++ + if yyhl3950 { + yyb3950 = yyj3950 > l } else { - yyb3897 = r.CheckBreak() + yyb3950 = r.CheckBreak() } - if yyb3897 { + if yyb3950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48741,13 +49448,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3950++ + if yyhl3950 { + yyb3950 = yyj3950 > l } else { - yyb3897 = r.CheckBreak() + yyb3950 = r.CheckBreak() } - if yyb3897 { + if yyb3950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48757,13 +49464,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3950++ + if yyhl3950 { + yyb3950 = yyj3950 > l } else { - yyb3897 = r.CheckBreak() + yyb3950 = r.CheckBreak() } - if yyb3897 { + if yyb3950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48771,22 +49478,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3900 := &x.ListMeta - yym3901 := z.DecBinary() - _ = yym3901 + yyv3953 := &x.ListMeta + yym3954 := z.DecBinary() + _ = yym3954 if false { - } else if z.HasExtensions() && z.DecExt(yyv3900) { + } else if z.HasExtensions() && z.DecExt(yyv3953) { } else { - z.DecFallback(yyv3900, false) + z.DecFallback(yyv3953, false) } } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3950++ + if yyhl3950 { + yyb3950 = yyj3950 > l } else { - yyb3897 = r.CheckBreak() + yyb3950 = r.CheckBreak() } - if yyb3897 { + if yyb3950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48794,26 +49501,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3902 := &x.Items - yym3903 := z.DecBinary() - _ = yym3903 + yyv3955 := &x.Items + yym3956 := z.DecBinary() + _ = yym3956 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3902), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3955), d) } } for { - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3950++ + if yyhl3950 { + yyb3950 = yyj3950 > l } else { - yyb3897 = r.CheckBreak() + yyb3950 = r.CheckBreak() } - if yyb3897 { + if yyb3950 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3897-1, "") + z.DecStructFieldNotFound(yyj3950-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48822,8 +49529,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3904 := z.EncBinary() - _ = yym3904 + yym3957 := z.EncBinary() + _ = yym3957 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -48835,8 +49542,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3905 := z.DecBinary() - _ = yym3905 + yym3958 := z.DecBinary() + _ = yym3958 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -48851,53 +49558,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3906 := z.EncBinary() - _ = yym3906 + yym3959 := z.EncBinary() + _ = yym3959 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3907 := !z.EncBinary() - yy2arr3907 := z.EncBasicHandle().StructToArray - var yyq3907 [6]bool - _, _, _ = yysep3907, yyq3907, yy2arr3907 - const yyr3907 bool = false - yyq3907[0] = x.Type != "" - yyq3907[1] = len(x.Max) != 0 - yyq3907[2] = len(x.Min) != 0 - yyq3907[3] = len(x.Default) != 0 - yyq3907[4] = len(x.DefaultRequest) != 0 - yyq3907[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3907 int - if yyr3907 || yy2arr3907 { + yysep3960 := !z.EncBinary() + yy2arr3960 := z.EncBasicHandle().StructToArray + var yyq3960 [6]bool + _, _, _ = yysep3960, yyq3960, yy2arr3960 + const yyr3960 bool = false + yyq3960[0] = x.Type != "" + yyq3960[1] = len(x.Max) != 0 + yyq3960[2] = len(x.Min) != 0 + yyq3960[3] = len(x.Default) != 0 + yyq3960[4] = len(x.DefaultRequest) != 0 + yyq3960[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3960 int + if yyr3960 || yy2arr3960 { r.EncodeArrayStart(6) } else { - yynn3907 = 0 - for _, b := range yyq3907 { + yynn3960 = 0 + for _, b := range yyq3960 { if b { - yynn3907++ + yynn3960++ } } - r.EncodeMapStart(yynn3907) - yynn3907 = 0 + r.EncodeMapStart(yynn3960) + yynn3960 = 0 } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3907[0] { + if yyq3960[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3907[0] { + if yyq3960[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3907[1] { + if yyq3960[1] { if x.Max == nil { r.EncodeNil() } else { @@ -48907,7 +49614,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3907[1] { + if yyq3960[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48918,9 +49625,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3907[2] { + if yyq3960[2] { if x.Min == nil { r.EncodeNil() } else { @@ -48930,7 +49637,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3907[2] { + if yyq3960[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48941,9 +49648,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3907[3] { + if yyq3960[3] { if x.Default == nil { r.EncodeNil() } else { @@ -48953,7 +49660,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3907[3] { + if yyq3960[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48964,9 +49671,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3907[4] { + if yyq3960[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -48976,7 +49683,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3907[4] { + if yyq3960[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48987,9 +49694,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3907[5] { + if yyq3960[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48999,7 +49706,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3907[5] { + if yyq3960[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49010,7 +49717,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3907 || yy2arr3907 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49023,25 +49730,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3914 := z.DecBinary() - _ = yym3914 + yym3967 := z.DecBinary() + _ = yym3967 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3915 := r.ContainerType() - if yyct3915 == codecSelferValueTypeMap1234 { - yyl3915 := r.ReadMapStart() - if yyl3915 == 0 { + yyct3968 := r.ContainerType() + if yyct3968 == codecSelferValueTypeMap1234 { + yyl3968 := r.ReadMapStart() + if yyl3968 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3915, d) + x.codecDecodeSelfFromMap(yyl3968, d) } - } else if yyct3915 == codecSelferValueTypeArray1234 { - yyl3915 := r.ReadArrayStart() - if yyl3915 == 0 { + } else if yyct3968 == codecSelferValueTypeArray1234 { + yyl3968 := r.ReadArrayStart() + if yyl3968 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3915, d) + x.codecDecodeSelfFromArray(yyl3968, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49053,12 +49760,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3916Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3916Slc - var yyhl3916 bool = l >= 0 - for yyj3916 := 0; ; yyj3916++ { - if yyhl3916 { - if yyj3916 >= l { + var yys3969Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3969Slc + var yyhl3969 bool = l >= 0 + for yyj3969 := 0; ; yyj3969++ { + if yyhl3969 { + if yyj3969 >= l { break } } else { @@ -49067,10 +49774,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3916Slc = r.DecodeBytes(yys3916Slc, true, true) - yys3916 := string(yys3916Slc) + yys3969Slc = r.DecodeBytes(yys3969Slc, true, true) + yys3969 := string(yys3969Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3916 { + switch yys3969 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -49081,41 +49788,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3918 := &x.Max - yyv3918.CodecDecodeSelf(d) + yyv3971 := &x.Max + yyv3971.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3919 := &x.Min - yyv3919.CodecDecodeSelf(d) + yyv3972 := &x.Min + yyv3972.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3920 := &x.Default - yyv3920.CodecDecodeSelf(d) + yyv3973 := &x.Default + yyv3973.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3921 := &x.DefaultRequest - yyv3921.CodecDecodeSelf(d) + yyv3974 := &x.DefaultRequest + yyv3974.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3922 := &x.MaxLimitRequestRatio - yyv3922.CodecDecodeSelf(d) + yyv3975 := &x.MaxLimitRequestRatio + yyv3975.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3916) - } // end switch yys3916 - } // end for yyj3916 + z.DecStructFieldNotFound(-1, yys3969) + } // end switch yys3969 + } // end for yyj3969 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49123,16 +49830,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3923 int - var yyb3923 bool - var yyhl3923 bool = l >= 0 - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + var yyj3976 int + var yyb3976 bool + var yyhl3976 bool = l >= 0 + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49142,13 +49849,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49156,16 +49863,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3925 := &x.Max - yyv3925.CodecDecodeSelf(d) + yyv3978 := &x.Max + yyv3978.CodecDecodeSelf(d) } - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49173,16 +49880,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3926 := &x.Min - yyv3926.CodecDecodeSelf(d) + yyv3979 := &x.Min + yyv3979.CodecDecodeSelf(d) } - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49190,16 +49897,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3927 := &x.Default - yyv3927.CodecDecodeSelf(d) + yyv3980 := &x.Default + yyv3980.CodecDecodeSelf(d) } - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49207,16 +49914,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3928 := &x.DefaultRequest - yyv3928.CodecDecodeSelf(d) + yyv3981 := &x.DefaultRequest + yyv3981.CodecDecodeSelf(d) } - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49224,21 +49931,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3929 := &x.MaxLimitRequestRatio - yyv3929.CodecDecodeSelf(d) + yyv3982 := &x.MaxLimitRequestRatio + yyv3982.CodecDecodeSelf(d) } for { - yyj3923++ - if yyhl3923 { - yyb3923 = yyj3923 > l + yyj3976++ + if yyhl3976 { + yyb3976 = yyj3976 > l } else { - yyb3923 = r.CheckBreak() + yyb3976 = r.CheckBreak() } - if yyb3923 { + if yyb3976 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3923-1, "") + z.DecStructFieldNotFound(yyj3976-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49250,36 +49957,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3930 := z.EncBinary() - _ = yym3930 + yym3983 := z.EncBinary() + _ = yym3983 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3931 := !z.EncBinary() - yy2arr3931 := z.EncBasicHandle().StructToArray - var yyq3931 [1]bool - _, _, _ = yysep3931, yyq3931, yy2arr3931 - const yyr3931 bool = false - var yynn3931 int - if yyr3931 || yy2arr3931 { + yysep3984 := !z.EncBinary() + yy2arr3984 := z.EncBasicHandle().StructToArray + var yyq3984 [1]bool + _, _, _ = yysep3984, yyq3984, yy2arr3984 + const yyr3984 bool = false + var yynn3984 int + if yyr3984 || yy2arr3984 { r.EncodeArrayStart(1) } else { - yynn3931 = 1 - for _, b := range yyq3931 { + yynn3984 = 1 + for _, b := range yyq3984 { if b { - yynn3931++ + yynn3984++ } } - r.EncodeMapStart(yynn3931) - yynn3931 = 0 + r.EncodeMapStart(yynn3984) + yynn3984 = 0 } - if yyr3931 || yy2arr3931 { + if yyr3984 || yy2arr3984 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3933 := z.EncBinary() - _ = yym3933 + yym3986 := z.EncBinary() + _ = yym3986 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -49292,15 +49999,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3934 := z.EncBinary() - _ = yym3934 + yym3987 := z.EncBinary() + _ = yym3987 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3931 || yy2arr3931 { + if yyr3984 || yy2arr3984 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49313,25 +50020,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3935 := z.DecBinary() - _ = yym3935 + yym3988 := z.DecBinary() + _ = yym3988 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3936 := r.ContainerType() - if yyct3936 == codecSelferValueTypeMap1234 { - yyl3936 := r.ReadMapStart() - if yyl3936 == 0 { + yyct3989 := r.ContainerType() + if yyct3989 == codecSelferValueTypeMap1234 { + yyl3989 := r.ReadMapStart() + if yyl3989 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3936, d) + x.codecDecodeSelfFromMap(yyl3989, d) } - } else if yyct3936 == codecSelferValueTypeArray1234 { - yyl3936 := r.ReadArrayStart() - if yyl3936 == 0 { + } else if yyct3989 == codecSelferValueTypeArray1234 { + yyl3989 := r.ReadArrayStart() + if yyl3989 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3936, d) + x.codecDecodeSelfFromArray(yyl3989, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49343,12 +50050,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3937Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3937Slc - var yyhl3937 bool = l >= 0 - for yyj3937 := 0; ; yyj3937++ { - if yyhl3937 { - if yyj3937 >= l { + var yys3990Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3990Slc + var yyhl3990 bool = l >= 0 + for yyj3990 := 0; ; yyj3990++ { + if yyhl3990 { + if yyj3990 >= l { break } } else { @@ -49357,26 +50064,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3937Slc = r.DecodeBytes(yys3937Slc, true, true) - yys3937 := string(yys3937Slc) + yys3990Slc = r.DecodeBytes(yys3990Slc, true, true) + yys3990 := string(yys3990Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3937 { + switch yys3990 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3938 := &x.Limits - yym3939 := z.DecBinary() - _ = yym3939 + yyv3991 := &x.Limits + yym3992 := z.DecBinary() + _ = yym3992 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3938), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3991), d) } } default: - z.DecStructFieldNotFound(-1, yys3937) - } // end switch yys3937 - } // end for yyj3937 + z.DecStructFieldNotFound(-1, yys3990) + } // end switch yys3990 + } // end for yyj3990 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49384,16 +50091,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3940 int - var yyb3940 bool - var yyhl3940 bool = l >= 0 - yyj3940++ - if yyhl3940 { - yyb3940 = yyj3940 > l + var yyj3993 int + var yyb3993 bool + var yyhl3993 bool = l >= 0 + yyj3993++ + if yyhl3993 { + yyb3993 = yyj3993 > l } else { - yyb3940 = r.CheckBreak() + yyb3993 = r.CheckBreak() } - if yyb3940 { + if yyb3993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49401,26 +50108,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3941 := &x.Limits - yym3942 := z.DecBinary() - _ = yym3942 + yyv3994 := &x.Limits + yym3995 := z.DecBinary() + _ = yym3995 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3941), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3994), d) } } for { - yyj3940++ - if yyhl3940 { - yyb3940 = yyj3940 > l + yyj3993++ + if yyhl3993 { + yyb3993 = yyj3993 > l } else { - yyb3940 = r.CheckBreak() + yyb3993 = r.CheckBreak() } - if yyb3940 { + if yyb3993 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3940-1, "") + z.DecStructFieldNotFound(yyj3993-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49432,38 +50139,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3943 := z.EncBinary() - _ = yym3943 + yym3996 := z.EncBinary() + _ = yym3996 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3944 := !z.EncBinary() - yy2arr3944 := z.EncBasicHandle().StructToArray - var yyq3944 [4]bool - _, _, _ = yysep3944, yyq3944, yy2arr3944 - const yyr3944 bool = false - yyq3944[0] = x.Kind != "" - yyq3944[1] = x.APIVersion != "" - yyq3944[2] = true - yyq3944[3] = true - var yynn3944 int - if yyr3944 || yy2arr3944 { + yysep3997 := !z.EncBinary() + yy2arr3997 := z.EncBasicHandle().StructToArray + var yyq3997 [4]bool + _, _, _ = yysep3997, yyq3997, yy2arr3997 + const yyr3997 bool = false + yyq3997[0] = x.Kind != "" + yyq3997[1] = x.APIVersion != "" + yyq3997[2] = true + yyq3997[3] = true + var yynn3997 int + if yyr3997 || yy2arr3997 { r.EncodeArrayStart(4) } else { - yynn3944 = 0 - for _, b := range yyq3944 { + yynn3997 = 0 + for _, b := range yyq3997 { if b { - yynn3944++ + yynn3997++ } } - r.EncodeMapStart(yynn3944) - yynn3944 = 0 + r.EncodeMapStart(yynn3997) + yynn3997 = 0 } - if yyr3944 || yy2arr3944 { + if yyr3997 || yy2arr3997 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3944[0] { - yym3946 := z.EncBinary() - _ = yym3946 + if yyq3997[0] { + yym3999 := z.EncBinary() + _ = yym3999 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49472,23 +50179,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3944[0] { + if yyq3997[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3947 := z.EncBinary() - _ = yym3947 + yym4000 := z.EncBinary() + _ = yym4000 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3944 || yy2arr3944 { + if yyr3997 || yy2arr3997 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3944[1] { - yym3949 := z.EncBinary() - _ = yym3949 + if yyq3997[1] { + yym4002 := z.EncBinary() + _ = yym4002 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49497,53 +50204,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3944[1] { + if yyq3997[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3950 := z.EncBinary() - _ = yym3950 + yym4003 := z.EncBinary() + _ = yym4003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3944 || yy2arr3944 { + if yyr3997 || yy2arr3997 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3944[2] { - yy3952 := &x.ObjectMeta - yy3952.CodecEncodeSelf(e) + if yyq3997[2] { + yy4005 := &x.ObjectMeta + yy4005.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3944[2] { + if yyq3997[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3953 := &x.ObjectMeta - yy3953.CodecEncodeSelf(e) + yy4006 := &x.ObjectMeta + yy4006.CodecEncodeSelf(e) } } - if yyr3944 || yy2arr3944 { + if yyr3997 || yy2arr3997 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3944[3] { - yy3955 := &x.Spec - yy3955.CodecEncodeSelf(e) + if yyq3997[3] { + yy4008 := &x.Spec + yy4008.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3944[3] { + if yyq3997[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3956 := &x.Spec - yy3956.CodecEncodeSelf(e) + yy4009 := &x.Spec + yy4009.CodecEncodeSelf(e) } } - if yyr3944 || yy2arr3944 { + if yyr3997 || yy2arr3997 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49556,25 +50263,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3957 := z.DecBinary() - _ = yym3957 + yym4010 := z.DecBinary() + _ = yym4010 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3958 := r.ContainerType() - if yyct3958 == codecSelferValueTypeMap1234 { - yyl3958 := r.ReadMapStart() - if yyl3958 == 0 { + yyct4011 := r.ContainerType() + if yyct4011 == codecSelferValueTypeMap1234 { + yyl4011 := r.ReadMapStart() + if yyl4011 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3958, d) + x.codecDecodeSelfFromMap(yyl4011, d) } - } else if yyct3958 == codecSelferValueTypeArray1234 { - yyl3958 := r.ReadArrayStart() - if yyl3958 == 0 { + } else if yyct4011 == codecSelferValueTypeArray1234 { + yyl4011 := r.ReadArrayStart() + if yyl4011 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3958, d) + x.codecDecodeSelfFromArray(yyl4011, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49586,12 +50293,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3959Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3959Slc - var yyhl3959 bool = l >= 0 - for yyj3959 := 0; ; yyj3959++ { - if yyhl3959 { - if yyj3959 >= l { + var yys4012Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4012Slc + var yyhl4012 bool = l >= 0 + for yyj4012 := 0; ; yyj4012++ { + if yyhl4012 { + if yyj4012 >= l { break } } else { @@ -49600,10 +50307,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3959Slc = r.DecodeBytes(yys3959Slc, true, true) - yys3959 := string(yys3959Slc) + yys4012Slc = r.DecodeBytes(yys4012Slc, true, true) + yys4012 := string(yys4012Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3959 { + switch yys4012 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49620,20 +50327,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3962 := &x.ObjectMeta - yyv3962.CodecDecodeSelf(d) + yyv4015 := &x.ObjectMeta + yyv4015.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3963 := &x.Spec - yyv3963.CodecDecodeSelf(d) + yyv4016 := &x.Spec + yyv4016.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3959) - } // end switch yys3959 - } // end for yyj3959 + z.DecStructFieldNotFound(-1, yys4012) + } // end switch yys4012 + } // end for yyj4012 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49641,16 +50348,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3964 int - var yyb3964 bool - var yyhl3964 bool = l >= 0 - yyj3964++ - if yyhl3964 { - yyb3964 = yyj3964 > l + var yyj4017 int + var yyb4017 bool + var yyhl4017 bool = l >= 0 + yyj4017++ + if yyhl4017 { + yyb4017 = yyj4017 > l } else { - yyb3964 = r.CheckBreak() + yyb4017 = r.CheckBreak() } - if yyb3964 { + if yyb4017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49660,13 +50367,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3964++ - if yyhl3964 { - yyb3964 = yyj3964 > l + yyj4017++ + if yyhl4017 { + yyb4017 = yyj4017 > l } else { - yyb3964 = r.CheckBreak() + yyb4017 = r.CheckBreak() } - if yyb3964 { + if yyb4017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49676,13 +50383,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3964++ - if yyhl3964 { - yyb3964 = yyj3964 > l + yyj4017++ + if yyhl4017 { + yyb4017 = yyj4017 > l } else { - yyb3964 = r.CheckBreak() + yyb4017 = r.CheckBreak() } - if yyb3964 { + if yyb4017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49690,16 +50397,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3967 := &x.ObjectMeta - yyv3967.CodecDecodeSelf(d) + yyv4020 := &x.ObjectMeta + yyv4020.CodecDecodeSelf(d) } - yyj3964++ - if yyhl3964 { - yyb3964 = yyj3964 > l + yyj4017++ + if yyhl4017 { + yyb4017 = yyj4017 > l } else { - yyb3964 = r.CheckBreak() + yyb4017 = r.CheckBreak() } - if yyb3964 { + if yyb4017 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49707,21 +50414,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3968 := &x.Spec - yyv3968.CodecDecodeSelf(d) + yyv4021 := &x.Spec + yyv4021.CodecDecodeSelf(d) } for { - yyj3964++ - if yyhl3964 { - yyb3964 = yyj3964 > l + yyj4017++ + if yyhl4017 { + yyb4017 = yyj4017 > l } else { - yyb3964 = r.CheckBreak() + yyb4017 = r.CheckBreak() } - if yyb3964 { + if yyb4017 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3964-1, "") + z.DecStructFieldNotFound(yyj4017-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49733,37 +50440,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3969 := z.EncBinary() - _ = yym3969 + yym4022 := z.EncBinary() + _ = yym4022 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3970 := !z.EncBinary() - yy2arr3970 := z.EncBasicHandle().StructToArray - var yyq3970 [4]bool - _, _, _ = yysep3970, yyq3970, yy2arr3970 - const yyr3970 bool = false - yyq3970[0] = x.Kind != "" - yyq3970[1] = x.APIVersion != "" - yyq3970[2] = true - var yynn3970 int - if yyr3970 || yy2arr3970 { + yysep4023 := !z.EncBinary() + yy2arr4023 := z.EncBasicHandle().StructToArray + var yyq4023 [4]bool + _, _, _ = yysep4023, yyq4023, yy2arr4023 + const yyr4023 bool = false + yyq4023[0] = x.Kind != "" + yyq4023[1] = x.APIVersion != "" + yyq4023[2] = true + var yynn4023 int + if yyr4023 || yy2arr4023 { r.EncodeArrayStart(4) } else { - yynn3970 = 1 - for _, b := range yyq3970 { + yynn4023 = 1 + for _, b := range yyq4023 { if b { - yynn3970++ + yynn4023++ } } - r.EncodeMapStart(yynn3970) - yynn3970 = 0 + r.EncodeMapStart(yynn4023) + yynn4023 = 0 } - if yyr3970 || yy2arr3970 { + if yyr4023 || yy2arr4023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3970[0] { - yym3972 := z.EncBinary() - _ = yym3972 + if yyq4023[0] { + yym4025 := z.EncBinary() + _ = yym4025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49772,23 +50479,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3970[0] { + if yyq4023[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3973 := z.EncBinary() - _ = yym3973 + yym4026 := z.EncBinary() + _ = yym4026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3970 || yy2arr3970 { + if yyr4023 || yy2arr4023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3970[1] { - yym3975 := z.EncBinary() - _ = yym3975 + if yyq4023[1] { + yym4028 := z.EncBinary() + _ = yym4028 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49797,54 +50504,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3970[1] { + if yyq4023[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3976 := z.EncBinary() - _ = yym3976 + yym4029 := z.EncBinary() + _ = yym4029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3970 || yy2arr3970 { + if yyr4023 || yy2arr4023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3970[2] { - yy3978 := &x.ListMeta - yym3979 := z.EncBinary() - _ = yym3979 + if yyq4023[2] { + yy4031 := &x.ListMeta + yym4032 := z.EncBinary() + _ = yym4032 if false { - } else if z.HasExtensions() && z.EncExt(yy3978) { + } else if z.HasExtensions() && z.EncExt(yy4031) { } else { - z.EncFallback(yy3978) + z.EncFallback(yy4031) } } else { r.EncodeNil() } } else { - if yyq3970[2] { + if yyq4023[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3980 := &x.ListMeta - yym3981 := z.EncBinary() - _ = yym3981 + yy4033 := &x.ListMeta + yym4034 := z.EncBinary() + _ = yym4034 if false { - } else if z.HasExtensions() && z.EncExt(yy3980) { + } else if z.HasExtensions() && z.EncExt(yy4033) { } else { - z.EncFallback(yy3980) + z.EncFallback(yy4033) } } } - if yyr3970 || yy2arr3970 { + if yyr4023 || yy2arr4023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3983 := z.EncBinary() - _ = yym3983 + yym4036 := z.EncBinary() + _ = yym4036 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -49857,15 +50564,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3984 := z.EncBinary() - _ = yym3984 + yym4037 := z.EncBinary() + _ = yym4037 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3970 || yy2arr3970 { + if yyr4023 || yy2arr4023 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49878,25 +50585,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3985 := z.DecBinary() - _ = yym3985 + yym4038 := z.DecBinary() + _ = yym4038 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3986 := r.ContainerType() - if yyct3986 == codecSelferValueTypeMap1234 { - yyl3986 := r.ReadMapStart() - if yyl3986 == 0 { + yyct4039 := r.ContainerType() + if yyct4039 == codecSelferValueTypeMap1234 { + yyl4039 := r.ReadMapStart() + if yyl4039 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3986, d) + x.codecDecodeSelfFromMap(yyl4039, d) } - } else if yyct3986 == codecSelferValueTypeArray1234 { - yyl3986 := r.ReadArrayStart() - if yyl3986 == 0 { + } else if yyct4039 == codecSelferValueTypeArray1234 { + yyl4039 := r.ReadArrayStart() + if yyl4039 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3986, d) + x.codecDecodeSelfFromArray(yyl4039, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49908,12 +50615,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3987Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3987Slc - var yyhl3987 bool = l >= 0 - for yyj3987 := 0; ; yyj3987++ { - if yyhl3987 { - if yyj3987 >= l { + var yys4040Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4040Slc + var yyhl4040 bool = l >= 0 + for yyj4040 := 0; ; yyj4040++ { + if yyhl4040 { + if yyj4040 >= l { break } } else { @@ -49922,10 +50629,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3987Slc = r.DecodeBytes(yys3987Slc, true, true) - yys3987 := string(yys3987Slc) + yys4040Slc = r.DecodeBytes(yys4040Slc, true, true) + yys4040 := string(yys4040Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3987 { + switch yys4040 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49942,31 +50649,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3990 := &x.ListMeta - yym3991 := z.DecBinary() - _ = yym3991 + yyv4043 := &x.ListMeta + yym4044 := z.DecBinary() + _ = yym4044 if false { - } else if z.HasExtensions() && z.DecExt(yyv3990) { + } else if z.HasExtensions() && z.DecExt(yyv4043) { } else { - z.DecFallback(yyv3990, false) + z.DecFallback(yyv4043, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3992 := &x.Items - yym3993 := z.DecBinary() - _ = yym3993 + yyv4045 := &x.Items + yym4046 := z.DecBinary() + _ = yym4046 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3992), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4045), d) } } default: - z.DecStructFieldNotFound(-1, yys3987) - } // end switch yys3987 - } // end for yyj3987 + z.DecStructFieldNotFound(-1, yys4040) + } // end switch yys4040 + } // end for yyj4040 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49974,16 +50681,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3994 int - var yyb3994 bool - var yyhl3994 bool = l >= 0 - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + var yyj4047 int + var yyb4047 bool + var yyhl4047 bool = l >= 0 + yyj4047++ + if yyhl4047 { + yyb4047 = yyj4047 > l } else { - yyb3994 = r.CheckBreak() + yyb4047 = r.CheckBreak() } - if yyb3994 { + if yyb4047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49993,13 +50700,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4047++ + if yyhl4047 { + yyb4047 = yyj4047 > l } else { - yyb3994 = r.CheckBreak() + yyb4047 = r.CheckBreak() } - if yyb3994 { + if yyb4047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50009,13 +50716,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4047++ + if yyhl4047 { + yyb4047 = yyj4047 > l } else { - yyb3994 = r.CheckBreak() + yyb4047 = r.CheckBreak() } - if yyb3994 { + if yyb4047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50023,22 +50730,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3997 := &x.ListMeta - yym3998 := z.DecBinary() - _ = yym3998 + yyv4050 := &x.ListMeta + yym4051 := z.DecBinary() + _ = yym4051 if false { - } else if z.HasExtensions() && z.DecExt(yyv3997) { + } else if z.HasExtensions() && z.DecExt(yyv4050) { } else { - z.DecFallback(yyv3997, false) + z.DecFallback(yyv4050, false) } } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4047++ + if yyhl4047 { + yyb4047 = yyj4047 > l } else { - yyb3994 = r.CheckBreak() + yyb4047 = r.CheckBreak() } - if yyb3994 { + if yyb4047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50046,26 +50753,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3999 := &x.Items - yym4000 := z.DecBinary() - _ = yym4000 + yyv4052 := &x.Items + yym4053 := z.DecBinary() + _ = yym4053 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3999), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4052), d) } } for { - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4047++ + if yyhl4047 { + yyb4047 = yyj4047 > l } else { - yyb3994 = r.CheckBreak() + yyb4047 = r.CheckBreak() } - if yyb3994 { + if yyb4047 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3994-1, "") + z.DecStructFieldNotFound(yyj4047-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50074,8 +50781,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4001 := z.EncBinary() - _ = yym4001 + yym4054 := z.EncBinary() + _ = yym4054 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50087,8 +50794,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4002 := z.DecBinary() - _ = yym4002 + yym4055 := z.DecBinary() + _ = yym4055 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50103,34 +50810,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4003 := z.EncBinary() - _ = yym4003 + yym4056 := z.EncBinary() + _ = yym4056 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4004 := !z.EncBinary() - yy2arr4004 := z.EncBasicHandle().StructToArray - var yyq4004 [2]bool - _, _, _ = yysep4004, yyq4004, yy2arr4004 - const yyr4004 bool = false - yyq4004[0] = len(x.Hard) != 0 - yyq4004[1] = len(x.Scopes) != 0 - var yynn4004 int - if yyr4004 || yy2arr4004 { + yysep4057 := !z.EncBinary() + yy2arr4057 := z.EncBasicHandle().StructToArray + var yyq4057 [2]bool + _, _, _ = yysep4057, yyq4057, yy2arr4057 + const yyr4057 bool = false + yyq4057[0] = len(x.Hard) != 0 + yyq4057[1] = len(x.Scopes) != 0 + var yynn4057 int + if yyr4057 || yy2arr4057 { r.EncodeArrayStart(2) } else { - yynn4004 = 0 - for _, b := range yyq4004 { + yynn4057 = 0 + for _, b := range yyq4057 { if b { - yynn4004++ + yynn4057++ } } - r.EncodeMapStart(yynn4004) - yynn4004 = 0 + r.EncodeMapStart(yynn4057) + yynn4057 = 0 } - if yyr4004 || yy2arr4004 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4004[0] { + if yyq4057[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50140,7 +50847,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4004[0] { + if yyq4057[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50151,14 +50858,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4004 || yy2arr4004 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4004[1] { + if yyq4057[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4007 := z.EncBinary() - _ = yym4007 + yym4060 := z.EncBinary() + _ = yym4060 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50168,15 +50875,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4004[1] { + if yyq4057[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4008 := z.EncBinary() - _ = yym4008 + yym4061 := z.EncBinary() + _ = yym4061 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -50184,7 +50891,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4004 || yy2arr4004 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50197,25 +50904,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4009 := z.DecBinary() - _ = yym4009 + yym4062 := z.DecBinary() + _ = yym4062 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4010 := r.ContainerType() - if yyct4010 == codecSelferValueTypeMap1234 { - yyl4010 := r.ReadMapStart() - if yyl4010 == 0 { + yyct4063 := r.ContainerType() + if yyct4063 == codecSelferValueTypeMap1234 { + yyl4063 := r.ReadMapStart() + if yyl4063 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4010, d) + x.codecDecodeSelfFromMap(yyl4063, d) } - } else if yyct4010 == codecSelferValueTypeArray1234 { - yyl4010 := r.ReadArrayStart() - if yyl4010 == 0 { + } else if yyct4063 == codecSelferValueTypeArray1234 { + yyl4063 := r.ReadArrayStart() + if yyl4063 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4010, d) + x.codecDecodeSelfFromArray(yyl4063, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50227,12 +50934,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4011Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4011Slc - var yyhl4011 bool = l >= 0 - for yyj4011 := 0; ; yyj4011++ { - if yyhl4011 { - if yyj4011 >= l { + var yys4064Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4064Slc + var yyhl4064 bool = l >= 0 + for yyj4064 := 0; ; yyj4064++ { + if yyhl4064 { + if yyj4064 >= l { break } } else { @@ -50241,33 +50948,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4011Slc = r.DecodeBytes(yys4011Slc, true, true) - yys4011 := string(yys4011Slc) + yys4064Slc = r.DecodeBytes(yys4064Slc, true, true) + yys4064 := string(yys4064Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4011 { + switch yys4064 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4012 := &x.Hard - yyv4012.CodecDecodeSelf(d) + yyv4065 := &x.Hard + yyv4065.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4013 := &x.Scopes - yym4014 := z.DecBinary() - _ = yym4014 + yyv4066 := &x.Scopes + yym4067 := z.DecBinary() + _ = yym4067 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4013), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4066), d) } } default: - z.DecStructFieldNotFound(-1, yys4011) - } // end switch yys4011 - } // end for yyj4011 + z.DecStructFieldNotFound(-1, yys4064) + } // end switch yys4064 + } // end for yyj4064 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50275,16 +50982,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder 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 yyj4068 int + var yyb4068 bool + var yyhl4068 bool = l >= 0 + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l } else { - yyb4015 = r.CheckBreak() + yyb4068 = r.CheckBreak() } - if yyb4015 { + if yyb4068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50292,16 +50999,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4016 := &x.Hard - yyv4016.CodecDecodeSelf(d) + yyv4069 := &x.Hard + yyv4069.CodecDecodeSelf(d) } - yyj4015++ - if yyhl4015 { - yyb4015 = yyj4015 > l + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l } else { - yyb4015 = r.CheckBreak() + yyb4068 = r.CheckBreak() } - if yyb4015 { + if yyb4068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50309,26 +51016,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4017 := &x.Scopes - yym4018 := z.DecBinary() - _ = yym4018 + yyv4070 := &x.Scopes + yym4071 := z.DecBinary() + _ = yym4071 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4017), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4070), d) } } for { - yyj4015++ - if yyhl4015 { - yyb4015 = yyj4015 > l + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l } else { - yyb4015 = r.CheckBreak() + yyb4068 = r.CheckBreak() } - if yyb4015 { + if yyb4068 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4015-1, "") + z.DecStructFieldNotFound(yyj4068-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50340,34 +51047,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4019 := z.EncBinary() - _ = yym4019 + yym4072 := z.EncBinary() + _ = yym4072 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4020 := !z.EncBinary() - yy2arr4020 := z.EncBasicHandle().StructToArray - var yyq4020 [2]bool - _, _, _ = yysep4020, yyq4020, yy2arr4020 - const yyr4020 bool = false - yyq4020[0] = len(x.Hard) != 0 - yyq4020[1] = len(x.Used) != 0 - var yynn4020 int - if yyr4020 || yy2arr4020 { + yysep4073 := !z.EncBinary() + yy2arr4073 := z.EncBasicHandle().StructToArray + var yyq4073 [2]bool + _, _, _ = yysep4073, yyq4073, yy2arr4073 + const yyr4073 bool = false + yyq4073[0] = len(x.Hard) != 0 + yyq4073[1] = len(x.Used) != 0 + var yynn4073 int + if yyr4073 || yy2arr4073 { r.EncodeArrayStart(2) } else { - yynn4020 = 0 - for _, b := range yyq4020 { + yynn4073 = 0 + for _, b := range yyq4073 { if b { - yynn4020++ + yynn4073++ } } - r.EncodeMapStart(yynn4020) - yynn4020 = 0 + r.EncodeMapStart(yynn4073) + yynn4073 = 0 } - if yyr4020 || yy2arr4020 { + if yyr4073 || yy2arr4073 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4020[0] { + if yyq4073[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50377,7 +51084,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4020[0] { + if yyq4073[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50388,9 +51095,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4020 || yy2arr4020 { + if yyr4073 || yy2arr4073 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4020[1] { + if yyq4073[1] { if x.Used == nil { r.EncodeNil() } else { @@ -50400,7 +51107,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4020[1] { + if yyq4073[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50411,7 +51118,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4020 || yy2arr4020 { + if yyr4073 || yy2arr4073 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50424,25 +51131,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4023 := z.DecBinary() - _ = yym4023 + yym4076 := z.DecBinary() + _ = yym4076 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4024 := r.ContainerType() - if yyct4024 == codecSelferValueTypeMap1234 { - yyl4024 := r.ReadMapStart() - if yyl4024 == 0 { + yyct4077 := r.ContainerType() + if yyct4077 == codecSelferValueTypeMap1234 { + yyl4077 := r.ReadMapStart() + if yyl4077 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4024, d) + x.codecDecodeSelfFromMap(yyl4077, d) } - } else if yyct4024 == codecSelferValueTypeArray1234 { - yyl4024 := r.ReadArrayStart() - if yyl4024 == 0 { + } else if yyct4077 == codecSelferValueTypeArray1234 { + yyl4077 := r.ReadArrayStart() + if yyl4077 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4024, d) + x.codecDecodeSelfFromArray(yyl4077, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50454,12 +51161,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4025Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4025Slc - var yyhl4025 bool = l >= 0 - for yyj4025 := 0; ; yyj4025++ { - if yyhl4025 { - if yyj4025 >= l { + var yys4078Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4078Slc + var yyhl4078 bool = l >= 0 + for yyj4078 := 0; ; yyj4078++ { + if yyhl4078 { + if yyj4078 >= l { break } } else { @@ -50468,28 +51175,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4025Slc = r.DecodeBytes(yys4025Slc, true, true) - yys4025 := string(yys4025Slc) + yys4078Slc = r.DecodeBytes(yys4078Slc, true, true) + yys4078 := string(yys4078Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4025 { + switch yys4078 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4026 := &x.Hard - yyv4026.CodecDecodeSelf(d) + yyv4079 := &x.Hard + yyv4079.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4027 := &x.Used - yyv4027.CodecDecodeSelf(d) + yyv4080 := &x.Used + yyv4080.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4025) - } // end switch yys4025 - } // end for yyj4025 + z.DecStructFieldNotFound(-1, yys4078) + } // end switch yys4078 + } // end for yyj4078 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50497,16 +51204,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4028 int - var yyb4028 bool - var yyhl4028 bool = l >= 0 - yyj4028++ - if yyhl4028 { - yyb4028 = yyj4028 > l + var yyj4081 int + var yyb4081 bool + var yyhl4081 bool = l >= 0 + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4028 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4028 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50514,16 +51221,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4029 := &x.Hard - yyv4029.CodecDecodeSelf(d) + yyv4082 := &x.Hard + yyv4082.CodecDecodeSelf(d) } - yyj4028++ - if yyhl4028 { - yyb4028 = yyj4028 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4028 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4028 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50531,21 +51238,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4030 := &x.Used - yyv4030.CodecDecodeSelf(d) + yyv4083 := &x.Used + yyv4083.CodecDecodeSelf(d) } for { - yyj4028++ - if yyhl4028 { - yyb4028 = yyj4028 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4028 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4028 { + if yyb4081 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4028-1, "") + z.DecStructFieldNotFound(yyj4081-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50557,39 +51264,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4031 := z.EncBinary() - _ = yym4031 + yym4084 := z.EncBinary() + _ = yym4084 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4032 := !z.EncBinary() - yy2arr4032 := z.EncBasicHandle().StructToArray - var yyq4032 [5]bool - _, _, _ = yysep4032, yyq4032, yy2arr4032 - const yyr4032 bool = false - yyq4032[0] = x.Kind != "" - yyq4032[1] = x.APIVersion != "" - yyq4032[2] = true - yyq4032[3] = true - yyq4032[4] = true - var yynn4032 int - if yyr4032 || yy2arr4032 { + yysep4085 := !z.EncBinary() + yy2arr4085 := z.EncBasicHandle().StructToArray + var yyq4085 [5]bool + _, _, _ = yysep4085, yyq4085, yy2arr4085 + const yyr4085 bool = false + yyq4085[0] = x.Kind != "" + yyq4085[1] = x.APIVersion != "" + yyq4085[2] = true + yyq4085[3] = true + yyq4085[4] = true + var yynn4085 int + if yyr4085 || yy2arr4085 { r.EncodeArrayStart(5) } else { - yynn4032 = 0 - for _, b := range yyq4032 { + yynn4085 = 0 + for _, b := range yyq4085 { if b { - yynn4032++ + yynn4085++ } } - r.EncodeMapStart(yynn4032) - yynn4032 = 0 + r.EncodeMapStart(yynn4085) + yynn4085 = 0 } - if yyr4032 || yy2arr4032 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4032[0] { - yym4034 := z.EncBinary() - _ = yym4034 + if yyq4085[0] { + yym4087 := z.EncBinary() + _ = yym4087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50598,23 +51305,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4032[0] { + if yyq4085[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4035 := z.EncBinary() - _ = yym4035 + yym4088 := z.EncBinary() + _ = yym4088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4032 || yy2arr4032 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4032[1] { - yym4037 := z.EncBinary() - _ = yym4037 + if yyq4085[1] { + yym4090 := z.EncBinary() + _ = yym4090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50623,70 +51330,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4032[1] { + if yyq4085[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4038 := z.EncBinary() - _ = yym4038 + yym4091 := z.EncBinary() + _ = yym4091 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4032 || yy2arr4032 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4032[2] { - yy4040 := &x.ObjectMeta - yy4040.CodecEncodeSelf(e) + if yyq4085[2] { + yy4093 := &x.ObjectMeta + yy4093.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4032[2] { + if yyq4085[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4041 := &x.ObjectMeta - yy4041.CodecEncodeSelf(e) + yy4094 := &x.ObjectMeta + yy4094.CodecEncodeSelf(e) } } - if yyr4032 || yy2arr4032 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4032[3] { - yy4043 := &x.Spec - yy4043.CodecEncodeSelf(e) + if yyq4085[3] { + yy4096 := &x.Spec + yy4096.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4032[3] { + if yyq4085[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4044 := &x.Spec - yy4044.CodecEncodeSelf(e) + yy4097 := &x.Spec + yy4097.CodecEncodeSelf(e) } } - if yyr4032 || yy2arr4032 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4032[4] { - yy4046 := &x.Status - yy4046.CodecEncodeSelf(e) + if yyq4085[4] { + yy4099 := &x.Status + yy4099.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4032[4] { + if yyq4085[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4047 := &x.Status - yy4047.CodecEncodeSelf(e) + yy4100 := &x.Status + yy4100.CodecEncodeSelf(e) } } - if yyr4032 || yy2arr4032 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50699,25 +51406,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4048 := z.DecBinary() - _ = yym4048 + yym4101 := z.DecBinary() + _ = yym4101 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4049 := r.ContainerType() - if yyct4049 == codecSelferValueTypeMap1234 { - yyl4049 := r.ReadMapStart() - if yyl4049 == 0 { + yyct4102 := r.ContainerType() + if yyct4102 == codecSelferValueTypeMap1234 { + yyl4102 := r.ReadMapStart() + if yyl4102 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4049, d) + x.codecDecodeSelfFromMap(yyl4102, d) } - } else if yyct4049 == codecSelferValueTypeArray1234 { - yyl4049 := r.ReadArrayStart() - if yyl4049 == 0 { + } else if yyct4102 == codecSelferValueTypeArray1234 { + yyl4102 := r.ReadArrayStart() + if yyl4102 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4049, d) + x.codecDecodeSelfFromArray(yyl4102, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50729,12 +51436,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4050Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4050Slc - var yyhl4050 bool = l >= 0 - for yyj4050 := 0; ; yyj4050++ { - if yyhl4050 { - if yyj4050 >= l { + var yys4103Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4103Slc + var yyhl4103 bool = l >= 0 + for yyj4103 := 0; ; yyj4103++ { + if yyhl4103 { + if yyj4103 >= l { break } } else { @@ -50743,10 +51450,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4050Slc = r.DecodeBytes(yys4050Slc, true, true) - yys4050 := string(yys4050Slc) + yys4103Slc = r.DecodeBytes(yys4103Slc, true, true) + yys4103 := string(yys4103Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4050 { + switch yys4103 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50763,27 +51470,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4053 := &x.ObjectMeta - yyv4053.CodecDecodeSelf(d) + yyv4106 := &x.ObjectMeta + yyv4106.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4054 := &x.Spec - yyv4054.CodecDecodeSelf(d) + yyv4107 := &x.Spec + yyv4107.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4055 := &x.Status - yyv4055.CodecDecodeSelf(d) + yyv4108 := &x.Status + yyv4108.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4050) - } // end switch yys4050 - } // end for yyj4050 + z.DecStructFieldNotFound(-1, yys4103) + } // end switch yys4103 + } // end for yyj4103 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50791,16 +51498,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4056 int - var yyb4056 bool - var yyhl4056 bool = l >= 0 - yyj4056++ - if yyhl4056 { - yyb4056 = yyj4056 > l + var yyj4109 int + var yyb4109 bool + var yyhl4109 bool = l >= 0 + yyj4109++ + if yyhl4109 { + yyb4109 = yyj4109 > l } else { - yyb4056 = r.CheckBreak() + yyb4109 = r.CheckBreak() } - if yyb4056 { + if yyb4109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50810,13 +51517,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4056++ - if yyhl4056 { - yyb4056 = yyj4056 > l + yyj4109++ + if yyhl4109 { + yyb4109 = yyj4109 > l } else { - yyb4056 = r.CheckBreak() + yyb4109 = r.CheckBreak() } - if yyb4056 { + if yyb4109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50826,13 +51533,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4056++ - if yyhl4056 { - yyb4056 = yyj4056 > l + yyj4109++ + if yyhl4109 { + yyb4109 = yyj4109 > l } else { - yyb4056 = r.CheckBreak() + yyb4109 = r.CheckBreak() } - if yyb4056 { + if yyb4109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50840,16 +51547,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4059 := &x.ObjectMeta - yyv4059.CodecDecodeSelf(d) + yyv4112 := &x.ObjectMeta + yyv4112.CodecDecodeSelf(d) } - yyj4056++ - if yyhl4056 { - yyb4056 = yyj4056 > l + yyj4109++ + if yyhl4109 { + yyb4109 = yyj4109 > l } else { - yyb4056 = r.CheckBreak() + yyb4109 = r.CheckBreak() } - if yyb4056 { + if yyb4109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50857,16 +51564,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4060 := &x.Spec - yyv4060.CodecDecodeSelf(d) + yyv4113 := &x.Spec + yyv4113.CodecDecodeSelf(d) } - yyj4056++ - if yyhl4056 { - yyb4056 = yyj4056 > l + yyj4109++ + if yyhl4109 { + yyb4109 = yyj4109 > l } else { - yyb4056 = r.CheckBreak() + yyb4109 = r.CheckBreak() } - if yyb4056 { + if yyb4109 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50874,21 +51581,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4061 := &x.Status - yyv4061.CodecDecodeSelf(d) + yyv4114 := &x.Status + yyv4114.CodecDecodeSelf(d) } for { - yyj4056++ - if yyhl4056 { - yyb4056 = yyj4056 > l + yyj4109++ + if yyhl4109 { + yyb4109 = yyj4109 > l } else { - yyb4056 = r.CheckBreak() + yyb4109 = r.CheckBreak() } - if yyb4056 { + if yyb4109 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4056-1, "") + z.DecStructFieldNotFound(yyj4109-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50900,37 +51607,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4062 := z.EncBinary() - _ = yym4062 + yym4115 := z.EncBinary() + _ = yym4115 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4063 := !z.EncBinary() - yy2arr4063 := z.EncBasicHandle().StructToArray - var yyq4063 [4]bool - _, _, _ = yysep4063, yyq4063, yy2arr4063 - const yyr4063 bool = false - yyq4063[0] = x.Kind != "" - yyq4063[1] = x.APIVersion != "" - yyq4063[2] = true - var yynn4063 int - if yyr4063 || yy2arr4063 { + yysep4116 := !z.EncBinary() + yy2arr4116 := z.EncBasicHandle().StructToArray + var yyq4116 [4]bool + _, _, _ = yysep4116, yyq4116, yy2arr4116 + const yyr4116 bool = false + yyq4116[0] = x.Kind != "" + yyq4116[1] = x.APIVersion != "" + yyq4116[2] = true + var yynn4116 int + if yyr4116 || yy2arr4116 { r.EncodeArrayStart(4) } else { - yynn4063 = 1 - for _, b := range yyq4063 { + yynn4116 = 1 + for _, b := range yyq4116 { if b { - yynn4063++ + yynn4116++ } } - r.EncodeMapStart(yynn4063) - yynn4063 = 0 + r.EncodeMapStart(yynn4116) + yynn4116 = 0 } - if yyr4063 || yy2arr4063 { + if yyr4116 || yy2arr4116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4063[0] { - yym4065 := z.EncBinary() - _ = yym4065 + if yyq4116[0] { + yym4118 := z.EncBinary() + _ = yym4118 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50939,23 +51646,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4063[0] { + if yyq4116[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4066 := z.EncBinary() - _ = yym4066 + yym4119 := z.EncBinary() + _ = yym4119 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4063 || yy2arr4063 { + if yyr4116 || yy2arr4116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4063[1] { - yym4068 := z.EncBinary() - _ = yym4068 + if yyq4116[1] { + yym4121 := z.EncBinary() + _ = yym4121 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50964,54 +51671,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4063[1] { + if yyq4116[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4069 := z.EncBinary() - _ = yym4069 + yym4122 := z.EncBinary() + _ = yym4122 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4063 || yy2arr4063 { + if yyr4116 || yy2arr4116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4063[2] { - yy4071 := &x.ListMeta - yym4072 := z.EncBinary() - _ = yym4072 + if yyq4116[2] { + yy4124 := &x.ListMeta + yym4125 := z.EncBinary() + _ = yym4125 if false { - } else if z.HasExtensions() && z.EncExt(yy4071) { + } else if z.HasExtensions() && z.EncExt(yy4124) { } else { - z.EncFallback(yy4071) + z.EncFallback(yy4124) } } else { r.EncodeNil() } } else { - if yyq4063[2] { + if yyq4116[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4073 := &x.ListMeta - yym4074 := z.EncBinary() - _ = yym4074 + yy4126 := &x.ListMeta + yym4127 := z.EncBinary() + _ = yym4127 if false { - } else if z.HasExtensions() && z.EncExt(yy4073) { + } else if z.HasExtensions() && z.EncExt(yy4126) { } else { - z.EncFallback(yy4073) + z.EncFallback(yy4126) } } } - if yyr4063 || yy2arr4063 { + if yyr4116 || yy2arr4116 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4076 := z.EncBinary() - _ = yym4076 + yym4129 := z.EncBinary() + _ = yym4129 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -51024,15 +51731,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4077 := z.EncBinary() - _ = yym4077 + yym4130 := z.EncBinary() + _ = yym4130 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4063 || yy2arr4063 { + if yyr4116 || yy2arr4116 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51045,25 +51752,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4078 := z.DecBinary() - _ = yym4078 + yym4131 := z.DecBinary() + _ = yym4131 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4079 := r.ContainerType() - if yyct4079 == codecSelferValueTypeMap1234 { - yyl4079 := r.ReadMapStart() - if yyl4079 == 0 { + yyct4132 := r.ContainerType() + if yyct4132 == codecSelferValueTypeMap1234 { + yyl4132 := r.ReadMapStart() + if yyl4132 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4079, d) + x.codecDecodeSelfFromMap(yyl4132, d) } - } else if yyct4079 == codecSelferValueTypeArray1234 { - yyl4079 := r.ReadArrayStart() - if yyl4079 == 0 { + } else if yyct4132 == codecSelferValueTypeArray1234 { + yyl4132 := r.ReadArrayStart() + if yyl4132 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4079, d) + x.codecDecodeSelfFromArray(yyl4132, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51075,12 +51782,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4080Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4080Slc - var yyhl4080 bool = l >= 0 - for yyj4080 := 0; ; yyj4080++ { - if yyhl4080 { - if yyj4080 >= l { + var yys4133Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4133Slc + var yyhl4133 bool = l >= 0 + for yyj4133 := 0; ; yyj4133++ { + if yyhl4133 { + if yyj4133 >= l { break } } else { @@ -51089,10 +51796,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4080Slc = r.DecodeBytes(yys4080Slc, true, true) - yys4080 := string(yys4080Slc) + yys4133Slc = r.DecodeBytes(yys4133Slc, true, true) + yys4133 := string(yys4133Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4080 { + switch yys4133 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51109,31 +51816,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4083 := &x.ListMeta - yym4084 := z.DecBinary() - _ = yym4084 + yyv4136 := &x.ListMeta + yym4137 := z.DecBinary() + _ = yym4137 if false { - } else if z.HasExtensions() && z.DecExt(yyv4083) { + } else if z.HasExtensions() && z.DecExt(yyv4136) { } else { - z.DecFallback(yyv4083, false) + z.DecFallback(yyv4136, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4085 := &x.Items - yym4086 := z.DecBinary() - _ = yym4086 + yyv4138 := &x.Items + yym4139 := z.DecBinary() + _ = yym4139 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4085), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4138), d) } } default: - z.DecStructFieldNotFound(-1, yys4080) - } // end switch yys4080 - } // end for yyj4080 + z.DecStructFieldNotFound(-1, yys4133) + } // end switch yys4133 + } // end for yyj4133 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51141,16 +51848,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4087 int - var yyb4087 bool - var yyhl4087 bool = l >= 0 - yyj4087++ - if yyhl4087 { - yyb4087 = yyj4087 > l + var yyj4140 int + var yyb4140 bool + var yyhl4140 bool = l >= 0 + yyj4140++ + if yyhl4140 { + yyb4140 = yyj4140 > l } else { - yyb4087 = r.CheckBreak() + yyb4140 = r.CheckBreak() } - if yyb4087 { + if yyb4140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51160,13 +51867,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4087++ - if yyhl4087 { - yyb4087 = yyj4087 > l + yyj4140++ + if yyhl4140 { + yyb4140 = yyj4140 > l } else { - yyb4087 = r.CheckBreak() + yyb4140 = r.CheckBreak() } - if yyb4087 { + if yyb4140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51176,13 +51883,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4087++ - if yyhl4087 { - yyb4087 = yyj4087 > l + yyj4140++ + if yyhl4140 { + yyb4140 = yyj4140 > l } else { - yyb4087 = r.CheckBreak() + yyb4140 = r.CheckBreak() } - if yyb4087 { + if yyb4140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51190,22 +51897,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4090 := &x.ListMeta - yym4091 := z.DecBinary() - _ = yym4091 + yyv4143 := &x.ListMeta + yym4144 := z.DecBinary() + _ = yym4144 if false { - } else if z.HasExtensions() && z.DecExt(yyv4090) { + } else if z.HasExtensions() && z.DecExt(yyv4143) { } else { - z.DecFallback(yyv4090, false) + z.DecFallback(yyv4143, false) } } - yyj4087++ - if yyhl4087 { - yyb4087 = yyj4087 > l + yyj4140++ + if yyhl4140 { + yyb4140 = yyj4140 > l } else { - yyb4087 = r.CheckBreak() + yyb4140 = r.CheckBreak() } - if yyb4087 { + if yyb4140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51213,26 +51920,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4092 := &x.Items - yym4093 := z.DecBinary() - _ = yym4093 + yyv4145 := &x.Items + yym4146 := z.DecBinary() + _ = yym4146 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4092), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4145), d) } } for { - yyj4087++ - if yyhl4087 { - yyb4087 = yyj4087 > l + yyj4140++ + if yyhl4140 { + yyb4140 = yyj4140 > l } else { - yyb4087 = r.CheckBreak() + yyb4140 = r.CheckBreak() } - if yyb4087 { + if yyb4140 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4087-1, "") + z.DecStructFieldNotFound(yyj4140-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51244,40 +51951,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4094 := z.EncBinary() - _ = yym4094 + yym4147 := z.EncBinary() + _ = yym4147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4095 := !z.EncBinary() - yy2arr4095 := z.EncBasicHandle().StructToArray - var yyq4095 [6]bool - _, _, _ = yysep4095, yyq4095, yy2arr4095 - const yyr4095 bool = false - yyq4095[0] = x.Kind != "" - yyq4095[1] = x.APIVersion != "" - yyq4095[2] = true - yyq4095[3] = len(x.Data) != 0 - yyq4095[4] = len(x.StringData) != 0 - yyq4095[5] = x.Type != "" - var yynn4095 int - if yyr4095 || yy2arr4095 { + yysep4148 := !z.EncBinary() + yy2arr4148 := z.EncBasicHandle().StructToArray + var yyq4148 [6]bool + _, _, _ = yysep4148, yyq4148, yy2arr4148 + const yyr4148 bool = false + yyq4148[0] = x.Kind != "" + yyq4148[1] = x.APIVersion != "" + yyq4148[2] = true + yyq4148[3] = len(x.Data) != 0 + yyq4148[4] = len(x.StringData) != 0 + yyq4148[5] = x.Type != "" + var yynn4148 int + if yyr4148 || yy2arr4148 { r.EncodeArrayStart(6) } else { - yynn4095 = 0 - for _, b := range yyq4095 { + yynn4148 = 0 + for _, b := range yyq4148 { if b { - yynn4095++ + yynn4148++ } } - r.EncodeMapStart(yynn4095) - yynn4095 = 0 + r.EncodeMapStart(yynn4148) + yynn4148 = 0 } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4095[0] { - yym4097 := z.EncBinary() - _ = yym4097 + if yyq4148[0] { + yym4150 := z.EncBinary() + _ = yym4150 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51286,23 +51993,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4095[0] { + if yyq4148[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4098 := z.EncBinary() - _ = yym4098 + yym4151 := z.EncBinary() + _ = yym4151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4095[1] { - yym4100 := z.EncBinary() - _ = yym4100 + if yyq4148[1] { + yym4153 := z.EncBinary() + _ = yym4153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51311,43 +52018,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4095[1] { + if yyq4148[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4101 := z.EncBinary() - _ = yym4101 + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4095[2] { - yy4103 := &x.ObjectMeta - yy4103.CodecEncodeSelf(e) + if yyq4148[2] { + yy4156 := &x.ObjectMeta + yy4156.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4095[2] { + if yyq4148[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4104 := &x.ObjectMeta - yy4104.CodecEncodeSelf(e) + yy4157 := &x.ObjectMeta + yy4157.CodecEncodeSelf(e) } } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4095[3] { + if yyq4148[3] { if x.Data == nil { r.EncodeNil() } else { - yym4106 := z.EncBinary() - _ = yym4106 + yym4159 := z.EncBinary() + _ = yym4159 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51357,15 +52064,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4095[3] { + if yyq4148[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4107 := z.EncBinary() - _ = yym4107 + yym4160 := z.EncBinary() + _ = yym4160 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -51373,14 +52080,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4095[4] { + if yyq4148[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4109 := z.EncBinary() - _ = yym4109 + yym4162 := z.EncBinary() + _ = yym4162 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -51390,15 +52097,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4095[4] { + if yyq4148[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4110 := z.EncBinary() - _ = yym4110 + yym4163 := z.EncBinary() + _ = yym4163 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -51406,22 +52113,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4095[5] { + if yyq4148[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4095[5] { + if yyq4148[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4095 || yy2arr4095 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51434,25 +52141,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4112 := z.DecBinary() - _ = yym4112 + yym4165 := z.DecBinary() + _ = yym4165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4113 := r.ContainerType() - if yyct4113 == codecSelferValueTypeMap1234 { - yyl4113 := r.ReadMapStart() - if yyl4113 == 0 { + yyct4166 := r.ContainerType() + if yyct4166 == codecSelferValueTypeMap1234 { + yyl4166 := r.ReadMapStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4113, d) + x.codecDecodeSelfFromMap(yyl4166, d) } - } else if yyct4113 == codecSelferValueTypeArray1234 { - yyl4113 := r.ReadArrayStart() - if yyl4113 == 0 { + } else if yyct4166 == codecSelferValueTypeArray1234 { + yyl4166 := r.ReadArrayStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4113, d) + x.codecDecodeSelfFromArray(yyl4166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51464,12 +52171,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4114Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4114Slc - var yyhl4114 bool = l >= 0 - for yyj4114 := 0; ; yyj4114++ { - if yyhl4114 { - if yyj4114 >= 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 { @@ -51478,10 +52185,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4114Slc = r.DecodeBytes(yys4114Slc, true, true) - yys4114 := string(yys4114Slc) + yys4167Slc = r.DecodeBytes(yys4167Slc, true, true) + yys4167 := string(yys4167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4114 { + switch yys4167 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51498,31 +52205,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4117 := &x.ObjectMeta - yyv4117.CodecDecodeSelf(d) + yyv4170 := &x.ObjectMeta + yyv4170.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4118 := &x.Data - yym4119 := z.DecBinary() - _ = yym4119 + yyv4171 := &x.Data + yym4172 := z.DecBinary() + _ = yym4172 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4118), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4171), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4120 := &x.StringData - yym4121 := z.DecBinary() - _ = yym4121 + yyv4173 := &x.StringData + yym4174 := z.DecBinary() + _ = yym4174 if false { } else { - z.F.DecMapStringStringX(yyv4120, false, d) + z.F.DecMapStringStringX(yyv4173, false, d) } } case "type": @@ -51532,9 +52239,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4114) - } // end switch yys4114 - } // end for yyj4114 + z.DecStructFieldNotFound(-1, yys4167) + } // end switch yys4167 + } // end for yyj4167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51542,16 +52249,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4123 int - var yyb4123 bool - var yyhl4123 bool = l >= 0 - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + var yyj4176 int + var yyb4176 bool + var yyhl4176 bool = l >= 0 + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51561,13 +52268,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51577,13 +52284,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51591,16 +52298,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4126 := &x.ObjectMeta - yyv4126.CodecDecodeSelf(d) + yyv4179 := &x.ObjectMeta + yyv4179.CodecDecodeSelf(d) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51608,21 +52315,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4127 := &x.Data - yym4128 := z.DecBinary() - _ = yym4128 + yyv4180 := &x.Data + yym4181 := z.DecBinary() + _ = yym4181 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4127), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4180), d) } } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51630,21 +52337,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4129 := &x.StringData - yym4130 := z.DecBinary() - _ = yym4130 + yyv4182 := &x.StringData + yym4183 := z.DecBinary() + _ = yym4183 if false { } else { - z.F.DecMapStringStringX(yyv4129, false, d) + z.F.DecMapStringStringX(yyv4182, false, d) } } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51655,17 +52362,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4176++ + if yyhl4176 { + yyb4176 = yyj4176 > l } else { - yyb4123 = r.CheckBreak() + yyb4176 = r.CheckBreak() } - if yyb4123 { + if yyb4176 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4123-1, "") + z.DecStructFieldNotFound(yyj4176-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51674,8 +52381,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4132 := z.EncBinary() - _ = yym4132 + yym4185 := z.EncBinary() + _ = yym4185 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51687,8 +52394,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4133 := z.DecBinary() - _ = yym4133 + yym4186 := z.DecBinary() + _ = yym4186 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51703,37 +52410,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4134 := z.EncBinary() - _ = yym4134 + yym4187 := z.EncBinary() + _ = yym4187 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4135 := !z.EncBinary() - yy2arr4135 := z.EncBasicHandle().StructToArray - var yyq4135 [4]bool - _, _, _ = yysep4135, yyq4135, yy2arr4135 - const yyr4135 bool = false - yyq4135[0] = x.Kind != "" - yyq4135[1] = x.APIVersion != "" - yyq4135[2] = true - var yynn4135 int - if yyr4135 || yy2arr4135 { + yysep4188 := !z.EncBinary() + yy2arr4188 := z.EncBasicHandle().StructToArray + var yyq4188 [4]bool + _, _, _ = yysep4188, yyq4188, yy2arr4188 + const yyr4188 bool = false + yyq4188[0] = x.Kind != "" + yyq4188[1] = x.APIVersion != "" + yyq4188[2] = true + var yynn4188 int + if yyr4188 || yy2arr4188 { r.EncodeArrayStart(4) } else { - yynn4135 = 1 - for _, b := range yyq4135 { + yynn4188 = 1 + for _, b := range yyq4188 { if b { - yynn4135++ + yynn4188++ } } - r.EncodeMapStart(yynn4135) - yynn4135 = 0 + r.EncodeMapStart(yynn4188) + yynn4188 = 0 } - if yyr4135 || yy2arr4135 { + if yyr4188 || yy2arr4188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4135[0] { - yym4137 := z.EncBinary() - _ = yym4137 + if yyq4188[0] { + yym4190 := z.EncBinary() + _ = yym4190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51742,23 +52449,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4135[0] { + if yyq4188[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4138 := z.EncBinary() - _ = yym4138 + yym4191 := z.EncBinary() + _ = yym4191 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4135 || yy2arr4135 { + if yyr4188 || yy2arr4188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4135[1] { - yym4140 := z.EncBinary() - _ = yym4140 + if yyq4188[1] { + yym4193 := z.EncBinary() + _ = yym4193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51767,54 +52474,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4135[1] { + if yyq4188[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4141 := z.EncBinary() - _ = yym4141 + yym4194 := z.EncBinary() + _ = yym4194 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4135 || yy2arr4135 { + if yyr4188 || yy2arr4188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4135[2] { - yy4143 := &x.ListMeta - yym4144 := z.EncBinary() - _ = yym4144 + if yyq4188[2] { + yy4196 := &x.ListMeta + yym4197 := z.EncBinary() + _ = yym4197 if false { - } else if z.HasExtensions() && z.EncExt(yy4143) { + } else if z.HasExtensions() && z.EncExt(yy4196) { } else { - z.EncFallback(yy4143) + z.EncFallback(yy4196) } } else { r.EncodeNil() } } else { - if yyq4135[2] { + if yyq4188[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4145 := &x.ListMeta - yym4146 := z.EncBinary() - _ = yym4146 + yy4198 := &x.ListMeta + yym4199 := z.EncBinary() + _ = yym4199 if false { - } else if z.HasExtensions() && z.EncExt(yy4145) { + } else if z.HasExtensions() && z.EncExt(yy4198) { } else { - z.EncFallback(yy4145) + z.EncFallback(yy4198) } } } - if yyr4135 || yy2arr4135 { + if yyr4188 || yy2arr4188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4148 := z.EncBinary() - _ = yym4148 + yym4201 := z.EncBinary() + _ = yym4201 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -51827,15 +52534,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4149 := z.EncBinary() - _ = yym4149 + yym4202 := z.EncBinary() + _ = yym4202 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4135 || yy2arr4135 { + if yyr4188 || yy2arr4188 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51848,25 +52555,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4150 := z.DecBinary() - _ = yym4150 + yym4203 := z.DecBinary() + _ = yym4203 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4151 := r.ContainerType() - if yyct4151 == codecSelferValueTypeMap1234 { - yyl4151 := r.ReadMapStart() - if yyl4151 == 0 { + yyct4204 := r.ContainerType() + if yyct4204 == codecSelferValueTypeMap1234 { + yyl4204 := r.ReadMapStart() + if yyl4204 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4151, d) + x.codecDecodeSelfFromMap(yyl4204, d) } - } else if yyct4151 == codecSelferValueTypeArray1234 { - yyl4151 := r.ReadArrayStart() - if yyl4151 == 0 { + } else if yyct4204 == codecSelferValueTypeArray1234 { + yyl4204 := r.ReadArrayStart() + if yyl4204 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4151, d) + x.codecDecodeSelfFromArray(yyl4204, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51878,12 +52585,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4152Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4152Slc - var yyhl4152 bool = l >= 0 - for yyj4152 := 0; ; yyj4152++ { - if yyhl4152 { - if yyj4152 >= 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 { @@ -51892,10 +52599,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4152Slc = r.DecodeBytes(yys4152Slc, true, true) - yys4152 := string(yys4152Slc) + yys4205Slc = r.DecodeBytes(yys4205Slc, true, true) + yys4205 := string(yys4205Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4152 { + switch yys4205 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51912,31 +52619,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4155 := &x.ListMeta - yym4156 := z.DecBinary() - _ = yym4156 + yyv4208 := &x.ListMeta + yym4209 := z.DecBinary() + _ = yym4209 if false { - } else if z.HasExtensions() && z.DecExt(yyv4155) { + } else if z.HasExtensions() && z.DecExt(yyv4208) { } else { - z.DecFallback(yyv4155, false) + z.DecFallback(yyv4208, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4157 := &x.Items - yym4158 := z.DecBinary() - _ = yym4158 + yyv4210 := &x.Items + yym4211 := z.DecBinary() + _ = yym4211 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4157), d) + h.decSliceSecret((*[]Secret)(yyv4210), d) } } default: - z.DecStructFieldNotFound(-1, yys4152) - } // end switch yys4152 - } // end for yyj4152 + z.DecStructFieldNotFound(-1, yys4205) + } // end switch yys4205 + } // end for yyj4205 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51944,16 +52651,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4159 int - var yyb4159 bool - var yyhl4159 bool = l >= 0 - yyj4159++ - if yyhl4159 { - yyb4159 = yyj4159 > l + var yyj4212 int + var yyb4212 bool + var yyhl4212 bool = l >= 0 + yyj4212++ + if yyhl4212 { + yyb4212 = yyj4212 > l } else { - yyb4159 = r.CheckBreak() + yyb4212 = r.CheckBreak() } - if yyb4159 { + if yyb4212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51963,13 +52670,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4159++ - if yyhl4159 { - yyb4159 = yyj4159 > l + yyj4212++ + if yyhl4212 { + yyb4212 = yyj4212 > l } else { - yyb4159 = r.CheckBreak() + yyb4212 = r.CheckBreak() } - if yyb4159 { + if yyb4212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51979,13 +52686,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4159++ - if yyhl4159 { - yyb4159 = yyj4159 > l + yyj4212++ + if yyhl4212 { + yyb4212 = yyj4212 > l } else { - yyb4159 = r.CheckBreak() + yyb4212 = r.CheckBreak() } - if yyb4159 { + if yyb4212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51993,22 +52700,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4162 := &x.ListMeta - yym4163 := z.DecBinary() - _ = yym4163 + yyv4215 := &x.ListMeta + yym4216 := z.DecBinary() + _ = yym4216 if false { - } else if z.HasExtensions() && z.DecExt(yyv4162) { + } else if z.HasExtensions() && z.DecExt(yyv4215) { } else { - z.DecFallback(yyv4162, false) + z.DecFallback(yyv4215, false) } } - yyj4159++ - if yyhl4159 { - yyb4159 = yyj4159 > l + yyj4212++ + if yyhl4212 { + yyb4212 = yyj4212 > l } else { - yyb4159 = r.CheckBreak() + yyb4212 = r.CheckBreak() } - if yyb4159 { + if yyb4212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52016,26 +52723,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4164 := &x.Items - yym4165 := z.DecBinary() - _ = yym4165 + yyv4217 := &x.Items + yym4218 := z.DecBinary() + _ = yym4218 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4164), d) + h.decSliceSecret((*[]Secret)(yyv4217), d) } } for { - yyj4159++ - if yyhl4159 { - yyb4159 = yyj4159 > l + yyj4212++ + if yyhl4212 { + yyb4212 = yyj4212 > l } else { - yyb4159 = r.CheckBreak() + yyb4212 = r.CheckBreak() } - if yyb4159 { + if yyb4212 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4159-1, "") + z.DecStructFieldNotFound(yyj4212-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52047,38 +52754,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4166 := z.EncBinary() - _ = yym4166 + yym4219 := z.EncBinary() + _ = yym4219 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4167 := !z.EncBinary() - yy2arr4167 := z.EncBasicHandle().StructToArray - var yyq4167 [4]bool - _, _, _ = yysep4167, yyq4167, yy2arr4167 - const yyr4167 bool = false - yyq4167[0] = x.Kind != "" - yyq4167[1] = x.APIVersion != "" - yyq4167[2] = true - yyq4167[3] = len(x.Data) != 0 - var yynn4167 int - if yyr4167 || yy2arr4167 { + yysep4220 := !z.EncBinary() + yy2arr4220 := z.EncBasicHandle().StructToArray + var yyq4220 [4]bool + _, _, _ = yysep4220, yyq4220, yy2arr4220 + const yyr4220 bool = false + yyq4220[0] = x.Kind != "" + yyq4220[1] = x.APIVersion != "" + yyq4220[2] = true + yyq4220[3] = len(x.Data) != 0 + var yynn4220 int + if yyr4220 || yy2arr4220 { r.EncodeArrayStart(4) } else { - yynn4167 = 0 - for _, b := range yyq4167 { + yynn4220 = 0 + for _, b := range yyq4220 { if b { - yynn4167++ + yynn4220++ } } - r.EncodeMapStart(yynn4167) - yynn4167 = 0 + r.EncodeMapStart(yynn4220) + yynn4220 = 0 } - if yyr4167 || yy2arr4167 { + if yyr4220 || yy2arr4220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[0] { - yym4169 := z.EncBinary() - _ = yym4169 + if yyq4220[0] { + yym4222 := z.EncBinary() + _ = yym4222 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52087,23 +52794,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4167[0] { + if yyq4220[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4170 := z.EncBinary() - _ = yym4170 + yym4223 := z.EncBinary() + _ = yym4223 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4167 || yy2arr4167 { + if yyr4220 || yy2arr4220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[1] { - yym4172 := z.EncBinary() - _ = yym4172 + if yyq4220[1] { + yym4225 := z.EncBinary() + _ = yym4225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52112,43 +52819,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4167[1] { + if yyq4220[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4173 := z.EncBinary() - _ = yym4173 + yym4226 := z.EncBinary() + _ = yym4226 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4167 || yy2arr4167 { + if yyr4220 || yy2arr4220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[2] { - yy4175 := &x.ObjectMeta - yy4175.CodecEncodeSelf(e) + if yyq4220[2] { + yy4228 := &x.ObjectMeta + yy4228.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4167[2] { + if yyq4220[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4176 := &x.ObjectMeta - yy4176.CodecEncodeSelf(e) + yy4229 := &x.ObjectMeta + yy4229.CodecEncodeSelf(e) } } - if yyr4167 || yy2arr4167 { + if yyr4220 || yy2arr4220 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[3] { + if yyq4220[3] { if x.Data == nil { r.EncodeNil() } else { - yym4178 := z.EncBinary() - _ = yym4178 + yym4231 := z.EncBinary() + _ = yym4231 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52158,15 +52865,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4167[3] { + if yyq4220[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4179 := z.EncBinary() - _ = yym4179 + yym4232 := z.EncBinary() + _ = yym4232 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -52174,7 +52881,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4167 || yy2arr4167 { + if yyr4220 || yy2arr4220 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52187,25 +52894,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4180 := z.DecBinary() - _ = yym4180 + yym4233 := z.DecBinary() + _ = yym4233 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4181 := r.ContainerType() - if yyct4181 == codecSelferValueTypeMap1234 { - yyl4181 := r.ReadMapStart() - if yyl4181 == 0 { + yyct4234 := r.ContainerType() + if yyct4234 == codecSelferValueTypeMap1234 { + yyl4234 := r.ReadMapStart() + if yyl4234 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4181, d) + x.codecDecodeSelfFromMap(yyl4234, d) } - } else if yyct4181 == codecSelferValueTypeArray1234 { - yyl4181 := r.ReadArrayStart() - if yyl4181 == 0 { + } else if yyct4234 == codecSelferValueTypeArray1234 { + yyl4234 := r.ReadArrayStart() + if yyl4234 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4181, d) + x.codecDecodeSelfFromArray(yyl4234, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52217,12 +52924,12 @@ func (x *ConfigMap) 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 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 { @@ -52231,10 +52938,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4182Slc = r.DecodeBytes(yys4182Slc, true, true) - yys4182 := string(yys4182Slc) + yys4235Slc = r.DecodeBytes(yys4235Slc, true, true) + yys4235 := string(yys4235Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4182 { + switch yys4235 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52251,25 +52958,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4185 := &x.ObjectMeta - yyv4185.CodecDecodeSelf(d) + yyv4238 := &x.ObjectMeta + yyv4238.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4186 := &x.Data - yym4187 := z.DecBinary() - _ = yym4187 + yyv4239 := &x.Data + yym4240 := z.DecBinary() + _ = yym4240 if false { } else { - z.F.DecMapStringStringX(yyv4186, false, d) + z.F.DecMapStringStringX(yyv4239, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4182) - } // end switch yys4182 - } // end for yyj4182 + z.DecStructFieldNotFound(-1, yys4235) + } // end switch yys4235 + } // end for yyj4235 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52277,16 +52984,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4188 int - var yyb4188 bool - var yyhl4188 bool = l >= 0 - yyj4188++ - if yyhl4188 { - yyb4188 = yyj4188 > l + var yyj4241 int + var yyb4241 bool + var yyhl4241 bool = l >= 0 + yyj4241++ + if yyhl4241 { + yyb4241 = yyj4241 > l } else { - yyb4188 = r.CheckBreak() + yyb4241 = r.CheckBreak() } - if yyb4188 { + if yyb4241 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52296,13 +53003,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4188++ - if yyhl4188 { - yyb4188 = yyj4188 > l + yyj4241++ + if yyhl4241 { + yyb4241 = yyj4241 > l } else { - yyb4188 = r.CheckBreak() + yyb4241 = r.CheckBreak() } - if yyb4188 { + if yyb4241 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52312,13 +53019,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4188++ - if yyhl4188 { - yyb4188 = yyj4188 > l + yyj4241++ + if yyhl4241 { + yyb4241 = yyj4241 > l } else { - yyb4188 = r.CheckBreak() + yyb4241 = r.CheckBreak() } - if yyb4188 { + if yyb4241 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52326,16 +53033,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4191 := &x.ObjectMeta - yyv4191.CodecDecodeSelf(d) + yyv4244 := &x.ObjectMeta + yyv4244.CodecDecodeSelf(d) } - yyj4188++ - if yyhl4188 { - yyb4188 = yyj4188 > l + yyj4241++ + if yyhl4241 { + yyb4241 = yyj4241 > l } else { - yyb4188 = r.CheckBreak() + yyb4241 = r.CheckBreak() } - if yyb4188 { + if yyb4241 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52343,26 +53050,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4192 := &x.Data - yym4193 := z.DecBinary() - _ = yym4193 + yyv4245 := &x.Data + yym4246 := z.DecBinary() + _ = yym4246 if false { } else { - z.F.DecMapStringStringX(yyv4192, false, d) + z.F.DecMapStringStringX(yyv4245, false, d) } } for { - yyj4188++ - if yyhl4188 { - yyb4188 = yyj4188 > l + yyj4241++ + if yyhl4241 { + yyb4241 = yyj4241 > l } else { - yyb4188 = r.CheckBreak() + yyb4241 = r.CheckBreak() } - if yyb4188 { + if yyb4241 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4188-1, "") + z.DecStructFieldNotFound(yyj4241-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52374,37 +53081,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4194 := z.EncBinary() - _ = yym4194 + yym4247 := z.EncBinary() + _ = yym4247 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4195 := !z.EncBinary() - yy2arr4195 := z.EncBasicHandle().StructToArray - var yyq4195 [4]bool - _, _, _ = yysep4195, yyq4195, yy2arr4195 - const yyr4195 bool = false - yyq4195[0] = x.Kind != "" - yyq4195[1] = x.APIVersion != "" - yyq4195[2] = true - var yynn4195 int - if yyr4195 || yy2arr4195 { + yysep4248 := !z.EncBinary() + yy2arr4248 := z.EncBasicHandle().StructToArray + var yyq4248 [4]bool + _, _, _ = yysep4248, yyq4248, yy2arr4248 + const yyr4248 bool = false + yyq4248[0] = x.Kind != "" + yyq4248[1] = x.APIVersion != "" + yyq4248[2] = true + var yynn4248 int + if yyr4248 || yy2arr4248 { r.EncodeArrayStart(4) } else { - yynn4195 = 1 - for _, b := range yyq4195 { + yynn4248 = 1 + for _, b := range yyq4248 { if b { - yynn4195++ + yynn4248++ } } - r.EncodeMapStart(yynn4195) - yynn4195 = 0 + r.EncodeMapStart(yynn4248) + yynn4248 = 0 } - if yyr4195 || yy2arr4195 { + if yyr4248 || yy2arr4248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4195[0] { - yym4197 := z.EncBinary() - _ = yym4197 + if yyq4248[0] { + yym4250 := z.EncBinary() + _ = yym4250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52413,23 +53120,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4195[0] { + if yyq4248[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4198 := z.EncBinary() - _ = yym4198 + yym4251 := z.EncBinary() + _ = yym4251 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4195 || yy2arr4195 { + if yyr4248 || yy2arr4248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4195[1] { - yym4200 := z.EncBinary() - _ = yym4200 + if yyq4248[1] { + yym4253 := z.EncBinary() + _ = yym4253 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52438,54 +53145,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4195[1] { + if yyq4248[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4201 := z.EncBinary() - _ = yym4201 + yym4254 := z.EncBinary() + _ = yym4254 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4195 || yy2arr4195 { + if yyr4248 || yy2arr4248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4195[2] { - yy4203 := &x.ListMeta - yym4204 := z.EncBinary() - _ = yym4204 + if yyq4248[2] { + yy4256 := &x.ListMeta + yym4257 := z.EncBinary() + _ = yym4257 if false { - } else if z.HasExtensions() && z.EncExt(yy4203) { + } else if z.HasExtensions() && z.EncExt(yy4256) { } else { - z.EncFallback(yy4203) + z.EncFallback(yy4256) } } else { r.EncodeNil() } } else { - if yyq4195[2] { + if yyq4248[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4205 := &x.ListMeta - yym4206 := z.EncBinary() - _ = yym4206 + yy4258 := &x.ListMeta + yym4259 := z.EncBinary() + _ = yym4259 if false { - } else if z.HasExtensions() && z.EncExt(yy4205) { + } else if z.HasExtensions() && z.EncExt(yy4258) { } else { - z.EncFallback(yy4205) + z.EncFallback(yy4258) } } } - if yyr4195 || yy2arr4195 { + if yyr4248 || yy2arr4248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4208 := z.EncBinary() - _ = yym4208 + yym4261 := z.EncBinary() + _ = yym4261 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -52498,15 +53205,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4209 := z.EncBinary() - _ = yym4209 + yym4262 := z.EncBinary() + _ = yym4262 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4195 || yy2arr4195 { + if yyr4248 || yy2arr4248 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52519,25 +53226,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4210 := z.DecBinary() - _ = yym4210 + yym4263 := z.DecBinary() + _ = yym4263 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4211 := r.ContainerType() - if yyct4211 == codecSelferValueTypeMap1234 { - yyl4211 := r.ReadMapStart() - if yyl4211 == 0 { + yyct4264 := r.ContainerType() + if yyct4264 == codecSelferValueTypeMap1234 { + yyl4264 := r.ReadMapStart() + if yyl4264 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4211, d) + x.codecDecodeSelfFromMap(yyl4264, d) } - } else if yyct4211 == codecSelferValueTypeArray1234 { - yyl4211 := r.ReadArrayStart() - if yyl4211 == 0 { + } else if yyct4264 == codecSelferValueTypeArray1234 { + yyl4264 := r.ReadArrayStart() + if yyl4264 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4211, d) + x.codecDecodeSelfFromArray(yyl4264, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52549,12 +53256,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4212Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4212Slc - var yyhl4212 bool = l >= 0 - for yyj4212 := 0; ; yyj4212++ { - if yyhl4212 { - if yyj4212 >= 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 { @@ -52563,10 +53270,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4212Slc = r.DecodeBytes(yys4212Slc, true, true) - yys4212 := string(yys4212Slc) + yys4265Slc = r.DecodeBytes(yys4265Slc, true, true) + yys4265 := string(yys4265Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4212 { + switch yys4265 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52583,673 +53290,35 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4215 := &x.ListMeta - yym4216 := z.DecBinary() - _ = yym4216 + yyv4268 := &x.ListMeta + yym4269 := z.DecBinary() + _ = yym4269 if false { - } else if z.HasExtensions() && z.DecExt(yyv4215) { + } else if z.HasExtensions() && z.DecExt(yyv4268) { } else { - z.DecFallback(yyv4215, false) + z.DecFallback(yyv4268, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4217 := &x.Items - yym4218 := z.DecBinary() - _ = yym4218 - if false { - } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4217), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys4212) - } // end switch yys4212 - } // end for yyj4212 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4219 int - var yyb4219 bool - var yyhl4219 bool = l >= 0 - yyj4219++ - if yyhl4219 { - yyb4219 = yyj4219 > l - } else { - yyb4219 = r.CheckBreak() - } - if yyb4219 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4219++ - if yyhl4219 { - yyb4219 = yyj4219 > l - } else { - yyb4219 = r.CheckBreak() - } - if yyb4219 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4219++ - if yyhl4219 { - yyb4219 = yyj4219 > l - } else { - yyb4219 = r.CheckBreak() - } - if yyb4219 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv4222 := &x.ListMeta - yym4223 := z.DecBinary() - _ = yym4223 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4222) { - } else { - z.DecFallback(yyv4222, false) - } - } - yyj4219++ - if yyhl4219 { - yyb4219 = yyj4219 > l - } else { - yyb4219 = r.CheckBreak() - } - if yyb4219 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv4224 := &x.Items - yym4225 := z.DecBinary() - _ = yym4225 - if false { - } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4224), d) - } - } - for { - yyj4219++ - if yyhl4219 { - yyb4219 = yyj4219 > l - } else { - yyb4219 = r.CheckBreak() - } - if yyb4219 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4219-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym4226 := z.EncBinary() - _ = yym4226 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4227 := z.DecBinary() - _ = yym4227 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4228 := z.EncBinary() - _ = yym4228 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4229 := !z.EncBinary() - yy2arr4229 := z.EncBasicHandle().StructToArray - var yyq4229 [4]bool - _, _, _ = yysep4229, yyq4229, yy2arr4229 - const yyr4229 bool = false - yyq4229[2] = x.Message != "" - yyq4229[3] = x.Error != "" - var yynn4229 int - if yyr4229 || yy2arr4229 { - r.EncodeArrayStart(4) - } else { - yynn4229 = 2 - for _, b := range yyq4229 { - if b { - yynn4229++ - } - } - r.EncodeMapStart(yynn4229) - yynn4229 = 0 - } - if yyr4229 || yy2arr4229 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - x.Type.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Type.CodecEncodeSelf(e) - } - if yyr4229 || yy2arr4229 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - x.Status.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Status.CodecEncodeSelf(e) - } - if yyr4229 || yy2arr4229 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[2] { - yym4233 := z.EncBinary() - _ = yym4233 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4229[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4234 := z.EncBinary() - _ = yym4234 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr4229 || yy2arr4229 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[3] { - yym4236 := z.EncBinary() - _ = yym4236 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Error)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4229[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("error")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4237 := z.EncBinary() - _ = yym4237 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Error)) - } - } - } - if yyr4229 || yy2arr4229 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4238 := z.DecBinary() - _ = yym4238 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4239 := r.ContainerType() - if yyct4239 == codecSelferValueTypeMap1234 { - yyl4239 := r.ReadMapStart() - if yyl4239 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4239, d) - } - } else if yyct4239 == codecSelferValueTypeArray1234 { - yyl4239 := r.ReadArrayStart() - if yyl4239 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4239, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4240Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4240Slc - var yyhl4240 bool = l >= 0 - for yyj4240 := 0; ; yyj4240++ { - if yyhl4240 { - if yyj4240 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4240Slc = r.DecodeBytes(yys4240Slc, true, true) - yys4240 := string(yys4240Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4240 { - case "type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ComponentConditionType(r.DecodeString()) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - case "message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - case "error": - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys4240) - } // end switch yys4240 - } // end for yyj4240 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - 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 - } else { - yyb4245 = r.CheckBreak() - } - if yyb4245 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ComponentConditionType(r.DecodeString()) - } - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l - } else { - yyb4245 = r.CheckBreak() - } - if yyb4245 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l - } else { - yyb4245 = r.CheckBreak() - } - if yyb4245 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l - } else { - yyb4245 = r.CheckBreak() - } - if yyb4245 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = string(r.DecodeString()) - } - for { - yyj4245++ - if yyhl4245 { - yyb4245 = yyj4245 > l - } else { - yyb4245 = r.CheckBreak() - } - if yyb4245 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4245-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4250 := z.EncBinary() - _ = yym4250 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4251 := !z.EncBinary() - yy2arr4251 := z.EncBasicHandle().StructToArray - var yyq4251 [4]bool - _, _, _ = yysep4251, yyq4251, yy2arr4251 - const yyr4251 bool = false - yyq4251[0] = x.Kind != "" - yyq4251[1] = x.APIVersion != "" - yyq4251[2] = true - yyq4251[3] = len(x.Conditions) != 0 - var yynn4251 int - if yyr4251 || yy2arr4251 { - r.EncodeArrayStart(4) - } else { - yynn4251 = 0 - for _, b := range yyq4251 { - if b { - yynn4251++ - } - } - r.EncodeMapStart(yynn4251) - yynn4251 = 0 - } - if yyr4251 || yy2arr4251 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[0] { - yym4253 := z.EncBinary() - _ = yym4253 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4251[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4254 := z.EncBinary() - _ = yym4254 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4251 || yy2arr4251 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[1] { - yym4256 := z.EncBinary() - _ = yym4256 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4251[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4257 := z.EncBinary() - _ = yym4257 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4251 || yy2arr4251 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[2] { - yy4259 := &x.ObjectMeta - yy4259.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4251[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4260 := &x.ObjectMeta - yy4260.CodecEncodeSelf(e) - } - } - if yyr4251 || yy2arr4251 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[3] { - if x.Conditions == nil { - r.EncodeNil() - } else { - yym4262 := z.EncBinary() - _ = yym4262 - if false { - } else { - h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4251[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("conditions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Conditions == nil { - r.EncodeNil() - } else { - yym4263 := z.EncBinary() - _ = yym4263 - if false { - } else { - h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) - } - } - } - } - if yyr4251 || yy2arr4251 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4264 := z.DecBinary() - _ = yym4264 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4265 := r.ContainerType() - if yyct4265 == codecSelferValueTypeMap1234 { - yyl4265 := r.ReadMapStart() - if yyl4265 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4265, d) - } - } else if yyct4265 == codecSelferValueTypeArray1234 { - yyl4265 := r.ReadArrayStart() - if yyl4265 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4265, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4266Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4266Slc - var yyhl4266 bool = l >= 0 - for yyj4266 := 0; ; yyj4266++ { - if yyhl4266 { - if yyj4266 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4266Slc = r.DecodeBytes(yys4266Slc, true, true) - yys4266 := string(yys4266Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4266 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4269 := &x.ObjectMeta - yyv4269.CodecDecodeSelf(d) - } - case "conditions": - if r.TryDecodeAsNil() { - x.Conditions = nil - } else { - yyv4270 := &x.Conditions + yyv4270 := &x.Items yym4271 := z.DecBinary() _ = yym4271 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4270), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4270), d) } } default: - z.DecStructFieldNotFound(-1, yys4266) - } // end switch yys4266 - } // end for yyj4266 + z.DecStructFieldNotFound(-1, yys4265) + } // end switch yys4265 + } // end for yyj4265 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -53300,10 +53369,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} + x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4275 := &x.ObjectMeta - yyv4275.CodecDecodeSelf(d) + yyv4275 := &x.ListMeta + yym4276 := z.DecBinary() + _ = yym4276 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4275) { + } else { + z.DecFallback(yyv4275, false) + } } yyj4272++ if yyhl4272 { @@ -53317,14 +53392,14 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Conditions = nil + x.Items = nil } else { - yyv4276 := &x.Conditions - yym4277 := z.DecBinary() - _ = yym4277 + yyv4277 := &x.Items + yym4278 := z.DecBinary() + _ = yym4278 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4276), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4277), d) } } for { @@ -53343,6 +53418,638 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym4279 := z.EncBinary() + _ = yym4279 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4280 := z.DecBinary() + _ = yym4280 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4281 := z.EncBinary() + _ = yym4281 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4282 := !z.EncBinary() + yy2arr4282 := z.EncBasicHandle().StructToArray + var yyq4282 [4]bool + _, _, _ = yysep4282, yyq4282, yy2arr4282 + const yyr4282 bool = false + yyq4282[2] = x.Message != "" + yyq4282[3] = x.Error != "" + var yynn4282 int + if yyr4282 || yy2arr4282 { + r.EncodeArrayStart(4) + } else { + yynn4282 = 2 + for _, b := range yyq4282 { + if b { + yynn4282++ + } + } + r.EncodeMapStart(yynn4282) + yynn4282 = 0 + } + if yyr4282 || yy2arr4282 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Type.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + if yyr4282 || yy2arr4282 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Status.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Status.CodecEncodeSelf(e) + } + if yyr4282 || yy2arr4282 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4282[2] { + yym4286 := z.EncBinary() + _ = yym4286 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4282[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4287 := z.EncBinary() + _ = yym4287 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr4282 || yy2arr4282 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4282[3] { + yym4289 := z.EncBinary() + _ = yym4289 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4282[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("error")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4290 := z.EncBinary() + _ = yym4290 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + } + } + } + if yyr4282 || yy2arr4282 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4291 := z.DecBinary() + _ = yym4291 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4292 := r.ContainerType() + if yyct4292 == codecSelferValueTypeMap1234 { + yyl4292 := r.ReadMapStart() + if yyl4292 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4292, d) + } + } else if yyct4292 == codecSelferValueTypeArray1234 { + yyl4292 := r.ReadArrayStart() + if yyl4292 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4292, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4293Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4293Slc + var yyhl4293 bool = l >= 0 + for yyj4293 := 0; ; yyj4293++ { + if yyhl4293 { + if yyj4293 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4293Slc = r.DecodeBytes(yys4293Slc, true, true) + yys4293 := string(yys4293Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4293 { + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ComponentConditionType(r.DecodeString()) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + case "error": + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys4293) + } // end switch yys4293 + } // end for yyj4293 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4298 int + var yyb4298 bool + var yyhl4298 bool = l >= 0 + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l + } else { + yyb4298 = r.CheckBreak() + } + if yyb4298 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ComponentConditionType(r.DecodeString()) + } + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l + } else { + yyb4298 = r.CheckBreak() + } + if yyb4298 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l + } else { + yyb4298 = r.CheckBreak() + } + if yyb4298 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l + } else { + yyb4298 = r.CheckBreak() + } + if yyb4298 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = string(r.DecodeString()) + } + for { + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l + } else { + yyb4298 = r.CheckBreak() + } + if yyb4298 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4298-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4303 := z.EncBinary() + _ = yym4303 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4304 := !z.EncBinary() + yy2arr4304 := z.EncBasicHandle().StructToArray + var yyq4304 [4]bool + _, _, _ = yysep4304, yyq4304, yy2arr4304 + const yyr4304 bool = false + yyq4304[0] = x.Kind != "" + yyq4304[1] = x.APIVersion != "" + yyq4304[2] = true + yyq4304[3] = len(x.Conditions) != 0 + var yynn4304 int + if yyr4304 || yy2arr4304 { + r.EncodeArrayStart(4) + } else { + yynn4304 = 0 + for _, b := range yyq4304 { + if b { + yynn4304++ + } + } + r.EncodeMapStart(yynn4304) + yynn4304 = 0 + } + if yyr4304 || yy2arr4304 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4304[0] { + yym4306 := z.EncBinary() + _ = yym4306 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4304[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4307 := z.EncBinary() + _ = yym4307 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4304 || yy2arr4304 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4304[1] { + yym4309 := z.EncBinary() + _ = yym4309 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4304[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4310 := z.EncBinary() + _ = yym4310 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4304 || yy2arr4304 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4304[2] { + yy4312 := &x.ObjectMeta + yy4312.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4304[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4313 := &x.ObjectMeta + yy4313.CodecEncodeSelf(e) + } + } + if yyr4304 || yy2arr4304 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4304[3] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym4315 := z.EncBinary() + _ = yym4315 + if false { + } else { + h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4304[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym4316 := z.EncBinary() + _ = yym4316 + if false { + } else { + h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) + } + } + } + } + if yyr4304 || yy2arr4304 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4317 := z.DecBinary() + _ = yym4317 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4318 := r.ContainerType() + if yyct4318 == codecSelferValueTypeMap1234 { + yyl4318 := r.ReadMapStart() + if yyl4318 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4318, d) + } + } else if yyct4318 == codecSelferValueTypeArray1234 { + yyl4318 := r.ReadArrayStart() + if yyl4318 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4318, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4319Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4319Slc + var yyhl4319 bool = l >= 0 + for yyj4319 := 0; ; yyj4319++ { + if yyhl4319 { + if yyj4319 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4319Slc = r.DecodeBytes(yys4319Slc, true, true) + yys4319 := string(yys4319Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4319 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4322 := &x.ObjectMeta + yyv4322.CodecDecodeSelf(d) + } + case "conditions": + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv4323 := &x.Conditions + yym4324 := z.DecBinary() + _ = yym4324 + if false { + } else { + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4323), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4319) + } // end switch yys4319 + } // end for yyj4319 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4325 int + var yyb4325 bool + var yyhl4325 bool = l >= 0 + yyj4325++ + if yyhl4325 { + yyb4325 = yyj4325 > l + } else { + yyb4325 = r.CheckBreak() + } + if yyb4325 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4325++ + if yyhl4325 { + yyb4325 = yyj4325 > l + } else { + yyb4325 = r.CheckBreak() + } + if yyb4325 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4325++ + if yyhl4325 { + yyb4325 = yyj4325 > l + } else { + yyb4325 = r.CheckBreak() + } + if yyb4325 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4328 := &x.ObjectMeta + yyv4328.CodecDecodeSelf(d) + } + yyj4325++ + if yyhl4325 { + yyb4325 = yyj4325 > l + } else { + yyb4325 = r.CheckBreak() + } + if yyb4325 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv4329 := &x.Conditions + yym4330 := z.DecBinary() + _ = yym4330 + if false { + } else { + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4329), d) + } + } + for { + yyj4325++ + if yyhl4325 { + yyb4325 = yyj4325 > l + } else { + yyb4325 = r.CheckBreak() + } + if yyb4325 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4325-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -53350,37 +54057,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4278 := z.EncBinary() - _ = yym4278 + yym4331 := z.EncBinary() + _ = yym4331 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4279 := !z.EncBinary() - yy2arr4279 := z.EncBasicHandle().StructToArray - var yyq4279 [4]bool - _, _, _ = yysep4279, yyq4279, yy2arr4279 - const yyr4279 bool = false - yyq4279[0] = x.Kind != "" - yyq4279[1] = x.APIVersion != "" - yyq4279[2] = true - var yynn4279 int - if yyr4279 || yy2arr4279 { + yysep4332 := !z.EncBinary() + yy2arr4332 := z.EncBasicHandle().StructToArray + var yyq4332 [4]bool + _, _, _ = yysep4332, yyq4332, yy2arr4332 + const yyr4332 bool = false + yyq4332[0] = x.Kind != "" + yyq4332[1] = x.APIVersion != "" + yyq4332[2] = true + var yynn4332 int + if yyr4332 || yy2arr4332 { r.EncodeArrayStart(4) } else { - yynn4279 = 1 - for _, b := range yyq4279 { + yynn4332 = 1 + for _, b := range yyq4332 { if b { - yynn4279++ + yynn4332++ } } - r.EncodeMapStart(yynn4279) - yynn4279 = 0 + r.EncodeMapStart(yynn4332) + yynn4332 = 0 } - if yyr4279 || yy2arr4279 { + if yyr4332 || yy2arr4332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4279[0] { - yym4281 := z.EncBinary() - _ = yym4281 + if yyq4332[0] { + yym4334 := z.EncBinary() + _ = yym4334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53389,23 +54096,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4279[0] { + if yyq4332[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4282 := z.EncBinary() - _ = yym4282 + yym4335 := z.EncBinary() + _ = yym4335 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4279 || yy2arr4279 { + if yyr4332 || yy2arr4332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4279[1] { - yym4284 := z.EncBinary() - _ = yym4284 + if yyq4332[1] { + yym4337 := z.EncBinary() + _ = yym4337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53414,54 +54121,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4279[1] { + if yyq4332[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4285 := z.EncBinary() - _ = yym4285 + yym4338 := z.EncBinary() + _ = yym4338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4279 || yy2arr4279 { + if yyr4332 || yy2arr4332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4279[2] { - yy4287 := &x.ListMeta - yym4288 := z.EncBinary() - _ = yym4288 + if yyq4332[2] { + yy4340 := &x.ListMeta + yym4341 := z.EncBinary() + _ = yym4341 if false { - } else if z.HasExtensions() && z.EncExt(yy4287) { + } else if z.HasExtensions() && z.EncExt(yy4340) { } else { - z.EncFallback(yy4287) + z.EncFallback(yy4340) } } else { r.EncodeNil() } } else { - if yyq4279[2] { + if yyq4332[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4289 := &x.ListMeta - yym4290 := z.EncBinary() - _ = yym4290 + yy4342 := &x.ListMeta + yym4343 := z.EncBinary() + _ = yym4343 if false { - } else if z.HasExtensions() && z.EncExt(yy4289) { + } else if z.HasExtensions() && z.EncExt(yy4342) { } else { - z.EncFallback(yy4289) + z.EncFallback(yy4342) } } } - if yyr4279 || yy2arr4279 { + if yyr4332 || yy2arr4332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4292 := z.EncBinary() - _ = yym4292 + yym4345 := z.EncBinary() + _ = yym4345 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -53474,15 +54181,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4293 := z.EncBinary() - _ = yym4293 + yym4346 := z.EncBinary() + _ = yym4346 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4279 || yy2arr4279 { + if yyr4332 || yy2arr4332 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53495,25 +54202,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4294 := z.DecBinary() - _ = yym4294 + yym4347 := z.DecBinary() + _ = yym4347 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4295 := r.ContainerType() - if yyct4295 == codecSelferValueTypeMap1234 { - yyl4295 := r.ReadMapStart() - if yyl4295 == 0 { + yyct4348 := r.ContainerType() + if yyct4348 == codecSelferValueTypeMap1234 { + yyl4348 := r.ReadMapStart() + if yyl4348 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4295, d) + x.codecDecodeSelfFromMap(yyl4348, d) } - } else if yyct4295 == codecSelferValueTypeArray1234 { - yyl4295 := r.ReadArrayStart() - if yyl4295 == 0 { + } else if yyct4348 == codecSelferValueTypeArray1234 { + yyl4348 := r.ReadArrayStart() + if yyl4348 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4295, d) + x.codecDecodeSelfFromArray(yyl4348, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53525,12 +54232,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4296Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4296Slc - var yyhl4296 bool = l >= 0 - for yyj4296 := 0; ; yyj4296++ { - if yyhl4296 { - if yyj4296 >= l { + var yys4349Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4349Slc + var yyhl4349 bool = l >= 0 + for yyj4349 := 0; ; yyj4349++ { + if yyhl4349 { + if yyj4349 >= l { break } } else { @@ -53539,10 +54246,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4296Slc = r.DecodeBytes(yys4296Slc, true, true) - yys4296 := string(yys4296Slc) + yys4349Slc = r.DecodeBytes(yys4349Slc, true, true) + yys4349 := string(yys4349Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4296 { + switch yys4349 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53559,31 +54266,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4299 := &x.ListMeta - yym4300 := z.DecBinary() - _ = yym4300 + yyv4352 := &x.ListMeta + yym4353 := z.DecBinary() + _ = yym4353 if false { - } else if z.HasExtensions() && z.DecExt(yyv4299) { + } else if z.HasExtensions() && z.DecExt(yyv4352) { } else { - z.DecFallback(yyv4299, false) + z.DecFallback(yyv4352, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4301 := &x.Items - yym4302 := z.DecBinary() - _ = yym4302 + yyv4354 := &x.Items + yym4355 := z.DecBinary() + _ = yym4355 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4301), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4354), d) } } default: - z.DecStructFieldNotFound(-1, yys4296) - } // end switch yys4296 - } // end for yyj4296 + z.DecStructFieldNotFound(-1, yys4349) + } // end switch yys4349 + } // end for yyj4349 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53591,16 +54298,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4303 int - var yyb4303 bool - var yyhl4303 bool = l >= 0 - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + var yyj4356 int + var yyb4356 bool + var yyhl4356 bool = l >= 0 + yyj4356++ + if yyhl4356 { + yyb4356 = yyj4356 > l } else { - yyb4303 = r.CheckBreak() + yyb4356 = r.CheckBreak() } - if yyb4303 { + if yyb4356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53610,13 +54317,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4356++ + if yyhl4356 { + yyb4356 = yyj4356 > l } else { - yyb4303 = r.CheckBreak() + yyb4356 = r.CheckBreak() } - if yyb4303 { + if yyb4356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53626,13 +54333,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4356++ + if yyhl4356 { + yyb4356 = yyj4356 > l } else { - yyb4303 = r.CheckBreak() + yyb4356 = r.CheckBreak() } - if yyb4303 { + if yyb4356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53640,22 +54347,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4306 := &x.ListMeta - yym4307 := z.DecBinary() - _ = yym4307 + yyv4359 := &x.ListMeta + yym4360 := z.DecBinary() + _ = yym4360 if false { - } else if z.HasExtensions() && z.DecExt(yyv4306) { + } else if z.HasExtensions() && z.DecExt(yyv4359) { } else { - z.DecFallback(yyv4306, false) + z.DecFallback(yyv4359, false) } } - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4356++ + if yyhl4356 { + yyb4356 = yyj4356 > l } else { - yyb4303 = r.CheckBreak() + yyb4356 = r.CheckBreak() } - if yyb4303 { + if yyb4356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53663,26 +54370,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4308 := &x.Items - yym4309 := z.DecBinary() - _ = yym4309 + yyv4361 := &x.Items + yym4362 := z.DecBinary() + _ = yym4362 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4308), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4361), d) } } for { - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4356++ + if yyhl4356 { + yyb4356 = yyj4356 > l } else { - yyb4303 = r.CheckBreak() + yyb4356 = r.CheckBreak() } - if yyb4303 { + if yyb4356 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4303-1, "") + z.DecStructFieldNotFound(yyj4356-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53694,39 +54401,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4310 := z.EncBinary() - _ = yym4310 + yym4363 := z.EncBinary() + _ = yym4363 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4311 := !z.EncBinary() - yy2arr4311 := z.EncBasicHandle().StructToArray - var yyq4311 [2]bool - _, _, _ = yysep4311, yyq4311, yy2arr4311 - const yyr4311 bool = false - yyq4311[0] = len(x.Items) != 0 - yyq4311[1] = x.DefaultMode != nil - var yynn4311 int - if yyr4311 || yy2arr4311 { + yysep4364 := !z.EncBinary() + yy2arr4364 := z.EncBasicHandle().StructToArray + var yyq4364 [2]bool + _, _, _ = yysep4364, yyq4364, yy2arr4364 + const yyr4364 bool = false + yyq4364[0] = len(x.Items) != 0 + yyq4364[1] = x.DefaultMode != nil + var yynn4364 int + if yyr4364 || yy2arr4364 { r.EncodeArrayStart(2) } else { - yynn4311 = 0 - for _, b := range yyq4311 { + yynn4364 = 0 + for _, b := range yyq4364 { if b { - yynn4311++ + yynn4364++ } } - r.EncodeMapStart(yynn4311) - yynn4311 = 0 + r.EncodeMapStart(yynn4364) + yynn4364 = 0 } - if yyr4311 || yy2arr4311 { + if yyr4364 || yy2arr4364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4311[0] { + if yyq4364[0] { if x.Items == nil { r.EncodeNil() } else { - yym4313 := z.EncBinary() - _ = yym4313 + yym4366 := z.EncBinary() + _ = yym4366 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -53736,15 +54443,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4311[0] { + if yyq4364[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4314 := z.EncBinary() - _ = yym4314 + yym4367 := z.EncBinary() + _ = yym4367 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -53752,42 +54459,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4311 || yy2arr4311 { + if yyr4364 || yy2arr4364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4311[1] { + if yyq4364[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy4316 := *x.DefaultMode - yym4317 := z.EncBinary() - _ = yym4317 + yy4369 := *x.DefaultMode + yym4370 := z.EncBinary() + _ = yym4370 if false { } else { - r.EncodeInt(int64(yy4316)) + r.EncodeInt(int64(yy4369)) } } } else { r.EncodeNil() } } else { - if yyq4311[1] { + if yyq4364[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy4318 := *x.DefaultMode - yym4319 := z.EncBinary() - _ = yym4319 + yy4371 := *x.DefaultMode + yym4372 := z.EncBinary() + _ = yym4372 if false { } else { - r.EncodeInt(int64(yy4318)) + r.EncodeInt(int64(yy4371)) } } } } - if yyr4311 || yy2arr4311 { + if yyr4364 || yy2arr4364 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53800,25 +54507,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4320 := z.DecBinary() - _ = yym4320 + yym4373 := z.DecBinary() + _ = yym4373 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4321 := r.ContainerType() - if yyct4321 == codecSelferValueTypeMap1234 { - yyl4321 := r.ReadMapStart() - if yyl4321 == 0 { + yyct4374 := r.ContainerType() + if yyct4374 == codecSelferValueTypeMap1234 { + yyl4374 := r.ReadMapStart() + if yyl4374 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4321, d) + x.codecDecodeSelfFromMap(yyl4374, d) } - } else if yyct4321 == codecSelferValueTypeArray1234 { - yyl4321 := r.ReadArrayStart() - if yyl4321 == 0 { + } else if yyct4374 == codecSelferValueTypeArray1234 { + yyl4374 := r.ReadArrayStart() + if yyl4374 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4321, d) + x.codecDecodeSelfFromArray(yyl4374, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53830,12 +54537,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4322Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4322Slc - var yyhl4322 bool = l >= 0 - for yyj4322 := 0; ; yyj4322++ { - if yyhl4322 { - if yyj4322 >= l { + var yys4375Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4375Slc + var yyhl4375 bool = l >= 0 + for yyj4375 := 0; ; yyj4375++ { + if yyhl4375 { + if yyj4375 >= l { break } } else { @@ -53844,20 +54551,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4322Slc = r.DecodeBytes(yys4322Slc, true, true) - yys4322 := string(yys4322Slc) + yys4375Slc = r.DecodeBytes(yys4375Slc, true, true) + yys4375 := string(yys4375Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4322 { + switch yys4375 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4323 := &x.Items - yym4324 := z.DecBinary() - _ = yym4324 + yyv4376 := &x.Items + yym4377 := z.DecBinary() + _ = yym4377 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4323), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4376), d) } } case "defaultMode": @@ -53869,17 +54576,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4326 := z.DecBinary() - _ = yym4326 + yym4379 := z.DecBinary() + _ = yym4379 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4322) - } // end switch yys4322 - } // end for yyj4322 + z.DecStructFieldNotFound(-1, yys4375) + } // end switch yys4375 + } // end for yyj4375 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53887,16 +54594,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4327 int - var yyb4327 bool - var yyhl4327 bool = l >= 0 - yyj4327++ - if yyhl4327 { - yyb4327 = yyj4327 > l + var yyj4380 int + var yyb4380 bool + var yyhl4380 bool = l >= 0 + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4327 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4327 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53904,21 +54611,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4328 := &x.Items - yym4329 := z.DecBinary() - _ = yym4329 + yyv4381 := &x.Items + yym4382 := z.DecBinary() + _ = yym4382 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4328), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4381), d) } } - yyj4327++ - if yyhl4327 { - yyb4327 = yyj4327 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4327 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4327 { + if yyb4380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53931,25 +54638,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4331 := z.DecBinary() - _ = yym4331 + yym4384 := z.DecBinary() + _ = yym4384 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4327++ - if yyhl4327 { - yyb4327 = yyj4327 > l + yyj4380++ + if yyhl4380 { + yyb4380 = yyj4380 > l } else { - yyb4327 = r.CheckBreak() + yyb4380 = r.CheckBreak() } - if yyb4327 { + if yyb4380 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4327-1, "") + z.DecStructFieldNotFound(yyj4380-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53961,36 +54668,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4332 := z.EncBinary() - _ = yym4332 + yym4385 := z.EncBinary() + _ = yym4385 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4333 := !z.EncBinary() - yy2arr4333 := z.EncBasicHandle().StructToArray - var yyq4333 [4]bool - _, _, _ = yysep4333, yyq4333, yy2arr4333 - const yyr4333 bool = false - yyq4333[1] = x.FieldRef != nil - yyq4333[2] = x.ResourceFieldRef != nil - yyq4333[3] = x.Mode != nil - var yynn4333 int - if yyr4333 || yy2arr4333 { + yysep4386 := !z.EncBinary() + yy2arr4386 := z.EncBasicHandle().StructToArray + var yyq4386 [4]bool + _, _, _ = yysep4386, yyq4386, yy2arr4386 + const yyr4386 bool = false + yyq4386[1] = x.FieldRef != nil + yyq4386[2] = x.ResourceFieldRef != nil + yyq4386[3] = x.Mode != nil + var yynn4386 int + if yyr4386 || yy2arr4386 { r.EncodeArrayStart(4) } else { - yynn4333 = 1 - for _, b := range yyq4333 { + yynn4386 = 1 + for _, b := range yyq4386 { if b { - yynn4333++ + yynn4386++ } } - r.EncodeMapStart(yynn4333) - yynn4333 = 0 + r.EncodeMapStart(yynn4386) + yynn4386 = 0 } - if yyr4333 || yy2arr4333 { + if yyr4386 || yy2arr4386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4335 := z.EncBinary() - _ = yym4335 + yym4388 := z.EncBinary() + _ = yym4388 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -53999,16 +54706,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4336 := z.EncBinary() - _ = yym4336 + yym4389 := z.EncBinary() + _ = yym4389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4333 || yy2arr4333 { + if yyr4386 || yy2arr4386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4333[1] { + if yyq4386[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -54018,7 +54725,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4333[1] { + if yyq4386[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54029,9 +54736,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4333 || yy2arr4333 { + if yyr4386 || yy2arr4386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4333[2] { + if yyq4386[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -54041,7 +54748,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4333[2] { + if yyq4386[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54052,42 +54759,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4333 || yy2arr4333 { + if yyr4386 || yy2arr4386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4333[3] { + if yyq4386[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4340 := *x.Mode - yym4341 := z.EncBinary() - _ = yym4341 + yy4393 := *x.Mode + yym4394 := z.EncBinary() + _ = yym4394 if false { } else { - r.EncodeInt(int64(yy4340)) + r.EncodeInt(int64(yy4393)) } } } else { r.EncodeNil() } } else { - if yyq4333[3] { + if yyq4386[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4342 := *x.Mode - yym4343 := z.EncBinary() - _ = yym4343 + yy4395 := *x.Mode + yym4396 := z.EncBinary() + _ = yym4396 if false { } else { - r.EncodeInt(int64(yy4342)) + r.EncodeInt(int64(yy4395)) } } } } - if yyr4333 || yy2arr4333 { + if yyr4386 || yy2arr4386 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54100,25 +54807,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4344 := z.DecBinary() - _ = yym4344 + yym4397 := z.DecBinary() + _ = yym4397 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4345 := r.ContainerType() - if yyct4345 == codecSelferValueTypeMap1234 { - yyl4345 := r.ReadMapStart() - if yyl4345 == 0 { + yyct4398 := r.ContainerType() + if yyct4398 == codecSelferValueTypeMap1234 { + yyl4398 := r.ReadMapStart() + if yyl4398 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4345, d) + x.codecDecodeSelfFromMap(yyl4398, d) } - } else if yyct4345 == codecSelferValueTypeArray1234 { - yyl4345 := r.ReadArrayStart() - if yyl4345 == 0 { + } else if yyct4398 == codecSelferValueTypeArray1234 { + yyl4398 := r.ReadArrayStart() + if yyl4398 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4345, d) + x.codecDecodeSelfFromArray(yyl4398, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54130,12 +54837,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4346Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4346Slc - var yyhl4346 bool = l >= 0 - for yyj4346 := 0; ; yyj4346++ { - if yyhl4346 { - if yyj4346 >= 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 { @@ -54144,10 +54851,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4346Slc = r.DecodeBytes(yys4346Slc, true, true) - yys4346 := string(yys4346Slc) + yys4399Slc = r.DecodeBytes(yys4399Slc, true, true) + yys4399 := string(yys4399Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4346 { + switch yys4399 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -54185,17 +54892,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4351 := z.DecBinary() - _ = yym4351 + yym4404 := z.DecBinary() + _ = yym4404 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4346) - } // end switch yys4346 - } // end for yyj4346 + z.DecStructFieldNotFound(-1, yys4399) + } // end switch yys4399 + } // end for yyj4399 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54203,16 +54910,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4352 int - var yyb4352 bool - var yyhl4352 bool = l >= 0 - yyj4352++ - if yyhl4352 { - yyb4352 = yyj4352 > l + var yyj4405 int + var yyb4405 bool + var yyhl4405 bool = l >= 0 + yyj4405++ + if yyhl4405 { + yyb4405 = yyj4405 > l } else { - yyb4352 = r.CheckBreak() + yyb4405 = r.CheckBreak() } - if yyb4352 { + if yyb4405 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54222,13 +54929,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4352++ - if yyhl4352 { - yyb4352 = yyj4352 > l + yyj4405++ + if yyhl4405 { + yyb4405 = yyj4405 > l } else { - yyb4352 = r.CheckBreak() + yyb4405 = r.CheckBreak() } - if yyb4352 { + if yyb4405 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54243,13 +54950,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4352++ - if yyhl4352 { - yyb4352 = yyj4352 > l + yyj4405++ + if yyhl4405 { + yyb4405 = yyj4405 > l } else { - yyb4352 = r.CheckBreak() + yyb4405 = r.CheckBreak() } - if yyb4352 { + if yyb4405 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54264,13 +54971,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4352++ - if yyhl4352 { - yyb4352 = yyj4352 > l + yyj4405++ + if yyhl4405 { + yyb4405 = yyj4405 > l } else { - yyb4352 = r.CheckBreak() + yyb4405 = r.CheckBreak() } - if yyb4352 { + if yyb4405 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54283,25 +54990,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4357 := z.DecBinary() - _ = yym4357 + yym4410 := z.DecBinary() + _ = yym4410 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4352++ - if yyhl4352 { - yyb4352 = yyj4352 > l + yyj4405++ + if yyhl4405 { + yyb4405 = yyj4405 > l } else { - yyb4352 = r.CheckBreak() + yyb4405 = r.CheckBreak() } - if yyb4352 { + if yyb4405 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4352-1, "") + z.DecStructFieldNotFound(yyj4405-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54313,38 +55020,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4358 := z.EncBinary() - _ = yym4358 + yym4411 := z.EncBinary() + _ = yym4411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4359 := !z.EncBinary() - yy2arr4359 := z.EncBasicHandle().StructToArray - var yyq4359 [6]bool - _, _, _ = yysep4359, yyq4359, yy2arr4359 - const yyr4359 bool = false - yyq4359[0] = x.Capabilities != nil - yyq4359[1] = x.Privileged != nil - yyq4359[2] = x.SELinuxOptions != nil - yyq4359[3] = x.RunAsUser != nil - yyq4359[4] = x.RunAsNonRoot != nil - yyq4359[5] = x.ReadOnlyRootFilesystem != nil - var yynn4359 int - if yyr4359 || yy2arr4359 { + yysep4412 := !z.EncBinary() + yy2arr4412 := z.EncBasicHandle().StructToArray + var yyq4412 [6]bool + _, _, _ = yysep4412, yyq4412, yy2arr4412 + const yyr4412 bool = false + yyq4412[0] = x.Capabilities != nil + yyq4412[1] = x.Privileged != nil + yyq4412[2] = x.SELinuxOptions != nil + yyq4412[3] = x.RunAsUser != nil + yyq4412[4] = x.RunAsNonRoot != nil + yyq4412[5] = x.ReadOnlyRootFilesystem != nil + var yynn4412 int + if yyr4412 || yy2arr4412 { r.EncodeArrayStart(6) } else { - yynn4359 = 0 - for _, b := range yyq4359 { + yynn4412 = 0 + for _, b := range yyq4412 { if b { - yynn4359++ + yynn4412++ } } - r.EncodeMapStart(yynn4359) - yynn4359 = 0 + r.EncodeMapStart(yynn4412) + yynn4412 = 0 } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4359[0] { + if yyq4412[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -54354,7 +55061,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4359[0] { + if yyq4412[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54365,44 +55072,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4359[1] { + if yyq4412[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4362 := *x.Privileged - yym4363 := z.EncBinary() - _ = yym4363 + yy4415 := *x.Privileged + yym4416 := z.EncBinary() + _ = yym4416 if false { } else { - r.EncodeBool(bool(yy4362)) + r.EncodeBool(bool(yy4415)) } } } else { r.EncodeNil() } } else { - if yyq4359[1] { + if yyq4412[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4364 := *x.Privileged - yym4365 := z.EncBinary() - _ = yym4365 + yy4417 := *x.Privileged + yym4418 := z.EncBinary() + _ = yym4418 if false { } else { - r.EncodeBool(bool(yy4364)) + r.EncodeBool(bool(yy4417)) } } } } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4359[2] { + if yyq4412[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -54412,7 +55119,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4359[2] { + if yyq4412[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54423,112 +55130,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4359[3] { + if yyq4412[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4368 := *x.RunAsUser - yym4369 := z.EncBinary() - _ = yym4369 + yy4421 := *x.RunAsUser + yym4422 := z.EncBinary() + _ = yym4422 if false { } else { - r.EncodeInt(int64(yy4368)) + r.EncodeInt(int64(yy4421)) } } } else { r.EncodeNil() } } else { - if yyq4359[3] { + if yyq4412[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4370 := *x.RunAsUser - yym4371 := z.EncBinary() - _ = yym4371 + yy4423 := *x.RunAsUser + yym4424 := z.EncBinary() + _ = yym4424 if false { } else { - r.EncodeInt(int64(yy4370)) + r.EncodeInt(int64(yy4423)) } } } } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4359[4] { + if yyq4412[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4373 := *x.RunAsNonRoot - yym4374 := z.EncBinary() - _ = yym4374 + yy4426 := *x.RunAsNonRoot + yym4427 := z.EncBinary() + _ = yym4427 if false { } else { - r.EncodeBool(bool(yy4373)) + r.EncodeBool(bool(yy4426)) } } } else { r.EncodeNil() } } else { - if yyq4359[4] { + if yyq4412[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4375 := *x.RunAsNonRoot - yym4376 := z.EncBinary() - _ = yym4376 + yy4428 := *x.RunAsNonRoot + yym4429 := z.EncBinary() + _ = yym4429 if false { } else { - r.EncodeBool(bool(yy4375)) + r.EncodeBool(bool(yy4428)) } } } } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4359[5] { + if yyq4412[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4378 := *x.ReadOnlyRootFilesystem - yym4379 := z.EncBinary() - _ = yym4379 + yy4431 := *x.ReadOnlyRootFilesystem + yym4432 := z.EncBinary() + _ = yym4432 if false { } else { - r.EncodeBool(bool(yy4378)) + r.EncodeBool(bool(yy4431)) } } } else { r.EncodeNil() } } else { - if yyq4359[5] { + if yyq4412[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4380 := *x.ReadOnlyRootFilesystem - yym4381 := z.EncBinary() - _ = yym4381 + yy4433 := *x.ReadOnlyRootFilesystem + yym4434 := z.EncBinary() + _ = yym4434 if false { } else { - r.EncodeBool(bool(yy4380)) + r.EncodeBool(bool(yy4433)) } } } } - if yyr4359 || yy2arr4359 { + if yyr4412 || yy2arr4412 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54541,25 +55248,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4382 := z.DecBinary() - _ = yym4382 + yym4435 := z.DecBinary() + _ = yym4435 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4383 := r.ContainerType() - if yyct4383 == codecSelferValueTypeMap1234 { - yyl4383 := r.ReadMapStart() - if yyl4383 == 0 { + yyct4436 := r.ContainerType() + if yyct4436 == codecSelferValueTypeMap1234 { + yyl4436 := r.ReadMapStart() + if yyl4436 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4383, d) + x.codecDecodeSelfFromMap(yyl4436, d) } - } else if yyct4383 == codecSelferValueTypeArray1234 { - yyl4383 := r.ReadArrayStart() - if yyl4383 == 0 { + } else if yyct4436 == codecSelferValueTypeArray1234 { + yyl4436 := r.ReadArrayStart() + if yyl4436 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4383, d) + x.codecDecodeSelfFromArray(yyl4436, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54571,12 +55278,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4384Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4384Slc - var yyhl4384 bool = l >= 0 - for yyj4384 := 0; ; yyj4384++ { - if yyhl4384 { - if yyj4384 >= l { + var yys4437Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4437Slc + var yyhl4437 bool = l >= 0 + for yyj4437 := 0; ; yyj4437++ { + if yyhl4437 { + if yyj4437 >= l { break } } else { @@ -54585,10 +55292,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4384Slc = r.DecodeBytes(yys4384Slc, true, true) - yys4384 := string(yys4384Slc) + yys4437Slc = r.DecodeBytes(yys4437Slc, true, true) + yys4437 := string(yys4437Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4384 { + switch yys4437 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -54609,8 +55316,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4387 := z.DecBinary() - _ = yym4387 + yym4440 := z.DecBinary() + _ = yym4440 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -54636,8 +55343,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4390 := z.DecBinary() - _ = yym4390 + yym4443 := z.DecBinary() + _ = yym4443 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -54652,8 +55359,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4392 := z.DecBinary() - _ = yym4392 + yym4445 := z.DecBinary() + _ = yym4445 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -54668,17 +55375,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4394 := z.DecBinary() - _ = yym4394 + yym4447 := z.DecBinary() + _ = yym4447 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4384) - } // end switch yys4384 - } // end for yyj4384 + z.DecStructFieldNotFound(-1, yys4437) + } // end switch yys4437 + } // end for yyj4437 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54686,16 +55393,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4395 int - var yyb4395 bool - var yyhl4395 bool = l >= 0 - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + var yyj4448 int + var yyb4448 bool + var yyhl4448 bool = l >= 0 + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54710,13 +55417,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54729,20 +55436,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4398 := z.DecBinary() - _ = yym4398 + yym4451 := z.DecBinary() + _ = yym4451 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54757,13 +55464,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54776,20 +55483,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4401 := z.DecBinary() - _ = yym4401 + yym4454 := z.DecBinary() + _ = yym4454 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54802,20 +55509,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4403 := z.DecBinary() - _ = yym4403 + yym4456 := z.DecBinary() + _ = yym4456 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54828,25 +55535,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4405 := z.DecBinary() - _ = yym4405 + yym4458 := z.DecBinary() + _ = yym4458 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4448++ + if yyhl4448 { + yyb4448 = yyj4448 > l } else { - yyb4395 = r.CheckBreak() + yyb4448 = r.CheckBreak() } - if yyb4395 { + if yyb4448 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4395-1, "") + z.DecStructFieldNotFound(yyj4448-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54858,38 +55565,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4406 := z.EncBinary() - _ = yym4406 + yym4459 := z.EncBinary() + _ = yym4459 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4407 := !z.EncBinary() - yy2arr4407 := z.EncBasicHandle().StructToArray - var yyq4407 [4]bool - _, _, _ = yysep4407, yyq4407, yy2arr4407 - const yyr4407 bool = false - yyq4407[0] = x.User != "" - yyq4407[1] = x.Role != "" - yyq4407[2] = x.Type != "" - yyq4407[3] = x.Level != "" - var yynn4407 int - if yyr4407 || yy2arr4407 { + yysep4460 := !z.EncBinary() + yy2arr4460 := z.EncBasicHandle().StructToArray + var yyq4460 [4]bool + _, _, _ = yysep4460, yyq4460, yy2arr4460 + const yyr4460 bool = false + yyq4460[0] = x.User != "" + yyq4460[1] = x.Role != "" + yyq4460[2] = x.Type != "" + yyq4460[3] = x.Level != "" + var yynn4460 int + if yyr4460 || yy2arr4460 { r.EncodeArrayStart(4) } else { - yynn4407 = 0 - for _, b := range yyq4407 { + yynn4460 = 0 + for _, b := range yyq4460 { if b { - yynn4407++ + yynn4460++ } } - r.EncodeMapStart(yynn4407) - yynn4407 = 0 + r.EncodeMapStart(yynn4460) + yynn4460 = 0 } - if yyr4407 || yy2arr4407 { + if yyr4460 || yy2arr4460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4407[0] { - yym4409 := z.EncBinary() - _ = yym4409 + if yyq4460[0] { + yym4462 := z.EncBinary() + _ = yym4462 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -54898,23 +55605,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4407[0] { + if yyq4460[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4410 := z.EncBinary() - _ = yym4410 + yym4463 := z.EncBinary() + _ = yym4463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4407 || yy2arr4407 { + if yyr4460 || yy2arr4460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4407[1] { - yym4412 := z.EncBinary() - _ = yym4412 + if yyq4460[1] { + yym4465 := z.EncBinary() + _ = yym4465 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -54923,23 +55630,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4407[1] { + if yyq4460[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4413 := z.EncBinary() - _ = yym4413 + yym4466 := z.EncBinary() + _ = yym4466 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4407 || yy2arr4407 { + if yyr4460 || yy2arr4460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4407[2] { - yym4415 := z.EncBinary() - _ = yym4415 + if yyq4460[2] { + yym4468 := z.EncBinary() + _ = yym4468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -54948,23 +55655,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4407[2] { + if yyq4460[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4416 := z.EncBinary() - _ = yym4416 + yym4469 := z.EncBinary() + _ = yym4469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4407 || yy2arr4407 { + if yyr4460 || yy2arr4460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4407[3] { - yym4418 := z.EncBinary() - _ = yym4418 + if yyq4460[3] { + yym4471 := z.EncBinary() + _ = yym4471 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -54973,19 +55680,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4407[3] { + if yyq4460[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4419 := z.EncBinary() - _ = yym4419 + yym4472 := z.EncBinary() + _ = yym4472 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4407 || yy2arr4407 { + if yyr4460 || yy2arr4460 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54998,25 +55705,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4420 := z.DecBinary() - _ = yym4420 + yym4473 := z.DecBinary() + _ = yym4473 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4421 := r.ContainerType() - if yyct4421 == codecSelferValueTypeMap1234 { - yyl4421 := r.ReadMapStart() - if yyl4421 == 0 { + yyct4474 := r.ContainerType() + if yyct4474 == codecSelferValueTypeMap1234 { + yyl4474 := r.ReadMapStart() + if yyl4474 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4421, d) + x.codecDecodeSelfFromMap(yyl4474, d) } - } else if yyct4421 == codecSelferValueTypeArray1234 { - yyl4421 := r.ReadArrayStart() - if yyl4421 == 0 { + } else if yyct4474 == codecSelferValueTypeArray1234 { + yyl4474 := r.ReadArrayStart() + if yyl4474 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4421, d) + x.codecDecodeSelfFromArray(yyl4474, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55028,12 +55735,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4422Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4422Slc - var yyhl4422 bool = l >= 0 - for yyj4422 := 0; ; yyj4422++ { - if yyhl4422 { - if yyj4422 >= l { + var yys4475Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4475Slc + var yyhl4475 bool = l >= 0 + for yyj4475 := 0; ; yyj4475++ { + if yyhl4475 { + if yyj4475 >= l { break } } else { @@ -55042,10 +55749,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4422Slc = r.DecodeBytes(yys4422Slc, true, true) - yys4422 := string(yys4422Slc) + yys4475Slc = r.DecodeBytes(yys4475Slc, true, true) + yys4475 := string(yys4475Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4422 { + switch yys4475 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -55071,9 +55778,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4422) - } // end switch yys4422 - } // end for yyj4422 + z.DecStructFieldNotFound(-1, yys4475) + } // end switch yys4475 + } // end for yyj4475 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55081,16 +55788,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4427 int - var yyb4427 bool - var yyhl4427 bool = l >= 0 - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + var yyj4480 int + var yyb4480 bool + var yyhl4480 bool = l >= 0 + yyj4480++ + if yyhl4480 { + yyb4480 = yyj4480 > l } else { - yyb4427 = r.CheckBreak() + yyb4480 = r.CheckBreak() } - if yyb4427 { + if yyb4480 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55100,13 +55807,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4480++ + if yyhl4480 { + yyb4480 = yyj4480 > l } else { - yyb4427 = r.CheckBreak() + yyb4480 = r.CheckBreak() } - if yyb4427 { + if yyb4480 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55116,13 +55823,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4480++ + if yyhl4480 { + yyb4480 = yyj4480 > l } else { - yyb4427 = r.CheckBreak() + yyb4480 = r.CheckBreak() } - if yyb4427 { + if yyb4480 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55132,13 +55839,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4480++ + if yyhl4480 { + yyb4480 = yyj4480 > l } else { - yyb4427 = r.CheckBreak() + yyb4480 = r.CheckBreak() } - if yyb4427 { + if yyb4480 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55149,17 +55856,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4480++ + if yyhl4480 { + yyb4480 = yyj4480 > l } else { - yyb4427 = r.CheckBreak() + yyb4480 = r.CheckBreak() } - if yyb4427 { + if yyb4480 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4427-1, "") + z.DecStructFieldNotFound(yyj4480-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55171,37 +55878,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4432 := z.EncBinary() - _ = yym4432 + yym4485 := z.EncBinary() + _ = yym4485 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4433 := !z.EncBinary() - yy2arr4433 := z.EncBasicHandle().StructToArray - var yyq4433 [5]bool - _, _, _ = yysep4433, yyq4433, yy2arr4433 - const yyr4433 bool = false - yyq4433[0] = x.Kind != "" - yyq4433[1] = x.APIVersion != "" - yyq4433[2] = true - var yynn4433 int - if yyr4433 || yy2arr4433 { + yysep4486 := !z.EncBinary() + yy2arr4486 := z.EncBasicHandle().StructToArray + var yyq4486 [5]bool + _, _, _ = yysep4486, yyq4486, yy2arr4486 + const yyr4486 bool = false + yyq4486[0] = x.Kind != "" + yyq4486[1] = x.APIVersion != "" + yyq4486[2] = true + var yynn4486 int + if yyr4486 || yy2arr4486 { r.EncodeArrayStart(5) } else { - yynn4433 = 2 - for _, b := range yyq4433 { + yynn4486 = 2 + for _, b := range yyq4486 { if b { - yynn4433++ + yynn4486++ } } - r.EncodeMapStart(yynn4433) - yynn4433 = 0 + r.EncodeMapStart(yynn4486) + yynn4486 = 0 } - if yyr4433 || yy2arr4433 { + if yyr4486 || yy2arr4486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4433[0] { - yym4435 := z.EncBinary() - _ = yym4435 + if yyq4486[0] { + yym4488 := z.EncBinary() + _ = yym4488 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -55210,23 +55917,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4433[0] { + if yyq4486[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4436 := z.EncBinary() - _ = yym4436 + yym4489 := z.EncBinary() + _ = yym4489 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4433 || yy2arr4433 { + if yyr4486 || yy2arr4486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4433[1] { - yym4438 := z.EncBinary() - _ = yym4438 + if yyq4486[1] { + yym4491 := z.EncBinary() + _ = yym4491 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -55235,39 +55942,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4433[1] { + if yyq4486[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4439 := z.EncBinary() - _ = yym4439 + yym4492 := z.EncBinary() + _ = yym4492 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4433 || yy2arr4433 { + if yyr4486 || yy2arr4486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4433[2] { - yy4441 := &x.ObjectMeta - yy4441.CodecEncodeSelf(e) + if yyq4486[2] { + yy4494 := &x.ObjectMeta + yy4494.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4433[2] { + if yyq4486[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4442 := &x.ObjectMeta - yy4442.CodecEncodeSelf(e) + yy4495 := &x.ObjectMeta + yy4495.CodecEncodeSelf(e) } } - if yyr4433 || yy2arr4433 { + if yyr4486 || yy2arr4486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4444 := z.EncBinary() - _ = yym4444 + yym4497 := z.EncBinary() + _ = yym4497 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -55276,20 +55983,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4445 := z.EncBinary() - _ = yym4445 + yym4498 := z.EncBinary() + _ = yym4498 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4433 || yy2arr4433 { + if yyr4486 || yy2arr4486 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4447 := z.EncBinary() - _ = yym4447 + yym4500 := z.EncBinary() + _ = yym4500 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -55302,15 +56009,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4448 := z.EncBinary() - _ = yym4448 + yym4501 := z.EncBinary() + _ = yym4501 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4433 || yy2arr4433 { + if yyr4486 || yy2arr4486 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55323,25 +56030,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4449 := z.DecBinary() - _ = yym4449 + yym4502 := z.DecBinary() + _ = yym4502 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4450 := r.ContainerType() - if yyct4450 == codecSelferValueTypeMap1234 { - yyl4450 := r.ReadMapStart() - if yyl4450 == 0 { + yyct4503 := r.ContainerType() + if yyct4503 == codecSelferValueTypeMap1234 { + yyl4503 := r.ReadMapStart() + if yyl4503 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4450, d) + x.codecDecodeSelfFromMap(yyl4503, d) } - } else if yyct4450 == codecSelferValueTypeArray1234 { - yyl4450 := r.ReadArrayStart() - if yyl4450 == 0 { + } else if yyct4503 == codecSelferValueTypeArray1234 { + yyl4503 := r.ReadArrayStart() + if yyl4503 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4450, d) + x.codecDecodeSelfFromArray(yyl4503, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55353,12 +56060,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4451Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4451Slc - var yyhl4451 bool = l >= 0 - for yyj4451 := 0; ; yyj4451++ { - if yyhl4451 { - if yyj4451 >= l { + var yys4504Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4504Slc + var yyhl4504 bool = l >= 0 + for yyj4504 := 0; ; yyj4504++ { + if yyhl4504 { + if yyj4504 >= l { break } } else { @@ -55367,10 +56074,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4451Slc = r.DecodeBytes(yys4451Slc, true, true) - yys4451 := string(yys4451Slc) + yys4504Slc = r.DecodeBytes(yys4504Slc, true, true) + yys4504 := string(yys4504Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4451 { + switch yys4504 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55387,8 +56094,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4454 := &x.ObjectMeta - yyv4454.CodecDecodeSelf(d) + yyv4507 := &x.ObjectMeta + yyv4507.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -55400,18 +56107,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4456 := &x.Data - yym4457 := z.DecBinary() - _ = yym4457 + yyv4509 := &x.Data + yym4510 := z.DecBinary() + _ = yym4510 if false { } else { - *yyv4456 = r.DecodeBytes(*(*[]byte)(yyv4456), false, false) + *yyv4509 = r.DecodeBytes(*(*[]byte)(yyv4509), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4451) - } // end switch yys4451 - } // end for yyj4451 + z.DecStructFieldNotFound(-1, yys4504) + } // end switch yys4504 + } // end for yyj4504 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55419,16 +56126,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4458 int - var yyb4458 bool - var yyhl4458 bool = l >= 0 - yyj4458++ - if yyhl4458 { - yyb4458 = yyj4458 > l + var yyj4511 int + var yyb4511 bool + var yyhl4511 bool = l >= 0 + yyj4511++ + if yyhl4511 { + yyb4511 = yyj4511 > l } else { - yyb4458 = r.CheckBreak() + yyb4511 = r.CheckBreak() } - if yyb4458 { + if yyb4511 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55438,13 +56145,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4458++ - if yyhl4458 { - yyb4458 = yyj4458 > l + yyj4511++ + if yyhl4511 { + yyb4511 = yyj4511 > l } else { - yyb4458 = r.CheckBreak() + yyb4511 = r.CheckBreak() } - if yyb4458 { + if yyb4511 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55454,13 +56161,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4458++ - if yyhl4458 { - yyb4458 = yyj4458 > l + yyj4511++ + if yyhl4511 { + yyb4511 = yyj4511 > l } else { - yyb4458 = r.CheckBreak() + yyb4511 = r.CheckBreak() } - if yyb4458 { + if yyb4511 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55468,16 +56175,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4461 := &x.ObjectMeta - yyv4461.CodecDecodeSelf(d) + yyv4514 := &x.ObjectMeta + yyv4514.CodecDecodeSelf(d) } - yyj4458++ - if yyhl4458 { - yyb4458 = yyj4458 > l + yyj4511++ + if yyhl4511 { + yyb4511 = yyj4511 > l } else { - yyb4458 = r.CheckBreak() + yyb4511 = r.CheckBreak() } - if yyb4458 { + if yyb4511 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55487,13 +56194,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4458++ - if yyhl4458 { - yyb4458 = yyj4458 > l + yyj4511++ + if yyhl4511 { + yyb4511 = yyj4511 > l } else { - yyb4458 = r.CheckBreak() + yyb4511 = r.CheckBreak() } - if yyb4458 { + if yyb4511 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55501,26 +56208,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4463 := &x.Data - yym4464 := z.DecBinary() - _ = yym4464 + yyv4516 := &x.Data + yym4517 := z.DecBinary() + _ = yym4517 if false { } else { - *yyv4463 = r.DecodeBytes(*(*[]byte)(yyv4463), false, false) + *yyv4516 = r.DecodeBytes(*(*[]byte)(yyv4516), false, false) } } for { - yyj4458++ - if yyhl4458 { - yyb4458 = yyj4458 > l + yyj4511++ + if yyhl4511 { + yyb4511 = yyj4511 > l } else { - yyb4458 = r.CheckBreak() + yyb4511 = r.CheckBreak() } - if yyb4458 { + if yyb4511 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4458-1, "") + z.DecStructFieldNotFound(yyj4511-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55530,10 +56237,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4465 := range v { + for _, yyv4518 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4466 := &yyv4465 - yy4466.CodecEncodeSelf(e) + yy4519 := &yyv4518 + yy4519.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55543,83 +56250,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4467 := *v - yyh4467, yyl4467 := z.DecSliceHelperStart() - var yyc4467 bool - if yyl4467 == 0 { - if yyv4467 == nil { - yyv4467 = []OwnerReference{} - yyc4467 = true - } else if len(yyv4467) != 0 { - yyv4467 = yyv4467[:0] - yyc4467 = true + yyv4520 := *v + yyh4520, yyl4520 := z.DecSliceHelperStart() + var yyc4520 bool + if yyl4520 == 0 { + if yyv4520 == nil { + yyv4520 = []OwnerReference{} + yyc4520 = true + } else if len(yyv4520) != 0 { + yyv4520 = yyv4520[:0] + yyc4520 = true } - } else if yyl4467 > 0 { - var yyrr4467, yyrl4467 int - var yyrt4467 bool - if yyl4467 > cap(yyv4467) { + } else if yyl4520 > 0 { + var yyrr4520, yyrl4520 int + var yyrt4520 bool + if yyl4520 > cap(yyv4520) { - yyrg4467 := len(yyv4467) > 0 - yyv24467 := yyv4467 - yyrl4467, yyrt4467 = z.DecInferLen(yyl4467, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4467 { - if yyrl4467 <= cap(yyv4467) { - yyv4467 = yyv4467[:yyrl4467] + yyrg4520 := len(yyv4520) > 0 + yyv24520 := yyv4520 + yyrl4520, yyrt4520 = z.DecInferLen(yyl4520, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4520 { + if yyrl4520 <= cap(yyv4520) { + yyv4520 = yyv4520[:yyrl4520] } else { - yyv4467 = make([]OwnerReference, yyrl4467) + yyv4520 = make([]OwnerReference, yyrl4520) } } else { - yyv4467 = make([]OwnerReference, yyrl4467) + yyv4520 = make([]OwnerReference, yyrl4520) } - yyc4467 = true - yyrr4467 = len(yyv4467) - if yyrg4467 { - copy(yyv4467, yyv24467) + yyc4520 = true + yyrr4520 = len(yyv4520) + if yyrg4520 { + copy(yyv4520, yyv24520) } - } else if yyl4467 != len(yyv4467) { - yyv4467 = yyv4467[:yyl4467] - yyc4467 = true + } else if yyl4520 != len(yyv4520) { + yyv4520 = yyv4520[:yyl4520] + yyc4520 = true } - yyj4467 := 0 - for ; yyj4467 < yyrr4467; yyj4467++ { - yyh4467.ElemContainerState(yyj4467) + yyj4520 := 0 + for ; yyj4520 < yyrr4520; yyj4520++ { + yyh4520.ElemContainerState(yyj4520) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = OwnerReference{} + yyv4520[yyj4520] = OwnerReference{} } else { - yyv4468 := &yyv4467[yyj4467] - yyv4468.CodecDecodeSelf(d) + yyv4521 := &yyv4520[yyj4520] + yyv4521.CodecDecodeSelf(d) } } - if yyrt4467 { - for ; yyj4467 < yyl4467; yyj4467++ { - yyv4467 = append(yyv4467, OwnerReference{}) - yyh4467.ElemContainerState(yyj4467) + if yyrt4520 { + for ; yyj4520 < yyl4520; yyj4520++ { + yyv4520 = append(yyv4520, OwnerReference{}) + yyh4520.ElemContainerState(yyj4520) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = OwnerReference{} + yyv4520[yyj4520] = OwnerReference{} } else { - yyv4469 := &yyv4467[yyj4467] - yyv4469.CodecDecodeSelf(d) + yyv4522 := &yyv4520[yyj4520] + yyv4522.CodecDecodeSelf(d) } } } } else { - yyj4467 := 0 - for ; !r.CheckBreak(); yyj4467++ { + yyj4520 := 0 + for ; !r.CheckBreak(); yyj4520++ { - if yyj4467 >= len(yyv4467) { - yyv4467 = append(yyv4467, OwnerReference{}) // var yyz4467 OwnerReference - yyc4467 = true + if yyj4520 >= len(yyv4520) { + yyv4520 = append(yyv4520, OwnerReference{}) // var yyz4520 OwnerReference + yyc4520 = true } - yyh4467.ElemContainerState(yyj4467) - if yyj4467 < len(yyv4467) { + yyh4520.ElemContainerState(yyj4520) + if yyj4520 < len(yyv4520) { if r.TryDecodeAsNil() { - yyv4467[yyj4467] = OwnerReference{} + yyv4520[yyj4520] = OwnerReference{} } else { - yyv4470 := &yyv4467[yyj4467] - yyv4470.CodecDecodeSelf(d) + yyv4523 := &yyv4520[yyj4520] + yyv4523.CodecDecodeSelf(d) } } else { @@ -55627,17 +56334,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4467 < len(yyv4467) { - yyv4467 = yyv4467[:yyj4467] - yyc4467 = true - } else if yyj4467 == 0 && yyv4467 == nil { - yyv4467 = []OwnerReference{} - yyc4467 = true + if yyj4520 < len(yyv4520) { + yyv4520 = yyv4520[:yyj4520] + yyc4520 = true + } else if yyj4520 == 0 && yyv4520 == nil { + yyv4520 = []OwnerReference{} + yyc4520 = true } } - yyh4467.End() - if yyc4467 { - *v = yyv4467 + yyh4520.End() + if yyc4520 { + *v = yyv4520 } } @@ -55646,9 +56353,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4471 := range v { + for _, yyv4524 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4471.CodecEncodeSelf(e) + yyv4524.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55658,1039 +56365,12 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4472 := *v - yyh4472, yyl4472 := z.DecSliceHelperStart() - var yyc4472 bool - if yyl4472 == 0 { - if yyv4472 == nil { - yyv4472 = []PersistentVolumeAccessMode{} - yyc4472 = true - } else if len(yyv4472) != 0 { - yyv4472 = yyv4472[:0] - yyc4472 = true - } - } else if yyl4472 > 0 { - var yyrr4472, yyrl4472 int - var yyrt4472 bool - if yyl4472 > cap(yyv4472) { - - yyrl4472, yyrt4472 = z.DecInferLen(yyl4472, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4472 { - if yyrl4472 <= cap(yyv4472) { - yyv4472 = yyv4472[:yyrl4472] - } else { - yyv4472 = make([]PersistentVolumeAccessMode, yyrl4472) - } - } else { - yyv4472 = make([]PersistentVolumeAccessMode, yyrl4472) - } - yyc4472 = true - yyrr4472 = len(yyv4472) - } else if yyl4472 != len(yyv4472) { - yyv4472 = yyv4472[:yyl4472] - yyc4472 = true - } - yyj4472 := 0 - for ; yyj4472 < yyrr4472; yyj4472++ { - yyh4472.ElemContainerState(yyj4472) - if r.TryDecodeAsNil() { - yyv4472[yyj4472] = "" - } else { - yyv4472[yyj4472] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - if yyrt4472 { - for ; yyj4472 < yyl4472; yyj4472++ { - yyv4472 = append(yyv4472, "") - yyh4472.ElemContainerState(yyj4472) - if r.TryDecodeAsNil() { - yyv4472[yyj4472] = "" - } else { - yyv4472[yyj4472] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - } - - } else { - yyj4472 := 0 - for ; !r.CheckBreak(); yyj4472++ { - - if yyj4472 >= len(yyv4472) { - yyv4472 = append(yyv4472, "") // var yyz4472 PersistentVolumeAccessMode - yyc4472 = true - } - yyh4472.ElemContainerState(yyj4472) - if yyj4472 < len(yyv4472) { - if r.TryDecodeAsNil() { - yyv4472[yyj4472] = "" - } else { - yyv4472[yyj4472] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4472 < len(yyv4472) { - yyv4472 = yyv4472[:yyj4472] - yyc4472 = true - } else if yyj4472 == 0 && yyv4472 == nil { - yyv4472 = []PersistentVolumeAccessMode{} - yyc4472 = true - } - } - yyh4472.End() - if yyc4472 { - *v = yyv4472 - } -} - -func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4476 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4477 := &yyv4476 - yy4477.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4478 := *v - yyh4478, yyl4478 := z.DecSliceHelperStart() - var yyc4478 bool - if yyl4478 == 0 { - if yyv4478 == nil { - yyv4478 = []PersistentVolume{} - yyc4478 = true - } else if len(yyv4478) != 0 { - yyv4478 = yyv4478[:0] - yyc4478 = true - } - } else if yyl4478 > 0 { - var yyrr4478, yyrl4478 int - var yyrt4478 bool - if yyl4478 > cap(yyv4478) { - - yyrg4478 := len(yyv4478) > 0 - yyv24478 := yyv4478 - yyrl4478, yyrt4478 = z.DecInferLen(yyl4478, z.DecBasicHandle().MaxInitLen, 480) - if yyrt4478 { - if yyrl4478 <= cap(yyv4478) { - yyv4478 = yyv4478[:yyrl4478] - } else { - yyv4478 = make([]PersistentVolume, yyrl4478) - } - } else { - yyv4478 = make([]PersistentVolume, yyrl4478) - } - yyc4478 = true - yyrr4478 = len(yyv4478) - if yyrg4478 { - copy(yyv4478, yyv24478) - } - } else if yyl4478 != len(yyv4478) { - yyv4478 = yyv4478[:yyl4478] - yyc4478 = true - } - yyj4478 := 0 - for ; yyj4478 < yyrr4478; yyj4478++ { - yyh4478.ElemContainerState(yyj4478) - if r.TryDecodeAsNil() { - yyv4478[yyj4478] = PersistentVolume{} - } else { - yyv4479 := &yyv4478[yyj4478] - yyv4479.CodecDecodeSelf(d) - } - - } - if yyrt4478 { - for ; yyj4478 < yyl4478; yyj4478++ { - yyv4478 = append(yyv4478, PersistentVolume{}) - yyh4478.ElemContainerState(yyj4478) - if r.TryDecodeAsNil() { - yyv4478[yyj4478] = PersistentVolume{} - } else { - yyv4480 := &yyv4478[yyj4478] - yyv4480.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4478 := 0 - for ; !r.CheckBreak(); yyj4478++ { - - if yyj4478 >= len(yyv4478) { - yyv4478 = append(yyv4478, PersistentVolume{}) // var yyz4478 PersistentVolume - yyc4478 = true - } - yyh4478.ElemContainerState(yyj4478) - if yyj4478 < len(yyv4478) { - if r.TryDecodeAsNil() { - yyv4478[yyj4478] = PersistentVolume{} - } else { - yyv4481 := &yyv4478[yyj4478] - yyv4481.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4478 < len(yyv4478) { - yyv4478 = yyv4478[:yyj4478] - yyc4478 = true - } else if yyj4478 == 0 && yyv4478 == nil { - yyv4478 = []PersistentVolume{} - yyc4478 = true - } - } - yyh4478.End() - if yyc4478 { - *v = yyv4478 - } -} - -func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4482 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4483 := &yyv4482 - yy4483.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4484 := *v - yyh4484, yyl4484 := z.DecSliceHelperStart() - var yyc4484 bool - if yyl4484 == 0 { - if yyv4484 == nil { - yyv4484 = []PersistentVolumeClaim{} - yyc4484 = true - } else if len(yyv4484) != 0 { - yyv4484 = yyv4484[:0] - yyc4484 = true - } - } else if yyl4484 > 0 { - var yyrr4484, yyrl4484 int - var yyrt4484 bool - if yyl4484 > cap(yyv4484) { - - yyrg4484 := len(yyv4484) > 0 - yyv24484 := yyv4484 - yyrl4484, yyrt4484 = z.DecInferLen(yyl4484, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4484 { - if yyrl4484 <= cap(yyv4484) { - yyv4484 = yyv4484[:yyrl4484] - } else { - yyv4484 = make([]PersistentVolumeClaim, yyrl4484) - } - } else { - yyv4484 = make([]PersistentVolumeClaim, yyrl4484) - } - yyc4484 = true - yyrr4484 = len(yyv4484) - if yyrg4484 { - copy(yyv4484, yyv24484) - } - } else if yyl4484 != len(yyv4484) { - yyv4484 = yyv4484[:yyl4484] - yyc4484 = true - } - yyj4484 := 0 - for ; yyj4484 < yyrr4484; yyj4484++ { - yyh4484.ElemContainerState(yyj4484) - if r.TryDecodeAsNil() { - yyv4484[yyj4484] = PersistentVolumeClaim{} - } else { - yyv4485 := &yyv4484[yyj4484] - yyv4485.CodecDecodeSelf(d) - } - - } - if yyrt4484 { - for ; yyj4484 < yyl4484; yyj4484++ { - yyv4484 = append(yyv4484, PersistentVolumeClaim{}) - yyh4484.ElemContainerState(yyj4484) - if r.TryDecodeAsNil() { - yyv4484[yyj4484] = PersistentVolumeClaim{} - } else { - yyv4486 := &yyv4484[yyj4484] - yyv4486.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4484 := 0 - for ; !r.CheckBreak(); yyj4484++ { - - if yyj4484 >= len(yyv4484) { - yyv4484 = append(yyv4484, PersistentVolumeClaim{}) // var yyz4484 PersistentVolumeClaim - yyc4484 = true - } - yyh4484.ElemContainerState(yyj4484) - if yyj4484 < len(yyv4484) { - if r.TryDecodeAsNil() { - yyv4484[yyj4484] = PersistentVolumeClaim{} - } else { - yyv4487 := &yyv4484[yyj4484] - yyv4487.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4484 < len(yyv4484) { - yyv4484 = yyv4484[:yyj4484] - yyc4484 = true - } else if yyj4484 == 0 && yyv4484 == nil { - yyv4484 = []PersistentVolumeClaim{} - yyc4484 = true - } - } - yyh4484.End() - if yyc4484 { - *v = yyv4484 - } -} - -func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4488 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4489 := &yyv4488 - yy4489.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4490 := *v - yyh4490, yyl4490 := z.DecSliceHelperStart() - var yyc4490 bool - if yyl4490 == 0 { - if yyv4490 == nil { - yyv4490 = []KeyToPath{} - yyc4490 = true - } else if len(yyv4490) != 0 { - yyv4490 = yyv4490[:0] - yyc4490 = true - } - } else if yyl4490 > 0 { - var yyrr4490, yyrl4490 int - var yyrt4490 bool - if yyl4490 > cap(yyv4490) { - - yyrg4490 := len(yyv4490) > 0 - yyv24490 := yyv4490 - yyrl4490, yyrt4490 = z.DecInferLen(yyl4490, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4490 { - if yyrl4490 <= cap(yyv4490) { - yyv4490 = yyv4490[:yyrl4490] - } else { - yyv4490 = make([]KeyToPath, yyrl4490) - } - } else { - yyv4490 = make([]KeyToPath, yyrl4490) - } - yyc4490 = true - yyrr4490 = len(yyv4490) - if yyrg4490 { - copy(yyv4490, yyv24490) - } - } else if yyl4490 != len(yyv4490) { - yyv4490 = yyv4490[:yyl4490] - yyc4490 = true - } - yyj4490 := 0 - for ; yyj4490 < yyrr4490; yyj4490++ { - yyh4490.ElemContainerState(yyj4490) - if r.TryDecodeAsNil() { - yyv4490[yyj4490] = KeyToPath{} - } else { - yyv4491 := &yyv4490[yyj4490] - yyv4491.CodecDecodeSelf(d) - } - - } - if yyrt4490 { - for ; yyj4490 < yyl4490; yyj4490++ { - yyv4490 = append(yyv4490, KeyToPath{}) - yyh4490.ElemContainerState(yyj4490) - if r.TryDecodeAsNil() { - yyv4490[yyj4490] = KeyToPath{} - } else { - yyv4492 := &yyv4490[yyj4490] - yyv4492.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4490 := 0 - for ; !r.CheckBreak(); yyj4490++ { - - if yyj4490 >= len(yyv4490) { - yyv4490 = append(yyv4490, KeyToPath{}) // var yyz4490 KeyToPath - yyc4490 = true - } - yyh4490.ElemContainerState(yyj4490) - if yyj4490 < len(yyv4490) { - if r.TryDecodeAsNil() { - yyv4490[yyj4490] = KeyToPath{} - } else { - yyv4493 := &yyv4490[yyj4490] - yyv4493.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4490 < len(yyv4490) { - yyv4490 = yyv4490[:yyj4490] - yyc4490 = true - } else if yyj4490 == 0 && yyv4490 == nil { - yyv4490 = []KeyToPath{} - yyc4490 = true - } - } - yyh4490.End() - if yyc4490 { - *v = yyv4490 - } -} - -func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4494 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4495 := &yyv4494 - yy4495.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4496 := *v - yyh4496, yyl4496 := z.DecSliceHelperStart() - var yyc4496 bool - if yyl4496 == 0 { - if yyv4496 == nil { - yyv4496 = []HTTPHeader{} - yyc4496 = true - } else if len(yyv4496) != 0 { - yyv4496 = yyv4496[:0] - yyc4496 = true - } - } else if yyl4496 > 0 { - var yyrr4496, yyrl4496 int - var yyrt4496 bool - if yyl4496 > cap(yyv4496) { - - yyrg4496 := len(yyv4496) > 0 - yyv24496 := yyv4496 - yyrl4496, yyrt4496 = z.DecInferLen(yyl4496, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4496 { - if yyrl4496 <= cap(yyv4496) { - yyv4496 = yyv4496[:yyrl4496] - } else { - yyv4496 = make([]HTTPHeader, yyrl4496) - } - } else { - yyv4496 = make([]HTTPHeader, yyrl4496) - } - yyc4496 = true - yyrr4496 = len(yyv4496) - if yyrg4496 { - copy(yyv4496, yyv24496) - } - } else if yyl4496 != len(yyv4496) { - yyv4496 = yyv4496[:yyl4496] - yyc4496 = true - } - yyj4496 := 0 - for ; yyj4496 < yyrr4496; yyj4496++ { - yyh4496.ElemContainerState(yyj4496) - if r.TryDecodeAsNil() { - yyv4496[yyj4496] = HTTPHeader{} - } else { - yyv4497 := &yyv4496[yyj4496] - yyv4497.CodecDecodeSelf(d) - } - - } - if yyrt4496 { - for ; yyj4496 < yyl4496; yyj4496++ { - yyv4496 = append(yyv4496, HTTPHeader{}) - yyh4496.ElemContainerState(yyj4496) - if r.TryDecodeAsNil() { - yyv4496[yyj4496] = HTTPHeader{} - } else { - yyv4498 := &yyv4496[yyj4496] - yyv4498.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4496 := 0 - for ; !r.CheckBreak(); yyj4496++ { - - if yyj4496 >= len(yyv4496) { - yyv4496 = append(yyv4496, HTTPHeader{}) // var yyz4496 HTTPHeader - yyc4496 = true - } - yyh4496.ElemContainerState(yyj4496) - if yyj4496 < len(yyv4496) { - if r.TryDecodeAsNil() { - yyv4496[yyj4496] = HTTPHeader{} - } else { - yyv4499 := &yyv4496[yyj4496] - yyv4499.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4496 < len(yyv4496) { - yyv4496 = yyv4496[:yyj4496] - yyc4496 = true - } else if yyj4496 == 0 && yyv4496 == nil { - yyv4496 = []HTTPHeader{} - yyc4496 = true - } - } - yyh4496.End() - if yyc4496 { - *v = yyv4496 - } -} - -func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4500 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4500.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4501 := *v - yyh4501, yyl4501 := z.DecSliceHelperStart() - var yyc4501 bool - if yyl4501 == 0 { - if yyv4501 == nil { - yyv4501 = []Capability{} - yyc4501 = true - } else if len(yyv4501) != 0 { - yyv4501 = yyv4501[:0] - yyc4501 = true - } - } else if yyl4501 > 0 { - var yyrr4501, yyrl4501 int - var yyrt4501 bool - if yyl4501 > cap(yyv4501) { - - yyrl4501, yyrt4501 = z.DecInferLen(yyl4501, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4501 { - if yyrl4501 <= cap(yyv4501) { - yyv4501 = yyv4501[:yyrl4501] - } else { - yyv4501 = make([]Capability, yyrl4501) - } - } else { - yyv4501 = make([]Capability, yyrl4501) - } - yyc4501 = true - yyrr4501 = len(yyv4501) - } else if yyl4501 != len(yyv4501) { - yyv4501 = yyv4501[:yyl4501] - yyc4501 = true - } - yyj4501 := 0 - for ; yyj4501 < yyrr4501; yyj4501++ { - yyh4501.ElemContainerState(yyj4501) - if r.TryDecodeAsNil() { - yyv4501[yyj4501] = "" - } else { - yyv4501[yyj4501] = Capability(r.DecodeString()) - } - - } - if yyrt4501 { - for ; yyj4501 < yyl4501; yyj4501++ { - yyv4501 = append(yyv4501, "") - yyh4501.ElemContainerState(yyj4501) - if r.TryDecodeAsNil() { - yyv4501[yyj4501] = "" - } else { - yyv4501[yyj4501] = Capability(r.DecodeString()) - } - - } - } - - } else { - yyj4501 := 0 - for ; !r.CheckBreak(); yyj4501++ { - - if yyj4501 >= len(yyv4501) { - yyv4501 = append(yyv4501, "") // var yyz4501 Capability - yyc4501 = true - } - yyh4501.ElemContainerState(yyj4501) - if yyj4501 < len(yyv4501) { - if r.TryDecodeAsNil() { - yyv4501[yyj4501] = "" - } else { - yyv4501[yyj4501] = Capability(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4501 < len(yyv4501) { - yyv4501 = yyv4501[:yyj4501] - yyc4501 = true - } else if yyj4501 == 0 && yyv4501 == nil { - yyv4501 = []Capability{} - yyc4501 = true - } - } - yyh4501.End() - if yyc4501 { - *v = yyv4501 - } -} - -func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4505 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4506 := &yyv4505 - yy4506.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4507 := *v - yyh4507, yyl4507 := z.DecSliceHelperStart() - var yyc4507 bool - if yyl4507 == 0 { - if yyv4507 == nil { - yyv4507 = []ContainerPort{} - yyc4507 = true - } else if len(yyv4507) != 0 { - yyv4507 = yyv4507[:0] - yyc4507 = true - } - } else if yyl4507 > 0 { - var yyrr4507, yyrl4507 int - var yyrt4507 bool - if yyl4507 > cap(yyv4507) { - - yyrg4507 := len(yyv4507) > 0 - yyv24507 := yyv4507 - yyrl4507, yyrt4507 = z.DecInferLen(yyl4507, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4507 { - if yyrl4507 <= cap(yyv4507) { - yyv4507 = yyv4507[:yyrl4507] - } else { - yyv4507 = make([]ContainerPort, yyrl4507) - } - } else { - yyv4507 = make([]ContainerPort, yyrl4507) - } - yyc4507 = true - yyrr4507 = len(yyv4507) - if yyrg4507 { - copy(yyv4507, yyv24507) - } - } else if yyl4507 != len(yyv4507) { - yyv4507 = yyv4507[:yyl4507] - yyc4507 = true - } - yyj4507 := 0 - for ; yyj4507 < yyrr4507; yyj4507++ { - yyh4507.ElemContainerState(yyj4507) - if r.TryDecodeAsNil() { - yyv4507[yyj4507] = ContainerPort{} - } else { - yyv4508 := &yyv4507[yyj4507] - yyv4508.CodecDecodeSelf(d) - } - - } - if yyrt4507 { - for ; yyj4507 < yyl4507; yyj4507++ { - yyv4507 = append(yyv4507, ContainerPort{}) - yyh4507.ElemContainerState(yyj4507) - if r.TryDecodeAsNil() { - yyv4507[yyj4507] = ContainerPort{} - } else { - yyv4509 := &yyv4507[yyj4507] - yyv4509.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4507 := 0 - for ; !r.CheckBreak(); yyj4507++ { - - if yyj4507 >= len(yyv4507) { - yyv4507 = append(yyv4507, ContainerPort{}) // var yyz4507 ContainerPort - yyc4507 = true - } - yyh4507.ElemContainerState(yyj4507) - if yyj4507 < len(yyv4507) { - if r.TryDecodeAsNil() { - yyv4507[yyj4507] = ContainerPort{} - } else { - yyv4510 := &yyv4507[yyj4507] - yyv4510.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4507 < len(yyv4507) { - yyv4507 = yyv4507[:yyj4507] - yyc4507 = true - } else if yyj4507 == 0 && yyv4507 == nil { - yyv4507 = []ContainerPort{} - yyc4507 = true - } - } - yyh4507.End() - if yyc4507 { - *v = yyv4507 - } -} - -func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4511 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4512 := &yyv4511 - yy4512.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4513 := *v - yyh4513, yyl4513 := z.DecSliceHelperStart() - var yyc4513 bool - if yyl4513 == 0 { - if yyv4513 == nil { - yyv4513 = []EnvVar{} - yyc4513 = true - } else if len(yyv4513) != 0 { - yyv4513 = yyv4513[:0] - yyc4513 = true - } - } else if yyl4513 > 0 { - var yyrr4513, yyrl4513 int - var yyrt4513 bool - if yyl4513 > cap(yyv4513) { - - yyrg4513 := len(yyv4513) > 0 - yyv24513 := yyv4513 - yyrl4513, yyrt4513 = z.DecInferLen(yyl4513, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4513 { - if yyrl4513 <= cap(yyv4513) { - yyv4513 = yyv4513[:yyrl4513] - } else { - yyv4513 = make([]EnvVar, yyrl4513) - } - } else { - yyv4513 = make([]EnvVar, yyrl4513) - } - yyc4513 = true - yyrr4513 = len(yyv4513) - if yyrg4513 { - copy(yyv4513, yyv24513) - } - } else if yyl4513 != len(yyv4513) { - yyv4513 = yyv4513[:yyl4513] - yyc4513 = true - } - yyj4513 := 0 - for ; yyj4513 < yyrr4513; yyj4513++ { - yyh4513.ElemContainerState(yyj4513) - if r.TryDecodeAsNil() { - yyv4513[yyj4513] = EnvVar{} - } else { - yyv4514 := &yyv4513[yyj4513] - yyv4514.CodecDecodeSelf(d) - } - - } - if yyrt4513 { - for ; yyj4513 < yyl4513; yyj4513++ { - yyv4513 = append(yyv4513, EnvVar{}) - yyh4513.ElemContainerState(yyj4513) - if r.TryDecodeAsNil() { - yyv4513[yyj4513] = EnvVar{} - } else { - yyv4515 := &yyv4513[yyj4513] - yyv4515.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4513 := 0 - for ; !r.CheckBreak(); yyj4513++ { - - if yyj4513 >= len(yyv4513) { - yyv4513 = append(yyv4513, EnvVar{}) // var yyz4513 EnvVar - yyc4513 = true - } - yyh4513.ElemContainerState(yyj4513) - if yyj4513 < len(yyv4513) { - if r.TryDecodeAsNil() { - yyv4513[yyj4513] = EnvVar{} - } else { - yyv4516 := &yyv4513[yyj4513] - yyv4516.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4513 < len(yyv4513) { - yyv4513 = yyv4513[:yyj4513] - yyc4513 = true - } else if yyj4513 == 0 && yyv4513 == nil { - yyv4513 = []EnvVar{} - yyc4513 = true - } - } - yyh4513.End() - if yyc4513 { - *v = yyv4513 - } -} - -func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4517 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4518 := &yyv4517 - yy4518.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4519 := *v - yyh4519, yyl4519 := z.DecSliceHelperStart() - var yyc4519 bool - if yyl4519 == 0 { - if yyv4519 == nil { - yyv4519 = []VolumeMount{} - yyc4519 = true - } else if len(yyv4519) != 0 { - yyv4519 = yyv4519[:0] - yyc4519 = true - } - } else if yyl4519 > 0 { - var yyrr4519, yyrl4519 int - var yyrt4519 bool - if yyl4519 > cap(yyv4519) { - - yyrg4519 := len(yyv4519) > 0 - yyv24519 := yyv4519 - yyrl4519, yyrt4519 = z.DecInferLen(yyl4519, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4519 { - if yyrl4519 <= cap(yyv4519) { - yyv4519 = yyv4519[:yyrl4519] - } else { - yyv4519 = make([]VolumeMount, yyrl4519) - } - } else { - yyv4519 = make([]VolumeMount, yyrl4519) - } - yyc4519 = true - yyrr4519 = len(yyv4519) - if yyrg4519 { - copy(yyv4519, yyv24519) - } - } else if yyl4519 != len(yyv4519) { - yyv4519 = yyv4519[:yyl4519] - yyc4519 = true - } - yyj4519 := 0 - for ; yyj4519 < yyrr4519; yyj4519++ { - yyh4519.ElemContainerState(yyj4519) - if r.TryDecodeAsNil() { - yyv4519[yyj4519] = VolumeMount{} - } else { - yyv4520 := &yyv4519[yyj4519] - yyv4520.CodecDecodeSelf(d) - } - - } - if yyrt4519 { - for ; yyj4519 < yyl4519; yyj4519++ { - yyv4519 = append(yyv4519, VolumeMount{}) - yyh4519.ElemContainerState(yyj4519) - if r.TryDecodeAsNil() { - yyv4519[yyj4519] = VolumeMount{} - } else { - yyv4521 := &yyv4519[yyj4519] - yyv4521.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4519 := 0 - for ; !r.CheckBreak(); yyj4519++ { - - if yyj4519 >= len(yyv4519) { - yyv4519 = append(yyv4519, VolumeMount{}) // var yyz4519 VolumeMount - yyc4519 = true - } - yyh4519.ElemContainerState(yyj4519) - if yyj4519 < len(yyv4519) { - if r.TryDecodeAsNil() { - yyv4519[yyj4519] = VolumeMount{} - } else { - yyv4522 := &yyv4519[yyj4519] - yyv4522.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4519 < len(yyv4519) { - yyv4519 = yyv4519[:yyj4519] - yyc4519 = true - } else if yyj4519 == 0 && yyv4519 == nil { - yyv4519 = []VolumeMount{} - yyc4519 = true - } - } - yyh4519.End() - if yyc4519 { - *v = yyv4519 - } -} - -func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4523 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4524 := &yyv4523 - yy4524.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4525 := *v yyh4525, yyl4525 := z.DecSliceHelperStart() var yyc4525 bool if yyl4525 == 0 { if yyv4525 == nil { - yyv4525 = []NodeSelectorTerm{} + yyv4525 = []PersistentVolumeAccessMode{} yyc4525 = true } else if len(yyv4525) != 0 { yyv4525 = yyv4525[:0] @@ -56701,23 +56381,18 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code var yyrt4525 bool if yyl4525 > cap(yyv4525) { - yyrg4525 := len(yyv4525) > 0 - yyv24525 := yyv4525 - yyrl4525, yyrt4525 = z.DecInferLen(yyl4525, z.DecBasicHandle().MaxInitLen, 24) + yyrl4525, yyrt4525 = z.DecInferLen(yyl4525, z.DecBasicHandle().MaxInitLen, 16) if yyrt4525 { if yyrl4525 <= cap(yyv4525) { yyv4525 = yyv4525[:yyrl4525] } else { - yyv4525 = make([]NodeSelectorTerm, yyrl4525) + yyv4525 = make([]PersistentVolumeAccessMode, yyrl4525) } } else { - yyv4525 = make([]NodeSelectorTerm, yyrl4525) + yyv4525 = make([]PersistentVolumeAccessMode, yyrl4525) } yyc4525 = true yyrr4525 = len(yyv4525) - if yyrg4525 { - copy(yyv4525, yyv24525) - } } else if yyl4525 != len(yyv4525) { yyv4525 = yyv4525[:yyl4525] yyc4525 = true @@ -56726,22 +56401,20 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code for ; yyj4525 < yyrr4525; yyj4525++ { yyh4525.ElemContainerState(yyj4525) if r.TryDecodeAsNil() { - yyv4525[yyj4525] = NodeSelectorTerm{} + yyv4525[yyj4525] = "" } else { - yyv4526 := &yyv4525[yyj4525] - yyv4526.CodecDecodeSelf(d) + yyv4525[yyj4525] = PersistentVolumeAccessMode(r.DecodeString()) } } if yyrt4525 { for ; yyj4525 < yyl4525; yyj4525++ { - yyv4525 = append(yyv4525, NodeSelectorTerm{}) + yyv4525 = append(yyv4525, "") yyh4525.ElemContainerState(yyj4525) if r.TryDecodeAsNil() { - yyv4525[yyj4525] = NodeSelectorTerm{} + yyv4525[yyj4525] = "" } else { - yyv4527 := &yyv4525[yyj4525] - yyv4527.CodecDecodeSelf(d) + yyv4525[yyj4525] = PersistentVolumeAccessMode(r.DecodeString()) } } @@ -56752,16 +56425,15 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code for ; !r.CheckBreak(); yyj4525++ { if yyj4525 >= len(yyv4525) { - yyv4525 = append(yyv4525, NodeSelectorTerm{}) // var yyz4525 NodeSelectorTerm + yyv4525 = append(yyv4525, "") // var yyz4525 PersistentVolumeAccessMode yyc4525 = true } yyh4525.ElemContainerState(yyj4525) if yyj4525 < len(yyv4525) { if r.TryDecodeAsNil() { - yyv4525[yyj4525] = NodeSelectorTerm{} + yyv4525[yyj4525] = "" } else { - yyv4528 := &yyv4525[yyj4525] - yyv4528.CodecDecodeSelf(d) + yyv4525[yyj4525] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -56773,7 +56445,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code yyv4525 = yyv4525[:yyj4525] yyc4525 = true } else if yyj4525 == 0 && yyv4525 == nil { - yyv4525 = []NodeSelectorTerm{} + yyv4525 = []PersistentVolumeAccessMode{} yyc4525 = true } } @@ -56783,7 +56455,7 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } -func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequirement, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -56796,7 +56468,7 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequirement, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -56806,7 +56478,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir var yyc4531 bool if yyl4531 == 0 { if yyv4531 == nil { - yyv4531 = []NodeSelectorRequirement{} + yyv4531 = []PersistentVolume{} yyc4531 = true } else if len(yyv4531) != 0 { yyv4531 = yyv4531[:0] @@ -56819,15 +56491,15 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir yyrg4531 := len(yyv4531) > 0 yyv24531 := yyv4531 - yyrl4531, yyrt4531 = z.DecInferLen(yyl4531, z.DecBasicHandle().MaxInitLen, 56) + yyrl4531, yyrt4531 = z.DecInferLen(yyl4531, z.DecBasicHandle().MaxInitLen, 488) if yyrt4531 { if yyrl4531 <= cap(yyv4531) { yyv4531 = yyv4531[:yyrl4531] } else { - yyv4531 = make([]NodeSelectorRequirement, yyrl4531) + yyv4531 = make([]PersistentVolume, yyrl4531) } } else { - yyv4531 = make([]NodeSelectorRequirement, yyrl4531) + yyv4531 = make([]PersistentVolume, yyrl4531) } yyc4531 = true yyrr4531 = len(yyv4531) @@ -56842,7 +56514,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir for ; yyj4531 < yyrr4531; yyj4531++ { yyh4531.ElemContainerState(yyj4531) if r.TryDecodeAsNil() { - yyv4531[yyj4531] = NodeSelectorRequirement{} + yyv4531[yyj4531] = PersistentVolume{} } else { yyv4532 := &yyv4531[yyj4531] yyv4532.CodecDecodeSelf(d) @@ -56851,10 +56523,10 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } if yyrt4531 { for ; yyj4531 < yyl4531; yyj4531++ { - yyv4531 = append(yyv4531, NodeSelectorRequirement{}) + yyv4531 = append(yyv4531, PersistentVolume{}) yyh4531.ElemContainerState(yyj4531) if r.TryDecodeAsNil() { - yyv4531[yyj4531] = NodeSelectorRequirement{} + yyv4531[yyj4531] = PersistentVolume{} } else { yyv4533 := &yyv4531[yyj4531] yyv4533.CodecDecodeSelf(d) @@ -56868,13 +56540,13 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir for ; !r.CheckBreak(); yyj4531++ { if yyj4531 >= len(yyv4531) { - yyv4531 = append(yyv4531, NodeSelectorRequirement{}) // var yyz4531 NodeSelectorRequirement + yyv4531 = append(yyv4531, PersistentVolume{}) // var yyz4531 PersistentVolume yyc4531 = true } yyh4531.ElemContainerState(yyj4531) if yyj4531 < len(yyv4531) { if r.TryDecodeAsNil() { - yyv4531[yyj4531] = NodeSelectorRequirement{} + yyv4531[yyj4531] = PersistentVolume{} } else { yyv4534 := &yyv4531[yyj4531] yyv4534.CodecDecodeSelf(d) @@ -56889,7 +56561,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir yyv4531 = yyv4531[:yyj4531] yyc4531 = true } else if yyj4531 == 0 && yyv4531 == nil { - yyv4531 = []NodeSelectorRequirement{} + yyv4531 = []PersistentVolume{} yyc4531 = true } } @@ -56899,7 +56571,7 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } -func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -56912,7 +56584,7 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -56922,7 +56594,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 var yyc4537 bool if yyl4537 == 0 { if yyv4537 == nil { - yyv4537 = []PodAffinityTerm{} + yyv4537 = []PersistentVolumeClaim{} yyc4537 = true } else if len(yyv4537) != 0 { yyv4537 = yyv4537[:0] @@ -56935,15 +56607,15 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 yyrg4537 := len(yyv4537) > 0 yyv24537 := yyv4537 - yyrl4537, yyrt4537 = z.DecInferLen(yyl4537, z.DecBasicHandle().MaxInitLen, 48) + yyrl4537, yyrt4537 = z.DecInferLen(yyl4537, z.DecBasicHandle().MaxInitLen, 368) if yyrt4537 { if yyrl4537 <= cap(yyv4537) { yyv4537 = yyv4537[:yyrl4537] } else { - yyv4537 = make([]PodAffinityTerm, yyrl4537) + yyv4537 = make([]PersistentVolumeClaim, yyrl4537) } } else { - yyv4537 = make([]PodAffinityTerm, yyrl4537) + yyv4537 = make([]PersistentVolumeClaim, yyrl4537) } yyc4537 = true yyrr4537 = len(yyv4537) @@ -56958,7 +56630,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 for ; yyj4537 < yyrr4537; yyj4537++ { yyh4537.ElemContainerState(yyj4537) if r.TryDecodeAsNil() { - yyv4537[yyj4537] = PodAffinityTerm{} + yyv4537[yyj4537] = PersistentVolumeClaim{} } else { yyv4538 := &yyv4537[yyj4537] yyv4538.CodecDecodeSelf(d) @@ -56967,10 +56639,10 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } if yyrt4537 { for ; yyj4537 < yyl4537; yyj4537++ { - yyv4537 = append(yyv4537, PodAffinityTerm{}) + yyv4537 = append(yyv4537, PersistentVolumeClaim{}) yyh4537.ElemContainerState(yyj4537) if r.TryDecodeAsNil() { - yyv4537[yyj4537] = PodAffinityTerm{} + yyv4537[yyj4537] = PersistentVolumeClaim{} } else { yyv4539 := &yyv4537[yyj4537] yyv4539.CodecDecodeSelf(d) @@ -56984,13 +56656,13 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 for ; !r.CheckBreak(); yyj4537++ { if yyj4537 >= len(yyv4537) { - yyv4537 = append(yyv4537, PodAffinityTerm{}) // var yyz4537 PodAffinityTerm + yyv4537 = append(yyv4537, PersistentVolumeClaim{}) // var yyz4537 PersistentVolumeClaim yyc4537 = true } yyh4537.ElemContainerState(yyj4537) if yyj4537 < len(yyv4537) { if r.TryDecodeAsNil() { - yyv4537[yyj4537] = PodAffinityTerm{} + yyv4537[yyj4537] = PersistentVolumeClaim{} } else { yyv4540 := &yyv4537[yyj4537] yyv4540.CodecDecodeSelf(d) @@ -57005,7 +56677,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 yyv4537 = yyv4537[:yyj4537] yyc4537 = true } else if yyj4537 == 0 && yyv4537 == nil { - yyv4537 = []PodAffinityTerm{} + yyv4537 = []PersistentVolumeClaim{} yyc4537 = true } } @@ -57015,7 +56687,7 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } -func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinityTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -57028,7 +56700,7 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinityTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -57038,7 +56710,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit var yyc4543 bool if yyl4543 == 0 { if yyv4543 == nil { - yyv4543 = []WeightedPodAffinityTerm{} + yyv4543 = []KeyToPath{} yyc4543 = true } else if len(yyv4543) != 0 { yyv4543 = yyv4543[:0] @@ -57051,15 +56723,15 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit yyrg4543 := len(yyv4543) > 0 yyv24543 := yyv4543 - yyrl4543, yyrt4543 = z.DecInferLen(yyl4543, z.DecBasicHandle().MaxInitLen, 56) + yyrl4543, yyrt4543 = z.DecInferLen(yyl4543, z.DecBasicHandle().MaxInitLen, 40) if yyrt4543 { if yyrl4543 <= cap(yyv4543) { yyv4543 = yyv4543[:yyrl4543] } else { - yyv4543 = make([]WeightedPodAffinityTerm, yyrl4543) + yyv4543 = make([]KeyToPath, yyrl4543) } } else { - yyv4543 = make([]WeightedPodAffinityTerm, yyrl4543) + yyv4543 = make([]KeyToPath, yyrl4543) } yyc4543 = true yyrr4543 = len(yyv4543) @@ -57074,7 +56746,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit for ; yyj4543 < yyrr4543; yyj4543++ { yyh4543.ElemContainerState(yyj4543) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = WeightedPodAffinityTerm{} + yyv4543[yyj4543] = KeyToPath{} } else { yyv4544 := &yyv4543[yyj4543] yyv4544.CodecDecodeSelf(d) @@ -57083,10 +56755,10 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } if yyrt4543 { for ; yyj4543 < yyl4543; yyj4543++ { - yyv4543 = append(yyv4543, WeightedPodAffinityTerm{}) + yyv4543 = append(yyv4543, KeyToPath{}) yyh4543.ElemContainerState(yyj4543) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = WeightedPodAffinityTerm{} + yyv4543[yyj4543] = KeyToPath{} } else { yyv4545 := &yyv4543[yyj4543] yyv4545.CodecDecodeSelf(d) @@ -57100,13 +56772,13 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit for ; !r.CheckBreak(); yyj4543++ { if yyj4543 >= len(yyv4543) { - yyv4543 = append(yyv4543, WeightedPodAffinityTerm{}) // var yyz4543 WeightedPodAffinityTerm + yyv4543 = append(yyv4543, KeyToPath{}) // var yyz4543 KeyToPath yyc4543 = true } yyh4543.ElemContainerState(yyj4543) if yyj4543 < len(yyv4543) { if r.TryDecodeAsNil() { - yyv4543[yyj4543] = WeightedPodAffinityTerm{} + yyv4543[yyj4543] = KeyToPath{} } else { yyv4546 := &yyv4543[yyj4543] yyv4546.CodecDecodeSelf(d) @@ -57121,7 +56793,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit yyv4543 = yyv4543[:yyj4543] yyc4543 = true } else if yyj4543 == 0 && yyv4543 == nil { - yyv4543 = []WeightedPodAffinityTerm{} + yyv4543 = []KeyToPath{} yyc4543 = true } } @@ -57131,7 +56803,7 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } -func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredSchedulingTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -57144,7 +56816,7 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulingTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -57154,7 +56826,7 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin var yyc4549 bool if yyl4549 == 0 { if yyv4549 == nil { - yyv4549 = []PreferredSchedulingTerm{} + yyv4549 = []HTTPHeader{} yyc4549 = true } else if len(yyv4549) != 0 { yyv4549 = yyv4549[:0] @@ -57172,10 +56844,10 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin if yyrl4549 <= cap(yyv4549) { yyv4549 = yyv4549[:yyrl4549] } else { - yyv4549 = make([]PreferredSchedulingTerm, yyrl4549) + yyv4549 = make([]HTTPHeader, yyrl4549) } } else { - yyv4549 = make([]PreferredSchedulingTerm, yyrl4549) + yyv4549 = make([]HTTPHeader, yyrl4549) } yyc4549 = true yyrr4549 = len(yyv4549) @@ -57190,7 +56862,7 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin for ; yyj4549 < yyrr4549; yyj4549++ { yyh4549.ElemContainerState(yyj4549) if r.TryDecodeAsNil() { - yyv4549[yyj4549] = PreferredSchedulingTerm{} + yyv4549[yyj4549] = HTTPHeader{} } else { yyv4550 := &yyv4549[yyj4549] yyv4550.CodecDecodeSelf(d) @@ -57199,10 +56871,10 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } if yyrt4549 { for ; yyj4549 < yyl4549; yyj4549++ { - yyv4549 = append(yyv4549, PreferredSchedulingTerm{}) + yyv4549 = append(yyv4549, HTTPHeader{}) yyh4549.ElemContainerState(yyj4549) if r.TryDecodeAsNil() { - yyv4549[yyj4549] = PreferredSchedulingTerm{} + yyv4549[yyj4549] = HTTPHeader{} } else { yyv4551 := &yyv4549[yyj4549] yyv4551.CodecDecodeSelf(d) @@ -57216,13 +56888,13 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin for ; !r.CheckBreak(); yyj4549++ { if yyj4549 >= len(yyv4549) { - yyv4549 = append(yyv4549, PreferredSchedulingTerm{}) // var yyz4549 PreferredSchedulingTerm + yyv4549 = append(yyv4549, HTTPHeader{}) // var yyz4549 HTTPHeader yyc4549 = true } yyh4549.ElemContainerState(yyj4549) if yyj4549 < len(yyv4549) { if r.TryDecodeAsNil() { - yyv4549[yyj4549] = PreferredSchedulingTerm{} + yyv4549[yyj4549] = HTTPHeader{} } else { yyv4552 := &yyv4549[yyj4549] yyv4552.CodecDecodeSelf(d) @@ -57237,7 +56909,7 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin yyv4549 = yyv4549[:yyj4549] yyc4549 = true } else if yyj4549 == 0 && yyv4549 == nil { - yyv4549 = []PreferredSchedulingTerm{} + yyv4549 = []HTTPHeader{} yyc4549 = true } } @@ -57247,15 +56919,1050 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } -func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4553 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4554 := &yyv4553 - yy4554.CodecEncodeSelf(e) + yyv4553.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4554 := *v + yyh4554, yyl4554 := z.DecSliceHelperStart() + var yyc4554 bool + if yyl4554 == 0 { + if yyv4554 == nil { + yyv4554 = []Capability{} + yyc4554 = true + } else if len(yyv4554) != 0 { + yyv4554 = yyv4554[:0] + yyc4554 = true + } + } else if yyl4554 > 0 { + var yyrr4554, yyrl4554 int + var yyrt4554 bool + if yyl4554 > cap(yyv4554) { + + yyrl4554, yyrt4554 = z.DecInferLen(yyl4554, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4554 { + if yyrl4554 <= cap(yyv4554) { + yyv4554 = yyv4554[:yyrl4554] + } else { + yyv4554 = make([]Capability, yyrl4554) + } + } else { + yyv4554 = make([]Capability, yyrl4554) + } + yyc4554 = true + yyrr4554 = len(yyv4554) + } else if yyl4554 != len(yyv4554) { + yyv4554 = yyv4554[:yyl4554] + yyc4554 = true + } + yyj4554 := 0 + for ; yyj4554 < yyrr4554; yyj4554++ { + yyh4554.ElemContainerState(yyj4554) + if r.TryDecodeAsNil() { + yyv4554[yyj4554] = "" + } else { + yyv4554[yyj4554] = Capability(r.DecodeString()) + } + + } + if yyrt4554 { + for ; yyj4554 < yyl4554; yyj4554++ { + yyv4554 = append(yyv4554, "") + yyh4554.ElemContainerState(yyj4554) + if r.TryDecodeAsNil() { + yyv4554[yyj4554] = "" + } else { + yyv4554[yyj4554] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj4554 := 0 + for ; !r.CheckBreak(); yyj4554++ { + + if yyj4554 >= len(yyv4554) { + yyv4554 = append(yyv4554, "") // var yyz4554 Capability + yyc4554 = true + } + yyh4554.ElemContainerState(yyj4554) + if yyj4554 < len(yyv4554) { + if r.TryDecodeAsNil() { + yyv4554[yyj4554] = "" + } else { + yyv4554[yyj4554] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4554 < len(yyv4554) { + yyv4554 = yyv4554[:yyj4554] + yyc4554 = true + } else if yyj4554 == 0 && yyv4554 == nil { + yyv4554 = []Capability{} + yyc4554 = true + } + } + yyh4554.End() + if yyc4554 { + *v = yyv4554 + } +} + +func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4558 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4559 := &yyv4558 + yy4559.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4560 := *v + yyh4560, yyl4560 := z.DecSliceHelperStart() + var yyc4560 bool + if yyl4560 == 0 { + if yyv4560 == nil { + yyv4560 = []ContainerPort{} + yyc4560 = true + } else if len(yyv4560) != 0 { + yyv4560 = yyv4560[:0] + yyc4560 = true + } + } else if yyl4560 > 0 { + var yyrr4560, yyrl4560 int + var yyrt4560 bool + if yyl4560 > cap(yyv4560) { + + yyrg4560 := len(yyv4560) > 0 + yyv24560 := yyv4560 + yyrl4560, yyrt4560 = z.DecInferLen(yyl4560, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4560 { + if yyrl4560 <= cap(yyv4560) { + yyv4560 = yyv4560[:yyrl4560] + } else { + yyv4560 = make([]ContainerPort, yyrl4560) + } + } else { + yyv4560 = make([]ContainerPort, yyrl4560) + } + yyc4560 = true + yyrr4560 = len(yyv4560) + if yyrg4560 { + copy(yyv4560, yyv24560) + } + } else if yyl4560 != len(yyv4560) { + yyv4560 = yyv4560[:yyl4560] + yyc4560 = true + } + yyj4560 := 0 + for ; yyj4560 < yyrr4560; yyj4560++ { + yyh4560.ElemContainerState(yyj4560) + if r.TryDecodeAsNil() { + yyv4560[yyj4560] = ContainerPort{} + } else { + yyv4561 := &yyv4560[yyj4560] + yyv4561.CodecDecodeSelf(d) + } + + } + if yyrt4560 { + for ; yyj4560 < yyl4560; yyj4560++ { + yyv4560 = append(yyv4560, ContainerPort{}) + yyh4560.ElemContainerState(yyj4560) + if r.TryDecodeAsNil() { + yyv4560[yyj4560] = ContainerPort{} + } else { + yyv4562 := &yyv4560[yyj4560] + yyv4562.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4560 := 0 + for ; !r.CheckBreak(); yyj4560++ { + + if yyj4560 >= len(yyv4560) { + yyv4560 = append(yyv4560, ContainerPort{}) // var yyz4560 ContainerPort + yyc4560 = true + } + yyh4560.ElemContainerState(yyj4560) + if yyj4560 < len(yyv4560) { + if r.TryDecodeAsNil() { + yyv4560[yyj4560] = ContainerPort{} + } else { + yyv4563 := &yyv4560[yyj4560] + yyv4563.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4560 < len(yyv4560) { + yyv4560 = yyv4560[:yyj4560] + yyc4560 = true + } else if yyj4560 == 0 && yyv4560 == nil { + yyv4560 = []ContainerPort{} + yyc4560 = true + } + } + yyh4560.End() + if yyc4560 { + *v = yyv4560 + } +} + +func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4564 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4565 := &yyv4564 + yy4565.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4566 := *v + yyh4566, yyl4566 := z.DecSliceHelperStart() + var yyc4566 bool + if yyl4566 == 0 { + if yyv4566 == nil { + yyv4566 = []EnvVar{} + yyc4566 = true + } else if len(yyv4566) != 0 { + yyv4566 = yyv4566[:0] + yyc4566 = true + } + } else if yyl4566 > 0 { + var yyrr4566, yyrl4566 int + var yyrt4566 bool + if yyl4566 > cap(yyv4566) { + + yyrg4566 := len(yyv4566) > 0 + yyv24566 := yyv4566 + yyrl4566, yyrt4566 = z.DecInferLen(yyl4566, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4566 { + if yyrl4566 <= cap(yyv4566) { + yyv4566 = yyv4566[:yyrl4566] + } else { + yyv4566 = make([]EnvVar, yyrl4566) + } + } else { + yyv4566 = make([]EnvVar, yyrl4566) + } + yyc4566 = true + yyrr4566 = len(yyv4566) + if yyrg4566 { + copy(yyv4566, yyv24566) + } + } else if yyl4566 != len(yyv4566) { + yyv4566 = yyv4566[:yyl4566] + yyc4566 = true + } + yyj4566 := 0 + for ; yyj4566 < yyrr4566; yyj4566++ { + yyh4566.ElemContainerState(yyj4566) + if r.TryDecodeAsNil() { + yyv4566[yyj4566] = EnvVar{} + } else { + yyv4567 := &yyv4566[yyj4566] + yyv4567.CodecDecodeSelf(d) + } + + } + if yyrt4566 { + for ; yyj4566 < yyl4566; yyj4566++ { + yyv4566 = append(yyv4566, EnvVar{}) + yyh4566.ElemContainerState(yyj4566) + if r.TryDecodeAsNil() { + yyv4566[yyj4566] = EnvVar{} + } else { + yyv4568 := &yyv4566[yyj4566] + yyv4568.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4566 := 0 + for ; !r.CheckBreak(); yyj4566++ { + + if yyj4566 >= len(yyv4566) { + yyv4566 = append(yyv4566, EnvVar{}) // var yyz4566 EnvVar + yyc4566 = true + } + yyh4566.ElemContainerState(yyj4566) + if yyj4566 < len(yyv4566) { + if r.TryDecodeAsNil() { + yyv4566[yyj4566] = EnvVar{} + } else { + yyv4569 := &yyv4566[yyj4566] + yyv4569.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4566 < len(yyv4566) { + yyv4566 = yyv4566[:yyj4566] + yyc4566 = true + } else if yyj4566 == 0 && yyv4566 == nil { + yyv4566 = []EnvVar{} + yyc4566 = true + } + } + yyh4566.End() + if yyc4566 { + *v = yyv4566 + } +} + +func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4570 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4571 := &yyv4570 + yy4571.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4572 := *v + yyh4572, yyl4572 := z.DecSliceHelperStart() + var yyc4572 bool + if yyl4572 == 0 { + if yyv4572 == nil { + yyv4572 = []VolumeMount{} + yyc4572 = true + } else if len(yyv4572) != 0 { + yyv4572 = yyv4572[:0] + yyc4572 = true + } + } else if yyl4572 > 0 { + var yyrr4572, yyrl4572 int + var yyrt4572 bool + if yyl4572 > cap(yyv4572) { + + yyrg4572 := len(yyv4572) > 0 + yyv24572 := yyv4572 + yyrl4572, yyrt4572 = z.DecInferLen(yyl4572, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4572 { + if yyrl4572 <= cap(yyv4572) { + yyv4572 = yyv4572[:yyrl4572] + } else { + yyv4572 = make([]VolumeMount, yyrl4572) + } + } else { + yyv4572 = make([]VolumeMount, yyrl4572) + } + yyc4572 = true + yyrr4572 = len(yyv4572) + if yyrg4572 { + copy(yyv4572, yyv24572) + } + } else if yyl4572 != len(yyv4572) { + yyv4572 = yyv4572[:yyl4572] + yyc4572 = true + } + yyj4572 := 0 + for ; yyj4572 < yyrr4572; yyj4572++ { + yyh4572.ElemContainerState(yyj4572) + if r.TryDecodeAsNil() { + yyv4572[yyj4572] = VolumeMount{} + } else { + yyv4573 := &yyv4572[yyj4572] + yyv4573.CodecDecodeSelf(d) + } + + } + if yyrt4572 { + for ; yyj4572 < yyl4572; yyj4572++ { + yyv4572 = append(yyv4572, VolumeMount{}) + yyh4572.ElemContainerState(yyj4572) + if r.TryDecodeAsNil() { + yyv4572[yyj4572] = VolumeMount{} + } else { + yyv4574 := &yyv4572[yyj4572] + yyv4574.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4572 := 0 + for ; !r.CheckBreak(); yyj4572++ { + + if yyj4572 >= len(yyv4572) { + yyv4572 = append(yyv4572, VolumeMount{}) // var yyz4572 VolumeMount + yyc4572 = true + } + yyh4572.ElemContainerState(yyj4572) + if yyj4572 < len(yyv4572) { + if r.TryDecodeAsNil() { + yyv4572[yyj4572] = VolumeMount{} + } else { + yyv4575 := &yyv4572[yyj4572] + yyv4575.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4572 < len(yyv4572) { + yyv4572 = yyv4572[:yyj4572] + yyc4572 = true + } else if yyj4572 == 0 && yyv4572 == nil { + yyv4572 = []VolumeMount{} + yyc4572 = true + } + } + yyh4572.End() + if yyc4572 { + *v = yyv4572 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4576 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4577 := &yyv4576 + yy4577.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4578 := *v + yyh4578, yyl4578 := z.DecSliceHelperStart() + var yyc4578 bool + if yyl4578 == 0 { + if yyv4578 == nil { + yyv4578 = []NodeSelectorTerm{} + yyc4578 = true + } else if len(yyv4578) != 0 { + yyv4578 = yyv4578[:0] + yyc4578 = true + } + } else if yyl4578 > 0 { + var yyrr4578, yyrl4578 int + var yyrt4578 bool + if yyl4578 > cap(yyv4578) { + + yyrg4578 := len(yyv4578) > 0 + yyv24578 := yyv4578 + yyrl4578, yyrt4578 = z.DecInferLen(yyl4578, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4578 { + if yyrl4578 <= cap(yyv4578) { + yyv4578 = yyv4578[:yyrl4578] + } else { + yyv4578 = make([]NodeSelectorTerm, yyrl4578) + } + } else { + yyv4578 = make([]NodeSelectorTerm, yyrl4578) + } + yyc4578 = true + yyrr4578 = len(yyv4578) + if yyrg4578 { + copy(yyv4578, yyv24578) + } + } else if yyl4578 != len(yyv4578) { + yyv4578 = yyv4578[:yyl4578] + yyc4578 = true + } + yyj4578 := 0 + for ; yyj4578 < yyrr4578; yyj4578++ { + yyh4578.ElemContainerState(yyj4578) + if r.TryDecodeAsNil() { + yyv4578[yyj4578] = NodeSelectorTerm{} + } else { + yyv4579 := &yyv4578[yyj4578] + yyv4579.CodecDecodeSelf(d) + } + + } + if yyrt4578 { + for ; yyj4578 < yyl4578; yyj4578++ { + yyv4578 = append(yyv4578, NodeSelectorTerm{}) + yyh4578.ElemContainerState(yyj4578) + if r.TryDecodeAsNil() { + yyv4578[yyj4578] = NodeSelectorTerm{} + } else { + yyv4580 := &yyv4578[yyj4578] + yyv4580.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4578 := 0 + for ; !r.CheckBreak(); yyj4578++ { + + if yyj4578 >= len(yyv4578) { + yyv4578 = append(yyv4578, NodeSelectorTerm{}) // var yyz4578 NodeSelectorTerm + yyc4578 = true + } + yyh4578.ElemContainerState(yyj4578) + if yyj4578 < len(yyv4578) { + if r.TryDecodeAsNil() { + yyv4578[yyj4578] = NodeSelectorTerm{} + } else { + yyv4581 := &yyv4578[yyj4578] + yyv4581.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4578 < len(yyv4578) { + yyv4578 = yyv4578[:yyj4578] + yyc4578 = true + } else if yyj4578 == 0 && yyv4578 == nil { + yyv4578 = []NodeSelectorTerm{} + yyc4578 = true + } + } + yyh4578.End() + if yyc4578 { + *v = yyv4578 + } +} + +func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequirement, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4582 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4583 := &yyv4582 + yy4583.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequirement, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4584 := *v + yyh4584, yyl4584 := z.DecSliceHelperStart() + var yyc4584 bool + if yyl4584 == 0 { + if yyv4584 == nil { + yyv4584 = []NodeSelectorRequirement{} + yyc4584 = true + } else if len(yyv4584) != 0 { + yyv4584 = yyv4584[:0] + yyc4584 = true + } + } else if yyl4584 > 0 { + var yyrr4584, yyrl4584 int + var yyrt4584 bool + if yyl4584 > cap(yyv4584) { + + yyrg4584 := len(yyv4584) > 0 + yyv24584 := yyv4584 + yyrl4584, yyrt4584 = z.DecInferLen(yyl4584, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4584 { + if yyrl4584 <= cap(yyv4584) { + yyv4584 = yyv4584[:yyrl4584] + } else { + yyv4584 = make([]NodeSelectorRequirement, yyrl4584) + } + } else { + yyv4584 = make([]NodeSelectorRequirement, yyrl4584) + } + yyc4584 = true + yyrr4584 = len(yyv4584) + if yyrg4584 { + copy(yyv4584, yyv24584) + } + } else if yyl4584 != len(yyv4584) { + yyv4584 = yyv4584[:yyl4584] + yyc4584 = true + } + yyj4584 := 0 + for ; yyj4584 < yyrr4584; yyj4584++ { + yyh4584.ElemContainerState(yyj4584) + if r.TryDecodeAsNil() { + yyv4584[yyj4584] = NodeSelectorRequirement{} + } else { + yyv4585 := &yyv4584[yyj4584] + yyv4585.CodecDecodeSelf(d) + } + + } + if yyrt4584 { + for ; yyj4584 < yyl4584; yyj4584++ { + yyv4584 = append(yyv4584, NodeSelectorRequirement{}) + yyh4584.ElemContainerState(yyj4584) + if r.TryDecodeAsNil() { + yyv4584[yyj4584] = NodeSelectorRequirement{} + } else { + yyv4586 := &yyv4584[yyj4584] + yyv4586.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4584 := 0 + for ; !r.CheckBreak(); yyj4584++ { + + if yyj4584 >= len(yyv4584) { + yyv4584 = append(yyv4584, NodeSelectorRequirement{}) // var yyz4584 NodeSelectorRequirement + yyc4584 = true + } + yyh4584.ElemContainerState(yyj4584) + if yyj4584 < len(yyv4584) { + if r.TryDecodeAsNil() { + yyv4584[yyj4584] = NodeSelectorRequirement{} + } else { + yyv4587 := &yyv4584[yyj4584] + yyv4587.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4584 < len(yyv4584) { + yyv4584 = yyv4584[:yyj4584] + yyc4584 = true + } else if yyj4584 == 0 && yyv4584 == nil { + yyv4584 = []NodeSelectorRequirement{} + yyc4584 = true + } + } + yyh4584.End() + if yyc4584 { + *v = yyv4584 + } +} + +func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4588 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4589 := &yyv4588 + yy4589.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4590 := *v + yyh4590, yyl4590 := z.DecSliceHelperStart() + var yyc4590 bool + if yyl4590 == 0 { + if yyv4590 == nil { + yyv4590 = []PodAffinityTerm{} + yyc4590 = true + } else if len(yyv4590) != 0 { + yyv4590 = yyv4590[:0] + yyc4590 = true + } + } else if yyl4590 > 0 { + var yyrr4590, yyrl4590 int + var yyrt4590 bool + if yyl4590 > cap(yyv4590) { + + yyrg4590 := len(yyv4590) > 0 + yyv24590 := yyv4590 + yyrl4590, yyrt4590 = z.DecInferLen(yyl4590, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4590 { + if yyrl4590 <= cap(yyv4590) { + yyv4590 = yyv4590[:yyrl4590] + } else { + yyv4590 = make([]PodAffinityTerm, yyrl4590) + } + } else { + yyv4590 = make([]PodAffinityTerm, yyrl4590) + } + yyc4590 = true + yyrr4590 = len(yyv4590) + if yyrg4590 { + copy(yyv4590, yyv24590) + } + } else if yyl4590 != len(yyv4590) { + yyv4590 = yyv4590[:yyl4590] + yyc4590 = true + } + yyj4590 := 0 + for ; yyj4590 < yyrr4590; yyj4590++ { + yyh4590.ElemContainerState(yyj4590) + if r.TryDecodeAsNil() { + yyv4590[yyj4590] = PodAffinityTerm{} + } else { + yyv4591 := &yyv4590[yyj4590] + yyv4591.CodecDecodeSelf(d) + } + + } + if yyrt4590 { + for ; yyj4590 < yyl4590; yyj4590++ { + yyv4590 = append(yyv4590, PodAffinityTerm{}) + yyh4590.ElemContainerState(yyj4590) + if r.TryDecodeAsNil() { + yyv4590[yyj4590] = PodAffinityTerm{} + } else { + yyv4592 := &yyv4590[yyj4590] + yyv4592.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4590 := 0 + for ; !r.CheckBreak(); yyj4590++ { + + if yyj4590 >= len(yyv4590) { + yyv4590 = append(yyv4590, PodAffinityTerm{}) // var yyz4590 PodAffinityTerm + yyc4590 = true + } + yyh4590.ElemContainerState(yyj4590) + if yyj4590 < len(yyv4590) { + if r.TryDecodeAsNil() { + yyv4590[yyj4590] = PodAffinityTerm{} + } else { + yyv4593 := &yyv4590[yyj4590] + yyv4593.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4590 < len(yyv4590) { + yyv4590 = yyv4590[:yyj4590] + yyc4590 = true + } else if yyj4590 == 0 && yyv4590 == nil { + yyv4590 = []PodAffinityTerm{} + yyc4590 = true + } + } + yyh4590.End() + if yyc4590 { + *v = yyv4590 + } +} + +func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinityTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4594 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4595 := &yyv4594 + yy4595.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinityTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4596 := *v + yyh4596, yyl4596 := z.DecSliceHelperStart() + var yyc4596 bool + if yyl4596 == 0 { + if yyv4596 == nil { + yyv4596 = []WeightedPodAffinityTerm{} + yyc4596 = true + } else if len(yyv4596) != 0 { + yyv4596 = yyv4596[:0] + yyc4596 = true + } + } else if yyl4596 > 0 { + var yyrr4596, yyrl4596 int + var yyrt4596 bool + if yyl4596 > cap(yyv4596) { + + yyrg4596 := len(yyv4596) > 0 + yyv24596 := yyv4596 + yyrl4596, yyrt4596 = z.DecInferLen(yyl4596, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4596 { + if yyrl4596 <= cap(yyv4596) { + yyv4596 = yyv4596[:yyrl4596] + } else { + yyv4596 = make([]WeightedPodAffinityTerm, yyrl4596) + } + } else { + yyv4596 = make([]WeightedPodAffinityTerm, yyrl4596) + } + yyc4596 = true + yyrr4596 = len(yyv4596) + if yyrg4596 { + copy(yyv4596, yyv24596) + } + } else if yyl4596 != len(yyv4596) { + yyv4596 = yyv4596[:yyl4596] + yyc4596 = true + } + yyj4596 := 0 + for ; yyj4596 < yyrr4596; yyj4596++ { + yyh4596.ElemContainerState(yyj4596) + if r.TryDecodeAsNil() { + yyv4596[yyj4596] = WeightedPodAffinityTerm{} + } else { + yyv4597 := &yyv4596[yyj4596] + yyv4597.CodecDecodeSelf(d) + } + + } + if yyrt4596 { + for ; yyj4596 < yyl4596; yyj4596++ { + yyv4596 = append(yyv4596, WeightedPodAffinityTerm{}) + yyh4596.ElemContainerState(yyj4596) + if r.TryDecodeAsNil() { + yyv4596[yyj4596] = WeightedPodAffinityTerm{} + } else { + yyv4598 := &yyv4596[yyj4596] + yyv4598.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4596 := 0 + for ; !r.CheckBreak(); yyj4596++ { + + if yyj4596 >= len(yyv4596) { + yyv4596 = append(yyv4596, WeightedPodAffinityTerm{}) // var yyz4596 WeightedPodAffinityTerm + yyc4596 = true + } + yyh4596.ElemContainerState(yyj4596) + if yyj4596 < len(yyv4596) { + if r.TryDecodeAsNil() { + yyv4596[yyj4596] = WeightedPodAffinityTerm{} + } else { + yyv4599 := &yyv4596[yyj4596] + yyv4599.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4596 < len(yyv4596) { + yyv4596 = yyv4596[:yyj4596] + yyc4596 = true + } else if yyj4596 == 0 && yyv4596 == nil { + yyv4596 = []WeightedPodAffinityTerm{} + yyc4596 = true + } + } + yyh4596.End() + if yyc4596 { + *v = yyv4596 + } +} + +func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredSchedulingTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4600 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4601 := &yyv4600 + yy4601.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulingTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4602 := *v + yyh4602, yyl4602 := z.DecSliceHelperStart() + var yyc4602 bool + if yyl4602 == 0 { + if yyv4602 == nil { + yyv4602 = []PreferredSchedulingTerm{} + yyc4602 = true + } else if len(yyv4602) != 0 { + yyv4602 = yyv4602[:0] + yyc4602 = true + } + } else if yyl4602 > 0 { + var yyrr4602, yyrl4602 int + var yyrt4602 bool + if yyl4602 > cap(yyv4602) { + + yyrg4602 := len(yyv4602) > 0 + yyv24602 := yyv4602 + yyrl4602, yyrt4602 = z.DecInferLen(yyl4602, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4602 { + if yyrl4602 <= cap(yyv4602) { + yyv4602 = yyv4602[:yyrl4602] + } else { + yyv4602 = make([]PreferredSchedulingTerm, yyrl4602) + } + } else { + yyv4602 = make([]PreferredSchedulingTerm, yyrl4602) + } + yyc4602 = true + yyrr4602 = len(yyv4602) + if yyrg4602 { + copy(yyv4602, yyv24602) + } + } else if yyl4602 != len(yyv4602) { + yyv4602 = yyv4602[:yyl4602] + yyc4602 = true + } + yyj4602 := 0 + for ; yyj4602 < yyrr4602; yyj4602++ { + yyh4602.ElemContainerState(yyj4602) + if r.TryDecodeAsNil() { + yyv4602[yyj4602] = PreferredSchedulingTerm{} + } else { + yyv4603 := &yyv4602[yyj4602] + yyv4603.CodecDecodeSelf(d) + } + + } + if yyrt4602 { + for ; yyj4602 < yyl4602; yyj4602++ { + yyv4602 = append(yyv4602, PreferredSchedulingTerm{}) + yyh4602.ElemContainerState(yyj4602) + if r.TryDecodeAsNil() { + yyv4602[yyj4602] = PreferredSchedulingTerm{} + } else { + yyv4604 := &yyv4602[yyj4602] + yyv4604.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4602 := 0 + for ; !r.CheckBreak(); yyj4602++ { + + if yyj4602 >= len(yyv4602) { + yyv4602 = append(yyv4602, PreferredSchedulingTerm{}) // var yyz4602 PreferredSchedulingTerm + yyc4602 = true + } + yyh4602.ElemContainerState(yyj4602) + if yyj4602 < len(yyv4602) { + if r.TryDecodeAsNil() { + yyv4602[yyj4602] = PreferredSchedulingTerm{} + } else { + yyv4605 := &yyv4602[yyj4602] + yyv4605.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4602 < len(yyv4602) { + yyv4602 = yyv4602[:yyj4602] + yyc4602 = true + } else if yyj4602 == 0 && yyv4602 == nil { + yyv4602 = []PreferredSchedulingTerm{} + yyc4602 = true + } + } + yyh4602.End() + if yyc4602 { + *v = yyv4602 + } +} + +func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4606 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4607 := &yyv4606 + yy4607.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57265,83 +57972,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4555 := *v - yyh4555, yyl4555 := z.DecSliceHelperStart() - var yyc4555 bool - if yyl4555 == 0 { - if yyv4555 == nil { - yyv4555 = []Volume{} - yyc4555 = true - } else if len(yyv4555) != 0 { - yyv4555 = yyv4555[:0] - yyc4555 = true + yyv4608 := *v + yyh4608, yyl4608 := z.DecSliceHelperStart() + var yyc4608 bool + if yyl4608 == 0 { + if yyv4608 == nil { + yyv4608 = []Volume{} + yyc4608 = true + } else if len(yyv4608) != 0 { + yyv4608 = yyv4608[:0] + yyc4608 = true } - } else if yyl4555 > 0 { - var yyrr4555, yyrl4555 int - var yyrt4555 bool - if yyl4555 > cap(yyv4555) { + } else if yyl4608 > 0 { + var yyrr4608, yyrl4608 int + var yyrt4608 bool + if yyl4608 > cap(yyv4608) { - yyrg4555 := len(yyv4555) > 0 - yyv24555 := yyv4555 - yyrl4555, yyrt4555 = z.DecInferLen(yyl4555, z.DecBasicHandle().MaxInitLen, 184) - if yyrt4555 { - if yyrl4555 <= cap(yyv4555) { - yyv4555 = yyv4555[:yyrl4555] + yyrg4608 := len(yyv4608) > 0 + yyv24608 := yyv4608 + yyrl4608, yyrt4608 = z.DecInferLen(yyl4608, z.DecBasicHandle().MaxInitLen, 192) + if yyrt4608 { + if yyrl4608 <= cap(yyv4608) { + yyv4608 = yyv4608[:yyrl4608] } else { - yyv4555 = make([]Volume, yyrl4555) + yyv4608 = make([]Volume, yyrl4608) } } else { - yyv4555 = make([]Volume, yyrl4555) + yyv4608 = make([]Volume, yyrl4608) } - yyc4555 = true - yyrr4555 = len(yyv4555) - if yyrg4555 { - copy(yyv4555, yyv24555) + yyc4608 = true + yyrr4608 = len(yyv4608) + if yyrg4608 { + copy(yyv4608, yyv24608) } - } else if yyl4555 != len(yyv4555) { - yyv4555 = yyv4555[:yyl4555] - yyc4555 = true + } else if yyl4608 != len(yyv4608) { + yyv4608 = yyv4608[:yyl4608] + yyc4608 = true } - yyj4555 := 0 - for ; yyj4555 < yyrr4555; yyj4555++ { - yyh4555.ElemContainerState(yyj4555) + yyj4608 := 0 + for ; yyj4608 < yyrr4608; yyj4608++ { + yyh4608.ElemContainerState(yyj4608) if r.TryDecodeAsNil() { - yyv4555[yyj4555] = Volume{} + yyv4608[yyj4608] = Volume{} } else { - yyv4556 := &yyv4555[yyj4555] - yyv4556.CodecDecodeSelf(d) + yyv4609 := &yyv4608[yyj4608] + yyv4609.CodecDecodeSelf(d) } } - if yyrt4555 { - for ; yyj4555 < yyl4555; yyj4555++ { - yyv4555 = append(yyv4555, Volume{}) - yyh4555.ElemContainerState(yyj4555) + if yyrt4608 { + for ; yyj4608 < yyl4608; yyj4608++ { + yyv4608 = append(yyv4608, Volume{}) + yyh4608.ElemContainerState(yyj4608) if r.TryDecodeAsNil() { - yyv4555[yyj4555] = Volume{} + yyv4608[yyj4608] = Volume{} } else { - yyv4557 := &yyv4555[yyj4555] - yyv4557.CodecDecodeSelf(d) + yyv4610 := &yyv4608[yyj4608] + yyv4610.CodecDecodeSelf(d) } } } } else { - yyj4555 := 0 - for ; !r.CheckBreak(); yyj4555++ { + yyj4608 := 0 + for ; !r.CheckBreak(); yyj4608++ { - if yyj4555 >= len(yyv4555) { - yyv4555 = append(yyv4555, Volume{}) // var yyz4555 Volume - yyc4555 = true + if yyj4608 >= len(yyv4608) { + yyv4608 = append(yyv4608, Volume{}) // var yyz4608 Volume + yyc4608 = true } - yyh4555.ElemContainerState(yyj4555) - if yyj4555 < len(yyv4555) { + yyh4608.ElemContainerState(yyj4608) + if yyj4608 < len(yyv4608) { if r.TryDecodeAsNil() { - yyv4555[yyj4555] = Volume{} + yyv4608[yyj4608] = Volume{} } else { - yyv4558 := &yyv4555[yyj4555] - yyv4558.CodecDecodeSelf(d) + yyv4611 := &yyv4608[yyj4608] + yyv4611.CodecDecodeSelf(d) } } else { @@ -57349,17 +58056,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4555 < len(yyv4555) { - yyv4555 = yyv4555[:yyj4555] - yyc4555 = true - } else if yyj4555 == 0 && yyv4555 == nil { - yyv4555 = []Volume{} - yyc4555 = true + if yyj4608 < len(yyv4608) { + yyv4608 = yyv4608[:yyj4608] + yyc4608 = true + } else if yyj4608 == 0 && yyv4608 == nil { + yyv4608 = []Volume{} + yyc4608 = true } } - yyh4555.End() - if yyc4555 { - *v = yyv4555 + yyh4608.End() + if yyc4608 { + *v = yyv4608 } } @@ -57368,10 +58075,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4559 := range v { + for _, yyv4612 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4560 := &yyv4559 - yy4560.CodecEncodeSelf(e) + yy4613 := &yyv4612 + yy4613.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57381,83 +58088,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4561 := *v - yyh4561, yyl4561 := z.DecSliceHelperStart() - var yyc4561 bool - if yyl4561 == 0 { - if yyv4561 == nil { - yyv4561 = []Container{} - yyc4561 = true - } else if len(yyv4561) != 0 { - yyv4561 = yyv4561[:0] - yyc4561 = true + yyv4614 := *v + yyh4614, yyl4614 := z.DecSliceHelperStart() + var yyc4614 bool + if yyl4614 == 0 { + if yyv4614 == nil { + yyv4614 = []Container{} + yyc4614 = true + } else if len(yyv4614) != 0 { + yyv4614 = yyv4614[:0] + yyc4614 = true } - } else if yyl4561 > 0 { - var yyrr4561, yyrl4561 int - var yyrt4561 bool - if yyl4561 > cap(yyv4561) { + } else if yyl4614 > 0 { + var yyrr4614, yyrl4614 int + var yyrt4614 bool + if yyl4614 > cap(yyv4614) { - yyrg4561 := len(yyv4561) > 0 - yyv24561 := yyv4561 - yyrl4561, yyrt4561 = z.DecInferLen(yyl4561, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4561 { - if yyrl4561 <= cap(yyv4561) { - yyv4561 = yyv4561[:yyrl4561] + yyrg4614 := len(yyv4614) > 0 + yyv24614 := yyv4614 + yyrl4614, yyrt4614 = z.DecInferLen(yyl4614, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4614 { + if yyrl4614 <= cap(yyv4614) { + yyv4614 = yyv4614[:yyrl4614] } else { - yyv4561 = make([]Container, yyrl4561) + yyv4614 = make([]Container, yyrl4614) } } else { - yyv4561 = make([]Container, yyrl4561) + yyv4614 = make([]Container, yyrl4614) } - yyc4561 = true - yyrr4561 = len(yyv4561) - if yyrg4561 { - copy(yyv4561, yyv24561) + yyc4614 = true + yyrr4614 = len(yyv4614) + if yyrg4614 { + copy(yyv4614, yyv24614) } - } else if yyl4561 != len(yyv4561) { - yyv4561 = yyv4561[:yyl4561] - yyc4561 = true + } else if yyl4614 != len(yyv4614) { + yyv4614 = yyv4614[:yyl4614] + yyc4614 = true } - yyj4561 := 0 - for ; yyj4561 < yyrr4561; yyj4561++ { - yyh4561.ElemContainerState(yyj4561) + yyj4614 := 0 + for ; yyj4614 < yyrr4614; yyj4614++ { + yyh4614.ElemContainerState(yyj4614) if r.TryDecodeAsNil() { - yyv4561[yyj4561] = Container{} + yyv4614[yyj4614] = Container{} } else { - yyv4562 := &yyv4561[yyj4561] - yyv4562.CodecDecodeSelf(d) + yyv4615 := &yyv4614[yyj4614] + yyv4615.CodecDecodeSelf(d) } } - if yyrt4561 { - for ; yyj4561 < yyl4561; yyj4561++ { - yyv4561 = append(yyv4561, Container{}) - yyh4561.ElemContainerState(yyj4561) + if yyrt4614 { + for ; yyj4614 < yyl4614; yyj4614++ { + yyv4614 = append(yyv4614, Container{}) + yyh4614.ElemContainerState(yyj4614) if r.TryDecodeAsNil() { - yyv4561[yyj4561] = Container{} + yyv4614[yyj4614] = Container{} } else { - yyv4563 := &yyv4561[yyj4561] - yyv4563.CodecDecodeSelf(d) + yyv4616 := &yyv4614[yyj4614] + yyv4616.CodecDecodeSelf(d) } } } } else { - yyj4561 := 0 - for ; !r.CheckBreak(); yyj4561++ { + yyj4614 := 0 + for ; !r.CheckBreak(); yyj4614++ { - if yyj4561 >= len(yyv4561) { - yyv4561 = append(yyv4561, Container{}) // var yyz4561 Container - yyc4561 = true + if yyj4614 >= len(yyv4614) { + yyv4614 = append(yyv4614, Container{}) // var yyz4614 Container + yyc4614 = true } - yyh4561.ElemContainerState(yyj4561) - if yyj4561 < len(yyv4561) { + yyh4614.ElemContainerState(yyj4614) + if yyj4614 < len(yyv4614) { if r.TryDecodeAsNil() { - yyv4561[yyj4561] = Container{} + yyv4614[yyj4614] = Container{} } else { - yyv4564 := &yyv4561[yyj4561] - yyv4564.CodecDecodeSelf(d) + yyv4617 := &yyv4614[yyj4614] + yyv4617.CodecDecodeSelf(d) } } else { @@ -57465,17 +58172,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4561 < len(yyv4561) { - yyv4561 = yyv4561[:yyj4561] - yyc4561 = true - } else if yyj4561 == 0 && yyv4561 == nil { - yyv4561 = []Container{} - yyc4561 = true + if yyj4614 < len(yyv4614) { + yyv4614 = yyv4614[:yyj4614] + yyc4614 = true + } else if yyj4614 == 0 && yyv4614 == nil { + yyv4614 = []Container{} + yyc4614 = true } } - yyh4561.End() - if yyc4561 { - *v = yyv4561 + yyh4614.End() + if yyc4614 { + *v = yyv4614 } } @@ -57484,10 +58191,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4565 := range v { + for _, yyv4618 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4566 := &yyv4565 - yy4566.CodecEncodeSelf(e) + yy4619 := &yyv4618 + yy4619.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57497,83 +58204,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4567 := *v - yyh4567, yyl4567 := z.DecSliceHelperStart() - var yyc4567 bool - if yyl4567 == 0 { - if yyv4567 == nil { - yyv4567 = []LocalObjectReference{} - yyc4567 = true - } else if len(yyv4567) != 0 { - yyv4567 = yyv4567[:0] - yyc4567 = true + yyv4620 := *v + yyh4620, yyl4620 := z.DecSliceHelperStart() + var yyc4620 bool + if yyl4620 == 0 { + if yyv4620 == nil { + yyv4620 = []LocalObjectReference{} + yyc4620 = true + } else if len(yyv4620) != 0 { + yyv4620 = yyv4620[:0] + yyc4620 = true } - } else if yyl4567 > 0 { - var yyrr4567, yyrl4567 int - var yyrt4567 bool - if yyl4567 > cap(yyv4567) { + } else if yyl4620 > 0 { + var yyrr4620, yyrl4620 int + var yyrt4620 bool + if yyl4620 > cap(yyv4620) { - yyrg4567 := len(yyv4567) > 0 - yyv24567 := yyv4567 - yyrl4567, yyrt4567 = z.DecInferLen(yyl4567, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4567 { - if yyrl4567 <= cap(yyv4567) { - yyv4567 = yyv4567[:yyrl4567] + yyrg4620 := len(yyv4620) > 0 + yyv24620 := yyv4620 + yyrl4620, yyrt4620 = z.DecInferLen(yyl4620, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4620 { + if yyrl4620 <= cap(yyv4620) { + yyv4620 = yyv4620[:yyrl4620] } else { - yyv4567 = make([]LocalObjectReference, yyrl4567) + yyv4620 = make([]LocalObjectReference, yyrl4620) } } else { - yyv4567 = make([]LocalObjectReference, yyrl4567) + yyv4620 = make([]LocalObjectReference, yyrl4620) } - yyc4567 = true - yyrr4567 = len(yyv4567) - if yyrg4567 { - copy(yyv4567, yyv24567) + yyc4620 = true + yyrr4620 = len(yyv4620) + if yyrg4620 { + copy(yyv4620, yyv24620) } - } else if yyl4567 != len(yyv4567) { - yyv4567 = yyv4567[:yyl4567] - yyc4567 = true + } else if yyl4620 != len(yyv4620) { + yyv4620 = yyv4620[:yyl4620] + yyc4620 = true } - yyj4567 := 0 - for ; yyj4567 < yyrr4567; yyj4567++ { - yyh4567.ElemContainerState(yyj4567) + yyj4620 := 0 + for ; yyj4620 < yyrr4620; yyj4620++ { + yyh4620.ElemContainerState(yyj4620) if r.TryDecodeAsNil() { - yyv4567[yyj4567] = LocalObjectReference{} + yyv4620[yyj4620] = LocalObjectReference{} } else { - yyv4568 := &yyv4567[yyj4567] - yyv4568.CodecDecodeSelf(d) + yyv4621 := &yyv4620[yyj4620] + yyv4621.CodecDecodeSelf(d) } } - if yyrt4567 { - for ; yyj4567 < yyl4567; yyj4567++ { - yyv4567 = append(yyv4567, LocalObjectReference{}) - yyh4567.ElemContainerState(yyj4567) + if yyrt4620 { + for ; yyj4620 < yyl4620; yyj4620++ { + yyv4620 = append(yyv4620, LocalObjectReference{}) + yyh4620.ElemContainerState(yyj4620) if r.TryDecodeAsNil() { - yyv4567[yyj4567] = LocalObjectReference{} + yyv4620[yyj4620] = LocalObjectReference{} } else { - yyv4569 := &yyv4567[yyj4567] - yyv4569.CodecDecodeSelf(d) + yyv4622 := &yyv4620[yyj4620] + yyv4622.CodecDecodeSelf(d) } } } } else { - yyj4567 := 0 - for ; !r.CheckBreak(); yyj4567++ { + yyj4620 := 0 + for ; !r.CheckBreak(); yyj4620++ { - if yyj4567 >= len(yyv4567) { - yyv4567 = append(yyv4567, LocalObjectReference{}) // var yyz4567 LocalObjectReference - yyc4567 = true + if yyj4620 >= len(yyv4620) { + yyv4620 = append(yyv4620, LocalObjectReference{}) // var yyz4620 LocalObjectReference + yyc4620 = true } - yyh4567.ElemContainerState(yyj4567) - if yyj4567 < len(yyv4567) { + yyh4620.ElemContainerState(yyj4620) + if yyj4620 < len(yyv4620) { if r.TryDecodeAsNil() { - yyv4567[yyj4567] = LocalObjectReference{} + yyv4620[yyj4620] = LocalObjectReference{} } else { - yyv4570 := &yyv4567[yyj4567] - yyv4570.CodecDecodeSelf(d) + yyv4623 := &yyv4620[yyj4620] + yyv4623.CodecDecodeSelf(d) } } else { @@ -57581,17 +58288,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4567 < len(yyv4567) { - yyv4567 = yyv4567[:yyj4567] - yyc4567 = true - } else if yyj4567 == 0 && yyv4567 == nil { - yyv4567 = []LocalObjectReference{} - yyc4567 = true + if yyj4620 < len(yyv4620) { + yyv4620 = yyv4620[:yyj4620] + yyc4620 = true + } else if yyj4620 == 0 && yyv4620 == nil { + yyv4620 = []LocalObjectReference{} + yyc4620 = true } } - yyh4567.End() - if yyc4567 { - *v = yyv4567 + yyh4620.End() + if yyc4620 { + *v = yyv4620 } } @@ -57600,10 +58307,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4571 := range v { + for _, yyv4624 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4572 := &yyv4571 - yy4572.CodecEncodeSelf(e) + yy4625 := &yyv4624 + yy4625.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57613,83 +58320,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4573 := *v - yyh4573, yyl4573 := z.DecSliceHelperStart() - var yyc4573 bool - if yyl4573 == 0 { - if yyv4573 == nil { - yyv4573 = []PodCondition{} - yyc4573 = true - } else if len(yyv4573) != 0 { - yyv4573 = yyv4573[:0] - yyc4573 = true + yyv4626 := *v + yyh4626, yyl4626 := z.DecSliceHelperStart() + var yyc4626 bool + if yyl4626 == 0 { + if yyv4626 == nil { + yyv4626 = []PodCondition{} + yyc4626 = true + } else if len(yyv4626) != 0 { + yyv4626 = yyv4626[:0] + yyc4626 = true } - } else if yyl4573 > 0 { - var yyrr4573, yyrl4573 int - var yyrt4573 bool - if yyl4573 > cap(yyv4573) { + } else if yyl4626 > 0 { + var yyrr4626, yyrl4626 int + var yyrt4626 bool + if yyl4626 > cap(yyv4626) { - yyrg4573 := len(yyv4573) > 0 - yyv24573 := yyv4573 - yyrl4573, yyrt4573 = z.DecInferLen(yyl4573, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4573 { - if yyrl4573 <= cap(yyv4573) { - yyv4573 = yyv4573[:yyrl4573] + yyrg4626 := len(yyv4626) > 0 + yyv24626 := yyv4626 + yyrl4626, yyrt4626 = z.DecInferLen(yyl4626, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4626 { + if yyrl4626 <= cap(yyv4626) { + yyv4626 = yyv4626[:yyrl4626] } else { - yyv4573 = make([]PodCondition, yyrl4573) + yyv4626 = make([]PodCondition, yyrl4626) } } else { - yyv4573 = make([]PodCondition, yyrl4573) + yyv4626 = make([]PodCondition, yyrl4626) } - yyc4573 = true - yyrr4573 = len(yyv4573) - if yyrg4573 { - copy(yyv4573, yyv24573) + yyc4626 = true + yyrr4626 = len(yyv4626) + if yyrg4626 { + copy(yyv4626, yyv24626) } - } else if yyl4573 != len(yyv4573) { - yyv4573 = yyv4573[:yyl4573] - yyc4573 = true + } else if yyl4626 != len(yyv4626) { + yyv4626 = yyv4626[:yyl4626] + yyc4626 = true } - yyj4573 := 0 - for ; yyj4573 < yyrr4573; yyj4573++ { - yyh4573.ElemContainerState(yyj4573) + yyj4626 := 0 + for ; yyj4626 < yyrr4626; yyj4626++ { + yyh4626.ElemContainerState(yyj4626) if r.TryDecodeAsNil() { - yyv4573[yyj4573] = PodCondition{} + yyv4626[yyj4626] = PodCondition{} } else { - yyv4574 := &yyv4573[yyj4573] - yyv4574.CodecDecodeSelf(d) + yyv4627 := &yyv4626[yyj4626] + yyv4627.CodecDecodeSelf(d) } } - if yyrt4573 { - for ; yyj4573 < yyl4573; yyj4573++ { - yyv4573 = append(yyv4573, PodCondition{}) - yyh4573.ElemContainerState(yyj4573) + if yyrt4626 { + for ; yyj4626 < yyl4626; yyj4626++ { + yyv4626 = append(yyv4626, PodCondition{}) + yyh4626.ElemContainerState(yyj4626) if r.TryDecodeAsNil() { - yyv4573[yyj4573] = PodCondition{} + yyv4626[yyj4626] = PodCondition{} } else { - yyv4575 := &yyv4573[yyj4573] - yyv4575.CodecDecodeSelf(d) + yyv4628 := &yyv4626[yyj4626] + yyv4628.CodecDecodeSelf(d) } } } } else { - yyj4573 := 0 - for ; !r.CheckBreak(); yyj4573++ { + yyj4626 := 0 + for ; !r.CheckBreak(); yyj4626++ { - if yyj4573 >= len(yyv4573) { - yyv4573 = append(yyv4573, PodCondition{}) // var yyz4573 PodCondition - yyc4573 = true + if yyj4626 >= len(yyv4626) { + yyv4626 = append(yyv4626, PodCondition{}) // var yyz4626 PodCondition + yyc4626 = true } - yyh4573.ElemContainerState(yyj4573) - if yyj4573 < len(yyv4573) { + yyh4626.ElemContainerState(yyj4626) + if yyj4626 < len(yyv4626) { if r.TryDecodeAsNil() { - yyv4573[yyj4573] = PodCondition{} + yyv4626[yyj4626] = PodCondition{} } else { - yyv4576 := &yyv4573[yyj4573] - yyv4576.CodecDecodeSelf(d) + yyv4629 := &yyv4626[yyj4626] + yyv4629.CodecDecodeSelf(d) } } else { @@ -57697,17 +58404,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4573 < len(yyv4573) { - yyv4573 = yyv4573[:yyj4573] - yyc4573 = true - } else if yyj4573 == 0 && yyv4573 == nil { - yyv4573 = []PodCondition{} - yyc4573 = true + if yyj4626 < len(yyv4626) { + yyv4626 = yyv4626[:yyj4626] + yyc4626 = true + } else if yyj4626 == 0 && yyv4626 == nil { + yyv4626 = []PodCondition{} + yyc4626 = true } } - yyh4573.End() - if yyc4573 { - *v = yyv4573 + yyh4626.End() + if yyc4626 { + *v = yyv4626 } } @@ -57716,10 +58423,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4577 := range v { + for _, yyv4630 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4578 := &yyv4577 - yy4578.CodecEncodeSelf(e) + yy4631 := &yyv4630 + yy4631.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57729,83 +58436,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, 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 = []ContainerStatus{} - yyc4579 = true - } else if len(yyv4579) != 0 { - yyv4579 = yyv4579[:0] - yyc4579 = true + yyv4632 := *v + yyh4632, yyl4632 := z.DecSliceHelperStart() + var yyc4632 bool + if yyl4632 == 0 { + if yyv4632 == nil { + yyv4632 = []ContainerStatus{} + yyc4632 = true + } else if len(yyv4632) != 0 { + yyv4632 = yyv4632[:0] + yyc4632 = true } - } else if yyl4579 > 0 { - var yyrr4579, yyrl4579 int - var yyrt4579 bool - if yyl4579 > cap(yyv4579) { + } else if yyl4632 > 0 { + var yyrr4632, yyrl4632 int + var yyrt4632 bool + if yyl4632 > cap(yyv4632) { - yyrg4579 := len(yyv4579) > 0 - yyv24579 := yyv4579 - yyrl4579, yyrt4579 = z.DecInferLen(yyl4579, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4579 { - if yyrl4579 <= cap(yyv4579) { - yyv4579 = yyv4579[:yyrl4579] + yyrg4632 := len(yyv4632) > 0 + yyv24632 := yyv4632 + yyrl4632, yyrt4632 = z.DecInferLen(yyl4632, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4632 { + if yyrl4632 <= cap(yyv4632) { + yyv4632 = yyv4632[:yyrl4632] } else { - yyv4579 = make([]ContainerStatus, yyrl4579) + yyv4632 = make([]ContainerStatus, yyrl4632) } } else { - yyv4579 = make([]ContainerStatus, yyrl4579) + yyv4632 = make([]ContainerStatus, yyrl4632) } - yyc4579 = true - yyrr4579 = len(yyv4579) - if yyrg4579 { - copy(yyv4579, yyv24579) + yyc4632 = true + yyrr4632 = len(yyv4632) + if yyrg4632 { + copy(yyv4632, yyv24632) } - } else if yyl4579 != len(yyv4579) { - yyv4579 = yyv4579[:yyl4579] - yyc4579 = true + } else if yyl4632 != len(yyv4632) { + yyv4632 = yyv4632[:yyl4632] + yyc4632 = true } - yyj4579 := 0 - for ; yyj4579 < yyrr4579; yyj4579++ { - yyh4579.ElemContainerState(yyj4579) + yyj4632 := 0 + for ; yyj4632 < yyrr4632; yyj4632++ { + yyh4632.ElemContainerState(yyj4632) if r.TryDecodeAsNil() { - yyv4579[yyj4579] = ContainerStatus{} + yyv4632[yyj4632] = ContainerStatus{} } else { - yyv4580 := &yyv4579[yyj4579] - yyv4580.CodecDecodeSelf(d) + yyv4633 := &yyv4632[yyj4632] + yyv4633.CodecDecodeSelf(d) } } - if yyrt4579 { - for ; yyj4579 < yyl4579; yyj4579++ { - yyv4579 = append(yyv4579, ContainerStatus{}) - yyh4579.ElemContainerState(yyj4579) + if yyrt4632 { + for ; yyj4632 < yyl4632; yyj4632++ { + yyv4632 = append(yyv4632, ContainerStatus{}) + yyh4632.ElemContainerState(yyj4632) if r.TryDecodeAsNil() { - yyv4579[yyj4579] = ContainerStatus{} + yyv4632[yyj4632] = ContainerStatus{} } else { - yyv4581 := &yyv4579[yyj4579] - yyv4581.CodecDecodeSelf(d) + yyv4634 := &yyv4632[yyj4632] + yyv4634.CodecDecodeSelf(d) } } } } else { - yyj4579 := 0 - for ; !r.CheckBreak(); yyj4579++ { + yyj4632 := 0 + for ; !r.CheckBreak(); yyj4632++ { - if yyj4579 >= len(yyv4579) { - yyv4579 = append(yyv4579, ContainerStatus{}) // var yyz4579 ContainerStatus - yyc4579 = true + if yyj4632 >= len(yyv4632) { + yyv4632 = append(yyv4632, ContainerStatus{}) // var yyz4632 ContainerStatus + yyc4632 = true } - yyh4579.ElemContainerState(yyj4579) - if yyj4579 < len(yyv4579) { + yyh4632.ElemContainerState(yyj4632) + if yyj4632 < len(yyv4632) { if r.TryDecodeAsNil() { - yyv4579[yyj4579] = ContainerStatus{} + yyv4632[yyj4632] = ContainerStatus{} } else { - yyv4582 := &yyv4579[yyj4579] - yyv4582.CodecDecodeSelf(d) + yyv4635 := &yyv4632[yyj4632] + yyv4635.CodecDecodeSelf(d) } } else { @@ -57813,17 +58520,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4579 < len(yyv4579) { - yyv4579 = yyv4579[:yyj4579] - yyc4579 = true - } else if yyj4579 == 0 && yyv4579 == nil { - yyv4579 = []ContainerStatus{} - yyc4579 = true + if yyj4632 < len(yyv4632) { + yyv4632 = yyv4632[:yyj4632] + yyc4632 = true + } else if yyj4632 == 0 && yyv4632 == nil { + yyv4632 = []ContainerStatus{} + yyc4632 = true } } - yyh4579.End() - if yyc4579 { - *v = yyv4579 + yyh4632.End() + if yyc4632 { + *v = yyv4632 } } @@ -57832,10 +58539,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4583 := range v { + for _, yyv4636 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4584 := &yyv4583 - yy4584.CodecEncodeSelf(e) + yy4637 := &yyv4636 + yy4637.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57845,83 +58552,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4585 := *v - yyh4585, yyl4585 := z.DecSliceHelperStart() - var yyc4585 bool - if yyl4585 == 0 { - if yyv4585 == nil { - yyv4585 = []Pod{} - yyc4585 = true - } else if len(yyv4585) != 0 { - yyv4585 = yyv4585[:0] - yyc4585 = true + yyv4638 := *v + yyh4638, yyl4638 := z.DecSliceHelperStart() + var yyc4638 bool + if yyl4638 == 0 { + if yyv4638 == nil { + yyv4638 = []Pod{} + yyc4638 = true + } else if len(yyv4638) != 0 { + yyv4638 = yyv4638[:0] + yyc4638 = true } - } else if yyl4585 > 0 { - var yyrr4585, yyrl4585 int - var yyrt4585 bool - if yyl4585 > cap(yyv4585) { + } else if yyl4638 > 0 { + var yyrr4638, yyrl4638 int + var yyrt4638 bool + if yyl4638 > cap(yyv4638) { - yyrg4585 := len(yyv4585) > 0 - yyv24585 := yyv4585 - yyrl4585, yyrt4585 = z.DecInferLen(yyl4585, z.DecBasicHandle().MaxInitLen, 664) - if yyrt4585 { - if yyrl4585 <= cap(yyv4585) { - yyv4585 = yyv4585[:yyrl4585] + yyrg4638 := len(yyv4638) > 0 + yyv24638 := yyv4638 + yyrl4638, yyrt4638 = z.DecInferLen(yyl4638, z.DecBasicHandle().MaxInitLen, 664) + if yyrt4638 { + if yyrl4638 <= cap(yyv4638) { + yyv4638 = yyv4638[:yyrl4638] } else { - yyv4585 = make([]Pod, yyrl4585) + yyv4638 = make([]Pod, yyrl4638) } } else { - yyv4585 = make([]Pod, yyrl4585) + yyv4638 = make([]Pod, yyrl4638) } - yyc4585 = true - yyrr4585 = len(yyv4585) - if yyrg4585 { - copy(yyv4585, yyv24585) + yyc4638 = true + yyrr4638 = len(yyv4638) + if yyrg4638 { + copy(yyv4638, yyv24638) } - } else if yyl4585 != len(yyv4585) { - yyv4585 = yyv4585[:yyl4585] - yyc4585 = true + } else if yyl4638 != len(yyv4638) { + yyv4638 = yyv4638[:yyl4638] + yyc4638 = true } - yyj4585 := 0 - for ; yyj4585 < yyrr4585; yyj4585++ { - yyh4585.ElemContainerState(yyj4585) + yyj4638 := 0 + for ; yyj4638 < yyrr4638; yyj4638++ { + yyh4638.ElemContainerState(yyj4638) if r.TryDecodeAsNil() { - yyv4585[yyj4585] = Pod{} + yyv4638[yyj4638] = Pod{} } else { - yyv4586 := &yyv4585[yyj4585] - yyv4586.CodecDecodeSelf(d) + yyv4639 := &yyv4638[yyj4638] + yyv4639.CodecDecodeSelf(d) } } - if yyrt4585 { - for ; yyj4585 < yyl4585; yyj4585++ { - yyv4585 = append(yyv4585, Pod{}) - yyh4585.ElemContainerState(yyj4585) + if yyrt4638 { + for ; yyj4638 < yyl4638; yyj4638++ { + yyv4638 = append(yyv4638, Pod{}) + yyh4638.ElemContainerState(yyj4638) if r.TryDecodeAsNil() { - yyv4585[yyj4585] = Pod{} + yyv4638[yyj4638] = Pod{} } else { - yyv4587 := &yyv4585[yyj4585] - yyv4587.CodecDecodeSelf(d) + yyv4640 := &yyv4638[yyj4638] + yyv4640.CodecDecodeSelf(d) } } } } else { - yyj4585 := 0 - for ; !r.CheckBreak(); yyj4585++ { + yyj4638 := 0 + for ; !r.CheckBreak(); yyj4638++ { - if yyj4585 >= len(yyv4585) { - yyv4585 = append(yyv4585, Pod{}) // var yyz4585 Pod - yyc4585 = true + if yyj4638 >= len(yyv4638) { + yyv4638 = append(yyv4638, Pod{}) // var yyz4638 Pod + yyc4638 = true } - yyh4585.ElemContainerState(yyj4585) - if yyj4585 < len(yyv4585) { + yyh4638.ElemContainerState(yyj4638) + if yyj4638 < len(yyv4638) { if r.TryDecodeAsNil() { - yyv4585[yyj4585] = Pod{} + yyv4638[yyj4638] = Pod{} } else { - yyv4588 := &yyv4585[yyj4585] - yyv4588.CodecDecodeSelf(d) + yyv4641 := &yyv4638[yyj4638] + yyv4641.CodecDecodeSelf(d) } } else { @@ -57929,17 +58636,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4585 < len(yyv4585) { - yyv4585 = yyv4585[:yyj4585] - yyc4585 = true - } else if yyj4585 == 0 && yyv4585 == nil { - yyv4585 = []Pod{} - yyc4585 = true + if yyj4638 < len(yyv4638) { + yyv4638 = yyv4638[:yyj4638] + yyc4638 = true + } else if yyj4638 == 0 && yyv4638 == nil { + yyv4638 = []Pod{} + yyc4638 = true } } - yyh4585.End() - if yyc4585 { - *v = yyv4585 + yyh4638.End() + if yyc4638 { + *v = yyv4638 } } @@ -57948,10 +58655,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4589 := range v { + for _, yyv4642 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4590 := &yyv4589 - yy4590.CodecEncodeSelf(e) + yy4643 := &yyv4642 + yy4643.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57961,83 +58668,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4591 := *v - yyh4591, yyl4591 := z.DecSliceHelperStart() - var yyc4591 bool - if yyl4591 == 0 { - if yyv4591 == nil { - yyv4591 = []PodTemplate{} - yyc4591 = true - } else if len(yyv4591) != 0 { - yyv4591 = yyv4591[:0] - yyc4591 = true + yyv4644 := *v + yyh4644, yyl4644 := z.DecSliceHelperStart() + var yyc4644 bool + if yyl4644 == 0 { + if yyv4644 == nil { + yyv4644 = []PodTemplate{} + yyc4644 = true + } else if len(yyv4644) != 0 { + yyv4644 = yyv4644[:0] + yyc4644 = true } - } else if yyl4591 > 0 { - var yyrr4591, yyrl4591 int - var yyrt4591 bool - if yyl4591 > cap(yyv4591) { + } else if yyl4644 > 0 { + var yyrr4644, yyrl4644 int + var yyrt4644 bool + if yyl4644 > cap(yyv4644) { - yyrg4591 := len(yyv4591) > 0 - yyv24591 := yyv4591 - yyrl4591, yyrt4591 = z.DecInferLen(yyl4591, z.DecBasicHandle().MaxInitLen, 728) - if yyrt4591 { - if yyrl4591 <= cap(yyv4591) { - yyv4591 = yyv4591[:yyrl4591] + yyrg4644 := len(yyv4644) > 0 + yyv24644 := yyv4644 + yyrl4644, yyrt4644 = z.DecInferLen(yyl4644, z.DecBasicHandle().MaxInitLen, 728) + if yyrt4644 { + if yyrl4644 <= cap(yyv4644) { + yyv4644 = yyv4644[:yyrl4644] } else { - yyv4591 = make([]PodTemplate, yyrl4591) + yyv4644 = make([]PodTemplate, yyrl4644) } } else { - yyv4591 = make([]PodTemplate, yyrl4591) + yyv4644 = make([]PodTemplate, yyrl4644) } - yyc4591 = true - yyrr4591 = len(yyv4591) - if yyrg4591 { - copy(yyv4591, yyv24591) + yyc4644 = true + yyrr4644 = len(yyv4644) + if yyrg4644 { + copy(yyv4644, yyv24644) } - } else if yyl4591 != len(yyv4591) { - yyv4591 = yyv4591[:yyl4591] - yyc4591 = true + } else if yyl4644 != len(yyv4644) { + yyv4644 = yyv4644[:yyl4644] + yyc4644 = true } - yyj4591 := 0 - for ; yyj4591 < yyrr4591; yyj4591++ { - yyh4591.ElemContainerState(yyj4591) + yyj4644 := 0 + for ; yyj4644 < yyrr4644; yyj4644++ { + yyh4644.ElemContainerState(yyj4644) if r.TryDecodeAsNil() { - yyv4591[yyj4591] = PodTemplate{} + yyv4644[yyj4644] = PodTemplate{} } else { - yyv4592 := &yyv4591[yyj4591] - yyv4592.CodecDecodeSelf(d) + yyv4645 := &yyv4644[yyj4644] + yyv4645.CodecDecodeSelf(d) } } - if yyrt4591 { - for ; yyj4591 < yyl4591; yyj4591++ { - yyv4591 = append(yyv4591, PodTemplate{}) - yyh4591.ElemContainerState(yyj4591) + if yyrt4644 { + for ; yyj4644 < yyl4644; yyj4644++ { + yyv4644 = append(yyv4644, PodTemplate{}) + yyh4644.ElemContainerState(yyj4644) if r.TryDecodeAsNil() { - yyv4591[yyj4591] = PodTemplate{} + yyv4644[yyj4644] = PodTemplate{} } else { - yyv4593 := &yyv4591[yyj4591] - yyv4593.CodecDecodeSelf(d) + yyv4646 := &yyv4644[yyj4644] + yyv4646.CodecDecodeSelf(d) } } } } else { - yyj4591 := 0 - for ; !r.CheckBreak(); yyj4591++ { + yyj4644 := 0 + for ; !r.CheckBreak(); yyj4644++ { - if yyj4591 >= len(yyv4591) { - yyv4591 = append(yyv4591, PodTemplate{}) // var yyz4591 PodTemplate - yyc4591 = true + if yyj4644 >= len(yyv4644) { + yyv4644 = append(yyv4644, PodTemplate{}) // var yyz4644 PodTemplate + yyc4644 = true } - yyh4591.ElemContainerState(yyj4591) - if yyj4591 < len(yyv4591) { + yyh4644.ElemContainerState(yyj4644) + if yyj4644 < len(yyv4644) { if r.TryDecodeAsNil() { - yyv4591[yyj4591] = PodTemplate{} + yyv4644[yyj4644] = PodTemplate{} } else { - yyv4594 := &yyv4591[yyj4591] - yyv4594.CodecDecodeSelf(d) + yyv4647 := &yyv4644[yyj4644] + yyv4647.CodecDecodeSelf(d) } } else { @@ -58045,17 +58752,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4591 < len(yyv4591) { - yyv4591 = yyv4591[:yyj4591] - yyc4591 = true - } else if yyj4591 == 0 && yyv4591 == nil { - yyv4591 = []PodTemplate{} - yyc4591 = true + if yyj4644 < len(yyv4644) { + yyv4644 = yyv4644[:yyj4644] + yyc4644 = true + } else if yyj4644 == 0 && yyv4644 == nil { + yyv4644 = []PodTemplate{} + yyc4644 = true } } - yyh4591.End() - if yyc4591 { - *v = yyv4591 + yyh4644.End() + if yyc4644 { + *v = yyv4644 } } @@ -58064,10 +58771,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4595 := range v { + for _, yyv4648 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4596 := &yyv4595 - yy4596.CodecEncodeSelf(e) + yy4649 := &yyv4648 + yy4649.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58077,83 +58784,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4597 := *v - yyh4597, yyl4597 := z.DecSliceHelperStart() - var yyc4597 bool - if yyl4597 == 0 { - if yyv4597 == nil { - yyv4597 = []ReplicationController{} - yyc4597 = true - } else if len(yyv4597) != 0 { - yyv4597 = yyv4597[:0] - yyc4597 = true + yyv4650 := *v + yyh4650, yyl4650 := z.DecSliceHelperStart() + var yyc4650 bool + if yyl4650 == 0 { + if yyv4650 == nil { + yyv4650 = []ReplicationController{} + yyc4650 = true + } else if len(yyv4650) != 0 { + yyv4650 = yyv4650[:0] + yyc4650 = true } - } else if yyl4597 > 0 { - var yyrr4597, yyrl4597 int - var yyrt4597 bool - if yyl4597 > cap(yyv4597) { + } else if yyl4650 > 0 { + var yyrr4650, yyrl4650 int + var yyrt4650 bool + if yyl4650 > cap(yyv4650) { - yyrg4597 := len(yyv4597) > 0 - yyv24597 := yyv4597 - yyrl4597, yyrt4597 = z.DecInferLen(yyl4597, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4597 { - if yyrl4597 <= cap(yyv4597) { - yyv4597 = yyv4597[:yyrl4597] + yyrg4650 := len(yyv4650) > 0 + yyv24650 := yyv4650 + yyrl4650, yyrt4650 = z.DecInferLen(yyl4650, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4650 { + if yyrl4650 <= cap(yyv4650) { + yyv4650 = yyv4650[:yyrl4650] } else { - yyv4597 = make([]ReplicationController, yyrl4597) + yyv4650 = make([]ReplicationController, yyrl4650) } } else { - yyv4597 = make([]ReplicationController, yyrl4597) + yyv4650 = make([]ReplicationController, yyrl4650) } - yyc4597 = true - yyrr4597 = len(yyv4597) - if yyrg4597 { - copy(yyv4597, yyv24597) + yyc4650 = true + yyrr4650 = len(yyv4650) + if yyrg4650 { + copy(yyv4650, yyv24650) } - } else if yyl4597 != len(yyv4597) { - yyv4597 = yyv4597[:yyl4597] - yyc4597 = true + } else if yyl4650 != len(yyv4650) { + yyv4650 = yyv4650[:yyl4650] + yyc4650 = true } - yyj4597 := 0 - for ; yyj4597 < yyrr4597; yyj4597++ { - yyh4597.ElemContainerState(yyj4597) + yyj4650 := 0 + for ; yyj4650 < yyrr4650; yyj4650++ { + yyh4650.ElemContainerState(yyj4650) if r.TryDecodeAsNil() { - yyv4597[yyj4597] = ReplicationController{} + yyv4650[yyj4650] = ReplicationController{} } else { - yyv4598 := &yyv4597[yyj4597] - yyv4598.CodecDecodeSelf(d) + yyv4651 := &yyv4650[yyj4650] + yyv4651.CodecDecodeSelf(d) } } - if yyrt4597 { - for ; yyj4597 < yyl4597; yyj4597++ { - yyv4597 = append(yyv4597, ReplicationController{}) - yyh4597.ElemContainerState(yyj4597) + if yyrt4650 { + for ; yyj4650 < yyl4650; yyj4650++ { + yyv4650 = append(yyv4650, ReplicationController{}) + yyh4650.ElemContainerState(yyj4650) if r.TryDecodeAsNil() { - yyv4597[yyj4597] = ReplicationController{} + yyv4650[yyj4650] = ReplicationController{} } else { - yyv4599 := &yyv4597[yyj4597] - yyv4599.CodecDecodeSelf(d) + yyv4652 := &yyv4650[yyj4650] + yyv4652.CodecDecodeSelf(d) } } } } else { - yyj4597 := 0 - for ; !r.CheckBreak(); yyj4597++ { + yyj4650 := 0 + for ; !r.CheckBreak(); yyj4650++ { - if yyj4597 >= len(yyv4597) { - yyv4597 = append(yyv4597, ReplicationController{}) // var yyz4597 ReplicationController - yyc4597 = true + if yyj4650 >= len(yyv4650) { + yyv4650 = append(yyv4650, ReplicationController{}) // var yyz4650 ReplicationController + yyc4650 = true } - yyh4597.ElemContainerState(yyj4597) - if yyj4597 < len(yyv4597) { + yyh4650.ElemContainerState(yyj4650) + if yyj4650 < len(yyv4650) { if r.TryDecodeAsNil() { - yyv4597[yyj4597] = ReplicationController{} + yyv4650[yyj4650] = ReplicationController{} } else { - yyv4600 := &yyv4597[yyj4597] - yyv4600.CodecDecodeSelf(d) + yyv4653 := &yyv4650[yyj4650] + yyv4653.CodecDecodeSelf(d) } } else { @@ -58161,17 +58868,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4597 < len(yyv4597) { - yyv4597 = yyv4597[:yyj4597] - yyc4597 = true - } else if yyj4597 == 0 && yyv4597 == nil { - yyv4597 = []ReplicationController{} - yyc4597 = true + if yyj4650 < len(yyv4650) { + yyv4650 = yyv4650[:yyj4650] + yyc4650 = true + } else if yyj4650 == 0 && yyv4650 == nil { + yyv4650 = []ReplicationController{} + yyc4650 = true } } - yyh4597.End() - if yyc4597 { - *v = yyv4597 + yyh4650.End() + if yyc4650 { + *v = yyv4650 } } @@ -58180,10 +58887,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4601 := range v { + for _, yyv4654 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4602 := &yyv4601 - yy4602.CodecEncodeSelf(e) + yy4655 := &yyv4654 + yy4655.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58193,83 +58900,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4603 := *v - yyh4603, yyl4603 := z.DecSliceHelperStart() - var yyc4603 bool - if yyl4603 == 0 { - if yyv4603 == nil { - yyv4603 = []LoadBalancerIngress{} - yyc4603 = true - } else if len(yyv4603) != 0 { - yyv4603 = yyv4603[:0] - yyc4603 = true + yyv4656 := *v + yyh4656, yyl4656 := z.DecSliceHelperStart() + var yyc4656 bool + if yyl4656 == 0 { + if yyv4656 == nil { + yyv4656 = []LoadBalancerIngress{} + yyc4656 = true + } else if len(yyv4656) != 0 { + yyv4656 = yyv4656[:0] + yyc4656 = true } - } else if yyl4603 > 0 { - var yyrr4603, yyrl4603 int - var yyrt4603 bool - if yyl4603 > cap(yyv4603) { + } else if yyl4656 > 0 { + var yyrr4656, yyrl4656 int + var yyrt4656 bool + if yyl4656 > cap(yyv4656) { - yyrg4603 := len(yyv4603) > 0 - yyv24603 := yyv4603 - yyrl4603, yyrt4603 = z.DecInferLen(yyl4603, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4603 { - if yyrl4603 <= cap(yyv4603) { - yyv4603 = yyv4603[:yyrl4603] + yyrg4656 := len(yyv4656) > 0 + yyv24656 := yyv4656 + yyrl4656, yyrt4656 = z.DecInferLen(yyl4656, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4656 { + if yyrl4656 <= cap(yyv4656) { + yyv4656 = yyv4656[:yyrl4656] } else { - yyv4603 = make([]LoadBalancerIngress, yyrl4603) + yyv4656 = make([]LoadBalancerIngress, yyrl4656) } } else { - yyv4603 = make([]LoadBalancerIngress, yyrl4603) + yyv4656 = make([]LoadBalancerIngress, yyrl4656) } - yyc4603 = true - yyrr4603 = len(yyv4603) - if yyrg4603 { - copy(yyv4603, yyv24603) + yyc4656 = true + yyrr4656 = len(yyv4656) + if yyrg4656 { + copy(yyv4656, yyv24656) } - } else if yyl4603 != len(yyv4603) { - yyv4603 = yyv4603[:yyl4603] - yyc4603 = true + } else if yyl4656 != len(yyv4656) { + yyv4656 = yyv4656[:yyl4656] + yyc4656 = true } - yyj4603 := 0 - for ; yyj4603 < yyrr4603; yyj4603++ { - yyh4603.ElemContainerState(yyj4603) + yyj4656 := 0 + for ; yyj4656 < yyrr4656; yyj4656++ { + yyh4656.ElemContainerState(yyj4656) if r.TryDecodeAsNil() { - yyv4603[yyj4603] = LoadBalancerIngress{} + yyv4656[yyj4656] = LoadBalancerIngress{} } else { - yyv4604 := &yyv4603[yyj4603] - yyv4604.CodecDecodeSelf(d) + yyv4657 := &yyv4656[yyj4656] + yyv4657.CodecDecodeSelf(d) } } - if yyrt4603 { - for ; yyj4603 < yyl4603; yyj4603++ { - yyv4603 = append(yyv4603, LoadBalancerIngress{}) - yyh4603.ElemContainerState(yyj4603) + if yyrt4656 { + for ; yyj4656 < yyl4656; yyj4656++ { + yyv4656 = append(yyv4656, LoadBalancerIngress{}) + yyh4656.ElemContainerState(yyj4656) if r.TryDecodeAsNil() { - yyv4603[yyj4603] = LoadBalancerIngress{} + yyv4656[yyj4656] = LoadBalancerIngress{} } else { - yyv4605 := &yyv4603[yyj4603] - yyv4605.CodecDecodeSelf(d) + yyv4658 := &yyv4656[yyj4656] + yyv4658.CodecDecodeSelf(d) } } } } else { - yyj4603 := 0 - for ; !r.CheckBreak(); yyj4603++ { + yyj4656 := 0 + for ; !r.CheckBreak(); yyj4656++ { - if yyj4603 >= len(yyv4603) { - yyv4603 = append(yyv4603, LoadBalancerIngress{}) // var yyz4603 LoadBalancerIngress - yyc4603 = true + if yyj4656 >= len(yyv4656) { + yyv4656 = append(yyv4656, LoadBalancerIngress{}) // var yyz4656 LoadBalancerIngress + yyc4656 = true } - yyh4603.ElemContainerState(yyj4603) - if yyj4603 < len(yyv4603) { + yyh4656.ElemContainerState(yyj4656) + if yyj4656 < len(yyv4656) { if r.TryDecodeAsNil() { - yyv4603[yyj4603] = LoadBalancerIngress{} + yyv4656[yyj4656] = LoadBalancerIngress{} } else { - yyv4606 := &yyv4603[yyj4603] - yyv4606.CodecDecodeSelf(d) + yyv4659 := &yyv4656[yyj4656] + yyv4659.CodecDecodeSelf(d) } } else { @@ -58277,17 +58984,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4603 < len(yyv4603) { - yyv4603 = yyv4603[:yyj4603] - yyc4603 = true - } else if yyj4603 == 0 && yyv4603 == nil { - yyv4603 = []LoadBalancerIngress{} - yyc4603 = true + if yyj4656 < len(yyv4656) { + yyv4656 = yyv4656[:yyj4656] + yyc4656 = true + } else if yyj4656 == 0 && yyv4656 == nil { + yyv4656 = []LoadBalancerIngress{} + yyc4656 = true } } - yyh4603.End() - if yyc4603 { - *v = yyv4603 + yyh4656.End() + if yyc4656 { + *v = yyv4656 } } @@ -58296,10 +59003,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4607 := range v { + for _, yyv4660 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4608 := &yyv4607 - yy4608.CodecEncodeSelf(e) + yy4661 := &yyv4660 + yy4661.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58309,83 +59016,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4609 := *v - yyh4609, yyl4609 := z.DecSliceHelperStart() - var yyc4609 bool - if yyl4609 == 0 { - if yyv4609 == nil { - yyv4609 = []ServicePort{} - yyc4609 = true - } else if len(yyv4609) != 0 { - yyv4609 = yyv4609[:0] - yyc4609 = true + yyv4662 := *v + yyh4662, yyl4662 := z.DecSliceHelperStart() + var yyc4662 bool + if yyl4662 == 0 { + if yyv4662 == nil { + yyv4662 = []ServicePort{} + yyc4662 = true + } else if len(yyv4662) != 0 { + yyv4662 = yyv4662[:0] + yyc4662 = true } - } else if yyl4609 > 0 { - var yyrr4609, yyrl4609 int - var yyrt4609 bool - if yyl4609 > cap(yyv4609) { + } else if yyl4662 > 0 { + var yyrr4662, yyrl4662 int + var yyrt4662 bool + if yyl4662 > cap(yyv4662) { - yyrg4609 := len(yyv4609) > 0 - yyv24609 := yyv4609 - yyrl4609, yyrt4609 = z.DecInferLen(yyl4609, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4609 { - if yyrl4609 <= cap(yyv4609) { - yyv4609 = yyv4609[:yyrl4609] + yyrg4662 := len(yyv4662) > 0 + yyv24662 := yyv4662 + yyrl4662, yyrt4662 = z.DecInferLen(yyl4662, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4662 { + if yyrl4662 <= cap(yyv4662) { + yyv4662 = yyv4662[:yyrl4662] } else { - yyv4609 = make([]ServicePort, yyrl4609) + yyv4662 = make([]ServicePort, yyrl4662) } } else { - yyv4609 = make([]ServicePort, yyrl4609) + yyv4662 = make([]ServicePort, yyrl4662) } - yyc4609 = true - yyrr4609 = len(yyv4609) - if yyrg4609 { - copy(yyv4609, yyv24609) + yyc4662 = true + yyrr4662 = len(yyv4662) + if yyrg4662 { + copy(yyv4662, yyv24662) } - } else if yyl4609 != len(yyv4609) { - yyv4609 = yyv4609[:yyl4609] - yyc4609 = true + } else if yyl4662 != len(yyv4662) { + yyv4662 = yyv4662[:yyl4662] + yyc4662 = true } - yyj4609 := 0 - for ; yyj4609 < yyrr4609; yyj4609++ { - yyh4609.ElemContainerState(yyj4609) + yyj4662 := 0 + for ; yyj4662 < yyrr4662; yyj4662++ { + yyh4662.ElemContainerState(yyj4662) if r.TryDecodeAsNil() { - yyv4609[yyj4609] = ServicePort{} + yyv4662[yyj4662] = ServicePort{} } else { - yyv4610 := &yyv4609[yyj4609] - yyv4610.CodecDecodeSelf(d) + yyv4663 := &yyv4662[yyj4662] + yyv4663.CodecDecodeSelf(d) } } - if yyrt4609 { - for ; yyj4609 < yyl4609; yyj4609++ { - yyv4609 = append(yyv4609, ServicePort{}) - yyh4609.ElemContainerState(yyj4609) + if yyrt4662 { + for ; yyj4662 < yyl4662; yyj4662++ { + yyv4662 = append(yyv4662, ServicePort{}) + yyh4662.ElemContainerState(yyj4662) if r.TryDecodeAsNil() { - yyv4609[yyj4609] = ServicePort{} + yyv4662[yyj4662] = ServicePort{} } else { - yyv4611 := &yyv4609[yyj4609] - yyv4611.CodecDecodeSelf(d) + yyv4664 := &yyv4662[yyj4662] + yyv4664.CodecDecodeSelf(d) } } } } else { - yyj4609 := 0 - for ; !r.CheckBreak(); yyj4609++ { + yyj4662 := 0 + for ; !r.CheckBreak(); yyj4662++ { - if yyj4609 >= len(yyv4609) { - yyv4609 = append(yyv4609, ServicePort{}) // var yyz4609 ServicePort - yyc4609 = true + if yyj4662 >= len(yyv4662) { + yyv4662 = append(yyv4662, ServicePort{}) // var yyz4662 ServicePort + yyc4662 = true } - yyh4609.ElemContainerState(yyj4609) - if yyj4609 < len(yyv4609) { + yyh4662.ElemContainerState(yyj4662) + if yyj4662 < len(yyv4662) { if r.TryDecodeAsNil() { - yyv4609[yyj4609] = ServicePort{} + yyv4662[yyj4662] = ServicePort{} } else { - yyv4612 := &yyv4609[yyj4609] - yyv4612.CodecDecodeSelf(d) + yyv4665 := &yyv4662[yyj4662] + yyv4665.CodecDecodeSelf(d) } } else { @@ -58393,17 +59100,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4609 < len(yyv4609) { - yyv4609 = yyv4609[:yyj4609] - yyc4609 = true - } else if yyj4609 == 0 && yyv4609 == nil { - yyv4609 = []ServicePort{} - yyc4609 = true + if yyj4662 < len(yyv4662) { + yyv4662 = yyv4662[:yyj4662] + yyc4662 = true + } else if yyj4662 == 0 && yyv4662 == nil { + yyv4662 = []ServicePort{} + yyc4662 = true } } - yyh4609.End() - if yyc4609 { - *v = yyv4609 + yyh4662.End() + if yyc4662 { + *v = yyv4662 } } @@ -58412,10 +59119,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4613 := range v { + for _, yyv4666 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4614 := &yyv4613 - yy4614.CodecEncodeSelf(e) + yy4667 := &yyv4666 + yy4667.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58425,83 +59132,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4615 := *v - yyh4615, yyl4615 := z.DecSliceHelperStart() - var yyc4615 bool - if yyl4615 == 0 { - if yyv4615 == nil { - yyv4615 = []Service{} - yyc4615 = true - } else if len(yyv4615) != 0 { - yyv4615 = yyv4615[:0] - yyc4615 = true + yyv4668 := *v + yyh4668, yyl4668 := z.DecSliceHelperStart() + var yyc4668 bool + if yyl4668 == 0 { + if yyv4668 == nil { + yyv4668 = []Service{} + yyc4668 = true + } else if len(yyv4668) != 0 { + yyv4668 = yyv4668[:0] + yyc4668 = true } - } else if yyl4615 > 0 { - var yyrr4615, yyrl4615 int - var yyrt4615 bool - if yyl4615 > cap(yyv4615) { + } else if yyl4668 > 0 { + var yyrr4668, yyrl4668 int + var yyrt4668 bool + if yyl4668 > cap(yyv4668) { - yyrg4615 := len(yyv4615) > 0 - yyv24615 := yyv4615 - yyrl4615, yyrt4615 = z.DecInferLen(yyl4615, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4615 { - if yyrl4615 <= cap(yyv4615) { - yyv4615 = yyv4615[:yyrl4615] + yyrg4668 := len(yyv4668) > 0 + yyv24668 := yyv4668 + yyrl4668, yyrt4668 = z.DecInferLen(yyl4668, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4668 { + if yyrl4668 <= cap(yyv4668) { + yyv4668 = yyv4668[:yyrl4668] } else { - yyv4615 = make([]Service, yyrl4615) + yyv4668 = make([]Service, yyrl4668) } } else { - yyv4615 = make([]Service, yyrl4615) + yyv4668 = make([]Service, yyrl4668) } - yyc4615 = true - yyrr4615 = len(yyv4615) - if yyrg4615 { - copy(yyv4615, yyv24615) + yyc4668 = true + yyrr4668 = len(yyv4668) + if yyrg4668 { + copy(yyv4668, yyv24668) } - } else if yyl4615 != len(yyv4615) { - yyv4615 = yyv4615[:yyl4615] - yyc4615 = true + } else if yyl4668 != len(yyv4668) { + yyv4668 = yyv4668[:yyl4668] + yyc4668 = true } - yyj4615 := 0 - for ; yyj4615 < yyrr4615; yyj4615++ { - yyh4615.ElemContainerState(yyj4615) + yyj4668 := 0 + for ; yyj4668 < yyrr4668; yyj4668++ { + yyh4668.ElemContainerState(yyj4668) if r.TryDecodeAsNil() { - yyv4615[yyj4615] = Service{} + yyv4668[yyj4668] = Service{} } else { - yyv4616 := &yyv4615[yyj4615] - yyv4616.CodecDecodeSelf(d) + yyv4669 := &yyv4668[yyj4668] + yyv4669.CodecDecodeSelf(d) } } - if yyrt4615 { - for ; yyj4615 < yyl4615; yyj4615++ { - yyv4615 = append(yyv4615, Service{}) - yyh4615.ElemContainerState(yyj4615) + if yyrt4668 { + for ; yyj4668 < yyl4668; yyj4668++ { + yyv4668 = append(yyv4668, Service{}) + yyh4668.ElemContainerState(yyj4668) if r.TryDecodeAsNil() { - yyv4615[yyj4615] = Service{} + yyv4668[yyj4668] = Service{} } else { - yyv4617 := &yyv4615[yyj4615] - yyv4617.CodecDecodeSelf(d) + yyv4670 := &yyv4668[yyj4668] + yyv4670.CodecDecodeSelf(d) } } } } else { - yyj4615 := 0 - for ; !r.CheckBreak(); yyj4615++ { + yyj4668 := 0 + for ; !r.CheckBreak(); yyj4668++ { - if yyj4615 >= len(yyv4615) { - yyv4615 = append(yyv4615, Service{}) // var yyz4615 Service - yyc4615 = true + if yyj4668 >= len(yyv4668) { + yyv4668 = append(yyv4668, Service{}) // var yyz4668 Service + yyc4668 = true } - yyh4615.ElemContainerState(yyj4615) - if yyj4615 < len(yyv4615) { + yyh4668.ElemContainerState(yyj4668) + if yyj4668 < len(yyv4668) { if r.TryDecodeAsNil() { - yyv4615[yyj4615] = Service{} + yyv4668[yyj4668] = Service{} } else { - yyv4618 := &yyv4615[yyj4615] - yyv4618.CodecDecodeSelf(d) + yyv4671 := &yyv4668[yyj4668] + yyv4671.CodecDecodeSelf(d) } } else { @@ -58509,17 +59216,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4615 < len(yyv4615) { - yyv4615 = yyv4615[:yyj4615] - yyc4615 = true - } else if yyj4615 == 0 && yyv4615 == nil { - yyv4615 = []Service{} - yyc4615 = true + if yyj4668 < len(yyv4668) { + yyv4668 = yyv4668[:yyj4668] + yyc4668 = true + } else if yyj4668 == 0 && yyv4668 == nil { + yyv4668 = []Service{} + yyc4668 = true } } - yyh4615.End() - if yyc4615 { - *v = yyv4615 + yyh4668.End() + if yyc4668 { + *v = yyv4668 } } @@ -58528,10 +59235,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4619 := range v { + for _, yyv4672 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4620 := &yyv4619 - yy4620.CodecEncodeSelf(e) + yy4673 := &yyv4672 + yy4673.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58541,1055 +59248,12 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4621 := *v - yyh4621, yyl4621 := z.DecSliceHelperStart() - var yyc4621 bool - if yyl4621 == 0 { - if yyv4621 == nil { - yyv4621 = []ObjectReference{} - yyc4621 = true - } else if len(yyv4621) != 0 { - yyv4621 = yyv4621[:0] - yyc4621 = true - } - } else if yyl4621 > 0 { - var yyrr4621, yyrl4621 int - var yyrt4621 bool - if yyl4621 > cap(yyv4621) { - - yyrg4621 := len(yyv4621) > 0 - yyv24621 := yyv4621 - yyrl4621, yyrt4621 = z.DecInferLen(yyl4621, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4621 { - if yyrl4621 <= cap(yyv4621) { - yyv4621 = yyv4621[:yyrl4621] - } else { - yyv4621 = make([]ObjectReference, yyrl4621) - } - } else { - yyv4621 = make([]ObjectReference, yyrl4621) - } - yyc4621 = true - yyrr4621 = len(yyv4621) - if yyrg4621 { - copy(yyv4621, yyv24621) - } - } else if yyl4621 != len(yyv4621) { - yyv4621 = yyv4621[:yyl4621] - yyc4621 = true - } - yyj4621 := 0 - for ; yyj4621 < yyrr4621; yyj4621++ { - yyh4621.ElemContainerState(yyj4621) - if r.TryDecodeAsNil() { - yyv4621[yyj4621] = ObjectReference{} - } else { - yyv4622 := &yyv4621[yyj4621] - yyv4622.CodecDecodeSelf(d) - } - - } - if yyrt4621 { - for ; yyj4621 < yyl4621; yyj4621++ { - yyv4621 = append(yyv4621, ObjectReference{}) - yyh4621.ElemContainerState(yyj4621) - if r.TryDecodeAsNil() { - yyv4621[yyj4621] = ObjectReference{} - } else { - yyv4623 := &yyv4621[yyj4621] - yyv4623.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4621 := 0 - for ; !r.CheckBreak(); yyj4621++ { - - if yyj4621 >= len(yyv4621) { - yyv4621 = append(yyv4621, ObjectReference{}) // var yyz4621 ObjectReference - yyc4621 = true - } - yyh4621.ElemContainerState(yyj4621) - if yyj4621 < len(yyv4621) { - if r.TryDecodeAsNil() { - yyv4621[yyj4621] = ObjectReference{} - } else { - yyv4624 := &yyv4621[yyj4621] - yyv4624.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4621 < len(yyv4621) { - yyv4621 = yyv4621[:yyj4621] - yyc4621 = true - } else if yyj4621 == 0 && yyv4621 == nil { - yyv4621 = []ObjectReference{} - yyc4621 = true - } - } - yyh4621.End() - if yyc4621 { - *v = yyv4621 - } -} - -func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4625 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4626 := &yyv4625 - yy4626.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4627 := *v - yyh4627, yyl4627 := z.DecSliceHelperStart() - var yyc4627 bool - if yyl4627 == 0 { - if yyv4627 == nil { - yyv4627 = []ServiceAccount{} - yyc4627 = true - } else if len(yyv4627) != 0 { - yyv4627 = yyv4627[:0] - yyc4627 = true - } - } else if yyl4627 > 0 { - var yyrr4627, yyrl4627 int - var yyrt4627 bool - if yyl4627 > cap(yyv4627) { - - yyrg4627 := len(yyv4627) > 0 - yyv24627 := yyv4627 - yyrl4627, yyrt4627 = z.DecInferLen(yyl4627, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4627 { - if yyrl4627 <= cap(yyv4627) { - yyv4627 = yyv4627[:yyrl4627] - } else { - yyv4627 = make([]ServiceAccount, yyrl4627) - } - } else { - yyv4627 = make([]ServiceAccount, yyrl4627) - } - yyc4627 = true - yyrr4627 = len(yyv4627) - if yyrg4627 { - copy(yyv4627, yyv24627) - } - } else if yyl4627 != len(yyv4627) { - yyv4627 = yyv4627[:yyl4627] - yyc4627 = true - } - yyj4627 := 0 - for ; yyj4627 < yyrr4627; yyj4627++ { - yyh4627.ElemContainerState(yyj4627) - if r.TryDecodeAsNil() { - yyv4627[yyj4627] = ServiceAccount{} - } else { - yyv4628 := &yyv4627[yyj4627] - yyv4628.CodecDecodeSelf(d) - } - - } - if yyrt4627 { - for ; yyj4627 < yyl4627; yyj4627++ { - yyv4627 = append(yyv4627, ServiceAccount{}) - yyh4627.ElemContainerState(yyj4627) - if r.TryDecodeAsNil() { - yyv4627[yyj4627] = ServiceAccount{} - } else { - yyv4629 := &yyv4627[yyj4627] - yyv4629.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4627 := 0 - for ; !r.CheckBreak(); yyj4627++ { - - if yyj4627 >= len(yyv4627) { - yyv4627 = append(yyv4627, ServiceAccount{}) // var yyz4627 ServiceAccount - yyc4627 = true - } - yyh4627.ElemContainerState(yyj4627) - if yyj4627 < len(yyv4627) { - if r.TryDecodeAsNil() { - yyv4627[yyj4627] = ServiceAccount{} - } else { - yyv4630 := &yyv4627[yyj4627] - yyv4630.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4627 < len(yyv4627) { - yyv4627 = yyv4627[:yyj4627] - yyc4627 = true - } else if yyj4627 == 0 && yyv4627 == nil { - yyv4627 = []ServiceAccount{} - yyc4627 = true - } - } - yyh4627.End() - if yyc4627 { - *v = yyv4627 - } -} - -func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4631 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4632 := &yyv4631 - yy4632.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4633 := *v - yyh4633, yyl4633 := z.DecSliceHelperStart() - var yyc4633 bool - if yyl4633 == 0 { - if yyv4633 == nil { - yyv4633 = []EndpointSubset{} - yyc4633 = true - } else if len(yyv4633) != 0 { - yyv4633 = yyv4633[:0] - yyc4633 = true - } - } else if yyl4633 > 0 { - var yyrr4633, yyrl4633 int - var yyrt4633 bool - if yyl4633 > cap(yyv4633) { - - yyrg4633 := len(yyv4633) > 0 - yyv24633 := yyv4633 - yyrl4633, yyrt4633 = z.DecInferLen(yyl4633, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4633 { - if yyrl4633 <= cap(yyv4633) { - yyv4633 = yyv4633[:yyrl4633] - } else { - yyv4633 = make([]EndpointSubset, yyrl4633) - } - } else { - yyv4633 = make([]EndpointSubset, yyrl4633) - } - yyc4633 = true - yyrr4633 = len(yyv4633) - if yyrg4633 { - copy(yyv4633, yyv24633) - } - } else if yyl4633 != len(yyv4633) { - yyv4633 = yyv4633[:yyl4633] - yyc4633 = true - } - yyj4633 := 0 - for ; yyj4633 < yyrr4633; yyj4633++ { - yyh4633.ElemContainerState(yyj4633) - if r.TryDecodeAsNil() { - yyv4633[yyj4633] = EndpointSubset{} - } else { - yyv4634 := &yyv4633[yyj4633] - yyv4634.CodecDecodeSelf(d) - } - - } - if yyrt4633 { - for ; yyj4633 < yyl4633; yyj4633++ { - yyv4633 = append(yyv4633, EndpointSubset{}) - yyh4633.ElemContainerState(yyj4633) - if r.TryDecodeAsNil() { - yyv4633[yyj4633] = EndpointSubset{} - } else { - yyv4635 := &yyv4633[yyj4633] - yyv4635.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4633 := 0 - for ; !r.CheckBreak(); yyj4633++ { - - if yyj4633 >= len(yyv4633) { - yyv4633 = append(yyv4633, EndpointSubset{}) // var yyz4633 EndpointSubset - yyc4633 = true - } - yyh4633.ElemContainerState(yyj4633) - if yyj4633 < len(yyv4633) { - if r.TryDecodeAsNil() { - yyv4633[yyj4633] = EndpointSubset{} - } else { - yyv4636 := &yyv4633[yyj4633] - yyv4636.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4633 < len(yyv4633) { - yyv4633 = yyv4633[:yyj4633] - yyc4633 = true - } else if yyj4633 == 0 && yyv4633 == nil { - yyv4633 = []EndpointSubset{} - yyc4633 = true - } - } - yyh4633.End() - if yyc4633 { - *v = yyv4633 - } -} - -func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4637 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4638 := &yyv4637 - yy4638.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4639 := *v - yyh4639, yyl4639 := z.DecSliceHelperStart() - var yyc4639 bool - if yyl4639 == 0 { - if yyv4639 == nil { - yyv4639 = []EndpointAddress{} - yyc4639 = true - } else if len(yyv4639) != 0 { - yyv4639 = yyv4639[:0] - yyc4639 = true - } - } else if yyl4639 > 0 { - var yyrr4639, yyrl4639 int - var yyrt4639 bool - if yyl4639 > cap(yyv4639) { - - yyrg4639 := len(yyv4639) > 0 - yyv24639 := yyv4639 - yyrl4639, yyrt4639 = z.DecInferLen(yyl4639, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4639 { - if yyrl4639 <= cap(yyv4639) { - yyv4639 = yyv4639[:yyrl4639] - } else { - yyv4639 = make([]EndpointAddress, yyrl4639) - } - } else { - yyv4639 = make([]EndpointAddress, yyrl4639) - } - yyc4639 = true - yyrr4639 = len(yyv4639) - if yyrg4639 { - copy(yyv4639, yyv24639) - } - } else if yyl4639 != len(yyv4639) { - yyv4639 = yyv4639[:yyl4639] - yyc4639 = true - } - yyj4639 := 0 - for ; yyj4639 < yyrr4639; yyj4639++ { - yyh4639.ElemContainerState(yyj4639) - if r.TryDecodeAsNil() { - yyv4639[yyj4639] = EndpointAddress{} - } else { - yyv4640 := &yyv4639[yyj4639] - yyv4640.CodecDecodeSelf(d) - } - - } - if yyrt4639 { - for ; yyj4639 < yyl4639; yyj4639++ { - yyv4639 = append(yyv4639, EndpointAddress{}) - yyh4639.ElemContainerState(yyj4639) - if r.TryDecodeAsNil() { - yyv4639[yyj4639] = EndpointAddress{} - } else { - yyv4641 := &yyv4639[yyj4639] - yyv4641.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4639 := 0 - for ; !r.CheckBreak(); yyj4639++ { - - if yyj4639 >= len(yyv4639) { - yyv4639 = append(yyv4639, EndpointAddress{}) // var yyz4639 EndpointAddress - yyc4639 = true - } - yyh4639.ElemContainerState(yyj4639) - if yyj4639 < len(yyv4639) { - if r.TryDecodeAsNil() { - yyv4639[yyj4639] = EndpointAddress{} - } else { - yyv4642 := &yyv4639[yyj4639] - yyv4642.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4639 < len(yyv4639) { - yyv4639 = yyv4639[:yyj4639] - yyc4639 = true - } else if yyj4639 == 0 && yyv4639 == nil { - yyv4639 = []EndpointAddress{} - yyc4639 = true - } - } - yyh4639.End() - if yyc4639 { - *v = yyv4639 - } -} - -func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4643 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4644 := &yyv4643 - yy4644.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4645 := *v - yyh4645, yyl4645 := z.DecSliceHelperStart() - var yyc4645 bool - if yyl4645 == 0 { - if yyv4645 == nil { - yyv4645 = []EndpointPort{} - yyc4645 = true - } else if len(yyv4645) != 0 { - yyv4645 = yyv4645[:0] - yyc4645 = true - } - } else if yyl4645 > 0 { - var yyrr4645, yyrl4645 int - var yyrt4645 bool - if yyl4645 > cap(yyv4645) { - - yyrg4645 := len(yyv4645) > 0 - yyv24645 := yyv4645 - yyrl4645, yyrt4645 = z.DecInferLen(yyl4645, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4645 { - if yyrl4645 <= cap(yyv4645) { - yyv4645 = yyv4645[:yyrl4645] - } else { - yyv4645 = make([]EndpointPort, yyrl4645) - } - } else { - yyv4645 = make([]EndpointPort, yyrl4645) - } - yyc4645 = true - yyrr4645 = len(yyv4645) - if yyrg4645 { - copy(yyv4645, yyv24645) - } - } else if yyl4645 != len(yyv4645) { - yyv4645 = yyv4645[:yyl4645] - yyc4645 = true - } - yyj4645 := 0 - for ; yyj4645 < yyrr4645; yyj4645++ { - yyh4645.ElemContainerState(yyj4645) - if r.TryDecodeAsNil() { - yyv4645[yyj4645] = EndpointPort{} - } else { - yyv4646 := &yyv4645[yyj4645] - yyv4646.CodecDecodeSelf(d) - } - - } - if yyrt4645 { - for ; yyj4645 < yyl4645; yyj4645++ { - yyv4645 = append(yyv4645, EndpointPort{}) - yyh4645.ElemContainerState(yyj4645) - if r.TryDecodeAsNil() { - yyv4645[yyj4645] = EndpointPort{} - } else { - yyv4647 := &yyv4645[yyj4645] - yyv4647.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4645 := 0 - for ; !r.CheckBreak(); yyj4645++ { - - if yyj4645 >= len(yyv4645) { - yyv4645 = append(yyv4645, EndpointPort{}) // var yyz4645 EndpointPort - yyc4645 = true - } - yyh4645.ElemContainerState(yyj4645) - if yyj4645 < len(yyv4645) { - if r.TryDecodeAsNil() { - yyv4645[yyj4645] = EndpointPort{} - } else { - yyv4648 := &yyv4645[yyj4645] - yyv4648.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4645 < len(yyv4645) { - yyv4645 = yyv4645[:yyj4645] - yyc4645 = true - } else if yyj4645 == 0 && yyv4645 == nil { - yyv4645 = []EndpointPort{} - yyc4645 = true - } - } - yyh4645.End() - if yyc4645 { - *v = yyv4645 - } -} - -func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4649 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4650 := &yyv4649 - yy4650.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4651 := *v - yyh4651, yyl4651 := z.DecSliceHelperStart() - var yyc4651 bool - if yyl4651 == 0 { - if yyv4651 == nil { - yyv4651 = []Endpoints{} - yyc4651 = true - } else if len(yyv4651) != 0 { - yyv4651 = yyv4651[:0] - yyc4651 = true - } - } else if yyl4651 > 0 { - var yyrr4651, yyrl4651 int - var yyrt4651 bool - if yyl4651 > cap(yyv4651) { - - yyrg4651 := len(yyv4651) > 0 - yyv24651 := yyv4651 - yyrl4651, yyrt4651 = z.DecInferLen(yyl4651, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4651 { - if yyrl4651 <= cap(yyv4651) { - yyv4651 = yyv4651[:yyrl4651] - } else { - yyv4651 = make([]Endpoints, yyrl4651) - } - } else { - yyv4651 = make([]Endpoints, yyrl4651) - } - yyc4651 = true - yyrr4651 = len(yyv4651) - if yyrg4651 { - copy(yyv4651, yyv24651) - } - } else if yyl4651 != len(yyv4651) { - yyv4651 = yyv4651[:yyl4651] - yyc4651 = true - } - yyj4651 := 0 - for ; yyj4651 < yyrr4651; yyj4651++ { - yyh4651.ElemContainerState(yyj4651) - if r.TryDecodeAsNil() { - yyv4651[yyj4651] = Endpoints{} - } else { - yyv4652 := &yyv4651[yyj4651] - yyv4652.CodecDecodeSelf(d) - } - - } - if yyrt4651 { - for ; yyj4651 < yyl4651; yyj4651++ { - yyv4651 = append(yyv4651, Endpoints{}) - yyh4651.ElemContainerState(yyj4651) - if r.TryDecodeAsNil() { - yyv4651[yyj4651] = Endpoints{} - } else { - yyv4653 := &yyv4651[yyj4651] - yyv4653.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4651 := 0 - for ; !r.CheckBreak(); yyj4651++ { - - if yyj4651 >= len(yyv4651) { - yyv4651 = append(yyv4651, Endpoints{}) // var yyz4651 Endpoints - yyc4651 = true - } - yyh4651.ElemContainerState(yyj4651) - if yyj4651 < len(yyv4651) { - if r.TryDecodeAsNil() { - yyv4651[yyj4651] = Endpoints{} - } else { - yyv4654 := &yyv4651[yyj4651] - yyv4654.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4651 < len(yyv4651) { - yyv4651 = yyv4651[:yyj4651] - yyc4651 = true - } else if yyj4651 == 0 && yyv4651 == nil { - yyv4651 = []Endpoints{} - yyc4651 = true - } - } - yyh4651.End() - if yyc4651 { - *v = yyv4651 - } -} - -func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4655 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4656 := &yyv4655 - yy4656.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4657 := *v - yyh4657, yyl4657 := z.DecSliceHelperStart() - var yyc4657 bool - if yyl4657 == 0 { - if yyv4657 == nil { - yyv4657 = []NodeCondition{} - yyc4657 = true - } else if len(yyv4657) != 0 { - yyv4657 = yyv4657[:0] - yyc4657 = true - } - } else if yyl4657 > 0 { - var yyrr4657, yyrl4657 int - var yyrt4657 bool - if yyl4657 > cap(yyv4657) { - - yyrg4657 := len(yyv4657) > 0 - yyv24657 := yyv4657 - yyrl4657, yyrt4657 = z.DecInferLen(yyl4657, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4657 { - if yyrl4657 <= cap(yyv4657) { - yyv4657 = yyv4657[:yyrl4657] - } else { - yyv4657 = make([]NodeCondition, yyrl4657) - } - } else { - yyv4657 = make([]NodeCondition, yyrl4657) - } - yyc4657 = true - yyrr4657 = len(yyv4657) - if yyrg4657 { - copy(yyv4657, yyv24657) - } - } else if yyl4657 != len(yyv4657) { - yyv4657 = yyv4657[:yyl4657] - yyc4657 = true - } - yyj4657 := 0 - for ; yyj4657 < yyrr4657; yyj4657++ { - yyh4657.ElemContainerState(yyj4657) - if r.TryDecodeAsNil() { - yyv4657[yyj4657] = NodeCondition{} - } else { - yyv4658 := &yyv4657[yyj4657] - yyv4658.CodecDecodeSelf(d) - } - - } - if yyrt4657 { - for ; yyj4657 < yyl4657; yyj4657++ { - yyv4657 = append(yyv4657, NodeCondition{}) - yyh4657.ElemContainerState(yyj4657) - if r.TryDecodeAsNil() { - yyv4657[yyj4657] = NodeCondition{} - } else { - yyv4659 := &yyv4657[yyj4657] - yyv4659.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4657 := 0 - for ; !r.CheckBreak(); yyj4657++ { - - if yyj4657 >= len(yyv4657) { - yyv4657 = append(yyv4657, NodeCondition{}) // var yyz4657 NodeCondition - yyc4657 = true - } - yyh4657.ElemContainerState(yyj4657) - if yyj4657 < len(yyv4657) { - if r.TryDecodeAsNil() { - yyv4657[yyj4657] = NodeCondition{} - } else { - yyv4660 := &yyv4657[yyj4657] - yyv4660.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4657 < len(yyv4657) { - yyv4657 = yyv4657[:yyj4657] - yyc4657 = true - } else if yyj4657 == 0 && yyv4657 == nil { - yyv4657 = []NodeCondition{} - yyc4657 = true - } - } - yyh4657.End() - if yyc4657 { - *v = yyv4657 - } -} - -func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4661 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4662 := &yyv4661 - yy4662.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4663 := *v - yyh4663, yyl4663 := z.DecSliceHelperStart() - var yyc4663 bool - if yyl4663 == 0 { - if yyv4663 == nil { - yyv4663 = []NodeAddress{} - yyc4663 = true - } else if len(yyv4663) != 0 { - yyv4663 = yyv4663[:0] - yyc4663 = true - } - } else if yyl4663 > 0 { - var yyrr4663, yyrl4663 int - var yyrt4663 bool - if yyl4663 > cap(yyv4663) { - - 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 { - yyv4663 = make([]NodeAddress, yyrl4663) - } - } else { - yyv4663 = make([]NodeAddress, yyrl4663) - } - yyc4663 = true - yyrr4663 = len(yyv4663) - if yyrg4663 { - copy(yyv4663, yyv24663) - } - } else if yyl4663 != len(yyv4663) { - yyv4663 = yyv4663[:yyl4663] - yyc4663 = true - } - yyj4663 := 0 - for ; yyj4663 < yyrr4663; yyj4663++ { - yyh4663.ElemContainerState(yyj4663) - if r.TryDecodeAsNil() { - yyv4663[yyj4663] = NodeAddress{} - } else { - yyv4664 := &yyv4663[yyj4663] - yyv4664.CodecDecodeSelf(d) - } - - } - if yyrt4663 { - for ; yyj4663 < yyl4663; yyj4663++ { - yyv4663 = append(yyv4663, NodeAddress{}) - yyh4663.ElemContainerState(yyj4663) - if r.TryDecodeAsNil() { - yyv4663[yyj4663] = NodeAddress{} - } else { - yyv4665 := &yyv4663[yyj4663] - yyv4665.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4663 := 0 - for ; !r.CheckBreak(); yyj4663++ { - - if yyj4663 >= len(yyv4663) { - yyv4663 = append(yyv4663, NodeAddress{}) // var yyz4663 NodeAddress - yyc4663 = true - } - yyh4663.ElemContainerState(yyj4663) - if yyj4663 < len(yyv4663) { - if r.TryDecodeAsNil() { - yyv4663[yyj4663] = NodeAddress{} - } else { - yyv4666 := &yyv4663[yyj4663] - yyv4666.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4663 < len(yyv4663) { - yyv4663 = yyv4663[:yyj4663] - yyc4663 = true - } else if yyj4663 == 0 && yyv4663 == nil { - yyv4663 = []NodeAddress{} - yyc4663 = true - } - } - yyh4663.End() - if yyc4663 { - *v = yyv4663 - } -} - -func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4667 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4668 := &yyv4667 - yy4668.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4669 := *v - yyh4669, yyl4669 := z.DecSliceHelperStart() - var yyc4669 bool - if yyl4669 == 0 { - if yyv4669 == nil { - yyv4669 = []ContainerImage{} - yyc4669 = true - } else if len(yyv4669) != 0 { - yyv4669 = yyv4669[:0] - yyc4669 = true - } - } else if yyl4669 > 0 { - var yyrr4669, yyrl4669 int - var yyrt4669 bool - if yyl4669 > cap(yyv4669) { - - yyrg4669 := len(yyv4669) > 0 - yyv24669 := yyv4669 - yyrl4669, yyrt4669 = z.DecInferLen(yyl4669, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4669 { - if yyrl4669 <= cap(yyv4669) { - yyv4669 = yyv4669[:yyrl4669] - } else { - yyv4669 = make([]ContainerImage, yyrl4669) - } - } else { - yyv4669 = make([]ContainerImage, yyrl4669) - } - yyc4669 = true - yyrr4669 = len(yyv4669) - if yyrg4669 { - copy(yyv4669, yyv24669) - } - } else if yyl4669 != len(yyv4669) { - yyv4669 = yyv4669[:yyl4669] - yyc4669 = true - } - yyj4669 := 0 - for ; yyj4669 < yyrr4669; yyj4669++ { - yyh4669.ElemContainerState(yyj4669) - if r.TryDecodeAsNil() { - yyv4669[yyj4669] = ContainerImage{} - } else { - yyv4670 := &yyv4669[yyj4669] - yyv4670.CodecDecodeSelf(d) - } - - } - if yyrt4669 { - for ; yyj4669 < yyl4669; yyj4669++ { - yyv4669 = append(yyv4669, ContainerImage{}) - yyh4669.ElemContainerState(yyj4669) - if r.TryDecodeAsNil() { - yyv4669[yyj4669] = ContainerImage{} - } else { - yyv4671 := &yyv4669[yyj4669] - yyv4671.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4669 := 0 - for ; !r.CheckBreak(); yyj4669++ { - - if yyj4669 >= len(yyv4669) { - yyv4669 = append(yyv4669, ContainerImage{}) // var yyz4669 ContainerImage - yyc4669 = true - } - yyh4669.ElemContainerState(yyj4669) - if yyj4669 < len(yyv4669) { - if r.TryDecodeAsNil() { - yyv4669[yyj4669] = ContainerImage{} - } else { - yyv4672 := &yyv4669[yyj4669] - yyv4672.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4669 < len(yyv4669) { - yyv4669 = yyv4669[:yyj4669] - yyc4669 = true - } else if yyj4669 == 0 && yyv4669 == nil { - yyv4669 = []ContainerImage{} - yyc4669 = true - } - } - yyh4669.End() - if yyc4669 { - *v = yyv4669 - } -} - -func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4673 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4673.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4674 := *v yyh4674, yyl4674 := z.DecSliceHelperStart() var yyc4674 bool if yyl4674 == 0 { if yyv4674 == nil { - yyv4674 = []UniqueVolumeName{} + yyv4674 = []ObjectReference{} yyc4674 = true } else if len(yyv4674) != 0 { yyv4674 = yyv4674[:0] @@ -59600,18 +59264,23 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code var yyrt4674 bool if yyl4674 > cap(yyv4674) { - yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 16) + yyrg4674 := len(yyv4674) > 0 + yyv24674 := yyv4674 + yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 112) if yyrt4674 { if yyrl4674 <= cap(yyv4674) { yyv4674 = yyv4674[:yyrl4674] } else { - yyv4674 = make([]UniqueVolumeName, yyrl4674) + yyv4674 = make([]ObjectReference, yyrl4674) } } else { - yyv4674 = make([]UniqueVolumeName, yyrl4674) + yyv4674 = make([]ObjectReference, yyrl4674) } yyc4674 = true yyrr4674 = len(yyv4674) + if yyrg4674 { + copy(yyv4674, yyv24674) + } } else if yyl4674 != len(yyv4674) { yyv4674 = yyv4674[:yyl4674] yyc4674 = true @@ -59620,20 +59289,22 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code for ; yyj4674 < yyrr4674; yyj4674++ { yyh4674.ElemContainerState(yyj4674) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = "" + yyv4674[yyj4674] = ObjectReference{} } else { - yyv4674[yyj4674] = UniqueVolumeName(r.DecodeString()) + yyv4675 := &yyv4674[yyj4674] + yyv4675.CodecDecodeSelf(d) } } if yyrt4674 { for ; yyj4674 < yyl4674; yyj4674++ { - yyv4674 = append(yyv4674, "") + yyv4674 = append(yyv4674, ObjectReference{}) yyh4674.ElemContainerState(yyj4674) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = "" + yyv4674[yyj4674] = ObjectReference{} } else { - yyv4674[yyj4674] = UniqueVolumeName(r.DecodeString()) + yyv4676 := &yyv4674[yyj4674] + yyv4676.CodecDecodeSelf(d) } } @@ -59644,15 +59315,16 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code for ; !r.CheckBreak(); yyj4674++ { if yyj4674 >= len(yyv4674) { - yyv4674 = append(yyv4674, "") // var yyz4674 UniqueVolumeName + yyv4674 = append(yyv4674, ObjectReference{}) // var yyz4674 ObjectReference yyc4674 = true } yyh4674.ElemContainerState(yyj4674) if yyj4674 < len(yyv4674) { if r.TryDecodeAsNil() { - yyv4674[yyj4674] = "" + yyv4674[yyj4674] = ObjectReference{} } else { - yyv4674[yyj4674] = UniqueVolumeName(r.DecodeString()) + yyv4677 := &yyv4674[yyj4674] + yyv4677.CodecDecodeSelf(d) } } else { @@ -59664,7 +59336,7 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code yyv4674 = yyv4674[:yyj4674] yyc4674 = true } else if yyj4674 == 0 && yyv4674 == nil { - yyv4674 = []UniqueVolumeName{} + yyv4674 = []ObjectReference{} yyc4674 = true } } @@ -59674,7 +59346,7 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } -func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -59687,7 +59359,7 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59697,7 +59369,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 var yyc4680 bool if yyl4680 == 0 { if yyv4680 == nil { - yyv4680 = []AttachedVolume{} + yyv4680 = []ServiceAccount{} yyc4680 = true } else if len(yyv4680) != 0 { yyv4680 = yyv4680[:0] @@ -59710,15 +59382,15 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 yyrg4680 := len(yyv4680) > 0 yyv24680 := yyv4680 - yyrl4680, yyrt4680 = z.DecInferLen(yyl4680, z.DecBasicHandle().MaxInitLen, 32) + yyrl4680, yyrt4680 = z.DecInferLen(yyl4680, z.DecBasicHandle().MaxInitLen, 304) if yyrt4680 { if yyrl4680 <= cap(yyv4680) { yyv4680 = yyv4680[:yyrl4680] } else { - yyv4680 = make([]AttachedVolume, yyrl4680) + yyv4680 = make([]ServiceAccount, yyrl4680) } } else { - yyv4680 = make([]AttachedVolume, yyrl4680) + yyv4680 = make([]ServiceAccount, yyrl4680) } yyc4680 = true yyrr4680 = len(yyv4680) @@ -59733,7 +59405,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 for ; yyj4680 < yyrr4680; yyj4680++ { yyh4680.ElemContainerState(yyj4680) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = AttachedVolume{} + yyv4680[yyj4680] = ServiceAccount{} } else { yyv4681 := &yyv4680[yyj4680] yyv4681.CodecDecodeSelf(d) @@ -59742,10 +59414,10 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } if yyrt4680 { for ; yyj4680 < yyl4680; yyj4680++ { - yyv4680 = append(yyv4680, AttachedVolume{}) + yyv4680 = append(yyv4680, ServiceAccount{}) yyh4680.ElemContainerState(yyj4680) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = AttachedVolume{} + yyv4680[yyj4680] = ServiceAccount{} } else { yyv4682 := &yyv4680[yyj4680] yyv4682.CodecDecodeSelf(d) @@ -59759,13 +59431,13 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 for ; !r.CheckBreak(); yyj4680++ { if yyj4680 >= len(yyv4680) { - yyv4680 = append(yyv4680, AttachedVolume{}) // var yyz4680 AttachedVolume + yyv4680 = append(yyv4680, ServiceAccount{}) // var yyz4680 ServiceAccount yyc4680 = true } yyh4680.ElemContainerState(yyj4680) if yyj4680 < len(yyv4680) { if r.TryDecodeAsNil() { - yyv4680[yyj4680] = AttachedVolume{} + yyv4680[yyj4680] = ServiceAccount{} } else { yyv4683 := &yyv4680[yyj4680] yyv4683.CodecDecodeSelf(d) @@ -59780,7 +59452,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 yyv4680 = yyv4680[:yyj4680] yyc4680 = true } else if yyj4680 == 0 && yyv4680 == nil { - yyv4680 = []AttachedVolume{} + yyv4680 = []ServiceAccount{} yyc4680 = true } } @@ -59790,7 +59462,7 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } -func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -59803,7 +59475,7 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59813,7 +59485,7 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, var yyc4686 bool if yyl4686 == 0 { if yyv4686 == nil { - yyv4686 = []PreferAvoidPodsEntry{} + yyv4686 = []EndpointSubset{} yyc4686 = true } else if len(yyv4686) != 0 { yyv4686 = yyv4686[:0] @@ -59826,15 +59498,15 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, yyrg4686 := len(yyv4686) > 0 yyv24686 := yyv4686 - yyrl4686, yyrt4686 = z.DecInferLen(yyl4686, z.DecBasicHandle().MaxInitLen, 64) + yyrl4686, yyrt4686 = z.DecInferLen(yyl4686, z.DecBasicHandle().MaxInitLen, 72) if yyrt4686 { if yyrl4686 <= cap(yyv4686) { yyv4686 = yyv4686[:yyrl4686] } else { - yyv4686 = make([]PreferAvoidPodsEntry, yyrl4686) + yyv4686 = make([]EndpointSubset, yyrl4686) } } else { - yyv4686 = make([]PreferAvoidPodsEntry, yyrl4686) + yyv4686 = make([]EndpointSubset, yyrl4686) } yyc4686 = true yyrr4686 = len(yyv4686) @@ -59849,7 +59521,7 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, for ; yyj4686 < yyrr4686; yyj4686++ { yyh4686.ElemContainerState(yyj4686) if r.TryDecodeAsNil() { - yyv4686[yyj4686] = PreferAvoidPodsEntry{} + yyv4686[yyj4686] = EndpointSubset{} } else { yyv4687 := &yyv4686[yyj4686] yyv4687.CodecDecodeSelf(d) @@ -59858,10 +59530,10 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } if yyrt4686 { for ; yyj4686 < yyl4686; yyj4686++ { - yyv4686 = append(yyv4686, PreferAvoidPodsEntry{}) + yyv4686 = append(yyv4686, EndpointSubset{}) yyh4686.ElemContainerState(yyj4686) if r.TryDecodeAsNil() { - yyv4686[yyj4686] = PreferAvoidPodsEntry{} + yyv4686[yyj4686] = EndpointSubset{} } else { yyv4688 := &yyv4686[yyj4686] yyv4688.CodecDecodeSelf(d) @@ -59875,13 +59547,13 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, for ; !r.CheckBreak(); yyj4686++ { if yyj4686 >= len(yyv4686) { - yyv4686 = append(yyv4686, PreferAvoidPodsEntry{}) // var yyz4686 PreferAvoidPodsEntry + yyv4686 = append(yyv4686, EndpointSubset{}) // var yyz4686 EndpointSubset yyc4686 = true } yyh4686.ElemContainerState(yyj4686) if yyj4686 < len(yyv4686) { if r.TryDecodeAsNil() { - yyv4686[yyj4686] = PreferAvoidPodsEntry{} + yyv4686[yyj4686] = EndpointSubset{} } else { yyv4689 := &yyv4686[yyj4686] yyv4689.CodecDecodeSelf(d) @@ -59896,7 +59568,7 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, yyv4686 = yyv4686[:yyj4686] yyc4686 = true } else if yyj4686 == 0 && yyv4686 == nil { - yyv4686 = []PreferAvoidPodsEntry{} + yyv4686 = []EndpointSubset{} yyc4686 = true } } @@ -59906,24 +59578,1059 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } +func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4690 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4691 := &yyv4690 + yy4691.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4692 := *v + yyh4692, yyl4692 := z.DecSliceHelperStart() + var yyc4692 bool + if yyl4692 == 0 { + if yyv4692 == nil { + yyv4692 = []EndpointAddress{} + yyc4692 = true + } else if len(yyv4692) != 0 { + yyv4692 = yyv4692[:0] + yyc4692 = true + } + } else if yyl4692 > 0 { + var yyrr4692, yyrl4692 int + var yyrt4692 bool + if yyl4692 > cap(yyv4692) { + + yyrg4692 := len(yyv4692) > 0 + yyv24692 := yyv4692 + yyrl4692, yyrt4692 = z.DecInferLen(yyl4692, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4692 { + if yyrl4692 <= cap(yyv4692) { + yyv4692 = yyv4692[:yyrl4692] + } else { + yyv4692 = make([]EndpointAddress, yyrl4692) + } + } else { + yyv4692 = make([]EndpointAddress, yyrl4692) + } + yyc4692 = true + yyrr4692 = len(yyv4692) + if yyrg4692 { + copy(yyv4692, yyv24692) + } + } else if yyl4692 != len(yyv4692) { + yyv4692 = yyv4692[:yyl4692] + yyc4692 = true + } + yyj4692 := 0 + for ; yyj4692 < yyrr4692; yyj4692++ { + yyh4692.ElemContainerState(yyj4692) + if r.TryDecodeAsNil() { + yyv4692[yyj4692] = EndpointAddress{} + } else { + yyv4693 := &yyv4692[yyj4692] + yyv4693.CodecDecodeSelf(d) + } + + } + if yyrt4692 { + for ; yyj4692 < yyl4692; yyj4692++ { + yyv4692 = append(yyv4692, EndpointAddress{}) + yyh4692.ElemContainerState(yyj4692) + if r.TryDecodeAsNil() { + yyv4692[yyj4692] = EndpointAddress{} + } else { + yyv4694 := &yyv4692[yyj4692] + yyv4694.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4692 := 0 + for ; !r.CheckBreak(); yyj4692++ { + + if yyj4692 >= len(yyv4692) { + yyv4692 = append(yyv4692, EndpointAddress{}) // var yyz4692 EndpointAddress + yyc4692 = true + } + yyh4692.ElemContainerState(yyj4692) + if yyj4692 < len(yyv4692) { + if r.TryDecodeAsNil() { + yyv4692[yyj4692] = EndpointAddress{} + } else { + yyv4695 := &yyv4692[yyj4692] + yyv4695.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4692 < len(yyv4692) { + yyv4692 = yyv4692[:yyj4692] + yyc4692 = true + } else if yyj4692 == 0 && yyv4692 == nil { + yyv4692 = []EndpointAddress{} + yyc4692 = true + } + } + yyh4692.End() + if yyc4692 { + *v = yyv4692 + } +} + +func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4696 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4697 := &yyv4696 + yy4697.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4698 := *v + yyh4698, yyl4698 := z.DecSliceHelperStart() + var yyc4698 bool + if yyl4698 == 0 { + if yyv4698 == nil { + yyv4698 = []EndpointPort{} + yyc4698 = true + } else if len(yyv4698) != 0 { + yyv4698 = yyv4698[:0] + yyc4698 = true + } + } else if yyl4698 > 0 { + var yyrr4698, yyrl4698 int + var yyrt4698 bool + if yyl4698 > cap(yyv4698) { + + yyrg4698 := len(yyv4698) > 0 + yyv24698 := yyv4698 + yyrl4698, yyrt4698 = z.DecInferLen(yyl4698, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4698 { + if yyrl4698 <= cap(yyv4698) { + yyv4698 = yyv4698[:yyrl4698] + } else { + yyv4698 = make([]EndpointPort, yyrl4698) + } + } else { + yyv4698 = make([]EndpointPort, yyrl4698) + } + yyc4698 = true + yyrr4698 = len(yyv4698) + if yyrg4698 { + copy(yyv4698, yyv24698) + } + } else if yyl4698 != len(yyv4698) { + yyv4698 = yyv4698[:yyl4698] + yyc4698 = true + } + yyj4698 := 0 + for ; yyj4698 < yyrr4698; yyj4698++ { + yyh4698.ElemContainerState(yyj4698) + if r.TryDecodeAsNil() { + yyv4698[yyj4698] = EndpointPort{} + } else { + yyv4699 := &yyv4698[yyj4698] + yyv4699.CodecDecodeSelf(d) + } + + } + if yyrt4698 { + for ; yyj4698 < yyl4698; yyj4698++ { + yyv4698 = append(yyv4698, EndpointPort{}) + yyh4698.ElemContainerState(yyj4698) + if r.TryDecodeAsNil() { + yyv4698[yyj4698] = EndpointPort{} + } else { + yyv4700 := &yyv4698[yyj4698] + yyv4700.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4698 := 0 + for ; !r.CheckBreak(); yyj4698++ { + + if yyj4698 >= len(yyv4698) { + yyv4698 = append(yyv4698, EndpointPort{}) // var yyz4698 EndpointPort + yyc4698 = true + } + yyh4698.ElemContainerState(yyj4698) + if yyj4698 < len(yyv4698) { + if r.TryDecodeAsNil() { + yyv4698[yyj4698] = EndpointPort{} + } else { + yyv4701 := &yyv4698[yyj4698] + yyv4701.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4698 < len(yyv4698) { + yyv4698 = yyv4698[:yyj4698] + yyc4698 = true + } else if yyj4698 == 0 && yyv4698 == nil { + yyv4698 = []EndpointPort{} + yyc4698 = true + } + } + yyh4698.End() + if yyc4698 { + *v = yyv4698 + } +} + +func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4702 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4703 := &yyv4702 + yy4703.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4704 := *v + yyh4704, yyl4704 := z.DecSliceHelperStart() + var yyc4704 bool + if yyl4704 == 0 { + if yyv4704 == nil { + yyv4704 = []Endpoints{} + yyc4704 = true + } else if len(yyv4704) != 0 { + yyv4704 = yyv4704[:0] + yyc4704 = true + } + } else if yyl4704 > 0 { + var yyrr4704, yyrl4704 int + var yyrt4704 bool + if yyl4704 > cap(yyv4704) { + + yyrg4704 := len(yyv4704) > 0 + yyv24704 := yyv4704 + yyrl4704, yyrt4704 = z.DecInferLen(yyl4704, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4704 { + if yyrl4704 <= cap(yyv4704) { + yyv4704 = yyv4704[:yyrl4704] + } else { + yyv4704 = make([]Endpoints, yyrl4704) + } + } else { + yyv4704 = make([]Endpoints, yyrl4704) + } + yyc4704 = true + yyrr4704 = len(yyv4704) + if yyrg4704 { + copy(yyv4704, yyv24704) + } + } else if yyl4704 != len(yyv4704) { + yyv4704 = yyv4704[:yyl4704] + yyc4704 = true + } + yyj4704 := 0 + for ; yyj4704 < yyrr4704; yyj4704++ { + yyh4704.ElemContainerState(yyj4704) + if r.TryDecodeAsNil() { + yyv4704[yyj4704] = Endpoints{} + } else { + yyv4705 := &yyv4704[yyj4704] + yyv4705.CodecDecodeSelf(d) + } + + } + if yyrt4704 { + for ; yyj4704 < yyl4704; yyj4704++ { + yyv4704 = append(yyv4704, Endpoints{}) + yyh4704.ElemContainerState(yyj4704) + if r.TryDecodeAsNil() { + yyv4704[yyj4704] = Endpoints{} + } else { + yyv4706 := &yyv4704[yyj4704] + yyv4706.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4704 := 0 + for ; !r.CheckBreak(); yyj4704++ { + + if yyj4704 >= len(yyv4704) { + yyv4704 = append(yyv4704, Endpoints{}) // var yyz4704 Endpoints + yyc4704 = true + } + yyh4704.ElemContainerState(yyj4704) + if yyj4704 < len(yyv4704) { + if r.TryDecodeAsNil() { + yyv4704[yyj4704] = Endpoints{} + } else { + yyv4707 := &yyv4704[yyj4704] + yyv4707.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4704 < len(yyv4704) { + yyv4704 = yyv4704[:yyj4704] + yyc4704 = true + } else if yyj4704 == 0 && yyv4704 == nil { + yyv4704 = []Endpoints{} + yyc4704 = true + } + } + yyh4704.End() + if yyc4704 { + *v = yyv4704 + } +} + +func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4708 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4709 := &yyv4708 + yy4709.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4710 := *v + yyh4710, yyl4710 := z.DecSliceHelperStart() + var yyc4710 bool + if yyl4710 == 0 { + if yyv4710 == nil { + yyv4710 = []NodeCondition{} + yyc4710 = true + } else if len(yyv4710) != 0 { + yyv4710 = yyv4710[:0] + yyc4710 = true + } + } else if yyl4710 > 0 { + var yyrr4710, yyrl4710 int + var yyrt4710 bool + if yyl4710 > cap(yyv4710) { + + yyrg4710 := len(yyv4710) > 0 + yyv24710 := yyv4710 + yyrl4710, yyrt4710 = z.DecInferLen(yyl4710, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4710 { + if yyrl4710 <= cap(yyv4710) { + yyv4710 = yyv4710[:yyrl4710] + } else { + yyv4710 = make([]NodeCondition, yyrl4710) + } + } else { + yyv4710 = make([]NodeCondition, yyrl4710) + } + yyc4710 = true + yyrr4710 = len(yyv4710) + if yyrg4710 { + copy(yyv4710, yyv24710) + } + } else if yyl4710 != len(yyv4710) { + yyv4710 = yyv4710[:yyl4710] + yyc4710 = true + } + yyj4710 := 0 + for ; yyj4710 < yyrr4710; yyj4710++ { + yyh4710.ElemContainerState(yyj4710) + if r.TryDecodeAsNil() { + yyv4710[yyj4710] = NodeCondition{} + } else { + yyv4711 := &yyv4710[yyj4710] + yyv4711.CodecDecodeSelf(d) + } + + } + if yyrt4710 { + for ; yyj4710 < yyl4710; yyj4710++ { + yyv4710 = append(yyv4710, NodeCondition{}) + yyh4710.ElemContainerState(yyj4710) + if r.TryDecodeAsNil() { + yyv4710[yyj4710] = NodeCondition{} + } else { + yyv4712 := &yyv4710[yyj4710] + yyv4712.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4710 := 0 + for ; !r.CheckBreak(); yyj4710++ { + + if yyj4710 >= len(yyv4710) { + yyv4710 = append(yyv4710, NodeCondition{}) // var yyz4710 NodeCondition + yyc4710 = true + } + yyh4710.ElemContainerState(yyj4710) + if yyj4710 < len(yyv4710) { + if r.TryDecodeAsNil() { + yyv4710[yyj4710] = NodeCondition{} + } else { + yyv4713 := &yyv4710[yyj4710] + yyv4713.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4710 < len(yyv4710) { + yyv4710 = yyv4710[:yyj4710] + yyc4710 = true + } else if yyj4710 == 0 && yyv4710 == nil { + yyv4710 = []NodeCondition{} + yyc4710 = true + } + } + yyh4710.End() + if yyc4710 { + *v = yyv4710 + } +} + +func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4714 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4715 := &yyv4714 + yy4715.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4716 := *v + yyh4716, yyl4716 := z.DecSliceHelperStart() + var yyc4716 bool + if yyl4716 == 0 { + if yyv4716 == nil { + yyv4716 = []NodeAddress{} + yyc4716 = true + } else if len(yyv4716) != 0 { + yyv4716 = yyv4716[:0] + yyc4716 = true + } + } else if yyl4716 > 0 { + var yyrr4716, yyrl4716 int + var yyrt4716 bool + if yyl4716 > cap(yyv4716) { + + yyrg4716 := len(yyv4716) > 0 + yyv24716 := yyv4716 + yyrl4716, yyrt4716 = z.DecInferLen(yyl4716, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4716 { + if yyrl4716 <= cap(yyv4716) { + yyv4716 = yyv4716[:yyrl4716] + } else { + yyv4716 = make([]NodeAddress, yyrl4716) + } + } else { + yyv4716 = make([]NodeAddress, yyrl4716) + } + yyc4716 = true + yyrr4716 = len(yyv4716) + if yyrg4716 { + copy(yyv4716, yyv24716) + } + } else if yyl4716 != len(yyv4716) { + yyv4716 = yyv4716[:yyl4716] + yyc4716 = true + } + yyj4716 := 0 + for ; yyj4716 < yyrr4716; yyj4716++ { + yyh4716.ElemContainerState(yyj4716) + if r.TryDecodeAsNil() { + yyv4716[yyj4716] = NodeAddress{} + } else { + yyv4717 := &yyv4716[yyj4716] + yyv4717.CodecDecodeSelf(d) + } + + } + if yyrt4716 { + for ; yyj4716 < yyl4716; yyj4716++ { + yyv4716 = append(yyv4716, NodeAddress{}) + yyh4716.ElemContainerState(yyj4716) + if r.TryDecodeAsNil() { + yyv4716[yyj4716] = NodeAddress{} + } else { + yyv4718 := &yyv4716[yyj4716] + yyv4718.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4716 := 0 + for ; !r.CheckBreak(); yyj4716++ { + + if yyj4716 >= len(yyv4716) { + yyv4716 = append(yyv4716, NodeAddress{}) // var yyz4716 NodeAddress + yyc4716 = true + } + yyh4716.ElemContainerState(yyj4716) + if yyj4716 < len(yyv4716) { + if r.TryDecodeAsNil() { + yyv4716[yyj4716] = NodeAddress{} + } else { + yyv4719 := &yyv4716[yyj4716] + yyv4719.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4716 < len(yyv4716) { + yyv4716 = yyv4716[:yyj4716] + yyc4716 = true + } else if yyj4716 == 0 && yyv4716 == nil { + yyv4716 = []NodeAddress{} + yyc4716 = true + } + } + yyh4716.End() + if yyc4716 { + *v = yyv4716 + } +} + +func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4720 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4721 := &yyv4720 + yy4721.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4722 := *v + yyh4722, yyl4722 := z.DecSliceHelperStart() + var yyc4722 bool + if yyl4722 == 0 { + if yyv4722 == nil { + yyv4722 = []ContainerImage{} + yyc4722 = true + } else if len(yyv4722) != 0 { + yyv4722 = yyv4722[:0] + yyc4722 = true + } + } else if yyl4722 > 0 { + var yyrr4722, yyrl4722 int + var yyrt4722 bool + if yyl4722 > cap(yyv4722) { + + yyrg4722 := len(yyv4722) > 0 + yyv24722 := yyv4722 + yyrl4722, yyrt4722 = z.DecInferLen(yyl4722, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4722 { + if yyrl4722 <= cap(yyv4722) { + yyv4722 = yyv4722[:yyrl4722] + } else { + yyv4722 = make([]ContainerImage, yyrl4722) + } + } else { + yyv4722 = make([]ContainerImage, yyrl4722) + } + yyc4722 = true + yyrr4722 = len(yyv4722) + if yyrg4722 { + copy(yyv4722, yyv24722) + } + } else if yyl4722 != len(yyv4722) { + yyv4722 = yyv4722[:yyl4722] + yyc4722 = true + } + yyj4722 := 0 + for ; yyj4722 < yyrr4722; yyj4722++ { + yyh4722.ElemContainerState(yyj4722) + if r.TryDecodeAsNil() { + yyv4722[yyj4722] = ContainerImage{} + } else { + yyv4723 := &yyv4722[yyj4722] + yyv4723.CodecDecodeSelf(d) + } + + } + if yyrt4722 { + for ; yyj4722 < yyl4722; yyj4722++ { + yyv4722 = append(yyv4722, ContainerImage{}) + yyh4722.ElemContainerState(yyj4722) + if r.TryDecodeAsNil() { + yyv4722[yyj4722] = ContainerImage{} + } else { + yyv4724 := &yyv4722[yyj4722] + yyv4724.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4722 := 0 + for ; !r.CheckBreak(); yyj4722++ { + + if yyj4722 >= len(yyv4722) { + yyv4722 = append(yyv4722, ContainerImage{}) // var yyz4722 ContainerImage + yyc4722 = true + } + yyh4722.ElemContainerState(yyj4722) + if yyj4722 < len(yyv4722) { + if r.TryDecodeAsNil() { + yyv4722[yyj4722] = ContainerImage{} + } else { + yyv4725 := &yyv4722[yyj4722] + yyv4725.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4722 < len(yyv4722) { + yyv4722 = yyv4722[:yyj4722] + yyc4722 = true + } else if yyj4722 == 0 && yyv4722 == nil { + yyv4722 = []ContainerImage{} + yyc4722 = true + } + } + yyh4722.End() + if yyc4722 { + *v = yyv4722 + } +} + +func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4726 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4726.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4727 := *v + yyh4727, yyl4727 := z.DecSliceHelperStart() + var yyc4727 bool + if yyl4727 == 0 { + if yyv4727 == nil { + yyv4727 = []UniqueVolumeName{} + yyc4727 = true + } else if len(yyv4727) != 0 { + yyv4727 = yyv4727[:0] + yyc4727 = true + } + } else if yyl4727 > 0 { + var yyrr4727, yyrl4727 int + var yyrt4727 bool + if yyl4727 > cap(yyv4727) { + + yyrl4727, yyrt4727 = z.DecInferLen(yyl4727, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4727 { + if yyrl4727 <= cap(yyv4727) { + yyv4727 = yyv4727[:yyrl4727] + } else { + yyv4727 = make([]UniqueVolumeName, yyrl4727) + } + } else { + yyv4727 = make([]UniqueVolumeName, yyrl4727) + } + yyc4727 = true + yyrr4727 = len(yyv4727) + } else if yyl4727 != len(yyv4727) { + yyv4727 = yyv4727[:yyl4727] + yyc4727 = true + } + yyj4727 := 0 + for ; yyj4727 < yyrr4727; yyj4727++ { + yyh4727.ElemContainerState(yyj4727) + if r.TryDecodeAsNil() { + yyv4727[yyj4727] = "" + } else { + yyv4727[yyj4727] = UniqueVolumeName(r.DecodeString()) + } + + } + if yyrt4727 { + for ; yyj4727 < yyl4727; yyj4727++ { + yyv4727 = append(yyv4727, "") + yyh4727.ElemContainerState(yyj4727) + if r.TryDecodeAsNil() { + yyv4727[yyj4727] = "" + } else { + yyv4727[yyj4727] = UniqueVolumeName(r.DecodeString()) + } + + } + } + + } else { + yyj4727 := 0 + for ; !r.CheckBreak(); yyj4727++ { + + if yyj4727 >= len(yyv4727) { + yyv4727 = append(yyv4727, "") // var yyz4727 UniqueVolumeName + yyc4727 = true + } + yyh4727.ElemContainerState(yyj4727) + if yyj4727 < len(yyv4727) { + if r.TryDecodeAsNil() { + yyv4727[yyj4727] = "" + } else { + yyv4727[yyj4727] = UniqueVolumeName(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4727 < len(yyv4727) { + yyv4727 = yyv4727[:yyj4727] + yyc4727 = true + } else if yyj4727 == 0 && yyv4727 == nil { + yyv4727 = []UniqueVolumeName{} + yyc4727 = true + } + } + yyh4727.End() + if yyc4727 { + *v = yyv4727 + } +} + +func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4731 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4732 := &yyv4731 + yy4732.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4733 := *v + yyh4733, yyl4733 := z.DecSliceHelperStart() + var yyc4733 bool + if yyl4733 == 0 { + if yyv4733 == nil { + yyv4733 = []AttachedVolume{} + yyc4733 = true + } else if len(yyv4733) != 0 { + yyv4733 = yyv4733[:0] + yyc4733 = true + } + } else if yyl4733 > 0 { + var yyrr4733, yyrl4733 int + var yyrt4733 bool + if yyl4733 > cap(yyv4733) { + + yyrg4733 := len(yyv4733) > 0 + yyv24733 := yyv4733 + yyrl4733, yyrt4733 = z.DecInferLen(yyl4733, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4733 { + if yyrl4733 <= cap(yyv4733) { + yyv4733 = yyv4733[:yyrl4733] + } else { + yyv4733 = make([]AttachedVolume, yyrl4733) + } + } else { + yyv4733 = make([]AttachedVolume, yyrl4733) + } + yyc4733 = true + yyrr4733 = len(yyv4733) + if yyrg4733 { + copy(yyv4733, yyv24733) + } + } else if yyl4733 != len(yyv4733) { + yyv4733 = yyv4733[:yyl4733] + yyc4733 = true + } + yyj4733 := 0 + for ; yyj4733 < yyrr4733; yyj4733++ { + yyh4733.ElemContainerState(yyj4733) + if r.TryDecodeAsNil() { + yyv4733[yyj4733] = AttachedVolume{} + } else { + yyv4734 := &yyv4733[yyj4733] + yyv4734.CodecDecodeSelf(d) + } + + } + if yyrt4733 { + for ; yyj4733 < yyl4733; yyj4733++ { + yyv4733 = append(yyv4733, AttachedVolume{}) + yyh4733.ElemContainerState(yyj4733) + if r.TryDecodeAsNil() { + yyv4733[yyj4733] = AttachedVolume{} + } else { + yyv4735 := &yyv4733[yyj4733] + yyv4735.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4733 := 0 + for ; !r.CheckBreak(); yyj4733++ { + + if yyj4733 >= len(yyv4733) { + yyv4733 = append(yyv4733, AttachedVolume{}) // var yyz4733 AttachedVolume + yyc4733 = true + } + yyh4733.ElemContainerState(yyj4733) + if yyj4733 < len(yyv4733) { + if r.TryDecodeAsNil() { + yyv4733[yyj4733] = AttachedVolume{} + } else { + yyv4736 := &yyv4733[yyj4733] + yyv4736.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4733 < len(yyv4733) { + yyv4733 = yyv4733[:yyj4733] + yyc4733 = true + } else if yyj4733 == 0 && yyv4733 == nil { + yyv4733 = []AttachedVolume{} + yyc4733 = true + } + } + yyh4733.End() + if yyc4733 { + *v = yyv4733 + } +} + +func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4737 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4738 := &yyv4737 + yy4738.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4739 := *v + yyh4739, yyl4739 := z.DecSliceHelperStart() + var yyc4739 bool + if yyl4739 == 0 { + if yyv4739 == nil { + yyv4739 = []PreferAvoidPodsEntry{} + yyc4739 = true + } else if len(yyv4739) != 0 { + yyv4739 = yyv4739[:0] + yyc4739 = true + } + } else if yyl4739 > 0 { + var yyrr4739, yyrl4739 int + var yyrt4739 bool + if yyl4739 > cap(yyv4739) { + + yyrg4739 := len(yyv4739) > 0 + yyv24739 := yyv4739 + yyrl4739, yyrt4739 = z.DecInferLen(yyl4739, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4739 { + if yyrl4739 <= cap(yyv4739) { + yyv4739 = yyv4739[:yyrl4739] + } else { + yyv4739 = make([]PreferAvoidPodsEntry, yyrl4739) + } + } else { + yyv4739 = make([]PreferAvoidPodsEntry, yyrl4739) + } + yyc4739 = true + yyrr4739 = len(yyv4739) + if yyrg4739 { + copy(yyv4739, yyv24739) + } + } else if yyl4739 != len(yyv4739) { + yyv4739 = yyv4739[:yyl4739] + yyc4739 = true + } + yyj4739 := 0 + for ; yyj4739 < yyrr4739; yyj4739++ { + yyh4739.ElemContainerState(yyj4739) + if r.TryDecodeAsNil() { + yyv4739[yyj4739] = PreferAvoidPodsEntry{} + } else { + yyv4740 := &yyv4739[yyj4739] + yyv4740.CodecDecodeSelf(d) + } + + } + if yyrt4739 { + for ; yyj4739 < yyl4739; yyj4739++ { + yyv4739 = append(yyv4739, PreferAvoidPodsEntry{}) + yyh4739.ElemContainerState(yyj4739) + if r.TryDecodeAsNil() { + yyv4739[yyj4739] = PreferAvoidPodsEntry{} + } else { + yyv4741 := &yyv4739[yyj4739] + yyv4741.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4739 := 0 + for ; !r.CheckBreak(); yyj4739++ { + + if yyj4739 >= len(yyv4739) { + yyv4739 = append(yyv4739, PreferAvoidPodsEntry{}) // var yyz4739 PreferAvoidPodsEntry + yyc4739 = true + } + yyh4739.ElemContainerState(yyj4739) + if yyj4739 < len(yyv4739) { + if r.TryDecodeAsNil() { + yyv4739[yyj4739] = PreferAvoidPodsEntry{} + } else { + yyv4742 := &yyv4739[yyj4739] + yyv4742.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4739 < len(yyv4739) { + yyv4739 = yyv4739[:yyj4739] + yyc4739 = true + } else if yyj4739 == 0 && yyv4739 == nil { + yyv4739 = []PreferAvoidPodsEntry{} + yyc4739 = true + } + } + yyh4739.End() + if yyc4739 { + *v = yyv4739 + } +} + func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4690, yyv4690 := range v { + for yyk4743, yyv4743 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4690.CodecEncodeSelf(e) + yyk4743.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4691 := &yyv4690 - yym4692 := z.EncBinary() - _ = yym4692 + yy4744 := &yyv4743 + yym4745 := z.EncBinary() + _ = yym4745 if false { - } else if z.HasExtensions() && z.EncExt(yy4691) { - } else if !yym4692 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4691) + } else if z.HasExtensions() && z.EncExt(yy4744) { + } else if !yym4745 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4744) } else { - z.EncFallback(yy4691) + z.EncFallback(yy4744) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -59934,86 +60641,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4693 := *v - yyl4693 := r.ReadMapStart() - yybh4693 := z.DecBasicHandle() - if yyv4693 == nil { - yyrl4693, _ := z.DecInferLen(yyl4693, yybh4693.MaxInitLen, 72) - yyv4693 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4693) - *v = yyv4693 + yyv4746 := *v + yyl4746 := r.ReadMapStart() + yybh4746 := z.DecBasicHandle() + if yyv4746 == nil { + yyrl4746, _ := z.DecInferLen(yyl4746, yybh4746.MaxInitLen, 72) + yyv4746 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4746) + *v = yyv4746 } - var yymk4693 ResourceName - var yymv4693 pkg3_resource.Quantity - var yymg4693 bool - if yybh4693.MapValueReset { - yymg4693 = true + var yymk4746 ResourceName + var yymv4746 pkg3_resource.Quantity + var yymg4746 bool + if yybh4746.MapValueReset { + yymg4746 = true } - if yyl4693 > 0 { - for yyj4693 := 0; yyj4693 < yyl4693; yyj4693++ { + if yyl4746 > 0 { + for yyj4746 := 0; yyj4746 < yyl4746; yyj4746++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4693 = "" + yymk4746 = "" } else { - yymk4693 = ResourceName(r.DecodeString()) + yymk4746 = ResourceName(r.DecodeString()) } - if yymg4693 { - yymv4693 = yyv4693[yymk4693] + if yymg4746 { + yymv4746 = yyv4746[yymk4746] } else { - yymv4693 = pkg3_resource.Quantity{} + yymv4746 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4693 = pkg3_resource.Quantity{} + yymv4746 = pkg3_resource.Quantity{} } else { - yyv4695 := &yymv4693 - yym4696 := z.DecBinary() - _ = yym4696 + yyv4748 := &yymv4746 + yym4749 := z.DecBinary() + _ = yym4749 if false { - } else if z.HasExtensions() && z.DecExt(yyv4695) { - } else if !yym4696 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4695) + } else if z.HasExtensions() && z.DecExt(yyv4748) { + } else if !yym4749 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4748) } else { - z.DecFallback(yyv4695, false) + z.DecFallback(yyv4748, false) } } - if yyv4693 != nil { - yyv4693[yymk4693] = yymv4693 + if yyv4746 != nil { + yyv4746[yymk4746] = yymv4746 } } - } else if yyl4693 < 0 { - for yyj4693 := 0; !r.CheckBreak(); yyj4693++ { + } else if yyl4746 < 0 { + for yyj4746 := 0; !r.CheckBreak(); yyj4746++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4693 = "" + yymk4746 = "" } else { - yymk4693 = ResourceName(r.DecodeString()) + yymk4746 = ResourceName(r.DecodeString()) } - if yymg4693 { - yymv4693 = yyv4693[yymk4693] + if yymg4746 { + yymv4746 = yyv4746[yymk4746] } else { - yymv4693 = pkg3_resource.Quantity{} + yymv4746 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4693 = pkg3_resource.Quantity{} + yymv4746 = pkg3_resource.Quantity{} } else { - yyv4698 := &yymv4693 - yym4699 := z.DecBinary() - _ = yym4699 + yyv4751 := &yymv4746 + yym4752 := z.DecBinary() + _ = yym4752 if false { - } else if z.HasExtensions() && z.DecExt(yyv4698) { - } else if !yym4699 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4698) + } else if z.HasExtensions() && z.DecExt(yyv4751) { + } else if !yym4752 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4751) } else { - z.DecFallback(yyv4698, false) + z.DecFallback(yyv4751, false) } } - if yyv4693 != nil { - yyv4693[yymk4693] = yymv4693 + if yyv4746 != nil { + yyv4746[yymk4746] = yymv4746 } } } // else len==0: TODO: Should we clear map entries? @@ -60025,10 +60732,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4700 := range v { + for _, yyv4753 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4701 := &yyv4700 - yy4701.CodecEncodeSelf(e) + yy4754 := &yyv4753 + yy4754.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60038,83 +60745,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4702 := *v - yyh4702, yyl4702 := z.DecSliceHelperStart() - var yyc4702 bool - if yyl4702 == 0 { - if yyv4702 == nil { - yyv4702 = []Node{} - yyc4702 = true - } else if len(yyv4702) != 0 { - yyv4702 = yyv4702[:0] - yyc4702 = true + yyv4755 := *v + yyh4755, yyl4755 := z.DecSliceHelperStart() + var yyc4755 bool + if yyl4755 == 0 { + if yyv4755 == nil { + yyv4755 = []Node{} + yyc4755 = true + } else if len(yyv4755) != 0 { + yyv4755 = yyv4755[:0] + yyc4755 = true } - } else if yyl4702 > 0 { - var yyrr4702, yyrl4702 int - var yyrt4702 bool - if yyl4702 > cap(yyv4702) { + } else if yyl4755 > 0 { + var yyrr4755, yyrl4755 int + var yyrt4755 bool + if yyl4755 > cap(yyv4755) { - yyrg4702 := len(yyv4702) > 0 - yyv24702 := yyv4702 - yyrl4702, yyrt4702 = z.DecInferLen(yyl4702, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4702 { - if yyrl4702 <= cap(yyv4702) { - yyv4702 = yyv4702[:yyrl4702] + yyrg4755 := len(yyv4755) > 0 + yyv24755 := yyv4755 + yyrl4755, yyrt4755 = z.DecInferLen(yyl4755, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4755 { + if yyrl4755 <= cap(yyv4755) { + yyv4755 = yyv4755[:yyrl4755] } else { - yyv4702 = make([]Node, yyrl4702) + yyv4755 = make([]Node, yyrl4755) } } else { - yyv4702 = make([]Node, yyrl4702) + yyv4755 = make([]Node, yyrl4755) } - yyc4702 = true - yyrr4702 = len(yyv4702) - if yyrg4702 { - copy(yyv4702, yyv24702) + yyc4755 = true + yyrr4755 = len(yyv4755) + if yyrg4755 { + copy(yyv4755, yyv24755) } - } else if yyl4702 != len(yyv4702) { - yyv4702 = yyv4702[:yyl4702] - yyc4702 = true + } else if yyl4755 != len(yyv4755) { + yyv4755 = yyv4755[:yyl4755] + yyc4755 = true } - yyj4702 := 0 - for ; yyj4702 < yyrr4702; yyj4702++ { - yyh4702.ElemContainerState(yyj4702) + yyj4755 := 0 + for ; yyj4755 < yyrr4755; yyj4755++ { + yyh4755.ElemContainerState(yyj4755) if r.TryDecodeAsNil() { - yyv4702[yyj4702] = Node{} + yyv4755[yyj4755] = Node{} } else { - yyv4703 := &yyv4702[yyj4702] - yyv4703.CodecDecodeSelf(d) + yyv4756 := &yyv4755[yyj4755] + yyv4756.CodecDecodeSelf(d) } } - if yyrt4702 { - for ; yyj4702 < yyl4702; yyj4702++ { - yyv4702 = append(yyv4702, Node{}) - yyh4702.ElemContainerState(yyj4702) + if yyrt4755 { + for ; yyj4755 < yyl4755; yyj4755++ { + yyv4755 = append(yyv4755, Node{}) + yyh4755.ElemContainerState(yyj4755) if r.TryDecodeAsNil() { - yyv4702[yyj4702] = Node{} + yyv4755[yyj4755] = Node{} } else { - yyv4704 := &yyv4702[yyj4702] - yyv4704.CodecDecodeSelf(d) + yyv4757 := &yyv4755[yyj4755] + yyv4757.CodecDecodeSelf(d) } } } } else { - yyj4702 := 0 - for ; !r.CheckBreak(); yyj4702++ { + yyj4755 := 0 + for ; !r.CheckBreak(); yyj4755++ { - if yyj4702 >= len(yyv4702) { - yyv4702 = append(yyv4702, Node{}) // var yyz4702 Node - yyc4702 = true + if yyj4755 >= len(yyv4755) { + yyv4755 = append(yyv4755, Node{}) // var yyz4755 Node + yyc4755 = true } - yyh4702.ElemContainerState(yyj4702) - if yyj4702 < len(yyv4702) { + yyh4755.ElemContainerState(yyj4755) + if yyj4755 < len(yyv4755) { if r.TryDecodeAsNil() { - yyv4702[yyj4702] = Node{} + yyv4755[yyj4755] = Node{} } else { - yyv4705 := &yyv4702[yyj4702] - yyv4705.CodecDecodeSelf(d) + yyv4758 := &yyv4755[yyj4755] + yyv4758.CodecDecodeSelf(d) } } else { @@ -60122,17 +60829,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4702 < len(yyv4702) { - yyv4702 = yyv4702[:yyj4702] - yyc4702 = true - } else if yyj4702 == 0 && yyv4702 == nil { - yyv4702 = []Node{} - yyc4702 = true + if yyj4755 < len(yyv4755) { + yyv4755 = yyv4755[:yyj4755] + yyc4755 = true + } else if yyj4755 == 0 && yyv4755 == nil { + yyv4755 = []Node{} + yyc4755 = true } } - yyh4702.End() - if yyc4702 { - *v = yyv4702 + yyh4755.End() + if yyc4755 { + *v = yyv4755 } } @@ -60141,9 +60848,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4706 := range v { + for _, yyv4759 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4706.CodecEncodeSelf(e) + yyv4759.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60153,75 +60860,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4707 := *v - yyh4707, yyl4707 := z.DecSliceHelperStart() - var yyc4707 bool - if yyl4707 == 0 { - if yyv4707 == nil { - yyv4707 = []FinalizerName{} - yyc4707 = true - } else if len(yyv4707) != 0 { - yyv4707 = yyv4707[:0] - yyc4707 = true + yyv4760 := *v + yyh4760, yyl4760 := z.DecSliceHelperStart() + var yyc4760 bool + if yyl4760 == 0 { + if yyv4760 == nil { + yyv4760 = []FinalizerName{} + yyc4760 = true + } else if len(yyv4760) != 0 { + yyv4760 = yyv4760[:0] + yyc4760 = true } - } else if yyl4707 > 0 { - var yyrr4707, yyrl4707 int - var yyrt4707 bool - if yyl4707 > cap(yyv4707) { + } else if yyl4760 > 0 { + var yyrr4760, yyrl4760 int + var yyrt4760 bool + if yyl4760 > cap(yyv4760) { - yyrl4707, yyrt4707 = z.DecInferLen(yyl4707, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4707 { - if yyrl4707 <= cap(yyv4707) { - yyv4707 = yyv4707[:yyrl4707] + yyrl4760, yyrt4760 = z.DecInferLen(yyl4760, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4760 { + if yyrl4760 <= cap(yyv4760) { + yyv4760 = yyv4760[:yyrl4760] } else { - yyv4707 = make([]FinalizerName, yyrl4707) + yyv4760 = make([]FinalizerName, yyrl4760) } } else { - yyv4707 = make([]FinalizerName, yyrl4707) + yyv4760 = make([]FinalizerName, yyrl4760) } - yyc4707 = true - yyrr4707 = len(yyv4707) - } else if yyl4707 != len(yyv4707) { - yyv4707 = yyv4707[:yyl4707] - yyc4707 = true + yyc4760 = true + yyrr4760 = len(yyv4760) + } else if yyl4760 != len(yyv4760) { + yyv4760 = yyv4760[:yyl4760] + yyc4760 = true } - yyj4707 := 0 - for ; yyj4707 < yyrr4707; yyj4707++ { - yyh4707.ElemContainerState(yyj4707) + yyj4760 := 0 + for ; yyj4760 < yyrr4760; yyj4760++ { + yyh4760.ElemContainerState(yyj4760) if r.TryDecodeAsNil() { - yyv4707[yyj4707] = "" + yyv4760[yyj4760] = "" } else { - yyv4707[yyj4707] = FinalizerName(r.DecodeString()) + yyv4760[yyj4760] = FinalizerName(r.DecodeString()) } } - if yyrt4707 { - for ; yyj4707 < yyl4707; yyj4707++ { - yyv4707 = append(yyv4707, "") - yyh4707.ElemContainerState(yyj4707) + if yyrt4760 { + for ; yyj4760 < yyl4760; yyj4760++ { + yyv4760 = append(yyv4760, "") + yyh4760.ElemContainerState(yyj4760) if r.TryDecodeAsNil() { - yyv4707[yyj4707] = "" + yyv4760[yyj4760] = "" } else { - yyv4707[yyj4707] = FinalizerName(r.DecodeString()) + yyv4760[yyj4760] = FinalizerName(r.DecodeString()) } } } } else { - yyj4707 := 0 - for ; !r.CheckBreak(); yyj4707++ { + yyj4760 := 0 + for ; !r.CheckBreak(); yyj4760++ { - if yyj4707 >= len(yyv4707) { - yyv4707 = append(yyv4707, "") // var yyz4707 FinalizerName - yyc4707 = true + if yyj4760 >= len(yyv4760) { + yyv4760 = append(yyv4760, "") // var yyz4760 FinalizerName + yyc4760 = true } - yyh4707.ElemContainerState(yyj4707) - if yyj4707 < len(yyv4707) { + yyh4760.ElemContainerState(yyj4760) + if yyj4760 < len(yyv4760) { if r.TryDecodeAsNil() { - yyv4707[yyj4707] = "" + yyv4760[yyj4760] = "" } else { - yyv4707[yyj4707] = FinalizerName(r.DecodeString()) + yyv4760[yyj4760] = FinalizerName(r.DecodeString()) } } else { @@ -60229,17 +60936,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4707 < len(yyv4707) { - yyv4707 = yyv4707[:yyj4707] - yyc4707 = true - } else if yyj4707 == 0 && yyv4707 == nil { - yyv4707 = []FinalizerName{} - yyc4707 = true + if yyj4760 < len(yyv4760) { + yyv4760 = yyv4760[:yyj4760] + yyc4760 = true + } else if yyj4760 == 0 && yyv4760 == nil { + yyv4760 = []FinalizerName{} + yyc4760 = true } } - yyh4707.End() - if yyc4707 { - *v = yyv4707 + yyh4760.End() + if yyc4760 { + *v = yyv4760 } } @@ -60248,10 +60955,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4711 := range v { + for _, yyv4764 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4712 := &yyv4711 - yy4712.CodecEncodeSelf(e) + yy4765 := &yyv4764 + yy4765.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60261,83 +60968,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, 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 = []Namespace{} - yyc4713 = true - } else if len(yyv4713) != 0 { - yyv4713 = yyv4713[:0] - yyc4713 = true + yyv4766 := *v + yyh4766, yyl4766 := z.DecSliceHelperStart() + var yyc4766 bool + if yyl4766 == 0 { + if yyv4766 == nil { + yyv4766 = []Namespace{} + yyc4766 = true + } else if len(yyv4766) != 0 { + yyv4766 = yyv4766[:0] + yyc4766 = true } - } else if yyl4713 > 0 { - var yyrr4713, yyrl4713 int - var yyrt4713 bool - if yyl4713 > cap(yyv4713) { + } else if yyl4766 > 0 { + var yyrr4766, yyrl4766 int + var yyrt4766 bool + if yyl4766 > cap(yyv4766) { - yyrg4713 := len(yyv4713) > 0 - yyv24713 := yyv4713 - yyrl4713, yyrt4713 = z.DecInferLen(yyl4713, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4713 { - if yyrl4713 <= cap(yyv4713) { - yyv4713 = yyv4713[:yyrl4713] + yyrg4766 := len(yyv4766) > 0 + yyv24766 := yyv4766 + yyrl4766, yyrt4766 = z.DecInferLen(yyl4766, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4766 { + if yyrl4766 <= cap(yyv4766) { + yyv4766 = yyv4766[:yyrl4766] } else { - yyv4713 = make([]Namespace, yyrl4713) + yyv4766 = make([]Namespace, yyrl4766) } } else { - yyv4713 = make([]Namespace, yyrl4713) + yyv4766 = make([]Namespace, yyrl4766) } - yyc4713 = true - yyrr4713 = len(yyv4713) - if yyrg4713 { - copy(yyv4713, yyv24713) + yyc4766 = true + yyrr4766 = len(yyv4766) + if yyrg4766 { + copy(yyv4766, yyv24766) } - } else if yyl4713 != len(yyv4713) { - yyv4713 = yyv4713[:yyl4713] - yyc4713 = true + } else if yyl4766 != len(yyv4766) { + yyv4766 = yyv4766[:yyl4766] + yyc4766 = true } - yyj4713 := 0 - for ; yyj4713 < yyrr4713; yyj4713++ { - yyh4713.ElemContainerState(yyj4713) + yyj4766 := 0 + for ; yyj4766 < yyrr4766; yyj4766++ { + yyh4766.ElemContainerState(yyj4766) if r.TryDecodeAsNil() { - yyv4713[yyj4713] = Namespace{} + yyv4766[yyj4766] = Namespace{} } else { - yyv4714 := &yyv4713[yyj4713] - yyv4714.CodecDecodeSelf(d) + yyv4767 := &yyv4766[yyj4766] + yyv4767.CodecDecodeSelf(d) } } - if yyrt4713 { - for ; yyj4713 < yyl4713; yyj4713++ { - yyv4713 = append(yyv4713, Namespace{}) - yyh4713.ElemContainerState(yyj4713) + if yyrt4766 { + for ; yyj4766 < yyl4766; yyj4766++ { + yyv4766 = append(yyv4766, Namespace{}) + yyh4766.ElemContainerState(yyj4766) if r.TryDecodeAsNil() { - yyv4713[yyj4713] = Namespace{} + yyv4766[yyj4766] = Namespace{} } else { - yyv4715 := &yyv4713[yyj4713] - yyv4715.CodecDecodeSelf(d) + yyv4768 := &yyv4766[yyj4766] + yyv4768.CodecDecodeSelf(d) } } } } else { - yyj4713 := 0 - for ; !r.CheckBreak(); yyj4713++ { + yyj4766 := 0 + for ; !r.CheckBreak(); yyj4766++ { - if yyj4713 >= len(yyv4713) { - yyv4713 = append(yyv4713, Namespace{}) // var yyz4713 Namespace - yyc4713 = true + if yyj4766 >= len(yyv4766) { + yyv4766 = append(yyv4766, Namespace{}) // var yyz4766 Namespace + yyc4766 = true } - yyh4713.ElemContainerState(yyj4713) - if yyj4713 < len(yyv4713) { + yyh4766.ElemContainerState(yyj4766) + if yyj4766 < len(yyv4766) { if r.TryDecodeAsNil() { - yyv4713[yyj4713] = Namespace{} + yyv4766[yyj4766] = Namespace{} } else { - yyv4716 := &yyv4713[yyj4713] - yyv4716.CodecDecodeSelf(d) + yyv4769 := &yyv4766[yyj4766] + yyv4769.CodecDecodeSelf(d) } } else { @@ -60345,17 +61052,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4713 < len(yyv4713) { - yyv4713 = yyv4713[:yyj4713] - yyc4713 = true - } else if yyj4713 == 0 && yyv4713 == nil { - yyv4713 = []Namespace{} - yyc4713 = true + if yyj4766 < len(yyv4766) { + yyv4766 = yyv4766[:yyj4766] + yyc4766 = true + } else if yyj4766 == 0 && yyv4766 == nil { + yyv4766 = []Namespace{} + yyc4766 = true } } - yyh4713.End() - if yyc4713 { - *v = yyv4713 + yyh4766.End() + if yyc4766 { + *v = yyv4766 } } @@ -60364,10 +61071,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4717 := range v { + for _, yyv4770 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4718 := &yyv4717 - yy4718.CodecEncodeSelf(e) + yy4771 := &yyv4770 + yy4771.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60377,83 +61084,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4719 := *v - yyh4719, yyl4719 := z.DecSliceHelperStart() - var yyc4719 bool - if yyl4719 == 0 { - if yyv4719 == nil { - yyv4719 = []Event{} - yyc4719 = true - } else if len(yyv4719) != 0 { - yyv4719 = yyv4719[:0] - yyc4719 = true + yyv4772 := *v + yyh4772, yyl4772 := z.DecSliceHelperStart() + var yyc4772 bool + if yyl4772 == 0 { + if yyv4772 == nil { + yyv4772 = []Event{} + yyc4772 = true + } else if len(yyv4772) != 0 { + yyv4772 = yyv4772[:0] + yyc4772 = true } - } else if yyl4719 > 0 { - var yyrr4719, yyrl4719 int - var yyrt4719 bool - if yyl4719 > cap(yyv4719) { + } else if yyl4772 > 0 { + var yyrr4772, yyrl4772 int + var yyrt4772 bool + if yyl4772 > cap(yyv4772) { - yyrg4719 := len(yyv4719) > 0 - yyv24719 := yyv4719 - yyrl4719, yyrt4719 = z.DecInferLen(yyl4719, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4719 { - if yyrl4719 <= cap(yyv4719) { - yyv4719 = yyv4719[:yyrl4719] + yyrg4772 := len(yyv4772) > 0 + yyv24772 := yyv4772 + yyrl4772, yyrt4772 = z.DecInferLen(yyl4772, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4772 { + if yyrl4772 <= cap(yyv4772) { + yyv4772 = yyv4772[:yyrl4772] } else { - yyv4719 = make([]Event, yyrl4719) + yyv4772 = make([]Event, yyrl4772) } } else { - yyv4719 = make([]Event, yyrl4719) + yyv4772 = make([]Event, yyrl4772) } - yyc4719 = true - yyrr4719 = len(yyv4719) - if yyrg4719 { - copy(yyv4719, yyv24719) + yyc4772 = true + yyrr4772 = len(yyv4772) + if yyrg4772 { + copy(yyv4772, yyv24772) } - } else if yyl4719 != len(yyv4719) { - yyv4719 = yyv4719[:yyl4719] - yyc4719 = true + } else if yyl4772 != len(yyv4772) { + yyv4772 = yyv4772[:yyl4772] + yyc4772 = true } - yyj4719 := 0 - for ; yyj4719 < yyrr4719; yyj4719++ { - yyh4719.ElemContainerState(yyj4719) + yyj4772 := 0 + for ; yyj4772 < yyrr4772; yyj4772++ { + yyh4772.ElemContainerState(yyj4772) if r.TryDecodeAsNil() { - yyv4719[yyj4719] = Event{} + yyv4772[yyj4772] = Event{} } else { - yyv4720 := &yyv4719[yyj4719] - yyv4720.CodecDecodeSelf(d) + yyv4773 := &yyv4772[yyj4772] + yyv4773.CodecDecodeSelf(d) } } - if yyrt4719 { - for ; yyj4719 < yyl4719; yyj4719++ { - yyv4719 = append(yyv4719, Event{}) - yyh4719.ElemContainerState(yyj4719) + if yyrt4772 { + for ; yyj4772 < yyl4772; yyj4772++ { + yyv4772 = append(yyv4772, Event{}) + yyh4772.ElemContainerState(yyj4772) if r.TryDecodeAsNil() { - yyv4719[yyj4719] = Event{} + yyv4772[yyj4772] = Event{} } else { - yyv4721 := &yyv4719[yyj4719] - yyv4721.CodecDecodeSelf(d) + yyv4774 := &yyv4772[yyj4772] + yyv4774.CodecDecodeSelf(d) } } } } else { - yyj4719 := 0 - for ; !r.CheckBreak(); yyj4719++ { + yyj4772 := 0 + for ; !r.CheckBreak(); yyj4772++ { - if yyj4719 >= len(yyv4719) { - yyv4719 = append(yyv4719, Event{}) // var yyz4719 Event - yyc4719 = true + if yyj4772 >= len(yyv4772) { + yyv4772 = append(yyv4772, Event{}) // var yyz4772 Event + yyc4772 = true } - yyh4719.ElemContainerState(yyj4719) - if yyj4719 < len(yyv4719) { + yyh4772.ElemContainerState(yyj4772) + if yyj4772 < len(yyv4772) { if r.TryDecodeAsNil() { - yyv4719[yyj4719] = Event{} + yyv4772[yyj4772] = Event{} } else { - yyv4722 := &yyv4719[yyj4719] - yyv4722.CodecDecodeSelf(d) + yyv4775 := &yyv4772[yyj4772] + yyv4775.CodecDecodeSelf(d) } } else { @@ -60461,17 +61168,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4719 < len(yyv4719) { - yyv4719 = yyv4719[:yyj4719] - yyc4719 = true - } else if yyj4719 == 0 && yyv4719 == nil { - yyv4719 = []Event{} - yyc4719 = true + if yyj4772 < len(yyv4772) { + yyv4772 = yyv4772[:yyj4772] + yyc4772 = true + } else if yyj4772 == 0 && yyv4772 == nil { + yyv4772 = []Event{} + yyc4772 = true } } - yyh4719.End() - if yyc4719 { - *v = yyv4719 + yyh4772.End() + if yyc4772 { + *v = yyv4772 } } @@ -60480,17 +61187,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4723 := range v { + for _, yyv4776 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4724 := &yyv4723 - yym4725 := z.EncBinary() - _ = yym4725 + yy4777 := &yyv4776 + yym4778 := z.EncBinary() + _ = yym4778 if false { - } else if z.HasExtensions() && z.EncExt(yy4724) { - } else if !yym4725 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4724) + } else if z.HasExtensions() && z.EncExt(yy4777) { + } else if !yym4778 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4777) } else { - z.EncFallback(yy4724) + z.EncFallback(yy4777) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -60501,78 +61208,78 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4726 := *v - yyh4726, yyl4726 := z.DecSliceHelperStart() - var yyc4726 bool - if yyl4726 == 0 { - if yyv4726 == nil { - yyv4726 = []pkg5_runtime.RawExtension{} - yyc4726 = true - } else if len(yyv4726) != 0 { - yyv4726 = yyv4726[:0] - yyc4726 = true + yyv4779 := *v + yyh4779, yyl4779 := z.DecSliceHelperStart() + var yyc4779 bool + if yyl4779 == 0 { + if yyv4779 == nil { + yyv4779 = []pkg5_runtime.RawExtension{} + yyc4779 = true + } else if len(yyv4779) != 0 { + yyv4779 = yyv4779[:0] + yyc4779 = true } - } else if yyl4726 > 0 { - var yyrr4726, yyrl4726 int - var yyrt4726 bool - if yyl4726 > cap(yyv4726) { + } else if yyl4779 > 0 { + var yyrr4779, yyrl4779 int + var yyrt4779 bool + if yyl4779 > cap(yyv4779) { - yyrg4726 := len(yyv4726) > 0 - yyv24726 := yyv4726 - yyrl4726, yyrt4726 = z.DecInferLen(yyl4726, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4726 { - if yyrl4726 <= cap(yyv4726) { - yyv4726 = yyv4726[:yyrl4726] + yyrg4779 := len(yyv4779) > 0 + yyv24779 := yyv4779 + yyrl4779, yyrt4779 = z.DecInferLen(yyl4779, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4779 { + if yyrl4779 <= cap(yyv4779) { + yyv4779 = yyv4779[:yyrl4779] } else { - yyv4726 = make([]pkg5_runtime.RawExtension, yyrl4726) + yyv4779 = make([]pkg5_runtime.RawExtension, yyrl4779) } } else { - yyv4726 = make([]pkg5_runtime.RawExtension, yyrl4726) + yyv4779 = make([]pkg5_runtime.RawExtension, yyrl4779) } - yyc4726 = true - yyrr4726 = len(yyv4726) - if yyrg4726 { - copy(yyv4726, yyv24726) + yyc4779 = true + yyrr4779 = len(yyv4779) + if yyrg4779 { + copy(yyv4779, yyv24779) } - } else if yyl4726 != len(yyv4726) { - yyv4726 = yyv4726[:yyl4726] - yyc4726 = true + } else if yyl4779 != len(yyv4779) { + yyv4779 = yyv4779[:yyl4779] + yyc4779 = true } - yyj4726 := 0 - for ; yyj4726 < yyrr4726; yyj4726++ { - yyh4726.ElemContainerState(yyj4726) + yyj4779 := 0 + for ; yyj4779 < yyrr4779; yyj4779++ { + yyh4779.ElemContainerState(yyj4779) if r.TryDecodeAsNil() { - yyv4726[yyj4726] = pkg5_runtime.RawExtension{} + yyv4779[yyj4779] = pkg5_runtime.RawExtension{} } else { - yyv4727 := &yyv4726[yyj4726] - yym4728 := z.DecBinary() - _ = yym4728 + yyv4780 := &yyv4779[yyj4779] + yym4781 := z.DecBinary() + _ = yym4781 if false { - } else if z.HasExtensions() && z.DecExt(yyv4727) { - } else if !yym4728 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4727) + } else if z.HasExtensions() && z.DecExt(yyv4780) { + } else if !yym4781 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4780) } else { - z.DecFallback(yyv4727, false) + z.DecFallback(yyv4780, false) } } } - if yyrt4726 { - for ; yyj4726 < yyl4726; yyj4726++ { - yyv4726 = append(yyv4726, pkg5_runtime.RawExtension{}) - yyh4726.ElemContainerState(yyj4726) + if yyrt4779 { + for ; yyj4779 < yyl4779; yyj4779++ { + yyv4779 = append(yyv4779, pkg5_runtime.RawExtension{}) + yyh4779.ElemContainerState(yyj4779) if r.TryDecodeAsNil() { - yyv4726[yyj4726] = pkg5_runtime.RawExtension{} + yyv4779[yyj4779] = pkg5_runtime.RawExtension{} } else { - yyv4729 := &yyv4726[yyj4726] - yym4730 := z.DecBinary() - _ = yym4730 + yyv4782 := &yyv4779[yyj4779] + yym4783 := z.DecBinary() + _ = yym4783 if false { - } else if z.HasExtensions() && z.DecExt(yyv4729) { - } else if !yym4730 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4729) + } else if z.HasExtensions() && z.DecExt(yyv4782) { + } else if !yym4783 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4782) } else { - z.DecFallback(yyv4729, false) + z.DecFallback(yyv4782, false) } } @@ -60580,27 +61287,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } else { - yyj4726 := 0 - for ; !r.CheckBreak(); yyj4726++ { + yyj4779 := 0 + for ; !r.CheckBreak(); yyj4779++ { - if yyj4726 >= len(yyv4726) { - yyv4726 = append(yyv4726, pkg5_runtime.RawExtension{}) // var yyz4726 pkg5_runtime.RawExtension - yyc4726 = true + if yyj4779 >= len(yyv4779) { + yyv4779 = append(yyv4779, pkg5_runtime.RawExtension{}) // var yyz4779 pkg5_runtime.RawExtension + yyc4779 = true } - yyh4726.ElemContainerState(yyj4726) - if yyj4726 < len(yyv4726) { + yyh4779.ElemContainerState(yyj4779) + if yyj4779 < len(yyv4779) { if r.TryDecodeAsNil() { - yyv4726[yyj4726] = pkg5_runtime.RawExtension{} + yyv4779[yyj4779] = pkg5_runtime.RawExtension{} } else { - yyv4731 := &yyv4726[yyj4726] - yym4732 := z.DecBinary() - _ = yym4732 + yyv4784 := &yyv4779[yyj4779] + yym4785 := z.DecBinary() + _ = yym4785 if false { - } else if z.HasExtensions() && z.DecExt(yyv4731) { - } else if !yym4732 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4731) + } else if z.HasExtensions() && z.DecExt(yyv4784) { + } else if !yym4785 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4784) } else { - z.DecFallback(yyv4731, false) + z.DecFallback(yyv4784, false) } } @@ -60609,17 +61316,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4726 < len(yyv4726) { - yyv4726 = yyv4726[:yyj4726] - yyc4726 = true - } else if yyj4726 == 0 && yyv4726 == nil { - yyv4726 = []pkg5_runtime.RawExtension{} - yyc4726 = true + if yyj4779 < len(yyv4779) { + yyv4779 = yyv4779[:yyj4779] + yyc4779 = true + } else if yyj4779 == 0 && yyv4779 == nil { + yyv4779 = []pkg5_runtime.RawExtension{} + yyc4779 = true } } - yyh4726.End() - if yyc4726 { - *v = yyv4726 + yyh4779.End() + if yyc4779 { + *v = yyv4779 } } @@ -60628,10 +61335,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4733 := range v { + for _, yyv4786 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4734 := &yyv4733 - yy4734.CodecEncodeSelf(e) + yy4787 := &yyv4786 + yy4787.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60641,83 +61348,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4735 := *v - yyh4735, yyl4735 := z.DecSliceHelperStart() - var yyc4735 bool - if yyl4735 == 0 { - if yyv4735 == nil { - yyv4735 = []LimitRangeItem{} - yyc4735 = true - } else if len(yyv4735) != 0 { - yyv4735 = yyv4735[:0] - yyc4735 = true + yyv4788 := *v + yyh4788, yyl4788 := z.DecSliceHelperStart() + var yyc4788 bool + if yyl4788 == 0 { + if yyv4788 == nil { + yyv4788 = []LimitRangeItem{} + yyc4788 = true + } else if len(yyv4788) != 0 { + yyv4788 = yyv4788[:0] + yyc4788 = true } - } else if yyl4735 > 0 { - var yyrr4735, yyrl4735 int - var yyrt4735 bool - if yyl4735 > cap(yyv4735) { + } else if yyl4788 > 0 { + var yyrr4788, yyrl4788 int + var yyrt4788 bool + if yyl4788 > cap(yyv4788) { - yyrg4735 := len(yyv4735) > 0 - yyv24735 := yyv4735 - yyrl4735, yyrt4735 = z.DecInferLen(yyl4735, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4735 { - if yyrl4735 <= cap(yyv4735) { - yyv4735 = yyv4735[:yyrl4735] + yyrg4788 := len(yyv4788) > 0 + yyv24788 := yyv4788 + yyrl4788, yyrt4788 = z.DecInferLen(yyl4788, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4788 { + if yyrl4788 <= cap(yyv4788) { + yyv4788 = yyv4788[:yyrl4788] } else { - yyv4735 = make([]LimitRangeItem, yyrl4735) + yyv4788 = make([]LimitRangeItem, yyrl4788) } } else { - yyv4735 = make([]LimitRangeItem, yyrl4735) + yyv4788 = make([]LimitRangeItem, yyrl4788) } - yyc4735 = true - yyrr4735 = len(yyv4735) - if yyrg4735 { - copy(yyv4735, yyv24735) + yyc4788 = true + yyrr4788 = len(yyv4788) + if yyrg4788 { + copy(yyv4788, yyv24788) } - } else if yyl4735 != len(yyv4735) { - yyv4735 = yyv4735[:yyl4735] - yyc4735 = true + } else if yyl4788 != len(yyv4788) { + yyv4788 = yyv4788[:yyl4788] + yyc4788 = true } - yyj4735 := 0 - for ; yyj4735 < yyrr4735; yyj4735++ { - yyh4735.ElemContainerState(yyj4735) + yyj4788 := 0 + for ; yyj4788 < yyrr4788; yyj4788++ { + yyh4788.ElemContainerState(yyj4788) if r.TryDecodeAsNil() { - yyv4735[yyj4735] = LimitRangeItem{} + yyv4788[yyj4788] = LimitRangeItem{} } else { - yyv4736 := &yyv4735[yyj4735] - yyv4736.CodecDecodeSelf(d) + yyv4789 := &yyv4788[yyj4788] + yyv4789.CodecDecodeSelf(d) } } - if yyrt4735 { - for ; yyj4735 < yyl4735; yyj4735++ { - yyv4735 = append(yyv4735, LimitRangeItem{}) - yyh4735.ElemContainerState(yyj4735) + if yyrt4788 { + for ; yyj4788 < yyl4788; yyj4788++ { + yyv4788 = append(yyv4788, LimitRangeItem{}) + yyh4788.ElemContainerState(yyj4788) if r.TryDecodeAsNil() { - yyv4735[yyj4735] = LimitRangeItem{} + yyv4788[yyj4788] = LimitRangeItem{} } else { - yyv4737 := &yyv4735[yyj4735] - yyv4737.CodecDecodeSelf(d) + yyv4790 := &yyv4788[yyj4788] + yyv4790.CodecDecodeSelf(d) } } } } else { - yyj4735 := 0 - for ; !r.CheckBreak(); yyj4735++ { + yyj4788 := 0 + for ; !r.CheckBreak(); yyj4788++ { - if yyj4735 >= len(yyv4735) { - yyv4735 = append(yyv4735, LimitRangeItem{}) // var yyz4735 LimitRangeItem - yyc4735 = true + if yyj4788 >= len(yyv4788) { + yyv4788 = append(yyv4788, LimitRangeItem{}) // var yyz4788 LimitRangeItem + yyc4788 = true } - yyh4735.ElemContainerState(yyj4735) - if yyj4735 < len(yyv4735) { + yyh4788.ElemContainerState(yyj4788) + if yyj4788 < len(yyv4788) { if r.TryDecodeAsNil() { - yyv4735[yyj4735] = LimitRangeItem{} + yyv4788[yyj4788] = LimitRangeItem{} } else { - yyv4738 := &yyv4735[yyj4735] - yyv4738.CodecDecodeSelf(d) + yyv4791 := &yyv4788[yyj4788] + yyv4791.CodecDecodeSelf(d) } } else { @@ -60725,17 +61432,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4735 < len(yyv4735) { - yyv4735 = yyv4735[:yyj4735] - yyc4735 = true - } else if yyj4735 == 0 && yyv4735 == nil { - yyv4735 = []LimitRangeItem{} - yyc4735 = true + if yyj4788 < len(yyv4788) { + yyv4788 = yyv4788[:yyj4788] + yyc4788 = true + } else if yyj4788 == 0 && yyv4788 == nil { + yyv4788 = []LimitRangeItem{} + yyc4788 = true } } - yyh4735.End() - if yyc4735 { - *v = yyv4735 + yyh4788.End() + if yyc4788 { + *v = yyv4788 } } @@ -60744,10 +61451,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4739 := range v { + for _, yyv4792 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4740 := &yyv4739 - yy4740.CodecEncodeSelf(e) + yy4793 := &yyv4792 + yy4793.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60757,83 +61464,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4741 := *v - yyh4741, yyl4741 := z.DecSliceHelperStart() - var yyc4741 bool - if yyl4741 == 0 { - if yyv4741 == nil { - yyv4741 = []LimitRange{} - yyc4741 = true - } else if len(yyv4741) != 0 { - yyv4741 = yyv4741[:0] - yyc4741 = true + yyv4794 := *v + yyh4794, yyl4794 := z.DecSliceHelperStart() + var yyc4794 bool + if yyl4794 == 0 { + if yyv4794 == nil { + yyv4794 = []LimitRange{} + yyc4794 = true + } else if len(yyv4794) != 0 { + yyv4794 = yyv4794[:0] + yyc4794 = true } - } else if yyl4741 > 0 { - var yyrr4741, yyrl4741 int - var yyrt4741 bool - if yyl4741 > cap(yyv4741) { + } else if yyl4794 > 0 { + var yyrr4794, yyrl4794 int + var yyrt4794 bool + if yyl4794 > cap(yyv4794) { - yyrg4741 := len(yyv4741) > 0 - yyv24741 := yyv4741 - yyrl4741, yyrt4741 = z.DecInferLen(yyl4741, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4741 { - if yyrl4741 <= cap(yyv4741) { - yyv4741 = yyv4741[:yyrl4741] + yyrg4794 := len(yyv4794) > 0 + yyv24794 := yyv4794 + yyrl4794, yyrt4794 = z.DecInferLen(yyl4794, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4794 { + if yyrl4794 <= cap(yyv4794) { + yyv4794 = yyv4794[:yyrl4794] } else { - yyv4741 = make([]LimitRange, yyrl4741) + yyv4794 = make([]LimitRange, yyrl4794) } } else { - yyv4741 = make([]LimitRange, yyrl4741) + yyv4794 = make([]LimitRange, yyrl4794) } - yyc4741 = true - yyrr4741 = len(yyv4741) - if yyrg4741 { - copy(yyv4741, yyv24741) + yyc4794 = true + yyrr4794 = len(yyv4794) + if yyrg4794 { + copy(yyv4794, yyv24794) } - } else if yyl4741 != len(yyv4741) { - yyv4741 = yyv4741[:yyl4741] - yyc4741 = true + } else if yyl4794 != len(yyv4794) { + yyv4794 = yyv4794[:yyl4794] + yyc4794 = true } - yyj4741 := 0 - for ; yyj4741 < yyrr4741; yyj4741++ { - yyh4741.ElemContainerState(yyj4741) + yyj4794 := 0 + for ; yyj4794 < yyrr4794; yyj4794++ { + yyh4794.ElemContainerState(yyj4794) if r.TryDecodeAsNil() { - yyv4741[yyj4741] = LimitRange{} + yyv4794[yyj4794] = LimitRange{} } else { - yyv4742 := &yyv4741[yyj4741] - yyv4742.CodecDecodeSelf(d) + yyv4795 := &yyv4794[yyj4794] + yyv4795.CodecDecodeSelf(d) } } - if yyrt4741 { - for ; yyj4741 < yyl4741; yyj4741++ { - yyv4741 = append(yyv4741, LimitRange{}) - yyh4741.ElemContainerState(yyj4741) + if yyrt4794 { + for ; yyj4794 < yyl4794; yyj4794++ { + yyv4794 = append(yyv4794, LimitRange{}) + yyh4794.ElemContainerState(yyj4794) if r.TryDecodeAsNil() { - yyv4741[yyj4741] = LimitRange{} + yyv4794[yyj4794] = LimitRange{} } else { - yyv4743 := &yyv4741[yyj4741] - yyv4743.CodecDecodeSelf(d) + yyv4796 := &yyv4794[yyj4794] + yyv4796.CodecDecodeSelf(d) } } } } else { - yyj4741 := 0 - for ; !r.CheckBreak(); yyj4741++ { + yyj4794 := 0 + for ; !r.CheckBreak(); yyj4794++ { - if yyj4741 >= len(yyv4741) { - yyv4741 = append(yyv4741, LimitRange{}) // var yyz4741 LimitRange - yyc4741 = true + if yyj4794 >= len(yyv4794) { + yyv4794 = append(yyv4794, LimitRange{}) // var yyz4794 LimitRange + yyc4794 = true } - yyh4741.ElemContainerState(yyj4741) - if yyj4741 < len(yyv4741) { + yyh4794.ElemContainerState(yyj4794) + if yyj4794 < len(yyv4794) { if r.TryDecodeAsNil() { - yyv4741[yyj4741] = LimitRange{} + yyv4794[yyj4794] = LimitRange{} } else { - yyv4744 := &yyv4741[yyj4741] - yyv4744.CodecDecodeSelf(d) + yyv4797 := &yyv4794[yyj4794] + yyv4797.CodecDecodeSelf(d) } } else { @@ -60841,17 +61548,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4741 < len(yyv4741) { - yyv4741 = yyv4741[:yyj4741] - yyc4741 = true - } else if yyj4741 == 0 && yyv4741 == nil { - yyv4741 = []LimitRange{} - yyc4741 = true + if yyj4794 < len(yyv4794) { + yyv4794 = yyv4794[:yyj4794] + yyc4794 = true + } else if yyj4794 == 0 && yyv4794 == nil { + yyv4794 = []LimitRange{} + yyc4794 = true } } - yyh4741.End() - if yyc4741 { - *v = yyv4741 + yyh4794.End() + if yyc4794 { + *v = yyv4794 } } @@ -60860,9 +61567,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4745 := range v { + for _, yyv4798 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4745.CodecEncodeSelf(e) + yyv4798.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60872,75 +61579,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4746 := *v - yyh4746, yyl4746 := z.DecSliceHelperStart() - var yyc4746 bool - if yyl4746 == 0 { - if yyv4746 == nil { - yyv4746 = []ResourceQuotaScope{} - yyc4746 = true - } else if len(yyv4746) != 0 { - yyv4746 = yyv4746[:0] - yyc4746 = true + yyv4799 := *v + yyh4799, yyl4799 := z.DecSliceHelperStart() + var yyc4799 bool + if yyl4799 == 0 { + if yyv4799 == nil { + yyv4799 = []ResourceQuotaScope{} + yyc4799 = true + } else if len(yyv4799) != 0 { + yyv4799 = yyv4799[:0] + yyc4799 = true } - } else if yyl4746 > 0 { - var yyrr4746, yyrl4746 int - var yyrt4746 bool - if yyl4746 > cap(yyv4746) { + } else if yyl4799 > 0 { + var yyrr4799, yyrl4799 int + var yyrt4799 bool + if yyl4799 > cap(yyv4799) { - yyrl4746, yyrt4746 = z.DecInferLen(yyl4746, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4746 { - if yyrl4746 <= cap(yyv4746) { - yyv4746 = yyv4746[:yyrl4746] + yyrl4799, yyrt4799 = z.DecInferLen(yyl4799, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4799 { + if yyrl4799 <= cap(yyv4799) { + yyv4799 = yyv4799[:yyrl4799] } else { - yyv4746 = make([]ResourceQuotaScope, yyrl4746) + yyv4799 = make([]ResourceQuotaScope, yyrl4799) } } else { - yyv4746 = make([]ResourceQuotaScope, yyrl4746) + yyv4799 = make([]ResourceQuotaScope, yyrl4799) } - yyc4746 = true - yyrr4746 = len(yyv4746) - } else if yyl4746 != len(yyv4746) { - yyv4746 = yyv4746[:yyl4746] - yyc4746 = true + yyc4799 = true + yyrr4799 = len(yyv4799) + } else if yyl4799 != len(yyv4799) { + yyv4799 = yyv4799[:yyl4799] + yyc4799 = true } - yyj4746 := 0 - for ; yyj4746 < yyrr4746; yyj4746++ { - yyh4746.ElemContainerState(yyj4746) + yyj4799 := 0 + for ; yyj4799 < yyrr4799; yyj4799++ { + yyh4799.ElemContainerState(yyj4799) if r.TryDecodeAsNil() { - yyv4746[yyj4746] = "" + yyv4799[yyj4799] = "" } else { - yyv4746[yyj4746] = ResourceQuotaScope(r.DecodeString()) + yyv4799[yyj4799] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4746 { - for ; yyj4746 < yyl4746; yyj4746++ { - yyv4746 = append(yyv4746, "") - yyh4746.ElemContainerState(yyj4746) + if yyrt4799 { + for ; yyj4799 < yyl4799; yyj4799++ { + yyv4799 = append(yyv4799, "") + yyh4799.ElemContainerState(yyj4799) if r.TryDecodeAsNil() { - yyv4746[yyj4746] = "" + yyv4799[yyj4799] = "" } else { - yyv4746[yyj4746] = ResourceQuotaScope(r.DecodeString()) + yyv4799[yyj4799] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4746 := 0 - for ; !r.CheckBreak(); yyj4746++ { + yyj4799 := 0 + for ; !r.CheckBreak(); yyj4799++ { - if yyj4746 >= len(yyv4746) { - yyv4746 = append(yyv4746, "") // var yyz4746 ResourceQuotaScope - yyc4746 = true + if yyj4799 >= len(yyv4799) { + yyv4799 = append(yyv4799, "") // var yyz4799 ResourceQuotaScope + yyc4799 = true } - yyh4746.ElemContainerState(yyj4746) - if yyj4746 < len(yyv4746) { + yyh4799.ElemContainerState(yyj4799) + if yyj4799 < len(yyv4799) { if r.TryDecodeAsNil() { - yyv4746[yyj4746] = "" + yyv4799[yyj4799] = "" } else { - yyv4746[yyj4746] = ResourceQuotaScope(r.DecodeString()) + yyv4799[yyj4799] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -60948,17 +61655,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4746 < len(yyv4746) { - yyv4746 = yyv4746[:yyj4746] - yyc4746 = true - } else if yyj4746 == 0 && yyv4746 == nil { - yyv4746 = []ResourceQuotaScope{} - yyc4746 = true + if yyj4799 < len(yyv4799) { + yyv4799 = yyv4799[:yyj4799] + yyc4799 = true + } else if yyj4799 == 0 && yyv4799 == nil { + yyv4799 = []ResourceQuotaScope{} + yyc4799 = true } } - yyh4746.End() - if yyc4746 { - *v = yyv4746 + yyh4799.End() + if yyc4799 { + *v = yyv4799 } } @@ -60967,10 +61674,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4750 := range v { + for _, yyv4803 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4751 := &yyv4750 - yy4751.CodecEncodeSelf(e) + yy4804 := &yyv4803 + yy4804.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60980,83 +61687,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4752 := *v - yyh4752, yyl4752 := z.DecSliceHelperStart() - var yyc4752 bool - if yyl4752 == 0 { - if yyv4752 == nil { - yyv4752 = []ResourceQuota{} - yyc4752 = true - } else if len(yyv4752) != 0 { - yyv4752 = yyv4752[:0] - yyc4752 = true + yyv4805 := *v + yyh4805, yyl4805 := z.DecSliceHelperStart() + var yyc4805 bool + if yyl4805 == 0 { + if yyv4805 == nil { + yyv4805 = []ResourceQuota{} + yyc4805 = true + } else if len(yyv4805) != 0 { + yyv4805 = yyv4805[:0] + yyc4805 = true } - } else if yyl4752 > 0 { - var yyrr4752, yyrl4752 int - var yyrt4752 bool - if yyl4752 > cap(yyv4752) { + } else if yyl4805 > 0 { + var yyrr4805, yyrl4805 int + var yyrt4805 bool + if yyl4805 > cap(yyv4805) { - yyrg4752 := len(yyv4752) > 0 - yyv24752 := yyv4752 - yyrl4752, yyrt4752 = z.DecInferLen(yyl4752, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4752 { - if yyrl4752 <= cap(yyv4752) { - yyv4752 = yyv4752[:yyrl4752] + yyrg4805 := len(yyv4805) > 0 + yyv24805 := yyv4805 + yyrl4805, yyrt4805 = z.DecInferLen(yyl4805, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4805 { + if yyrl4805 <= cap(yyv4805) { + yyv4805 = yyv4805[:yyrl4805] } else { - yyv4752 = make([]ResourceQuota, yyrl4752) + yyv4805 = make([]ResourceQuota, yyrl4805) } } else { - yyv4752 = make([]ResourceQuota, yyrl4752) + yyv4805 = make([]ResourceQuota, yyrl4805) } - yyc4752 = true - yyrr4752 = len(yyv4752) - if yyrg4752 { - copy(yyv4752, yyv24752) + yyc4805 = true + yyrr4805 = len(yyv4805) + if yyrg4805 { + copy(yyv4805, yyv24805) } - } else if yyl4752 != len(yyv4752) { - yyv4752 = yyv4752[:yyl4752] - yyc4752 = true + } else if yyl4805 != len(yyv4805) { + yyv4805 = yyv4805[:yyl4805] + yyc4805 = true } - yyj4752 := 0 - for ; yyj4752 < yyrr4752; yyj4752++ { - yyh4752.ElemContainerState(yyj4752) + yyj4805 := 0 + for ; yyj4805 < yyrr4805; yyj4805++ { + yyh4805.ElemContainerState(yyj4805) if r.TryDecodeAsNil() { - yyv4752[yyj4752] = ResourceQuota{} + yyv4805[yyj4805] = ResourceQuota{} } else { - yyv4753 := &yyv4752[yyj4752] - yyv4753.CodecDecodeSelf(d) + yyv4806 := &yyv4805[yyj4805] + yyv4806.CodecDecodeSelf(d) } } - if yyrt4752 { - for ; yyj4752 < yyl4752; yyj4752++ { - yyv4752 = append(yyv4752, ResourceQuota{}) - yyh4752.ElemContainerState(yyj4752) + if yyrt4805 { + for ; yyj4805 < yyl4805; yyj4805++ { + yyv4805 = append(yyv4805, ResourceQuota{}) + yyh4805.ElemContainerState(yyj4805) if r.TryDecodeAsNil() { - yyv4752[yyj4752] = ResourceQuota{} + yyv4805[yyj4805] = ResourceQuota{} } else { - yyv4754 := &yyv4752[yyj4752] - yyv4754.CodecDecodeSelf(d) + yyv4807 := &yyv4805[yyj4805] + yyv4807.CodecDecodeSelf(d) } } } } else { - yyj4752 := 0 - for ; !r.CheckBreak(); yyj4752++ { + yyj4805 := 0 + for ; !r.CheckBreak(); yyj4805++ { - if yyj4752 >= len(yyv4752) { - yyv4752 = append(yyv4752, ResourceQuota{}) // var yyz4752 ResourceQuota - yyc4752 = true + if yyj4805 >= len(yyv4805) { + yyv4805 = append(yyv4805, ResourceQuota{}) // var yyz4805 ResourceQuota + yyc4805 = true } - yyh4752.ElemContainerState(yyj4752) - if yyj4752 < len(yyv4752) { + yyh4805.ElemContainerState(yyj4805) + if yyj4805 < len(yyv4805) { if r.TryDecodeAsNil() { - yyv4752[yyj4752] = ResourceQuota{} + yyv4805[yyj4805] = ResourceQuota{} } else { - yyv4755 := &yyv4752[yyj4752] - yyv4755.CodecDecodeSelf(d) + yyv4808 := &yyv4805[yyj4805] + yyv4808.CodecDecodeSelf(d) } } else { @@ -61064,17 +61771,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4752 < len(yyv4752) { - yyv4752 = yyv4752[:yyj4752] - yyc4752 = true - } else if yyj4752 == 0 && yyv4752 == nil { - yyv4752 = []ResourceQuota{} - yyc4752 = true + if yyj4805 < len(yyv4805) { + yyv4805 = yyv4805[:yyj4805] + yyc4805 = true + } else if yyj4805 == 0 && yyv4805 == nil { + yyv4805 = []ResourceQuota{} + yyc4805 = true } } - yyh4752.End() - if yyc4752 { - *v = yyv4752 + yyh4805.End() + if yyc4805 { + *v = yyv4805 } } @@ -61083,23 +61790,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4756, yyv4756 := range v { + for yyk4809, yyv4809 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4757 := z.EncBinary() - _ = yym4757 + yym4810 := z.EncBinary() + _ = yym4810 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4756)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4809)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4756 == nil { + if yyv4809 == nil { r.EncodeNil() } else { - yym4758 := z.EncBinary() - _ = yym4758 + yym4811 := z.EncBinary() + _ = yym4811 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4756)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4809)) } } } @@ -61111,80 +61818,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4759 := *v - yyl4759 := r.ReadMapStart() - yybh4759 := z.DecBasicHandle() - if yyv4759 == nil { - yyrl4759, _ := z.DecInferLen(yyl4759, yybh4759.MaxInitLen, 40) - yyv4759 = make(map[string][]uint8, yyrl4759) - *v = yyv4759 + yyv4812 := *v + yyl4812 := r.ReadMapStart() + yybh4812 := z.DecBasicHandle() + if yyv4812 == nil { + yyrl4812, _ := z.DecInferLen(yyl4812, yybh4812.MaxInitLen, 40) + yyv4812 = make(map[string][]uint8, yyrl4812) + *v = yyv4812 } - var yymk4759 string - var yymv4759 []uint8 - var yymg4759 bool - if yybh4759.MapValueReset { - yymg4759 = true + var yymk4812 string + var yymv4812 []uint8 + var yymg4812 bool + if yybh4812.MapValueReset { + yymg4812 = true } - if yyl4759 > 0 { - for yyj4759 := 0; yyj4759 < yyl4759; yyj4759++ { + if yyl4812 > 0 { + for yyj4812 := 0; yyj4812 < yyl4812; yyj4812++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4759 = "" + yymk4812 = "" } else { - yymk4759 = string(r.DecodeString()) + yymk4812 = string(r.DecodeString()) } - if yymg4759 { - yymv4759 = yyv4759[yymk4759] + if yymg4812 { + yymv4812 = yyv4812[yymk4812] } else { - yymv4759 = nil + yymv4812 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4759 = nil + yymv4812 = nil } else { - yyv4761 := &yymv4759 - yym4762 := z.DecBinary() - _ = yym4762 + yyv4814 := &yymv4812 + yym4815 := z.DecBinary() + _ = yym4815 if false { } else { - *yyv4761 = r.DecodeBytes(*(*[]byte)(yyv4761), false, false) + *yyv4814 = r.DecodeBytes(*(*[]byte)(yyv4814), false, false) } } - if yyv4759 != nil { - yyv4759[yymk4759] = yymv4759 + if yyv4812 != nil { + yyv4812[yymk4812] = yymv4812 } } - } else if yyl4759 < 0 { - for yyj4759 := 0; !r.CheckBreak(); yyj4759++ { + } else if yyl4812 < 0 { + for yyj4812 := 0; !r.CheckBreak(); yyj4812++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4759 = "" + yymk4812 = "" } else { - yymk4759 = string(r.DecodeString()) + yymk4812 = string(r.DecodeString()) } - if yymg4759 { - yymv4759 = yyv4759[yymk4759] + if yymg4812 { + yymv4812 = yyv4812[yymk4812] } else { - yymv4759 = nil + yymv4812 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4759 = nil + yymv4812 = nil } else { - yyv4764 := &yymv4759 - yym4765 := z.DecBinary() - _ = yym4765 + yyv4817 := &yymv4812 + yym4818 := z.DecBinary() + _ = yym4818 if false { } else { - *yyv4764 = r.DecodeBytes(*(*[]byte)(yyv4764), false, false) + *yyv4817 = r.DecodeBytes(*(*[]byte)(yyv4817), false, false) } } - if yyv4759 != nil { - yyv4759[yymk4759] = yymv4759 + if yyv4812 != nil { + yyv4812[yymk4812] = yymv4812 } } } // else len==0: TODO: Should we clear map entries? @@ -61196,10 +61903,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4766 := range v { + for _, yyv4819 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4767 := &yyv4766 - yy4767.CodecEncodeSelf(e) + yy4820 := &yyv4819 + yy4820.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61209,83 +61916,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4768 := *v - yyh4768, yyl4768 := z.DecSliceHelperStart() - var yyc4768 bool - if yyl4768 == 0 { - if yyv4768 == nil { - yyv4768 = []Secret{} - yyc4768 = true - } else if len(yyv4768) != 0 { - yyv4768 = yyv4768[:0] - yyc4768 = true + yyv4821 := *v + yyh4821, yyl4821 := z.DecSliceHelperStart() + var yyc4821 bool + if yyl4821 == 0 { + if yyv4821 == nil { + yyv4821 = []Secret{} + yyc4821 = true + } else if len(yyv4821) != 0 { + yyv4821 = yyv4821[:0] + yyc4821 = true } - } else if yyl4768 > 0 { - var yyrr4768, yyrl4768 int - var yyrt4768 bool - if yyl4768 > cap(yyv4768) { + } else if yyl4821 > 0 { + var yyrr4821, yyrl4821 int + var yyrt4821 bool + if yyl4821 > cap(yyv4821) { - yyrg4768 := len(yyv4768) > 0 - yyv24768 := yyv4768 - yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4768 { - if yyrl4768 <= cap(yyv4768) { - yyv4768 = yyv4768[:yyrl4768] + yyrg4821 := len(yyv4821) > 0 + yyv24821 := yyv4821 + yyrl4821, yyrt4821 = z.DecInferLen(yyl4821, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4821 { + if yyrl4821 <= cap(yyv4821) { + yyv4821 = yyv4821[:yyrl4821] } else { - yyv4768 = make([]Secret, yyrl4768) + yyv4821 = make([]Secret, yyrl4821) } } else { - yyv4768 = make([]Secret, yyrl4768) + yyv4821 = make([]Secret, yyrl4821) } - yyc4768 = true - yyrr4768 = len(yyv4768) - if yyrg4768 { - copy(yyv4768, yyv24768) + yyc4821 = true + yyrr4821 = len(yyv4821) + if yyrg4821 { + copy(yyv4821, yyv24821) } - } else if yyl4768 != len(yyv4768) { - yyv4768 = yyv4768[:yyl4768] - yyc4768 = true + } else if yyl4821 != len(yyv4821) { + yyv4821 = yyv4821[:yyl4821] + yyc4821 = true } - yyj4768 := 0 - for ; yyj4768 < yyrr4768; yyj4768++ { - yyh4768.ElemContainerState(yyj4768) + yyj4821 := 0 + for ; yyj4821 < yyrr4821; yyj4821++ { + yyh4821.ElemContainerState(yyj4821) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = Secret{} + yyv4821[yyj4821] = Secret{} } else { - yyv4769 := &yyv4768[yyj4768] - yyv4769.CodecDecodeSelf(d) + yyv4822 := &yyv4821[yyj4821] + yyv4822.CodecDecodeSelf(d) } } - if yyrt4768 { - for ; yyj4768 < yyl4768; yyj4768++ { - yyv4768 = append(yyv4768, Secret{}) - yyh4768.ElemContainerState(yyj4768) + if yyrt4821 { + for ; yyj4821 < yyl4821; yyj4821++ { + yyv4821 = append(yyv4821, Secret{}) + yyh4821.ElemContainerState(yyj4821) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = Secret{} + yyv4821[yyj4821] = Secret{} } else { - yyv4770 := &yyv4768[yyj4768] - yyv4770.CodecDecodeSelf(d) + yyv4823 := &yyv4821[yyj4821] + yyv4823.CodecDecodeSelf(d) } } } } else { - yyj4768 := 0 - for ; !r.CheckBreak(); yyj4768++ { + yyj4821 := 0 + for ; !r.CheckBreak(); yyj4821++ { - if yyj4768 >= len(yyv4768) { - yyv4768 = append(yyv4768, Secret{}) // var yyz4768 Secret - yyc4768 = true + if yyj4821 >= len(yyv4821) { + yyv4821 = append(yyv4821, Secret{}) // var yyz4821 Secret + yyc4821 = true } - yyh4768.ElemContainerState(yyj4768) - if yyj4768 < len(yyv4768) { + yyh4821.ElemContainerState(yyj4821) + if yyj4821 < len(yyv4821) { if r.TryDecodeAsNil() { - yyv4768[yyj4768] = Secret{} + yyv4821[yyj4821] = Secret{} } else { - yyv4771 := &yyv4768[yyj4768] - yyv4771.CodecDecodeSelf(d) + yyv4824 := &yyv4821[yyj4821] + yyv4824.CodecDecodeSelf(d) } } else { @@ -61293,17 +62000,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4768 < len(yyv4768) { - yyv4768 = yyv4768[:yyj4768] - yyc4768 = true - } else if yyj4768 == 0 && yyv4768 == nil { - yyv4768 = []Secret{} - yyc4768 = true + if yyj4821 < len(yyv4821) { + yyv4821 = yyv4821[:yyj4821] + yyc4821 = true + } else if yyj4821 == 0 && yyv4821 == nil { + yyv4821 = []Secret{} + yyc4821 = true } } - yyh4768.End() - if yyc4768 { - *v = yyv4768 + yyh4821.End() + if yyc4821 { + *v = yyv4821 } } @@ -61312,10 +62019,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4772 := range v { + for _, yyv4825 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4773 := &yyv4772 - yy4773.CodecEncodeSelf(e) + yy4826 := &yyv4825 + yy4826.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61325,83 +62032,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4774 := *v - yyh4774, yyl4774 := z.DecSliceHelperStart() - var yyc4774 bool - if yyl4774 == 0 { - if yyv4774 == nil { - yyv4774 = []ConfigMap{} - yyc4774 = true - } else if len(yyv4774) != 0 { - yyv4774 = yyv4774[:0] - yyc4774 = true + yyv4827 := *v + yyh4827, yyl4827 := z.DecSliceHelperStart() + var yyc4827 bool + if yyl4827 == 0 { + if yyv4827 == nil { + yyv4827 = []ConfigMap{} + yyc4827 = true + } else if len(yyv4827) != 0 { + yyv4827 = yyv4827[:0] + yyc4827 = true } - } else if yyl4774 > 0 { - var yyrr4774, yyrl4774 int - var yyrt4774 bool - if yyl4774 > cap(yyv4774) { + } else if yyl4827 > 0 { + var yyrr4827, yyrl4827 int + var yyrt4827 bool + if yyl4827 > cap(yyv4827) { - yyrg4774 := len(yyv4774) > 0 - yyv24774 := yyv4774 - yyrl4774, yyrt4774 = z.DecInferLen(yyl4774, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4774 { - if yyrl4774 <= cap(yyv4774) { - yyv4774 = yyv4774[:yyrl4774] + yyrg4827 := len(yyv4827) > 0 + yyv24827 := yyv4827 + yyrl4827, yyrt4827 = z.DecInferLen(yyl4827, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4827 { + if yyrl4827 <= cap(yyv4827) { + yyv4827 = yyv4827[:yyrl4827] } else { - yyv4774 = make([]ConfigMap, yyrl4774) + yyv4827 = make([]ConfigMap, yyrl4827) } } else { - yyv4774 = make([]ConfigMap, yyrl4774) + yyv4827 = make([]ConfigMap, yyrl4827) } - yyc4774 = true - yyrr4774 = len(yyv4774) - if yyrg4774 { - copy(yyv4774, yyv24774) + yyc4827 = true + yyrr4827 = len(yyv4827) + if yyrg4827 { + copy(yyv4827, yyv24827) } - } else if yyl4774 != len(yyv4774) { - yyv4774 = yyv4774[:yyl4774] - yyc4774 = true + } else if yyl4827 != len(yyv4827) { + yyv4827 = yyv4827[:yyl4827] + yyc4827 = true } - yyj4774 := 0 - for ; yyj4774 < yyrr4774; yyj4774++ { - yyh4774.ElemContainerState(yyj4774) + yyj4827 := 0 + for ; yyj4827 < yyrr4827; yyj4827++ { + yyh4827.ElemContainerState(yyj4827) if r.TryDecodeAsNil() { - yyv4774[yyj4774] = ConfigMap{} + yyv4827[yyj4827] = ConfigMap{} } else { - yyv4775 := &yyv4774[yyj4774] - yyv4775.CodecDecodeSelf(d) + yyv4828 := &yyv4827[yyj4827] + yyv4828.CodecDecodeSelf(d) } } - if yyrt4774 { - for ; yyj4774 < yyl4774; yyj4774++ { - yyv4774 = append(yyv4774, ConfigMap{}) - yyh4774.ElemContainerState(yyj4774) + if yyrt4827 { + for ; yyj4827 < yyl4827; yyj4827++ { + yyv4827 = append(yyv4827, ConfigMap{}) + yyh4827.ElemContainerState(yyj4827) if r.TryDecodeAsNil() { - yyv4774[yyj4774] = ConfigMap{} + yyv4827[yyj4827] = ConfigMap{} } else { - yyv4776 := &yyv4774[yyj4774] - yyv4776.CodecDecodeSelf(d) + yyv4829 := &yyv4827[yyj4827] + yyv4829.CodecDecodeSelf(d) } } } } else { - yyj4774 := 0 - for ; !r.CheckBreak(); yyj4774++ { + yyj4827 := 0 + for ; !r.CheckBreak(); yyj4827++ { - if yyj4774 >= len(yyv4774) { - yyv4774 = append(yyv4774, ConfigMap{}) // var yyz4774 ConfigMap - yyc4774 = true + if yyj4827 >= len(yyv4827) { + yyv4827 = append(yyv4827, ConfigMap{}) // var yyz4827 ConfigMap + yyc4827 = true } - yyh4774.ElemContainerState(yyj4774) - if yyj4774 < len(yyv4774) { + yyh4827.ElemContainerState(yyj4827) + if yyj4827 < len(yyv4827) { if r.TryDecodeAsNil() { - yyv4774[yyj4774] = ConfigMap{} + yyv4827[yyj4827] = ConfigMap{} } else { - yyv4777 := &yyv4774[yyj4774] - yyv4777.CodecDecodeSelf(d) + yyv4830 := &yyv4827[yyj4827] + yyv4830.CodecDecodeSelf(d) } } else { @@ -61409,17 +62116,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4774 < len(yyv4774) { - yyv4774 = yyv4774[:yyj4774] - yyc4774 = true - } else if yyj4774 == 0 && yyv4774 == nil { - yyv4774 = []ConfigMap{} - yyc4774 = true + if yyj4827 < len(yyv4827) { + yyv4827 = yyv4827[:yyj4827] + yyc4827 = true + } else if yyj4827 == 0 && yyv4827 == nil { + yyv4827 = []ConfigMap{} + yyc4827 = true } } - yyh4774.End() - if yyc4774 { - *v = yyv4774 + yyh4827.End() + if yyc4827 { + *v = yyv4827 } } @@ -61428,10 +62135,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4778 := range v { + for _, yyv4831 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4779 := &yyv4778 - yy4779.CodecEncodeSelf(e) + yy4832 := &yyv4831 + yy4832.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61441,83 +62148,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4780 := *v - yyh4780, yyl4780 := z.DecSliceHelperStart() - var yyc4780 bool - if yyl4780 == 0 { - if yyv4780 == nil { - yyv4780 = []ComponentCondition{} - yyc4780 = true - } else if len(yyv4780) != 0 { - yyv4780 = yyv4780[:0] - yyc4780 = true + yyv4833 := *v + yyh4833, yyl4833 := z.DecSliceHelperStart() + var yyc4833 bool + if yyl4833 == 0 { + if yyv4833 == nil { + yyv4833 = []ComponentCondition{} + yyc4833 = true + } else if len(yyv4833) != 0 { + yyv4833 = yyv4833[:0] + yyc4833 = true } - } else if yyl4780 > 0 { - var yyrr4780, yyrl4780 int - var yyrt4780 bool - if yyl4780 > cap(yyv4780) { + } else if yyl4833 > 0 { + var yyrr4833, yyrl4833 int + var yyrt4833 bool + if yyl4833 > cap(yyv4833) { - yyrg4780 := len(yyv4780) > 0 - yyv24780 := yyv4780 - yyrl4780, yyrt4780 = z.DecInferLen(yyl4780, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4780 { - if yyrl4780 <= cap(yyv4780) { - yyv4780 = yyv4780[:yyrl4780] + yyrg4833 := len(yyv4833) > 0 + yyv24833 := yyv4833 + yyrl4833, yyrt4833 = z.DecInferLen(yyl4833, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4833 { + if yyrl4833 <= cap(yyv4833) { + yyv4833 = yyv4833[:yyrl4833] } else { - yyv4780 = make([]ComponentCondition, yyrl4780) + yyv4833 = make([]ComponentCondition, yyrl4833) } } else { - yyv4780 = make([]ComponentCondition, yyrl4780) + yyv4833 = make([]ComponentCondition, yyrl4833) } - yyc4780 = true - yyrr4780 = len(yyv4780) - if yyrg4780 { - copy(yyv4780, yyv24780) + yyc4833 = true + yyrr4833 = len(yyv4833) + if yyrg4833 { + copy(yyv4833, yyv24833) } - } else if yyl4780 != len(yyv4780) { - yyv4780 = yyv4780[:yyl4780] - yyc4780 = true + } else if yyl4833 != len(yyv4833) { + yyv4833 = yyv4833[:yyl4833] + yyc4833 = true } - yyj4780 := 0 - for ; yyj4780 < yyrr4780; yyj4780++ { - yyh4780.ElemContainerState(yyj4780) + yyj4833 := 0 + for ; yyj4833 < yyrr4833; yyj4833++ { + yyh4833.ElemContainerState(yyj4833) if r.TryDecodeAsNil() { - yyv4780[yyj4780] = ComponentCondition{} + yyv4833[yyj4833] = ComponentCondition{} } else { - yyv4781 := &yyv4780[yyj4780] - yyv4781.CodecDecodeSelf(d) + yyv4834 := &yyv4833[yyj4833] + yyv4834.CodecDecodeSelf(d) } } - if yyrt4780 { - for ; yyj4780 < yyl4780; yyj4780++ { - yyv4780 = append(yyv4780, ComponentCondition{}) - yyh4780.ElemContainerState(yyj4780) + if yyrt4833 { + for ; yyj4833 < yyl4833; yyj4833++ { + yyv4833 = append(yyv4833, ComponentCondition{}) + yyh4833.ElemContainerState(yyj4833) if r.TryDecodeAsNil() { - yyv4780[yyj4780] = ComponentCondition{} + yyv4833[yyj4833] = ComponentCondition{} } else { - yyv4782 := &yyv4780[yyj4780] - yyv4782.CodecDecodeSelf(d) + yyv4835 := &yyv4833[yyj4833] + yyv4835.CodecDecodeSelf(d) } } } } else { - yyj4780 := 0 - for ; !r.CheckBreak(); yyj4780++ { + yyj4833 := 0 + for ; !r.CheckBreak(); yyj4833++ { - if yyj4780 >= len(yyv4780) { - yyv4780 = append(yyv4780, ComponentCondition{}) // var yyz4780 ComponentCondition - yyc4780 = true + if yyj4833 >= len(yyv4833) { + yyv4833 = append(yyv4833, ComponentCondition{}) // var yyz4833 ComponentCondition + yyc4833 = true } - yyh4780.ElemContainerState(yyj4780) - if yyj4780 < len(yyv4780) { + yyh4833.ElemContainerState(yyj4833) + if yyj4833 < len(yyv4833) { if r.TryDecodeAsNil() { - yyv4780[yyj4780] = ComponentCondition{} + yyv4833[yyj4833] = ComponentCondition{} } else { - yyv4783 := &yyv4780[yyj4780] - yyv4783.CodecDecodeSelf(d) + yyv4836 := &yyv4833[yyj4833] + yyv4836.CodecDecodeSelf(d) } } else { @@ -61525,17 +62232,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4780 < len(yyv4780) { - yyv4780 = yyv4780[:yyj4780] - yyc4780 = true - } else if yyj4780 == 0 && yyv4780 == nil { - yyv4780 = []ComponentCondition{} - yyc4780 = true + if yyj4833 < len(yyv4833) { + yyv4833 = yyv4833[:yyj4833] + yyc4833 = true + } else if yyj4833 == 0 && yyv4833 == nil { + yyv4833 = []ComponentCondition{} + yyc4833 = true } } - yyh4780.End() - if yyc4780 { - *v = yyv4780 + yyh4833.End() + if yyc4833 { + *v = yyv4833 } } @@ -61544,10 +62251,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4784 := range v { + for _, yyv4837 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4785 := &yyv4784 - yy4785.CodecEncodeSelf(e) + yy4838 := &yyv4837 + yy4838.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61557,83 +62264,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4786 := *v - yyh4786, yyl4786 := z.DecSliceHelperStart() - var yyc4786 bool - if yyl4786 == 0 { - if yyv4786 == nil { - yyv4786 = []ComponentStatus{} - yyc4786 = true - } else if len(yyv4786) != 0 { - yyv4786 = yyv4786[:0] - yyc4786 = true + yyv4839 := *v + yyh4839, yyl4839 := z.DecSliceHelperStart() + var yyc4839 bool + if yyl4839 == 0 { + if yyv4839 == nil { + yyv4839 = []ComponentStatus{} + yyc4839 = true + } else if len(yyv4839) != 0 { + yyv4839 = yyv4839[:0] + yyc4839 = true } - } else if yyl4786 > 0 { - var yyrr4786, yyrl4786 int - var yyrt4786 bool - if yyl4786 > cap(yyv4786) { + } else if yyl4839 > 0 { + var yyrr4839, yyrl4839 int + var yyrt4839 bool + if yyl4839 > cap(yyv4839) { - yyrg4786 := len(yyv4786) > 0 - yyv24786 := yyv4786 - yyrl4786, yyrt4786 = z.DecInferLen(yyl4786, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4786 { - if yyrl4786 <= cap(yyv4786) { - yyv4786 = yyv4786[:yyrl4786] + yyrg4839 := len(yyv4839) > 0 + yyv24839 := yyv4839 + yyrl4839, yyrt4839 = z.DecInferLen(yyl4839, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4839 { + if yyrl4839 <= cap(yyv4839) { + yyv4839 = yyv4839[:yyrl4839] } else { - yyv4786 = make([]ComponentStatus, yyrl4786) + yyv4839 = make([]ComponentStatus, yyrl4839) } } else { - yyv4786 = make([]ComponentStatus, yyrl4786) + yyv4839 = make([]ComponentStatus, yyrl4839) } - yyc4786 = true - yyrr4786 = len(yyv4786) - if yyrg4786 { - copy(yyv4786, yyv24786) + yyc4839 = true + yyrr4839 = len(yyv4839) + if yyrg4839 { + copy(yyv4839, yyv24839) } - } else if yyl4786 != len(yyv4786) { - yyv4786 = yyv4786[:yyl4786] - yyc4786 = true + } else if yyl4839 != len(yyv4839) { + yyv4839 = yyv4839[:yyl4839] + yyc4839 = true } - yyj4786 := 0 - for ; yyj4786 < yyrr4786; yyj4786++ { - yyh4786.ElemContainerState(yyj4786) + yyj4839 := 0 + for ; yyj4839 < yyrr4839; yyj4839++ { + yyh4839.ElemContainerState(yyj4839) if r.TryDecodeAsNil() { - yyv4786[yyj4786] = ComponentStatus{} + yyv4839[yyj4839] = ComponentStatus{} } else { - yyv4787 := &yyv4786[yyj4786] - yyv4787.CodecDecodeSelf(d) + yyv4840 := &yyv4839[yyj4839] + yyv4840.CodecDecodeSelf(d) } } - if yyrt4786 { - for ; yyj4786 < yyl4786; yyj4786++ { - yyv4786 = append(yyv4786, ComponentStatus{}) - yyh4786.ElemContainerState(yyj4786) + if yyrt4839 { + for ; yyj4839 < yyl4839; yyj4839++ { + yyv4839 = append(yyv4839, ComponentStatus{}) + yyh4839.ElemContainerState(yyj4839) if r.TryDecodeAsNil() { - yyv4786[yyj4786] = ComponentStatus{} + yyv4839[yyj4839] = ComponentStatus{} } else { - yyv4788 := &yyv4786[yyj4786] - yyv4788.CodecDecodeSelf(d) + yyv4841 := &yyv4839[yyj4839] + yyv4841.CodecDecodeSelf(d) } } } } else { - yyj4786 := 0 - for ; !r.CheckBreak(); yyj4786++ { + yyj4839 := 0 + for ; !r.CheckBreak(); yyj4839++ { - if yyj4786 >= len(yyv4786) { - yyv4786 = append(yyv4786, ComponentStatus{}) // var yyz4786 ComponentStatus - yyc4786 = true + if yyj4839 >= len(yyv4839) { + yyv4839 = append(yyv4839, ComponentStatus{}) // var yyz4839 ComponentStatus + yyc4839 = true } - yyh4786.ElemContainerState(yyj4786) - if yyj4786 < len(yyv4786) { + yyh4839.ElemContainerState(yyj4839) + if yyj4839 < len(yyv4839) { if r.TryDecodeAsNil() { - yyv4786[yyj4786] = ComponentStatus{} + yyv4839[yyj4839] = ComponentStatus{} } else { - yyv4789 := &yyv4786[yyj4786] - yyv4789.CodecDecodeSelf(d) + yyv4842 := &yyv4839[yyj4839] + yyv4842.CodecDecodeSelf(d) } } else { @@ -61641,17 +62348,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4786 < len(yyv4786) { - yyv4786 = yyv4786[:yyj4786] - yyc4786 = true - } else if yyj4786 == 0 && yyv4786 == nil { - yyv4786 = []ComponentStatus{} - yyc4786 = true + if yyj4839 < len(yyv4839) { + yyv4839 = yyv4839[:yyj4839] + yyc4839 = true + } else if yyj4839 == 0 && yyv4839 == nil { + yyv4839 = []ComponentStatus{} + yyc4839 = true } } - yyh4786.End() - if yyc4786 { - *v = yyv4786 + yyh4839.End() + if yyc4839 { + *v = yyv4839 } } @@ -61660,10 +62367,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4790 := range v { + for _, yyv4843 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4791 := &yyv4790 - yy4791.CodecEncodeSelf(e) + yy4844 := &yyv4843 + yy4844.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61673,83 +62380,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4792 := *v - yyh4792, yyl4792 := z.DecSliceHelperStart() - var yyc4792 bool - if yyl4792 == 0 { - if yyv4792 == nil { - yyv4792 = []DownwardAPIVolumeFile{} - yyc4792 = true - } else if len(yyv4792) != 0 { - yyv4792 = yyv4792[:0] - yyc4792 = true + yyv4845 := *v + yyh4845, yyl4845 := z.DecSliceHelperStart() + var yyc4845 bool + if yyl4845 == 0 { + if yyv4845 == nil { + yyv4845 = []DownwardAPIVolumeFile{} + yyc4845 = true + } else if len(yyv4845) != 0 { + yyv4845 = yyv4845[:0] + yyc4845 = true } - } else if yyl4792 > 0 { - var yyrr4792, yyrl4792 int - var yyrt4792 bool - if yyl4792 > cap(yyv4792) { + } else if yyl4845 > 0 { + var yyrr4845, yyrl4845 int + var yyrt4845 bool + if yyl4845 > cap(yyv4845) { - yyrg4792 := len(yyv4792) > 0 - yyv24792 := yyv4792 - yyrl4792, yyrt4792 = z.DecInferLen(yyl4792, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4792 { - if yyrl4792 <= cap(yyv4792) { - yyv4792 = yyv4792[:yyrl4792] + yyrg4845 := len(yyv4845) > 0 + yyv24845 := yyv4845 + yyrl4845, yyrt4845 = z.DecInferLen(yyl4845, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4845 { + if yyrl4845 <= cap(yyv4845) { + yyv4845 = yyv4845[:yyrl4845] } else { - yyv4792 = make([]DownwardAPIVolumeFile, yyrl4792) + yyv4845 = make([]DownwardAPIVolumeFile, yyrl4845) } } else { - yyv4792 = make([]DownwardAPIVolumeFile, yyrl4792) + yyv4845 = make([]DownwardAPIVolumeFile, yyrl4845) } - yyc4792 = true - yyrr4792 = len(yyv4792) - if yyrg4792 { - copy(yyv4792, yyv24792) + yyc4845 = true + yyrr4845 = len(yyv4845) + if yyrg4845 { + copy(yyv4845, yyv24845) } - } else if yyl4792 != len(yyv4792) { - yyv4792 = yyv4792[:yyl4792] - yyc4792 = true + } else if yyl4845 != len(yyv4845) { + yyv4845 = yyv4845[:yyl4845] + yyc4845 = true } - yyj4792 := 0 - for ; yyj4792 < yyrr4792; yyj4792++ { - yyh4792.ElemContainerState(yyj4792) + yyj4845 := 0 + for ; yyj4845 < yyrr4845; yyj4845++ { + yyh4845.ElemContainerState(yyj4845) if r.TryDecodeAsNil() { - yyv4792[yyj4792] = DownwardAPIVolumeFile{} + yyv4845[yyj4845] = DownwardAPIVolumeFile{} } else { - yyv4793 := &yyv4792[yyj4792] - yyv4793.CodecDecodeSelf(d) + yyv4846 := &yyv4845[yyj4845] + yyv4846.CodecDecodeSelf(d) } } - if yyrt4792 { - for ; yyj4792 < yyl4792; yyj4792++ { - yyv4792 = append(yyv4792, DownwardAPIVolumeFile{}) - yyh4792.ElemContainerState(yyj4792) + if yyrt4845 { + for ; yyj4845 < yyl4845; yyj4845++ { + yyv4845 = append(yyv4845, DownwardAPIVolumeFile{}) + yyh4845.ElemContainerState(yyj4845) if r.TryDecodeAsNil() { - yyv4792[yyj4792] = DownwardAPIVolumeFile{} + yyv4845[yyj4845] = DownwardAPIVolumeFile{} } else { - yyv4794 := &yyv4792[yyj4792] - yyv4794.CodecDecodeSelf(d) + yyv4847 := &yyv4845[yyj4845] + yyv4847.CodecDecodeSelf(d) } } } } else { - yyj4792 := 0 - for ; !r.CheckBreak(); yyj4792++ { + yyj4845 := 0 + for ; !r.CheckBreak(); yyj4845++ { - if yyj4792 >= len(yyv4792) { - yyv4792 = append(yyv4792, DownwardAPIVolumeFile{}) // var yyz4792 DownwardAPIVolumeFile - yyc4792 = true + if yyj4845 >= len(yyv4845) { + yyv4845 = append(yyv4845, DownwardAPIVolumeFile{}) // var yyz4845 DownwardAPIVolumeFile + yyc4845 = true } - yyh4792.ElemContainerState(yyj4792) - if yyj4792 < len(yyv4792) { + yyh4845.ElemContainerState(yyj4845) + if yyj4845 < len(yyv4845) { if r.TryDecodeAsNil() { - yyv4792[yyj4792] = DownwardAPIVolumeFile{} + yyv4845[yyj4845] = DownwardAPIVolumeFile{} } else { - yyv4795 := &yyv4792[yyj4792] - yyv4795.CodecDecodeSelf(d) + yyv4848 := &yyv4845[yyj4845] + yyv4848.CodecDecodeSelf(d) } } else { @@ -61757,16 +62464,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4792 < len(yyv4792) { - yyv4792 = yyv4792[:yyj4792] - yyc4792 = true - } else if yyj4792 == 0 && yyv4792 == nil { - yyv4792 = []DownwardAPIVolumeFile{} - yyc4792 = true + if yyj4845 < len(yyv4845) { + yyv4845 = yyv4845[:yyj4845] + yyc4845 = true + } else if yyj4845 == 0 && yyv4845 == nil { + yyv4845 = []DownwardAPIVolumeFile{} + yyc4845 = true } } - yyh4792.End() - if yyc4792 { - *v = yyv4792 + yyh4845.End() + if yyc4845 { + *v = yyv4845 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 5578fefbc62..03c55a3d352 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -280,6 +280,8 @@ type VolumeSource struct { 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"` + // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,22,opt,name=azureDisk"` } // PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. @@ -344,6 +346,8 @@ type PersistentVolumeSource struct { 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"` + // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,16,opt,name=azureDisk"` } // +genclient=true @@ -891,6 +895,30 @@ type VsphereVirtualDiskVolumeSource struct { // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"` } +type AzureDataDiskCachingMode string + +const ( + AzureDataDiskCachingNone AzureDataDiskCachingMode = "None" + AzureDataDiskCachingReadOnly AzureDataDiskCachingMode = "ReadOnly" + AzureDataDiskCachingReadWrite AzureDataDiskCachingMode = "ReadWrite" +) + +// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +type AzureDiskVolumeSource struct { + // The Name of the data disk in the blob storage + DiskName string `json:"diskName" protobuf:"bytes,1,opt,name=diskName"` + // The URI the data disk in the blob storage + DataDiskURI string `json:"diskURI" protobuf:"bytes,2,opt,name=diskURI"` + // Host Caching mode: None, Read Only, Read Write. + CachingMode *AzureDataDiskCachingMode `json:"cachingMode,omitempty" protobuf:"bytes,3,opt,name=cachingMode,casttype=AzureDataDiskCachingMode"` + // Filesystem type to mount. + // Must be a filesystem type supported by the host operating system. + // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + FSType *string `json:"fsType,omitempty" protobuf:"bytes,4,opt,name=fsType"` + // Defaults to false (read/write). ReadOnly here will force + // the ReadOnly setting in VolumeMounts. + ReadOnly *bool `json:"readOnly,omitempty" protobuf:"varint,5,opt,name=readOnly"` +} // Adapts a ConfigMap into a volume. // diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 369e4004b4c..886ed425d60 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -69,6 +69,19 @@ func (AvoidPods) SwaggerDoc() map[string]string { return map_AvoidPods } +var map_AzureDiskVolumeSource = map[string]string{ + "": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "diskName": "The Name of the data disk in the blob storage", + "diskURI": "The URI the data disk in the blob storage", + "cachingMode": "Host Caching mode: None, Read Only, Read Write.", + "fsType": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "readOnly": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", +} + +func (AzureDiskVolumeSource) SwaggerDoc() map[string]string { + return map_AzureDiskVolumeSource +} + var map_AzureFileVolumeSource = map[string]string{ "": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "secretName": "the name of secret that contains Azure Storage Account Name and Key", @@ -1083,6 +1096,7 @@ var map_PersistentVolumeSource = map[string]string{ "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", + "azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", } func (PersistentVolumeSource) SwaggerDoc() map[string]string { @@ -1767,6 +1781,7 @@ var map_VolumeSource = map[string]string{ "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", + "azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", } 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 4e6ca306299..2f5acd0940f 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -44,6 +44,8 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_api_AttachedVolume_To_v1_AttachedVolume, Convert_v1_AvoidPods_To_api_AvoidPods, Convert_api_AvoidPods_To_v1_AvoidPods, + Convert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource, + Convert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource, Convert_v1_AzureFileVolumeSource_To_api_AzureFileVolumeSource, Convert_api_AzureFileVolumeSource_To_v1_AzureFileVolumeSource, Convert_v1_Binding_To_api_Binding, @@ -497,6 +499,45 @@ func Convert_api_AvoidPods_To_v1_AvoidPods(in *api.AvoidPods, out *AvoidPods, s return autoConvert_api_AvoidPods_To_v1_AvoidPods(in, out, s) } +func autoConvert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource(in *AzureDiskVolumeSource, out *api.AzureDiskVolumeSource, s conversion.Scope) error { + SetDefaults_AzureDiskVolumeSource(in) + out.DiskName = in.DiskName + out.DataDiskURI = in.DataDiskURI + if in.CachingMode != nil { + in, out := &in.CachingMode, &out.CachingMode + *out = new(api.AzureDataDiskCachingMode) + **out = api.AzureDataDiskCachingMode(**in) + } else { + out.CachingMode = nil + } + out.FSType = in.FSType + out.ReadOnly = in.ReadOnly + return nil +} + +func Convert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource(in *AzureDiskVolumeSource, out *api.AzureDiskVolumeSource, s conversion.Scope) error { + return autoConvert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource(in, out, s) +} + +func autoConvert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource(in *api.AzureDiskVolumeSource, out *AzureDiskVolumeSource, s conversion.Scope) error { + out.DiskName = in.DiskName + out.DataDiskURI = in.DataDiskURI + if in.CachingMode != nil { + in, out := &in.CachingMode, &out.CachingMode + *out = new(AzureDataDiskCachingMode) + **out = AzureDataDiskCachingMode(**in) + } else { + out.CachingMode = nil + } + out.FSType = in.FSType + out.ReadOnly = in.ReadOnly + return nil +} + +func Convert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource(in *api.AzureDiskVolumeSource, out *AzureDiskVolumeSource, s conversion.Scope) error { + return autoConvert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource(in, out, s) +} + func autoConvert_v1_AzureFileVolumeSource_To_api_AzureFileVolumeSource(in *AzureFileVolumeSource, out *api.AzureFileVolumeSource, s conversion.Scope) error { out.SecretName = in.SecretName out.ShareName = in.ShareName @@ -4210,6 +4251,15 @@ func autoConvert_v1_PersistentVolumeSource_To_api_PersistentVolumeSource(in *Per } else { out.Quobyte = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(api.AzureDiskVolumeSource) + if err := Convert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } @@ -4353,6 +4403,15 @@ func autoConvert_api_PersistentVolumeSource_To_v1_PersistentVolumeSource(in *api } else { out.VsphereVolume = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(AzureDiskVolumeSource) + if err := Convert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } @@ -6803,6 +6862,15 @@ func autoConvert_v1_VolumeSource_To_api_VolumeSource(in *VolumeSource, out *api. } else { out.Quobyte = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(api.AzureDiskVolumeSource) + if err := Convert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } @@ -7000,6 +7068,15 @@ func autoConvert_api_VolumeSource_To_v1_VolumeSource(in *api.VolumeSource, out * } else { out.VsphereVolume = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(AzureDiskVolumeSource) + if err := Convert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource(*in, *out, s); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 2e1a359d37d..c64868f562f 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -40,6 +40,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_Affinity, InType: reflect.TypeOf(&Affinity{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_AttachedVolume, InType: reflect.TypeOf(&AttachedVolume{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_AvoidPods, InType: reflect.TypeOf(&AvoidPods{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_AzureDiskVolumeSource, InType: reflect.TypeOf(&AzureDiskVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_AzureFileVolumeSource, InType: reflect.TypeOf(&AzureFileVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_Binding, InType: reflect.TypeOf(&Binding{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_Capabilities, InType: reflect.TypeOf(&Capabilities{})}, @@ -268,6 +269,37 @@ func DeepCopy_v1_AvoidPods(in interface{}, out interface{}, c *conversion.Cloner } } +func DeepCopy_v1_AzureDiskVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*AzureDiskVolumeSource) + out := out.(*AzureDiskVolumeSource) + out.DiskName = in.DiskName + out.DataDiskURI = in.DataDiskURI + if in.CachingMode != nil { + in, out := &in.CachingMode, &out.CachingMode + *out = new(AzureDataDiskCachingMode) + **out = **in + } else { + out.CachingMode = nil + } + if in.FSType != nil { + in, out := &in.FSType, &out.FSType + *out = new(string) + **out = **in + } else { + out.FSType = nil + } + if in.ReadOnly != nil { + in, out := &in.ReadOnly, &out.ReadOnly + *out = new(bool) + **out = **in + } else { + out.ReadOnly = nil + } + return nil + } +} + func DeepCopy_v1_AzureFileVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*AzureFileVolumeSource) @@ -2188,6 +2220,15 @@ func DeepCopy_v1_PersistentVolumeSource(in interface{}, out interface{}, c *conv } else { out.Quobyte = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(AzureDiskVolumeSource) + if err := DeepCopy_v1_AzureDiskVolumeSource(*in, *out, c); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } } @@ -3626,6 +3667,15 @@ func DeepCopy_v1_VolumeSource(in interface{}, out interface{}, c *conversion.Clo } else { out.Quobyte = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(AzureDiskVolumeSource) + if err := DeepCopy_v1_AzureDiskVolumeSource(*in, *out, c); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } } diff --git a/pkg/api/validation/validation.go b/pkg/api/validation/validation.go index 9d4ac4bff03..e14da40d992 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -631,6 +631,11 @@ func validateVolumeSource(source *api.VolumeSource, fldPath *field.Path) field.E allErrs = append(allErrs, validateVsphereVolumeSource(source.VsphereVolume, fldPath.Child("vsphereVolume"))...) } } + if source.AzureDisk != nil { + numVolumes++ + allErrs = append(allErrs, validateAzureDisk(source.AzureDisk, fldPath.Child("azureDisk"))...) + } + if numVolumes == 0 { allErrs = append(allErrs, field.Required(fldPath, "must specify a volume type")) } @@ -941,6 +946,22 @@ func validateAzureFile(azure *api.AzureFileVolumeSource, fldPath *field.Path) fi return allErrs } +var supportedCachingModes = sets.NewString(string(api.AzureDataDiskCachingNone), string(api.AzureDataDiskCachingReadOnly), string(api.AzureDataDiskCachingReadWrite)) + +func validateAzureDisk(azure *api.AzureDiskVolumeSource, fldPath *field.Path) field.ErrorList { + allErrs := field.ErrorList{} + if azure.DiskName == "" { + allErrs = append(allErrs, field.Required(fldPath.Child("diskName"), "")) + } + if azure.DataDiskURI == "" { + allErrs = append(allErrs, field.Required(fldPath.Child("diskURI"), "")) + } + if azure.CachingMode != nil && !supportedCachingModes.Has(string(*azure.CachingMode)) { + allErrs = append(allErrs, field.NotSupported(fldPath.Child("cachingMode"), *azure.CachingMode, supportedCachingModes.List())) + } + return allErrs +} + func validateVsphereVolumeSource(cd *api.VsphereVirtualDiskVolumeSource, fldPath *field.Path) field.ErrorList { allErrs := field.ErrorList{} if len(cd.VolumePath) == 0 { @@ -1093,6 +1114,11 @@ func ValidatePersistentVolume(pv *api.PersistentVolume) field.ErrorList { allErrs = append(allErrs, validateVsphereVolumeSource(pv.Spec.VsphereVolume, specPath.Child("vsphereVolume"))...) } } + if pv.Spec.AzureDisk != nil { + numVolumes++ + allErrs = append(allErrs, validateAzureDisk(pv.Spec.AzureDisk, specPath.Child("azureDisk"))...) + } + if numVolumes == 0 { allErrs = append(allErrs, field.Required(specPath, "must specify a volume type")) } diff --git a/pkg/api/validation/validation_test.go b/pkg/api/validation/validation_test.go index 763f5b8f37c..9414136396d 100644 --- a/pkg/api/validation/validation_test.go +++ b/pkg/api/validation/validation_test.go @@ -2063,6 +2063,47 @@ func TestValidateVolumes(t *testing.T) { errtype: field.ErrorTypeRequired, errfield: "quobyte.volume", }, + // AzureDisk + { + name: "valid AzureDisk", + vol: api.Volume{ + Name: "azure-disk", + VolumeSource: api.VolumeSource{ + AzureDisk: &api.AzureDiskVolumeSource{ + DiskName: "foo", + DataDiskURI: "https://blob/vhds/bar.vhd", + }, + }, + }, + }, + { + name: "AzureDisk empty disk name", + vol: api.Volume{ + Name: "azure-disk", + VolumeSource: api.VolumeSource{ + AzureDisk: &api.AzureDiskVolumeSource{ + DiskName: "", + DataDiskURI: "https://blob/vhds/bar.vhd", + }, + }, + }, + errtype: field.ErrorTypeRequired, + errfield: "azureDisk.diskName", + }, + { + name: "AzureDisk empty disk uri", + vol: api.Volume{ + Name: "azure-disk", + VolumeSource: api.VolumeSource{ + AzureDisk: &api.AzureDiskVolumeSource{ + DiskName: "foo", + DataDiskURI: "", + }, + }, + }, + errtype: field.ErrorTypeRequired, + errfield: "azureDisk.diskURI", + }, } for i, tc := range testCases { diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index d0f3f199664..c104415670e 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -42,6 +42,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_Affinity, InType: reflect.TypeOf(&Affinity{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_AttachedVolume, InType: reflect.TypeOf(&AttachedVolume{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_AvoidPods, InType: reflect.TypeOf(&AvoidPods{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_AzureDiskVolumeSource, InType: reflect.TypeOf(&AzureDiskVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_AzureFileVolumeSource, InType: reflect.TypeOf(&AzureFileVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_Binding, InType: reflect.TypeOf(&Binding{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_Capabilities, InType: reflect.TypeOf(&Capabilities{})}, @@ -272,6 +273,37 @@ func DeepCopy_api_AvoidPods(in interface{}, out interface{}, c *conversion.Clone } } +func DeepCopy_api_AzureDiskVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*AzureDiskVolumeSource) + out := out.(*AzureDiskVolumeSource) + out.DiskName = in.DiskName + out.DataDiskURI = in.DataDiskURI + if in.CachingMode != nil { + in, out := &in.CachingMode, &out.CachingMode + *out = new(AzureDataDiskCachingMode) + **out = **in + } else { + out.CachingMode = nil + } + if in.FSType != nil { + in, out := &in.FSType, &out.FSType + *out = new(string) + **out = **in + } else { + out.FSType = nil + } + if in.ReadOnly != nil { + in, out := &in.ReadOnly, &out.ReadOnly + *out = new(bool) + **out = **in + } else { + out.ReadOnly = nil + } + return nil + } +} + func DeepCopy_api_AzureFileVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*AzureFileVolumeSource) @@ -2246,6 +2278,15 @@ func DeepCopy_api_PersistentVolumeSource(in interface{}, out interface{}, c *con } else { out.VsphereVolume = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(AzureDiskVolumeSource) + if err := DeepCopy_api_AzureDiskVolumeSource(*in, *out, c); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } } @@ -3661,6 +3702,15 @@ func DeepCopy_api_VolumeSource(in interface{}, out interface{}, c *conversion.Cl } else { out.VsphereVolume = nil } + if in.AzureDisk != nil { + in, out := &in.AzureDisk, &out.AzureDisk + *out = new(AzureDiskVolumeSource) + if err := DeepCopy_api_AzureDiskVolumeSource(*in, *out, c); err != nil { + return err + } + } else { + out.AzureDisk = nil + } return nil } } diff --git a/pkg/apis/extensions/types.go b/pkg/apis/extensions/types.go index 771d2185242..6543cdfba3f 100644 --- a/pkg/apis/extensions/types.go +++ b/pkg/apis/extensions/types.go @@ -718,6 +718,7 @@ var ( ConfigMap FSType = "configMap" VsphereVolume FSType = "vsphereVolume" Quobyte FSType = "quobyte" + AzureDisk FSType = "azureDisk" All FSType = "*" ) diff --git a/pkg/apis/extensions/v1beta1/types.go b/pkg/apis/extensions/v1beta1/types.go index d620ce07d27..e6aa71a559b 100644 --- a/pkg/apis/extensions/v1beta1/types.go +++ b/pkg/apis/extensions/v1beta1/types.go @@ -996,6 +996,7 @@ var ( FC FSType = "fc" ConfigMap FSType = "configMap" Quobyte FSType = "quobyte" + AzureDisk FSType = "azureDisk" All FSType = "*" ) diff --git a/pkg/cloudprovider/providers/azure/azure_storage.go b/pkg/cloudprovider/providers/azure/azure_storage.go new file mode 100644 index 00000000000..f7e372da9bf --- /dev/null +++ b/pkg/cloudprovider/providers/azure/azure_storage.go @@ -0,0 +1,153 @@ +/* +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 azure + +import ( + "fmt" + "strings" + + "github.com/Azure/azure-sdk-for-go/arm/compute" + "github.com/golang/glog" + "k8s.io/kubernetes/pkg/cloudprovider" +) + +const ( + maxLUN = 64 // max number of LUNs per VM +) + +// AttachDisk attaches a vhd to vm +// the vhd must exist, can be identified by diskName, diskURI, and lun. +func (az *Cloud) AttachDisk(diskName, diskURI, vmName string, lun int32, cachingMode compute.CachingTypes) error { + vm, exists, err := az.getVirtualMachine(vmName) + if err != nil { + return err + } else if !exists { + return cloudprovider.InstanceNotFound + } + disks := *vm.Properties.StorageProfile.DataDisks + disks = append(disks, + compute.DataDisk{ + Name: &diskName, + Vhd: &compute.VirtualHardDisk{ + URI: &diskURI, + }, + Lun: &lun, + Caching: cachingMode, + CreateOption: "attach", + }) + + newVM := compute.VirtualMachine{ + Location: vm.Location, + Properties: &compute.VirtualMachineProperties{ + StorageProfile: &compute.StorageProfile{ + DataDisks: &disks, + }, + }, + } + _, err = az.VirtualMachinesClient.CreateOrUpdate(az.ResourceGroup, vmName, newVM, nil) + if err != nil { + glog.Errorf("azure attach failed, err: %v", err) + detail := err.Error() + if strings.Contains(detail, "Code=\"AcquireDiskLeaseFailed\"") { + // if lease cannot be acquired, immediately detach the disk and return the original error + glog.Infof("failed to acquire disk lease, try detach") + az.DetachDiskByName(diskName, diskURI, vmName) + } + } else { + glog.V(4).Infof("azure attach succeeded") + } + return err +} + +// DetachDiskByName detaches a vhd from host +// the vhd can be identified by diskName or diskURI +func (az *Cloud) DetachDiskByName(diskName, diskURI, vmName string) error { + vm, exists, err := az.getVirtualMachine(vmName) + if err != nil || !exists { + // if host doesn't exist, no need to detach + glog.Warningf("cannot find node %s, skip detaching disk %s", vmName, diskName) + return nil + } + + disks := *vm.Properties.StorageProfile.DataDisks + for i, disk := range disks { + if (disk.Name != nil && diskName != "" && *disk.Name == diskName) || (disk.Vhd.URI != nil && diskURI != "" && *disk.Vhd.URI == diskURI) { + // found the disk + glog.V(4).Infof("detach disk: name %q uri %q", diskName, diskURI) + disks = append(disks[:i], disks[i+1:]...) + break + } + } + newVM := compute.VirtualMachine{ + Location: vm.Location, + Properties: &compute.VirtualMachineProperties{ + StorageProfile: &compute.StorageProfile{ + DataDisks: &disks, + }, + }, + } + _, err = az.VirtualMachinesClient.CreateOrUpdate(az.ResourceGroup, vmName, newVM, nil) + if err != nil { + glog.Errorf("azure disk detach failed, err: %v", err) + } else { + glog.V(4).Infof("azure disk detach succeeded") + } + return err +} + +// GetDiskLun finds the lun on the host that the vhd is attached to, given a vhd's diskName and diskURI +func (az *Cloud) GetDiskLun(diskName, diskURI, vmName string) (int32, error) { + vm, exists, err := az.getVirtualMachine(vmName) + if err != nil { + return -1, err + } else if !exists { + return -1, cloudprovider.InstanceNotFound + } + disks := *vm.Properties.StorageProfile.DataDisks + for _, disk := range disks { + if disk.Lun != nil && (disk.Name != nil && diskName != "" && *disk.Name == diskName) || (disk.Vhd.URI != nil && diskURI != "" && *disk.Vhd.URI == diskURI) { + // found the disk + glog.V(4).Infof("find disk: lun %d name %q uri %q", *disk.Lun, diskName, diskURI) + return *disk.Lun, nil + } + } + return -1, fmt.Errorf("Cannot find Lun for disk %s", diskName) +} + +// GetNextDiskLun searches all vhd attachment on the host and find unused lun +// return -1 if all luns are used +func (az *Cloud) GetNextDiskLun(vmName string) (int32, error) { + vm, exists, err := az.getVirtualMachine(vmName) + if err != nil { + return -1, err + } else if !exists { + return -1, cloudprovider.InstanceNotFound + } + used := make([]bool, maxLUN) + disks := *vm.Properties.StorageProfile.DataDisks + for _, disk := range disks { + if disk.Lun != nil { + used[*disk.Lun] = true + } + } + for k, v := range used { + if !v { + return int32(k), nil + } + } + return -1, fmt.Errorf("All Luns are used") +} diff --git a/pkg/kubectl/describe.go b/pkg/kubectl/describe.go index 26cc34596ae..001c5733ba4 100644 --- a/pkg/kubectl/describe.go +++ b/pkg/kubectl/describe.go @@ -608,6 +608,8 @@ func describeVolumes(volumes []api.Volume, out io.Writer, space string) { printQuobyteVolumeSource(volume.VolumeSource.Quobyte, out) case volume.VolumeSource.DownwardAPI != nil: printDownwardAPIVolumeSource(volume.VolumeSource.DownwardAPI, out) + case volume.VolumeSource.AzureDisk != nil: + printAzureDiskVolumeSource(volume.VolumeSource.AzureDisk, out) default: fmt.Fprintf(out, " \n") } @@ -726,6 +728,16 @@ func printDownwardAPIVolumeSource(d *api.DownwardAPIVolumeSource, out io.Writer) } } +func printAzureDiskVolumeSource(d *api.AzureDiskVolumeSource, out io.Writer) { + fmt.Fprintf(out, " Type:\tAzureDisk (an Azure Data Disk mount on the host and bind mount to the pod)\n"+ + " DiskName:\t%v\n"+ + " DiskURI:\t%v\n"+ + " FSType:\t%v\n"+ + " CachingMode:\t%v\n"+ + " ReadOnly:\t%v\n", + d.DiskName, d.DataDiskURI, *d.FSType, *d.CachingMode, *d.ReadOnly) +} + type PersistentVolumeDescriber struct { client.Interface } diff --git a/pkg/security/podsecuritypolicy/util/util.go b/pkg/security/podsecuritypolicy/util/util.go index c2b7e00599e..0b423b948c2 100644 --- a/pkg/security/podsecuritypolicy/util/util.go +++ b/pkg/security/podsecuritypolicy/util/util.go @@ -59,7 +59,8 @@ func GetAllFSTypesAsSet() sets.String { string(extensions.FC), string(extensions.ConfigMap), string(extensions.VsphereVolume), - string(extensions.Quobyte)) + string(extensions.Quobyte), + string(extensions.AzureDisk)) return fstypes } @@ -108,6 +109,8 @@ func GetVolumeFSType(v api.Volume) (extensions.FSType, error) { return extensions.VsphereVolume, nil case v.Quobyte != nil: return extensions.Quobyte, nil + case v.AzureDisk != nil: + return extensions.AzureDisk, nil } return "", fmt.Errorf("unknown volume type for volume: %#v", v) diff --git a/pkg/volume/azure_dd/attacher.go b/pkg/volume/azure_dd/attacher.go new file mode 100644 index 00000000000..0cc15804e74 --- /dev/null +++ b/pkg/volume/azure_dd/attacher.go @@ -0,0 +1,261 @@ +/* +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 azure_dd + +import ( + "fmt" + "os" + "path" + "strconv" + "strings" + "time" + + "github.com/Azure/azure-sdk-for-go/arm/compute" + "github.com/golang/glog" + "k8s.io/kubernetes/pkg/cloudprovider" + "k8s.io/kubernetes/pkg/util/exec" + "k8s.io/kubernetes/pkg/util/keymutex" + "k8s.io/kubernetes/pkg/util/mount" + "k8s.io/kubernetes/pkg/util/wait" + "k8s.io/kubernetes/pkg/volume" + "k8s.io/kubernetes/pkg/volume/util" +) + +type azureDiskAttacher struct { + host volume.VolumeHost + azureProvider azureCloudProvider +} + +var _ volume.Attacher = &azureDiskAttacher{} + +var _ volume.AttachableVolumePlugin = &azureDataDiskPlugin{} + +const ( + checkSleepDuration = time.Second +) + +// acquire lock to get an lun number +var getLunMutex = keymutex.NewKeyMutex() + +// NewAttacher initializes an Attacher +func (plugin *azureDataDiskPlugin) NewAttacher() (volume.Attacher, error) { + azure, err := getAzureCloudProvider(plugin.host.GetCloudProvider()) + if err != nil { + glog.V(4).Infof("failed to get azure provider") + return nil, err + } + + return &azureDiskAttacher{ + host: plugin.host, + azureProvider: azure, + }, nil +} + +// Attach attaches a volume.Spec to a Azure VM referenced by hostname, returning the disk's LUN +func (attacher *azureDiskAttacher) Attach(spec *volume.Spec, hostName string) (string, error) { + volumeSource, err := getVolumeSource(spec) + if err != nil { + glog.Warningf("failed to get azure disk spec") + return "", err + } + instanceid, err := attacher.azureProvider.InstanceID(hostName) + if err != nil { + glog.Warningf("failed to get azure instance id") + return "", fmt.Errorf("failed to get azure instance id for host %q", hostName) + } + if ind := strings.LastIndex(instanceid, "/"); ind >= 0 { + instanceid = instanceid[(ind + 1):] + } + + lun, err := attacher.azureProvider.GetDiskLun(volumeSource.DiskName, volumeSource.DataDiskURI, instanceid) + if err == cloudprovider.InstanceNotFound { + // Log error and continue with attach + glog.Warningf( + "Error checking if volume is already attached to current node (%q). Will continue and try attach anyway. err=%v", + instanceid, err) + } + + if err == nil { + // Volume is already attached to node. + glog.V(4).Infof("Attach operation is successful. volume %q is already attached to node %q at lun %d.", volumeSource.DiskName, instanceid, lun) + } else { + getLunMutex.LockKey(instanceid) + defer getLunMutex.UnlockKey(instanceid) + + lun, err = attacher.azureProvider.GetNextDiskLun(instanceid) + if err != nil { + glog.Warningf("no LUN available for instance %q", instanceid) + return "", fmt.Errorf("all LUNs are used, cannot attach volume %q to instance %q", volumeSource.DiskName, instanceid) + } + + err = attacher.azureProvider.AttachDisk(volumeSource.DiskName, volumeSource.DataDiskURI, instanceid, lun, compute.CachingTypes(*volumeSource.CachingMode)) + if err == nil { + glog.V(4).Infof("Attach operation successful: volume %q attached to node %q.", volumeSource.DataDiskURI, instanceid) + } else { + glog.V(2).Infof("Attach volume %q to instance %q failed with %v", volumeSource.DataDiskURI, instanceid, err) + return "", fmt.Errorf("Attach volume %q to instance %q failed with %v", volumeSource.DiskName, instanceid, err) + } + } + + return strconv.Itoa(int(lun)), err +} + +// WaitForAttach runs on the node to detect if the volume (referenced by LUN) is attached. If attached, the device path is returned +func (attacher *azureDiskAttacher) WaitForAttach(spec *volume.Spec, lunStr string, timeout time.Duration) (string, error) { + volumeSource, err := getVolumeSource(spec) + if err != nil { + return "", err + } + + if len(lunStr) == 0 { + return "", fmt.Errorf("WaitForAttach failed for Azure disk %q: lun is empty.", volumeSource.DiskName) + } + + lun, err := strconv.Atoi(lunStr) + if err != nil { + return "", fmt.Errorf("WaitForAttach: wrong lun %q, err: %v", lunStr, err) + } + scsiHostRescan(&osIOHandler{}) + exe := exec.New() + devicePath := "" + + err = wait.Poll(checkSleepDuration, timeout, func() (bool, error) { + glog.V(4).Infof("Checking Azure disk %q(lun %s) is attached.", volumeSource.DiskName, lunStr) + if devicePath, err = findDiskByLun(lun, &osIOHandler{}, exe); err == nil { + glog.V(4).Infof("Successfully found attached Azure disk %q(lun %s, device path %s).", volumeSource.DiskName, lunStr, devicePath) + return true, nil + } else { + //Log error, if any, and continue checking periodically + glog.V(4).Infof("Error Stat Azure disk (%q) is attached: %v", volumeSource.DiskName, err) + return false, nil + } + }) + return devicePath, err +} + +// GetDeviceMountPath finds the volume's mount path on the node +func (attacher *azureDiskAttacher) GetDeviceMountPath(spec *volume.Spec) (string, error) { + volumeSource, err := getVolumeSource(spec) + if err != nil { + return "", err + } + + return makeGlobalPDPath(attacher.host, volumeSource.DiskName), nil +} + +// MountDevice runs mount command on the node to mount the volume +func (attacher *azureDiskAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string) error { + mounter := attacher.host.GetMounter() + notMnt, err := mounter.IsLikelyNotMountPoint(deviceMountPath) + if err != nil { + if os.IsNotExist(err) { + if err := os.MkdirAll(deviceMountPath, 0750); err != nil { + return err + } + notMnt = true + } else { + return err + } + } + + volumeSource, err := getVolumeSource(spec) + if err != nil { + return err + } + + options := []string{} + if spec.ReadOnly { + options = append(options, "ro") + } + if notMnt { + diskMounter := &mount.SafeFormatAndMount{Interface: mounter, Runner: exec.New()} + err = diskMounter.FormatAndMount(devicePath, deviceMountPath, *volumeSource.FSType, options) + if err != nil { + os.Remove(deviceMountPath) + return err + } + } + return nil +} + +type azureDiskDetacher struct { + mounter mount.Interface + azureProvider azureCloudProvider +} + +var _ volume.Detacher = &azureDiskDetacher{} + +// NewDetacher initializes a volume Detacher +func (plugin *azureDataDiskPlugin) NewDetacher() (volume.Detacher, error) { + azure, err := getAzureCloudProvider(plugin.host.GetCloudProvider()) + if err != nil { + return nil, err + } + + return &azureDiskDetacher{ + mounter: plugin.host.GetMounter(), + azureProvider: azure, + }, nil +} + +// Detach detaches disk from Azure VM. +func (detacher *azureDiskDetacher) Detach(diskName string, hostName string) error { + if diskName == "" { + return fmt.Errorf("invalid disk to detach: %q", diskName) + } + instanceid, err := detacher.azureProvider.InstanceID(hostName) + if err != nil { + glog.Warningf("no instance id for host %q, skip detaching", hostName) + return nil + } + if ind := strings.LastIndex(instanceid, "/"); ind >= 0 { + instanceid = instanceid[(ind + 1):] + } + + glog.V(4).Infof("detach %v from host %q", diskName, instanceid) + err = detacher.azureProvider.DetachDiskByName(diskName, "" /* diskURI */, instanceid) + if err != nil { + glog.Errorf("failed to detach azure disk %q, err %v", diskName, err) + } + + return err +} + +// WaitForDetach detects if the disk is detached on the node +func (detacher *azureDiskDetacher) WaitForDetach(devicePath string, timeout time.Duration) error { + return wait.Poll(checkSleepDuration, timeout, func() (bool, error) { + glog.V(4).Infof("Checking device %q is detached.", devicePath) + if pathExists, err := util.PathExists(devicePath); err != nil { + return false, fmt.Errorf("Error checking if device path exists: %v", err) + } else if !pathExists { + return true, nil + } else { + return false, nil + } + }) +} + +// UnmountDevice unmounts the volume on the node +func (detacher *azureDiskDetacher) UnmountDevice(deviceMountPath string) error { + volume := path.Base(deviceMountPath) + if err := util.UnmountPath(deviceMountPath, detacher.mounter); err != nil { + glog.Errorf("Error unmounting %q: %v", volume, err) + return err + } else { + return nil + } +} diff --git a/pkg/volume/azure_dd/azure_dd.go b/pkg/volume/azure_dd/azure_dd.go new file mode 100644 index 00000000000..ad21fa9ae21 --- /dev/null +++ b/pkg/volume/azure_dd/azure_dd.go @@ -0,0 +1,359 @@ +/* +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 azure_dd + +import ( + "fmt" + "os" + "path" + + "github.com/Azure/azure-sdk-for-go/arm/compute" + + "github.com/golang/glog" + + "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/cloudprovider" + "k8s.io/kubernetes/pkg/cloudprovider/providers/azure" + "k8s.io/kubernetes/pkg/types" + "k8s.io/kubernetes/pkg/util/exec" + "k8s.io/kubernetes/pkg/util/keymutex" + "k8s.io/kubernetes/pkg/util/mount" + utilstrings "k8s.io/kubernetes/pkg/util/strings" + "k8s.io/kubernetes/pkg/volume" +) + +// This is the primary entrypoint for volume plugins. +func ProbeVolumePlugins() []volume.VolumePlugin { + return []volume.VolumePlugin{&azureDataDiskPlugin{}} +} + +type azureDataDiskPlugin struct { + host volume.VolumeHost + volumeLocks keymutex.KeyMutex +} + +// Abstract interface to disk operations. +// azure cloud provider should implement it +type azureCloudProvider interface { + // Attaches the disk to the host machine. + AttachDisk(diskName, diskUri, vmName string, lun int32, cachingMode compute.CachingTypes) error + // Detaches the disk, identified by disk name or uri, from the host machine. + DetachDiskByName(diskName, diskUri, vmName string) error + // Get the LUN number of the disk that is attached to the host + GetDiskLun(diskName, diskUri, vmName string) (int32, error) + // Get the next available LUN number to attach a new VHD + GetNextDiskLun(vmName string) (int32, error) + // InstanceID returns the cloud provider ID of the specified instance. + InstanceID(name string) (string, error) +} + +var _ volume.VolumePlugin = &azureDataDiskPlugin{} +var _ volume.PersistentVolumePlugin = &azureDataDiskPlugin{} + +const ( + azureDataDiskPluginName = "kubernetes.io/azure-disk" +) + +func (plugin *azureDataDiskPlugin) Init(host volume.VolumeHost) error { + plugin.host = host + plugin.volumeLocks = keymutex.NewKeyMutex() + return nil +} + +func (plugin *azureDataDiskPlugin) GetPluginName() string { + return azureDataDiskPluginName +} + +func (plugin *azureDataDiskPlugin) GetVolumeName(spec *volume.Spec) (string, error) { + volumeSource, err := getVolumeSource(spec) + if err != nil { + return "", err + } + + return volumeSource.DiskName, nil +} + +func (plugin *azureDataDiskPlugin) CanSupport(spec *volume.Spec) bool { + return (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.AzureDisk != nil) || + (spec.Volume != nil && spec.Volume.AzureDisk != nil) +} + +func (plugin *azureDataDiskPlugin) RequiresRemount() bool { + return false +} + +func (plugin *azureDataDiskPlugin) GetAccessModes() []api.PersistentVolumeAccessMode { + return []api.PersistentVolumeAccessMode{ + api.ReadWriteOnce, + } +} + +func (plugin *azureDataDiskPlugin) NewMounter(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Mounter, error) { + return plugin.newMounterInternal(spec, pod.UID, plugin.host.GetMounter()) +} + +func (plugin *azureDataDiskPlugin) newMounterInternal(spec *volume.Spec, podUID types.UID, mounter mount.Interface) (volume.Mounter, error) { + // azures used directly in a pod have a ReadOnly flag set by the pod author. + // azures used as a PersistentVolume gets the ReadOnly flag indirectly through the persistent-claim volume used to mount the PV + azure, err := getVolumeSource(spec) + if err != nil { + return nil, err + } + + fsType := *azure.FSType + diskName := azure.DiskName + diskUri := azure.DataDiskURI + cachingMode := *azure.CachingMode + return &azureDiskMounter{ + azureDisk: &azureDisk{ + podUID: podUID, + volName: spec.Name(), + diskName: diskName, + diskUri: diskUri, + cachingMode: cachingMode, + mounter: mounter, + plugin: plugin, + }, + fsType: fsType, + readOnly: *azure.ReadOnly, + diskMounter: &mount.SafeFormatAndMount{Interface: plugin.host.GetMounter(), Runner: exec.New()}}, nil +} + +func (plugin *azureDataDiskPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) { + return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter()) +} + +func (plugin *azureDataDiskPlugin) newUnmounterInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Unmounter, error) { + return &azureDiskUnmounter{ + &azureDisk{ + podUID: podUID, + volName: volName, + mounter: mounter, + plugin: plugin, + }, + }, nil +} + +func (plugin *azureDataDiskPlugin) ConstructVolumeSpec(volName, mountPath string) (*volume.Spec, error) { + mounter := plugin.host.GetMounter() + pluginDir := plugin.host.GetPluginDir(plugin.GetPluginName()) + sourceName, err := mounter.GetDeviceNameFromMount(mountPath, pluginDir) + if err != nil { + return nil, err + } + azVolume := &api.Volume{ + Name: volName, + VolumeSource: api.VolumeSource{ + AzureDisk: &api.AzureDiskVolumeSource{ + DiskName: sourceName, + }, + }, + } + return volume.NewSpecFromVolume(azVolume), nil +} + +func (plugin *azureDataDiskPlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) { + mounter := plugin.host.GetMounter() + return mount.GetMountRefs(mounter, deviceMountPath) +} + +type azureDisk struct { + volName string + podUID types.UID + diskName string + diskUri string + cachingMode api.AzureDataDiskCachingMode + mounter mount.Interface + plugin *azureDataDiskPlugin + volume.MetricsNil +} + +type azureDiskMounter struct { + *azureDisk + // Filesystem type, optional. + fsType string + // Specifies whether the disk will be attached as read-only. + readOnly bool + // diskMounter provides the interface that is used to mount the actual block device. + diskMounter *mount.SafeFormatAndMount +} + +var _ volume.Mounter = &azureDiskMounter{} + +func (b *azureDiskMounter) GetAttributes() volume.Attributes { + return volume.Attributes{ + ReadOnly: b.readOnly, + Managed: !b.readOnly, + SupportsSELinux: true, + } +} + +// SetUp attaches the disk and bind mounts to the volume path. +func (b *azureDiskMounter) SetUp(fsGroup *int64) error { + return b.SetUpAt(b.GetPath(), fsGroup) +} + +// SetUpAt attaches the disk and bind mounts to the volume path. +func (b *azureDiskMounter) SetUpAt(dir string, fsGroup *int64) error { + b.plugin.volumeLocks.LockKey(b.diskName) + defer b.plugin.volumeLocks.UnlockKey(b.diskName) + + // TODO: handle failed mounts here. + notMnt, err := b.mounter.IsLikelyNotMountPoint(dir) + glog.V(4).Infof("DataDisk set up: %s %v %v", dir, !notMnt, err) + if err != nil && !os.IsNotExist(err) { + glog.Errorf("IsLikelyNotMountPoint failed: %v", err) + return err + } + if !notMnt { + glog.V(4).Infof("%s is a mount point", dir) + return nil + } + + globalPDPath := makeGlobalPDPath(b.plugin.host, b.diskName) + + if err := os.MkdirAll(dir, 0750); err != nil { + glog.V(4).Infof("Could not create directory %s: %v", dir, err) + return err + } + + // Perform a bind mount to the full path to allow duplicate mounts of the same PD. + options := []string{"bind"} + if b.readOnly { + options = append(options, "ro") + } + err = b.mounter.Mount(globalPDPath, dir, "", options) + if err != nil { + notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir) + if mntErr != nil { + glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr) + return err + } + if !notMnt { + if mntErr = b.mounter.Unmount(dir); mntErr != nil { + glog.Errorf("Failed to unmount: %v", mntErr) + return err + } + notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir) + if mntErr != nil { + glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr) + return err + } + if !notMnt { + // This is very odd, we don't expect it. We'll try again next sync loop. + glog.Errorf("%s is still mounted, despite call to unmount(). Will try again next sync loop.", dir) + return err + } + } + os.Remove(dir) + return err + } + + if !b.readOnly { + volume.SetVolumeOwnership(b, fsGroup) + } + glog.V(3).Infof("Azure disk volume %s mounted to %s", b.diskName, dir) + return nil +} + +func makeGlobalPDPath(host volume.VolumeHost, volume string) string { + return path.Join(host.GetPluginDir(azureDataDiskPluginName), "mounts", volume) +} + +func (azure *azureDisk) GetPath() string { + name := azureDataDiskPluginName + return azure.plugin.host.GetPodVolumeDir(azure.podUID, utilstrings.EscapeQualifiedNameForDisk(name), azure.volName) +} + +type azureDiskUnmounter struct { + *azureDisk +} + +var _ volume.Unmounter = &azureDiskUnmounter{} + +// Unmounts the bind mount, and detaches the disk only if the PD +// resource was the last reference to that disk on the kubelet. +func (c *azureDiskUnmounter) TearDown() error { + return c.TearDownAt(c.GetPath()) +} + +// Unmounts the bind mount, and detaches the disk only if the PD +// resource was the last reference to that disk on the kubelet. +func (c *azureDiskUnmounter) TearDownAt(dir string) error { + notMnt, err := c.mounter.IsLikelyNotMountPoint(dir) + if err != nil { + glog.Errorf("Error checking if mountpoint %s: %v", dir, err) + return err + } + if notMnt { + glog.V(2).Info("Not mountpoint, deleting") + return os.Remove(dir) + } + // lock the volume (and thus wait for any concurrrent SetUpAt to finish) + c.plugin.volumeLocks.LockKey(c.diskName) + defer c.plugin.volumeLocks.UnlockKey(c.diskName) + refs, err := mount.GetMountRefs(c.mounter, dir) + if err != nil { + glog.Errorf("Error getting mountrefs for %s: %v", dir, err) + return err + } + if len(refs) == 0 { + glog.Errorf("Did not find pod-mount for %s during tear down", dir) + return fmt.Errorf("%s is not mounted", dir) + } + c.diskName = path.Base(refs[0]) + glog.V(4).Infof("Found volume %s mounted to %s", c.diskName, dir) + + // Unmount the bind-mount inside this pod + if err := c.mounter.Unmount(dir); err != nil { + glog.Errorf("Error unmounting dir %s %v", dir, err) + return err + } + notMnt, mntErr := c.mounter.IsLikelyNotMountPoint(dir) + if mntErr != nil { + glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr) + return err + } + if notMnt { + if err := os.Remove(dir); err != nil { + glog.Errorf("Error removing mountpoint %s %v", dir, err) + return err + } + } + return nil +} + +func getVolumeSource(spec *volume.Spec) (*api.AzureDiskVolumeSource, error) { + if spec.Volume != nil && spec.Volume.AzureDisk != nil { + return spec.Volume.AzureDisk, nil + } + if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.AzureDisk != nil { + return spec.PersistentVolume.Spec.AzureDisk, nil + } + + return nil, fmt.Errorf("Spec does not reference an Azure disk volume type") +} + +// Return cloud provider +func getAzureCloudProvider(cloudProvider cloudprovider.Interface) (azureCloudProvider, error) { + azureCloudProvider, ok := cloudProvider.(*azure.Cloud) + if !ok || azureCloudProvider == nil { + return nil, fmt.Errorf("Failed to get Azure Cloud Provider. GetCloudProvider returned %v instead", cloudProvider) + } + + return azureCloudProvider, nil +} diff --git a/pkg/volume/azure_dd/azure_dd_test.go b/pkg/volume/azure_dd/azure_dd_test.go new file mode 100644 index 00000000000..de8b5ba8e04 --- /dev/null +++ b/pkg/volume/azure_dd/azure_dd_test.go @@ -0,0 +1,169 @@ +/* +Copyright 2015 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 azure_dd + +import ( + "fmt" + "os" + "path" + "testing" + + "github.com/Azure/azure-sdk-for-go/arm/compute" + + "k8s.io/kubernetes/pkg/api" + "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("azure_dd") + if err != nil { + t.Fatalf("can't make a temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + plugMgr := volume.VolumePluginMgr{} + plugMgr.InitPlugins(ProbeVolumePlugins(), volumetest.NewFakeVolumeHost(tmpDir, nil, nil, "" /* rootContext */)) + + plug, err := plugMgr.FindPluginByName(azureDataDiskPluginName) + if err != nil { + t.Errorf("Can't find the plugin by name") + } + if plug.GetPluginName() != azureDataDiskPluginName { + t.Errorf("Wrong name: %s", plug.GetPluginName()) + } + if !plug.CanSupport(&volume.Spec{Volume: &api.Volume{VolumeSource: api.VolumeSource{AzureDisk: &api.AzureDiskVolumeSource{}}}}) { + t.Errorf("Expected true") + } + + if !plug.CanSupport(&volume.Spec{PersistentVolume: &api.PersistentVolume{Spec: api.PersistentVolumeSpec{PersistentVolumeSource: api.PersistentVolumeSource{AzureDisk: &api.AzureDiskVolumeSource{}}}}}) { + t.Errorf("Expected true") + } +} + +const ( + fakeDiskName = "foo" + fakeDiskUri = "https://azure/vhds/bar.vhd" + fakeLun = 2 +) + +type fakeAzureProvider struct { +} + +func (fake *fakeAzureProvider) AttachDisk(diskName, diskUri, vmName string, lun int32, cachingMode compute.CachingTypes) error { + if diskName != fakeDiskName || diskUri != fakeDiskUri || lun != fakeLun { + return fmt.Errorf("wrong disk") + } + return nil + +} + +func (fake *fakeAzureProvider) DetachDiskByName(diskName, diskUri, vmName string) error { + if diskName != fakeDiskName || diskUri != fakeDiskUri { + return fmt.Errorf("wrong disk") + } + return nil +} +func (fake *fakeAzureProvider) GetDiskLun(diskName, diskUri, vmName string) (int32, error) { + return int32(fakeLun), nil +} + +func (fake *fakeAzureProvider) GetNextDiskLun(vmName string) (int32, error) { + return fakeLun, nil +} +func (fake *fakeAzureProvider) InstanceID(name string) (string, error) { + return "localhost", nil +} + +func TestPlugin(t *testing.T) { + tmpDir, err := utiltesting.MkTmpdir("azure_ddTest") + if err != nil { + t.Fatalf("can't make a temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + plugMgr := volume.VolumePluginMgr{} + plugMgr.InitPlugins(ProbeVolumePlugins(), volumetest.NewFakeVolumeHost(tmpDir, nil, nil, "" /* rootContext */)) + + plug, err := plugMgr.FindPluginByName(azureDataDiskPluginName) + if err != nil { + t.Errorf("Can't find the plugin by name") + } + fs := "ext4" + ro := false + caching := api.AzureDataDiskCachingNone + spec := &api.Volume{ + Name: "vol1", + VolumeSource: api.VolumeSource{ + AzureDisk: &api.AzureDiskVolumeSource{ + DiskName: fakeDiskName, + DataDiskURI: fakeDiskUri, + FSType: &fs, + CachingMode: &caching, + ReadOnly: &ro, + }, + }, + } + mounter, err := plug.(*azureDataDiskPlugin).newMounterInternal(volume.NewSpecFromVolume(spec), types.UID("poduid"), &mount.FakeMounter{}) + if err != nil { + t.Errorf("Failed to make a new Mounter: %v", err) + } + if mounter == nil { + t.Errorf("Got a nil Mounter") + } + volPath := path.Join(tmpDir, "pods/poduid/volumes/kubernetes.io~azure-disk/vol1") + path := mounter.GetPath() + if path != volPath { + t.Errorf("Got unexpected path: %s, should be %s", path, volPath) + } + + if err := mounter.SetUp(nil); err != nil { + t.Errorf("Expected success, got: %v", err) + } + if _, err := os.Stat(path); err != nil { + if os.IsNotExist(err) { + t.Errorf("SetUp() failed, volume path not created: %s", path) + } else { + t.Errorf("SetUp() failed: %v", err) + } + } + if _, err := os.Stat(path); err != nil { + if os.IsNotExist(err) { + t.Errorf("SetUp() failed, volume path not created: %s", path) + } else { + t.Errorf("SetUp() failed: %v", err) + } + } + + unmounter, err := plug.(*azureDataDiskPlugin).newUnmounterInternal("vol1", types.UID("poduid"), &mount.FakeMounter{}) + if err != nil { + t.Errorf("Failed to make a new Unmounter: %v", err) + } + if unmounter == nil { + t.Errorf("Got a nil Unmounter") + } + + if err := unmounter.TearDown(); err != nil { + t.Errorf("Expected success, got: %v", err) + } + if _, err := os.Stat(path); err == nil { + t.Errorf("TearDown() failed, volume path still exists: %s", path) + } else if !os.IsNotExist(err) { + t.Errorf("SetUp() failed: %v", err) + } +} diff --git a/pkg/volume/azure_dd/vhd_util.go b/pkg/volume/azure_dd/vhd_util.go new file mode 100644 index 00000000000..083aee6f186 --- /dev/null +++ b/pkg/volume/azure_dd/vhd_util.go @@ -0,0 +1,117 @@ +/* +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 azure_dd + +import ( + "io/ioutil" + "os" + "path" + "regexp" + "strconv" + "strings" + + "github.com/golang/glog" + "k8s.io/kubernetes/pkg/util/exec" +) + +type ioHandler interface { + ReadDir(dirname string) ([]os.FileInfo, error) + WriteFile(filename string, data []byte, perm os.FileMode) error +} + +type osIOHandler struct{} + +func (handler *osIOHandler) ReadDir(dirname string) ([]os.FileInfo, error) { + return ioutil.ReadDir(dirname) +} +func (handler *osIOHandler) WriteFile(filename string, data []byte, perm os.FileMode) error { + return ioutil.WriteFile(filename, data, perm) +} + +// given a LUN find the VHD device path like /dev/sdb +// VHD disks under sysfs are like /sys/bus/scsi/devices/3:0:1:0 +// return empty string if no disk is found +func findDiskByLun(lun int, io ioHandler, exe exec.Interface) (string, error) { + var err error + sys_path := "/sys/bus/scsi/devices" + if dirs, err := io.ReadDir(sys_path); err == nil { + for _, f := range dirs { + name := f.Name() + // look for path like /sys/bus/scsi/devices/3:0:1:0 + arr := strings.Split(name, ":") + if len(arr) < 4 { + continue + } + target, err := strconv.Atoi(arr[0]) + if err != nil { + glog.Errorf("failed to parse target from %v (%v), err %v", arr[0], name, err) + continue + } + + // as observed, targets 0-3 are used by OS disks. Skip them + if target > 3 { + l, err := strconv.Atoi(arr[3]) + if err != nil { + // unknown path format, continue to read the next one + glog.Errorf("failed to parse lun from %v (%v), err %v", arr[3], name, err) + continue + } + if lun == l { + // find the matching LUN + // read vendor and model to ensure it is a VHD disk + vendor := path.Join(sys_path, name, "vendor") + model := path.Join(sys_path, name, "model") + out, err := exe.Command("cat", vendor, model).CombinedOutput() + if err != nil { + glog.Errorf("failed to cat device vendor and model, err: %v", err) + continue + } + matched, err := regexp.MatchString("^MSFT[ ]{0,}\nVIRTUAL DISK[ ]{0,}\n$", strings.ToUpper(string(out))) + if err != nil || !matched { + glog.V(4).Infof("doesn't match VHD, output %v, error %v", string(out), err) + continue + } + // find it! + dir := path.Join(sys_path, name, "block") + dev, err := io.ReadDir(dir) + if err != nil { + glog.Errorf("failed to read %s", dir) + } else { + return "/dev/" + dev[0].Name(), nil + } + } + } + } + } + return "", err +} + +// rescan scsi bus +func scsiHostRescan(io ioHandler) { + scsi_path := "/sys/class/scsi_host/" + if dirs, err := io.ReadDir(scsi_path); err == nil { + for _, f := range dirs { + name := scsi_path + f.Name() + "/scan" + data := []byte("- - -") + if err = io.WriteFile(name, data, 0666); err != nil { + glog.Errorf("failed to rescan scsi host %s", name) + } + } + } else { + glog.Errorf("failed to read %s, err %v", scsi_path, err) + } +} diff --git a/pkg/volume/azure_dd/vhd_util_test.go b/pkg/volume/azure_dd/vhd_util_test.go new file mode 100644 index 00000000000..f1a0b202acd --- /dev/null +++ b/pkg/volume/azure_dd/vhd_util_test.go @@ -0,0 +1,116 @@ +/* +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 azure_dd + +import ( + "fmt" + "os" + "testing" + "time" + + "k8s.io/kubernetes/pkg/util/exec" +) + +type fakeFileInfo struct { + name string +} + +func (fi *fakeFileInfo) Name() string { + return fi.name +} + +func (fi *fakeFileInfo) Size() int64 { + return 0 +} + +func (fi *fakeFileInfo) Mode() os.FileMode { + return 777 +} + +func (fi *fakeFileInfo) ModTime() time.Time { + return time.Now() +} +func (fi *fakeFileInfo) IsDir() bool { + return false +} + +func (fi *fakeFileInfo) Sys() interface{} { + return nil +} + +var ( + lun = 1 + lunStr = "1" + diskPath = "4:0:0:" + lunStr + devName = "sda" +) + +type fakeIOHandler struct{} + +func (handler *fakeIOHandler) ReadDir(dirname string) ([]os.FileInfo, error) { + switch dirname { + case "/sys/bus/scsi/devices": + f1 := &fakeFileInfo{ + name: "3:0:0:1", + } + f2 := &fakeFileInfo{ + name: "4:0:0:0", + } + f3 := &fakeFileInfo{ + name: diskPath, + } + f4 := &fakeFileInfo{ + name: "host1", + } + f5 := &fakeFileInfo{ + name: "target2:0:0", + } + return []os.FileInfo{f1, f2, f3, f4, f5}, nil + case "/sys/bus/scsi/devices/" + diskPath + "/block": + n := &fakeFileInfo{ + name: devName, + } + return []os.FileInfo{n}, nil + } + return nil, fmt.Errorf("bad dir") +} + +func (handler *fakeIOHandler) WriteFile(filename string, data []byte, perm os.FileMode) error { + return nil +} + +func TestIoHandler(t *testing.T) { + var fcmd exec.FakeCmd + fcmd = exec.FakeCmd{ + CombinedOutputScript: []exec.FakeCombinedOutputAction{ + // cat + func() ([]byte, error) { + return []byte("Msft \nVirtual Disk \n"), nil + }, + }, + } + fake := exec.FakeExec{ + CommandScript: []exec.FakeCommandAction{ + func(cmd string, args ...string) exec.Cmd { return exec.InitFakeCmd(&fcmd, cmd, args...) }, + }, + } + disk, err := findDiskByLun(lun, &fakeIOHandler{}, &fake) + // if no disk matches lun, exit + if disk != "/dev/"+devName || err != nil { + t.Errorf("no data disk disk found: disk %v err %v", disk, err) + } +}