Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for typeData (0.21 sec)

  1. src/net/http/fcgi/fcgi.go

    	typeAbortRequest    recType = 2
    	typeEndRequest      recType = 3
    	typeParams          recType = 4
    	typeStdin           recType = 5
    	typeStdout          recType = 6
    	typeStderr          recType = 7
    	typeData            recType = 8
    	typeGetValues       recType = 9
    	typeGetValuesResult recType = 10
    	typeUnknownType     recType = 11
    )
    
    // keep the connection between web-server and responder open after request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    	defaultClass1 := &storagev1.StorageClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "default1",
    			Annotations: map[string]string{
    				storageutil.IsDefaultStorageClassAnnotation: "true",
    			},
    		},
    		Provisioner: "default1",
    	}
    	defaultClass2 := &storagev1.StorageClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/test/runtime_unversioned_test.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	typeMeta := metav1.TypeMeta{}
    	if err := json.Unmarshal(encoded, &typeMeta); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if typeMeta.Kind != "Status" {
    		t.Errorf("Kind is not set to \"Status\". Got %v", string(encoded))
    	}
    	if typeMeta.APIVersion != "v1" {
    		t.Errorf("APIVersion is not set to \"v1\". Got %v", string(encoded))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 16:56:29 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/network/defaultingressclass/admission_test.go

    	classWithEmptyDefault := &networkingv1.IngressClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "IngressClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "nondefault2",
    			Annotations: map[string]string{
    				networkingv1.AnnotationIsDefaultIngressClass: "",
    			},
    		},
    	}
    
    	defaultClassWithCreateTime1 := &networkingv1.IngressClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "IngressClass",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // TypeMeta features-- kind, version, etc.
    // TODO: Make this object have easy access to field based accessors and settors for
    // metadata and field mutatation.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +protobuf=true
    // +k8s:openapi-gen=true
    message Unknown {
      optional TypeMeta typeMeta = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top