Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for MCacheSys (0.23 sec)

  1. src/runtime/metrics.go

    		},
    		"/memory/classes/metadata/mcache/free:bytes": {
    			deps: makeStatDepSet(sysStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = in.sysStats.mCacheSys - in.sysStats.mCacheInUse
    			},
    		},
    		"/memory/classes/metadata/mcache/inuse:bytes": {
    			deps: makeStatDepSet(sysStatsDep),
    			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)
  2. src/runtime/malloc_test.go

    		"StackInuse": {nz, le(1e10)}, "StackSys": {nz, le(1e10)},
    		"MSpanInuse": {nz, le(1e10)}, "MSpanSys": {nz, le(1e10)},
    		"MCacheInuse": {nz, le(1e10)}, "MCacheSys": {nz, le(1e10)},
    		"BuckHashSys": {nz, le(1e10)}, "GCSys": {nz, le(1e10)}, "OtherSys": {nz, le(1e10)},
    		"NextGC": {nz, le(1e10)}, "LastGC": {nz},
    		"PauseTotalNs": {le(1e11)}, "PauseNs": nil, "PauseEnd": nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	// structures.
    	MSpanSys uint64
    
    	// MCacheInuse is bytes of allocated mcache structures.
    	MCacheInuse uint64
    
    	// MCacheSys is bytes of memory obtained from the OS for
    	// mcache structures.
    	MCacheSys uint64
    
    	// BuckHashSys is bytes of memory in profiling bucket hash tables.
    	BuckHashSys uint64
    
    	// GCSys is bytes of memory in garbage collection metadata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    	dumpint(m.HeapInuse)
    	dumpint(m.HeapReleased)
    	dumpint(m.HeapObjects)
    	dumpint(m.StackInuse)
    	dumpint(m.StackSys)
    	dumpint(m.MSpanInuse)
    	dumpint(m.MSpanSys)
    	dumpint(m.MCacheInuse)
    	dumpint(m.MCacheSys)
    	dumpint(m.BuckHashSys)
    	dumpint(m.GCSys)
    	dumpint(m.OtherSys)
    	dumpint(m.NextGC)
    	dumpint(m.LastGC)
    	dumpint(m.PauseTotalNs)
    	for i := 0; i < 256; i++ {
    		dumpint(m.PauseNs[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    	fmt.Fprintf(w, "# Stack = %d / %d\n", s.StackInuse, s.StackSys)
    	fmt.Fprintf(w, "# MSpan = %d / %d\n", s.MSpanInuse, s.MSpanSys)
    	fmt.Fprintf(w, "# MCache = %d / %d\n", s.MCacheInuse, s.MCacheSys)
    	fmt.Fprintf(w, "# BuckHashSys = %d\n", s.BuckHashSys)
    	fmt.Fprintf(w, "# GCSys = %d\n", s.GCSys)
    	fmt.Fprintf(w, "# OtherSys = %d\n", s.OtherSys)
    
    	fmt.Fprintf(w, "# NextGC = %d\n", s.NextGC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/runtime/metrics_test.go

    		case "/memory/classes/heap/stacks:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.StackInuse)
    		case "/memory/classes/metadata/mcache/free:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.MCacheSys-mstats.MCacheInuse)
    		case "/memory/classes/metadata/mcache/inuse:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.MCacheInuse)
    		case "/memory/classes/metadata/mspan/free:bytes":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MemStats.HeapReleased", Field, 0},
    		{"MemStats.HeapSys", Field, 0},
    		{"MemStats.LastGC", Field, 0},
    		{"MemStats.Lookups", Field, 0},
    		{"MemStats.MCacheInuse", Field, 0},
    		{"MemStats.MCacheSys", Field, 0},
    		{"MemStats.MSpanInuse", Field, 0},
    		{"MemStats.MSpanSys", Field, 0},
    		{"MemStats.Mallocs", Field, 0},
    		{"MemStats.NextGC", Field, 0},
    		{"MemStats.NumForcedGC", Field, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg runtime, type MemStats struct, LastGC uint64
    pkg runtime, type MemStats struct, Lookups uint64
    pkg runtime, type MemStats struct, MCacheInuse uint64
    pkg runtime, type MemStats struct, MCacheSys uint64
    pkg runtime, type MemStats struct, MSpanInuse uint64
    pkg runtime, type MemStats struct, MSpanSys uint64
    pkg runtime, type MemStats struct, Mallocs uint64
    pkg runtime, type MemStats struct, NextGC uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top