Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for scav (0.06 sec)

  1. src/runtime/mheap.go

    	nbytes := npages * pageSize
    	if scav != 0 {
    		// sysUsed all the pages that are actually available
    		// in the span since some of them might be scavenged.
    		sysUsed(unsafe.Pointer(base), nbytes, scav)
    		gcController.heapReleased.add(-int64(scav))
    	}
    	// Update stats.
    	gcController.heapFree.add(-int64(nbytes - scav))
    	if typ == spanAllocHeap {
    		gcController.heapInUse.add(int64(nbytes))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		// response, broke down. This may be transient, so temporarily switch to
    		// sleeping a fixed, conservative amount.
    		s.sleepRatio = startingScavSleepRatio
    		s.controllerCooldown = 5e9 // 5 seconds.
    
    		// Signal the scav trace printer to output this.
    		s.controllerFailed()
    	}
    }
    
    // controllerFailed indicates that the scavenger's scheduling
    // controller failed.
    func (s *scavengerState) controllerFailed() {
    	lock(&s.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // improve parallelism, the garbage collector breaks up scan jobs for
    // objects larger than maxObletBytes into "oblets" of at most
    // maxObletBytes. When scanning encounters the beginning of a large
    // object, it scans only the first oblet and enqueues the remaining
    // oblets as new scan jobs.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-scan.png

    teamcity-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/performance/build-scan-home.png

    build-scan-home.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 66.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/build-scan-infrastructure.png

    build-scan-infrastructure.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 81.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/performance/build-scan-performance-page.png

    build-scan-performance-page.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 72.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dependency-insight-report-build-scan.png

    dependency-management-dependency-insight-report-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    	fixedRootFreeGStacks
    	fixedRootCount
    
    	// rootBlockBytes is the number of bytes to scan per data or
    	// BSS root.
    	rootBlockBytes = 256 << 10
    
    	// maxObletBytes is the maximum bytes of an object to scan at
    	// once. Larger objects will be split up into "oblets" of at
    	// most this size. Since we can scan 1–2 MB/ms, 128 KB bounds
    	// scan preemption at ~100 µs.
    	//
    	// This must be > _MaxSmallSize so that the object base is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais2.go

    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    	// In every scan through the text, c0, c1 are successive characters of text.
    	// In this backward scan, c0 == text[i] and c1 == text[i+1].
    	// By scanning backward, we can keep track of whether the current
    	// position is type-S or type-L according to the usual definition:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top