Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,552 for Creater (0.49 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    type serializer struct {
    	metaFactory metaFactory
    	creater     runtime.ObjectCreater
    	typer       runtime.ObjectTyper
    	options     options
    }
    
    func NewSerializer(creater runtime.ObjectCreater, typer runtime.ObjectTyper, options ...Option) Serializer {
    	return newSerializer(&defaultMetaFactory{}, creater, typer, options...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    			strict:         true,
    		},
    
    		// missing metadata without into, unstructured creater
    		{
    			data:    []byte("{}"),
    			typer:   &mockTyper{gvk: &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"}},
    			creater: &mockCreater{obj: &unstructured.Unstructured{}},
    
    			expectedGVK: &schema.GroupVersionKind{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	if err != nil {
    		return nil, nil, err
    	}
    	versionedPatchOptions, err := a.group.Creater.New(optionsExternalVersion.WithKind("PatchOptions"))
    	if err != nil {
    		return nil, nil, err
    	}
    	versionedUpdateOptions, err := a.group.Creater.New(optionsExternalVersion.WithKind("UpdateOptions"))
    	if err != nil {
    		return nil, nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    					t.Errorf("expected MissingVersion, got: %v", err)
    				}
    			},
    		},
    		{
    			name:        "creater error",
    			gvk:         &schema.GroupVersionKind{Group: "x", Version: "y", Kind: "z"},
    			metaFactory: stubMetaFactory{gvk: &schema.GroupVersionKind{}},
    			creater:     stubCreater{err: errors.New("test")},
    			expectedObj: nil,
    			expectedGVK: &schema.GroupVersionKind{Group: "x", Version: "y", Kind: "z"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    func NewSerializerWithOptions(meta MetaFactory, creater runtime.ObjectCreater, typer runtime.ObjectTyper, options SerializerOptions) *Serializer {
    	return &Serializer{
    		meta:       meta,
    		creater:    creater,
    		typer:      typer,
    		options:    options,
    		identifier: identifier(options),
    	}
    }
    
    // identifier computes Identifier of Encoder based on the given options.
    func identifier(options SerializerOptions) runtime.Identifier {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    func NewRawSerializer(creater runtime.ObjectCreater, typer runtime.ObjectTyper) *RawSerializer {
    	return &RawSerializer{
    		creater: creater,
    		typer:   typer,
    	}
    }
    
    // RawSerializer encodes and decodes objects without adding a runtime.Unknown wrapper (objects are encoded without identifying
    // type).
    type RawSerializer struct {
    	creater runtime.ObjectCreater
    	typer   runtime.ObjectTyper
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf_test.go

    func TestCacheableObject(t *testing.T) {
    	gvk := schema.GroupVersionKind{Group: "group", Version: "version", Kind: "MockCacheableObject"}
    	creater := &mockCreater{obj: &runtimetesting.MockCacheableObject{}}
    	typer := &mockTyper{gvk: &gvk}
    
    	encoders := []runtime.Encoder{
    		NewSerializer(creater, typer),
    		NewRawSerializer(creater, typer),
    	}
    
    	for _, encoder := range encoders {
    		runtimetesting.CacheableObjectTest(t, encoder)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. hack/verify-spelling.sh

    skipping_file="${KUBE_ROOT}/hack/.spelling_failures"
    failing_packages=$(sed "s| | -e |g" "${skipping_file}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	created, err := t.storage.(rest.Creater).Create(ctx, valid.DeepCopyObject(), rest.ValidateAllObjectFunc, &opts)
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	defer t.delete(ctx, created)
    	createdObjectMeta := t.getObjectMetaOrFail(created)
    	if createdObjectMeta.GetNamespace() != metav1.NamespaceNone {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    // CreateResource returns a function that will handle a resource creation.
    func CreateResource(r rest.Creater, scope *RequestScope, admission admission.Interface) http.HandlerFunc {
    	return createHandler(&namedCreaterAdapter{r}, scope, admission, false)
    }
    
    type namedCreaterAdapter struct {
    	rest.Creater
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top