Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 518 for heal (0.11 sec)

  1. src/runtime/proc.go

    	if !q.empty() {
    		q.tail.ptr().schedlink = l.head
    		l.head = q.head
    	}
    }
    
    // pop removes and returns the head of l. If l is empty, it returns nil.
    func (l *gList) pop() *g {
    	gp := l.head.ptr()
    	if gp != nil {
    		l.head = gp.schedlink
    	}
    	return gp
    }
    
    //go:linkname setMaxThreads runtime/debug.setMaxThreads
    func setMaxThreads(in int) (out int) {
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    // one object. When a goroutine needs to allocate large-object span from heap,
    // it sweeps spans until it frees at least that many pages into heap. There is
    // one case where this may not suffice: if a goroutine sweeps and frees two
    // nonadjacent one-page spans to the heap, it will allocate a new two-page
    // span, but there can still be other one-page unswept spans which could be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/traceallocfree.go

    	traceAllocFreeInfoBatch         // Contains info for interpreting events. [min heap addr, page size, min heap align, min stack align]
    )
    
    // traceSnapshotMemory takes a snapshot of all runtime memory that there are events for
    // (heap spans, heap objects, goroutine stacks, etc.) and writes out events for them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    		Cumulative count of heap allocations whose storage was freed
    		by the garbage collector. Note that this does not include tiny
    		objects as defined by /gc/heap/tiny/allocs:objects, only tiny
    		blocks.
    
    	/gc/heap/goal:bytes
    		Heap size target for the end of the GC cycle.
    
    	/gc/heap/live:bytes
    		Heap memory occupied by live objects that were marked by the
    		previous GC.
    
    	/gc/heap/objects:objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// We know name does not appear in the chain starting at head.
    	for {
    		next.Store(head)
    		if m.cas32(headOff, head, start) {
    			return v, nil, nil
    		}
    
    		// Check new elements in chain for duplicates.
    		old := head
    		head = m.load32(headOff)
    		for off := head; off != old; {
    			ename, enext, v, ok := m.entryAt(off)
    			if !ok {
    				return nil, nil, errCorrupt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/runtime/chan.go

    // sg must already be dequeued from c.
    // ep must be non-nil and point to the heap or the caller's stack.
    func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
    	if raceenabled {
    		if c.dataqsiz == 0 {
    			racesync(c, sg)
    		} else {
    			// Pretend we go through the buffer, even though
    			// we copy directly. Note that we need to increment
    			// the head/tail locations only when raceenabled.
    			racenotify(c, c.recvx, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

                        println "Initial Heap: " + memBean.heapMemoryUsage.init
                        assert memBean.heapMemoryUsage.init == 256 * 1024 * 1024
                        println "    Max Heap: " + memBean.heapMemoryUsage.max
    
                        // Java 8 does not report max heap size exactly matching the command line setting
                        if ($java9orAbove) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      {{template "stacks_css"}}
    </head>
    <body>
      {{template "header" .}}
      <div id="stack-holder">
        <div id="stack-chart"></div>
        <div id="current-details"></div>
      </div>
      <div id="action-menu" class="submenu">
        <span id="action-title"></span>
        <hr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/graph.html

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      {{template "graph_css" .}}
    </head>
    <body>
      {{template "header" .}}
      <div id="graph">
        {{.HTMLBody}}
      </div>
      {{template "script" .}}
      <script>viewer(new URL(window.location.href), {{.Nodes}});</script>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 334 bytes
    - Viewed (0)
  10. src/net/http/routing_tree_test.go

    			"GET /item/{user}", []string{"jba"}},
    		{"GET", "", "/item",
    			"", nil}, // does not match
    		{"GET", "", "/headwins",
    			"GET /headwins", nil},
    		{"HEAD", "", "/headwins", // HEAD is more specific than GET
    			"HEAD /headwins", nil},
    		{"GET", "", "/path/to/file",
    			"/path/{p...}", []string{"to/file"}},
    		{"GET", "", "/path/*",
    			"/path/{p...}", []string{"*"}},
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top