Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for HeapObjects (0.19 sec)

  1. test/fixedbugs/issue9110.go

    			time.Sleep(1 * time.Millisecond)
    		}
    	}
    
    	runtime.GC()
    
    	runtime.ReadMemStats(&stats2)
    
    	if int(stats2.HeapObjects)-int(stats1.HeapObjects) > 20 { // normally at most 1 or 2; was 300 with leak
    		print("BUG: object leak: ", stats.HeapObjects, " -> ", stats1.HeapObjects, " -> ", stats2.HeapObjects, "\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/cgonoescape.go

    	preHeapObjects := stats.HeapObjects
    
    	for i := 0; i < num; i++ {
    		withNoEscape()
    	}
    
    	runtime.ReadMemStats(&stats)
    	nowHeapObjects := stats.HeapObjects
    
    	if nowHeapObjects-preHeapObjects >= num {
    		fmt.Printf("too many heap objects allocated, pre: %v, now: %v\n", preHeapObjects, nowHeapObjects)
    	}
    
    	runtime.ReadMemStats(&stats)
    	preHeapObjects = stats.HeapObjects
    
    	for i := 0; i < num; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 16:43:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. test/gc2.go

    		if i%100 == 0 {
    			for j := 0; j < 4; j++ {
    				runtime.GC()
    				runtime.Gosched()
    				runtime.GC()
    				runtime.Gosched()
    			}
    		}
    	}
    
    	runtime.ReadMemStats(memstats)
    	obj := int64(memstats.HeapObjects - st.HeapObjects)
    	if obj > N/5 {
    		fmt.Println("too many objects left:", obj)
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 977 bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/assets/templates/mem.html

        <tr>
            <td>HeapReleased</td>
            <td id="HeapReleased">{{.HeapReleased}} bytes</td>
            <td>Physical memory returned to the OS.</td>
        </tr>
    
        <tr>
            <td>HeapObjects</td>
            <td id="HeapObjects">{{.HeapObjects}} objects</td>
            <td>Number of allocated heap objects.</td>
        </tr>
    
        <tr>
            <td>StackInuse</td>
            <td id="StackInuse">{{.StackInuse}} 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)
  5. src/runtime/mstats.go

    	// to the OS and has not yet been reacquired for the heap.
    	HeapReleased uint64
    
    	// HeapObjects is the number of allocated heap objects.
    	//
    	// Like HeapAlloc, this increases as objects are allocated and
    	// decreases as the heap is swept and unreachable objects are
    	// freed.
    	HeapObjects uint64
    
    	// Stack memory statistics.
    	//
    	// Stacks are not considered part of the heap, but the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/runtime/malloc_test.go

    		"Lookups": {eq(uint64(0))}, "Mallocs": {nz, le(1e10)}, "Frees": {nz, le(1e10)},
    		"HeapAlloc": {nz, le(1e10)}, "HeapSys": {nz, le(1e10)}, "HeapIdle": {le(1e10)},
    		"HeapInuse": {nz, le(1e10)}, "HeapReleased": {le(1e10)}, "HeapObjects": {nz, le(1e10)},
    		"StackInuse": {nz, le(1e10)}, "StackSys": {nz, le(1e10)},
    		"MSpanInuse": {nz, le(1e10)}, "MSpanSys": {nz, le(1e10)},
    		"MCacheInuse": {nz, le(1e10)}, "MCacheSys": {nz, le(1e10)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    	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)
    
    	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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/runtime/heapdump.go

    	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)
    	dumpint(m.MCacheInuse)
    	dumpint(m.MCacheSys)
    	dumpint(m.BuckHashSys)
    	dumpint(m.GCSys)
    	dumpint(m.OtherSys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/runtime/metrics_test.go

    			}
    		case "/gc/gomemlimit:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), uint64(limit))
    		case "/gc/heap/objects:objects":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.HeapObjects)
    		case "/gc/heap/goal:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.NextGC)
    		case "/gc/gogc:percent":
    			checkUint64(t, name, samples[i].Value.Uint64(), uint64(gcPercent))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MemStats.GCCPUFraction", Field, 5},
    		{"MemStats.GCSys", Field, 2},
    		{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top