Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,963 for copyFn (0.16 sec)

  1. pkg/apis/batch/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)
  2. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExecAction) DeepCopyInto(out *ExecAction) {
    	*out = *in
    	if in.Command != nil {
    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecAction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExecAction) DeepCopyInto(out *ExecAction) {
    	*out = *in
    	if in.Command != nil {
    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecAction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

      private ListGenerators() {}
    
      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
        }
      }
    
      public static class BuilderAddListGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CSIDriver) DeepCopyInto(out *CSIDriver) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  6. pkg/apis/authentication/zz_generated.deepcopy.go

    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in ExtraValue) DeepCopyInto(out *ExtraValue) {
    	{
    		in := &in
    		*out = make(ExtraValue, len(*in))
    		copy(*out, *in)
    		return
    	}
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtraValue.
    func (in ExtraValue) DeepCopy() ExtraValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Images.
    func (in *Images) DeepCopy() *Images {
    	if in == nil {
    		return nil
    	}
    	out := new(Images)
    	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: Wed Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/zz_generated.deepcopy.go

    		*out = make([]AuditAnnotation, len(*in))
    		copy(*out, *in)
    	}
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]MatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	if in.Variables != nil {
    		in, out := &in.Variables, &out.Variables
    		*out = make([]Variable, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

        Collections.addAll(all, others);
        return copyOf(all.iterator());
      }
    
      /** ImmutableSet.of API that is friendly to use from JavaScript. */
      @JsMethod(name = "of")
      static <E> ImmutableSet<E> jsOf(E... elements) {
        return copyOf(elements);
      }
    
      @JsMethod
      public static <E> ImmutableSet<E> copyOf(E[] elements) {
        checkNotNull(elements);
        switch (elements.length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailure.java

            }
    
            this.original = original;
            this.stackTrace = ImmutableList.copyOf(stackTrace);
            this.frameRelevance = ImmutableList.copyOf(frameRelevance);
            this.suppressed = ImmutableList.copyOf(suppressed);
            this.causes = ImmutableList.copyOf(causes);
        }
    
        @Override
        public Class<? extends Throwable> getExceptionType() {
            return original.getClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top