Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for HeapSys (0.26 sec)

  1. pkg/ctrlz/topics/assets/templates/mem.html

        </tr>
    
        <tr>
            <td>HeapAlloc</td>
            <td id="HeapAlloc">{{.HeapAlloc}} bytes</td>
            <td>Allocated heap objects.</td>
        </tr>
    
        <tr>
            <td>HeapSys</td>
            <td id="HeapSys">{{.HeapSys}} bytes</td>
            <td>Heap memory obtained from the OS.</td>
        </tr>
    
        <tr>
            <td>HeapIdle</td>
            <td id="HeapIdle">{{.HeapIdle}} bytes</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/runtime/malloc_test.go

    			}
    		}
    	}
    
    	if st.Sys != st.HeapSys+st.StackSys+st.MSpanSys+st.MCacheSys+
    		st.BuckHashSys+st.GCSys+st.OtherSys {
    		t.Fatalf("Bad sys value: %+v", *st)
    	}
    
    	if st.HeapIdle+st.HeapInuse != st.HeapSys {
    		t.Fatalf("HeapIdle(%d) + HeapInuse(%d) should be equal to HeapSys(%d), but isn't.", st.HeapIdle, st.HeapInuse, st.HeapSys)
    	}
    
    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

    	//
    	// HeapSys = bytes allocated from the OS for the heap - bytes ultimately used for non-heap purposes
    	// HeapIdle = bytes allocated from the OS for the heap - bytes ultimately used for any purpose
    	//
    	// or
    	//
    	// HeapSys = sys - stacks_inuse - gcWorkBufInUse - gcProgPtrScalarBitsInUse
    	// HeapIdle = sys - stacks_inuse - gcWorkBufInUse - gcProgPtrScalarBitsInUse - heapInUse
    	//
    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/testdata/testprog/gc.go

    	// because we turned the heap into swiss cheese.
    	saved = append(saved, make([]byte, allocTotal/2))
    
    	// heapBacked is an estimate of the amount of physical memory used by
    	// this test. HeapSys is an estimate of the size of the mapped virtual
    	// address space (which may or may not be backed by physical pages)
    	// whereas HeapReleased is an estimate of the amount of bytes returned
    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/runtime/pprof/pprof.go

    	fmt.Fprintf(w, "# Lookups = %d\n", s.Lookups)
    	fmt.Fprintf(w, "# Mallocs = %d\n", s.Mallocs)
    	fmt.Fprintf(w, "# Frees = %d\n", s.Frees)
    
    	fmt.Fprintf(w, "# HeapAlloc = %d\n", s.HeapAlloc)
    	fmt.Fprintf(w, "# HeapSys = %d\n", s.HeapSys)
    	fmt.Fprintf(w, "# HeapIdle = %d\n", s.HeapIdle)
    	fmt.Fprintf(w, "# HeapInuse = %d\n", s.HeapInuse)
    	fmt.Fprintf(w, "# HeapReleased = %d\n", s.HeapReleased)
    	fmt.Fprintf(w, "# HeapObjects = %d\n", s.HeapObjects)
    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/heapdump.go

    	// way too.
    	dumpint(tagMemStats)
    	dumpint(m.Alloc)
    	dumpint(m.TotalAlloc)
    	dumpint(m.Sys)
    	dumpint(m.Lookups)
    	dumpint(m.Mallocs)
    	dumpint(m.Frees)
    	dumpint(m.HeapAlloc)
    	dumpint(m.HeapSys)
    	dumpint(m.HeapIdle)
    	dumpint(m.HeapInuse)
    	dumpint(m.HeapReleased)
    	dumpint(m.HeapObjects)
    	dumpint(m.StackInuse)
    	dumpint(m.StackSys)
    	dumpint(m.MSpanInuse)
    	dumpint(m.MSpanSys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/runtime/metrics_test.go

    			// total mapped heap memory, except if there's an accounting bug.
    			if live := samples[i].Value.Uint64(); live > mstats.HeapSys {
    				t.Errorf("live bytes: %d > heap sys: %d", live, mstats.HeapSys)
    			} else if live == 0 {
    				// Might happen if we don't call runtime.GC() above.
    				t.Error("live bytes is 0")
    			}
    		case "/gc/gomemlimit:bytes":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MemStats.HeapAlloc", Field, 0},
    		{"MemStats.HeapIdle", Field, 0},
    		{"MemStats.HeapInuse", Field, 0},
    		{"MemStats.HeapObjects", Field, 0},
    		{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg runtime, type MemStats struct, HeapInuse uint64
    pkg runtime, type MemStats struct, HeapObjects uint64
    pkg runtime, type MemStats struct, HeapReleased uint64
    pkg runtime, type MemStats struct, HeapSys uint64
    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
    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