Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 660 for typeData (0.31 sec)

  1. pkg/kube/adapter.go

    }
    
    func AdmissionReviewKubeToAdapter(object runtime.Object) (*AdmissionReview, error) {
    	var typeMeta metav1.TypeMeta
    	var req *AdmissionRequest
    	var resp *AdmissionResponse
    	switch obj := object.(type) {
    	case *kubeApiAdmissionv1beta1.AdmissionReview:
    		typeMeta = obj.TypeMeta
    		arv1beta1Response := obj.Response
    		arv1beta1Request := obj.Request
    		if arv1beta1Response != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. pkg/apis/storage/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CSIDriver) DeepCopyInto(out *CSIDriver) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    // safe to use from within all versions of every API object.
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    // like this:
    //
    //	type MyAwesomeAPIObject struct {
    //	     runtime.TypeMeta    `json:",inline"`
    //	     ... // other fields
    //	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/testing/types.go

    type Simple struct {
    	metav1.TypeMeta   `json:",inline"`
    	metav1.ObjectMeta `json:"metadata"`
    	// +optional
    	Other string `json:"other,omitempty"`
    	// +optional
    	Labels map[string]string `json:"labels,omitempty"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    type SimpleRoot struct {
    	metav1.TypeMeta   `json:",inline"`
    	metav1.ObjectMeta `json:"metadata"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *APIGroup) DeepCopyInto(out *APIGroup) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Versions != nil {
    		in, out := &in.Versions, &out.Versions
    		*out = make([]GroupVersionForDiscovery, len(*in))
    		copy(*out, *in)
    	}
    	out.PreferredVersion = in.PreferredVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/initconfiguration_test.go

    			cfg: kubeadmapiv1.InitConfiguration{
    				TypeMeta: metav1.TypeMeta{
    					APIVersion: kubeadmapiv1.SchemeGroupVersion.String(),
    					Kind:       constants.InitConfigurationKind,
    				},
    			},
    			expectedTaintCnt: 1,
    		},
    		{
    			desc: "Uninitialized taints field produces expected taints",
    			cfg: kubeadmapiv1.InitConfiguration{
    				TypeMeta: metav1.TypeMeta{
    					APIVersion: kubeadmapiv1.SchemeGroupVersion.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 09:17:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CSIDriver) DeepCopyInto(out *CSIDriver) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1alpha1/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *IPAddress) DeepCopyInto(out *IPAddress) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAddress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. pkg/test/util/yml/parts.go

    	cfgs := SplitString(content)
    	result := map[string]string{}
    	for _, cfg := range cfgs {
    		var typeMeta metav1.TypeMeta
    		if e := yaml.Unmarshal([]byte(cfg), &typeMeta); e != nil {
    			// Ignore invalid parts. This most commonly happens when it's empty or contains only comments.
    			continue
    		}
    		result[typeMeta.Kind] = JoinString(result[typeMeta.Kind], cfg)
    	}
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/output/types.go

    type BootstrapToken struct {
    	metav1.TypeMeta
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta
    
    	Images []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top