Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 690 for traces (0.5 sec)

  1. src/runtime/panic.go

    		return true
    	case 1:
    		// Something failed while panicking.
    		// Just print a stack trace and exit.
    		gp.m.dying = 2
    		print("panic during panic\n")
    		return false
    	case 2:
    		// This is a genuine bug in the runtime, we couldn't even
    		// print the stack trace successfully.
    		gp.m.dying = 3
    		print("stack trace unavailable\n")
    		exit(4)
    		fallthrough
    	default:
    		// Can't even print! Just exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// For stats, check if this GC was forced by the user.
    	// Update it under gcsema to avoid gctrace getting wrong values.
    	work.userForced = trigger.kind == gcTriggerCycle
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GCStart()
    		traceRelease(trace)
    	}
    
    	// Check that all Ps have finished deferred mcache flushes.
    	for _, p := range allp {
    		if fg := p.mcache.flushGen.Load(); fg != mheap_.sweepgen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	}
    	xremoveall(workdir)
    }
    
    // Remove trailing spaces.
    func chomp(s string) string {
    	return strings.TrimRight(s, " \t\r\n")
    }
    
    // findgoversion determines the Go version to use in the version string.
    // It also parses any other metadata found in the version file.
    func findgoversion() string {
    	// The $GOROOT/VERSION file takes priority, for distributions
    	// without the source repo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.tracer.lightstep.address", "meshConfig.defaultConfig.tracing.lightstep.address", ""},
    		{"Values.global.tracer.lightstep.accessToken", "meshConfig.defaultConfig.tracing.lightstep.accessToken", ""},
    		{"Values.global.tracer.zipkin.address", "meshConfig.defaultConfig.tracing.zipkin.address", nil},
    		{"Values.global.tracer.datadog.address", "meshConfig.defaultConfig.tracing.datadog.address", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	}
    	// How much to try. These defaults take about 1 seconds
    	// on a 2012 MacBook Pro. The ones in short mode take
    	// about 0.1 seconds.
    	tries := 10
    	count := 1000000
    	if testing.Short() {
    		tries = 1
    	}
    	for try := 0; try < tries; try++ {
    		var prof bytes.Buffer
    		if err := StartCPUProfile(&prof); err != nil {
    			t.Fatal(err)
    		}
    		for i := 0; i < count; i++ {
    			runtime.Gosched()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/race.go

    // or run tests. This is a non-test file to hold cases that (used
    // to) trigger compiler data races, so they will be exercised on
    // the racecompile builder.
    //
    // This package is not imported so functions here are not included
    // in the actual compiler.
    
    // Issue 55357: data race when building multiple instantiations of
    // generic closures with _ parameters.
    func Issue55357() {
    	type U struct {
    		A int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 22:16:41 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/internal/fuzz/trace.go

    Cuong Manh Le <******@****.***> 1665464211 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // If there are no locations in the stack trace, fall back to just a
        // NameLoc with no child.
        if (locations.empty()) return mlir::NameLoc::get(name_loc_id);
    
        // Use the front FileLineColLoc to generate a NameLoc.
        mlir::Location node_name_loc =
            mlir::NameLoc::get(name_loc_id, locations.front());
    
        // If there are more locations then generate a stack trace, otherwise just
        // return the name loc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/runtime/tracestatus.go

    		print("runtime: goid=", goid, "\n")
    		throw("attempted to trace a bad status for a goroutine")
    	}
    
    	// Trace the status.
    	if stackID == 0 {
    		w = w.event(traceEvGoStatus, traceArg(goid), traceArg(uint64(mid)), traceArg(status))
    	} else {
    		w = w.event(traceEvGoStatusStack, traceArg(goid), traceArg(uint64(mid)), traceArg(status), traceArg(stackID))
    	}
    
    	// Trace any special ranges that are in-progress.
    	if markAssist {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      UnitTest();
    
      // D'tor
      virtual ~UnitTest();
    
      // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
      // Google Test trace stack.
      void PushGTestTrace(const internal::TraceInfo& trace)
          GTEST_LOCK_EXCLUDED_(mutex_);
    
      // Pops a trace from the per-thread Google Test trace stack.
      void PopGTestTrace()
          GTEST_LOCK_EXCLUDED_(mutex_);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top