Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HeapMarked (0.14 sec)

  1. src/runtime/mgcpacer.go

    	// that is scannable.
    	globalsScan atomic.Uint64
    
    	// heapMarked is the number of bytes marked by the previous
    	// GC. After mark termination, heapLive == heapMarked, but
    	// unlike heapLive, heapMarked does not change until the
    	// next mark termination.
    	heapMarked uint64
    
    	// heapScanWork is the total heap scan work performed this cycle.
    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/export_test.go

    	trigger, _ := c.trigger()
    	if c.heapMarked > trigger {
    		trigger = c.heapMarked
    	}
    	c.maxStackScan.Store(stackSize)
    	c.globalsScan.Store(globalsSize)
    	c.heapLive.Store(trigger)
    	c.heapScan.Add(int64(float64(trigger-c.heapMarked) * scannableFrac))
    	c.startCycle(0, gomaxprocs, gcTrigger{kind: gcTriggerHeap})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer_test.go

    				}
    
    				// Put together the results, log them, and concatenate them.
    				result := gcCycleResult{
    					cycle:         i + 1,
    					heapLive:      c.HeapMarked(),
    					heapScannable: int64(float64(int64(c.HeapMarked())-bytesAllocatedBlackLast) * cycle.scannableFrac),
    					heapTrigger:   c.Triggered(),
    					heapPeak:      c.HeapLive(),
    					heapGoal:      c.HeapGoal(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. src/runtime/metrics.go

    			},
    		},
    		"/gc/heap/live:bytes": {
    			deps: makeStatDepSet(heapStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = gcController.heapMarked
    			},
    		},
    		"/gc/heap/objects:objects": {
    			deps: makeStatDepSet(heapStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top