Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 145 for Implementation (0.34 sec)

  1. pkg/volume/emptydir/empty_dir.go

    		MetricsProvider: volume.NewMetricsDu(getPath(pod.UID, spec.Name(), plugin.host)),
    	}, nil
    }
    
    func (plugin *emptyDirPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	// Inject real implementations here, test through the internal function.
    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()), &realMountDetector{plugin.host.GetMounter(plugin.GetPluginName())})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// This object must be a pointer type for use with Codec.DecodeInto([]byte, runtime.Object)
    	New() runtime.Object
    
    	// Update finds a resource in the storage and updates it. Some implementations
    	// may allow updates creates the object - they should set the created boolean
    	// to true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/metrics.go

    	// excluding the time for image pulling. This is an internal and temporary metric required because of the existing limitations of the
    	// existing networking subsystem and CRI/CNI implementations that will be solved by https://github.com/containernetworking/cni/issues/859
    	// The metric represents the latency observed by an user to run workloads in a new node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/configset.go

    }
    
    // fromConfigMap is an utility function, which will load the value of a key of a config map and use h.FromDocumentMap() to perform the parsing
    // This is an utility func. Used by the component config support implementations. Don't use it outside of that context.
    func (h *handler) fromConfigMap(client clientset.Interface, cmName, cmKey string, mustExist bool) (kubeadmapi.ComponentConfig, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/generated.proto

      // validity duration so a client must check the delta between the notBefore and
      // and notAfter fields in the issued certificate to determine the actual duration.
      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
      // honor this field as long as the requested duration is not greater than the
      // maximum duration they will honor per the --cluster-signing-duration CLI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/types.go

    	//   matches /foo/bar/baz, but does not match /foo/barbaz).
    	// * ImplementationSpecific: Interpretation of the Path matching is up to
    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	PathType *PathType `json:"pathType" protobuf:"bytes,3,opt,name=pathType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    type ExampleServer interface {
    	GetExampleInfo(context.Context, *ExampleRequest) (*ExampleResponse, error)
    }
    
    // UnimplementedExampleServer can be embedded to have forward compatible implementations.
    type UnimplementedExampleServer struct {
    }
    
    func (*UnimplementedExampleServer) GetExampleInfo(ctx context.Context, req *ExampleRequest) (*ExampleResponse, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. pkg/apis/networking/types.go

    	// annotation. For backwards compatibility, when that annotation is set, it
    	// must be given precedence over this field. The controller may emit a
    	// warning if the field and annotation have different values.
    	// Implementations of this API should ignore Ingresses without a class
    	// specified. An IngressClass resource may be marked as default, which can
    	// be used to set a default value for this field. For more information,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/types.go

    	//   matches /foo/bar/baz, but does not match /foo/barbaz).
    	// * ImplementationSpecific: Interpretation of the Path matching is up to
    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	// Defaults to ImplementationSpecific.
    	PathType *PathType `json:"pathType,omitempty" protobuf:"bytes,3,opt,name=pathType"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
      // Implementations are required to support all path types.
      // Defaults to ImplementationSpecific.
      optional string pathType = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top