sigs.k8s.io/kueue@v0.6.2/apis/visibility/v1alpha1/zz_generated.deepcopy.go (about) 1 //go:build !ignore_autogenerated 2 3 /* 4 Copyright The Kubernetes Authors. 5 6 Licensed under the Apache License, Version 2.0 (the "License"); 7 you may not use this file except in compliance with the License. 8 You may obtain a copy of the License at 9 10 http://www.apache.org/licenses/LICENSE-2.0 11 12 Unless required by applicable law or agreed to in writing, software 13 distributed under the License is distributed on an "AS IS" BASIS, 14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 See the License for the specific language governing permissions and 16 limitations under the License. 17 */ 18 19 // Code generated by controller-gen. DO NOT EDIT. 20 21 package v1alpha1 22 23 import ( 24 "k8s.io/apimachinery/pkg/runtime" 25 ) 26 27 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 28 func (in *ClusterQueue) DeepCopyInto(out *ClusterQueue) { 29 *out = *in 30 out.TypeMeta = in.TypeMeta 31 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 32 in.Summary.DeepCopyInto(&out.Summary) 33 } 34 35 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterQueue. 36 func (in *ClusterQueue) DeepCopy() *ClusterQueue { 37 if in == nil { 38 return nil 39 } 40 out := new(ClusterQueue) 41 in.DeepCopyInto(out) 42 return out 43 } 44 45 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 46 func (in *ClusterQueue) DeepCopyObject() runtime.Object { 47 if c := in.DeepCopy(); c != nil { 48 return c 49 } 50 return nil 51 } 52 53 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 54 func (in *ClusterQueueList) DeepCopyInto(out *ClusterQueueList) { 55 *out = *in 56 out.TypeMeta = in.TypeMeta 57 in.ListMeta.DeepCopyInto(&out.ListMeta) 58 if in.Items != nil { 59 in, out := &in.Items, &out.Items 60 *out = make([]ClusterQueue, len(*in)) 61 for i := range *in { 62 (*in)[i].DeepCopyInto(&(*out)[i]) 63 } 64 } 65 } 66 67 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterQueueList. 68 func (in *ClusterQueueList) DeepCopy() *ClusterQueueList { 69 if in == nil { 70 return nil 71 } 72 out := new(ClusterQueueList) 73 in.DeepCopyInto(out) 74 return out 75 } 76 77 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 78 func (in *ClusterQueueList) DeepCopyObject() runtime.Object { 79 if c := in.DeepCopy(); c != nil { 80 return c 81 } 82 return nil 83 } 84 85 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 86 func (in *LocalQueue) DeepCopyInto(out *LocalQueue) { 87 *out = *in 88 out.TypeMeta = in.TypeMeta 89 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 90 in.Summary.DeepCopyInto(&out.Summary) 91 } 92 93 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalQueue. 94 func (in *LocalQueue) DeepCopy() *LocalQueue { 95 if in == nil { 96 return nil 97 } 98 out := new(LocalQueue) 99 in.DeepCopyInto(out) 100 return out 101 } 102 103 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 104 func (in *LocalQueue) DeepCopyObject() runtime.Object { 105 if c := in.DeepCopy(); c != nil { 106 return c 107 } 108 return nil 109 } 110 111 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 112 func (in *LocalQueueList) DeepCopyInto(out *LocalQueueList) { 113 *out = *in 114 out.TypeMeta = in.TypeMeta 115 in.ListMeta.DeepCopyInto(&out.ListMeta) 116 if in.Items != nil { 117 in, out := &in.Items, &out.Items 118 *out = make([]LocalQueue, len(*in)) 119 for i := range *in { 120 (*in)[i].DeepCopyInto(&(*out)[i]) 121 } 122 } 123 } 124 125 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalQueueList. 126 func (in *LocalQueueList) DeepCopy() *LocalQueueList { 127 if in == nil { 128 return nil 129 } 130 out := new(LocalQueueList) 131 in.DeepCopyInto(out) 132 return out 133 } 134 135 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 136 func (in *LocalQueueList) DeepCopyObject() runtime.Object { 137 if c := in.DeepCopy(); c != nil { 138 return c 139 } 140 return nil 141 } 142 143 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 144 func (in *PendingWorkload) DeepCopyInto(out *PendingWorkload) { 145 *out = *in 146 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 147 } 148 149 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PendingWorkload. 150 func (in *PendingWorkload) DeepCopy() *PendingWorkload { 151 if in == nil { 152 return nil 153 } 154 out := new(PendingWorkload) 155 in.DeepCopyInto(out) 156 return out 157 } 158 159 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 160 func (in *PendingWorkloadOptions) DeepCopyInto(out *PendingWorkloadOptions) { 161 *out = *in 162 out.TypeMeta = in.TypeMeta 163 } 164 165 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PendingWorkloadOptions. 166 func (in *PendingWorkloadOptions) DeepCopy() *PendingWorkloadOptions { 167 if in == nil { 168 return nil 169 } 170 out := new(PendingWorkloadOptions) 171 in.DeepCopyInto(out) 172 return out 173 } 174 175 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 176 func (in *PendingWorkloadOptions) DeepCopyObject() runtime.Object { 177 if c := in.DeepCopy(); c != nil { 178 return c 179 } 180 return nil 181 } 182 183 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 184 func (in *PendingWorkloadsSummary) DeepCopyInto(out *PendingWorkloadsSummary) { 185 *out = *in 186 out.TypeMeta = in.TypeMeta 187 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 188 if in.Items != nil { 189 in, out := &in.Items, &out.Items 190 *out = make([]PendingWorkload, len(*in)) 191 for i := range *in { 192 (*in)[i].DeepCopyInto(&(*out)[i]) 193 } 194 } 195 } 196 197 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PendingWorkloadsSummary. 198 func (in *PendingWorkloadsSummary) DeepCopy() *PendingWorkloadsSummary { 199 if in == nil { 200 return nil 201 } 202 out := new(PendingWorkloadsSummary) 203 in.DeepCopyInto(out) 204 return out 205 } 206 207 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 208 func (in *PendingWorkloadsSummary) DeepCopyObject() runtime.Object { 209 if c := in.DeepCopy(); c != nil { 210 return c 211 } 212 return nil 213 } 214 215 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 216 func (in *PendingWorkloadsSummaryList) DeepCopyInto(out *PendingWorkloadsSummaryList) { 217 *out = *in 218 out.TypeMeta = in.TypeMeta 219 in.ListMeta.DeepCopyInto(&out.ListMeta) 220 if in.Items != nil { 221 in, out := &in.Items, &out.Items 222 *out = make([]PendingWorkloadsSummary, len(*in)) 223 for i := range *in { 224 (*in)[i].DeepCopyInto(&(*out)[i]) 225 } 226 } 227 } 228 229 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PendingWorkloadsSummaryList. 230 func (in *PendingWorkloadsSummaryList) DeepCopy() *PendingWorkloadsSummaryList { 231 if in == nil { 232 return nil 233 } 234 out := new(PendingWorkloadsSummaryList) 235 in.DeepCopyInto(out) 236 return out 237 } 238 239 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 240 func (in *PendingWorkloadsSummaryList) DeepCopyObject() runtime.Object { 241 if c := in.DeepCopy(); c != nil { 242 return c 243 } 244 return nil 245 }