Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 640 for span1 (0.07 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/StyledTextOutputEventTest.groovy

            List spans = [new StyledTextOutputEvent.Span(StyledTextOutput.Style.UserInput, 'UserInput'),
                    new StyledTextOutputEvent.Span(StyledTextOutput.Style.Normal, 'Normal'),
                    new StyledTextOutputEvent.Span(StyledTextOutput.Style.Header, 'Header')
            ]
            def event = new StyledTextOutputEvent(100, 'category', LogLevel.LIFECYCLE, null, spans)
    
            when:
            event.render(output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/mgcsweep.go

    //   can free a whole span if none of the objects are marked, but that
    //   isn't its goal. This can be driven either synchronously by
    //   mcentral.cacheSpan for mcentral spans, or asynchronously by
    //   sweepone, which looks at all the mcentral lists.
    //
    // * The span reclaimer looks for spans that contain no marked objects
    //   and frees whole spans. This is a separate algorithm because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/zipkin/kube.go

    			scopes.Framework.Debugf("cannot parse or cannot find spans in trace object %+v", t)
    			continue
    		}
    		var spans []Span
    		for _, obj := range spanObjs {
    			newSpan := buildSpan(obj)
    			spans = append(spans, newSpan)
    		}
    		for p := range spans {
    			for c := range spans {
    				if spans[c].ParentSpanID == spans[p].SpanID {
    					spans[p].ChildSpans = append(spans[p].ChildSpans, &spans[c])
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/zipkin/zipkin.go

    // TODO(bianpengyuan) consider using zipkin proto api https://github.com/istio/istio/issues/13926
    type Span struct {
    	SpanID       string
    	ParentSpanID string
    	ServiceName  string
    	Name         string
    	ChildSpans   []*Span
    }
    
    // Trace represents a trace by a collection of spans which all belong to that trace
    type Trace struct {
    	Spans []Span
    }
    
    // New returns a new instance of zipkin.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 01:09:12 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. releasenotes/notes/tracing-canonical-service.yaml

    issue:
      - 28801
    
    releaseNotes:
    - |
      **Added** canonical service tags to Envoy-generated trace spans.
    upgradeNotes:
      - title: Service Tags added to trace spans
        content: |
          Istio now configures Envoy to include tags identifying the canonical service for a workload in generated trace spans.
    
          This will lead to a small increase in storage per span for tracing backends.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 582 bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/StyledTextOutputEventSerializer.java

            OperationIdentifier buildOperationId = decoder.readBoolean() ? new OperationIdentifier(decoder.readSmallLong()) : null;
            List<StyledTextOutputEvent.Span> spans = spanSerializer.read(decoder);
            return new StyledTextOutputEvent(timestamp, category, logLevel, buildOperationId, spans);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/runtime/mspanset.go

    	// this block. This number is used to help determine when a block
    	// may be safely recycled.
    	popped atomic.Uint32
    
    	// spans is the set of spans in this block.
    	spans [spanSetBlockEntries]atomicMSpanPointer
    }
    
    // push adds span s to buffer b. push is safe to call concurrently
    // with other push and pop operations.
    func (b *spanSet) push(s *mspan) {
    	// Obtain our slot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/StyledLabel.java

    import java.util.List;
    
    /**
     * A label where its text can be styled.
     */
    public interface StyledLabel extends Label {
        void setText(List<StyledTextOutputEvent.Span> spans);
        void setText(StyledTextOutputEvent.Span span);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 958 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ProgressLogEventGenerator.java

            }
    
            private StyledTextOutputEvent styledTextEvent(long timestamp, StyledTextOutputEvent.Span... spans) {
                return new StyledTextOutputEvent(timestamp, category, LogLevel.LIFECYCLE, buildOperationIdentifier, Arrays.asList(spans));
            }
    
            private void doOutput(RenderableOutputEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/runtime/mcache.go

    		c = pp.mcache
    	}
    	return c
    }
    
    // refill acquires a new span of span class spc for c. This span will
    // have at least one free object. The current span in c must be full.
    //
    // Must run in a non-preemptible context since otherwise the owner of
    // c could change.
    func (c *mcache) refill(spc spanClass) {
    	// Return the current cached span to the central lists.
    	s := c.alloc[spc]
    
    	if s.allocCount != s.nelems {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top