Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 185 for Implementation (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // form, or don't diff.)
    //
    // This format is intended to make it difficult to use these numbers without
    // writing some sort of special handling code in the hopes that that will
    // cause implementors to also use a fixed point implementation.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. hack/update-codegen.sh

              // This file contains a collection of methods that can be used from go-restful to
              // generate Swagger API documentation for its models. Please read this PR for more
              // information on the implementation: https://github.com/emicklei/go-restful/pull/215
              //
              // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - QueueingHint implementation for NodeAffinity is reverted because we found potential scenarios where events that make Pods schedulable could be missed. ([#122285](https://github.com/kubernetes/kubernetes/pull/122285), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_getters.go

    	}
    	return nil, false
    }
    
    // GetHostname Returns the hostname as the kubelet sees it.
    func (kl *Kubelet) GetHostname() string {
    	return kl.hostname
    }
    
    // getRuntime returns the current Runtime implementation in use by the kubelet.
    func (kl *Kubelet) getRuntime() kubecontainer.Runtime {
    	return kl.containerRuntime
    }
    
    // GetNode returns the node info for the configured node name of this Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi.go

    	return true
    }
    
    var _ volume.BlockVolumeUnmapper = &iscsiDiskUnmapper{}
    var _ volume.CustomBlockVolumeUnmapper = &iscsiDiskUnmapper{}
    
    // Even though iSCSI plugin has attacher/detacher implementation, iSCSI plugin
    // needs volume detach operation during TearDownDevice(). This method is only
    // chance that operations are done on kubelet node during volume teardown sequences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. cluster/gce/config-test.sh

    # as an addon daemonset.
    KUBE_PROXY_DISABLE="${KUBE_PROXY_DISABLE:-false}" # true, false
    
    # Optional: Change the kube-proxy implementation. Choices are [iptables, ipvs, nftables].
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-iptables}
    
    # Will be passed into the kube-proxy via `--detect-local-mode`
    DETECT_LOCAL_MODE="${DETECT_LOCAL_MODE:-NodeCIDR}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager.go

    	// ImageFsStats returns the stats of the image filesystem.
    	ImageFsStats(ctx context.Context) (*statsapi.FsStats, *statsapi.FsStats, error)
    }
    
    // ImageGCManager is an interface for managing lifecycle of all images.
    // Implementation is thread-safe.
    type ImageGCManager interface {
    	// Applies the garbage collection policy. Errors include being unable to free
    	// enough space as per the garbage collection policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	return s.client.RequestProgress(s.watchContext(ctx))
    }
    
    type objState struct {
    	obj   runtime.Object
    	meta  *storage.ResponseMeta
    	rev   int64
    	data  []byte
    	stale bool
    }
    
    // New returns an etcd3 implementation of storage.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    // Evaluator is used to see if quota constraints are satisfied.
    type Evaluator interface {
    	// Evaluate takes an operation and checks to see if quota constraints are satisfied.  It returns an error if they are not.
    	// The default implementation processes related operations in chunks when possible.
    	Evaluate(a admission.Attributes) error
    }
    
    type quotaEvaluator struct {
    	quotaAccessor QuotaAccessor
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    			klog.InfoS("CRI implementation should be updated to support RuntimeConfig when KubeletCgroupDriverFromCRI feature gate has been enabled. Falling back to using cgroupDriver from kubelet config.")
    			return nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top