OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:goroot
(Results
26 - 50
of
315
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/go/darwin-x86/src/
run.rc
10
GOPATH = () # we disallow local import for non-local packages, if $
GOROOT
happens
run.bash
9
export
GOROOT
# the api test requires
GOROOT
to be set.
12
unset GOPATH # we disallow local import for non-local packages, if $
GOROOT
happens
all.bash
8
echo 'all.bash must be run from $
GOROOT
/src' 1>&2
iostest.bash
12
echo 'iostest.bash must be run from $
GOROOT
/src' 1>&2
50
export
GOROOT
=$(dirname $(pwd))
51
export PATH=$
GOROOT
/bin:$PATH
53
export CC_FOR_TARGET=$
GOROOT
/misc/ios/clangwrap.sh
buildall.bash
16
echo 'buildall.bash must be run from $
GOROOT
/src' 1>&2
40
GOROOT
="$(cd .. && pwd)"
58
if ! "$
GOROOT
/bin/go" build -a std cmd; then
nacltest.bash
64
echo 'nacltest.bash must be run from $
GOROOT
/src' 1>&2
69
export
GOROOT
=$(pwd)/..
76
GOROOT
=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go
/prebuilts/go/darwin-x86/test/fixedbugs/bug472.dir/
p1.go
13
func G() func() string { return runtime.
GOROOT
}
p2.go
13
func G() func() string { return runtime.
GOROOT
}
/prebuilts/go/linux-x86/
README.md
32
the environment variable $
GOROOT
to the full path of the go
36
You should also add the Go binary directory $
GOROOT
/bin
42
export
GOROOT
=$HOME/go
43
export PATH=$PATH:$
GOROOT
/bin
/prebuilts/go/linux-x86/src/
run.rc
10
GOPATH = () # we disallow local import for non-local packages, if $
GOROOT
happens
run.bash
9
export
GOROOT
# the api test requires
GOROOT
to be set.
12
unset GOPATH # we disallow local import for non-local packages, if $
GOROOT
happens
all.bash
8
echo 'all.bash must be run from $
GOROOT
/src' 1>&2
iostest.bash
12
echo 'iostest.bash must be run from $
GOROOT
/src' 1>&2
50
export
GOROOT
=$(dirname $(pwd))
51
export PATH=$
GOROOT
/bin:$PATH
53
export CC_FOR_TARGET=$
GOROOT
/misc/ios/clangwrap.sh
buildall.bash
16
echo 'buildall.bash must be run from $
GOROOT
/src' 1>&2
40
GOROOT
="$(cd .. && pwd)"
58
if ! "$
GOROOT
/bin/go" build -a std cmd; then
/prebuilts/go/linux-x86/test/fixedbugs/bug472.dir/
p1.go
13
func G() func() string { return runtime.
GOROOT
}
p2.go
13
func G() func() string { return runtime.
GOROOT
}
/prebuilts/go/darwin-x86/src/cmd/go/
context.go
14
GOROOT
string `json:",omitempty"` // Go root
28
GOROOT
: c.
GOROOT
,
/prebuilts/go/linux-x86/src/cmd/go/
context.go
14
GOROOT
string `json:",omitempty"` // Go root
28
GOROOT
: c.
GOROOT
,
/build/blueprint/bootstrap/
config.go
23
goRoot
= pctx.StaticVariable("
goRoot
", "@@
GoRoot
@@")
/prebuilts/go/darwin-x86/src/archive/zip/testdata/
readme.notzip
41
the environment variable $
GOROOT
to the full path of the go
45
You should also add the Go binary directory $
GOROOT
/bin
51
export
GOROOT
=$HOME/go
52
export PATH=$PATH:$
GOROOT
/bin
/prebuilts/go/linux-x86/src/archive/zip/testdata/
readme.notzip
41
the environment variable $
GOROOT
to the full path of the go
45
You should also add the Go binary directory $
GOROOT
/bin
51
export
GOROOT
=$HOME/go
52
export PATH=$PATH:$
GOROOT
/bin
/build/blueprint/
bootstrap.bash
17
#
GOROOT
62
[ -z "$
GOROOT
" ] &&
GOROOT
=`go env
GOROOT
`
70
GOTOOLDIR="$
GOROOT
/pkg/tool/${GOOS}_$GOARCH"
81
echo "Cannot find go tools under $
GOROOT
"
133
-e "s|@@
GoRoot
@@|$
GOROOT
|g" \
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestSetPath.java
42
public BluetoothMasRequestSetPath(boolean
goRoot
) {
44
if (
goRoot
) {
/prebuilts/go/darwin-x86/misc/android/
go_android_exec.go
38
deviceGoroot = "/data/local/tmp/
goroot
"
53
// "$
GOROOT
/src/mime/multipart" or "$GOPATH/src/golang.org/x/mobile".
54
// We extract everything after the $
GOROOT
or $GOPATH to run on the
85
`; export
GOROOT
="` + deviceGoroot + `"` +
106
// and returns the path to the package source relative to $
GOROOT
(or $GOPATH).
112
if root := runtime.
GOROOT
(); strings.HasPrefix(cwd, root) {
129
log.Fatalf("the current path %q is not in either
GOROOT
(%q) or GOPATH(%q)",
130
cwd, runtime.
GOROOT
(), build.Default.GOPATH)
/prebuilts/go/linux-x86/misc/android/
go_android_exec.go
38
deviceGoroot = "/data/local/tmp/
goroot
"
53
// "$
GOROOT
/src/mime/multipart" or "$GOPATH/src/golang.org/x/mobile".
54
// We extract everything after the $
GOROOT
or $GOPATH to run on the
85
`; export
GOROOT
="` + deviceGoroot + `"` +
106
// and returns the path to the package source relative to $
GOROOT
(or $GOPATH).
112
if root := runtime.
GOROOT
(); strings.HasPrefix(cwd, root) {
129
log.Fatalf("the current path %q is not in either
GOROOT
(%q) or GOPATH(%q)",
130
cwd, runtime.
GOROOT
(), build.Default.GOPATH)
Completed in 458 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>