Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 206 for NewTest (0.2 sec)

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

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volumes.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volumes.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.PersistentVolume{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/prioritylevelconfiguration/storage/storage.go

    }
    
    // REST implements a RESTStorage for priority level configuration against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against priority level configuration.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:11:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage.go

    )
    
    // REST implements a RESTStorage for pod disruption budgets against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against horizontal pod autoscalers.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. pkg/registry/admissionregistration/validatingadmissionpolicy/storage/storage.go

    	store *genericregistry.Store
    }
    
    var groupResource = admissionregistration.Resource("validatingadmissionpolicies")
    
    // NewREST returns two RESTStorage objects that will work against validatingAdmissionPolicy and its status.
    func NewREST(optsGetter generic.RESTOptionsGetter, authorizer authorizer.Authorizer, resourceResolver resolver.ResourceResolver) (*REST, *StatusREST, error) {
    	r := &REST{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 23:43:34 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volume claims.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volume claims.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. tools/docker.yaml

      base: true
    - name: app_sidecar_base_ubuntu_noble # newest ubuntu
      dockerfile: pkg/test/echo/docker/Dockerfile.app_sidecar_base
      base: true
    - name: app_sidecar_base_ubuntu_bionic # oldest supported ubuntu
      dockerfile: pkg/test/echo/docker/Dockerfile.app_sidecar_base
      base: true
    #  TODO(https://github.com/istio/istio/issues/38224)
    - name: app_sidecar_base_rockylinux_9 # newest RHEL-based
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pkg/registry/node/rest/runtime_class.go

    	storage := map[string]rest.Storage{}
    
    	if resource := "runtimeclasses"; apiResourceConfigSource.ResourceEnabled(nodev1.SchemeGroupVersion.WithResource(resource)) {
    		s, err := runtimeclassstorage.NewREST(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = s
    	}
    
    	return storage, nil
    }
    
    // GroupName is the group name for the storage provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 14:40:26 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	ents       []HeaderField
    	evictCount uint64
    
    	// byName maps a HeaderField name to the unique id of the newest entry with
    	// the same name. See above for a definition of "unique id".
    	byName map[string]uint64
    
    	// byNameValue maps a HeaderField name/value pair to the unique id of the newest
    	// entry with the same name and value. See above for a definition of "unique id".
    	byNameValue map[pairNameValue]uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. pkg/registry/certificates/certificates/storage/storage.go

    )
    
    // REST implements a RESTStorage for CertificateSigningRequest.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a registry which will store CertificateSigningRequest in the given helper.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, *ApprovalREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. pkg/registry/policy/rest/storage_policy.go

    	if resource := "poddisruptionbudgets"; apiResourceConfigSource.ResourceEnabled(policyapiv1.SchemeGroupVersion.WithResource(resource)) {
    		poddisruptionbudgetStorage, poddisruptionbudgetStatusStorage, err := poddisruptionbudgetstore.NewREST(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = poddisruptionbudgetStorage
    		storage[resource+"/status"] = poddisruptionbudgetStatusStorage
    	}
    
    	return storage, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 02:24:26 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top