Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 139 for RangeTs (0.7 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/liveness/intervals.go

    	}
    	return c2
    }
    
    // Overlaps returns whether any of the component ranges in is overlaps
    // with some range in is2.
    func (is Intervals) Overlaps(is2 Intervals) bool {
    	// check for empty intervals
    	if len(is) == 0 || len(is2) == 0 {
    		return false
    	}
    	li := len(is)
    	li2 := len(is2)
    	// check for completely disjoint ranges
    	if is[li-1].en <= is2[0].st ||
    		is[0].st >= is2[li2-1].en {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/trace/regions.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
    - 14.3K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/mmu.go

    	"strings"
    	"sync"
    	"time"
    )
    
    type MutatorUtilFunc func(trace.UtilFlags) ([][]trace.MutatorUtil, error)
    
    func MMUHandlerFunc(ranges []Range, f MutatorUtilFunc) http.HandlerFunc {
    	mmu := &mmu{
    		cache:  make(map[trace.UtilFlags]*mmuCacheEntry),
    		f:      f,
    		ranges: ranges,
    	}
    	return func(w http.ResponseWriter, r *http.Request) {
    		switch r.FormValue("mode") {
    		case "plot":
    			mmu.HandlePlot(w, r)
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/emitter.go

    				s.Ranges = append(s.Ranges, Range{
    					Name:      fmt.Sprintf("%v-%v", startTime, endTime),
    					Start:     start,
    					End:       i + 1,
    					StartTime: int64(startTime),
    					EndTime:   int64(endTime),
    				})
    				start = i + 1
    				frames = make(map[string]format.Frame)
    				framesSize = 0
    				eventsSize = 0
    			}
    			if len(s.Ranges) <= 1 {
    				s.Ranges = nil
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top