Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 659 for aranges (0.26 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // using input ranges.
      bool disable_set_input_nodes_quantization_params = false;
    
      // The default ranges can be used when a tensor doesn't have quantization
      // parameters and couldn't be quantized. Used only for latency tests.
      std::pair<std::optional<double>, std::optional<double>> default_ranges;
    
      // A serialized "QuantizationInfo" object to specify value ranges for some of
      // the tensors with known names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

        def "empty snapshots (#strategy.class.simpleName)"() {
            expect:
            changes(strategy,
                [:],
                [:]
            ) as List == []
    
            where:
            strategy << ALL_STRATEGIES
        }
    
        def "trivial addition (#strategy.class.simpleName)"() {
            expect:
            changes(strategy,
                ["new/one": fingerprint("one")],
                [:]
            ) as List == results
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    			{{end}}
    			</div>
    		</td>
    		{{$Goroutine := .}}
    		{{range $.NonOverlappingStats}}
    			{{$Time := index $Goroutine.NonOverlappingStats .}}
    			<td> {{$Time.String}}</td>
    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    func listenerPredicateExcludePorts(ports []int) *listener.ListenerFilterChainMatchPredicate {
    	ranges := []*listener.ListenerFilterChainMatchPredicate{}
    	for _, p := range ports {
    		ranges = append(ranges, &listener.ListenerFilterChainMatchPredicate{Rule: &listener.ListenerFilterChainMatchPredicate_DestinationPortRange{
    			// Range is [start, end)
    			DestinationPortRange: &envoytype.Int32Range{
    				Start: int32(p),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. docs/logging/README.md

        "X-Amz-Content-Sha256": "STREAMING-AWS4-HMAC-SHA256-PAYLOAD",
        "X-Amz-Date": "20240509T073810Z",
        "X-Amz-Decoded-Content-Length": "228"
      },
      "responseHeader": {
        "Accept-Ranges": "bytes",
        "Content-Length": "0",
        "ETag": "9fe7a344ef4227d3e53751e9d88ce41e",
        "Server": "MinIO",
        "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
        "Vary": "Origin,Accept-Encoding",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    This includes adding the description of the changes to the `accepted-public-api-changes.json` file, and providing a reason for each change.
    You can add the changes to any place in the file, e.g. at the top.
    
    3. Make sure the file with accepted changes is sorted.\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	// Get covering address ranges and disassemble the ranges.
    	ranges, unprocessed := sp.splitIntoRanges(rpt.prof, addrs, flat)
    	sp.handleUnprocessed(addrs, unprocessed)
    
    	// Trim ranges if there are too many.
    	const maxRanges = 25
    	sort.Slice(ranges, func(i, j int) bool {
    		return ranges[i].score > ranges[j].score
    	})
    	if len(ranges) > maxRanges {
    		ranges = ranges[:maxRanges]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. src/unicode/letter_test.go

    	}
    	return r16
    }
    
    func linear(ranges []Range16, r uint16) bool {
    	for i := range ranges {
    		range_ := &ranges[i]
    		if r < range_.Lo {
    			return false
    		}
    		if r <= range_.Hi {
    			return (r-range_.Lo)%range_.Stride == 0
    		}
    	}
    	return false
    }
    
    func binary(ranges []Range16, r uint16) bool {
    	// binary search over ranges
    	lo := 0
    	hi := len(ranges)
    	for lo < hi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/trace/regions.go

    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    overlap with the times from the first table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    	// we'll leak some memory implicitly.
    	ranges := make([]addrRange, 0, len(a))
    	total := uintptr(0)
    	for _, r := range a {
    		ranges = append(ranges, r.addrRange)
    		total += r.Size()
    	}
    	return AddrRanges{addrRanges{
    		ranges:     ranges,
    		totalBytes: total,
    		sysStat:    testSysStat,
    	}, false}
    }
    
    // Ranges returns a copy of the ranges described by the
    // addrRanges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top