Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 8,592 for copyFn (0.38 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]MatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingWebhook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *APIServer) DeepCopy() *APIServer {
    	if in == nil {
    		return nil
    	}
    	out := new(APIServer)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Arg) DeepCopyInto(out *Arg) {
    	*out = *in
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIStorageCapacity.
    func (in *CSIStorageCapacity) DeepCopy() *CSIStorageCapacity {
    	if in == nil {
    		return nil
    	}
    	out := new(CSIStorageCapacity)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. tools/docker-copy.sh

      FILE_INFO=$(file "${FILE}" || true)
    
      if [[ "${arch}" != "" && ${COPY_ARCH_RELATED} == 1 ]]; then
        # if other arch files exists, should copy too.
        for ARCH in "amd64" "arm64"; do
          # like file `out/linux_amd64/pilot-discovery`
          # should check  `out/linux_arm64/pilot-discovery` exists then do copy
    
          local FILE_ARCH_RELATED=${FILE/linux_${TARGET_ARCH}/linux_${ARCH}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. pkg/apis/storagemigration/zz_generated.deepcopy.go

    import (
    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *GroupVersionResource) DeepCopyInto(out *GroupVersionResource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupVersionResource.
    func (in *GroupVersionResource) DeepCopy() *GroupVersionResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storagemigration/v1alpha1/zz_generated.deepcopy.go

    import (
    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *GroupVersionResource) DeepCopyInto(out *GroupVersionResource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupVersionResource.
    func (in *GroupVersionResource) DeepCopy() *GroupVersionResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/zz_generated.deepcopy.go

    		in, out := &in.Succeeded, &out.Succeeded
    		*out = make([]types.UID, len(*in))
    		copy(*out, *in)
    	}
    	if in.Failed != nil {
    		in, out := &in.Failed, &out.Failed
    		*out = make([]types.UID, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UncountedTerminatedPods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      public static ImmutableDoubleArray copyOf(double[] values) {
        return values.length == 0
            ? EMPTY
            : new ImmutableDoubleArray(Arrays.copyOf(values, values.length));
      }
    
      /** Returns an immutable array containing the given values, in order. */
      public static ImmutableDoubleArray copyOf(Collection<Double> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

      /** Returns an immutable array containing the given values, in order. */
      public static ImmutableIntArray copyOf(int[] values) {
        return values.length == 0 ? EMPTY : new ImmutableIntArray(Arrays.copyOf(values, values.length));
      }
    
      /** Returns an immutable array containing the given values, in order. */
      public static ImmutableIntArray copyOf(Collection<Integer> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Carp) DeepCopyInto(out *Carp) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Carp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top