Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for central (0.15 sec)

  1. pkg/scheduler/framework/types.go

    	UpdateNodeLabel       // 1000
    	UpdateNodeTaint       // 10000
    	UpdateNodeCondition   // 100000
    	UpdateNodeAnnotation  // 1000000
    
    	All ActionType = 1<<iota - 1 // 1111111
    
    	// Use the general Update type if you don't either know or care the specific sub-Update type to use.
    	Update = UpdateNodeAllocatable | UpdateNodeLabel | UpdateNodeTaint | UpdateNodeCondition | UpdateNodeAnnotation
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    					// The types unified so we know that corresponding methods
    					// match and we can simply compare the number of methods.
    					// TODO(gri) We may be able to relax this rule and select
    					// the more general interface. But if one of them is a defined
    					// type, it's not clear how to choose and whether we introduce
    					// an order dependency or not. Requiring the same method set
    					// is conservative.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	//
    	// Enables PortForward to be proxied with a websocket client
    	PortForwardWebsockets featuregate.Feature = "PortForwardWebsockets"
    
    	// owner: @jessfraz
    	// alpha: v1.12
    	//
    	// Enables control over ProcMountType for containers.
    	ProcMountType featuregate.Feature = "ProcMountType"
    
    	// owner: @sjenning
    	// alpha: v1.11
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top