Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 690 for traces (0.22 sec)

  1. 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)
  2. src/runtime/mklockrank.go

    mheap, mspanSpecial < mheapSpecial;
    mheap, mheapSpecial < globalAlloc;
    
    # Execution tracer events (with a P)
    hchan,
      mheap,
      root,
      sched,
      traceStrings,
      notifyList,
      fin
    # Above TRACE is anything that can create a trace event
    < TRACE
    < trace
    < traceStackTab;
    
    # panic is handled specially. It is implicitly below all other locks.
    NONE < panic;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    // it should be invoked after ev.StageTimestamp has been set appropriately.
    func writeLatencyToAnnotation(ctx context.Context, ev *auditinternal.Event) {
    	// we will track latency in annotation only when the total latency
    	// of the given request exceeds 500ms, this is in keeping with the
    	// traces in rest/handlers for create, delete, update,
    	// get, list, and deletecollection.
    	const threshold = 500 * time.Millisecond
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/cpuprof.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // CPU profiling.
    //
    // The signal handler for the profiling clock tick adds a new stack trace
    // to a log of recent traces. The log is read by a user goroutine that
    // turns it into formatted profile data. If the reader does not keep up
    // with the log, those writes will be recorded as a count of lost records.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/web/http.go

    		// Note: The -v build flag does not mean "print logging information",
    		// despite its historical misuse for this in GOPATH-based go get.
    		// We print extra logging in -x mode instead, which traces what
    		// commands are executed.
    		if cfg.BuildX {
    			fmt.Fprintf(os.Stderr, "# get %s\n", url.Redacted())
    		}
    
    		req, err := http.NewRequest("GET", url.String(), nil)
    		if err != nil {
    			return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K 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/runtime/traceevent.go

    	w := tl.writer()
    	if pp := tl.mp.p.ptr(); pp != nil && !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    		w = w.writeProcStatus(uint64(pp.id), procStatus, pp.trace.inSweep)
    	}
    	if gp := tl.mp.curg; gp != nil && !gp.trace.statusWasTraced(tl.gen) && gp.trace.acquireStatus(tl.gen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top