Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ImportMode (0.08 sec)

  1. src/go/build/build.go

    	if s == "" {
    		return def
    	}
    	return s
    }
    
    // An ImportMode controls the behavior of the Import method.
    type ImportMode uint
    
    const (
    	// If FindOnly is set, Import stops after locating the directory
    	// that should contain the sources for a package. It does not
    	// read any files in the directory.
    	FindOnly ImportMode = 1 << iota
    
    	// If AllowBinary is set, Import can be satisfied by a compiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top