Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 673 for spans (0.22 sec)

  1. src/html/template/context.go

    // grammar may contain embedded actions in a template. For instance, the quoted
    // HTML attribute produced by
    //
    //	<div title="Hello {{.World}}">
    //
    // is a single token in HTML's grammar but in a template spans several nodes.
    type state uint8
    
    //go:generate stringer -type state
    
    const (
    	// stateText is parsed character data. An HTML parser is in
    	// this state when its parse position is outside an HTML tag,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

        }
    
        private List<BuildOperationRecord> findCallbackActionBuildOps(String markerOutput) {
            return ops.all(ExecuteDomainObjectCollectionCallbackBuildOperationType, { it.progress.size() == 1 && it.progress[0].details.spans[0].text.startsWith(markerOutput) })
        }
    
        private BuildOperationRecord findCallbackActionBuildOp(String markerOutput) {
            def ops = findCallbackActionBuildOps(markerOutput)
            assert ops.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    	// - any bracket character can belong at most to one pair, the earliest possible one
    	// - any bracket character not part of a pair is treated like an ordinary character
    	// - pairs may nest properly, but their spans may not overlap otherwise
    
    	// Bracket characters with canonical decompositions are supposed to be
    	// treated as if they had been normalized, to allow normalized and non-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        /**
         * Sets the default timeout for complete calls. A value of 0 means no timeout, otherwise values
         * must be between 1 and [Integer.MAX_VALUE] when converted to milliseconds.
         *
         * The call timeout spans the entire call: resolving DNS, connecting, writing the request body,
         * server processing, and reading the response body. If the call requires redirects or retries
         * all must complete within one timeout period.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            and:
            def buildFinished = operations.only(FinishRootBuildTreeBuildOperationType)
            buildFinished.progress.size() == 3
            buildFinished.progress.details.spans.text.flatten() ==~ ["buildA", "buildB", "buildC"].collect { "$message $it${getPlatformLineSeparator()}".toString() }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    	if sc == ec {
    		// Fast path: the allocation doesn't span more than one chunk,
    		// so update this one and if the summary didn't change, return.
    		x := p.summary[len(p.summary)-1][sc]
    		y := p.chunkOf(sc).summarize()
    		if x == y {
    			return
    		}
    		p.summary[len(p.summary)-1][sc] = y
    	} else if contig {
    		// Slow contiguous path: the allocation spans more than one chunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/http.go

      and color.
    
      A colored bar represents an uninterrupted span of execution.
    
      Execution of a goroutine may migrate from one logical processor to another,
      causing a single colored bar to be horizontally continuous but
      vertically displaced.
    </p>
    <p>
      Clicking on a span reveals information about it, such as its
      duration, its causal predecessors and successors, and the stack trace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	assert.NotEmpty(t, runtimeServiceSpans, "syncPod trace should have runtime service spans")
    
    	for _, span := range imageServiceSpans {
    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("image service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    
    	for _, span := range runtimeServiceSpans {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    // In this example:
    //
    //	z := x + y // add them
    //	  <--C-->     <---E-->
    //	    ^
    //	    D
    //
    // intervals C, D and E are inexact.  C is contained by the
    // z-assignment statement, because it spans three of its children (:=,
    // x, +).  So too is the 1-char interval D, because it contains only
    // interior whitespace of the assignment.  E is considered interior
    // whitespace of the BlockStmt containing the assignment.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TreeRangeMap.java

          if (rangeMap.asMapOfRanges().isEmpty()) {
            return;
          }
          Range<K> span = rangeMap.span();
          checkArgument(
              subRange.encloses(span),
              "Cannot putAll rangeMap with span %s into a subRangeMap(%s)",
              span,
              subRange);
          TreeRangeMap.this.putAll(rangeMap);
        }
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top