Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/go/build/build.go

    	}
    	if n >= 1 && (knownOS[l[n-1]] || knownArch[l[n-1]]) {
    		return ctxt.matchTag(l[n-1], allTags)
    	}
    	return true
    }
    
    // ToolDir is the directory containing build tools.
    var ToolDir = getToolDir()
    
    // IsLocalImport reports whether the import path is
    // a local import path, like ".", "..", "./foo", or "../foo".
    func IsLocalImport(path string) bool {
    	return path == "." || path == ".." ||
    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