Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 195 for percentile (0.14 sec)

  1. pkg/config/validation/virtualservice_test.go

    		}, valid: false},
    		{name: "invalid mirror percentage", route: &networking.HTTPRoute{
    			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{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    		cpuCount int64
    		want     int64
    	}{
    		{
    			name:     "max range when same amount",
    			cpuLimit: resource.MustParse("1"),
    			cpuCount: 1,
    			want:     10000,
    		},
    		{
    			name:     "percentage calculation is working as intended",
    			cpuLimit: resource.MustParse("94"),
    			cpuCount: 96,
    			want:     9791,
    		},
    		{
    			name:     "half range when half amount",
    			cpuLimit: resource.MustParse("1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    The GOGC variable sets the initial garbage collection target percentage.
    A collection is triggered when the ratio of freshly allocated data to live data
    remaining after the previous collection reaches this percentage. The default
    is GOGC=100. Setting GOGC=off disables the garbage collector entirely.
    [runtime/debug.SetGCPercent] allows changing this percentage at run time.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// maxUnavailable is the maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

    message RollingUpdateDaemonSet {
      // The maximum number of DaemonSet pods that can be unavailable during the
      // update. Value can be an absolute number (ex: 5) or a percentage of total
      // number of DaemonSet pods at the start of the update (ex: 10%). Absolute
      // number is calculated from percentage by rounding up.
      // This cannot be 0 if MaxSurge is 0
      // Default value is 1.
      // Example: when this is set to 30%, at most 30% of the total number of nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/internal/coverage/cformat/format.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cformat
    
    // This package provides apis for producing human-readable summaries
    // of coverage data (e.g. a coverage percentage for a given package or
    // set of packages) and for writing data in the legacy test format
    // emitted by "go test -coverprofile=<outfile>".
    //
    // The model for using these apis is to create a Formatter object,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. src/math/erfinv.go

    // license that can be found in the LICENSE file.
    
    package math
    
    /*
    	Inverse of the floating-point error function.
    */
    
    // This implementation is based on the rational approximation
    // of percentage points of normal distribution available from
    // https://www.jstor.org/stable/2347330.
    
    const (
    	// Coefficients for approximation to erf in |x| <= 0.85
    	a0 = 1.1975323115670912564578e0
    	a1 = 4.7072688112383978012285e1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/testing/cover.go

    func mustBeNil(err error) {
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "testing: %s\n", err)
    		os.Exit(2)
    	}
    }
    
    // coverReport reports the coverage percentage and writes a coverage profile if requested.
    func coverReport() {
    	if goexperiment.CoverageRedesign {
    		coverReport2()
    		return
    	}
    	var f *os.File
    	var err error
    	if *coverProfile != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/deprecation/deprecation.go

    				// nolint: staticcheck
    				if httpRoute.Fault.Delay.Percent > 0 {
    					ctx.Report(gvk.VirtualService,
    						msg.NewDeprecated(r, replacedMessage("HTTPRoute.fault.delay.percent", "HTTPRoute.fault.delay.percentage")))
    				}
    			}
    		}
    	}
    }
    
    func replacedMessage(deprecated, replacement string) string {
    	return fmt.Sprintf("%s is deprecated; use %s", deprecated, replacement)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java

            regA(builder);
            return builder;
        }
    
        protected PercentilesAggregationBuilder regPercentilesA(String name, String field) {
            PercentilesAggregationBuilder builder = AggregationBuilders.percentiles(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected PercentileRanksAggregationBuilder regPercentileRanksA(String name, String field, double[] values) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top