Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 139 for RangeTs (0.25 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      // Set the quantization parameters of the input nodes. These parameters are
      // converted from the user specified input value ranges. The input nodes with
      // non-float tensor types will be skipped because they are not quantizable.
      // Return true if number of input nodes doesn't equal to that of the input
      // ranges.
      bool SetInputNodesQuantizationParams(func::FuncOp func);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    	// making the impact on BSS too high (note the L1 is stored directly
    	// in pageAlloc).
    	//
    	// To iterate over the bitmap, use inUse to determine which ranges
    	// are currently available. Otherwise one might iterate over unused
    	// ranges.
    	//
    	// Protected by mheapLock.
    	//
    	// TODO(mknyszek): Consider changing the definition of the bitmap
    	// such that 1 means free and 0 means in-use so that summaries and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. cmd/s3-zip-handlers.go

    	}
    
    	defer rc.Close()
    
    	if err = setObjectHeaders(ctx, w, fileObjInfo, nil, opts); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	// s3zip does not allow ranges
    	w.Header().Del(xhttp.AcceptRanges)
    
    	setHeadGetRespHeaders(w, r.Form)
    
    	httpWriter := xioutil.WriteOnClose(w)
    
    	// Write object content to response body
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

      // Set the quantization parameters of the input nodes. These parameters are
      // converted from the user specified input value ranges. The input nodes with
      // non-float tensor types will be skipped because they are not quantizable.
      // Return true if number of input nodes doesn't equal to that of the input
      // ranges.
      bool SetInputNodesQuantizationParams(func::FuncOp func);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    	if !startPos.IsKnown() || startPos.RelLine() != uint(s.Func().StartLine) {
    		panic("bad startPos")
    	}
    	fnstate := &dwarf.FnState{
    		Name:          s.Name,
    		Info:          info,
    		Loc:           loc,
    		Ranges:        ranges,
    		Absfn:         absfunc,
    		StartPC:       s,
    		Size:          s.Size,
    		StartPos:      startPos,
    		External:      !s.Static(),
    		Scopes:        scopes,
    		InlCalls:      inlcalls,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. src/debug/pe/file.go

    	}
    
    	// There are many other DWARF sections, but these
    	// are the ones the debug/dwarf package uses.
    	// Don't bother loading others.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for _, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    		}
    
    		b, err := sectionData(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

    package org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategy;
    
    import java.util.Comparator;
    import java.util.Objects;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * Matches version ranges:
     * <ul>
     * <li>[1.0,2.0] matches all versions greater or equal to 1.0 and lower or equal to 2.0 </li>
     * <li>[1.0,2.0[ matches all versions greater or equal to 1.0 and lower than 2.0 </li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

       Dependency path ':test:unspecified' --> 'org:bar:1.0' (runtime) --> 'org:foo:{strictly 15}' because of the following reason: what not""")
    
        }
    
        void "should pass if strict version ranges overlap using external dependencies"() {
            given:
            repository {
                'org:foo' {
                    '1.0'()
                    '1.1'()
                    '1.2'()
                    '1.3'()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse_test.go

    	}
    	if maxFold != last {
    		t.Errorf("maxFold=%#U should be %#U", maxFold, last)
    	}
    }
    
    func TestAppendRangeCollapse(t *testing.T) {
    	// AppendRange should collapse each of the new ranges
    	// into the earlier ones (it looks back two ranges), so that
    	// the slice never grows very large.
    	// Note that we are not calling cleanClass.
    	var r []rune
    	for i := rune('A'); i <= 'Z'; i++ {
    		r = appendRange(r, i, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/IntMathTest.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((1 << 30) - 1, -1, Integer.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: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top