Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 506 for Percent (0.15 sec)

  1. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/report/HtmlTestResultsFixture.groovy

            assert counter.text() == "-"
        }
    
        void assertHasSuccessRate(int rate) {
            def testDiv = content.select("div#successRate")
            assert testDiv != null
            def counter = testDiv.select("div.percent")
            assert counter != null
            assert counter.text() == "${rate}%"
        }
    
        void assertHasOverallResult(String result) {
            assert content.select("div#successRate").hasClass(result)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/mirror_test.go

    //	| Host0 | ----------> | Host1 | ----------> | Host2 |
    //	|-------|             |-------|             |-------|
    //
    
    type VirtualServiceMirrorConfig struct {
    	Name       string
    	Absent     bool
    	Percent    float64
    	MirrorHost string
    }
    
    type testCaseMirror struct {
    	name                string
    	absent              bool
    	percentage          float64
    	threshold           float64
    	expectedDestination echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/cmd/covdata/tool_test.go

    	dargs := []string{"-pkg=" + mainPkgPath, "-i=" + s.outdirs[0] + "," + s.outdirs[1]}
    	lines := runToolOp(t, s, "percent", dargs)
    
    	// Sift through the output to make sure it has the needful.
    	testpoints := []struct {
    		tag string
    		re  *regexp.Regexp
    	}{
    		{
    			"statement coverage percent",
    			regexp.MustCompile(`coverage: \d+\.\d% of statements\s*$`),
    		},
    	}
    
    	bad := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//   JOB_OBJECT_CPU_RATE_CONTROL_ENABLE = JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED ignoring CpuMaximum.
    		//   Option a: Set HostConfig.CpuPercent. The units are whole percent of the total CPU capacity of the system, meaning the resolution
    		//      is different based on the number of cores.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
        }
    
        public void calibrateCpuLoad() {
            final short percent = ComponentUtil.getFessConfig().getAdaptiveLoadControlAsInteger().shortValue();
            if (percent <= 0) {
                return;
            }
            short current = getSystemCpuPercent();
            if (current < percent) {
                return;
            }
            final String threadName = Thread.currentThread().getName();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            10            | 90             | 15   | 0     | false
        }
    
        GarbageCollectionStats stats(int percent, double rate, boolean valid) {
            return Stub(GarbageCollectionStats) {
                getUsedPercent() >> percent
                getGcRate() >> rate
                isValid() >> valid
                getEventCount() >> (valid ? 5 : 0)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				"X-Remote-Extra-Alph4num3r1c":                              {"alphanumeric"},
    				"X-Remote-Extra-Percent%20encoded":                         {"percent encoded"},
    				"X-Remote-Extra-Almost%zzpercent%xxencoded":                {"not quite percent encoded"},
    				"X-Remote-Extra-Example.com%2fpercent%2520encoded":         {"url with double percent encoding"},
    				"X-Remote-Extra-Example.com%2F%E4%BB%8A%E6%97%A5%E3%81%AF": {"url with unicode"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    			Percentage: &networking.Percent{
    				Value: 0.001,
    			},
    			ErrorType: &networking.HTTPFaultInjection_Abort_HttpStatus{
    				HttpStatus: 200,
    			},
    		}, valid: true},
    		{name: "invalid fractional percent", in: &networking.HTTPFaultInjection_Abort{
    			Percentage: &networking.Percent{
    				Value: -10.0,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. pkg/controller/deployment/rolling.go

    	// step(that will increase unavailability).
    	//
    	// Concrete example:
    	//
    	// * 10 replicas
    	// * 2 maxUnavailable (absolute number, not percent)
    	// * 3 maxSurge (absolute number, not percent)
    	//
    	// case 1:
    	// * Deployment is updated, newRS is created with 3 replicas, oldRS is scaled down to 8, and newRS is scaled up to 5.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    }
    
    const percentFmt string = "[0-9]+%"
    const percentErrMsg string = "a valid percent string must be a numeric string followed by an ending '%'"
    
    var percentRegexp = regexp.MustCompile("^" + percentFmt + "$")
    
    // IsValidPercent checks that string is in the form of a percentage
    func IsValidPercent(percent string) []string {
    	if !percentRegexp.MatchString(percent) {
    		return []string{RegexError(percentErrMsg, percentFmt, "1%", "93%")}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top