Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for Implementation (0.19 sec)

  1. staging/src/k8s.io/api/discovery/v1/types.go

    	//   * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455
    	//
    	// * Other protocols should use implementation-defined prefixed names such as
    	// mycompany.com/my-custom-protocol.
    	// +optional
    	AppProtocol *string `json:"appProtocol,omitempty" protobuf:"bytes,4,name=appProtocol"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/README.md

    # NFTables kube-proxy
    
    This is an implementation of service proxying via the nftables API of
    the kernel netfilter subsystem.
    
    ## General theory of netfilter
    
    Packet flow through netfilter looks something like:
    
    ```text
                 +================+      +=====================+
                 | hostNetwork IP |      | hostNetwork process |
                 +================+      +=====================+
                             ^                |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// Routing for a Service. Well known values are "Auto" and "Disabled".
    	// Implementations may choose to develop new topology approaches, exposing
    	// them with domain-prefixed values. For example, "example.com/lowest-rtt"
    	// could be a valid implementation-specific value for this annotation. These
    	// heuristics will often populate topology hints on EndpointSlices, but that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. plugin/pkg/admission/runtimeclass/admission.go

    func Register(plugins *admission.Plugins) {
    	plugins.Register(PluginName, func(config io.Reader) (admission.Interface, error) {
    		return NewRuntimeClass(), nil
    	})
    }
    
    // RuntimeClass is an implementation of admission.Interface.
    // It looks at all new pods and sets pod.Spec.Overhead if a RuntimeClass is specified which
    // defines an Overhead. If pod.Spec.Overhead is set but a RuntimeClass with matching overhead is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // copied over.
    //
    // The source of events for the interval is typically either
    // the watchCache circular buffer, if events being retrieved
    // need to be for resource versions > 0 or the underlying
    // implementation of Store, if resource version = 0.
    //
    // Furthermore, an interval can be either valid or invalid at
    // any given point of time. The notion of validity makes sense
    // only in cases where the window of events in the underlying
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	if u, ok := into.(runtime.Unstructured); ok {
    		var content map[string]interface{}
    		defer func() {
    			switch u := u.(type) {
    			case *unstructured.UnstructuredList:
    				// UnstructuredList's implementation of SetUnstructuredContent
    				// produces different objects than those produced by a decode using
    				// UnstructuredJSONScheme:
    				//
    				//   1. SetUnstructuredContent retains the "items" key in the list's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. cmd/kubelet/app/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    // This file exists to force the desired plugin implementations to be linked.
    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    // This file exists to force the desired plugin implementations to be linked into genericapi pkg.
    import (
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1/generated.proto

    // The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows
    // how this struct is updated on heartbeats and can guide customized reporter implementations.
    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil.go

    	// GetSELinuxMountContext returns value of -o context=XYZ mount option on
    	// given mount point.
    	GetSELinuxMountContext(pathname string) (string, error)
    }
    
    // Compile-time check to ensure all HostUtil implementations satisfy
    // the Interface.
    var _ HostUtils = &HostUtil{}
    
    // getFileType checks for file/directory/socket and block/character devices.
    func getFileType(pathname string) (FileType, error) {
    	var pathType FileType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top