Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 449 for ListMeta (0.24 sec)

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

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EventList) DeepCopyInto(out *EventList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]Event, 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/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)
  3. 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)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.deepcopy.go

    func (in *MutatingWebhookConfigurationList) DeepCopyInto(out *MutatingWebhookConfigurationList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]MutatingWebhookConfiguration, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1alpha1/generated.pb.go

    	}
    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&ClusterTrustBundleList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *ClusterTrustBundleSpec) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/zz_generated.conversion.go

    	return autoConvert_testapigroup_CarpCondition_To_v1_CarpCondition(in, out, s)
    }
    
    func autoConvert_v1_CarpList_To_testapigroup_CarpList(in *CarpList, out *testapigroup.CarpList, s conversion.Scope) error {
    	out.ListMeta = in.ListMeta
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]testapigroup.Carp, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    	}
    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&CSIStorageCapacityList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *VolumeAttachment) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/conversion.go

    }
    
    func autoConvertv2beta1APIGroupDiscoveryListTov2APIGroupDiscoveryList(in *v2beta1.APIGroupDiscoveryList, out *v2.APIGroupDiscoveryList, s conversion.Scope) error {
    	out.ListMeta = in.ListMeta
    	out.Items = *(*[]v2.APIGroupDiscovery)(unsafe.Pointer(&in.Items))
    	return nil
    }
    
    // Convertv2beta1APIGroupDiscoveryListTov2APIGroupDiscoveryList is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top