Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for RangeTs (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/registry/core/rest/storage_core.go

    	Services ServicesConfig
    }
    
    type ProxyConfig struct {
    	Transport           http.RoundTripper
    	KubeletClientConfig kubeletclient.KubeletClientConfig
    }
    
    type ServicesConfig struct {
    	// Service IP ranges
    	ClusterIPRange          net.IPNet
    	SecondaryClusterIPRange net.IPNet
    	NodePortRange           utilnet.PortRange
    
    	IPRepairInterval time.Duration
    }
    
    type rangeRegistries struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    	// TotalTime is the duration of the goroutine's presence in the trace.
    	// Necessarily overlaps with other stats.
    	TotalTime time.Duration
    
    	// Total time the goroutine spent in certain ranges; may overlap
    	// with other stats.
    	RangeTime map[string]time.Duration
    }
    
    func (s GoroutineExecStats) NonOverlappingStats() map[string]time.Duration {
    	stats := map[string]time.Duration{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ContiguousSet.java

    /**
     * A sorted set of contiguous values in a given {@link DiscreteDomain}. Example:
     *
     * <pre>{@code
     * ContiguousSet.create(Range.closed(5, 42), DiscreteDomain.integers())
     * }</pre>
     *
     * <p>Note that because bounded ranges over {@code int} and {@code long} values are so common, this
     * particular example can be written as just:
     *
     * <pre>{@code
     * ContiguousSet.closed(5, 42)
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/types.go

    	// clusters, this can be a comma-separated dual-stack pair of CIDR ranges.). When
    	// DetectLocalMode is set to LocalModeClusterCIDR, kube-proxy will consider
    	// traffic to be local if its source IP is in this range. (Otherwise it is not
    	// used.)
    	ClusterCIDR string
    
    	// nodePortAddresses is a list of CIDR ranges that contain valid node IPs, or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top