Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Gated (0.04 sec)

  1. pkg/scheduler/metrics/metrics.go

    			StabilityLevel: metrics.STABLE,
    		}, []string{"queue"})
    	Goroutines = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      SchedulerSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    	UnschedulablePlugins sets.Set[string]
    	// PendingPlugins records the plugin names that the Pod failed with Pending status.
    	PendingPlugins sets.Set[string]
    	// Whether the Pod is scheduling gated (by PreEnqueuePlugins) or not.
    	Gated bool
    }
    
    // DeepCopy returns a deep copy of the QueuedPodInfo object.
    func (pqi *QueuedPodInfo) DeepCopy() *QueuedPodInfo {
    	return &QueuedPodInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_gc_manager.go

    	LowThresholdPercent int
    
    	// Minimum age at which an image can be garbage collected.
    	MinAge time.Duration
    
    	// Maximum age after which an image can be garbage collected, regardless of disk usage.
    	// Currently gated by MaximumImageGCAge feature gate and Kubelet configuration.
    	// If 0, the feature is disabled.
    	MaxAge time.Duration
    }
    
    type realImageGCManager struct {
    	// Container runtime
    	runtime container.Runtime
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager.go

    	register(newTTLAfterFinishedControllerDescriptor())
    	register(newRootCACertificatePublisherControllerDescriptor())
    	register(newEphemeralVolumeControllerDescriptor())
    
    	// feature gated
    	register(newStorageVersionGarbageCollectorControllerDescriptor())
    	register(newResourceClaimControllerDescriptor())
    	register(newLegacyServiceAccountTokenCleanerControllerDescriptor())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/size.go

    	case TFUNC:
    		t1 := NewFuncArgs(t)
    		CheckSize(t1)
    		w = int64(PtrSize) // width of func type is pointer
    		t.intRegs = 1
    		t.setAlg(ANOEQ)
    		t.ptrBytes = int64(PtrSize)
    
    	// function is 3 cated structures;
    	// compute their widths as side-effect.
    	case TFUNCARGS:
    		t1 := t.FuncArgs()
    		// TODO(mdempsky): Should package abi be responsible for computing argwid?
    		w = calcStructOffset(t1, t1.Recvs(), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top