forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
834 additions
and
227 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
// +build !ignore_autogenerated | ||
|
||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
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. | ||
*/ | ||
|
||
// This file was autogenerated by deepcopy-gen. Do not edit it manually! | ||
|
||
package meta | ||
|
||
import ( | ||
unversioned "k8s.io/kubernetes/pkg/api/unversioned" | ||
conversion "k8s.io/kubernetes/pkg/conversion" | ||
runtime "k8s.io/kubernetes/pkg/runtime" | ||
) | ||
|
||
func DeepCopy_meta_DefaultRESTMapper(in DefaultRESTMapper, out *DefaultRESTMapper, c *conversion.Cloner) error { | ||
if in.defaultGroupVersions != nil { | ||
in, out := in.defaultGroupVersions, &out.defaultGroupVersions | ||
*out = make([]unversioned.GroupVersion, len(in)) | ||
for i := range in { | ||
if err := unversioned.DeepCopy_unversioned_GroupVersion(in[i], &(*out)[i], c); err != nil { | ||
return err | ||
} | ||
} | ||
} else { | ||
out.defaultGroupVersions = nil | ||
} | ||
if in.resourceToKind != nil { | ||
in, out := in.resourceToKind, &out.resourceToKind | ||
*out = make(map[unversioned.GroupVersionResource]unversioned.GroupVersionKind) | ||
for range in { | ||
// FIXME: Copying unassignable keys unsupported unversioned.GroupVersionResource | ||
} | ||
} else { | ||
out.resourceToKind = nil | ||
} | ||
if in.kindToPluralResource != nil { | ||
in, out := in.kindToPluralResource, &out.kindToPluralResource | ||
*out = make(map[unversioned.GroupVersionKind]unversioned.GroupVersionResource) | ||
for range in { | ||
// FIXME: Copying unassignable keys unsupported unversioned.GroupVersionKind | ||
} | ||
} else { | ||
out.kindToPluralResource = nil | ||
} | ||
if in.kindToScope != nil { | ||
in, out := in.kindToScope, &out.kindToScope | ||
*out = make(map[unversioned.GroupVersionKind]RESTScope) | ||
for range in { | ||
// FIXME: Copying unassignable keys unsupported unversioned.GroupVersionKind | ||
} | ||
} else { | ||
out.kindToScope = nil | ||
} | ||
if in.singularToPlural != nil { | ||
in, out := in.singularToPlural, &out.singularToPlural | ||
*out = make(map[unversioned.GroupVersionResource]unversioned.GroupVersionResource) | ||
for range in { | ||
// FIXME: Copying unassignable keys unsupported unversioned.GroupVersionResource | ||
} | ||
} else { | ||
out.singularToPlural = nil | ||
} | ||
if in.pluralToSingular != nil { | ||
in, out := in.pluralToSingular, &out.pluralToSingular | ||
*out = make(map[unversioned.GroupVersionResource]unversioned.GroupVersionResource) | ||
for range in { | ||
// FIXME: Copying unassignable keys unsupported unversioned.GroupVersionResource | ||
} | ||
} else { | ||
out.pluralToSingular = nil | ||
} | ||
if newVal, err := c.DeepCopy(in.interfacesFunc); err != nil { | ||
return err | ||
} else { | ||
out.interfacesFunc = newVal.(VersionInterfacesFunc) | ||
} | ||
if in.aliasToResource != nil { | ||
in, out := in.aliasToResource, &out.aliasToResource | ||
*out = make(map[string][]string) | ||
for key, val := range in { | ||
if newVal, err := c.DeepCopy(val); err != nil { | ||
return err | ||
} else { | ||
(*out)[key] = newVal.([]string) | ||
} | ||
} | ||
} else { | ||
out.aliasToResource = nil | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_meta_RESTMapping(in RESTMapping, out *RESTMapping, c *conversion.Cloner) error { | ||
out.Resource = in.Resource | ||
if err := unversioned.DeepCopy_unversioned_GroupVersionKind(in.GroupVersionKind, &out.GroupVersionKind, c); err != nil { | ||
return err | ||
} | ||
if newVal, err := c.DeepCopy(in.Scope); err != nil { | ||
return err | ||
} else { | ||
out.Scope = newVal.(RESTScope) | ||
} | ||
if newVal, err := c.DeepCopy(in.ObjectConvertor); err != nil { | ||
return err | ||
} else { | ||
out.ObjectConvertor = newVal.(runtime.ObjectConvertor) | ||
} | ||
if newVal, err := c.DeepCopy(in.MetadataAccessor); err != nil { | ||
return err | ||
} else { | ||
out.MetadataAccessor = newVal.(MetadataAccessor) | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_meta_VersionInterfaces(in VersionInterfaces, out *VersionInterfaces, c *conversion.Cloner) error { | ||
if newVal, err := c.DeepCopy(in.ObjectConvertor); err != nil { | ||
return err | ||
} else { | ||
out.ObjectConvertor = newVal.(runtime.ObjectConvertor) | ||
} | ||
if newVal, err := c.DeepCopy(in.MetadataAccessor); err != nil { | ||
return err | ||
} else { | ||
out.MetadataAccessor = newVal.(MetadataAccessor) | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// +build !ignore_autogenerated | ||
|
||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
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. | ||
*/ | ||
|
||
// This file was autogenerated by deepcopy-gen. Do not edit it manually! | ||
|
||
package resource | ||
|
||
import ( | ||
conversion "k8s.io/kubernetes/pkg/conversion" | ||
inf "speter.net/go/exp/math/dec/inf" | ||
) | ||
|
||
func DeepCopy_resource_Quantity(in Quantity, out *Quantity, c *conversion.Cloner) error { | ||
if in.Amount != nil { | ||
in, out := in.Amount, &out.Amount | ||
*out = new(inf.Dec) | ||
if newVal, err := c.DeepCopy(*in); err != nil { | ||
return err | ||
} else { | ||
**out = newVal.(inf.Dec) | ||
} | ||
} else { | ||
out.Amount = nil | ||
} | ||
out.Format = in.Format | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// +build !ignore_autogenerated | ||
|
||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
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. | ||
*/ | ||
|
||
// This file was autogenerated by deepcopy-gen. Do not edit it manually! | ||
|
||
package unversioned | ||
|
||
import ( | ||
conversion "k8s.io/kubernetes/pkg/conversion" | ||
time "time" | ||
) | ||
|
||
func DeepCopy_unversioned_GroupKind(in GroupKind, out *GroupKind, c *conversion.Cloner) error { | ||
out.Group = in.Group | ||
out.Kind = in.Kind | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_GroupResource(in GroupResource, out *GroupResource, c *conversion.Cloner) error { | ||
out.Group = in.Group | ||
out.Resource = in.Resource | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_GroupVersion(in GroupVersion, out *GroupVersion, c *conversion.Cloner) error { | ||
out.Group = in.Group | ||
out.Version = in.Version | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_GroupVersionKind(in GroupVersionKind, out *GroupVersionKind, c *conversion.Cloner) error { | ||
out.Group = in.Group | ||
out.Version = in.Version | ||
out.Kind = in.Kind | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_GroupVersionResource(in GroupVersionResource, out *GroupVersionResource, c *conversion.Cloner) error { | ||
out.Group = in.Group | ||
out.Version = in.Version | ||
out.Resource = in.Resource | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_ListMeta(in ListMeta, out *ListMeta, c *conversion.Cloner) error { | ||
out.SelfLink = in.SelfLink | ||
out.ResourceVersion = in.ResourceVersion | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_Time(in Time, out *Time, c *conversion.Cloner) error { | ||
if newVal, err := c.DeepCopy(in.Time); err != nil { | ||
return err | ||
} else { | ||
out.Time = newVal.(time.Time) | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_TypeMeta(in TypeMeta, out *TypeMeta, c *conversion.Cloner) error { | ||
out.Kind = in.Kind | ||
out.APIVersion = in.APIVersion | ||
return nil | ||
} |
Oops, something went wrong.