updated vendor

This commit is contained in:
2026-06-16 08:02:19 +02:00
parent 2f7f99d3f0
commit 77299d0c64
1283 changed files with 67302 additions and 208958 deletions
+53
View File
@@ -302,6 +302,13 @@ func (in *Device) DeepCopyInto(out *Device) {
*out = new(bool)
**out = **in
}
if in.NodeAllocatableResourceMappings != nil {
in, out := &in.NodeAllocatableResourceMappings, &out.NodeAllocatableResourceMappings
*out = make(map[corev1.ResourceName]NodeAllocatableResourceMapping, len(*in))
for key, val := range *in {
(*out)[key] = *val.DeepCopy()
}
}
return
}
@@ -390,6 +397,26 @@ func (in *DeviceAttribute) DeepCopyInto(out *DeviceAttribute) {
*out = new(string)
**out = **in
}
if in.IntValues != nil {
in, out := &in.IntValues, &out.IntValues
*out = make([]int64, len(*in))
copy(*out, *in)
}
if in.BoolValues != nil {
in, out := &in.BoolValues, &out.BoolValues
*out = make([]bool, len(*in))
copy(*out, *in)
}
if in.StringValues != nil {
in, out := &in.StringValues, &out.StringValues
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.VersionValues != nil {
in, out := &in.VersionValues, &out.VersionValues
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}
@@ -907,6 +934,32 @@ func (in *NetworkDeviceData) DeepCopy() *NetworkDeviceData {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NodeAllocatableResourceMapping) DeepCopyInto(out *NodeAllocatableResourceMapping) {
*out = *in
if in.CapacityKey != nil {
in, out := &in.CapacityKey, &out.CapacityKey
*out = new(QualifiedName)
**out = **in
}
if in.AllocationMultiplier != nil {
in, out := &in.AllocationMultiplier, &out.AllocationMultiplier
x := (*in).DeepCopy()
*out = &x
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeAllocatableResourceMapping.
func (in *NodeAllocatableResourceMapping) DeepCopy() *NodeAllocatableResourceMapping {
if in == nil {
return nil
}
out := new(NodeAllocatableResourceMapping)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OpaqueDeviceConfiguration) DeepCopyInto(out *OpaqueDeviceConfiguration) {
*out = *in