Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 647 for traces (0.17 sec)

  1. src/cmd/trace/gstate.go

    package main
    
    import (
    	"fmt"
    	"internal/trace"
    	"internal/trace/traceviewer"
    	"internal/trace/traceviewer/format"
    	"strings"
    )
    
    // resource is a generic constraint interface for resource IDs.
    type resource interface {
    	trace.GoID | trace.ProcID | trace.ThreadID
    }
    
    // noResource indicates the lack of a resource.
    const noResource = -1
    
    // gState represents the trace viewer state of a goroutine in a trace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	"github.com/google/pprof/profile"
    )
    
    // Output formats.
    const (
    	Callgrind = iota
    	Comments
    	Dis
    	Dot
    	List
    	Proto
    	Raw
    	Tags
    	Text
    	TopProto
    	Traces
    	Tree
    	WebList
    )
    
    // Options are the formatting and filtering options used to generate a
    // profile.
    type Options struct {
    	OutputFormat int
    
    	CumSort       bool
    	CallTree      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    		buf.link = trace.empty
    		trace.empty = buf
    		trace.reading = nil
    	}
    	// Write trace header.
    	if !trace.headerWritten {
    		trace.headerWritten = true
    		unlock(&trace.lock)
    		return []byte("go 1.23 trace\x00\x00\x00"), false
    	}
    
    	// Read the next buffer.
    
    	if trace.readerGen.Load() == 0 {
    		trace.readerGen.Store(1)
    	}
    	var gen uintptr
    	for {
    		assertLockHeld(&trace.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

    import java.util.Set;
    import java.util.TreeSet;
    import java.util.regex.Pattern;
    
    public class OutputScrapingExecutionResult implements ExecutionResult {
        // This monster is to find lines in our logs that look like stack traces
        // We want to match lines that contain just packages and classes:
        // at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.lambda$executeIfValid$1(ExecuteActionsTaskExecuter.java:145)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

              return Lists.<LockGraphNode>newArrayListWithCapacity(3);
            }
          };
    
      /**
       * A Throwable used to record a stack trace that illustrates an example of a specific lock
       * acquisition ordering. The top of the stack trace is truncated such that it starts with the
       * acquisition of the lock in question, e.g.
       *
       * <pre>
       * com...ExampleStackTrace: LockB -&gt; LockC
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

            || (stimuli.length >= 5 && removes > 2)) {
          // removes are the most expensive thing to test, since they often throw exceptions with stack
          // traces, so we test them a bit less aggressively
          return;
        }
    
        MultiExceptionListIterator reference = new MultiExceptionListIterator(expectedElements);
        I target = newTargetIterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tracing.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	envoyDatadog       = "envoy.tracers.datadog"
    	envoyOpenTelemetry = "envoy.tracers.opentelemetry"
    	envoySkywalking    = "envoy.tracers.skywalking"
    	envoyZipkin        = "envoy.tracers.zipkin"
    )
    
    // this is used for testing. it should not be changed in regular code.
    var clusterLookupFn = model.LookupCluster
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

        public static final String SYSPROP = "org.gradle.internal.operations.trace";
    
        /**
         * A list of either details or result class names, delimited by {@link #FILTER_SEPARATOR},
         * that will be captured by this trace. When enabled, only operations matching this filter
         * will be captured. This enables capturing a build operation traces of larger builds that
         * would otherwise be too large to capture.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    			{trace.EventTaskBegin, trace.TaskID(1), []string{"task0"}},
    			{trace.EventRegionBegin, trace.TaskID(1), []string{"region0"}},
    			{trace.EventRegionBegin, trace.TaskID(1), []string{"region1"}},
    			{trace.EventLog, trace.TaskID(1), []string{"key0", "0123456789abcdef"}},
    			{trace.EventRegionEnd, trace.TaskID(1), []string{"region1"}},
    			{trace.EventRegionEnd, trace.TaskID(1), []string{"region0"}},
    			{trace.EventTaskEnd, trace.TaskID(1), []string{"task0"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

    class DependencyInsightReportVariantDetailsIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireOwnGradleUserHomeDir()
    
            // detector confuses attributes with stack traces
            executer.withStackTraceChecksDisabled()
            new ResolveTestFixture(buildFile).addDefaultVariantDerivationStrategy()
        }
    
        def "shows compileClasspath details"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top