Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for scav (0.04 sec)

  1. src/runtime/export_test.go

    func NewPageCache(base uintptr, cache, scav uint64) PageCache {
    	return PageCache(pageCache{base: base, cache: cache, scav: scav})
    }
    func (c *PageCache) Empty() bool   { return (*pageCache)(c).empty() }
    func (c *PageCache) Base() uintptr { return (*pageCache)(c).base }
    func (c *PageCache) Cache() uint64 { return (*pageCache)(c).cache }
    func (c *PageCache) Scav() uint64  { return (*pageCache)(c).scav }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/mgcsweep.go

    				lock(&mheap_.lock)
    
    				// Get released stats.
    				releasedBg := mheap_.pages.scav.releasedBg.Load()
    				releasedEager := mheap_.pages.scav.releasedEager.Load()
    
    				// Print the line.
    				printScavTrace(releasedBg, releasedEager, false)
    
    				// Update the stats.
    				mheap_.pages.scav.releasedBg.Add(-releasedBg)
    				mheap_.pages.scav.releasedEager.Add(-releasedEager)
    				unlock(&mheap_.lock)
    			})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/extern.go

    		# MB goal    goal heap size, or /gc/heap/goal:bytes
    		# MB stacks  estimated scannable stack size, or /gc/scan/stack:bytes
    		# MB globals scannable global size, or /gc/scan/globals:bytes
    		# P          number of processors used, or /sched/gomaxprocs:threads
    	The phases are stop-the-world (STW) sweep termination, concurrent
    	mark and scan, and STW mark termination. The CPU times
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. 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)
  7. src/image/jpeg/scan.go

    		// into d.comp are unique.
    		for j := 0; j < i; j++ {
    			if scan[i].compIndex == scan[j].compIndex {
    				return FormatError("repeated component selector")
    			}
    		}
    		totalHV += d.comp[compIndex].h * d.comp[compIndex].v
    
    		// The baseline t <= 1 restriction is specified in table B.3.
    		scan[i].td = d.tmp[2+2*i] >> 4
    		if t := scan[i].td; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Td value")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. scan.go

    		field.NewValuePool.Put(values[idx])
    	}
    }
    
    // ScanMode scan data mode
    type ScanMode uint8
    
    // scan modes
    const (
    	ScanInitialized         ScanMode = 1 << 0 // 1
    	ScanUpdate              ScanMode = 1 << 1 // 2
    	ScanOnConflictDoNothing ScanMode = 1 << 2 // 4
    )
    
    // Scan scan rows into db statement
    func Scan(rows Rows, db *DB, mode ScanMode) {
    	var (
    		columns, _          = rows.Columns()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/anames.go

    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    	"SUBW",
    	"DBAR",
    	"SYSCALL",
    	"TEQ",
    	"TNE",
    	"WORD",
    	"XOR",
    	"MASKEQZ",
    	"MASKNEZ",
    	"MOVV",
    	"MOVVL",
    	"MOVVR",
    	"SLLV",
    	"SRAV",
    	"SRLV",
    	"ROTRV",
    	"DIVV",
    	"DIVVU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigIntegrationTest.groovy

            where:
            firstBuildArgs | firstRequest | secondBuildArgs | secondRequest
            ['--scan']     | REQUESTED    | []              | null
            []             | null         | ['--scan']      | REQUESTED
            ['--scan']     | REQUESTED    | ['--scan']      | REQUESTED
        }
    
        void assertRequestedOrNotApplied(@Nullable GradleEnterprisePluginConfig.BuildScanRequest buildScanRequest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top