Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for totalBytes (0.31 sec)

  1. src/runtime/metrics/description.go

    	},
    	{
    		Name:        "/gc/scan/stack:bytes",
    		Description: "The number of bytes of stack that were scanned last GC cycle.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/total:bytes",
    		Description: "The total amount space that is scannable. Sum of all metrics in /gc/scan.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/stack/starting-size:bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    	/gc/scan/heap:bytes
    		The total amount of heap space that is scannable.
    
    	/gc/scan/stack:bytes
    		The number of bytes of stack that were scanned last GC cycle.
    
    	/gc/scan/total:bytes
    		The total amount space that is scannable. Sum of all metrics in
    		/gc/scan.
    
    	/gc/stack/starting-size:bytes
    		The stack size of new goroutines.
    
    	/godebug/non-default-behavior/execerrdot:events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/runtime/debug/garbage.go

    // the value the runtime attempts to maintain as the limit:
    //
    //	runtime.MemStats.Sys - runtime.MemStats.HeapReleased
    //
    // or in terms of the runtime/metrics package:
    //
    //	/memory/classes/total:bytes - /memory/classes/heap/released:bytes
    //
    // A zero limit or a limit that's lower than the amount of memory
    // used by the Go runtime may cause the garbage collector to run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/gc.go

    				if newTarget == math.MaxInt64 {
    					return
    				}
    				sinkSize = int(newTarget / memLimitUnit)
    			default:
    			}
    		}
    	}()
    	var m [2]metrics.Sample
    	m[0].Name = "/memory/classes/total:bytes"
    	m[1].Name = "/memory/classes/heap/released:bytes"
    
    	// Don't set this too high, because this is a *live heap* target which
    	// is not directly comparable to a total memory limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    otherTree(){const other=this.whichTree===constants.ACTIVE_TREE?constants.PENDING_TREE:constants.ACTIVE_TREE;return this.layerTreeHostImpl.getTree(other);},get gpuMemoryUsageInBytes(){let totalBytes=0;this.iterLayers(function(layer){if(layer.gpuMemoryUsageInBytes!==undefined){totalBytes+=layer.gpuMemoryUsageInBytes;}});return totalBytes;},iterLayers(func,thisArg){const visitedLayers={};function visitLayer(layer,depth,isMask,isReplica){if(visitedLayers[layer.layerId])return;visitedLayers[layer.layerId]=true;f...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top