Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 225 for decreasing (0.18 sec)

  1. pkg/apis/apps/types.go

    }
    
    // PodManagementPolicyType defines the policy for creating pods under a stateful set.
    type PodManagementPolicyType string
    
    const (
    	// OrderedReadyPodManagement will create pods in strictly increasing order on
    	// scale up and strictly decreasing order on scale down, progressing only when
    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    	// and we can consider termination.
    	// We will wait for all predecessors to be Running and Ready prior to attempting a deletion.
    	// We will terminate Pods in a monotonically decreasing order.
    	// Note that we do not resurrect Pods in this interval. Also note that scaling will take precedence over
    	// updates.
    	processCondemnedFn := func(i int) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    	const src = "@\n" + // illegal character, cause an error
    		"@ @\n" + // two errors on the same line
    		"//line File2:20\n" +
    		"@\n" + // different file, but same line
    		"//line File2:1\n" +
    		"@ @\n" + // same file, decreasing line number
    		"//line File1:1\n" +
    		"@ @ @" // original file, line 1 again
    
    	var list ErrorList
    	eh := func(pos token.Position, msg string) { list.Add(pos, msg) }
    
    	var s Scanner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. src/internal/types/errors/codes.go

    	//  var _ = s[-1]
    	//
    	// Example:
    	//  var s = []int{1,2,3}
    	//  var i string
    	//  var _ = s[i]
    	InvalidIndex
    
    	// SwappedSliceIndices occurs when constant indices in a slice expression
    	// are decreasing in value.
    	//
    	// Example:
    	//  var _ = []int{1,2,3}[2:1]
    	SwappedSliceIndices
    
    	// NonSliceableOperand occurs when a slice operation is applied to a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func (s nodeSorter) Less(i, j int) bool { return s.less(s.rs[i], s.rs[j]) }
    
    // Sort reorders a slice of nodes based on the specified ordering
    // criteria. The result is sorted in decreasing order for (absolute)
    // numeric quantities, alphabetically for text, and increasing for
    // addresses.
    func (ns Nodes) Sort(o NodeOrder) error {
    	var s nodeSorter
    
    	switch o {
    	case FlatNameOrder:
    		s = nodeSorter{ns,
    			func(l, r *Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// when setting the cgroupv2 memory.high value to enforce MemoryQoS.
    	// Decreasing this factor will set lower high limit for container cgroups and put heavier reclaim pressure
    	// while increasing will put less reclaim pressure.
    	// See https://kep.k8s.io/2570 for more details.
    	// Default: 0.9
    	// +featureGate=MemoryQoS
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. internal/config/config.go

    	ValueSourceCfg
    	ValueSourceEnv
    )
    
    // ResolveConfigParam returns the effective value of a configuration parameter,
    // within a subsystem and subsystem target. The effective value is, in order of
    // decreasing precedence:
    //
    // 1. the value of the corresponding environment variable if set,
    // 2. the value of the parameter in the config store if set,
    // 3. the default value,
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one.go

    	logger := klog.FromContext(ctx)
    	// Extenders are called sequentially.
    	// Nodes in original feasibleNodes can be excluded in one extender, and pass on to the next
    	// extender in a decreasing manner.
    	for _, extender := range extenders {
    		if len(feasibleNodes) == 0 {
    			break
    		}
    		if !extender.IsInterested(pod) {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// - the map held in the priorityLevelStates field
    	// - any field of a priorityLevelState held in that map
    	lock sync.RWMutex
    
    	// flowSchemas holds the flow schema objects, sorted by increasing
    	// numerical (decreasing logical) matching precedence.  Every
    	// FlowSchema in this slice is immutable.
    	flowSchemas apihelpers.FlowSchemaSequence
    
    	// priorityLevelStates maps the PriorityLevelConfiguration object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    		if minimumAllowedReplicas < scaleDownLimit {
    			minimumAllowedReplicas = scaleDownLimit
    			possibleLimitingReason = "ScaleDownLimit"
    			possibleLimitingMessage = "the desired replica count is decreasing faster than the maximum scale rate"
    		} else {
    			possibleLimitingMessage = "the desired replica count is less than the minimum replica count"
    			possibleLimitingReason = "TooFewReplicas"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top