Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 156 for ListMeta (0.2 sec)

  1. pkg/apis/node/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_RuntimeClassList_To_node_RuntimeClassList(in *v1.RuntimeClassList, out *node.RuntimeClassList, s conversion.Scope) error {
    	out.ListMeta = in.ListMeta
    	out.Items = *(*[]node.RuntimeClass)(unsafe.Pointer(&in.Items))
    	return nil
    }
    
    // Convert_v1_RuntimeClassList_To_node_RuntimeClassList is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/metaonly/zz_generated.deepcopy.go

    func (in *MetadataOnlyObjectList) DeepCopyInto(out *MetadataOnlyObjectList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]MetadataOnlyObject, 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
    - 2.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/rbac/v1/generated.proto

      // +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
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/registry/registrytest/service.go

    	r.mu.Lock()
    	defer r.mu.Unlock()
    
    	ns, _ := genericapirequest.NamespaceFrom(ctx)
    
    	// Copy metadata from internal list into result
    	res := new(api.ServiceList)
    	res.TypeMeta = r.List.TypeMeta
    	res.ListMeta = r.List.ListMeta
    
    	if ns != metav1.NamespaceAll {
    		for _, service := range r.List.Items {
    			if ns == service.Namespace {
    				res.Items = append(res.Items, service)
    			}
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. pkg/apis/scheduling/zz_generated.deepcopy.go

    func (in *PriorityClassList) DeepCopyInto(out *PriorityClassList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]PriorityClass, 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
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *List) DeepCopyInto(out *List) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]runtime.Object, len(*in))
    		for i := range *in {
    			if (*in)[i] != nil {
    				(*out)[i] = (*in)[i].DeepCopyObject()
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/zz_generated.deepcopy.go

    func (in *IstioOperatorList) DeepCopyInto(out *IstioOperatorList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]IstioOperator, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. pkg/apis/certificates/zz_generated.deepcopy.go

    func (in *CertificateSigningRequestList) DeepCopyInto(out *CertificateSigningRequestList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]CertificateSigningRequest, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. pkg/apis/coordination/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)
  10. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top