Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 183 for Percentage (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// Make a copy of CA secret, a copy of root cert form key cert bundle, and
    	// a copy of root cert from config map for verification.
    	certItem0 := loadCert(rotator)
    
    	// Change grace period percentage to 0, so that root cert is not going to expire soon.
    	rotator.config.certInspector = certutil.NewCertUtil(0)
    	rotator.checkAndRotateRootCert()
    	// Verifies that when root cert remaining life is not in grace period time,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. src/runtime/os_illumos.go

    		return 0
    	}
    
    	// The "zone.cpu-cap" resource control, as described in
    	// resource_controls(5), "sets a limit on the amount of CPU time that
    	// can be used by a zone.  The unit used is the percentage of a single
    	// CPU that can be used by all user threads in a zone, expressed as an
    	// integer."  A C string of the name must be passed to getrctl(2).
    	name := []byte("zone.cpu-cap\x00")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top