Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 231 for RangeTs (0.3 sec)

  1. src/cmd/trace/main.go

    	mux.Handle("/", traceviewer.MainHandler([]traceviewer.View{
    		{Type: traceviewer.ViewProc, Ranges: ranges},
    		// N.B. Use the same ranges for threads. It takes a long time to compute
    		// the split a second time, but the makeup of the events are similar enough
    		// that this is still a good split.
    		{Type: traceviewer.ViewThread, Ranges: ranges},
    	}))
    
    	// Catapult handlers.
    	mux.Handle("/trace", traceviewer.TraceHandler())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    			<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.
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional string rule = 1;
    
      // ranges are the allowed ranges of fs groups.  If you would like to force a single
      // fs group then supply a single range with the same start and end. Required for MustRunAs.
      // +optional
      repeated IDRange ranges = 2;
    }
    
    // HostPortRange defines a range of host ports that will be enabled by a policy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/mpagecache_test.go

    		var ranges []BitRange
    		start, size := uint(0), uint(0)
    		for i := 0; i < 64; i++ {
    			if bits&(1<<i) != 0 {
    				if size == 0 {
    					start = uint(i) + base
    				}
    				size++
    			} else {
    				if size != 0 {
    					ranges = append(ranges, BitRange{start, size})
    					size = 0
    				}
    			}
    		}
    		if size != 0 {
    			ranges = append(ranges, BitRange{start, size})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/TreeRangeSet.java

       * element will be contained in this {@code RangeSet} if and only if it is contained in at least
       * one {@code Range} in {@code ranges}.
       *
       * @since 21.0
       */
      public static <C extends Comparable<?>> TreeRangeSet<C> create(Iterable<Range<C>> ranges) {
        TreeRangeSet<C> result = create();
        result.addAll(ranges);
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeRangeSet.java

       * element will be contained in this {@code RangeSet} if and only if it is contained in at least
       * one {@code Range} in {@code ranges}.
       *
       * @since 21.0
       */
      public static <C extends Comparable<?>> TreeRangeSet<C> create(Iterable<Range<C>> ranges) {
        TreeRangeSet<C> result = create();
        result.addAll(ranges);
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top