Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for BuckHashSys (0.4 sec)

  1. src/runtime/metrics.go

    	mCacheSys      uint64
    	mCacheInUse    uint64
    	buckHashSys    uint64
    	gcMiscSys      uint64
    	otherSys       uint64
    	heapGoal       uint64
    	gcCyclesDone   uint64
    	gcCyclesForced uint64
    }
    
    // compute populates the sysStatsAggregate with values from the runtime.
    func (a *sysStatsAggregate) compute() {
    	a.stacksSys = memstats.stacks_sys.load()
    	a.buckHashSys = memstats.buckhash_sys.load()
    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

    	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.
    	GCSys uint64
    
    	// OtherSys is bytes of memory in miscellaneous off-heap
    	// runtime allocations.
    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/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)
    	fmt.Fprintf(w, "# LastGC = %d\n", s.LastGC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/runtime/heapdump.go

    	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])
    	}
    	dumpint(uint64(m.NumGC))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/runtime/metrics_test.go

    		case "/memory/classes/other:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.OtherSys)
    		case "/memory/classes/profiling/buckets:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.BuckHashSys)
    		case "/memory/classes/total:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.Sys)
    		case "/gc/heap/allocs-by-size:bytes":
    			hist := samples[i].Value.Float64Histogram()
    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

    		{"MemProfileRecord.FreeBytes", Field, 0},
    		{"MemProfileRecord.FreeObjects", Field, 0},
    		{"MemProfileRecord.Stack0", Field, 0},
    		{"MemStats", Type, 0},
    		{"MemStats.Alloc", Field, 0},
    		{"MemStats.BuckHashSys", Field, 0},
    		{"MemStats.BySize", Field, 0},
    		{"MemStats.DebugGC", Field, 0},
    		{"MemStats.EnableGC", Field, 0},
    		{"MemStats.Frees", Field, 0},
    		{"MemStats.GCCPUFraction", Field, 5},
    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 MemProfileRecord struct, Stack0 [32]uintptr
    pkg runtime, type MemStats struct
    pkg runtime, type MemStats struct, Alloc uint64
    pkg runtime, type MemStats struct, BuckHashSys uint64
    pkg runtime, type MemStats struct, BySize [61]struct
    pkg runtime, type MemStats struct, DebugGC bool
    pkg runtime, type MemStats struct, EnableGC bool
    pkg runtime, type MemStats struct, Frees 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