Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 744 for Percent (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/bigdata/README.md

    mapreduce.job.reduce.slowstart.completedmaps=0.99 # 99% map, then reduce
    mapreduce.reduce.shuffle.input.buffer.percent=0.9 # Min % buffer in RAM
    mapreduce.reduce.shuffle.merge.percent=0.9 # Minimum % merges in RAM
    mapreduce.reduce.speculative=false # Disable speculation for reducing
    mapreduce.task.io.sort.factor=999 # Threshold before writing to disk
    mapreduce.task.sort.spill.percent=0.9 # Minimum % before spilling to disk
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/lease_manager.go

    	client                  *clientv3.Client // etcd client used to grant leases
    	leaseMu                 sync.Mutex
    	prevLeaseID             clientv3.LeaseID
    	prevLeaseExpirationTime time.Time
    	// The period of time in seconds and percent of TTL that each lease is
    	// reused. The minimum of them is used to avoid unreasonably large
    	// numbers.
    	leaseReuseDurationSeconds   int64
    	leaseReuseDurationPercent   float64
    	leaseMaxAttachedObjectCount int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_coverpkg_partial.txt

    stdout '^\s*M/f\s+coverage: 0.0% of statements'
    
    # Test just the test-only package ./e but with -coverpkg=./...
    # Total number of statements should be 7 (e.g. a/b/d/f but not c)
    # and covered percent should be 6/7 (we hit everything in the
    # coverpkg pattern except the func in "d").
    go test -coverprofile=bar.p -coverpkg=./... ./e
    stdout '^ok\s+M/e\s+\S+\s+coverage: 85.7% of statements in ./...'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:12:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PageRenderer.java

                    htmlWriter.startElement("div").attribute("class", "infoBox " + results.getStatusClass()).attribute("id", "successRate");
                    htmlWriter.startElement("div").attribute("class", "percent").characters(results.getFormattedSuccessRate()).endElement();
                    htmlWriter.startElement("p").characters("successful").endElement();
                    htmlWriter.endElement();
                    htmlWriter.endElement();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun usernameCharacters() {
        if (!isJvm) return // TODO: this test is broken on non-JVM platforms.
        UrlComponentEncodingTester.newInstance()
          .override(
            Encoding.PERCENT,
            '['.code,
            ']'.code,
            '{'.code,
            '}'.code,
            '|'.code,
            '^'.code,
            '\''.code,
            ';'.code,
            '='.code,
            '@'.code,
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top