Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for TestOptions (0.14 sec)

  1. pkg/registry/core/service/storage/storage.go

    		ResetFieldsStrategy: svcreg.Strategy,
    
    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{
    		RESTOptions: optsGetter,
    		AttrFunc:    svcreg.GetAttrs,
    	}
    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, nil, err
    	}
    
    	statusStore := *store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	structuralSchemaGK    schema.GroupKind
    	preserveUnknownFields bool
    }
    
    func (t crdConversionRESTOptionsGetter) GetRESTOptions(resource schema.GroupResource) (generic.RESTOptions, error) {
    	ret, err := t.RESTOptionsGetter.GetRESTOptions(resource)
    	if err == nil {
    		d := schemaCoercingDecoder{delegate: ret.StorageConfig.Codec, validator: unstructuredSchemaCoercer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage_test.go

    	etcdStorage, server := registrytest.NewEtcdStorage(t, "")
    	restOptions := generic.RESTOptions{
    		StorageConfig:           etcdStorage.ForResource(schema.GroupResource{Resource: "services"}),
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top