Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 551 for traces (0.14 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            at org.ClassName2.methodName2(FileName2.java:22)
            at org.ClassName3.methodName3(FileName3.java:33)
    """
        }
    
        def "doesn't show common stack trace elements of parent trace and cause"() {
            testLogging.getShowCauses() >> true
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.noneOf(TestStackTraceFilter)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    	}
    	return w
    }
    
    // makeTraceFrames returns the frames corresponding to pcs. It may
    // allocate and may emit trace events.
    func makeTraceFrames(gen uintptr, pcs []uintptr) []traceFrame {
    	frames := make([]traceFrame, 0, len(pcs))
    	ci := CallersFrames(pcs)
    	for {
    		f, more := ci.Next()
    		frames = append(frames, makeTraceFrame(gen, f))
    		if !more {
    			return frames
    		}
    	}
    }
    
    type traceFrame struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. common/scripts/tracing.sh

    # If running in a prow job, this sets the parent trace to the same value Prow tracing will use, as defined in https://github.com/kubernetes/test-infra/issues/30010
    function tracing::extract_prow_trace() {
      if [[ "${PROW_JOB_ID:-}" != "" ]]; then
        local trace
        trace="$(<<< "$PROW_JOB_ID" tr -d '\-')"
        local span
        span="${trace:0:16}"
        export TRACEPARENT="01-${trace}-${span}-00"
      fi
    }
    
    function _genattrs() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/http.go

    var templMain = template.Must(template.New("").Parse(`
    <html>
    <style>` + CommonStyle + `</style>
    <body>
    <h1>cmd/trace: the Go trace event viewer</h1>
    <p>
      This web server provides various visualizations of an event log gathered during
      the execution of a Go program that uses the <a href='https://pkg.go.dev/runtime/trace'>runtime/trace</a> package.
    </p>
    
    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

            verifyAll(receivedProblem(1)) {
                fqid == 'deprecation:included-build-task'
                contextualLabel == 'Included build task has been deprecated.'
            }
        }
    
        def "collects stack traces for deprecation usages at certain limit, regardless of whether the deprecation has been encountered before for warning mode #mode"() {
            file('settings.gradle') << "rootProject.name = 'root'"
    
            51.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    package trace
    
    import (
    	"cmp"
    	"slices"
    	"strings"
    	"time"
    )
    
    // Summary is the analysis result produced by the summarizer.
    type Summary struct {
    	Goroutines map[GoID]*GoroutineSummary
    	Tasks      map[TaskID]*UserTaskSummary
    }
    
    // GoroutineSummary contains statistics and execution details of a single goroutine.
    // (For v2 traces.)
    type GoroutineSummary struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. pkg/log/options.go

    				s, levelListString))
    
    		stringVar(&o.stackTraceLevels, "log_stacktrace_level", o.stackTraceLevels,
    			fmt.Sprintf("Comma-separated minimum per-scope logging level at which stack traces are captured, in the form of "+
    				"<scope>:<level>,<scope:level>,... where scope can be one of [%s] and level can be one of %s",
    				s, levelListString))
    
    		stringVar(&o.logCallers, "log_caller", o.logCallers,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. doc/next/3-tools.md

    errors with a very large `CGO_LDFLAGS`.
    
    ### Trace {#trace}
    
    <!-- go.dev/issue/65316 -->
    The `trace` tool now better tolerates partially broken traces by attempting to
    recover what trace data it can. This functionality is particularly helpful when
    viewing a trace that was collected during a program crash, since the trace data
    leading up to the crash will now [be recoverable](/issue/65319) under most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/internal/trace/event.go

    	// Category is the category that was passed to runtime/trace.Log or runtime/trace.Logf.
    	Category string
    
    	// Message is the message that was passed to runtime/trace.Log or runtime/trace.Logf.
    	Message string
    }
    
    // Stack represents a stack. It's really a handle to a stack and it's trivially comparable.
    //
    // If two Stacks are equal then their Frames are guaranteed to be identical. If they are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. src/net/http/httptrace/trace.go

    	if trace == nil {
    		panic("nil trace")
    	}
    	old := ContextClientTrace(ctx)
    	trace.compose(old)
    
    	ctx = context.WithValue(ctx, clientEventContextKey{}, trace)
    	if trace.hasNetHooks() {
    		nt := &nettrace.Trace{
    			ConnectStart: trace.ConnectStart,
    			ConnectDone:  trace.ConnectDone,
    		}
    		if trace.DNSStart != nil {
    			nt.DNSStart = func(name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top