Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 373 for RangeTs (0.26 sec)

  1. guava/src/com/google/common/collect/ContiguousSet.java

    /**
     * A sorted set of contiguous values in a given {@link DiscreteDomain}. Example:
     *
     * <pre>{@code
     * ContiguousSet.create(Range.closed(5, 42), DiscreteDomain.integers())
     * }</pre>
     *
     * <p>Note that because bounded ranges over {@code int} and {@code long} values are so common, this
     * particular example can be written as just:
     *
     * <pre>{@code
     * ContiguousSet.closed(5, 42)
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/nodes_test.go

    	{"SwitchStmt", `@switch { default: x++ }`},
    	{"SelectStmt", `@select {}`},
    	{"SelectStmt", `@select { default: }`},
    	{"SelectStmt", `@select { default: ch <- false }`},
    }
    
    var ranges = []test{
    	{"RangeClause", `@range s`},
    	{"RangeClause", `i = @range s`},
    	{"RangeClause", `i := @range s`},
    	{"RangeClause", `_, x = @range s`},
    	{"RangeClause", `i, x = @range s`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.ServiceCidr, "i",
    		"Comma separated list of IP ranges in CIDR form to redirect to envoy (optional). "+
    			"The wildcard character \"*\" can be used to redirect all outbound traffic. An empty list will disable all outbound.",
    		&cfg.OutboundIPRangesInclude)
    
    	flag.BindEnv(fs, constants.ServiceExcludeCidr, "x",
    		"Comma separated list of IP ranges in CIDR form to be excluded from redirection. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/types_pluginargs.go

    	// PVs. The utilization is calculated by dividing the total requested
    	// storage of the pod by the total capacity of feasible PVs on each node.
    	// Each point contains utilization (ranges from 0 to 100) and its
    	// associated score (ranges from 0 to 10). You can turn the priority by
    	// specifying different scores for different utilization numbers.
    	// The default shape points are:
    	// 1) 0 for 0 utilization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/types.go

    	// clusters, this can be a comma-separated dual-stack pair of CIDR ranges.). When
    	// DetectLocalMode is set to LocalModeClusterCIDR, kube-proxy will consider
    	// traffic to be local if its source IP is in this range. (Otherwise it is not
    	// used.)
    	ClusterCIDR string
    
    	// nodePortAddresses is a list of CIDR ranges that contain valid node IPs, or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	LastAppliedConfigAnnotation = kubectlPrefix + "last-applied-configuration"
    
    	// AnnotationLoadBalancerSourceRangesKey is the key of the annotation on a service to set allowed ingress ranges on their LoadBalancers
    	//
    	// It should be a comma-separated list of CIDRs, e.g. `0.0.0.0/0` to
    	// allow full access (the default) or `18.0.0.0/8,56.0.0.0/8` to allow
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ContiguousSet.java

    /**
     * A sorted set of contiguous values in a given {@link DiscreteDomain}. Example:
     *
     * <pre>{@code
     * ContiguousSet.create(Range.closed(5, 42), DiscreteDomain.integers())
     * }</pre>
     *
     * <p>Note that because bounded ranges over {@code int} and {@code long} values are so common, this
     * particular example can be written as just:
     *
     * <pre>{@code
     * ContiguousSet.closed(5, 42)
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

        // conversion, then dequantized during inference.
        // Activation: f32, Weight: qi8, Bias: f32
        WEIGHT_ONLY = 1;
    
        // Apply default dynamic range quantization. Quantized tensor value's
        // ranges are determined during graph runtime.
        // Activation: f32, Weight: qi8, Bias: f32
        POST_TRAINING_QUANTIZATION_DYNAMIC_RANGE = 2;
    
        // Apply float16 quantization to all the weights. Quantized weights will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            runAndFail "resolve"
    
            then:
            failure.assertResolutionFailure(":conf").assertFailedDependencyRequiredBy("project : > org:d:1.0")
        }
    
        def "chooses highest version that is included in both ranges"() {
            given:
            (1..10).each {
                mavenRepo.module("org", "leaf", "$it").publish()
            }
            mavenRepo.module("org", "a", "1.0").dependsOn("org", "leaf", "[2,6]").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt

     */
    class OpenJSSEPlatform private constructor() : Platform() {
      private val provider: Provider = org.openjsse.net.ssl.OpenJSSE()
    
      // Selects TLSv1.3 so we are specific about our intended version ranges (not just 1.3)
      // and because it's a common pattern for VMs to have differences between supported and
      // defaulted versions for TLS based on what is requested.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top