Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 449 for ListMeta (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/apps/zz_generated.deepcopy.go

    func (in *ControllerRevisionList) DeepCopyInto(out *ControllerRevisionList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]ControllerRevision, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 24.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/zz_generated.deepcopy.go

    func (in *PodSchedulingContextList) DeepCopyInto(out *PodSchedulingContextList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]PodSchedulingContext, 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 14 17:07:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    	}
    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&ClusterRoleBindingList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *ClusterRoleList) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. pkg/apis/batch/v1beta1/zz_generated.conversion.go

    	return autoConvert_batch_CronJob_To_v1beta1_CronJob(in, out, s)
    }
    
    func autoConvert_v1beta1_CronJobList_To_batch_CronJobList(in *v1beta1.CronJobList, out *batch.CronJobList, s conversion.Scope) error {
    	out.ListMeta = in.ListMeta
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]batch.CronJob, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 20:39:47 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top