Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HeapMarked (0.35 sec)

  1. 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)
  2. 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)
  3. 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