Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for Implementation (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/plugin.go

    func Register(plugins *admission.Plugins) {
    	plugins.Register(PluginName, func(configFile io.Reader) (admission.Interface, error) {
    		return NewPlugin(configFile), nil
    	})
    }
    
    // Plugin is an implementation of admission.Interface.
    type Policy = v1.ValidatingAdmissionPolicy
    type PolicyBinding = v1.ValidatingAdmissionPolicyBinding
    type PolicyEvaluator = Validator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pkg/credentialprovider/plugin/plugin.go

    			pluginBinDir: pluginBinDir,
    			args:         provider.Args,
    			envVars:      provider.Env,
    			environ:      os.Environ,
    		},
    	}, nil
    }
    
    // pluginProvider is the plugin-based implementation of the DockerConfigProvider interface.
    type pluginProvider struct {
    	clock clock.Clock
    
    	sync.Mutex
    
    	group singleflight.Group
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/util/filesystem/watcher.go

    type fsnotifyWatcher struct {
    	watcher      *fsnotify.Watcher
    	eventHandler FSEventHandler
    	errorHandler FSErrorHandler
    }
    
    var _ FSWatcher = &fsnotifyWatcher{}
    
    // NewFsnotifyWatcher returns an implementation of FSWatcher that continuously listens for
    // fsnotify events and calls the event handler as soon as an event is received.
    func NewFsnotifyWatcher() FSWatcher {
    	return &fsnotifyWatcher{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/state/state_checkpoint.go

    	// CDIDevices is a map of DriverName --> CDI devices returned by the
    	// GRPC API call NodePrepareResource
    	CDIDevices map[string][]string
    }
    
    // ClaimInfoStateWithoutResourceHandles is an old implementation of the ClaimInfoState
    // TODO: remove in Beta
    type ClaimInfoStateWithoutResourceHandles struct {
    	// Name of the DRA driver
    	DriverName string
    
    	// ClassName is a resource class of the claim
    	ClassName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/certs.go

    			Use:   handler.Name,
    			Short: fmt.Sprintf("Renew the %s", handler.LongName),
    			Long:  fmt.Sprintf(genericCertRenewLongDesc, handler.LongName),
    		}
    		addRenewFlags(cmd, flags)
    		// get the implementation of renewing this certificate
    		renewalFunc := func(handler *renewal.CertificateRenewHandler) func() error {
    			return func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // traversed field paths. It is necessary to build the tree to take advantage of
    // DeepEqual checks performed by lower levels of the object during validation without
    // greatly modifying `kube-openapi`'s implementation.
    //
    // The tree, and all cache storage/scratch space for the validation of a single
    // call to `Validate` is thrown away at the end of the top-level call
    // to `Validate`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager.go

    	GetNodeConfig() NodeConfig
    
    	// Status returns internal Status.
    	Status() Status
    
    	// NewPodContainerManager is a factory method which returns a podContainerManager object
    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. pkg/registry/core/serviceaccount/storage/storage_test.go

    // Currently this getter only panics as the only test case doesn't actually need the getters to function.
    // When more test cases are added, this getter will need extending/replacing to have a real test implementation.
    type panicGetter struct{}
    
    func (f panicGetter) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
    	panic("not implemented")
    }
    
    var _ rest.Getter = panicGetter{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    	clientv3 "go.etcd.io/etcd/client/v3"
    	"k8s.io/apiserver/pkg/storage"
    )
    
    type mockEndpointVersion struct {
    	Endpoint string
    	Version  string
    	Error    error
    }
    
    // MockEtcdClient is a mock implementation of the EtcdClientInterface interface.
    type MockEtcdClient struct {
    	EndpointVersion []mockEndpointVersion
    }
    
    func (m MockEtcdClient) getEndpoints() []string {
    	var endpoints []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top