Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DeepCopyInto (0.14 sec)

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

    	}
    	out := new(ContainerStateRunning)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ContainerStateTerminated) DeepCopyInto(out *ContainerStateTerminated) {
    	*out = *in
    	in.StartedAt.DeepCopyInto(&out.StartedAt)
    	in.FinishedAt.DeepCopyInto(&out.FinishedAt)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	out := new(ContainerStateRunning)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ContainerStateTerminated) DeepCopyInto(out *ContainerStateTerminated) {
    	*out = *in
    	in.StartedAt.DeepCopyInto(&out.StartedAt)
    	in.FinishedAt.DeepCopyInto(&out.FinishedAt)
    	return
    }
    
    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. pkg/controller/daemon/daemon_controller_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Labels:    template.Labels,
    			Namespace: namespace,
    		},
    	}
    
    	pod.Name = names.SimpleNameGenerator.GenerateName(fmt.Sprintf("%p-", pod))
    
    	template.Spec.DeepCopyInto(&pod.Spec)
    
    	f.podStore.Update(pod)
    	f.podIDMap[pod.Name] = pod
    
    	ds := object.(*apps.DaemonSet)
    	dsKey, _ := controller.KeyFunc(ds)
    	f.expectations.CreationObserved(klog.FromContext(ctx), dsKey)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top