Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 251 for Implementation (0.31 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/README.md

    Implements: https://github.com/kubernetes/design-proposals-archive/blob/main/api-machinery/thirdpartyresources.md
    
    It provides an API for registering `CustomResourceDefinitions`.
    
    ## Purpose
    
    This API server provides the implementation for `CustomResourceDefinitions` which is included as
    delegate server inside of `kube-apiserver`.
    
    
    ## Compatibility
    
    HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 06:41:15 UTC 2023
    - 742 bytes
    - Viewed (0)
  2. pkg/registry/storage/volumeattributesclass/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package volumeattributesclass provides Registry interface and its REST
    // implementation for storing volumeattributesclass api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 740 bytes
    - Viewed (0)
  3. pkg/kubelet/secret/secret_manager.go

    func (s *simpleSecretManager) UnregisterPod(pod *v1.Pod) {
    }
    
    // secretManager keeps a store with secrets necessary
    // for registered pods. Different implementations of the store
    // may result in different semantics for freshness of secrets
    // (e.g. ttl-based implementation vs watch-based implementation).
    type secretManager struct {
    	manager manager.Manager
    }
    
    func (s *secretManager) GetSecret(namespace, name string) (*v1.Secret, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/output/output.go

    	KubeTemplatePrintFlags *genericclioptions.KubeTemplatePrintFlags
    	// TextPrintFlags provides default flags necessary for kubeadm text printing.
    	TextPrintFlags TextPrintFlags
    	// TypeSetterPrinter is an implementation of ResourcePrinter that wraps another printer with types set on the objects
    	TypeSetterPrinter *printers.TypeSetterPrinter
    	// OutputFormat contains currently set output format
    	OutputFormat *string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pkg/volume/util/hostutil/hostutil_linux.go

    		return fmt.Errorf("failed to make %s rshared: %v", path, err)
    	}
    
    	return nil
    }
    
    // selinux.SELinuxEnabled implementation for unit tests
    type seLinuxEnabledFunc func() bool
    
    // GetSELinux is common implementation of GetSELinuxSupport on Linux.
    func GetSELinux(path string, mountInfoFilename string, selinuxEnabled seLinuxEnabledFunc) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. pkg/proxy/util/localdetector.go

    import (
    	netutils "k8s.io/utils/net"
    )
    
    // LocalTrafficDetector generates iptables or nftables rules to detect traffic from local pods.
    type LocalTrafficDetector interface {
    	// IsImplemented returns true if the implementation does something, false
    	// otherwise. You should not call the other methods if IsImplemented() returns
    	// false.
    	IsImplemented() bool
    
    	// IfLocal returns iptables arguments that will match traffic from a local pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 15:34:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/container/container_gc.go

    	MaxPerPodContainer int
    
    	// Max number of total dead containers, less than zero for no limit.
    	MaxContainers int
    }
    
    // GC manages garbage collection of dead containers.
    //
    // Implementation is thread-compatible.
    type GC interface {
    	// Garbage collect containers.
    	GarbageCollect(ctx context.Context) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/cleanup_test.go

    	// We need to construct a proxy.ServicePortMap to pass to CleanStaleEntries.
    	// ServicePortMap is just map[string]proxy.ServicePort, but there are no public
    	// constructors for any implementation of proxy.ServicePort, so we have to either
    	// provide our own implementation of that interface, or else use a
    	// proxy.ServiceChangeTracker to construct them and fill in the map for us.
    
    	sct := proxy.NewServiceChangeTracker(nil, v1.IPv4Protocol, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeref.go

    */
    
    package unstructured
    
    import (
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    // TypeRef is the implementation of TypeRef for an unstructured object.
    // This is especially usefully when the schema is not known or available.
    type TypeRef struct {
    	celObjectType *types.Type
    	celTypeType   *types.Type
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1alpha1/generated.proto

    // that are required to describe the RuntimeClass to the Container Runtime
    // Interface (CRI) implementation, as well as any other components that need to
    // understand how the pod will be run. The RuntimeClassSpec is immutable.
    message RuntimeClassSpec {
      // runtimeHandler specifies the underlying runtime and configuration that the
      // CRI implementation will use to handle pods of this class. The possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top