Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GOGC (0.08 sec)

  1. src/runtime/mgcpacer.go

    	// For small heaps, this overrides the usual GOGC*live set rule.
    	//
    	// When there is a very small live set but a lot of allocation, simply
    	// collecting when the heap reaches GOGC*live results in many GC
    	// cycles and high total per-GC overhead. This minimum amortizes this
    	// per-GC overhead while keeping the heap reasonably small.
    	//
    	// During initialization this is set to 4MB*GOGC/100. In the case of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    func TestLabelSystemstack(t *testing.T) {
    	// Grab and re-set the initial value before continuing to ensure
    	// GOGC doesn't actually change following the test.
    	gogc := debug.SetGCPercent(100)
    	debug.SetGCPercent(gogc)
    
    	matches := matchAndAvoidStacks(stackContainsLabeled, []string{"runtime.systemstack;key=value"}, avoidFunctions())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // the amount already in use. The proportion is controlled by GOGC environment variable
    // (100 by default). If GOGC=100 and we're using 4M, we'll GC again when we get to 8M
    // (this mark is computed by the gcController.heapGoal method). This keeps the GC cost in
    // linear proportion to the allocation cost. Adjusting GOGC just changes the linear constant
    // (and also the amount of extra memory used).
    
    // Oblets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. 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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top