Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 195 for percentile (0.27 sec)

  1. docs/metrics/prometheus/list.md

    | `minio_node_cpu_avg_load1_max`       | CPU load average 1min (max).               |
    | `minio_node_cpu_avg_load1_perc`      | CPU load average 1min (percentage).        |
    | `minio_node_cpu_avg_load1_perc_avg`  | CPU load average 1min (percentage) (avg).  |
    | `minio_node_cpu_avg_load1_perc_max`  | CPU load average 1min (percentage) (max).  |
    | `minio_node_cpu_avg_load5`           | CPU load average 5min.                     |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    	return intOrPercent
    }
    
    // GetScaledValueFromIntOrPercent is meant to replace GetValueFromIntOrPercent.
    // This method returns a scaled value from an IntOrString type. If the IntOrString
    // is a percentage string value it's treated as a percentage and scaled appropriately
    // in accordance to the total, if it's an int value it's treated as a simple value and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/internal/pgo/pgo.go

    package pgo
    
    // Profile contains the processed data from the PGO profile.
    type Profile struct {
    	// TotalWeight is the aggregated edge weights across the profile. This
    	// helps us determine the percentage threshold for hot/cold
    	// partitioning.
    	TotalWeight int64
    
    	// NamedEdgeMap contains all unique call edges in the profile and their
    	// edge weight.
    	NamedEdgeMap NamedEdgeMap
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"targetAverageValue":       "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/node_container_manager_linux_test.go

    		},
    		{
    			kubeReserved:   getResourceList("100m", "100Mi"),
    			systemReserved: getResourceList("50m", "50Mi"),
    			capacity:       getResourceList("10", "10Gi"),
    			hardThreshold: evictionapi.ThresholdValue{
    				Percentage: 0.05,
    			},
    			expected: getResourceList("150m", "694157320"),
    		},
    
    		{
    			kubeReserved:   v1.ResourceList{},
    			systemReserved: v1.ResourceList{},
    			capacity:       getResourceList("10", "10Gi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation_test.go

    					Field: "leaderElection.resourceLock",
    				},
    			},
    		},
    		"bad-percentage-of-nodes-to-score": {
    			config: percentageOfNodesToScore101,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "percentageOfNodesToScore",
    				},
    			},
    		},
    		"negative-percentage-of-nodes-to-score": {
    			config: percentageOfNodesToScoreNegative,
    			wantErrs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/NumberUtil.java

        private static final List<String> ORDINAL_SUFFIXES = unmodifiableList(asList("th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th"));
    
    
        /**
         * Percentage (0-...) of given input.
         *
         * @param fraction the fraction of total, must be &gt;= 0. if 0, the result will be 100.
         * @param total the total, must be &gt;= 0, if 0, the result will be 0.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"targetAverageValue":       "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategyTest.groovy

            then:
            thrown IllegalArgumentException
        }
    
        def "strategy does not accept percentage greater than 1"() {
            when:
            new LowMemoryDaemonExpirationStrategy(1.1)
    
            then:
            thrown IllegalArgumentException
        }
    
        def "strategy does not accept NaN percentage"() {
            when:
            new LowMemoryDaemonExpirationStrategy(Double.NaN)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.
      // +optional
      optional int32 targetAverageUtilization = 2;
    
      // targetAverageValue is the target value of the average of the
      // resource metric across all relevant pods, as a raw value (instead of as
      // a percentage of the request), similar to the "pods" metric source type.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top