Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 316 for highest (0.15 sec)

  1. cmd/handler-api.go

    	if err != nil {
    		// The kernel can return valid but non integer values
    		// but still, no need to interpret more
    		return 0
    	}
    	if limit == cgroupMemNoLimit {
    		// No limit set, It's the highest positive signed 64-bit
    		// integer (2^63-1), rounded down to multiples of 4096 (2^12),
    		// the most common page size on x86 systems - for cgroup_limits.
    		return 0
    	}
    	return limit
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	if stabilizedRecommendation != prenormalizedDesiredReplicas {
    		setCondition(hpa, autoscalingv2.AbleToScale, v1.ConditionTrue, "ScaleDownStabilized", "recent recommendations were higher than current one, applying the highest recent recommendation")
    	} else {
    		setCondition(hpa, autoscalingv2.AbleToScale, v1.ConditionTrue, "ReadyForNewScale", "recommended size matches current size")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	if spec.PersistentVolume == nil {
    		// In-line volumes in pod do not have a specific access mode, using "inline".
    		return "inline"
    	}
    	// For purpose of this PR, report only the "highest" access mode in this order: RWX (highest priority), ROX, RWO, RWOP (lowest priority
    	pv := spec.PersistentVolume
    	if util.ContainsAccessMode(pv.Spec.AccessModes, v1.ReadWriteMany) {
    		return "RWX"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one.go

    	cntOfMaxScore := 1
    	selectedIndex := 0
    	// The top of the heap is the NodeScoreResult with the highest score.
    	sortedNodeScoreList := make([]framework.NodePluginScores, 0, count)
    	sortedNodeScoreList = append(sortedNodeScoreList, heap.Pop(&h).(framework.NodePluginScores))
    
    	// This for-loop will continue until all Nodes with the highest scores get checked for a reservoir sampling,
    	// and sortedNodeScoreList gets (count - 1) elements.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            val matchingClassesRanking = matchingClasses
                .associateWith { matchingClassSet.intersect(it.allSuperclasses).size }
    
            // Find supertypes with the highest number of frontend-independent supertypes
            // It means more specific classes will be selected (such as KaClassSymbol instead of KaSymbol)
            val minSupertypeCount = matchingClassesRanking.maxOf { it.value }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSet.java

        SetBuilderImpl<E> copy() {
          return this;
        }
    
        @Override
        ImmutableSet<E> build() {
          return ImmutableSet.of();
        }
      }
    
      // We use power-of-2 tables, and this is the highest int that's a power of 2
      static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.7;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    	report := map[k8s.ParentReference]RouteParentResult{}
    	for _, wantReason := range reasonRanking {
    		if !seenReasons.Contains(wantReason) {
    			continue
    		}
    		// We found our highest priority ranking, now we need to collapse this into a single message
    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// scaleDown is scaling policy for scaling Down.
    	// If not set, the default value is to allow to scale down to minReplicas pods, with a
    	// 300 second stabilization window (i.e., the highest recommendation for
    	// the last 300sec is used).
    	// +optional
    	ScaleDown *HPAScalingRules `json:"scaleDown,omitempty" protobuf:"bytes,2,opt,name=scaleDown"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. cmd/erasure-metadata.go

    		if errs[index] != nil {
    			parities[index] = -1
    			continue
    		}
    		if !metadata.IsValid() {
    			parities[index] = -1
    			continue
    		}
    		// Delete marker or zero byte objects take highest parity.
    		if metadata.Deleted || metadata.Size == 0 {
    			parities[index] = len(partsMetadata) / 2
    		} else {
    			parities[index] = metadata.Erasure.ParityBlocks
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_gc_manager.go

    // which garbage collection will be run.
    type ImageGCPolicy struct {
    	// Any usage above this threshold will always trigger garbage collection.
    	// This is the highest usage we will allow.
    	HighThresholdPercent int
    
    	// Any usage below this threshold will never trigger garbage collection.
    	// This is the lowest threshold we will try to garbage collect to.
    	LowThresholdPercent int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top