Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oldPools (0.1 sec)

  1. src/sync/pool.go

    	// victim caches and no pools have primary caches.
    	oldPools, allPools = allPools, nil
    }
    
    var (
    	allPoolsMu Mutex
    
    	// allPools is the set of pools that have non-empty primary
    	// caches. Protected by either 1) allPoolsMu and pinning or 2)
    	// STW.
    	allPools []*Pool
    
    	// oldPools is the set of pools that may have non-empty victim
    	// caches. Protected by STW.
    	oldPools []*Pool
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  2. src/cmd/dist/build.go

    	goroot           string
    	goextlinkenabled string
    	gogcflags        string // For running built compiler
    	goldflags        string
    	goexperiment     string
    	workdir          string
    	tooldir          string
    	oldgoos          string
    	oldgoarch        string
    	oldgocache       string
    	exe              string
    	defaultcc        map[string]string
    	defaultcxx       map[string]string
    	defaultpkgconfig string
    	defaultldso      string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top