Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for buildGoobj (0.27 sec)

  1. src/cmd/internal/archive/archive_test.go

    var (
    	buildOnce   sync.Once
    	builtGoobjs goobjPaths
    	buildErr    error
    )
    
    type goobjPaths struct {
    	go1obj     string
    	go2obj     string
    	goarchive  string
    	cgoarchive string
    }
    
    func buildGoobj(t *testing.T) goobjPaths {
    	buildOnce.Do(func() {
    		buildErr = func() (err error) {
    			buildDir, err = os.MkdirTemp("", "TestGoobj")
    			if err != nil {
    				return err
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top