OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
go
/
build
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
build.go
60.65 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
build_test.go
22.62 KB
12/01/2022 06:12:58 PM
rw-r--r--
📁
constraint
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
deps_test.go
19.79 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
doc.go
3.7 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
gc.go
396 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
gccgo.go
344 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
read.go
12.6 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
read_test.go
6.04 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
syslist.go
2.04 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
syslist_test.go
1.38 KB
12/01/2022 06:12:58 PM
rw-r--r--
📁
testdata
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
zcgo.go
1.04 KB
12/01/2022 06:14:15 PM
rw-r--r--
Editing: syslist.go
Close
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package build // Note that this file is read by internal/goarch/gengoarch.go and by // internal/goos/gengoos.go. If you change this file, look at those // files as well. // knownOS is the list of past, present, and future known GOOS values. // Do not remove from this list, as it is used for filename matching. // If you add an entry to this list, look at unixOS, below. var knownOS = map[string]bool{ "aix": true, "android": true, "darwin": true, "dragonfly": true, "freebsd": true, "hurd": true, "illumos": true, "ios": true, "js": true, "linux": true, "nacl": true, "netbsd": true, "openbsd": true, "plan9": true, "solaris": true, "windows": true, "zos": true, } // unixOS is the set of GOOS values matched by the "unix" build tag. // This is not used for filename matching. // This list also appears in cmd/dist/build.go and // cmd/go/internal/imports/build.go. var unixOS = map[string]bool{ "aix": true, "android": true, "darwin": true, "dragonfly": true, "freebsd": true, "hurd": true, "illumos": true, "ios": true, "linux": true, "netbsd": true, "openbsd": true, "solaris": true, } // knownArch is the list of past, present, and future known GOARCH values. // Do not remove from this list, as it is used for filename matching. var knownArch = map[string]bool{ "386": true, "amd64": true, "amd64p32": true, "arm": true, "armbe": true, "arm64": true, "arm64be": true, "loong64": true, "mips": true, "mipsle": true, "mips64": true, "mips64le": true, "mips64p32": true, "mips64p32le": true, "ppc": true, "ppc64": true, "ppc64le": true, "riscv": true, "riscv64": true, "s390": true, "s390x": true, "sparc": true, "sparc64": true, "wasm": true, }