Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 137 for RangeTs (0.19 sec)

  1. android/guava-tests/test/com/google/common/math/LongMathTest.java

      @GwtIncompatible // java.math.BigInteger
      public void testMean() {
        // Odd-sized ranges have an obvious mean
        assertMean(2, 1, 3);
    
        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1L << 62) - 1, -1, Long.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

     *     <li>{@link TargetGradleVersion} - specifies the tooling API testDirectoryProvider versions that the test is compatible with.
     * </ul>
     *
     * The supported ranges for the tooling API versions and for the target Gradle versions are documented in the Gradle user guide.
     * For up-to-date information, check the 'Compatibility of Java and Gradle versions` section of the 'Third-party Tools' chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LongMathTest.java

      @GwtIncompatible // java.math.BigInteger
      public void testMean() {
        // Odd-sized ranges have an obvious mean
        assertMean(2, 1, 3);
    
        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1L << 62) - 1, -1, Long.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. src/net/http/response_test.go

    			"Accept-Ranges: bytes\r\n" +
    			"Content-Range: bytes 0-5/1862\r\n" +
    			"Content-Length: 6\r\n\r\n" +
    			"foobar",
    
    		Response{
    			Status:     "206 Partial Content",
    			StatusCode: 206,
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Request:    dummyReq("GET"),
    			Header: Header{
    				"Accept-Ranges":  []string{"bytes"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. operator/pkg/validate/common.go

    func validatePortNumber(path util.Path, val any) util.Errors {
    	return validateIntRange(path, val, 0, 65535)
    }
    
    // validateIPRangesOrStar validates IP ranges and also allow star, examples: "1.1.0.256/16,2.2.0.257/16", "*"
    func validateIPRangesOrStar(path util.Path, val any) (errs util.Errors) {
    	scope.Debugf("validateIPRangesOrStar at %v: %v", path, val)
    
    	if !util.IsString(val) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

                    // Constraints also appear in the graph if they contributed to it.
                    // Ignore them for now, though perhaps we can use them in the future to
                    // publish version ranges.
                    continue;
                }
    
                visitor.accept((ResolvedDependencyResult) dependencyResult);
            }
        }
    
        private static ModuleVersionIdentifier getVariantCoordinates(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

          quant_specs->inference_input_type = DT_QINT8;
        }
      } else {
        // These flags are incompatible with post_training_quantize() as only
        // QAT models can provide required ranges.
        quant_specs->disable_infer_tensor_range =
            toco_flags.disable_infer_tensor_range();
        quant_specs->use_fake_quant_num_bits = toco_flags.use_fake_quant_num_bits();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

    }
    
    def MapFnOp : TensorflowMlrt_Op<"map_fn", [AttrSizedOperandSegments, Pure]> {
      let summary = "The Parallel Map for tf_mlrt dialect";
      let description = [{
        The Pmap executes body function in parallel for all ranges up to $max_iterations.
    
        The pseudo code:
          for(int i = 0; i < $max_iterations; i++) {
            body_fn(MlrtFture($tensor_list_or_flow_in[i]),
                    MlrtPromise($tensor_list_or_flow_in[i+1]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. pkg/proxy/apis/config/validation/validation_test.go

    			addresses:    []string{"127.0.0.1/32", "10.20.30.40", "1.2.3.0/24"},
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("NodePortAddresses[1]"), "10.20.30.40", "must be a valid CIDR")},
    		},
    		"missing ipv6 subnet ranges": {
    			addresses: []string{"::0", "::1", "2001:db8::/32"},
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("NodePortAddresses[0]"), "::0", "must be a valid CIDR"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadstore.go

    		// Old range is empty - use new one.
    		return shadowRange(lo + hi<<16)
    	}
    	if hi < sr.lo() || lo > sr.hi() {
    		// The two regions don't overlap or abut, so we would
    		// have to keep track of multiple disjoint ranges.
    		// Because we can only keep one, keep the larger one.
    		if sr.hi()-sr.lo() >= hi-lo {
    			return sr
    		}
    		return shadowRange(lo + hi<<16)
    	}
    	// Regions overlap or abut - compute the union.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top