Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for Percent (0.21 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // `updateStrategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
      // May be specified as a number of pods or as a percent of the total number
      // of pods at the start of the update.
      IntOrString rollingMaxUnavailable = 23;
    }
    
    message CNIUsageConfig {
      // Controls whether CNI should be used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/encoding/json/encode_test.go

    	}
    }
    
    func TestMarshalErrorAndReuseEncodeState(t *testing.T) {
    	// Disable the GC temporarily to prevent encodeState's in Pool being cleaned away during the test.
    	percent := debug.SetGCPercent(-1)
    	defer debug.SetGCPercent(percent)
    
    	// Trigger an error in Marshal with cyclic data.
    	type Dummy struct {
    		Name string
    		Next *Dummy
    	}
    	dummy := Dummy{Name: "Dummy"}
    	dummy.Next = &dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. src/fmt/print.go

    }
    
    // FormatString returns a string representing the fully qualified formatting
    // directive captured by the [State], followed by the argument verb. ([State] does not
    // itself contain the verb.) The result has a leading percent sign followed by any
    // flags, the width, and the precision. Missing flags, width, and precision are
    // omitted. This function allows a [Formatter] to reconstruct the original
    // directive triggering the call to Format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    }
    
    // WebListFunc holds the per-function information for HTML source code listing.
    type WebListFunc struct {
    	Name       string
    	File       string
    	Flat       string
    	Cumulative string
    	Percent    string
    	Lines      []WebListLine
    }
    
    // WebListLine holds the per-source-line information for HTML source code listing.
    type WebListLine struct {
    	SrcLine      string
    	HTMLClass    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        // BloomFilter.create(Funnels.unencodedCharsFunnel(), 244412641, 1e-11);
      }
    
      /**
       * Asserts that {@link BloomFilter#approximateElementCount} is within 1 percent of the expected
       * value.
       */
      private static void assertApproximateElementCountGuess(BloomFilter<?> bf, int sizeGuess) {
        assertThat(bf.approximateElementCount()).isAtLeast((long) (sizeGuess * 0.99));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. CREDITS

          "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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    		o.metricsRecorder = recorder
    	}
    }
    
    // WithPluginMetricsSamplePercent sets the percentage of plugin metrics to be sampled.
    func WithPluginMetricsSamplePercent(percent int) Option {
    	return func(o *priorityQueueOptions) {
    		o.pluginMetricsSamplePercent = percent
    	}
    }
    
    var defaultPriorityQueueOptions = priorityQueueOptions{
    	clock:                             clock.RealClock{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. 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)
Back to top