...
1
2
3
4
19
20
21
22 package testing
23
24 import (
25 runtime "k8s.io/apimachinery/pkg/runtime"
26 )
27
28
29 func (in *ExternalNamespacedType) DeepCopyInto(out *ExternalNamespacedType) {
30 *out = *in
31 return
32 }
33
34
35 func (in *ExternalNamespacedType) DeepCopy() *ExternalNamespacedType {
36 if in == nil {
37 return nil
38 }
39 out := new(ExternalNamespacedType)
40 in.DeepCopyInto(out)
41 return out
42 }
43
44
45 func (in *ExternalNamespacedType) DeepCopyObject() runtime.Object {
46 if c := in.DeepCopy(); c != nil {
47 return c
48 }
49 return nil
50 }
51
52
53 func (in *ExternalNamespacedType2) DeepCopyInto(out *ExternalNamespacedType2) {
54 *out = *in
55 return
56 }
57
58
59 func (in *ExternalNamespacedType2) DeepCopy() *ExternalNamespacedType2 {
60 if in == nil {
61 return nil
62 }
63 out := new(ExternalNamespacedType2)
64 in.DeepCopyInto(out)
65 return out
66 }
67
68
69 func (in *ExternalNamespacedType2) DeepCopyObject() runtime.Object {
70 if c := in.DeepCopy(); c != nil {
71 return c
72 }
73 return nil
74 }
75
76
77 func (in *ExternalType) DeepCopyInto(out *ExternalType) {
78 *out = *in
79 return
80 }
81
82
83 func (in *ExternalType) DeepCopy() *ExternalType {
84 if in == nil {
85 return nil
86 }
87 out := new(ExternalType)
88 in.DeepCopyInto(out)
89 return out
90 }
91
92
93 func (in *ExternalType) DeepCopyObject() runtime.Object {
94 if c := in.DeepCopy(); c != nil {
95 return c
96 }
97 return nil
98 }
99
100
101 func (in *ExternalType2) DeepCopyInto(out *ExternalType2) {
102 *out = *in
103 return
104 }
105
106
107 func (in *ExternalType2) DeepCopy() *ExternalType2 {
108 if in == nil {
109 return nil
110 }
111 out := new(ExternalType2)
112 in.DeepCopyInto(out)
113 return out
114 }
115
116
117 func (in *ExternalType2) DeepCopyObject() runtime.Object {
118 if c := in.DeepCopy(); c != nil {
119 return c
120 }
121 return nil
122 }
123
124
125 func (in *InternalNamespacedType) DeepCopyInto(out *InternalNamespacedType) {
126 *out = *in
127 return
128 }
129
130
131 func (in *InternalNamespacedType) DeepCopy() *InternalNamespacedType {
132 if in == nil {
133 return nil
134 }
135 out := new(InternalNamespacedType)
136 in.DeepCopyInto(out)
137 return out
138 }
139
140
141 func (in *InternalNamespacedType) DeepCopyObject() runtime.Object {
142 if c := in.DeepCopy(); c != nil {
143 return c
144 }
145 return nil
146 }
147
148
149 func (in *InternalType) DeepCopyInto(out *InternalType) {
150 *out = *in
151 return
152 }
153
154
155 func (in *InternalType) DeepCopy() *InternalType {
156 if in == nil {
157 return nil
158 }
159 out := new(InternalType)
160 in.DeepCopyInto(out)
161 return out
162 }
163
164
165 func (in *InternalType) DeepCopyObject() runtime.Object {
166 if c := in.DeepCopy(); c != nil {
167 return c
168 }
169 return nil
170 }
171
View as plain text