Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endCycle (0.14 sec)

  1. src/runtime/export_test.go

    	c.stackScanWork.Add(d.StackScanWork)
    	c.globalsScanWork.Add(d.GlobalsScanWork)
    	c.revise()
    }
    
    func (c *GCController) EndCycle(bytesMarked uint64, assistTime, elapsed int64, gomaxprocs int) {
    	c.assistTime.Store(assistTime)
    	c.endCycle(elapsed, gomaxprocs, false)
    	c.resetLive(bytesMarked)
    	c.commit(false)
    }
    
    func (c *GCController) AddIdleMarkWorker() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer_test.go

    				}
    				t.Log("GC", result.String())
    				results = append(results, result)
    
    				// Run the checker for this test.
    				e.check(t, results)
    
    				c.EndCycle(uint64(nextHeapMarked+bytesAllocatedBlack), assistTime, gcDuration, e.nCores)
    
    				bytesAllocatedBlackLast = bytesAllocatedBlack
    			}
    		})
    	}
    }
    
    type gcExecTest struct {
    	name string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top