Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 128 for Percent (0.14 sec)

  1. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/go-version/LICENSE

          definition, “control” means (a) the power, direct or indirect, to cause
          the direction or management of such entity, whether by contract or
          otherwise, or (b) ownership of more than fifty percent (50%) of the
          outstanding shares or beneficial ownership of such entity.
    
    
    2. License Grants and Conditions
    
    2.1. Grants
    
         Each Contributor hereby grants You a world-wide, royalty-free,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.ImageGCLowThresholdPercent, "image-gc-low-threshold", c.ImageGCLowThresholdPercent, "The percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. Values...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2/types.go

    	PodsScalingPolicy HPAScalingPolicyType = "Pods"
    	// PercentScalingPolicy is a policy used to specify a relative amount of change with respect to
    	// the current number of pods.
    	PercentScalingPolicy HPAScalingPolicyType = "Percent"
    )
    
    // HPAScalingPolicy is a single policy which must hold true for a specified past interval.
    type HPAScalingPolicy struct {
    	// type is used to specify the scaling policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	state := &formatState{
    		format:   format,
    		name:     name,
    		flags:    make([]byte, 0, 5),
    		argNum:   argNum,
    		argNums:  make([]int, 0, 1),
    		nbytes:   1, // There's guaranteed to be a percent sign.
    		firstArg: firstArg,
    		pass:     pass,
    		call:     call,
    	}
    	// There may be flags.
    	state.parseFlags()
    	// There may be an index.
    	if !state.parseIndex() {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    	// Initialize the position array field.
    	fmt.Fprintf(w, "\tNumStmt: [%d]uint16{\n", len(f.blocks))
    
    	// A nice long list of statements-per-block, so we can give a conventional
    	// valuation of "percent covered". To save space, it's a 16-bit number, so we
    	// clamp it if it overflows - won't matter in practice.
    	for i, block := range f.blocks {
    		n := block.numStmt
    		if n > 1<<16-1 {
    			n = 1<<16 - 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/strings/strings.go

    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    				// Set start to a negative value.
    				// Note: using -1 here consistently and reproducibly
    				// slows down this code by a several percent on amd64.
    				start = ^start
    			}
    		} else {
    			if start < 0 {
    				start = end
    			}
    		}
    	}
    
    	// Last field might end at EOF.
    	if start >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    	runtime.GC()
    
    	// Set an arbitrary memory limit to check the metric for it
    	limit := int64(512 * 1024 * 1024)
    	oldLimit := debug.SetMemoryLimit(limit)
    	defer debug.SetMemoryLimit(oldLimit)
    
    	// Set a GC percent to check the metric for it
    	gcPercent := 99
    	oldGCPercent := debug.SetGCPercent(gcPercent)
    	defer debug.SetGCPercent(oldGCPercent)
    
    	// Tests whether readMetrics produces values aligning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        purposes of this definition, "control" means (a) the power, direct
        or indirect, to cause the direction or management of such entity,
        whether by contract or otherwise, or (b) ownership of more than
        fifty percent (50%) of the outstanding shares or beneficial
        ownership of such entity.
    
    2. License Grants.
    
        2.1. The Initial Developer Grant.
    
        Conditioned upon Your compliance with Section 3.1 below and subject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

      - 'scala-library'""")
        }
    
        def "gives decent error message when triggered with unknown dsl"() {
            when:
            fails('init', '--dsl', 'some-unknown-dsl')
    
            then:
            failure.assertHasCause("""The requested build script DSL 'some-unknown-dsl' is not supported. Supported DSLs:
      - 'kotlin'
      - 'groovy'""")
        }
    
        def "gives decent error message when using unknown test framework"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top