Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for stacks_js (0.16 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

        <a title="{{.Help.hide}}" id="action-hide" href="?">Hide</a>
        <a title="{{.Help.show_from}}" id="action-showfrom" href="?">Show from</a>
      </div>
      {{template "script" .}}
      {{template "stacks_js"}}
      <script>
        pprofUnitDefs = {{.UnitDefs}};
        stackViewer({{.Stacks}}, {{.Nodes}});
      </script>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    	def("plaintext", loadFile("html/plaintext.html"))
    	// TODO: Rename "stacks" to "flamegraph" to seal moving off d3 flamegraph.
    	def("stacks", loadFile("html/stacks.html"))
    	def("stacks_css", loadCSS("html/stacks.css"))
    	def("stacks_js", loadJS("html/stacks.js"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	stats.HeapReleased = gcController.heapReleased.load()
    	stats.HeapObjects = nMalloc - nFree
    	stats.StackInuse = stackInUse
    	// memstats.stacks_sys is only memory mapped directly for OS stacks.
    	// Add in heap-allocated stack memory for user consumption.
    	stats.StackSys = stackInUse + memstats.stacks_sys.load()
    	stats.MSpanInuse = uint64(mheap_.spanalloc.inuse)
    	stats.MSpanSys = memstats.mspan_sys.load()
    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. pkg/ctrlz/topics/assets/templates/mem.html

        </tr>
    
        <tr>
            <td>StackInuse</td>
            <td id="StackInuse">{{.StackInuse}} bytes</td>
            <td>Bytes in stack spans.</td>
        </tr>
    
        <tr>
            <td>StackSys</td>
            <td id="StackSys">{{.StackSys}} bytes</td>
            <td>Stack memory obtained from the OS.</td>
        </tr>
    
        <tr>
            <td>NextGC</td>
            <td id="NextGC">{{.NextGC}} 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/metrics.go

    	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()
    	a.gcMiscSys = memstats.gcMiscSys.load()
    	a.otherSys = memstats.other_sys.load()
    	a.heapGoal = gcController.heapGoal()
    	a.gcCyclesDone = uint64(memstats.numgc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/runtime/malloc_test.go

    		"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)},
    		"BuckHashSys": {nz, le(1e10)}, "GCSys": {nz, le(1e10)}, "OtherSys": {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/os_darwin.go

    	// Find out that stack size for our own stack guard.
    	if pthread_attr_getstacksize(&attr, &stacksize) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    	g0.stack.hi = stacksize // for mstart
    	memstats.stacks_sys.add(int64(stacksize))
    
    	// Tell the pthread library we won't join with this thread.
    	if pthread_attr_setdetachstate(&attr, _PTHREAD_CREATE_DETACHED) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/os_freebsd.go

    		throw("newosproc")
    	}
    }
    
    // Version of newosproc that doesn't require a valid G.
    //
    //go:nosplit
    func newosproc0(stacksize uintptr, fn unsafe.Pointer) {
    	stack := sysAlloc(stacksize, &memstats.stacks_sys)
    	if stack == nil {
    		writeErrStr(failallocatestack)
    		exit(1)
    	}
    	// This code "knows" it's being called once from the library
    	// initialization code, and so it's using the static m0 for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/runtime/stack_test.go

    		// Give them a chance to exit by sleeping. If we don't wait, we
    		// might not reuse them on the next batch.
    		time.Sleep(10 * time.Millisecond)
    	}
    	s1 := new(MemStats)
    	ReadMemStats(s1)
    	consumed := int64(s1.StackSys - s0.StackSys)
    	t.Logf("Consumed %vMB for stack mem", consumed>>20)
    	estimate := int64(8 * BatchSize * ArraySize * RecursionDepth) // 8 is to reduce flakiness.
    	if consumed > estimate {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    	}
    	if stackDebug >= 1 {
    		print("stackalloc ", n, "\n")
    	}
    
    	if debug.efence != 0 || stackFromSystem != 0 {
    		n = uint32(alignUp(uintptr(n), physPageSize))
    		v := sysAlloc(uintptr(n), &memstats.stacks_sys)
    		if v == nil {
    			throw("out of memory (stackalloc)")
    		}
    		return stack{uintptr(v), uintptr(v) + uintptr(n)}
    	}
    
    	// Small stacks are allocated with a fixed-size free-list allocator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top