Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for RangeTs (3.92 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

        ).and(
            versions: [FIXED_11, RANGE_10_12, RANGE_11_13], // Intersecting ranges with shared fixed version
            expected: "11",
            expectedStrict: ["11", "11", "11"]
        ).and(
            ignore: "Resolution is currently order-dependent (and should not be!)",
            versions: [FIXED_11, RANGE_10_12, RANGE_12_14], // Intersecting ranges with unshared fixed version
            expected: "12",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  2. src/image/color/ycbcr.go

    	// YCbCr.RGBA method (16 bit color output).
    	//
    	// The solution is to make the rounding adjustment non-constant, and equal
    	// to 257*Y', which ranges over [0, 1<<16-1] as Y' ranges over [0, 255].
    	// YY1 is then defined as:
    	//	YY1 = 65536*Y' + 257*Y'
    	// or equivalently:
    	//	YY1 = Y' * 0x10101
    	yy1 := int32(y) * 0x10101
    	cb1 := int32(cb) - 128
    	cr1 := int32(cr) - 128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                        'Date': DATE_HEADER,
                        'ETag': { calculateEtag(file) },
                        'Server': SERVER_AMAZON_S3,
                        'Accept-Ranges': 'bytes',
                        'Content-Type': 'application/octet-stream',
                        'Content-Length': "0",
                        'Last-Modified': RCF_822_DATE_FORMAT.print(new Date().getTime())
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top