Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for ListMeta (0.19 sec)

  1. staging/src/k8s.io/api/coordination/v1beta1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *LeaseList) DeepCopyInto(out *LeaseList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]Lease, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExampleList) DeepCopyInto(out *ExampleList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]Example, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. plugin/pkg/admission/namespace/exists/admission_test.go

    	mockClient := &fake.Clientset{}
    	mockClient.AddReactor("list", "namespaces", func(action core.Action) (bool, runtime.Object, error) {
    		namespaceList := &corev1.NamespaceList{
    			ListMeta: metav1.ListMeta{
    				ResourceVersion: fmt.Sprintf("%d", len(namespaces)),
    			},
    		}
    		for i, ns := range namespaces {
    			namespaceList.Items = append(namespaceList.Items, corev1.Namespace{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CarpList) DeepCopyInto(out *CarpList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]Carp, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1/zz_generated.deepcopy.go

    func (in *RuntimeClassList) DeepCopyInto(out *RuntimeClassList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]RuntimeClass, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1beta1/zz_generated.deepcopy.go

    func (in *RuntimeClassList) DeepCopyInto(out *RuntimeClassList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]RuntimeClass, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. pkg/apis/node/zz_generated.deepcopy.go

    func (in *RuntimeClassList) DeepCopyInto(out *RuntimeClassList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]RuntimeClass, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top