Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 660 for typeData (0.12 sec)

  1. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AvailableUpgrade) DeepCopyInto(out *AvailableUpgrade) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Components != nil {
    		in, out := &in.Components, &out.Components
    		*out = make([]ComponentUpgradePlan, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/defaults_test.go

    			Object: &configv1.InterPodAffinityArgs{
    				TypeMeta: metav1.TypeMeta{
    					Kind:       "InterPodAffinityArgs",
    					APIVersion: "kubescheduler.config.k8s.io/v1",
    				},
    				HardPodAffinityWeight: ptr.To[int32](1),
    			}},
    	},
    	{
    		Name: "NodeAffinity",
    		Args: runtime.RawExtension{Object: &configv1.NodeAffinityArgs{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       "NodeAffinityArgs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/register.go

    // SetGroupVersionKind satisfies the ObjectKind interface for all objects that embed TypeMeta
    func (obj *TypeMeta) SetGroupVersionKind(gvk schema.GroupVersionKind) {
    	obj.APIVersion, obj.Kind = gvk.ToAPIVersionAndKind()
    }
    
    // GroupVersionKind satisfies the ObjectKind interface for all objects that embed TypeMeta
    func (obj *TypeMeta) GroupVersionKind() schema.GroupVersionKind {
    	return schema.FromAPIVersionAndKind(obj.APIVersion, obj.Kind)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 13 15:08:46 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/testing/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Simple) DeepCopyInto(out *Simple) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Labels != nil {
    		in, out := &in.Labels, &out.Labels
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    type ExtensionA struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type ExtensionB struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type ExternalExtensionType struct {
    	runtime.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AvailableUpgrade) DeepCopyInto(out *AvailableUpgrade) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Components != nil {
    		in, out := &in.Components, &out.Components
    		*out = make([]ComponentUpgradePlan, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/sparse_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	uncastDstObj2, err := runtime.Decode(decoder, srcObj2Bytes)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// clear typemeta
    	uncastDstObj1.(*FakeV1Obj).TypeMeta = metav1.TypeMeta{}
    	uncastDstObj2.(*FakeV2DifferentObj).TypeMeta = metav1.TypeMeta{}
    
    	if !equality.Semantic.DeepEqual(srcObj1, uncastDstObj1) {
    		t.Fatal(cmp.Diff(srcObj1, uncastDstObj1))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ClusterRole) DeepCopyInto(out *ClusterRole) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Rules != nil {
    		in, out := &in.Rules, &out.Rules
    		*out = make([]PolicyRule, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EmbeddedTest) DeepCopyInto(out *EmbeddedTest) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Object != nil {
    		out.Object = in.Object.DeepCopyObject()
    	}
    	if in.EmptyObject != nil {
    		out.EmptyObject = in.EmptyObject.DeepCopyObject()
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    			result: nil,
    		},
    		{
    			name:   "simple pod not running but have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top