Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 647 for traces (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/trace/annotation.go

    	// can be used across trace enable/disable boundaries,
    	// which complicates the problem.
    	//
    	// For example, consider the following scenario:
    	//   - trace is enabled.
    	//   - trace.WithRegion is called, so a new context ctx
    	//     with a new region is created.
    	//   - trace is disabled.
    	//   - trace is enabled again.
    	//   - trace APIs with the ctx is called. Is the ID in the task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. internal/logger/logger.go

    		if !strings.HasPrefix(file, "<autogenerated>") &&
    			!strings.HasPrefix(funcName, "runtime.") {
    			// Form and append a line of stack trace into a
    			// collection, 'trace', to build full stack trace
    			trace = append(trace, fmt.Sprintf("%v:%v:%v()", file, lineNumber, funcName))
    
    			// Ignore trace logs beyond the following conditions
    			for _, name := range matchingFuncNames {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    // shouldn't result in a doubling of memory usage, even if all converted events
    // are kept alive, as we free batches once we're done with them.
    //
    // The conversion process is lossless.
    
    package trace
    
    import (
    	"errors"
    	"fmt"
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/internal/oldtrace"
    	"io"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    	GCP      // contains GC state
    	ProfileP // contains recording of CPU profile samples
    )
    
    // Trace is the result of Parse.
    type Trace struct {
    	Version version.Version
    
    	// Events is the sorted list of Events in the trace.
    	Events Events
    	// Stacks is the stack traces (stored as slices of PCs), keyed by stack IDs
    	// from the trace.
    	Stacks        map[uint32][]uint64
    	PCs           map[uint64]Frame
    	Strings       map[uint64]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top