Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for warmupCache (0.04 sec)

  1. src/cmd/api/api_test.go

    					continue
    				}
    				if err != nil {
    					b.Fatalf("import %s (%s-%s): %v", name, context.GOOS, context.GOARCH, err)
    				}
    				w.export(pkg)
    			}
    			w.Features()
    		}
    	}
    }
    
    var warmupCache = sync.OnceFunc(func() {
    	// Warm up the import cache in parallel.
    	var wg sync.WaitGroup
    	for _, context := range contexts {
    		context := context
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri May 02 17:06:27 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top