HomeSort by relevance Sort by last modified time
    Searched full:gobin (Results 1 - 25 of 41) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/
clean.bash 14 gobin="${GOBIN:-../bin}"
15 if ! "$gobin"/go help >/dev/null 2>&1; then
20 "$gobin/go" clean -i std
21 "$gobin/go" tool dist clean
22 "$gobin/go" clean -i cmd
clean.rc 13 $GOBIN/go clean -i std
14 $GOBIN/go tool dist clean
15 $GOBIN/go clean -i cmd
clean.bat 21 "%GOBIN%\go" clean -i std
22 "%GOBIN%\go" tool dist clean
23 "%GOBIN%\go" clean -i cmd
nacltest.bash 75 gobin=$GOROOT_BOOTSTRAP/bin
76 GOROOT=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go
iostest.bash 49 unset GOBIN
  /prebuilts/go/linux-x86/src/
clean.bash 14 gobin="${GOBIN:-../bin}"
15 if ! "$gobin"/go help >/dev/null 2>&1; then
20 "$gobin/go" clean -i std
21 "$gobin/go" tool dist clean
22 "$gobin/go" clean -i cmd
clean.rc 13 $GOBIN/go clean -i std
14 $GOBIN/go tool dist clean
15 $GOBIN/go clean -i cmd
clean.bat 21 "%GOBIN%\go" clean -i std
22 "%GOBIN%\go" tool dist clean
23 "%GOBIN%\go" clean -i cmd
nacltest.bash 75 gobin=$GOROOT_BOOTSTRAP/bin
76 GOROOT=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go
iostest.bash 49 unset GOBIN
  /prebuilts/go/darwin-x86/src/cmd/dist/
buildtool.go 89 // GOBIN is empty, so that binaries are installed to GOPATH/bin,
92 // Restore GOROOT, GOPATH, and GOBIN when done.
102 defer os.Setenv("GOBIN", os.Getenv("GOBIN"))
103 os.Setenv("GOBIN", "")
build.go 22 gobin string
101 b := os.Getenv("GOBIN")
105 gobin = b
340 // The old tools that no longer live in $GOBIN or $GOROOT/bin.
428 // If $GOBIN is set and has a Go compiler, it must be cleaned.
430 if isfile(pathf("%s%s%c%s", gobin, slash, char, "g")) {
432 xremove(pathf("%s/%s", gobin, old))
981 xprintf(format, "GOBIN", gobin)
999 xprintf(format, "PATH", fmt.Sprintf("%s%s%s", gobin, sep, os.Getenv("PATH"))
21 gobin string var
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
buildtool.go 89 // GOBIN is empty, so that binaries are installed to GOPATH/bin,
92 // Restore GOROOT, GOPATH, and GOBIN when done.
102 defer os.Setenv("GOBIN", os.Getenv("GOBIN"))
103 os.Setenv("GOBIN", "")
build.go 22 gobin string
101 b := os.Getenv("GOBIN")
105 gobin = b
340 // The old tools that no longer live in $GOBIN or $GOROOT/bin.
428 // If $GOBIN is set and has a Go compiler, it must be cleaned.
430 if isfile(pathf("%s%s%c%s", gobin, slash, char, "g")) {
432 xremove(pathf("%s/%s", gobin, old))
981 xprintf(format, "GOBIN", gobin)
999 xprintf(format, "PATH", fmt.Sprintf("%s%s%s", gobin, sep, os.Getenv("PATH"))
21 gobin string var
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
env.go 38 {"GOBIN", gobin},
fmt.go 52 gofmtPath := filepath.Join(gobin, gofmt)
go_test.go 91 os.Unsetenv("GOBIN")
171 if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
218 if tg.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
799 tg.setenv("GOBIN", tg.path("."))
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
env.go 38 {"GOBIN", gobin},
fmt.go 52 gofmtPath := filepath.Join(gobin, gofmt)
go_test.go 91 os.Unsetenv("GOBIN")
171 if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
218 if tg.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
799 tg.setenv("GOBIN", tg.path("."))
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/x86/
obj6_test.go 104 if gobin := os.Getenv("GOBIN"); len(gobin) != 0 {
105 gofolder = gobin
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
obj6_test.go 101 if gobin := os.Getenv("GOBIN"); len(gobin) != 0 {
102 gofolder = gobin
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/x86/
obj6_test.go 104 if gobin := os.Getenv("GOBIN"); len(gobin) != 0 {
105 gofolder = gobin
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
obj6_test.go 101 if gobin := os.Getenv("GOBIN"); len(gobin) != 0 {
102 gofolder = gobin
  /external/boringssl/src/util/bot/go/
bootstrap.py 210 Overrides GOROOT, GOPATH and GOBIN. Keeps everything else. Idempotent.
219 env['GOBIN'] = os.path.join(workspace, 'bin')
221 env.pop('GOBIN', None)
231 env.get('GOBIN'),
271 """Returns full path to an executable in some bin/ (in GOROOT or GOBIN)."""

Completed in 1402 milliseconds

1 2