Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 125 for traceback (0.17 sec)

  1. src/runtime/tracebuf.go

    	pos      int       // next write offset in arr
    	lenPos   int       // position of batch length value
    }
    
    // traceBuf is per-M tracing buffer.
    //
    // TODO(mknyszek): Rename traceBuf to traceBatch, since they map 1:1 with event batches.
    type traceBuf struct {
    	_ sys.NotInHeap
    	traceBufHeader
    	arr [64<<10 - unsafe.Sizeof(traceBufHeader{})]byte // underlying buffer for traceBufHeader.buf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/runtime/traceevent.go

    // stack takes a stack trace skipping the provided number of frames.
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    func (tl traceLocker) stack(skip int) traceArg {
    	return traceArg(traceStack(skip, nil, tl.gen))
    }
    
    // startPC takes a start PC for a goroutine and produces a unique
    // stack ID for it.
    //
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/pcln.go

    func (s *pcinlineState) addBranch(ctxt *Link, globalIndex int) int {
    	if globalIndex < 0 {
    		return -1
    	}
    
    	localIndex, ok := s.globalToLocal[globalIndex]
    	if ok {
    		return localIndex
    	}
    
    	// Since tracebacks don't include column information, we could
    	// use one node for multiple calls of the same function on the
    	// same line (e.g., f(x) + f(y)). For now, we use one node for
    	// each inlined call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    		"GOEXE=" + cfg.ExeSuffix,
    		"GOEXPERIMENT=" + os.Getenv("GOEXPERIMENT"),
    		"GOOS=" + runtime.GOOS,
    		"TESTGO_GOHOSTOS=" + goHostOS,
    		"GOPROXY=" + proxyURL,
    		"GOPRIVATE=",
    		"GOROOT=" + testGOROOT,
    		"GOTRACEBACK=system",
    		"TESTGONETWORK=panic", // allow only local connections by default; the [net] condition resets this
    		"TESTGO_GOROOT=" + testGOROOT,
    		"TESTGO_EXE=" + testGo,
    		"TESTGO_VCSTEST_HOST=" + httpURL.Host,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	// To help debugging, immediately log version
    	logger.Info("Starting", "version", version.Get())
    
    	logger.Info("Golang settings", "GOGC", os.Getenv("GOGC"), "GOMAXPROCS", os.Getenv("GOMAXPROCS"), "GOTRACEBACK", os.Getenv("GOTRACEBACK"))
    
    	// Start events processing pipeline.
    	c.EventBroadcaster.StartStructuredLogging(0)
    	c.EventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: c.Client.CoreV1().Events("")})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/func.go

    }
    
    // A ScopeID represents a lexical scope within a function.
    type ScopeID int32
    
    const (
    	funcDupok      = 1 << iota // duplicate definitions ok
    	funcWrapper                // hide frame from users (elide in tracebacks, don't count as a frame for recover())
    	funcABIWrapper             // is an ABI wrapper (also set flagWrapper)
    	funcNeedctxt               // function uses context register (has closure variables)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    	// To help debugging, immediately log version
    	klog.InfoS("Kubelet version", "kubeletVersion", version.Get())
    
    	klog.InfoS("Golang settings", "GOGC", os.Getenv("GOGC"), "GOMAXPROCS", os.Getenv("GOMAXPROCS"), "GOTRACEBACK", os.Getenv("GOTRACEBACK"))
    
    	if err := initForOS(s.KubeletFlags.WindowsService, s.KubeletFlags.WindowsPriorityClass); err != nil {
    		return fmt.Errorf("failed OS init: %w", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    	// To help debugging, immediately log version
    	logger.Info("Version info", "version", version.Get())
    
    	logger.Info("Golang settings", "GOGC", os.Getenv("GOGC"), "GOMAXPROCS", os.Getenv("GOMAXPROCS"), "GOTRACEBACK", os.Getenv("GOTRACEBACK"))
    
    	proxymetrics.RegisterMetrics(s.Config.Mode)
    
    	// TODO(vmarmol): Use container config for this.
    	var oomAdjuster *oom.OOMAdjuster
    	if s.Config.OOMScoreAdj != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows_test.go

    	}
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.CleanCmdEnv(testenv.Command(t, exe, "-test.run=TestWERDialogue"))
    	cmd.Env = append(cmd.Env, "TEST_WER_DIALOGUE=1", "GOTRACEBACK=wer")
    	// Child process should not open WER dialogue, but return immediately instead.
    	// The exit code can't be reliably tested here because Windows can change it.
    	_, err = cmd.CombinedOutput()
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		// the signal to the os/signal API. If nothing is looking
    		// for (or explicitly ignoring) SIGSEGV, then it crashes.
    		// Because the Go runtime is invoked via a c-archive,
    		// it treats this as GOTRACEBACK=crash, meaning that it
    		// dumps a stack trace for all goroutines, which it does
    		// by raising SIGQUIT. The effect is that we will see the
    		// program die with SIGQUIT in that case, not SIGSEGV.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top