Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 259 for traces (0.18 sec)

  1. 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)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // profile.
    //
    // profilez samples are a repeated sequence of stack frames of the
    // form:
    //
    //	1st word -- The number of times this stack was encountered.
    //	2nd word -- The size of the stack (StackSize).
    //	3rd word -- The first address on the stack.
    //	...
    //	StackSize + 2 -- The last address on the stack
    //
    // The last stack trace is of the form:
    //
    //	1st word -- 0
    //	2nd word -- 1
    //	3rd word -- 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/emitter.go

    			size := eventSz{Time: v.Time, Sz: cw.size + 1} // +1 for ",".
    			// Add referenced stack frames. Their size is computed
    			// in flush, where we can dedup across events.
    			WalkStackFrames(allFrames, v.Stack, func(id int) {
    				size.Frames = append(size.Frames, id)
    			})
    			WalkStackFrames(allFrames, v.EndStack, func(id int) {
    				size.Frames = append(size.Frames, id) // This may add duplicates. We'll dedup later.
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/options_test.go

    		ProxyClientKeyFile:      "/var/run/kubernetes/proxy.key",
    		ProxyClientCertFile:     "/var/run/kubernetes/proxy.crt",
    		Metrics:                 &metrics.Options{},
    		Logs:                    logs.NewOptions(),
    		Traces: &apiserveroptions.TracingOptions{
    			ConfigFile: "/var/run/kubernetes/tracing_config.yaml",
    		},
    		AggregatorRejectForwardingRedirects: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"text":     {report.Text, nil, nil, false, "Outputs top entries in text form", reportHelp("text", true, true)},
    	"top":      {report.Text, nil, nil, false, "Outputs top entries in text form", reportHelp("top", true, true)},
    	"traces":   {report.Traces, nil, nil, false, "Outputs all profile samples in text form", ""},
    	"tree":     {report.Tree, nil, nil, false, "Outputs a text rendering of call graph", reportHelp("tree", true, true)},
    
    	// Save binary formats to a file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. doc/godebug.md

    profile](/pkg/runtime/pprof#Profile). Contention on these locks is always
    reported at `runtime._LostContendedRuntimeLock`. Complete stack traces of
    runtime locks can be enabled with the [`runtimecontentionstacks`
    setting](/pkg/runtime#hdr-Environment_Variable). These stack traces have
    non-standard semantics, see setting documentation for details.
    
    Go 1.22 added a new [`crypto/x509.Certificate`](/pkg/crypto/x509/#Certificate)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            expect:
            result.output == output
            result.normalizedOutput == output
            result.error == error
        }
    
        def "finds stack traces when present"() {
            def output = '''
    * What went wrong:
    A problem occurred evaluating root project '4j0h2'.
    org.gradle.api.GradleScriptException: A problem occurred evaluating root project '4j0h2'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/options/options_test.go

    			ProxyClientKeyFile:      "/var/run/kubernetes/proxy.key",
    			ProxyClientCertFile:     "/var/run/kubernetes/proxy.crt",
    			Metrics:                 &metrics.Options{},
    			Logs:                    logs.NewOptions(),
    			Traces: &apiserveroptions.TracingOptions{
    				ConfigFile: "/var/run/kubernetes/tracing_config.yaml",
    			},
    			AggregatorRejectForwardingRedirects: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope.h

      /// status as is without performing GraphDef conversion. If
      /// `include_debug_info` is true, populate the `debug_info` field of the
      /// GraphDef from stack traces in this Graph.
      Status ToGraphDef(GraphDef* gdef, bool include_debug_info = false) const;
    
      // START_SKIP_DOXYGEN
    
      /// If status() is OkStatus(), construct a Graph object using `opts` as the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. 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)
Back to top