Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 85 of 85 for Implementation (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	// producer should stop sending events and close the result channel. The
    	// consumer should keep watching for events until the result channel is
    	// closed.
    	//
    	// Because some implementations may create channels when constructed, Stop
    	// must always be called, even if the consumer has not yet called
    	// ResultChan().
    	//
    	// Only the consumer should call Stop(), not the producer. If the producer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  2. pkg/kubelet/pluginmanager/operationexecutor/operation_executor.go

    	// multiple operations are not started on the same volume
    	pendingOperations goroutinemap.GoRoutineMap
    
    	// operationGenerator is an interface that provides implementations for
    	// generating volume function
    	operationGenerator OperationGenerator
    }
    
    var _ OperationExecutor = &operationExecutor{}
    
    func (oe *operationExecutor) IsOperationPending(socketPath string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    import (
    	// This file exists to force the desired plugin implementations to be linked.
    	// This should probably be part of some configuration fed into the build for a
    	// given binary target.
    
    	"fmt"
    
    	"k8s.io/klog/v2"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/events.go

    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    	// to activeQ. Usually it's triggered by plugin implementations.
    	ForceActivate = "ForceActivate"
    	// PodUpdate is the event when a pod is updated
    	PodUpdate = "PodUpdate"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    		MaxRegexSize: 30,
    	},
    	"labelValue": {
    		Name:         "LabelValue",
    		ValidateFunc: validation.IsValidLabelValue,
    		MaxRegexSize: 40,
    	},
    
    	// CRD formats
    	// Implementations sourced from strfmt, which kube-openapi uses as its
    	// format library. There are other CRD formats supported, but they are
    	// covered by other portions of the CEL library (like IP/CIDR), or their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top