Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 690 for traces (0.23 sec)

  1. src/cmd/cgo/internal/test/testx.go

    	runtime.GC()
    	buf := make([]byte, 65536)
    	trace := string(buf[:runtime.Stack(buf, true)])
    	for _, goroutine := range strings.Split(trace, "\n\n") {
    		if strings.Contains(goroutine, "test.issue7978go") {
    			trace := strings.Split(goroutine, "\n")
    			// look for the expected function in the stack
    			for i := 0; i < depth; i++ {
    				if badFunc != "" && strings.Contains(trace[1+2*i], badFunc) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/trace/gen.go

    			g.Sync()
    		case trace.EventStackSample:
    			g.StackSample(ctx, ev)
    		case trace.EventRangeBegin, trace.EventRangeActive, trace.EventRangeEnd:
    			r := ev.Range()
    			switch r.Scope.Kind {
    			case trace.ResourceGoroutine:
    				g.GoroutineRange(ctx, ev)
    			case trace.ResourceProc:
    				g.ProcRange(ctx, ev)
    			case trace.ResourceNone:
    				g.GlobalRange(ctx, ev)
    			}
    		case trace.EventMetric:
    			g.GlobalMetric(ctx, ev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    		n.fatal("aes-gcm detected nonce overflow - cryptographic wear out has occurred")
    	}
    	binary.LittleEndian.PutUint64(b, incrementingNonce)
    }
    
    func die(msg string) {
    	// nolint:logcheck // we want the stack traces, log flushing, and process exiting logic from FatalDepth
    	klog.FatalDepth(1, msg)
    }
    
    // GenerateKey generates a random key using system randomness.
    func GenerateKey(length int) (key []byte, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/config.go

    		return
    	}
    	if lastErr = s.EgressSelector.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.APIServerTracing) {
    		if lastErr = s.Traces.ApplyTo(genericConfig.EgressSelector, genericConfig); lastErr != nil {
    			return
    		}
    	}
    	// wrap the definitions to revert any changes from disabled features
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. pkg/log/scope.go

    	"sync/atomic"
    	"time"
    
    	"go.uber.org/zap"
    	"go.uber.org/zap/zapcore"
    )
    
    // Scope constrains logging control to a named scope level. It gives users a fine grained control over output severity
    // threshold and stack traces.
    //
    // Scope supports structured logging using WithLabels:
    //
    //	s := RegisterScope("MyScope", "Description", 0)
    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top