Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 231 for RangeTs (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/kubeadm/app/constants/constants_test.go

    			expected:      "192.168.10.0/24",
    			expectedError: false,
    			name:          "valid: valid <IPv4,IPv6> ranges from dual-stack",
    		},
    		{
    			svcSubnetList: "fd03::/112,192.168.10.0/24",
    			expected:      "fd03::/112",
    			expectedError: false,
    			name:          "valid: valid <IPv6,IPv4> ranges from dual-stack",
    		},
    		{
    			svcSubnetList: "192.168.10.0/24,fd03:x::/112",
    			expected:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/trace/gstate.go

    	// a stack for every state transition event.
    	lastStopStack trace.Stack
    
    	// activeRanges is the set of all active ranges on the goroutine.
    	activeRanges map[string]activeRange
    
    	// completedRanges is a list of ranges that completed since before the
    	// goroutine stopped executing. These are flushed on every stop or block.
    	completedRanges []completedRange
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    * If no ranges are involved, then the highest version that is not rejected will be selected.
    ** If a version declared as `strictly` is lower than that version, selection will fail.
    * If ranges are involved:
    ** If there is a non range version that falls within the specified ranges or is higher than their upper bound, it will be selected.
    ** If there are only ranges, the selection will depend on the intersection of ranges:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                response {
                    status = 200
                    headers = [
                        'Date'            : DATE_HEADER,
                        'Server'          : SERVER_GCS,
                        'Accept-Ranges'   : 'bytes',
                        'Content-Type'    : 'application/json; charset=utf-8',
                    ]
                    body = {
                        """
                        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeRangeMap.java

        }
      }
    
      @Override
      public void putCoalescing(Range<K> range, V value) {
        // don't short-circuit if the range is empty - it may be between two ranges we can coalesce.
        if (entriesByLowerBound.isEmpty()) {
          put(range, value);
          return;
        }
    
        Range<K> coalescedRange = coalescedRange(range, checkNotNull(value));
        put(coalescedRange, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/http.go

    </p>
    
    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    {{if $view.Ranges}}
    {{if eq $i 0}}
    <p>
      Large traces are split into multiple sections of equal data size
      (not duration) to avoid overwhelming the visualizer.
    </p>
    {{end}}
    <ul>
    	{{range $index, $e := $view.Ranges}}
    		<li><a href="{{$view.URL $index}}">View trace by {{$view.Type}} ({{$e.Name}})</a></li>
    	{{end}}
    </ul>
    {{else}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top