Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for Percent (0.67 sec)

  1. pilot/pkg/networking/core/route/route_internal_test.go

    				Mirror:           &networking.Destination{},
    				MirrorPercentage: &networking.Percent{Value: 0.0},
    			},
    			want: nil,
    		},
    		{
    			name: "mirrorpercentage with actual percent",
    			route: &networking.HTTPRoute{
    				Mirror:           &networking.Destination{},
    				MirrorPercentage: &networking.Percent{Value: 50.0},
    			},
    			want: &core.RuntimeFractionalPercent{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            public long used;
            public long committed;
            public long max;
            public short percent;
        }
    
        public static class JvmMemoryNonHeapObj {
            public long used;
            public long committed;
            public long max;
            public short percent;
        }
    
        public static class JvmPoolObj {
            public String key;
            public long count;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
        GradleHandle gradle
    
        def setup() {
            server.start()
        }
    
        def "shows progress bar and percent phase completion"() {
            createDirs("a", "b", "c", "d")
            settingsFile << """
                ${server.callFromBuild('settings')}
                include "a", "b", "c", "d"
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/config/validation/virtualservice_test.go

    			MirrorPercentage: &networking.Percent{
    				Value: 101,
    			},
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.bar"},
    			}},
    			Match: []*networking.HTTPMatchRequest{nil},
    		}, valid: false},
    		{name: "valid mirror percentage", route: &networking.HTTPRoute{
    			MirrorPercentage: &networking.Percent{
    				Value: 1,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. 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)
  9. src/runtime/debug/garbage.go

    // limit.
    // A negative percentage effectively disables garbage collection, unless
    // the memory limit is reached.
    // See SetMemoryLimit for more details.
    func SetGCPercent(percent int) int {
    	return int(setGCPercent(int32(percent)))
    }
    
    // FreeOSMemory forces a garbage collection followed by an
    // attempt to return as much memory to the operating system
    // as possible. (Even if this is not called, the runtime gradually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/trace/goroutines.go

    			})
    			name = summary.Name
    			execTime += summary.ExecTime
    			if maxTotalTime < summary.TotalTime {
    				maxTotalTime = summary.TotalTime
    			}
    		}
    
    		// Compute the percent of total execution time these goroutines represent.
    		execTimePercent := ""
    		if totalExecTime > 0 {
    			execTimePercent = fmt.Sprintf("%.2f%%", float64(execTime)/float64(totalExecTime)*100)
    		}
    
    		// Sort.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top