Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +139 -35
- .github/CODE_OF_CONDUCT.md +3 -0
- .github/ISSUE_TEMPLATE/00-bug.yml +94 -0
- .github/ISSUE_TEMPLATE/01-pkgsite.yml +47 -0
- .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml +42 -0
- .github/ISSUE_TEMPLATE/03-gopls.yml +56 -0
- .github/ISSUE_TEMPLATE/04-vuln.yml +52 -0
- .github/ISSUE_TEMPLATE/10-proposal.yml +15 -0
- .github/ISSUE_TEMPLATE/11-language-change.yml +165 -0
- .github/ISSUE_TEMPLATE/12-telemetry.yml +30 -0
- .github/ISSUE_TEMPLATE/config.yml +5 -0
- .github/PULL_REQUEST_TEMPLATE +25 -0
- .github/SUPPORT.md +14 -0
- .gitignore +53 -0
- CONTRIBUTING.md +35 -0
- LICENSE +27 -0
- PATENTS +22 -0
- README.md +42 -0
- SECURITY.md +13 -0
- api/README +26 -0
- api/except.txt +604 -0
- api/go1.1.txt +0 -0
- api/go1.10.txt +627 -0
- api/go1.11.txt +559 -0
- api/go1.12.txt +228 -0
- api/go1.13.txt +0 -0
- api/go1.14.txt +0 -0
- api/go1.15.txt +130 -0
- api/go1.16.txt +0 -0
- api/go1.17.txt +303 -0
- api/go1.18.txt +253 -0
- api/go1.19.txt +309 -0
- api/go1.2.txt +0 -0
- api/go1.20.txt +0 -0
- api/go1.21.txt +426 -0
- api/go1.22.txt +135 -0
- api/go1.23.txt +158 -0
- api/go1.24.txt +223 -0
- api/go1.25.txt +111 -0
- api/go1.26.txt +180 -0
- api/go1.3.txt +0 -0
- api/go1.4.txt +604 -0
- api/go1.5.txt +975 -0
- api/go1.6.txt +275 -0
- api/go1.7.txt +285 -0
- api/go1.8.txt +261 -0
- api/go1.9.txt +196 -0
- api/go1.txt +0 -0
- codereview.cfg +1 -0
- doc/README.md +75 -0
.gitattributes
CHANGED
|
@@ -1,35 +1,139 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Treat all files in the Go repo as binary, with no git magic updating
|
| 2 |
+
# line endings. This produces predictable results in different environments.
|
| 3 |
+
#
|
| 4 |
+
# Windows users contributing to Go will need to use a modern version
|
| 5 |
+
# of git and editors capable of LF line endings.
|
| 6 |
+
#
|
| 7 |
+
# Windows .bat files are known to have multiple bugs when run with LF
|
| 8 |
+
# endings, and so they are checked in with CRLF endings, with a test
|
| 9 |
+
# in test/winbatch.go to catch problems. (See golang.org/issue/37791.)
|
| 10 |
+
#
|
| 11 |
+
# We'll prevent accidental CRLF line endings from entering the repo
|
| 12 |
+
# via the git-codereview gofmt checks and tests.
|
| 13 |
+
#
|
| 14 |
+
# See golang.org/issue/9281.
|
| 15 |
+
|
| 16 |
+
* -text
|
| 17 |
+
lib/fips140/v1.0.0-c2097c7c.zip filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
lib/fips140/v1.1.0-rc1.zip filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
lib/time/zoneinfo.zip filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
src/archive/tar/testdata/file-and-dir.tar filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
src/archive/tar/testdata/gnu-incremental.tar filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
src/archive/tar/testdata/gnu-long-nul.tar filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
src/archive/tar/testdata/gnu-multi-hdrs.tar filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
src/archive/tar/testdata/gnu-nil-sparse-data.tar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
src/archive/tar/testdata/gnu-nil-sparse-hole.tar filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
src/archive/tar/testdata/gnu-not-utf8.tar filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
src/archive/tar/testdata/gnu-sparse-big.tar.base64 filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
src/archive/tar/testdata/gnu-sparse-many-zeros.tar.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
src/archive/tar/testdata/gnu-utf8.tar filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
src/archive/tar/testdata/gnu.tar filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
src/archive/tar/testdata/hardlink.tar filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
src/archive/tar/testdata/hdr-only.tar filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
src/archive/tar/testdata/invalid-go17.tar filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
src/archive/tar/testdata/issue10968.tar filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
src/archive/tar/testdata/issue11169.tar filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
src/archive/tar/testdata/issue12435.tar filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
src/archive/tar/testdata/neg-size.tar.base64 filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
src/archive/tar/testdata/nil-uid.tar filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
src/archive/tar/testdata/pax-bad-hdr-file.tar filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
src/archive/tar/testdata/pax-bad-hdr-large.tar.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
src/archive/tar/testdata/pax-bad-mtime-file.tar filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
src/archive/tar/testdata/pax-global-records.tar filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
src/archive/tar/testdata/pax-multi-hdrs.tar filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
src/archive/tar/testdata/pax-nil-sparse-data.tar filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
src/archive/tar/testdata/pax-nil-sparse-hole.tar filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
src/archive/tar/testdata/pax-nul-path.tar filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
src/archive/tar/testdata/pax-nul-xattrs.tar filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
src/archive/tar/testdata/pax-path-hdr.tar filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
src/archive/tar/testdata/pax-pos-size-file.tar filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
src/archive/tar/testdata/pax-records.tar filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
src/archive/tar/testdata/pax-sparse-big.tar.base64 filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
src/archive/tar/testdata/pax.tar filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
src/archive/tar/testdata/sparse-formats.tar filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
src/archive/tar/testdata/star.tar filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
src/archive/tar/testdata/trailing-slash.tar filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
src/archive/tar/testdata/ustar-file-devs.tar filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
src/archive/tar/testdata/ustar-file-reg.tar filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
src/archive/tar/testdata/ustar.tar filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
src/archive/tar/testdata/v7.tar filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
src/archive/tar/testdata/writer-big-long.tar.base64 filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
src/archive/tar/testdata/writer-big.tar filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
src/archive/tar/testdata/writer.tar filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
src/archive/tar/testdata/xattrs.tar filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
src/archive/zip/testdata/comment-truncated.zip filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
src/archive/zip/testdata/crc32-not-streamed.zip filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
src/archive/zip/testdata/dd.zip filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
src/archive/zip/testdata/dupdir.zip filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
src/archive/zip/testdata/go-with-datadesc-sig.zip filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
src/archive/zip/testdata/readme.zip filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
src/archive/zip/testdata/subdir.zip filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
src/archive/zip/testdata/symlink.zip filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
src/archive/zip/testdata/test-badbase.zip filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
src/archive/zip/testdata/test-baddirsz.zip filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
src/archive/zip/testdata/test-prefix.zip filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
src/archive/zip/testdata/test-trailing-junk.zip filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
src/archive/zip/testdata/test.zip filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
src/archive/zip/testdata/time-22738.zip filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
src/archive/zip/testdata/time-7zip.zip filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
src/archive/zip/testdata/time-go.zip filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
src/archive/zip/testdata/time-infozip.zip filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
src/archive/zip/testdata/time-osx.zip filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
src/archive/zip/testdata/time-win7.zip filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
src/archive/zip/testdata/time-winrar.zip filter=lfs diff=lfs merge=lfs -text
|
| 84 |
+
src/archive/zip/testdata/time-winzip.zip filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
src/archive/zip/testdata/unix.zip filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
src/archive/zip/testdata/utf8-7zip.zip filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
src/archive/zip/testdata/utf8-infozip.zip filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
src/archive/zip/testdata/utf8-osx.zip filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
src/archive/zip/testdata/utf8-winrar.zip filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
src/archive/zip/testdata/utf8-winzip.zip filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
src/archive/zip/testdata/winxp.zip filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
src/archive/zip/testdata/zip64-2.zip filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
src/archive/zip/testdata/zip64.zip filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
src/cmd/compile/default.pgo filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
src/compress/bzip2/testdata/e.txt.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
src/compress/bzip2/testdata/pass-random1.bin filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
src/compress/bzip2/testdata/pass-random1.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
src/compress/bzip2/testdata/pass-random2.bin filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
src/compress/bzip2/testdata/pass-random2.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
src/compress/bzip2/testdata/pass-sawtooth.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
src/compress/bzip2/testdata/random.data.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
src/crypto/ecdsa/testdata/SigVer.rsp.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
src/crypto/ed25519/testdata/sign.input.gz filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
src/crypto/internal/boring/syso/goboringcrypto_linux_amd64.syso filter=lfs diff=lfs merge=lfs -text
|
| 106 |
+
src/crypto/internal/boring/syso/goboringcrypto_linux_arm64.syso filter=lfs diff=lfs merge=lfs -text
|
| 107 |
+
src/crypto/rsa/testdata/pss-vect.txt.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 108 |
+
src/debug/dwarf/testdata/line-gcc-win.bin filter=lfs diff=lfs merge=lfs -text
|
| 109 |
+
src/debug/elf/testdata/hello-world-core.gz filter=lfs diff=lfs merge=lfs -text
|
| 110 |
+
src/debug/gosym/testdata/pcln115.gz filter=lfs diff=lfs merge=lfs -text
|
| 111 |
+
src/debug/pe/testdata/gcc-amd64-mingw-exec filter=lfs diff=lfs merge=lfs -text
|
| 112 |
+
src/encoding/json/internal/jsontest/testdata/canada_geometry.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 113 |
+
src/encoding/json/internal/jsontest/testdata/citm_catalog.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 114 |
+
src/encoding/json/internal/jsontest/testdata/golang_source.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 115 |
+
src/encoding/json/internal/jsontest/testdata/string_escaped.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 116 |
+
src/encoding/json/internal/jsontest/testdata/string_unicode.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 117 |
+
src/encoding/json/internal/jsontest/testdata/synthea_fhir.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 118 |
+
src/encoding/json/internal/jsontest/testdata/twitter_status.json.zst filter=lfs diff=lfs merge=lfs -text
|
| 119 |
+
src/html/template/testdata/fs.zip filter=lfs diff=lfs merge=lfs -text
|
| 120 |
+
src/internal/trace/internal/tracev1/testdata/stress_1_11_good filter=lfs diff=lfs merge=lfs -text
|
| 121 |
+
src/internal/trace/internal/tracev1/testdata/stress_1_19_good filter=lfs diff=lfs merge=lfs -text
|
| 122 |
+
src/internal/trace/internal/tracev1/testdata/stress_1_21_good filter=lfs diff=lfs merge=lfs -text
|
| 123 |
+
src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst filter=lfs diff=lfs merge=lfs -text
|
| 124 |
+
src/internal/zstd/testdata/f2a8e35c.helloworld-11000x.zst filter=lfs diff=lfs merge=lfs -text
|
| 125 |
+
src/internal/zstd/testdata/fcf30b99.zero-dictionary-ids.zst filter=lfs diff=lfs merge=lfs -text
|
| 126 |
+
src/regexp/testdata/re2-exhaustive.txt.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 127 |
+
src/runtime/race/internal/amd64v1/race_darwin.syso filter=lfs diff=lfs merge=lfs -text
|
| 128 |
+
src/runtime/race/internal/amd64v1/race_freebsd.syso filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
src/runtime/race/internal/amd64v1/race_linux.syso filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
src/runtime/race/internal/amd64v1/race_netbsd.syso filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
src/runtime/race/internal/amd64v1/race_openbsd.syso filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
src/runtime/race/internal/amd64v1/race_windows.syso filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
src/runtime/race/internal/amd64v3/race_linux.syso filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
src/runtime/race/race_darwin_arm64.syso filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
src/runtime/race/race_linux_arm64.syso filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
src/runtime/race/race_linux_loong64.syso filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
src/runtime/race/race_linux_ppc64le.syso filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
src/runtime/race/race_linux_riscv64.syso filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
src/runtime/race/race_linux_s390x.syso filter=lfs diff=lfs merge=lfs -text
|
.github/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Code of Conduct
|
| 2 |
+
|
| 3 |
+
Please read the [Go Community Code of Conduct](https://golang.org/conduct).
|
.github/ISSUE_TEMPLATE/00-bug.yml
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms
|
| 2 |
+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
|
| 3 |
+
name: Bugs
|
| 4 |
+
description: The go command, standard library, or anything else
|
| 5 |
+
title: "import/path: issue title"
|
| 6 |
+
|
| 7 |
+
body:
|
| 8 |
+
- type: markdown
|
| 9 |
+
attributes:
|
| 10 |
+
value: |
|
| 11 |
+
Thanks for helping us improve! 🙏 Please answer these questions and provide as much information as possible about your problem.
|
| 12 |
+
|
| 13 |
+
- type: input
|
| 14 |
+
id: go-version
|
| 15 |
+
attributes:
|
| 16 |
+
label: Go version
|
| 17 |
+
description: |
|
| 18 |
+
What version of Go are you using (`go version`)?
|
| 19 |
+
|
| 20 |
+
Note: we only [support](https://go.dev/doc/devel/release#policy) the two most recent major releases.
|
| 21 |
+
placeholder: ex. go version go1.20.7 darwin/arm64
|
| 22 |
+
validations:
|
| 23 |
+
required: true
|
| 24 |
+
|
| 25 |
+
- type: textarea
|
| 26 |
+
id: go-env
|
| 27 |
+
attributes:
|
| 28 |
+
label: "Output of `go env` in your module/workspace:"
|
| 29 |
+
placeholder: |
|
| 30 |
+
GO111MODULE=""
|
| 31 |
+
GOARCH="arm64"
|
| 32 |
+
GOBIN="/Users/gopher/go/bin"
|
| 33 |
+
GOCACHE="/Users/gopher/go/cache"
|
| 34 |
+
GOENV="/Users/gopher/Library/Application Support/go/env"
|
| 35 |
+
GOEXE=""
|
| 36 |
+
GOEXPERIMENT=""
|
| 37 |
+
GOFLAGS=""
|
| 38 |
+
GOHOSTARCH="arm64"
|
| 39 |
+
GOHOSTOS="darwin"
|
| 40 |
+
GOINSECURE=""
|
| 41 |
+
GOMODCACHE="/Users/gopher/go/pkg/mod"
|
| 42 |
+
GONOPROXY=""
|
| 43 |
+
GONOSUMDB=""
|
| 44 |
+
GOOS="darwin"
|
| 45 |
+
GOPATH="/Users/gopher/go"
|
| 46 |
+
GOPRIVATE=""
|
| 47 |
+
GOPROXY="https://proxy.golang.org,direct"
|
| 48 |
+
GOROOT="/usr/local/go"
|
| 49 |
+
GOSUMDB="sum.golang.org"
|
| 50 |
+
GOTMPDIR=""
|
| 51 |
+
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_arm64"
|
| 52 |
+
GOVCS=""
|
| 53 |
+
GOVERSION="go1.20.7"
|
| 54 |
+
GCCGO="gccgo"
|
| 55 |
+
AR="ar"
|
| 56 |
+
CC="clang"
|
| 57 |
+
CXX="clang++"
|
| 58 |
+
CGO_ENABLED="1"
|
| 59 |
+
GOMOD="/dev/null"
|
| 60 |
+
GOWORK=""
|
| 61 |
+
CGO_CFLAGS="-O2 -g"
|
| 62 |
+
CGO_CPPFLAGS=""
|
| 63 |
+
CGO_CXXFLAGS="-O2 -g"
|
| 64 |
+
CGO_FFLAGS="-O2 -g"
|
| 65 |
+
CGO_LDFLAGS="-O2 -g"
|
| 66 |
+
PKG_CONFIG="pkg-config"
|
| 67 |
+
GOGCCFLAGS="-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/44/nbbyll_10jd0z8rj_qxm43740000gn/T/go-build2331607515=/tmp/go-build -gno-record-gcc-switches -fno-common"
|
| 68 |
+
render: shell
|
| 69 |
+
validations:
|
| 70 |
+
required: true
|
| 71 |
+
|
| 72 |
+
- type: textarea
|
| 73 |
+
id: what-did-you-do
|
| 74 |
+
attributes:
|
| 75 |
+
label: "What did you do?"
|
| 76 |
+
description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best."
|
| 77 |
+
validations:
|
| 78 |
+
required: true
|
| 79 |
+
|
| 80 |
+
- type: textarea
|
| 81 |
+
id: actual-behavior
|
| 82 |
+
attributes:
|
| 83 |
+
label: "What did you see happen?"
|
| 84 |
+
description: Command invocations and their associated output, functions with their arguments and return results, full stacktraces for panics (upload a file if it is very long), etc. Prefer copying text output over using screenshots.
|
| 85 |
+
validations:
|
| 86 |
+
required: true
|
| 87 |
+
|
| 88 |
+
- type: textarea
|
| 89 |
+
id: expected-behavior
|
| 90 |
+
attributes:
|
| 91 |
+
label: "What did you expect to see?"
|
| 92 |
+
description: Why is the current output incorrect, and any additional context we may need to understand the issue.
|
| 93 |
+
validations:
|
| 94 |
+
required: true
|
.github/ISSUE_TEMPLATE/01-pkgsite.yml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Pkg.go.dev bugs or feature requests
|
| 2 |
+
description: Issues or feature requests for the documentation site
|
| 3 |
+
title: "x/pkgsite: issue title"
|
| 4 |
+
labels: ["pkgsite"]
|
| 5 |
+
body:
|
| 6 |
+
- type: markdown
|
| 7 |
+
attributes:
|
| 8 |
+
value: "Please answer these questions before submitting your issue. Thanks!"
|
| 9 |
+
- type: input
|
| 10 |
+
id: url
|
| 11 |
+
attributes:
|
| 12 |
+
label: "What is the URL of the page with the issue?"
|
| 13 |
+
validations:
|
| 14 |
+
required: true
|
| 15 |
+
- type: input
|
| 16 |
+
id: user-agent
|
| 17 |
+
attributes:
|
| 18 |
+
label: "What is your user agent?"
|
| 19 |
+
description: "You can find your user agent here: https://www.google.com/search?q=what+is+my+user+agent"
|
| 20 |
+
validations:
|
| 21 |
+
required: true
|
| 22 |
+
- type: textarea
|
| 23 |
+
id: screenshot
|
| 24 |
+
attributes:
|
| 25 |
+
label: "Screenshot"
|
| 26 |
+
description: "Please paste a screenshot of the page."
|
| 27 |
+
validations:
|
| 28 |
+
required: false
|
| 29 |
+
- type: textarea
|
| 30 |
+
id: what-did-you-do
|
| 31 |
+
attributes:
|
| 32 |
+
label: "What did you do?"
|
| 33 |
+
description: "If possible, provide a recipe for reproducing the error. Starting with a Private/Incognito tab/window may help rule out problematic browser extensions."
|
| 34 |
+
validations:
|
| 35 |
+
required: true
|
| 36 |
+
- type: textarea
|
| 37 |
+
id: actual-behavior
|
| 38 |
+
attributes:
|
| 39 |
+
label: "What did you see happen?"
|
| 40 |
+
validations:
|
| 41 |
+
required: true
|
| 42 |
+
- type: textarea
|
| 43 |
+
id: expected-behavior
|
| 44 |
+
attributes:
|
| 45 |
+
label: "What did you expect to see?"
|
| 46 |
+
validations:
|
| 47 |
+
required: true
|
.github/ISSUE_TEMPLATE/02-pkgsite-removal.yml
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Pkg.go.dev package removal request
|
| 2 |
+
description: Request a package be removed from the documentation site (pkg.go.dev)
|
| 3 |
+
title: "x/pkgsite: package removal request for [type path here]"
|
| 4 |
+
labels: ["pkgsite/package-removal"]
|
| 5 |
+
body:
|
| 6 |
+
- type: markdown
|
| 7 |
+
attributes:
|
| 8 |
+
value: "Please answer these questions before submitting your issue. Thanks!"
|
| 9 |
+
- type: input
|
| 10 |
+
id: package-path
|
| 11 |
+
attributes:
|
| 12 |
+
label: "What is the path of the package that you would like to have removed?"
|
| 13 |
+
description: |
|
| 14 |
+
We can remove packages with a shared path prefix.
|
| 15 |
+
For example, a request for 'github.com/author' would remove all pkg.go.dev pages with that package path prefix.
|
| 16 |
+
validations:
|
| 17 |
+
required: true
|
| 18 |
+
- type: textarea
|
| 19 |
+
id: package-owner
|
| 20 |
+
attributes:
|
| 21 |
+
label: "Are you the owner of this package?"
|
| 22 |
+
description: |
|
| 23 |
+
Only the package owners can request to have their packages removed from pkg.go.dev.
|
| 24 |
+
If the package path doesn't include your github username, please provide some other form of proof of ownership.
|
| 25 |
+
validations:
|
| 26 |
+
required: true
|
| 27 |
+
- type: textarea
|
| 28 |
+
id: retraction-reason
|
| 29 |
+
attributes:
|
| 30 |
+
label: "What is the reason that you could not retract this package instead?"
|
| 31 |
+
description: |
|
| 32 |
+
Requesting we remove a module here only hides the generated documentation on pkg.go.dev.
|
| 33 |
+
It does not affect the behaviour of proxy.golang.org or the go command.
|
| 34 |
+
Instead we recommend using the retract directive which will be processed by all 3 of the above.
|
| 35 |
+
|
| 36 |
+
If you have deleted your repo, please recreate it and publish a retraction.
|
| 37 |
+
|
| 38 |
+
Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
|
| 39 |
+
For example: https://github.com/jba/retract-demo/blob/main/go.mod#L5-L8.
|
| 40 |
+
See https://pkg.go.dev/about#removing-a-package for additional tips on retractions.
|
| 41 |
+
validations:
|
| 42 |
+
required: true
|
.github/ISSUE_TEMPLATE/03-gopls.yml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Gopls bugs or feature requests
|
| 2 |
+
description: Issues or feature requests for the Go language server (gopls)
|
| 3 |
+
title: "x/tools/gopls: issue title"
|
| 4 |
+
labels: ["gopls", "Tools"]
|
| 5 |
+
body:
|
| 6 |
+
- type: markdown
|
| 7 |
+
attributes:
|
| 8 |
+
value: "Please answer these questions before submitting your issue. Thanks!"
|
| 9 |
+
- type: textarea
|
| 10 |
+
id: gopls-version
|
| 11 |
+
attributes:
|
| 12 |
+
label: "gopls version"
|
| 13 |
+
description: "Output of `gopls -v version` on the command line"
|
| 14 |
+
validations:
|
| 15 |
+
required: true
|
| 16 |
+
- type: textarea
|
| 17 |
+
id: go-env
|
| 18 |
+
attributes:
|
| 19 |
+
label: "go env"
|
| 20 |
+
description: "Output of `go env` on the command line in your workspace directory"
|
| 21 |
+
render: shell
|
| 22 |
+
validations:
|
| 23 |
+
required: true
|
| 24 |
+
- type: textarea
|
| 25 |
+
id: what-did-you-do
|
| 26 |
+
attributes:
|
| 27 |
+
label: "What did you do?"
|
| 28 |
+
description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is better. A failing unit test is the best."
|
| 29 |
+
validations:
|
| 30 |
+
required: true
|
| 31 |
+
- type: textarea
|
| 32 |
+
id: actual-behavior
|
| 33 |
+
attributes:
|
| 34 |
+
label: "What did you see happen?"
|
| 35 |
+
validations:
|
| 36 |
+
required: true
|
| 37 |
+
- type: textarea
|
| 38 |
+
id: expected-behavior
|
| 39 |
+
attributes:
|
| 40 |
+
label: "What did you expect to see?"
|
| 41 |
+
validations:
|
| 42 |
+
required: true
|
| 43 |
+
- type: textarea
|
| 44 |
+
id: editor-and-settings
|
| 45 |
+
attributes:
|
| 46 |
+
label: "Editor and settings"
|
| 47 |
+
description: "Your editor and any settings you have configured (for example, your VSCode settings.json file)"
|
| 48 |
+
validations:
|
| 49 |
+
required: false
|
| 50 |
+
- type: textarea
|
| 51 |
+
id: logs
|
| 52 |
+
attributes:
|
| 53 |
+
label: "Logs"
|
| 54 |
+
description: "If possible please include gopls logs. Instructions for capturing them can be found here: https://github.com/golang/tools/blob/master/gopls/doc/troubleshooting.md#capture-logs"
|
| 55 |
+
validations:
|
| 56 |
+
required: false
|
.github/ISSUE_TEMPLATE/04-vuln.yml
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Go vulnerability management - bugs and feature requests
|
| 2 |
+
description: Issues or feature requests about Go vulnerability management
|
| 3 |
+
title: "x/vuln: issue title"
|
| 4 |
+
labels: ["vulncheck or vulndb"]
|
| 5 |
+
body:
|
| 6 |
+
- type: markdown
|
| 7 |
+
attributes:
|
| 8 |
+
value: "Please answer these questions before submitting your issue. Thanks! To add a new vulnerability to the Go vulnerability database (https://vuln.go.dev), see https://go.dev/s/vulndb-report-new. To report an issue about a report, see https://go.dev/s/vulndb-report-feedback."
|
| 9 |
+
- type: textarea
|
| 10 |
+
id: govulncheck-version
|
| 11 |
+
attributes:
|
| 12 |
+
label: govulncheck version
|
| 13 |
+
description: What version of govulncheck are you using (`govulncheck -version`)?
|
| 14 |
+
placeholder: |
|
| 15 |
+
Go: devel go1.22-0262ea1ff9 Thu Oct 26 18:46:50 2023 +0000
|
| 16 |
+
Scanner: govulncheck@v1.0.2-0.20231108200754-fcf7dff7b242
|
| 17 |
+
DB: https://vuln.go.dev
|
| 18 |
+
DB updated: 2023-11-21 15:39:17 +0000 UTC
|
| 19 |
+
validations:
|
| 20 |
+
required: true
|
| 21 |
+
- type: textarea
|
| 22 |
+
id: reproduce-latest-version
|
| 23 |
+
attributes:
|
| 24 |
+
label: "Does this issue reproduce at the latest version of golang.org/x/vuln?"
|
| 25 |
+
validations:
|
| 26 |
+
required: true
|
| 27 |
+
- type: textarea
|
| 28 |
+
id: go-env
|
| 29 |
+
attributes:
|
| 30 |
+
label: "Output of `go env` in your module/workspace:"
|
| 31 |
+
render: shell
|
| 32 |
+
validations:
|
| 33 |
+
required: true
|
| 34 |
+
- type: textarea
|
| 35 |
+
id: what-did-you-do
|
| 36 |
+
attributes:
|
| 37 |
+
label: "What did you do?"
|
| 38 |
+
description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best."
|
| 39 |
+
validations:
|
| 40 |
+
required: true
|
| 41 |
+
- type: textarea
|
| 42 |
+
id: actual-behavior
|
| 43 |
+
attributes:
|
| 44 |
+
label: "What did you see happen?"
|
| 45 |
+
validations:
|
| 46 |
+
required: true
|
| 47 |
+
- type: textarea
|
| 48 |
+
id: expected-behavior
|
| 49 |
+
attributes:
|
| 50 |
+
label: "What did you expect to see?"
|
| 51 |
+
validations:
|
| 52 |
+
required: true
|
.github/ISSUE_TEMPLATE/10-proposal.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Proposals
|
| 2 |
+
description: New external API or other notable changes
|
| 3 |
+
title: "proposal: import/path: proposal title"
|
| 4 |
+
labels: ["Proposal"]
|
| 5 |
+
body:
|
| 6 |
+
- type: markdown
|
| 7 |
+
attributes:
|
| 8 |
+
value: "Our proposal process is documented here: https://go.dev/s/proposal-process"
|
| 9 |
+
- type: textarea
|
| 10 |
+
id: proposal-details
|
| 11 |
+
attributes:
|
| 12 |
+
label: "Proposal Details"
|
| 13 |
+
description: "Please provide the details of your proposal here."
|
| 14 |
+
validations:
|
| 15 |
+
required: true
|
.github/ISSUE_TEMPLATE/11-language-change.yml
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Language Change Proposals
|
| 2 |
+
description: Changes to the language
|
| 3 |
+
labels: ["Proposal", "LanguageChange", "LanguageChangeReview"]
|
| 4 |
+
title: "proposal: spec: proposal title"
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
body:
|
| 8 |
+
- type: markdown
|
| 9 |
+
attributes:
|
| 10 |
+
value: |
|
| 11 |
+
## Our process for evaluating language changes can be found [here](https://go.googlesource.com/proposal/+/refs/heads/master#language-changes)
|
| 12 |
+
|
| 13 |
+
- type: dropdown
|
| 14 |
+
id: author-go-experience
|
| 15 |
+
attributes:
|
| 16 |
+
label: "Go Programming Experience"
|
| 17 |
+
description: "Would you consider yourself a novice, intermediate, or experienced Go programmer?"
|
| 18 |
+
options:
|
| 19 |
+
- "Novice"
|
| 20 |
+
- "Intermediate"
|
| 21 |
+
- "Experienced"
|
| 22 |
+
default: 1
|
| 23 |
+
|
| 24 |
+
- type: input
|
| 25 |
+
id: author-other-languages-experience
|
| 26 |
+
attributes:
|
| 27 |
+
label: "Other Languages Experience"
|
| 28 |
+
description: "What other languages do you have experience with?"
|
| 29 |
+
placeholder: "Go, Python, JS, Rust"
|
| 30 |
+
validations:
|
| 31 |
+
required: false
|
| 32 |
+
|
| 33 |
+
- type: checkboxes
|
| 34 |
+
id: related-idea
|
| 35 |
+
attributes:
|
| 36 |
+
label: "Related Idea"
|
| 37 |
+
options:
|
| 38 |
+
- label: "Has this idea, or one like it, been proposed before?"
|
| 39 |
+
- label: "Does this affect error handling?"
|
| 40 |
+
- label: "Is this about generics?"
|
| 41 |
+
- label: "Is this change backward compatible? Breaking the Go 1 compatibility guarantee is a large cost and requires a large benefit"
|
| 42 |
+
|
| 43 |
+
- type: textarea
|
| 44 |
+
id: related-proposals
|
| 45 |
+
attributes:
|
| 46 |
+
label: Has this idea, or one like it, been proposed before?
|
| 47 |
+
description: If so, how does this proposal differ?
|
| 48 |
+
placeholder: |
|
| 49 |
+
Yes or No
|
| 50 |
+
|
| 51 |
+
If yes,
|
| 52 |
+
1. Mention the related proposals
|
| 53 |
+
2. then describe how this proposal differs
|
| 54 |
+
validations:
|
| 55 |
+
required: true
|
| 56 |
+
|
| 57 |
+
- type: textarea
|
| 58 |
+
id: error-handling-proposal
|
| 59 |
+
attributes:
|
| 60 |
+
label: Does this affect error handling?
|
| 61 |
+
description: If so, how does this differ from previous error handling proposals?
|
| 62 |
+
placeholder: |
|
| 63 |
+
Yes or No
|
| 64 |
+
|
| 65 |
+
If yes,
|
| 66 |
+
1.how does this differ from previous error handling proposals?
|
| 67 |
+
|
| 68 |
+
validations:
|
| 69 |
+
required: true
|
| 70 |
+
|
| 71 |
+
- type: textarea
|
| 72 |
+
id: generics-proposal
|
| 73 |
+
attributes:
|
| 74 |
+
label: Is this about generics?
|
| 75 |
+
description: If so, how does this relate to the accepted design and other generics proposals?
|
| 76 |
+
placeholder: |
|
| 77 |
+
Yes or No
|
| 78 |
+
|
| 79 |
+
If yes,
|
| 80 |
+
1. how does this relate to the accepted design and other generics proposals?
|
| 81 |
+
|
| 82 |
+
validations:
|
| 83 |
+
required: true
|
| 84 |
+
|
| 85 |
+
- type: textarea
|
| 86 |
+
id: proposal
|
| 87 |
+
attributes:
|
| 88 |
+
label: "Proposal"
|
| 89 |
+
description: "What is the proposed change? Who does this proposal help, and why? Please describe as precisely as possible the change to the language."
|
| 90 |
+
validations:
|
| 91 |
+
required: true
|
| 92 |
+
|
| 93 |
+
- type: textarea
|
| 94 |
+
id: language-spec-changes
|
| 95 |
+
attributes:
|
| 96 |
+
label: "Language Spec Changes"
|
| 97 |
+
description: "What would change in the language spec?"
|
| 98 |
+
validations:
|
| 99 |
+
required: false
|
| 100 |
+
|
| 101 |
+
- type: textarea
|
| 102 |
+
id: informal-change
|
| 103 |
+
attributes:
|
| 104 |
+
label: "Informal Change"
|
| 105 |
+
description: "Please also describe the change informally, as in a class teaching Go."
|
| 106 |
+
validations:
|
| 107 |
+
required: false
|
| 108 |
+
|
| 109 |
+
- type: textarea
|
| 110 |
+
id: go-backwards-compatiblity
|
| 111 |
+
attributes:
|
| 112 |
+
label: Is this change backward compatible?
|
| 113 |
+
description: Breaking the Go 1 compatibility guarantee is a large cost and requires a large benefit.
|
| 114 |
+
placeholder: |
|
| 115 |
+
Yes or No
|
| 116 |
+
|
| 117 |
+
If yes,
|
| 118 |
+
1. Show example code before and after the change.
|
| 119 |
+
|
| 120 |
+
validations:
|
| 121 |
+
required: true
|
| 122 |
+
|
| 123 |
+
- type: textarea
|
| 124 |
+
id: orthogonality
|
| 125 |
+
attributes:
|
| 126 |
+
label: "Orthogonality: How does this change interact or overlap with existing features?"
|
| 127 |
+
description: "Is the goal of this change a performance improvement? If so, what quantifiable improvement should we expect? How would we measure it?"
|
| 128 |
+
validations:
|
| 129 |
+
required: false
|
| 130 |
+
|
| 131 |
+
- type: textarea
|
| 132 |
+
id: learning-curve
|
| 133 |
+
attributes:
|
| 134 |
+
label: "Would this change make Go easier or harder to learn, and why?"
|
| 135 |
+
|
| 136 |
+
- type: textarea
|
| 137 |
+
id: cost-description
|
| 138 |
+
attributes:
|
| 139 |
+
label: "Cost Description"
|
| 140 |
+
description: "What is the cost of this proposal? (Every language change has a cost)"
|
| 141 |
+
|
| 142 |
+
- type: input
|
| 143 |
+
id: go-toolchain
|
| 144 |
+
attributes:
|
| 145 |
+
label: Changes to Go ToolChain
|
| 146 |
+
description: "How many tools (such as vet, gopls, gofmt, goimports, etc.) would be affected? "
|
| 147 |
+
validations:
|
| 148 |
+
required: false
|
| 149 |
+
|
| 150 |
+
- type: input
|
| 151 |
+
id: perf-costs
|
| 152 |
+
attributes:
|
| 153 |
+
label: Performance Costs
|
| 154 |
+
description: "What is the compile time cost? What is the run time cost? "
|
| 155 |
+
validations:
|
| 156 |
+
required: false
|
| 157 |
+
|
| 158 |
+
- type: textarea
|
| 159 |
+
id: prototype
|
| 160 |
+
attributes:
|
| 161 |
+
label: "Prototype"
|
| 162 |
+
description: "Can you describe a possible implementation?"
|
| 163 |
+
validations:
|
| 164 |
+
required: false
|
| 165 |
+
|
.github/ISSUE_TEMPLATE/12-telemetry.yml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Go Telemetry Proposals
|
| 2 |
+
description: Changes to the telemetry upload configuration
|
| 3 |
+
title: "x/telemetry/config: proposal title"
|
| 4 |
+
labels: ["Telemetry-Proposal"]
|
| 5 |
+
projects: ["golang/29"]
|
| 6 |
+
body:
|
| 7 |
+
- type: textarea
|
| 8 |
+
attributes:
|
| 9 |
+
label: Summary
|
| 10 |
+
description: >
|
| 11 |
+
What change are you proposing to the upload configuration, and why?
|
| 12 |
+
For new upload configuration, which new counters will be collected, what
|
| 13 |
+
do they measure, and why is it important to collect them?
|
| 14 |
+
Note that uploaded data must not carry sensitive user information.
|
| 15 |
+
See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
|
| 16 |
+
for more details on telemetry proposals.
|
| 17 |
+
validations:
|
| 18 |
+
required: true
|
| 19 |
+
- type: input
|
| 20 |
+
attributes:
|
| 21 |
+
label: Proposed Config Change
|
| 22 |
+
description: >
|
| 23 |
+
A CL containing proposed changes to the
|
| 24 |
+
[config.txt](https://go.googlesource.com/telemetry/+/master/internal/chartconfig/config.txt)
|
| 25 |
+
chart configuration.
|
| 26 |
+
See the [chartconfig](https://pkg.go.dev/golang.org/x/telemetry/internal/chartconfig)
|
| 27 |
+
package for an explanation of the chart config format.
|
| 28 |
+
For an example change, see [CL 564619](https://go.dev/cl/564619).
|
| 29 |
+
validations:
|
| 30 |
+
required: true
|
.github/ISSUE_TEMPLATE/config.yml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
blank_issues_enabled: true
|
| 2 |
+
contact_links:
|
| 3 |
+
- name: Questions
|
| 4 |
+
about: Please use one of the forums for questions or general discussions
|
| 5 |
+
url: https://go.dev/wiki/Questions
|
.github/PULL_REQUEST_TEMPLATE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This PR will be imported into Gerrit with the title and first
|
| 2 |
+
comment (this text) used to generate the subject and body of
|
| 3 |
+
the Gerrit change.
|
| 4 |
+
|
| 5 |
+
**Please ensure you adhere to every item in this list.**
|
| 6 |
+
|
| 7 |
+
More info can be found at https://github.com/golang/go/wiki/CommitMessage
|
| 8 |
+
|
| 9 |
+
+ The PR title is formatted as follows: `net/http: frob the quux before blarfing`
|
| 10 |
+
+ The package name goes before the colon
|
| 11 |
+
+ The part after the colon uses the verb tense + phrase that completes the blank in,
|
| 12 |
+
"This change modifies Go to ___________"
|
| 13 |
+
+ Lowercase verb after the colon
|
| 14 |
+
+ No trailing period
|
| 15 |
+
+ Keep the title as short as possible. ideally under 76 characters or shorter
|
| 16 |
+
+ No Markdown
|
| 17 |
+
+ The first PR comment (this one) is wrapped at 76 characters, unless it's
|
| 18 |
+
really needed (ASCII art, table, or long link)
|
| 19 |
+
+ If there is a corresponding issue, add either `Fixes #1234` or `Updates #1234`
|
| 20 |
+
(the latter if this is not a complete fix) to this comment
|
| 21 |
+
+ If referring to a repo other than `golang/go` you can use the
|
| 22 |
+
`owner/repo#issue_number` syntax: `Fixes golang/tools#1234`
|
| 23 |
+
+ We do not use Signed-off-by lines in Go. Please don't add them.
|
| 24 |
+
Our Gerrit server & GitHub bots enforce CLA compliance instead.
|
| 25 |
+
+ Delete these instructions once you have read and applied them
|
.github/SUPPORT.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Unlike many projects on GitHub, the Go project does not use its bug tracker for general discussion or asking questions.
|
| 2 |
+
We only use our bug tracker for tracking bugs and tracking proposals going through the [Proposal Process](https://go.dev/s/proposal-process).
|
| 3 |
+
|
| 4 |
+
For asking questions, see:
|
| 5 |
+
|
| 6 |
+
* [The golang-nuts mailing list](https://groups.google.com/d/forum/golang-nuts)
|
| 7 |
+
|
| 8 |
+
* [The Go Forum](https://forum.golangbridge.org/), a web-based forum
|
| 9 |
+
|
| 10 |
+
* [Gophers Slack](https://gophers.slack.com), use the [invite app](https://invite.slack.golangbridge.org/) for access
|
| 11 |
+
|
| 12 |
+
* [Stack Overflow](https://stackoverflow.com/questions/tagged/go) with questions tagged "go"
|
| 13 |
+
|
| 14 |
+
* **IRC** channel #go-nuts on Libera
|
.gitignore
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.DS_Store
|
| 2 |
+
*.[56789ao]
|
| 3 |
+
*.a[56789o]
|
| 4 |
+
*.so
|
| 5 |
+
*.pyc
|
| 6 |
+
._*
|
| 7 |
+
.nfs.*
|
| 8 |
+
[56789a].out
|
| 9 |
+
*~
|
| 10 |
+
*.orig
|
| 11 |
+
*.rej
|
| 12 |
+
*.exe
|
| 13 |
+
.*.swp
|
| 14 |
+
core
|
| 15 |
+
*.cgo*.go
|
| 16 |
+
*.cgo*.c
|
| 17 |
+
_cgo_*
|
| 18 |
+
_obj
|
| 19 |
+
_test
|
| 20 |
+
_testmain.go
|
| 21 |
+
|
| 22 |
+
/VERSION.cache
|
| 23 |
+
/bin/
|
| 24 |
+
/build.out
|
| 25 |
+
/doc/articles/wiki/*.bin
|
| 26 |
+
/goinstall.log
|
| 27 |
+
/last-change
|
| 28 |
+
/misc/cgo/life/run.out
|
| 29 |
+
/misc/cgo/stdio/run.out
|
| 30 |
+
/misc/cgo/testso/main
|
| 31 |
+
/pkg/
|
| 32 |
+
/src/*.*/
|
| 33 |
+
/src/_artifacts/
|
| 34 |
+
/src/cmd/cgo/zdefaultcc.go
|
| 35 |
+
/src/cmd/dist/dist
|
| 36 |
+
/src/cmd/go/internal/cfg/zdefaultcc.go
|
| 37 |
+
/src/cmd/internal/objabi/zbootstrap.go
|
| 38 |
+
/src/go/build/zcgo.go
|
| 39 |
+
/src/go/doc/headscan
|
| 40 |
+
/src/internal/buildcfg/zbootstrap.go
|
| 41 |
+
/src/internal/runtime/sys/zversion.go
|
| 42 |
+
/src/unicode/maketables
|
| 43 |
+
/src/time/tzdata/zzipdata.go
|
| 44 |
+
/test.out
|
| 45 |
+
/test/garbage/*.out
|
| 46 |
+
/test/pass.out
|
| 47 |
+
/test/run.out
|
| 48 |
+
/test/times.out
|
| 49 |
+
|
| 50 |
+
# This file includes artifacts of Go build that should not be checked in.
|
| 51 |
+
# For files created by specific development environment (e.g. editor),
|
| 52 |
+
# use alternative ways to exclude files from git.
|
| 53 |
+
# For example, set up .git/info/exclude or use a global .gitignore.
|
CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Contributing to Go
|
| 2 |
+
|
| 3 |
+
Go is an open source project.
|
| 4 |
+
|
| 5 |
+
It is the work of hundreds of contributors. We appreciate your help!
|
| 6 |
+
|
| 7 |
+
## Before filing an issue
|
| 8 |
+
|
| 9 |
+
If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing
|
| 10 |
+
list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If
|
| 11 |
+
the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker.
|
| 12 |
+
|
| 13 |
+
## Filing issues
|
| 14 |
+
|
| 15 |
+
Sensitive security-related issues should be reported to [security@golang.org](mailto:security@golang.org).
|
| 16 |
+
See the [security policy](https://golang.org/security) for details.
|
| 17 |
+
|
| 18 |
+
The recommended way to file an issue is by running `go bug`.
|
| 19 |
+
Otherwise, when filing an issue, make sure to answer these five questions:
|
| 20 |
+
|
| 21 |
+
1. What version of Go are you using (`go version`)?
|
| 22 |
+
2. What operating system and processor architecture are you using?
|
| 23 |
+
3. What did you do?
|
| 24 |
+
4. What did you expect to see?
|
| 25 |
+
5. What did you see instead?
|
| 26 |
+
|
| 27 |
+
For change proposals, see [Proposing Changes To Go](https://go.dev/s/proposal-process).
|
| 28 |
+
|
| 29 |
+
## Contributing code
|
| 30 |
+
|
| 31 |
+
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending patches.
|
| 32 |
+
|
| 33 |
+
Unless otherwise noted, the Go source files are distributed under
|
| 34 |
+
the BSD-style license found in the LICENSE file.
|
| 35 |
+
|
LICENSE
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright 2009 The Go Authors.
|
| 2 |
+
|
| 3 |
+
Redistribution and use in source and binary forms, with or without
|
| 4 |
+
modification, are permitted provided that the following conditions are
|
| 5 |
+
met:
|
| 6 |
+
|
| 7 |
+
* Redistributions of source code must retain the above copyright
|
| 8 |
+
notice, this list of conditions and the following disclaimer.
|
| 9 |
+
* Redistributions in binary form must reproduce the above
|
| 10 |
+
copyright notice, this list of conditions and the following disclaimer
|
| 11 |
+
in the documentation and/or other materials provided with the
|
| 12 |
+
distribution.
|
| 13 |
+
* Neither the name of Google LLC nor the names of its
|
| 14 |
+
contributors may be used to endorse or promote products derived from
|
| 15 |
+
this software without specific prior written permission.
|
| 16 |
+
|
| 17 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| 18 |
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| 19 |
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| 20 |
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| 21 |
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| 22 |
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| 23 |
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| 24 |
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| 25 |
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| 26 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 27 |
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
PATENTS
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Additional IP Rights Grant (Patents)
|
| 2 |
+
|
| 3 |
+
"This implementation" means the copyrightable works distributed by
|
| 4 |
+
Google as part of the Go project.
|
| 5 |
+
|
| 6 |
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
| 7 |
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
| 8 |
+
patent license to make, have made, use, offer to sell, sell, import,
|
| 9 |
+
transfer and otherwise run, modify and propagate the contents of this
|
| 10 |
+
implementation of Go, where such license applies only to those patent
|
| 11 |
+
claims, both currently owned or controlled by Google and acquired in
|
| 12 |
+
the future, licensable by Google that are necessarily infringed by this
|
| 13 |
+
implementation of Go. This grant does not include claims that would be
|
| 14 |
+
infringed only as a consequence of further modification of this
|
| 15 |
+
implementation. If you or your agent or exclusive licensee institute or
|
| 16 |
+
order or agree to the institution of patent litigation against any
|
| 17 |
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
| 18 |
+
that this implementation of Go or any code incorporated within this
|
| 19 |
+
implementation of Go constitutes direct or contributory patent
|
| 20 |
+
infringement, or inducement of patent infringement, then any patent
|
| 21 |
+
rights granted to you under this License for this implementation of Go
|
| 22 |
+
shall terminate as of the date such litigation is filed.
|
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# The Go Programming Language
|
| 2 |
+
|
| 3 |
+
Go is an open source programming language that makes it easy to build simple,
|
| 4 |
+
reliable, and efficient software.
|
| 5 |
+
|
| 6 |
+

|
| 7 |
+
*Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attribution license][cc4-by].*
|
| 8 |
+
|
| 9 |
+
Our canonical Git repository is located at https://go.googlesource.com/go.
|
| 10 |
+
There is a mirror of the repository at https://github.com/golang/go.
|
| 11 |
+
|
| 12 |
+
Unless otherwise noted, the Go source files are distributed under the
|
| 13 |
+
BSD-style license found in the LICENSE file.
|
| 14 |
+
|
| 15 |
+
### Download and Install
|
| 16 |
+
|
| 17 |
+
#### Binary Distributions
|
| 18 |
+
|
| 19 |
+
Official binary distributions are available at https://go.dev/dl/.
|
| 20 |
+
|
| 21 |
+
After downloading a binary release, visit https://go.dev/doc/install
|
| 22 |
+
for installation instructions.
|
| 23 |
+
|
| 24 |
+
#### Install From Source
|
| 25 |
+
|
| 26 |
+
If a binary distribution is not available for your combination of
|
| 27 |
+
operating system and architecture, visit
|
| 28 |
+
https://go.dev/doc/install/source
|
| 29 |
+
for source installation instructions.
|
| 30 |
+
|
| 31 |
+
### Contributing
|
| 32 |
+
|
| 33 |
+
Go is the work of thousands of contributors. We appreciate your help!
|
| 34 |
+
|
| 35 |
+
To contribute, please read the contribution guidelines at https://go.dev/doc/contribute.
|
| 36 |
+
|
| 37 |
+
Note that the Go project uses the issue tracker for bug reports and
|
| 38 |
+
proposals only. See https://go.dev/wiki/Questions for a list of
|
| 39 |
+
places to ask questions about the Go language.
|
| 40 |
+
|
| 41 |
+
[rf]: https://reneefrench.blogspot.com/
|
| 42 |
+
[cc4-by]: https://creativecommons.org/licenses/by/4.0/
|
SECURITY.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Security Policy
|
| 2 |
+
|
| 3 |
+
## Supported Versions
|
| 4 |
+
|
| 5 |
+
We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release).
|
| 6 |
+
|
| 7 |
+
See https://go.dev/wiki/Go-Release-Cycle and in particular the
|
| 8 |
+
[Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance)
|
| 9 |
+
part of that page.
|
| 10 |
+
|
| 11 |
+
## Reporting a Vulnerability
|
| 12 |
+
|
| 13 |
+
See https://go.dev/security/policy for how to report a vulnerability.
|
api/README
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
|
| 2 |
+
|
| 3 |
+
Each file is a list of API features, one per line.
|
| 4 |
+
|
| 5 |
+
go1.txt (and similarly named files) are frozen once a version has been
|
| 6 |
+
shipped. Each file adds new lines but does not remove any.
|
| 7 |
+
|
| 8 |
+
except.txt lists features that may disappear without breaking true
|
| 9 |
+
compatibility.
|
| 10 |
+
|
| 11 |
+
Starting with go1.19.txt, each API feature line must end in "#nnnnn"
|
| 12 |
+
giving the GitHub issue number of the proposal issue that accepted
|
| 13 |
+
the new API. This helps with our end-of-cycle audit of new APIs.
|
| 14 |
+
The same requirement applies to next/* (described below), which will
|
| 15 |
+
become a go1.XX.txt for XX >= 19.
|
| 16 |
+
|
| 17 |
+
The next/ directory contains the only files intended to be mutated.
|
| 18 |
+
Each file in that directory contains a list of features that may be added
|
| 19 |
+
to the next release of Go. The files in this directory only affect the
|
| 20 |
+
warning output from the go api tool. Each file should be named
|
| 21 |
+
nnnnn.txt, after the issue number for the accepted proposal.
|
| 22 |
+
(The #nnnnn suffix must also appear at the end of each line in the file;
|
| 23 |
+
that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
|
| 24 |
+
|
| 25 |
+
When you add a file to the api/next directory, you must add at least one file
|
| 26 |
+
under doc/next. See doc/README.md for details.
|
api/except.txt
ADDED
|
@@ -0,0 +1,604 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg crypto/tls, type ConnectionState struct, TLSUnique //deprecated
|
| 2 |
+
pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 61
|
| 3 |
+
pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error)
|
| 4 |
+
pkg math, const MaxFloat64 = 1.79769e+308 // 179769313486231570814527423731704356798100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
| 5 |
+
pkg math, const SmallestNonzeroFloat32 = 1.4013e-45 // 17516230804060213386546619791123951641/12500000000000000000000000000000000000000000000000000000000000000000000000000000000
|
| 6 |
+
pkg math, const SmallestNonzeroFloat64 = 4.94066e-324 // 4940656458412465441765687928682213723651/1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
| 7 |
+
pkg math/big, const MaxBase = 36
|
| 8 |
+
pkg math/big, type Word uintptr
|
| 9 |
+
pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error)
|
| 10 |
+
pkg os (linux-arm), const O_SYNC = 1052672
|
| 11 |
+
pkg os (linux-arm), const O_SYNC = 4096
|
| 12 |
+
pkg os (linux-arm-cgo), const O_SYNC = 1052672
|
| 13 |
+
pkg os (linux-arm-cgo), const O_SYNC = 4096
|
| 14 |
+
pkg os, const ModeAppend FileMode
|
| 15 |
+
pkg os, const ModeCharDevice FileMode
|
| 16 |
+
pkg os, const ModeDevice FileMode
|
| 17 |
+
pkg os, const ModeDir FileMode
|
| 18 |
+
pkg os, const ModeExclusive FileMode
|
| 19 |
+
pkg os, const ModeIrregular FileMode
|
| 20 |
+
pkg os, const ModeNamedPipe FileMode
|
| 21 |
+
pkg os, const ModePerm FileMode
|
| 22 |
+
pkg os, const ModeSetgid FileMode
|
| 23 |
+
pkg os, const ModeSetuid FileMode
|
| 24 |
+
pkg os, const ModeSocket FileMode
|
| 25 |
+
pkg os, const ModeSticky FileMode
|
| 26 |
+
pkg os, const ModeSymlink FileMode
|
| 27 |
+
pkg os, const ModeTemporary FileMode
|
| 28 |
+
pkg os, const ModeType = 2399141888
|
| 29 |
+
pkg os, const ModeType = 2399666176
|
| 30 |
+
pkg os, const ModeType FileMode
|
| 31 |
+
pkg os, func Chmod(string, FileMode) error
|
| 32 |
+
pkg os, func Lstat(string) (FileInfo, error)
|
| 33 |
+
pkg os, func Mkdir(string, FileMode) error
|
| 34 |
+
pkg os, func MkdirAll(string, FileMode) error
|
| 35 |
+
pkg os, func OpenFile(string, int, FileMode) (*File, error)
|
| 36 |
+
pkg os, func SameFile(FileInfo, FileInfo) bool
|
| 37 |
+
pkg os, func Stat(string) (FileInfo, error)
|
| 38 |
+
pkg os, method (*File) Chmod(FileMode) error
|
| 39 |
+
pkg os, method (*File) Readdir(int) ([]FileInfo, error)
|
| 40 |
+
pkg os, method (*File) Stat() (FileInfo, error)
|
| 41 |
+
pkg os, method (*PathError) Error() string
|
| 42 |
+
pkg os, method (*PathError) Timeout() bool
|
| 43 |
+
pkg os, method (*PathError) Unwrap() error
|
| 44 |
+
pkg os, method (FileMode) IsDir() bool
|
| 45 |
+
pkg os, method (FileMode) IsRegular() bool
|
| 46 |
+
pkg os, method (FileMode) Perm() FileMode
|
| 47 |
+
pkg os, method (FileMode) String() string
|
| 48 |
+
pkg os, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys }
|
| 49 |
+
pkg os, type FileInfo interface, IsDir() bool
|
| 50 |
+
pkg os, type FileInfo interface, ModTime() time.Time
|
| 51 |
+
pkg os, type FileInfo interface, Mode() FileMode
|
| 52 |
+
pkg os, type FileInfo interface, Name() string
|
| 53 |
+
pkg os, type FileInfo interface, Size() int64
|
| 54 |
+
pkg os, type FileInfo interface, Sys() interface{}
|
| 55 |
+
pkg os, type FileMode uint32
|
| 56 |
+
pkg os, type PathError struct
|
| 57 |
+
pkg os, type PathError struct, Err error
|
| 58 |
+
pkg os, type PathError struct, Op string
|
| 59 |
+
pkg os, type PathError struct, Path string
|
| 60 |
+
pkg syscall (darwin-amd64), const ImplementsGetwd = false
|
| 61 |
+
pkg syscall (darwin-amd64), func Fchflags(string, int) error
|
| 62 |
+
pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = false
|
| 63 |
+
pkg syscall (darwin-amd64-cgo), func Fchflags(string, int) error
|
| 64 |
+
pkg syscall (freebsd-386), const AF_MAX = 38
|
| 65 |
+
pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 242
|
| 66 |
+
pkg syscall (freebsd-386), const ELAST = 94
|
| 67 |
+
pkg syscall (freebsd-386), const ImplementsGetwd = false
|
| 68 |
+
pkg syscall (freebsd-386), const O_CLOEXEC = 0
|
| 69 |
+
pkg syscall (freebsd-386), func Fchflags(string, int) error
|
| 70 |
+
pkg syscall (freebsd-386), func Mknod(string, uint32, int) error
|
| 71 |
+
pkg syscall (freebsd-386), type Dirent struct, Fileno uint32
|
| 72 |
+
pkg syscall (freebsd-386), type Dirent struct, Namlen uint8
|
| 73 |
+
pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32
|
| 74 |
+
pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
|
| 75 |
+
pkg syscall (freebsd-386), type Stat_t struct, Gen uint32
|
| 76 |
+
pkg syscall (freebsd-386), type Stat_t struct, Ino uint32
|
| 77 |
+
pkg syscall (freebsd-386), type Stat_t struct, Lspare int32
|
| 78 |
+
pkg syscall (freebsd-386), type Stat_t struct, Nlink uint16
|
| 79 |
+
pkg syscall (freebsd-386), type Stat_t struct, Pad_cgo_0 [8]uint8
|
| 80 |
+
pkg syscall (freebsd-386), type Stat_t struct, Rdev uint32
|
| 81 |
+
pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [88]int8
|
| 82 |
+
pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [88]int8
|
| 83 |
+
pkg syscall (freebsd-386-cgo), const AF_MAX = 38
|
| 84 |
+
pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX = 242
|
| 85 |
+
pkg syscall (freebsd-386-cgo), const ELAST = 94
|
| 86 |
+
pkg syscall (freebsd-386-cgo), const ImplementsGetwd = false
|
| 87 |
+
pkg syscall (freebsd-386-cgo), const O_CLOEXEC = 0
|
| 88 |
+
pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, int) error
|
| 89 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32
|
| 90 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint8
|
| 91 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize uint32
|
| 92 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint32
|
| 93 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint32
|
| 94 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint32
|
| 95 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Lspare int32
|
| 96 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint16
|
| 97 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Pad_cgo_0 [8]uint8
|
| 98 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint32
|
| 99 |
+
pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [88]int8
|
| 100 |
+
pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [88]int8
|
| 101 |
+
pkg syscall (freebsd-amd64), const AF_MAX = 38
|
| 102 |
+
pkg syscall (freebsd-amd64), const DLT_MATCHING_MAX = 242
|
| 103 |
+
pkg syscall (freebsd-amd64), const ELAST = 94
|
| 104 |
+
pkg syscall (freebsd-amd64), const ImplementsGetwd = false
|
| 105 |
+
pkg syscall (freebsd-amd64), const O_CLOEXEC = 0
|
| 106 |
+
pkg syscall (freebsd-amd64), func Fchflags(string, int) error
|
| 107 |
+
pkg syscall (freebsd-amd64), func Mknod(string, uint32, int) error
|
| 108 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Fileno uint32
|
| 109 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Namlen uint8
|
| 110 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Blksize uint32
|
| 111 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint32
|
| 112 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint32
|
| 113 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Ino uint32
|
| 114 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Lspare int32
|
| 115 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Nlink uint16
|
| 116 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Rdev uint32
|
| 117 |
+
pkg syscall (freebsd-amd64), type Statfs_t struct, Mntfromname [88]int8
|
| 118 |
+
pkg syscall (freebsd-amd64), type Statfs_t struct, Mntonname [88]int8
|
| 119 |
+
pkg syscall (freebsd-amd64-cgo), const AF_MAX = 38
|
| 120 |
+
pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX = 242
|
| 121 |
+
pkg syscall (freebsd-amd64-cgo), const ELAST = 94
|
| 122 |
+
pkg syscall (freebsd-amd64-cgo), const ImplementsGetwd = false
|
| 123 |
+
pkg syscall (freebsd-amd64-cgo), const O_CLOEXEC = 0
|
| 124 |
+
pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, int) error
|
| 125 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint32
|
| 126 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint8
|
| 127 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize uint32
|
| 128 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint32
|
| 129 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint32
|
| 130 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint32
|
| 131 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Lspare int32
|
| 132 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint16
|
| 133 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint32
|
| 134 |
+
pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [88]int8
|
| 135 |
+
pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [88]int8
|
| 136 |
+
pkg syscall (freebsd-arm), const AF_MAX = 38
|
| 137 |
+
pkg syscall (freebsd-arm), const BIOCGRTIMEOUT = 1074545262
|
| 138 |
+
pkg syscall (freebsd-arm), const BIOCSRTIMEOUT = 2148287085
|
| 139 |
+
pkg syscall (freebsd-arm), const ELAST = 94
|
| 140 |
+
pkg syscall (freebsd-arm), const ImplementsGetwd = false
|
| 141 |
+
pkg syscall (freebsd-arm), const O_CLOEXEC = 0
|
| 142 |
+
pkg syscall (freebsd-arm), const SIOCAIFADDR = 2151967019
|
| 143 |
+
pkg syscall (freebsd-arm), const SIOCGIFSTATUS = 3274991931
|
| 144 |
+
pkg syscall (freebsd-arm), const SIOCSIFPHYADDR = 2151967046
|
| 145 |
+
pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET = 537
|
| 146 |
+
pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET ideal-int
|
| 147 |
+
pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT = 536
|
| 148 |
+
pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT ideal-int
|
| 149 |
+
pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET = 535
|
| 150 |
+
pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET ideal-int
|
| 151 |
+
pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT = 534
|
| 152 |
+
pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT ideal-int
|
| 153 |
+
pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET = 515
|
| 154 |
+
pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET ideal-int
|
| 155 |
+
pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT = 533
|
| 156 |
+
pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT ideal-int
|
| 157 |
+
pkg syscall (freebsd-arm), const SizeofBpfHdr = 24
|
| 158 |
+
pkg syscall (freebsd-arm), const SizeofIfData = 88
|
| 159 |
+
pkg syscall (freebsd-arm), const SizeofIfMsghdr = 104
|
| 160 |
+
pkg syscall (freebsd-arm), const SizeofSockaddrDatalink = 56
|
| 161 |
+
pkg syscall (freebsd-arm), const SizeofSockaddrUnix = 108
|
| 162 |
+
pkg syscall (freebsd-arm), const TIOCTIMESTAMP = 1074558041
|
| 163 |
+
pkg syscall (freebsd-arm), func Fchflags(string, int) error
|
| 164 |
+
pkg syscall (freebsd-arm), func Mknod(string, uint32, int) error
|
| 165 |
+
pkg syscall (freebsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8
|
| 166 |
+
pkg syscall (freebsd-arm), type Dirent struct, Fileno uint32
|
| 167 |
+
pkg syscall (freebsd-arm), type Dirent struct, Namlen uint8
|
| 168 |
+
pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8
|
| 169 |
+
pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8
|
| 170 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Blksize uint32
|
| 171 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Dev uint32
|
| 172 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Gen uint32
|
| 173 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Ino uint32
|
| 174 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Lspare int32
|
| 175 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint16
|
| 176 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8
|
| 177 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint32
|
| 178 |
+
pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [88]int8
|
| 179 |
+
pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [88]int8
|
| 180 |
+
pkg syscall (freebsd-arm-cgo), const AF_MAX = 38
|
| 181 |
+
pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT = 1074545262
|
| 182 |
+
pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT = 2148287085
|
| 183 |
+
pkg syscall (freebsd-arm-cgo), const ELAST = 94
|
| 184 |
+
pkg syscall (freebsd-arm-cgo), const ImplementsGetwd = false
|
| 185 |
+
pkg syscall (freebsd-arm-cgo), const O_CLOEXEC = 0
|
| 186 |
+
pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR = 2151967019
|
| 187 |
+
pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS = 3274991931
|
| 188 |
+
pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR = 2151967046
|
| 189 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET = 537
|
| 190 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET ideal-int
|
| 191 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT = 536
|
| 192 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int
|
| 193 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET = 535
|
| 194 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET ideal-int
|
| 195 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT = 534
|
| 196 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int
|
| 197 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET = 515
|
| 198 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET ideal-int
|
| 199 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT = 533
|
| 200 |
+
pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int
|
| 201 |
+
pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr = 24
|
| 202 |
+
pkg syscall (freebsd-arm-cgo), const SizeofIfData = 88
|
| 203 |
+
pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr = 104
|
| 204 |
+
pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink = 56
|
| 205 |
+
pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix = 108
|
| 206 |
+
pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP = 1074558041
|
| 207 |
+
pkg syscall (freebsd-arm-cgo), func Fchflags(string, int) error
|
| 208 |
+
pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, int) error
|
| 209 |
+
pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
|
| 210 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint32
|
| 211 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint8
|
| 212 |
+
pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8
|
| 213 |
+
pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8
|
| 214 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize uint32
|
| 215 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint32
|
| 216 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint32
|
| 217 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint32
|
| 218 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Lspare int32
|
| 219 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint16
|
| 220 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
|
| 221 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint32
|
| 222 |
+
pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [88]int8
|
| 223 |
+
pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [88]int8
|
| 224 |
+
pkg syscall (linux-386), type Cmsghdr struct, X__cmsg_data [0]uint8
|
| 225 |
+
pkg syscall (linux-386-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
|
| 226 |
+
pkg syscall (linux-amd64), type Cmsghdr struct, X__cmsg_data [0]uint8
|
| 227 |
+
pkg syscall (linux-amd64-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
|
| 228 |
+
pkg syscall (linux-arm), type Cmsghdr struct, X__cmsg_data [0]uint8
|
| 229 |
+
pkg syscall (linux-arm-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
|
| 230 |
+
pkg syscall (netbsd-386), const ImplementsGetwd = false
|
| 231 |
+
pkg syscall (netbsd-386-cgo), const ImplementsGetwd = false
|
| 232 |
+
pkg syscall (netbsd-amd64), const ImplementsGetwd = false
|
| 233 |
+
pkg syscall (netbsd-amd64-cgo), const ImplementsGetwd = false
|
| 234 |
+
pkg syscall (netbsd-arm), const ImplementsGetwd = false
|
| 235 |
+
pkg syscall (netbsd-arm), const SizeofIfData = 132
|
| 236 |
+
pkg syscall (netbsd-arm), func Fchflags(string, int) error
|
| 237 |
+
pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_1 [4]uint8
|
| 238 |
+
pkg syscall (netbsd-arm-cgo), const ImplementsGetwd = false
|
| 239 |
+
pkg syscall (netbsd-arm-cgo), const SizeofIfData = 132
|
| 240 |
+
pkg syscall (netbsd-arm-cgo), func Fchflags(string, int) error
|
| 241 |
+
pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8
|
| 242 |
+
pkg syscall (openbsd-386), const BIOCGRTIMEOUT = 1074283118
|
| 243 |
+
pkg syscall (openbsd-386), const BIOCSRTIMEOUT = 2148024941
|
| 244 |
+
pkg syscall (openbsd-386), const ImplementsGetwd = false
|
| 245 |
+
pkg syscall (openbsd-386), const RTF_FMASK = 63496
|
| 246 |
+
pkg syscall (openbsd-386), const RTM_VERSION = 4
|
| 247 |
+
pkg syscall (openbsd-386), const SIOCBRDGDADDR = 2150132039
|
| 248 |
+
pkg syscall (openbsd-386), const SIOCBRDGGPARAM = 3224922456
|
| 249 |
+
pkg syscall (openbsd-386), const SIOCBRDGSADDR = 3223873860
|
| 250 |
+
pkg syscall (openbsd-386), const SYS_CLOCK_GETRES = 234
|
| 251 |
+
pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME = 232
|
| 252 |
+
pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME = 233
|
| 253 |
+
pkg syscall (openbsd-386), const SYS_FHSTATFS = 309
|
| 254 |
+
pkg syscall (openbsd-386), const SYS_FSTAT = 292
|
| 255 |
+
pkg syscall (openbsd-386), const SYS_FSTATAT = 316
|
| 256 |
+
pkg syscall (openbsd-386), const SYS_FSTATFS = 308
|
| 257 |
+
pkg syscall (openbsd-386), const SYS_FUTIMENS = 327
|
| 258 |
+
pkg syscall (openbsd-386), const SYS_FUTIMES = 206
|
| 259 |
+
pkg syscall (openbsd-386), const SYS_GETDIRENTRIES = 312
|
| 260 |
+
pkg syscall (openbsd-386), const SYS_GETDIRENTRIES ideal-int
|
| 261 |
+
pkg syscall (openbsd-386), const SYS_GETFSSTAT = 306
|
| 262 |
+
pkg syscall (openbsd-386), const SYS_GETITIMER = 86
|
| 263 |
+
pkg syscall (openbsd-386), const SYS_GETRUSAGE = 117
|
| 264 |
+
pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY = 116
|
| 265 |
+
pkg syscall (openbsd-386), const SYS_KEVENT = 270
|
| 266 |
+
pkg syscall (openbsd-386), const SYS_KILL = 37
|
| 267 |
+
pkg syscall (openbsd-386), const SYS_LSTAT = 293
|
| 268 |
+
pkg syscall (openbsd-386), const SYS_NANOSLEEP = 240
|
| 269 |
+
pkg syscall (openbsd-386), const SYS_SELECT = 93
|
| 270 |
+
pkg syscall (openbsd-386), const SYS_SETITIMER = 83
|
| 271 |
+
pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY = 122
|
| 272 |
+
pkg syscall (openbsd-386), const SYS_STAT = 291
|
| 273 |
+
pkg syscall (openbsd-386), const SYS_STATFS = 307
|
| 274 |
+
pkg syscall (openbsd-386), const SYS_UTIMENSAT = 326
|
| 275 |
+
pkg syscall (openbsd-386), const SYS_UTIMES = 138
|
| 276 |
+
pkg syscall (openbsd-386), const SYS_WAIT4 = 7
|
| 277 |
+
pkg syscall (openbsd-386), const SYS___THRSLEEP = 300
|
| 278 |
+
pkg syscall (openbsd-386), const SizeofIfData = 208
|
| 279 |
+
pkg syscall (openbsd-386), const SizeofIfMsghdr = 232
|
| 280 |
+
pkg syscall (openbsd-386), const SizeofRtMetrics = 48
|
| 281 |
+
pkg syscall (openbsd-386), const SizeofRtMsghdr = 88
|
| 282 |
+
pkg syscall (openbsd-386), const TIOCGTSTAMP = 1074295899
|
| 283 |
+
pkg syscall (openbsd-386), type Dirent struct, Fileno uint32
|
| 284 |
+
pkg syscall (openbsd-386), type FdSet struct, Bits [32]int32
|
| 285 |
+
pkg syscall (openbsd-386), type Kevent_t struct, Data int32
|
| 286 |
+
pkg syscall (openbsd-386), type Mclpool struct, Grown uint32
|
| 287 |
+
pkg syscall (openbsd-386), type RtMetrics struct, Expire uint32
|
| 288 |
+
pkg syscall (openbsd-386), type Stat_t struct, Ino uint32
|
| 289 |
+
pkg syscall (openbsd-386), type Stat_t struct, Lspare0 int32
|
| 290 |
+
pkg syscall (openbsd-386), type Stat_t struct, Lspare1 int32
|
| 291 |
+
pkg syscall (openbsd-386), type Stat_t struct, Qspare [2]int64
|
| 292 |
+
pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint32
|
| 293 |
+
pkg syscall (openbsd-386), type Statfs_t struct, F_spare [3]uint32
|
| 294 |
+
pkg syscall (openbsd-386), type Timespec struct, Sec int32
|
| 295 |
+
pkg syscall (openbsd-386), type Timeval struct, Sec int32
|
| 296 |
+
pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT = 1074283118
|
| 297 |
+
pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT = 2148024941
|
| 298 |
+
pkg syscall (openbsd-386-cgo), const ImplementsGetwd = false
|
| 299 |
+
pkg syscall (openbsd-386-cgo), const RTF_FMASK = 63496
|
| 300 |
+
pkg syscall (openbsd-386-cgo), const RTM_VERSION = 4
|
| 301 |
+
pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR = 2150132039
|
| 302 |
+
pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM = 3224922456
|
| 303 |
+
pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR = 3223873860
|
| 304 |
+
pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES = 234
|
| 305 |
+
pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME = 232
|
| 306 |
+
pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME = 233
|
| 307 |
+
pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS = 309
|
| 308 |
+
pkg syscall (openbsd-386-cgo), const SYS_FSTAT = 292
|
| 309 |
+
pkg syscall (openbsd-386-cgo), const SYS_FSTATAT = 316
|
| 310 |
+
pkg syscall (openbsd-386-cgo), const SYS_FSTATFS = 308
|
| 311 |
+
pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS = 327
|
| 312 |
+
pkg syscall (openbsd-386-cgo), const SYS_FUTIMES = 206
|
| 313 |
+
pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES = 312
|
| 314 |
+
pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES ideal-int
|
| 315 |
+
pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT = 306
|
| 316 |
+
pkg syscall (openbsd-386-cgo), const SYS_GETITIMER = 86
|
| 317 |
+
pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE = 117
|
| 318 |
+
pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY = 116
|
| 319 |
+
pkg syscall (openbsd-386-cgo), const SYS_KEVENT = 270
|
| 320 |
+
pkg syscall (openbsd-386-cgo), const SYS_KILL = 37
|
| 321 |
+
pkg syscall (openbsd-386-cgo), const SYS_LSTAT = 293
|
| 322 |
+
pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP = 240
|
| 323 |
+
pkg syscall (openbsd-386-cgo), const SYS_SELECT = 93
|
| 324 |
+
pkg syscall (openbsd-386-cgo), const SYS_SETITIMER = 83
|
| 325 |
+
pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY = 122
|
| 326 |
+
pkg syscall (openbsd-386-cgo), const SYS_STAT = 291
|
| 327 |
+
pkg syscall (openbsd-386-cgo), const SYS_STATFS = 307
|
| 328 |
+
pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT = 326
|
| 329 |
+
pkg syscall (openbsd-386-cgo), const SYS_UTIMES = 138
|
| 330 |
+
pkg syscall (openbsd-386-cgo), const SYS_WAIT4 = 7
|
| 331 |
+
pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP = 300
|
| 332 |
+
pkg syscall (openbsd-386-cgo), const SizeofIfData = 208
|
| 333 |
+
pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr = 232
|
| 334 |
+
pkg syscall (openbsd-386-cgo), const SizeofRtMetrics = 48
|
| 335 |
+
pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr = 88
|
| 336 |
+
pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP = 1074295899
|
| 337 |
+
pkg syscall (openbsd-386-cgo), type Dirent struct, Fileno uint32
|
| 338 |
+
pkg syscall (openbsd-386-cgo), type FdSet struct, Bits [32]int32
|
| 339 |
+
pkg syscall (openbsd-386-cgo), type Kevent_t struct, Data int32
|
| 340 |
+
pkg syscall (openbsd-386-cgo), type Mclpool struct, Grown uint32
|
| 341 |
+
pkg syscall (openbsd-386-cgo), type RtMetrics struct, Expire uint32
|
| 342 |
+
pkg syscall (openbsd-386-cgo), type Stat_t struct, Ino uint32
|
| 343 |
+
pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare0 int32
|
| 344 |
+
pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare1 int32
|
| 345 |
+
pkg syscall (openbsd-386-cgo), type Stat_t struct, Qspare [2]int64
|
| 346 |
+
pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ctime uint32
|
| 347 |
+
pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_spare [3]uint32
|
| 348 |
+
pkg syscall (openbsd-386-cgo), type Timespec struct, Sec int32
|
| 349 |
+
pkg syscall (openbsd-386-cgo), type Timeval struct, Sec int32
|
| 350 |
+
pkg syscall (openbsd-amd64), const CCR0_FLUSH = 16
|
| 351 |
+
pkg syscall (openbsd-amd64), const CCR0_FLUSH ideal-int
|
| 352 |
+
pkg syscall (openbsd-amd64), const CPUID_CFLUSH = 524288
|
| 353 |
+
pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int
|
| 354 |
+
pkg syscall (openbsd-amd64), const EFER_LMA = 1024
|
| 355 |
+
pkg syscall (openbsd-amd64), const EFER_LMA ideal-int
|
| 356 |
+
pkg syscall (openbsd-amd64), const EFER_LME = 256
|
| 357 |
+
pkg syscall (openbsd-amd64), const EFER_LME ideal-int
|
| 358 |
+
pkg syscall (openbsd-amd64), const EFER_NXE = 2048
|
| 359 |
+
pkg syscall (openbsd-amd64), const EFER_NXE ideal-int
|
| 360 |
+
pkg syscall (openbsd-amd64), const EFER_SCE = 1
|
| 361 |
+
pkg syscall (openbsd-amd64), const EFER_SCE ideal-int
|
| 362 |
+
pkg syscall (openbsd-amd64), const ImplementsGetwd = false
|
| 363 |
+
pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH = 21
|
| 364 |
+
pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH ideal-int
|
| 365 |
+
pkg syscall (openbsd-amd64), const RTF_FMASK = 63496
|
| 366 |
+
pkg syscall (openbsd-amd64), const RTM_VERSION = 4
|
| 367 |
+
pkg syscall (openbsd-amd64), const SIOCBRDGDADDR = 2150132039
|
| 368 |
+
pkg syscall (openbsd-amd64), const SIOCBRDGSADDR = 3223873860
|
| 369 |
+
pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES = 234
|
| 370 |
+
pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME = 232
|
| 371 |
+
pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME = 233
|
| 372 |
+
pkg syscall (openbsd-amd64), const SYS_FHSTATFS = 309
|
| 373 |
+
pkg syscall (openbsd-amd64), const SYS_FSTAT = 292
|
| 374 |
+
pkg syscall (openbsd-amd64), const SYS_FSTATAT = 316
|
| 375 |
+
pkg syscall (openbsd-amd64), const SYS_FSTATFS = 308
|
| 376 |
+
pkg syscall (openbsd-amd64), const SYS_FUTIMENS = 327
|
| 377 |
+
pkg syscall (openbsd-amd64), const SYS_FUTIMES = 206
|
| 378 |
+
pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES = 312
|
| 379 |
+
pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES ideal-int
|
| 380 |
+
pkg syscall (openbsd-amd64), const SYS_GETFSSTAT = 306
|
| 381 |
+
pkg syscall (openbsd-amd64), const SYS_GETITIMER = 86
|
| 382 |
+
pkg syscall (openbsd-amd64), const SYS_GETRUSAGE = 117
|
| 383 |
+
pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY = 116
|
| 384 |
+
pkg syscall (openbsd-amd64), const SYS_KEVENT = 270
|
| 385 |
+
pkg syscall (openbsd-amd64), const SYS_KILL = 37
|
| 386 |
+
pkg syscall (openbsd-amd64), const SYS_LSTAT = 293
|
| 387 |
+
pkg syscall (openbsd-amd64), const SYS_NANOSLEEP = 240
|
| 388 |
+
pkg syscall (openbsd-amd64), const SYS_SELECT = 93
|
| 389 |
+
pkg syscall (openbsd-amd64), const SYS_SETITIMER = 83
|
| 390 |
+
pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY = 122
|
| 391 |
+
pkg syscall (openbsd-amd64), const SYS_STAT = 291
|
| 392 |
+
pkg syscall (openbsd-amd64), const SYS_STATFS = 307
|
| 393 |
+
pkg syscall (openbsd-amd64), const SYS_UTIMENSAT = 326
|
| 394 |
+
pkg syscall (openbsd-amd64), const SYS_UTIMES = 138
|
| 395 |
+
pkg syscall (openbsd-amd64), const SYS_WAIT4 = 7
|
| 396 |
+
pkg syscall (openbsd-amd64), const SYS___THRSLEEP = 300
|
| 397 |
+
pkg syscall (openbsd-amd64), const SizeofRtMetrics = 48
|
| 398 |
+
pkg syscall (openbsd-amd64), const SizeofRtMsghdr = 88
|
| 399 |
+
pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint32
|
| 400 |
+
pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32
|
| 401 |
+
pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32
|
| 402 |
+
pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32
|
| 403 |
+
pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32
|
| 404 |
+
pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32
|
| 405 |
+
pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32
|
| 406 |
+
pkg syscall (openbsd-amd64), type Stat_t struct, Lspare0 int32
|
| 407 |
+
pkg syscall (openbsd-amd64), type Stat_t struct, Lspare1 int32
|
| 408 |
+
pkg syscall (openbsd-amd64), type Stat_t struct, Qspare [2]int64
|
| 409 |
+
pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint32
|
| 410 |
+
pkg syscall (openbsd-amd64), type Statfs_t struct, F_spare [3]uint32
|
| 411 |
+
pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [4]uint8
|
| 412 |
+
pkg syscall (openbsd-amd64), type Timespec struct, Pad_cgo_0 [4]uint8
|
| 413 |
+
pkg syscall (openbsd-amd64), type Timespec struct, Sec int32
|
| 414 |
+
pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH = 16
|
| 415 |
+
pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH ideal-int
|
| 416 |
+
pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH = 524288
|
| 417 |
+
pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH ideal-int
|
| 418 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_LMA = 1024
|
| 419 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_LMA ideal-int
|
| 420 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_LME = 256
|
| 421 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_LME ideal-int
|
| 422 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_NXE = 2048
|
| 423 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_NXE ideal-int
|
| 424 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_SCE = 1
|
| 425 |
+
pkg syscall (openbsd-amd64-cgo), const EFER_SCE ideal-int
|
| 426 |
+
pkg syscall (openbsd-amd64-cgo), const ImplementsGetwd = false
|
| 427 |
+
pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH = 21
|
| 428 |
+
pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH ideal-int
|
| 429 |
+
pkg syscall (openbsd-amd64-cgo), const RTF_FMASK = 63496
|
| 430 |
+
pkg syscall (openbsd-amd64-cgo), const RTM_VERSION = 4
|
| 431 |
+
pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR = 2150132039
|
| 432 |
+
pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR = 3223873860
|
| 433 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES = 234
|
| 434 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME = 232
|
| 435 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME = 233
|
| 436 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS = 309
|
| 437 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT = 292
|
| 438 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT = 316
|
| 439 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS = 308
|
| 440 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS = 327
|
| 441 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES = 206
|
| 442 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES = 312
|
| 443 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int
|
| 444 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT = 306
|
| 445 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER = 86
|
| 446 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE = 117
|
| 447 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY = 116
|
| 448 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT = 270
|
| 449 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 37
|
| 450 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT = 293
|
| 451 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP = 240
|
| 452 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_SELECT = 93
|
| 453 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER = 83
|
| 454 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY = 122
|
| 455 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_STAT = 291
|
| 456 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_STATFS = 307
|
| 457 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT = 326
|
| 458 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES = 138
|
| 459 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 = 7
|
| 460 |
+
pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP = 300
|
| 461 |
+
pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics = 48
|
| 462 |
+
pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr = 88
|
| 463 |
+
pkg syscall (openbsd-amd64-cgo), type Dirent struct, Fileno uint32
|
| 464 |
+
pkg syscall (openbsd-amd64-cgo), type FdSet struct, Bits [32]int32
|
| 465 |
+
pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Data int32
|
| 466 |
+
pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Ident uint32
|
| 467 |
+
pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Grown uint32
|
| 468 |
+
pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Expire uint32
|
| 469 |
+
pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ino uint32
|
| 470 |
+
pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare0 int32
|
| 471 |
+
pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare1 int32
|
| 472 |
+
pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Qspare [2]int64
|
| 473 |
+
pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ctime uint32
|
| 474 |
+
pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_spare [3]uint32
|
| 475 |
+
pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_1 [4]uint8
|
| 476 |
+
pkg syscall (openbsd-amd64-cgo), type Timespec struct, Pad_cgo_0 [4]uint8
|
| 477 |
+
pkg syscall (openbsd-amd64-cgo), type Timespec struct, Sec int32
|
| 478 |
+
pkg syscall (windows-386), const TOKEN_ALL_ACCESS = 983295
|
| 479 |
+
pkg syscall (windows-386), type AddrinfoW struct, Addr uintptr
|
| 480 |
+
pkg syscall (windows-386), type CertChainPolicyPara struct, ExtraPolicyPara uintptr
|
| 481 |
+
pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr
|
| 482 |
+
pkg syscall (windows-386), type CertContext struct, CertInfo uintptr
|
| 483 |
+
pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo uintptr
|
| 484 |
+
pkg syscall (windows-386), type CertRevocationInfo struct, OidSpecificInfo uintptr
|
| 485 |
+
pkg syscall (windows-386), type CertSimpleChain struct, TrustListInfo uintptr
|
| 486 |
+
pkg syscall (windows-386), type RawSockaddrAny struct, Pad [96]int8
|
| 487 |
+
pkg syscall (windows-amd64), const TOKEN_ALL_ACCESS = 983295
|
| 488 |
+
pkg syscall (windows-amd64), type AddrinfoW struct, Addr uintptr
|
| 489 |
+
pkg syscall (windows-amd64), type CertChainPolicyPara struct, ExtraPolicyPara uintptr
|
| 490 |
+
pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr
|
| 491 |
+
pkg syscall (windows-amd64), type CertContext struct, CertInfo uintptr
|
| 492 |
+
pkg syscall (windows-amd64), type CertRevocationInfo struct, CrlInfo uintptr
|
| 493 |
+
pkg syscall (windows-amd64), type CertRevocationInfo struct, OidSpecificInfo uintptr
|
| 494 |
+
pkg syscall (windows-amd64), type CertSimpleChain struct, TrustListInfo uintptr
|
| 495 |
+
pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [96]int8
|
| 496 |
+
pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M
|
| 497 |
+
pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M
|
| 498 |
+
pkg testing, func RegisterCover(Cover)
|
| 499 |
+
pkg text/scanner, const GoTokens = 1012
|
| 500 |
+
pkg text/template/parse, type DotNode bool
|
| 501 |
+
pkg text/template/parse, type Node interface { Copy, String, Type }
|
| 502 |
+
pkg unicode, const Version = "10.0.0"
|
| 503 |
+
pkg unicode, const Version = "11.0.0"
|
| 504 |
+
pkg unicode, const Version = "12.0.0"
|
| 505 |
+
pkg unicode, const Version = "13.0.0"
|
| 506 |
+
pkg unicode, const Version = "6.2.0"
|
| 507 |
+
pkg unicode, const Version = "6.3.0"
|
| 508 |
+
pkg unicode, const Version = "7.0.0"
|
| 509 |
+
pkg unicode, const Version = "8.0.0"
|
| 510 |
+
pkg unicode, const Version = "9.0.0"
|
| 511 |
+
pkg html/template, method (*Template) Funcs(FuncMap) *Template
|
| 512 |
+
pkg html/template, type FuncMap map[string]interface{}
|
| 513 |
+
pkg syscall (freebsd-386), const SYS_FSTAT = 189
|
| 514 |
+
pkg syscall (freebsd-386), const SYS_FSTATAT = 493
|
| 515 |
+
pkg syscall (freebsd-386), const SYS_FSTATFS = 397
|
| 516 |
+
pkg syscall (freebsd-386), const SYS_GETDIRENTRIES = 196
|
| 517 |
+
pkg syscall (freebsd-386), const SYS_GETFSSTAT = 395
|
| 518 |
+
pkg syscall (freebsd-386), const SYS_LSTAT = 190
|
| 519 |
+
pkg syscall (freebsd-386), const SYS_LSTAT ideal-int
|
| 520 |
+
pkg syscall (freebsd-386), const SYS_MKNODAT = 498
|
| 521 |
+
pkg syscall (freebsd-386), const SYS_STAT = 188
|
| 522 |
+
pkg syscall (freebsd-386), const SYS_STAT ideal-int
|
| 523 |
+
pkg syscall (freebsd-386), const SYS_STATFS = 396
|
| 524 |
+
pkg syscall (freebsd-386-cgo), const SYS_FSTAT = 189
|
| 525 |
+
pkg syscall (freebsd-386-cgo), const SYS_FSTATAT = 493
|
| 526 |
+
pkg syscall (freebsd-386-cgo), const SYS_FSTATFS = 397
|
| 527 |
+
pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES = 196
|
| 528 |
+
pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT = 395
|
| 529 |
+
pkg syscall (freebsd-386-cgo), const SYS_LSTAT = 190
|
| 530 |
+
pkg syscall (freebsd-386-cgo), const SYS_LSTAT ideal-int
|
| 531 |
+
pkg syscall (freebsd-386-cgo), const SYS_MKNODAT = 498
|
| 532 |
+
pkg syscall (freebsd-386-cgo), const SYS_STAT = 188
|
| 533 |
+
pkg syscall (freebsd-386-cgo), const SYS_STAT ideal-int
|
| 534 |
+
pkg syscall (freebsd-386-cgo), const SYS_STATFS = 396
|
| 535 |
+
pkg syscall (freebsd-amd64), const SYS_FSTAT = 189
|
| 536 |
+
pkg syscall (freebsd-amd64), const SYS_FSTATAT = 493
|
| 537 |
+
pkg syscall (freebsd-amd64), const SYS_FSTATFS = 397
|
| 538 |
+
pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES = 196
|
| 539 |
+
pkg syscall (freebsd-amd64), const SYS_GETFSSTAT = 395
|
| 540 |
+
pkg syscall (freebsd-amd64), const SYS_LSTAT = 190
|
| 541 |
+
pkg syscall (freebsd-amd64), const SYS_LSTAT ideal-int
|
| 542 |
+
pkg syscall (freebsd-amd64), const SYS_MKNODAT = 498
|
| 543 |
+
pkg syscall (freebsd-amd64), const SYS_STAT = 188
|
| 544 |
+
pkg syscall (freebsd-amd64), const SYS_STAT ideal-int
|
| 545 |
+
pkg syscall (freebsd-amd64), const SYS_STATFS = 396
|
| 546 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT = 189
|
| 547 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT = 493
|
| 548 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS = 397
|
| 549 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES = 196
|
| 550 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT = 395
|
| 551 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT = 190
|
| 552 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT ideal-int
|
| 553 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT = 498
|
| 554 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_STAT = 188
|
| 555 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_STAT ideal-int
|
| 556 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_STATFS = 396
|
| 557 |
+
pkg syscall (freebsd-arm), const SYS_FSTAT = 189
|
| 558 |
+
pkg syscall (freebsd-arm), const SYS_FSTATAT = 493
|
| 559 |
+
pkg syscall (freebsd-arm), const SYS_FSTATFS = 397
|
| 560 |
+
pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES = 196
|
| 561 |
+
pkg syscall (freebsd-arm), const SYS_GETFSSTAT = 395
|
| 562 |
+
pkg syscall (freebsd-arm), const SYS_LSTAT = 190
|
| 563 |
+
pkg syscall (freebsd-arm), const SYS_LSTAT ideal-int
|
| 564 |
+
pkg syscall (freebsd-arm), const SYS_MKNODAT = 498
|
| 565 |
+
pkg syscall (freebsd-arm), const SYS_STAT = 188
|
| 566 |
+
pkg syscall (freebsd-arm), const SYS_STAT ideal-int
|
| 567 |
+
pkg syscall (freebsd-arm), const SYS_STATFS = 396
|
| 568 |
+
pkg syscall (freebsd-arm-cgo), const SYS_FSTAT = 189
|
| 569 |
+
pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT = 493
|
| 570 |
+
pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS = 397
|
| 571 |
+
pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES = 196
|
| 572 |
+
pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT = 395
|
| 573 |
+
pkg syscall (freebsd-arm-cgo), const SYS_LSTAT = 190
|
| 574 |
+
pkg syscall (freebsd-arm-cgo), const SYS_LSTAT ideal-int
|
| 575 |
+
pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT = 498
|
| 576 |
+
pkg syscall (freebsd-arm-cgo), const SYS_STAT = 188
|
| 577 |
+
pkg syscall (freebsd-arm-cgo), const SYS_STAT ideal-int
|
| 578 |
+
pkg syscall (freebsd-arm-cgo), const SYS_STATFS = 396
|
| 579 |
+
pkg syscall (freebsd-arm64), const SYS_FSTAT = 189
|
| 580 |
+
pkg syscall (freebsd-arm64), const SYS_FSTATAT = 493
|
| 581 |
+
pkg syscall (freebsd-arm64), const SYS_FSTATFS = 397
|
| 582 |
+
pkg syscall (freebsd-arm64), const SYS_GETDIRENTRIES = 196
|
| 583 |
+
pkg syscall (freebsd-arm64), const SYS_GETFSSTAT = 395
|
| 584 |
+
pkg syscall (freebsd-arm64), const SYS_LSTAT = 190
|
| 585 |
+
pkg syscall (freebsd-arm64), const SYS_LSTAT ideal-int
|
| 586 |
+
pkg syscall (freebsd-arm64), const SYS_MKNODAT = 498
|
| 587 |
+
pkg syscall (freebsd-arm64), const SYS_STAT = 188
|
| 588 |
+
pkg syscall (freebsd-arm64), const SYS_STAT ideal-int
|
| 589 |
+
pkg syscall (freebsd-arm64), const SYS_STATFS = 396
|
| 590 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_FSTAT = 189
|
| 591 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_FSTATAT = 493
|
| 592 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_FSTATFS = 397
|
| 593 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_GETDIRENTRIES = 196
|
| 594 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_GETFSSTAT = 395
|
| 595 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_LSTAT = 190
|
| 596 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_LSTAT ideal-int
|
| 597 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_MKNODAT = 498
|
| 598 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_STAT = 188
|
| 599 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_STAT ideal-int
|
| 600 |
+
pkg syscall (freebsd-arm64-cgo), const SYS_STATFS = 396
|
| 601 |
+
pkg syscall (openbsd-386), const ELAST = 91
|
| 602 |
+
pkg syscall (openbsd-386-cgo), const ELAST = 91
|
| 603 |
+
pkg syscall (openbsd-amd64), const ELAST = 91
|
| 604 |
+
pkg syscall (openbsd-amd64-cgo), const ELAST = 91
|
api/go1.1.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.10.txt
ADDED
|
@@ -0,0 +1,627 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg archive/tar, const FormatGNU = 8
|
| 2 |
+
pkg archive/tar, const FormatGNU Format
|
| 3 |
+
pkg archive/tar, const FormatPAX = 4
|
| 4 |
+
pkg archive/tar, const FormatPAX Format
|
| 5 |
+
pkg archive/tar, const FormatUSTAR = 2
|
| 6 |
+
pkg archive/tar, const FormatUSTAR Format
|
| 7 |
+
pkg archive/tar, const FormatUnknown = 0
|
| 8 |
+
pkg archive/tar, const FormatUnknown Format
|
| 9 |
+
pkg archive/tar, method (Format) String() string
|
| 10 |
+
pkg archive/tar, type Format int
|
| 11 |
+
pkg archive/tar, type Header struct, Format Format
|
| 12 |
+
pkg archive/tar, type Header struct, PAXRecords map[string]string
|
| 13 |
+
pkg archive/zip, method (*Writer) SetComment(string) error
|
| 14 |
+
pkg archive/zip, type FileHeader struct, Modified time.Time
|
| 15 |
+
pkg archive/zip, type FileHeader struct, NonUTF8 bool
|
| 16 |
+
pkg bufio, method (*Reader) Size() int
|
| 17 |
+
pkg bufio, method (*Writer) Size() int
|
| 18 |
+
pkg crypto/tls, const ECDSAWithSHA1 = 515
|
| 19 |
+
pkg crypto/tls, const ECDSAWithSHA1 SignatureScheme
|
| 20 |
+
pkg crypto/x509, const CANotAuthorizedForExtKeyUsage = 9
|
| 21 |
+
pkg crypto/x509, const CANotAuthorizedForExtKeyUsage InvalidReason
|
| 22 |
+
pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning = 12
|
| 23 |
+
pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning ExtKeyUsage
|
| 24 |
+
pkg crypto/x509, const ExtKeyUsageMicrosoftKernelCodeSigning = 13
|
| 25 |
+
pkg crypto/x509, const ExtKeyUsageMicrosoftKernelCodeSigning ExtKeyUsage
|
| 26 |
+
pkg crypto/x509, const NameConstraintsWithoutSANs = 6
|
| 27 |
+
pkg crypto/x509, const NameConstraintsWithoutSANs InvalidReason
|
| 28 |
+
pkg crypto/x509, const TooManyConstraints = 8
|
| 29 |
+
pkg crypto/x509, const TooManyConstraints InvalidReason
|
| 30 |
+
pkg crypto/x509, const UnconstrainedName = 7
|
| 31 |
+
pkg crypto/x509, const UnconstrainedName InvalidReason
|
| 32 |
+
pkg crypto/x509, func MarshalPKCS1PublicKey(*rsa.PublicKey) []uint8
|
| 33 |
+
pkg crypto/x509, func MarshalPKCS8PrivateKey(interface{}) ([]uint8, error)
|
| 34 |
+
pkg crypto/x509, func ParsePKCS1PublicKey([]uint8) (*rsa.PublicKey, error)
|
| 35 |
+
pkg crypto/x509, method (PublicKeyAlgorithm) String() string
|
| 36 |
+
pkg crypto/x509, type Certificate struct, ExcludedEmailAddresses []string
|
| 37 |
+
pkg crypto/x509, type Certificate struct, ExcludedIPRanges []*net.IPNet
|
| 38 |
+
pkg crypto/x509, type Certificate struct, ExcludedURIDomains []string
|
| 39 |
+
pkg crypto/x509, type Certificate struct, PermittedEmailAddresses []string
|
| 40 |
+
pkg crypto/x509, type Certificate struct, PermittedIPRanges []*net.IPNet
|
| 41 |
+
pkg crypto/x509, type Certificate struct, PermittedURIDomains []string
|
| 42 |
+
pkg crypto/x509, type Certificate struct, URIs []*url.URL
|
| 43 |
+
pkg crypto/x509, type CertificateInvalidError struct, Detail string
|
| 44 |
+
pkg crypto/x509, type CertificateRequest struct, URIs []*url.URL
|
| 45 |
+
pkg crypto/x509, type VerifyOptions struct, MaxConstraintComparisions int
|
| 46 |
+
pkg crypto/x509/pkix, method (Name) String() string
|
| 47 |
+
pkg crypto/x509/pkix, method (RDNSequence) String() string
|
| 48 |
+
pkg database/sql, func OpenDB(driver.Connector) *DB
|
| 49 |
+
pkg database/sql/driver, type Connector interface { Connect, Driver }
|
| 50 |
+
pkg database/sql/driver, type Connector interface, Connect(context.Context) (Conn, error)
|
| 51 |
+
pkg database/sql/driver, type Connector interface, Driver() Driver
|
| 52 |
+
pkg database/sql/driver, type DriverContext interface { OpenConnector }
|
| 53 |
+
pkg database/sql/driver, type DriverContext interface, OpenConnector(string) (Connector, error)
|
| 54 |
+
pkg database/sql/driver, type SessionResetter interface { ResetSession }
|
| 55 |
+
pkg database/sql/driver, type SessionResetter interface, ResetSession(context.Context) error
|
| 56 |
+
pkg debug/elf, const R_386_16 = 20
|
| 57 |
+
pkg debug/elf, const R_386_16 R_386
|
| 58 |
+
pkg debug/elf, const R_386_32PLT = 11
|
| 59 |
+
pkg debug/elf, const R_386_32PLT R_386
|
| 60 |
+
pkg debug/elf, const R_386_8 = 22
|
| 61 |
+
pkg debug/elf, const R_386_8 R_386
|
| 62 |
+
pkg debug/elf, const R_386_GOT32X = 43
|
| 63 |
+
pkg debug/elf, const R_386_GOT32X R_386
|
| 64 |
+
pkg debug/elf, const R_386_IRELATIVE = 42
|
| 65 |
+
pkg debug/elf, const R_386_IRELATIVE R_386
|
| 66 |
+
pkg debug/elf, const R_386_PC16 = 21
|
| 67 |
+
pkg debug/elf, const R_386_PC16 R_386
|
| 68 |
+
pkg debug/elf, const R_386_PC8 = 23
|
| 69 |
+
pkg debug/elf, const R_386_PC8 R_386
|
| 70 |
+
pkg debug/elf, const R_386_SIZE32 = 38
|
| 71 |
+
pkg debug/elf, const R_386_SIZE32 R_386
|
| 72 |
+
pkg debug/elf, const R_386_TLS_DESC = 41
|
| 73 |
+
pkg debug/elf, const R_386_TLS_DESC R_386
|
| 74 |
+
pkg debug/elf, const R_386_TLS_DESC_CALL = 40
|
| 75 |
+
pkg debug/elf, const R_386_TLS_DESC_CALL R_386
|
| 76 |
+
pkg debug/elf, const R_386_TLS_GOTDESC = 39
|
| 77 |
+
pkg debug/elf, const R_386_TLS_GOTDESC R_386
|
| 78 |
+
pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 = 310
|
| 79 |
+
pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 R_AARCH64
|
| 80 |
+
pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 = 313
|
| 81 |
+
pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 R_AARCH64
|
| 82 |
+
pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 = 512
|
| 83 |
+
pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 R_AARCH64
|
| 84 |
+
pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC = 516
|
| 85 |
+
pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC R_AARCH64
|
| 86 |
+
pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 = 515
|
| 87 |
+
pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 R_AARCH64
|
| 88 |
+
pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 = 518
|
| 89 |
+
pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 R_AARCH64
|
| 90 |
+
pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 = 517
|
| 91 |
+
pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 R_AARCH64
|
| 92 |
+
pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 = 572
|
| 93 |
+
pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 R_AARCH64
|
| 94 |
+
pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC = 573
|
| 95 |
+
pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC R_AARCH64
|
| 96 |
+
pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12 = 570
|
| 97 |
+
pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12 R_AARCH64
|
| 98 |
+
pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC = 571
|
| 99 |
+
pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC R_AARCH64
|
| 100 |
+
pkg debug/elf, const R_ARM_ABS32_NOI = 55
|
| 101 |
+
pkg debug/elf, const R_ARM_ABS32_NOI R_ARM
|
| 102 |
+
pkg debug/elf, const R_ARM_ALU_PCREL_15_8 = 33
|
| 103 |
+
pkg debug/elf, const R_ARM_ALU_PCREL_15_8 R_ARM
|
| 104 |
+
pkg debug/elf, const R_ARM_ALU_PCREL_23_15 = 34
|
| 105 |
+
pkg debug/elf, const R_ARM_ALU_PCREL_23_15 R_ARM
|
| 106 |
+
pkg debug/elf, const R_ARM_ALU_PCREL_7_0 = 32
|
| 107 |
+
pkg debug/elf, const R_ARM_ALU_PCREL_7_0 R_ARM
|
| 108 |
+
pkg debug/elf, const R_ARM_ALU_PC_G0 = 58
|
| 109 |
+
pkg debug/elf, const R_ARM_ALU_PC_G0 R_ARM
|
| 110 |
+
pkg debug/elf, const R_ARM_ALU_PC_G0_NC = 57
|
| 111 |
+
pkg debug/elf, const R_ARM_ALU_PC_G0_NC R_ARM
|
| 112 |
+
pkg debug/elf, const R_ARM_ALU_PC_G1 = 60
|
| 113 |
+
pkg debug/elf, const R_ARM_ALU_PC_G1 R_ARM
|
| 114 |
+
pkg debug/elf, const R_ARM_ALU_PC_G1_NC = 59
|
| 115 |
+
pkg debug/elf, const R_ARM_ALU_PC_G1_NC R_ARM
|
| 116 |
+
pkg debug/elf, const R_ARM_ALU_PC_G2 = 61
|
| 117 |
+
pkg debug/elf, const R_ARM_ALU_PC_G2 R_ARM
|
| 118 |
+
pkg debug/elf, const R_ARM_ALU_SBREL_19_12_NC = 36
|
| 119 |
+
pkg debug/elf, const R_ARM_ALU_SBREL_19_12_NC R_ARM
|
| 120 |
+
pkg debug/elf, const R_ARM_ALU_SBREL_27_20_CK = 37
|
| 121 |
+
pkg debug/elf, const R_ARM_ALU_SBREL_27_20_CK R_ARM
|
| 122 |
+
pkg debug/elf, const R_ARM_ALU_SB_G0 = 71
|
| 123 |
+
pkg debug/elf, const R_ARM_ALU_SB_G0 R_ARM
|
| 124 |
+
pkg debug/elf, const R_ARM_ALU_SB_G0_NC = 70
|
| 125 |
+
pkg debug/elf, const R_ARM_ALU_SB_G0_NC R_ARM
|
| 126 |
+
pkg debug/elf, const R_ARM_ALU_SB_G1 = 73
|
| 127 |
+
pkg debug/elf, const R_ARM_ALU_SB_G1 R_ARM
|
| 128 |
+
pkg debug/elf, const R_ARM_ALU_SB_G1_NC = 72
|
| 129 |
+
pkg debug/elf, const R_ARM_ALU_SB_G1_NC R_ARM
|
| 130 |
+
pkg debug/elf, const R_ARM_ALU_SB_G2 = 74
|
| 131 |
+
pkg debug/elf, const R_ARM_ALU_SB_G2 R_ARM
|
| 132 |
+
pkg debug/elf, const R_ARM_BASE_ABS = 31
|
| 133 |
+
pkg debug/elf, const R_ARM_BASE_ABS R_ARM
|
| 134 |
+
pkg debug/elf, const R_ARM_CALL = 28
|
| 135 |
+
pkg debug/elf, const R_ARM_CALL R_ARM
|
| 136 |
+
pkg debug/elf, const R_ARM_GOTOFF12 = 98
|
| 137 |
+
pkg debug/elf, const R_ARM_GOTOFF12 R_ARM
|
| 138 |
+
pkg debug/elf, const R_ARM_GOTRELAX = 99
|
| 139 |
+
pkg debug/elf, const R_ARM_GOTRELAX R_ARM
|
| 140 |
+
pkg debug/elf, const R_ARM_GOT_ABS = 95
|
| 141 |
+
pkg debug/elf, const R_ARM_GOT_ABS R_ARM
|
| 142 |
+
pkg debug/elf, const R_ARM_GOT_BREL12 = 97
|
| 143 |
+
pkg debug/elf, const R_ARM_GOT_BREL12 R_ARM
|
| 144 |
+
pkg debug/elf, const R_ARM_GOT_PREL = 96
|
| 145 |
+
pkg debug/elf, const R_ARM_GOT_PREL R_ARM
|
| 146 |
+
pkg debug/elf, const R_ARM_IRELATIVE = 160
|
| 147 |
+
pkg debug/elf, const R_ARM_IRELATIVE R_ARM
|
| 148 |
+
pkg debug/elf, const R_ARM_JUMP24 = 29
|
| 149 |
+
pkg debug/elf, const R_ARM_JUMP24 R_ARM
|
| 150 |
+
pkg debug/elf, const R_ARM_LDC_PC_G0 = 67
|
| 151 |
+
pkg debug/elf, const R_ARM_LDC_PC_G0 R_ARM
|
| 152 |
+
pkg debug/elf, const R_ARM_LDC_PC_G1 = 68
|
| 153 |
+
pkg debug/elf, const R_ARM_LDC_PC_G1 R_ARM
|
| 154 |
+
pkg debug/elf, const R_ARM_LDC_PC_G2 = 69
|
| 155 |
+
pkg debug/elf, const R_ARM_LDC_PC_G2 R_ARM
|
| 156 |
+
pkg debug/elf, const R_ARM_LDC_SB_G0 = 81
|
| 157 |
+
pkg debug/elf, const R_ARM_LDC_SB_G0 R_ARM
|
| 158 |
+
pkg debug/elf, const R_ARM_LDC_SB_G1 = 82
|
| 159 |
+
pkg debug/elf, const R_ARM_LDC_SB_G1 R_ARM
|
| 160 |
+
pkg debug/elf, const R_ARM_LDC_SB_G2 = 83
|
| 161 |
+
pkg debug/elf, const R_ARM_LDC_SB_G2 R_ARM
|
| 162 |
+
pkg debug/elf, const R_ARM_LDRS_PC_G0 = 64
|
| 163 |
+
pkg debug/elf, const R_ARM_LDRS_PC_G0 R_ARM
|
| 164 |
+
pkg debug/elf, const R_ARM_LDRS_PC_G1 = 65
|
| 165 |
+
pkg debug/elf, const R_ARM_LDRS_PC_G1 R_ARM
|
| 166 |
+
pkg debug/elf, const R_ARM_LDRS_PC_G2 = 66
|
| 167 |
+
pkg debug/elf, const R_ARM_LDRS_PC_G2 R_ARM
|
| 168 |
+
pkg debug/elf, const R_ARM_LDRS_SB_G0 = 78
|
| 169 |
+
pkg debug/elf, const R_ARM_LDRS_SB_G0 R_ARM
|
| 170 |
+
pkg debug/elf, const R_ARM_LDRS_SB_G1 = 79
|
| 171 |
+
pkg debug/elf, const R_ARM_LDRS_SB_G1 R_ARM
|
| 172 |
+
pkg debug/elf, const R_ARM_LDRS_SB_G2 = 80
|
| 173 |
+
pkg debug/elf, const R_ARM_LDRS_SB_G2 R_ARM
|
| 174 |
+
pkg debug/elf, const R_ARM_LDR_PC_G1 = 62
|
| 175 |
+
pkg debug/elf, const R_ARM_LDR_PC_G1 R_ARM
|
| 176 |
+
pkg debug/elf, const R_ARM_LDR_PC_G2 = 63
|
| 177 |
+
pkg debug/elf, const R_ARM_LDR_PC_G2 R_ARM
|
| 178 |
+
pkg debug/elf, const R_ARM_LDR_SBREL_11_10_NC = 35
|
| 179 |
+
pkg debug/elf, const R_ARM_LDR_SBREL_11_10_NC R_ARM
|
| 180 |
+
pkg debug/elf, const R_ARM_LDR_SB_G0 = 75
|
| 181 |
+
pkg debug/elf, const R_ARM_LDR_SB_G0 R_ARM
|
| 182 |
+
pkg debug/elf, const R_ARM_LDR_SB_G1 = 76
|
| 183 |
+
pkg debug/elf, const R_ARM_LDR_SB_G1 R_ARM
|
| 184 |
+
pkg debug/elf, const R_ARM_LDR_SB_G2 = 77
|
| 185 |
+
pkg debug/elf, const R_ARM_LDR_SB_G2 R_ARM
|
| 186 |
+
pkg debug/elf, const R_ARM_ME_TOO = 128
|
| 187 |
+
pkg debug/elf, const R_ARM_ME_TOO R_ARM
|
| 188 |
+
pkg debug/elf, const R_ARM_MOVT_ABS = 44
|
| 189 |
+
pkg debug/elf, const R_ARM_MOVT_ABS R_ARM
|
| 190 |
+
pkg debug/elf, const R_ARM_MOVT_BREL = 85
|
| 191 |
+
pkg debug/elf, const R_ARM_MOVT_BREL R_ARM
|
| 192 |
+
pkg debug/elf, const R_ARM_MOVT_PREL = 46
|
| 193 |
+
pkg debug/elf, const R_ARM_MOVT_PREL R_ARM
|
| 194 |
+
pkg debug/elf, const R_ARM_MOVW_ABS_NC = 43
|
| 195 |
+
pkg debug/elf, const R_ARM_MOVW_ABS_NC R_ARM
|
| 196 |
+
pkg debug/elf, const R_ARM_MOVW_BREL = 86
|
| 197 |
+
pkg debug/elf, const R_ARM_MOVW_BREL R_ARM
|
| 198 |
+
pkg debug/elf, const R_ARM_MOVW_BREL_NC = 84
|
| 199 |
+
pkg debug/elf, const R_ARM_MOVW_BREL_NC R_ARM
|
| 200 |
+
pkg debug/elf, const R_ARM_MOVW_PREL_NC = 45
|
| 201 |
+
pkg debug/elf, const R_ARM_MOVW_PREL_NC R_ARM
|
| 202 |
+
pkg debug/elf, const R_ARM_PLT32_ABS = 94
|
| 203 |
+
pkg debug/elf, const R_ARM_PLT32_ABS R_ARM
|
| 204 |
+
pkg debug/elf, const R_ARM_PREL31 = 42
|
| 205 |
+
pkg debug/elf, const R_ARM_PREL31 R_ARM
|
| 206 |
+
pkg debug/elf, const R_ARM_PRIVATE_0 = 112
|
| 207 |
+
pkg debug/elf, const R_ARM_PRIVATE_0 R_ARM
|
| 208 |
+
pkg debug/elf, const R_ARM_PRIVATE_1 = 113
|
| 209 |
+
pkg debug/elf, const R_ARM_PRIVATE_1 R_ARM
|
| 210 |
+
pkg debug/elf, const R_ARM_PRIVATE_10 = 122
|
| 211 |
+
pkg debug/elf, const R_ARM_PRIVATE_10 R_ARM
|
| 212 |
+
pkg debug/elf, const R_ARM_PRIVATE_11 = 123
|
| 213 |
+
pkg debug/elf, const R_ARM_PRIVATE_11 R_ARM
|
| 214 |
+
pkg debug/elf, const R_ARM_PRIVATE_12 = 124
|
| 215 |
+
pkg debug/elf, const R_ARM_PRIVATE_12 R_ARM
|
| 216 |
+
pkg debug/elf, const R_ARM_PRIVATE_13 = 125
|
| 217 |
+
pkg debug/elf, const R_ARM_PRIVATE_13 R_ARM
|
| 218 |
+
pkg debug/elf, const R_ARM_PRIVATE_14 = 126
|
| 219 |
+
pkg debug/elf, const R_ARM_PRIVATE_14 R_ARM
|
| 220 |
+
pkg debug/elf, const R_ARM_PRIVATE_15 = 127
|
| 221 |
+
pkg debug/elf, const R_ARM_PRIVATE_15 R_ARM
|
| 222 |
+
pkg debug/elf, const R_ARM_PRIVATE_2 = 114
|
| 223 |
+
pkg debug/elf, const R_ARM_PRIVATE_2 R_ARM
|
| 224 |
+
pkg debug/elf, const R_ARM_PRIVATE_3 = 115
|
| 225 |
+
pkg debug/elf, const R_ARM_PRIVATE_3 R_ARM
|
| 226 |
+
pkg debug/elf, const R_ARM_PRIVATE_4 = 116
|
| 227 |
+
pkg debug/elf, const R_ARM_PRIVATE_4 R_ARM
|
| 228 |
+
pkg debug/elf, const R_ARM_PRIVATE_5 = 117
|
| 229 |
+
pkg debug/elf, const R_ARM_PRIVATE_5 R_ARM
|
| 230 |
+
pkg debug/elf, const R_ARM_PRIVATE_6 = 118
|
| 231 |
+
pkg debug/elf, const R_ARM_PRIVATE_6 R_ARM
|
| 232 |
+
pkg debug/elf, const R_ARM_PRIVATE_7 = 119
|
| 233 |
+
pkg debug/elf, const R_ARM_PRIVATE_7 R_ARM
|
| 234 |
+
pkg debug/elf, const R_ARM_PRIVATE_8 = 120
|
| 235 |
+
pkg debug/elf, const R_ARM_PRIVATE_8 R_ARM
|
| 236 |
+
pkg debug/elf, const R_ARM_PRIVATE_9 = 121
|
| 237 |
+
pkg debug/elf, const R_ARM_PRIVATE_9 R_ARM
|
| 238 |
+
pkg debug/elf, const R_ARM_REL32_NOI = 56
|
| 239 |
+
pkg debug/elf, const R_ARM_REL32_NOI R_ARM
|
| 240 |
+
pkg debug/elf, const R_ARM_RXPC25 = 249
|
| 241 |
+
pkg debug/elf, const R_ARM_RXPC25 R_ARM
|
| 242 |
+
pkg debug/elf, const R_ARM_SBREL31 = 39
|
| 243 |
+
pkg debug/elf, const R_ARM_SBREL31 R_ARM
|
| 244 |
+
pkg debug/elf, const R_ARM_TARGET1 = 38
|
| 245 |
+
pkg debug/elf, const R_ARM_TARGET1 R_ARM
|
| 246 |
+
pkg debug/elf, const R_ARM_TARGET2 = 41
|
| 247 |
+
pkg debug/elf, const R_ARM_TARGET2 R_ARM
|
| 248 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G0_NC = 132
|
| 249 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G0_NC R_ARM
|
| 250 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G1_NC = 133
|
| 251 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G1_NC R_ARM
|
| 252 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G2_NC = 134
|
| 253 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G2_NC R_ARM
|
| 254 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G3 = 135
|
| 255 |
+
pkg debug/elf, const R_ARM_THM_ALU_ABS_G3 R_ARM
|
| 256 |
+
pkg debug/elf, const R_ARM_THM_ALU_PREL_11_0 = 53
|
| 257 |
+
pkg debug/elf, const R_ARM_THM_ALU_PREL_11_0 R_ARM
|
| 258 |
+
pkg debug/elf, const R_ARM_THM_GOT_BREL12 = 131
|
| 259 |
+
pkg debug/elf, const R_ARM_THM_GOT_BREL12 R_ARM
|
| 260 |
+
pkg debug/elf, const R_ARM_THM_JUMP11 = 102
|
| 261 |
+
pkg debug/elf, const R_ARM_THM_JUMP11 R_ARM
|
| 262 |
+
pkg debug/elf, const R_ARM_THM_JUMP19 = 51
|
| 263 |
+
pkg debug/elf, const R_ARM_THM_JUMP19 R_ARM
|
| 264 |
+
pkg debug/elf, const R_ARM_THM_JUMP24 = 30
|
| 265 |
+
pkg debug/elf, const R_ARM_THM_JUMP24 R_ARM
|
| 266 |
+
pkg debug/elf, const R_ARM_THM_JUMP6 = 52
|
| 267 |
+
pkg debug/elf, const R_ARM_THM_JUMP6 R_ARM
|
| 268 |
+
pkg debug/elf, const R_ARM_THM_JUMP8 = 103
|
| 269 |
+
pkg debug/elf, const R_ARM_THM_JUMP8 R_ARM
|
| 270 |
+
pkg debug/elf, const R_ARM_THM_MOVT_ABS = 48
|
| 271 |
+
pkg debug/elf, const R_ARM_THM_MOVT_ABS R_ARM
|
| 272 |
+
pkg debug/elf, const R_ARM_THM_MOVT_BREL = 88
|
| 273 |
+
pkg debug/elf, const R_ARM_THM_MOVT_BREL R_ARM
|
| 274 |
+
pkg debug/elf, const R_ARM_THM_MOVT_PREL = 50
|
| 275 |
+
pkg debug/elf, const R_ARM_THM_MOVT_PREL R_ARM
|
| 276 |
+
pkg debug/elf, const R_ARM_THM_MOVW_ABS_NC = 47
|
| 277 |
+
pkg debug/elf, const R_ARM_THM_MOVW_ABS_NC R_ARM
|
| 278 |
+
pkg debug/elf, const R_ARM_THM_MOVW_BREL = 89
|
| 279 |
+
pkg debug/elf, const R_ARM_THM_MOVW_BREL R_ARM
|
| 280 |
+
pkg debug/elf, const R_ARM_THM_MOVW_BREL_NC = 87
|
| 281 |
+
pkg debug/elf, const R_ARM_THM_MOVW_BREL_NC R_ARM
|
| 282 |
+
pkg debug/elf, const R_ARM_THM_MOVW_PREL_NC = 49
|
| 283 |
+
pkg debug/elf, const R_ARM_THM_MOVW_PREL_NC R_ARM
|
| 284 |
+
pkg debug/elf, const R_ARM_THM_PC12 = 54
|
| 285 |
+
pkg debug/elf, const R_ARM_THM_PC12 R_ARM
|
| 286 |
+
pkg debug/elf, const R_ARM_THM_TLS_CALL = 93
|
| 287 |
+
pkg debug/elf, const R_ARM_THM_TLS_CALL R_ARM
|
| 288 |
+
pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ16 = 129
|
| 289 |
+
pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ16 R_ARM
|
| 290 |
+
pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ32 = 130
|
| 291 |
+
pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ32 R_ARM
|
| 292 |
+
pkg debug/elf, const R_ARM_TLS_CALL = 91
|
| 293 |
+
pkg debug/elf, const R_ARM_TLS_CALL R_ARM
|
| 294 |
+
pkg debug/elf, const R_ARM_TLS_DESCSEQ = 92
|
| 295 |
+
pkg debug/elf, const R_ARM_TLS_DESCSEQ R_ARM
|
| 296 |
+
pkg debug/elf, const R_ARM_TLS_DTPMOD32 = 17
|
| 297 |
+
pkg debug/elf, const R_ARM_TLS_DTPMOD32 R_ARM
|
| 298 |
+
pkg debug/elf, const R_ARM_TLS_DTPOFF32 = 18
|
| 299 |
+
pkg debug/elf, const R_ARM_TLS_DTPOFF32 R_ARM
|
| 300 |
+
pkg debug/elf, const R_ARM_TLS_GD32 = 104
|
| 301 |
+
pkg debug/elf, const R_ARM_TLS_GD32 R_ARM
|
| 302 |
+
pkg debug/elf, const R_ARM_TLS_GOTDESC = 90
|
| 303 |
+
pkg debug/elf, const R_ARM_TLS_GOTDESC R_ARM
|
| 304 |
+
pkg debug/elf, const R_ARM_TLS_IE12GP = 111
|
| 305 |
+
pkg debug/elf, const R_ARM_TLS_IE12GP R_ARM
|
| 306 |
+
pkg debug/elf, const R_ARM_TLS_IE32 = 107
|
| 307 |
+
pkg debug/elf, const R_ARM_TLS_IE32 R_ARM
|
| 308 |
+
pkg debug/elf, const R_ARM_TLS_LDM32 = 105
|
| 309 |
+
pkg debug/elf, const R_ARM_TLS_LDM32 R_ARM
|
| 310 |
+
pkg debug/elf, const R_ARM_TLS_LDO12 = 109
|
| 311 |
+
pkg debug/elf, const R_ARM_TLS_LDO12 R_ARM
|
| 312 |
+
pkg debug/elf, const R_ARM_TLS_LDO32 = 106
|
| 313 |
+
pkg debug/elf, const R_ARM_TLS_LDO32 R_ARM
|
| 314 |
+
pkg debug/elf, const R_ARM_TLS_LE12 = 110
|
| 315 |
+
pkg debug/elf, const R_ARM_TLS_LE12 R_ARM
|
| 316 |
+
pkg debug/elf, const R_ARM_TLS_LE32 = 108
|
| 317 |
+
pkg debug/elf, const R_ARM_TLS_LE32 R_ARM
|
| 318 |
+
pkg debug/elf, const R_ARM_TLS_TPOFF32 = 19
|
| 319 |
+
pkg debug/elf, const R_ARM_TLS_TPOFF32 R_ARM
|
| 320 |
+
pkg debug/elf, const R_ARM_V4BX = 40
|
| 321 |
+
pkg debug/elf, const R_ARM_V4BX R_ARM
|
| 322 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGH = 110
|
| 323 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGH R_PPC64
|
| 324 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHA = 111
|
| 325 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHA R_PPC64
|
| 326 |
+
pkg debug/elf, const R_PPC64_ADDR64_LOCAL = 117
|
| 327 |
+
pkg debug/elf, const R_PPC64_ADDR64_LOCAL R_PPC64
|
| 328 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGH = 114
|
| 329 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGH R_PPC64
|
| 330 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHA = 115
|
| 331 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHA R_PPC64
|
| 332 |
+
pkg debug/elf, const R_PPC64_ENTRY = 118
|
| 333 |
+
pkg debug/elf, const R_PPC64_ENTRY R_PPC64
|
| 334 |
+
pkg debug/elf, const R_PPC64_IRELATIVE = 248
|
| 335 |
+
pkg debug/elf, const R_PPC64_IRELATIVE R_PPC64
|
| 336 |
+
pkg debug/elf, const R_PPC64_JMP_IREL = 247
|
| 337 |
+
pkg debug/elf, const R_PPC64_JMP_IREL R_PPC64
|
| 338 |
+
pkg debug/elf, const R_PPC64_PLT16_LO_DS = 60
|
| 339 |
+
pkg debug/elf, const R_PPC64_PLT16_LO_DS R_PPC64
|
| 340 |
+
pkg debug/elf, const R_PPC64_PLTGOT16 = 52
|
| 341 |
+
pkg debug/elf, const R_PPC64_PLTGOT16 R_PPC64
|
| 342 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_DS = 65
|
| 343 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_DS R_PPC64
|
| 344 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_HA = 55
|
| 345 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_HA R_PPC64
|
| 346 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_HI = 54
|
| 347 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_HI R_PPC64
|
| 348 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_LO = 53
|
| 349 |
+
pkg debug/elf, const R_PPC64_PLTGOT16_LO R_PPC64
|
| 350 |
+
pkg debug/elf, const R_PPC64_PLTGOT_LO_DS = 66
|
| 351 |
+
pkg debug/elf, const R_PPC64_PLTGOT_LO_DS R_PPC64
|
| 352 |
+
pkg debug/elf, const R_PPC64_REL16DX_HA = 246
|
| 353 |
+
pkg debug/elf, const R_PPC64_REL16DX_HA R_PPC64
|
| 354 |
+
pkg debug/elf, const R_PPC64_REL24_NOTOC = 116
|
| 355 |
+
pkg debug/elf, const R_PPC64_REL24_NOTOC R_PPC64
|
| 356 |
+
pkg debug/elf, const R_PPC64_SECTOFF_DS = 61
|
| 357 |
+
pkg debug/elf, const R_PPC64_SECTOFF_DS R_PPC64
|
| 358 |
+
pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 61
|
| 359 |
+
pkg debug/elf, const R_PPC64_SECTOFF_LO_DS R_PPC64
|
| 360 |
+
pkg debug/elf, const R_PPC64_TOCSAVE = 109
|
| 361 |
+
pkg debug/elf, const R_PPC64_TOCSAVE R_PPC64
|
| 362 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGH = 112
|
| 363 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGH R_PPC64
|
| 364 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHA = 113
|
| 365 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHA R_PPC64
|
| 366 |
+
pkg debug/elf, const R_X86_64_GOT64 = 27
|
| 367 |
+
pkg debug/elf, const R_X86_64_GOT64 R_X86_64
|
| 368 |
+
pkg debug/elf, const R_X86_64_GOTOFF64 = 25
|
| 369 |
+
pkg debug/elf, const R_X86_64_GOTOFF64 R_X86_64
|
| 370 |
+
pkg debug/elf, const R_X86_64_GOTPC32 = 26
|
| 371 |
+
pkg debug/elf, const R_X86_64_GOTPC32 R_X86_64
|
| 372 |
+
pkg debug/elf, const R_X86_64_GOTPC32_TLSDESC = 34
|
| 373 |
+
pkg debug/elf, const R_X86_64_GOTPC32_TLSDESC R_X86_64
|
| 374 |
+
pkg debug/elf, const R_X86_64_GOTPC64 = 29
|
| 375 |
+
pkg debug/elf, const R_X86_64_GOTPC64 R_X86_64
|
| 376 |
+
pkg debug/elf, const R_X86_64_GOTPCREL64 = 28
|
| 377 |
+
pkg debug/elf, const R_X86_64_GOTPCREL64 R_X86_64
|
| 378 |
+
pkg debug/elf, const R_X86_64_GOTPCRELX = 41
|
| 379 |
+
pkg debug/elf, const R_X86_64_GOTPCRELX R_X86_64
|
| 380 |
+
pkg debug/elf, const R_X86_64_GOTPLT64 = 30
|
| 381 |
+
pkg debug/elf, const R_X86_64_GOTPLT64 R_X86_64
|
| 382 |
+
pkg debug/elf, const R_X86_64_IRELATIVE = 37
|
| 383 |
+
pkg debug/elf, const R_X86_64_IRELATIVE R_X86_64
|
| 384 |
+
pkg debug/elf, const R_X86_64_PC32_BND = 39
|
| 385 |
+
pkg debug/elf, const R_X86_64_PC32_BND R_X86_64
|
| 386 |
+
pkg debug/elf, const R_X86_64_PC64 = 24
|
| 387 |
+
pkg debug/elf, const R_X86_64_PC64 R_X86_64
|
| 388 |
+
pkg debug/elf, const R_X86_64_PLT32_BND = 40
|
| 389 |
+
pkg debug/elf, const R_X86_64_PLT32_BND R_X86_64
|
| 390 |
+
pkg debug/elf, const R_X86_64_PLTOFF64 = 31
|
| 391 |
+
pkg debug/elf, const R_X86_64_PLTOFF64 R_X86_64
|
| 392 |
+
pkg debug/elf, const R_X86_64_RELATIVE64 = 38
|
| 393 |
+
pkg debug/elf, const R_X86_64_RELATIVE64 R_X86_64
|
| 394 |
+
pkg debug/elf, const R_X86_64_REX_GOTPCRELX = 42
|
| 395 |
+
pkg debug/elf, const R_X86_64_REX_GOTPCRELX R_X86_64
|
| 396 |
+
pkg debug/elf, const R_X86_64_SIZE32 = 32
|
| 397 |
+
pkg debug/elf, const R_X86_64_SIZE32 R_X86_64
|
| 398 |
+
pkg debug/elf, const R_X86_64_SIZE64 = 33
|
| 399 |
+
pkg debug/elf, const R_X86_64_SIZE64 R_X86_64
|
| 400 |
+
pkg debug/elf, const R_X86_64_TLSDESC = 36
|
| 401 |
+
pkg debug/elf, const R_X86_64_TLSDESC R_X86_64
|
| 402 |
+
pkg debug/elf, const R_X86_64_TLSDESC_CALL = 35
|
| 403 |
+
pkg debug/elf, const R_X86_64_TLSDESC_CALL R_X86_64
|
| 404 |
+
pkg debug/macho, const ARM64_RELOC_ADDEND = 10
|
| 405 |
+
pkg debug/macho, const ARM64_RELOC_ADDEND RelocTypeARM64
|
| 406 |
+
pkg debug/macho, const ARM64_RELOC_BRANCH26 = 2
|
| 407 |
+
pkg debug/macho, const ARM64_RELOC_BRANCH26 RelocTypeARM64
|
| 408 |
+
pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGE21 = 5
|
| 409 |
+
pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGE21 RelocTypeARM64
|
| 410 |
+
pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGEOFF12 = 6
|
| 411 |
+
pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGEOFF12 RelocTypeARM64
|
| 412 |
+
pkg debug/macho, const ARM64_RELOC_PAGE21 = 3
|
| 413 |
+
pkg debug/macho, const ARM64_RELOC_PAGE21 RelocTypeARM64
|
| 414 |
+
pkg debug/macho, const ARM64_RELOC_PAGEOFF12 = 4
|
| 415 |
+
pkg debug/macho, const ARM64_RELOC_PAGEOFF12 RelocTypeARM64
|
| 416 |
+
pkg debug/macho, const ARM64_RELOC_POINTER_TO_GOT = 7
|
| 417 |
+
pkg debug/macho, const ARM64_RELOC_POINTER_TO_GOT RelocTypeARM64
|
| 418 |
+
pkg debug/macho, const ARM64_RELOC_SUBTRACTOR = 1
|
| 419 |
+
pkg debug/macho, const ARM64_RELOC_SUBTRACTOR RelocTypeARM64
|
| 420 |
+
pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGE21 = 8
|
| 421 |
+
pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGE21 RelocTypeARM64
|
| 422 |
+
pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGEOFF12 = 9
|
| 423 |
+
pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGEOFF12 RelocTypeARM64
|
| 424 |
+
pkg debug/macho, const ARM64_RELOC_UNSIGNED = 0
|
| 425 |
+
pkg debug/macho, const ARM64_RELOC_UNSIGNED RelocTypeARM64
|
| 426 |
+
pkg debug/macho, const ARM_RELOC_BR24 = 5
|
| 427 |
+
pkg debug/macho, const ARM_RELOC_BR24 RelocTypeARM
|
| 428 |
+
pkg debug/macho, const ARM_RELOC_HALF = 8
|
| 429 |
+
pkg debug/macho, const ARM_RELOC_HALF RelocTypeARM
|
| 430 |
+
pkg debug/macho, const ARM_RELOC_HALF_SECTDIFF = 9
|
| 431 |
+
pkg debug/macho, const ARM_RELOC_HALF_SECTDIFF RelocTypeARM
|
| 432 |
+
pkg debug/macho, const ARM_RELOC_LOCAL_SECTDIFF = 3
|
| 433 |
+
pkg debug/macho, const ARM_RELOC_LOCAL_SECTDIFF RelocTypeARM
|
| 434 |
+
pkg debug/macho, const ARM_RELOC_PAIR = 1
|
| 435 |
+
pkg debug/macho, const ARM_RELOC_PAIR RelocTypeARM
|
| 436 |
+
pkg debug/macho, const ARM_RELOC_PB_LA_PTR = 4
|
| 437 |
+
pkg debug/macho, const ARM_RELOC_PB_LA_PTR RelocTypeARM
|
| 438 |
+
pkg debug/macho, const ARM_RELOC_SECTDIFF = 2
|
| 439 |
+
pkg debug/macho, const ARM_RELOC_SECTDIFF RelocTypeARM
|
| 440 |
+
pkg debug/macho, const ARM_RELOC_VANILLA = 0
|
| 441 |
+
pkg debug/macho, const ARM_RELOC_VANILLA RelocTypeARM
|
| 442 |
+
pkg debug/macho, const ARM_THUMB_32BIT_BRANCH = 7
|
| 443 |
+
pkg debug/macho, const ARM_THUMB_32BIT_BRANCH RelocTypeARM
|
| 444 |
+
pkg debug/macho, const ARM_THUMB_RELOC_BR22 = 6
|
| 445 |
+
pkg debug/macho, const ARM_THUMB_RELOC_BR22 RelocTypeARM
|
| 446 |
+
pkg debug/macho, const FlagAllModsBound = 4096
|
| 447 |
+
pkg debug/macho, const FlagAllModsBound uint32
|
| 448 |
+
pkg debug/macho, const FlagAllowStackExecution = 131072
|
| 449 |
+
pkg debug/macho, const FlagAllowStackExecution uint32
|
| 450 |
+
pkg debug/macho, const FlagAppExtensionSafe = 33554432
|
| 451 |
+
pkg debug/macho, const FlagAppExtensionSafe uint32
|
| 452 |
+
pkg debug/macho, const FlagBindAtLoad = 8
|
| 453 |
+
pkg debug/macho, const FlagBindAtLoad uint32
|
| 454 |
+
pkg debug/macho, const FlagBindsToWeak = 65536
|
| 455 |
+
pkg debug/macho, const FlagBindsToWeak uint32
|
| 456 |
+
pkg debug/macho, const FlagCanonical = 16384
|
| 457 |
+
pkg debug/macho, const FlagCanonical uint32
|
| 458 |
+
pkg debug/macho, const FlagDeadStrippableDylib = 4194304
|
| 459 |
+
pkg debug/macho, const FlagDeadStrippableDylib uint32
|
| 460 |
+
pkg debug/macho, const FlagDyldLink = 4
|
| 461 |
+
pkg debug/macho, const FlagDyldLink uint32
|
| 462 |
+
pkg debug/macho, const FlagForceFlat = 256
|
| 463 |
+
pkg debug/macho, const FlagForceFlat uint32
|
| 464 |
+
pkg debug/macho, const FlagHasTLVDescriptors = 8388608
|
| 465 |
+
pkg debug/macho, const FlagHasTLVDescriptors uint32
|
| 466 |
+
pkg debug/macho, const FlagIncrLink = 2
|
| 467 |
+
pkg debug/macho, const FlagIncrLink uint32
|
| 468 |
+
pkg debug/macho, const FlagLazyInit = 64
|
| 469 |
+
pkg debug/macho, const FlagLazyInit uint32
|
| 470 |
+
pkg debug/macho, const FlagNoFixPrebinding = 1024
|
| 471 |
+
pkg debug/macho, const FlagNoFixPrebinding uint32
|
| 472 |
+
pkg debug/macho, const FlagNoHeapExecution = 16777216
|
| 473 |
+
pkg debug/macho, const FlagNoHeapExecution uint32
|
| 474 |
+
pkg debug/macho, const FlagNoMultiDefs = 512
|
| 475 |
+
pkg debug/macho, const FlagNoMultiDefs uint32
|
| 476 |
+
pkg debug/macho, const FlagNoReexportedDylibs = 1048576
|
| 477 |
+
pkg debug/macho, const FlagNoReexportedDylibs uint32
|
| 478 |
+
pkg debug/macho, const FlagNoUndefs = 1
|
| 479 |
+
pkg debug/macho, const FlagNoUndefs uint32
|
| 480 |
+
pkg debug/macho, const FlagPIE = 2097152
|
| 481 |
+
pkg debug/macho, const FlagPIE uint32
|
| 482 |
+
pkg debug/macho, const FlagPrebindable = 2048
|
| 483 |
+
pkg debug/macho, const FlagPrebindable uint32
|
| 484 |
+
pkg debug/macho, const FlagPrebound = 16
|
| 485 |
+
pkg debug/macho, const FlagPrebound uint32
|
| 486 |
+
pkg debug/macho, const FlagRootSafe = 262144
|
| 487 |
+
pkg debug/macho, const FlagRootSafe uint32
|
| 488 |
+
pkg debug/macho, const FlagSetuidSafe = 524288
|
| 489 |
+
pkg debug/macho, const FlagSetuidSafe uint32
|
| 490 |
+
pkg debug/macho, const FlagSplitSegs = 32
|
| 491 |
+
pkg debug/macho, const FlagSplitSegs uint32
|
| 492 |
+
pkg debug/macho, const FlagSubsectionsViaSymbols = 8192
|
| 493 |
+
pkg debug/macho, const FlagSubsectionsViaSymbols uint32
|
| 494 |
+
pkg debug/macho, const FlagTwoLevel = 128
|
| 495 |
+
pkg debug/macho, const FlagTwoLevel uint32
|
| 496 |
+
pkg debug/macho, const FlagWeakDefines = 32768
|
| 497 |
+
pkg debug/macho, const FlagWeakDefines uint32
|
| 498 |
+
pkg debug/macho, const GENERIC_RELOC_LOCAL_SECTDIFF = 4
|
| 499 |
+
pkg debug/macho, const GENERIC_RELOC_LOCAL_SECTDIFF RelocTypeGeneric
|
| 500 |
+
pkg debug/macho, const GENERIC_RELOC_PAIR = 1
|
| 501 |
+
pkg debug/macho, const GENERIC_RELOC_PAIR RelocTypeGeneric
|
| 502 |
+
pkg debug/macho, const GENERIC_RELOC_PB_LA_PTR = 3
|
| 503 |
+
pkg debug/macho, const GENERIC_RELOC_PB_LA_PTR RelocTypeGeneric
|
| 504 |
+
pkg debug/macho, const GENERIC_RELOC_SECTDIFF = 2
|
| 505 |
+
pkg debug/macho, const GENERIC_RELOC_SECTDIFF RelocTypeGeneric
|
| 506 |
+
pkg debug/macho, const GENERIC_RELOC_TLV = 5
|
| 507 |
+
pkg debug/macho, const GENERIC_RELOC_TLV RelocTypeGeneric
|
| 508 |
+
pkg debug/macho, const GENERIC_RELOC_VANILLA = 0
|
| 509 |
+
pkg debug/macho, const GENERIC_RELOC_VANILLA RelocTypeGeneric
|
| 510 |
+
pkg debug/macho, const LoadCmdRpath = 2147483676
|
| 511 |
+
pkg debug/macho, const LoadCmdRpath LoadCmd
|
| 512 |
+
pkg debug/macho, const X86_64_RELOC_BRANCH = 2
|
| 513 |
+
pkg debug/macho, const X86_64_RELOC_BRANCH RelocTypeX86_64
|
| 514 |
+
pkg debug/macho, const X86_64_RELOC_GOT = 4
|
| 515 |
+
pkg debug/macho, const X86_64_RELOC_GOT RelocTypeX86_64
|
| 516 |
+
pkg debug/macho, const X86_64_RELOC_GOT_LOAD = 3
|
| 517 |
+
pkg debug/macho, const X86_64_RELOC_GOT_LOAD RelocTypeX86_64
|
| 518 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED = 1
|
| 519 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED RelocTypeX86_64
|
| 520 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED_1 = 6
|
| 521 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED_1 RelocTypeX86_64
|
| 522 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED_2 = 7
|
| 523 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED_2 RelocTypeX86_64
|
| 524 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED_4 = 8
|
| 525 |
+
pkg debug/macho, const X86_64_RELOC_SIGNED_4 RelocTypeX86_64
|
| 526 |
+
pkg debug/macho, const X86_64_RELOC_SUBTRACTOR = 5
|
| 527 |
+
pkg debug/macho, const X86_64_RELOC_SUBTRACTOR RelocTypeX86_64
|
| 528 |
+
pkg debug/macho, const X86_64_RELOC_TLV = 9
|
| 529 |
+
pkg debug/macho, const X86_64_RELOC_TLV RelocTypeX86_64
|
| 530 |
+
pkg debug/macho, const X86_64_RELOC_UNSIGNED = 0
|
| 531 |
+
pkg debug/macho, const X86_64_RELOC_UNSIGNED RelocTypeX86_64
|
| 532 |
+
pkg debug/macho, method (RelocTypeARM) GoString() string
|
| 533 |
+
pkg debug/macho, method (RelocTypeARM) String() string
|
| 534 |
+
pkg debug/macho, method (RelocTypeARM64) GoString() string
|
| 535 |
+
pkg debug/macho, method (RelocTypeARM64) String() string
|
| 536 |
+
pkg debug/macho, method (RelocTypeGeneric) GoString() string
|
| 537 |
+
pkg debug/macho, method (RelocTypeGeneric) String() string
|
| 538 |
+
pkg debug/macho, method (RelocTypeX86_64) GoString() string
|
| 539 |
+
pkg debug/macho, method (RelocTypeX86_64) String() string
|
| 540 |
+
pkg debug/macho, method (Rpath) Raw() []uint8
|
| 541 |
+
pkg debug/macho, method (Type) GoString() string
|
| 542 |
+
pkg debug/macho, method (Type) String() string
|
| 543 |
+
pkg debug/macho, type Reloc struct
|
| 544 |
+
pkg debug/macho, type Reloc struct, Addr uint32
|
| 545 |
+
pkg debug/macho, type Reloc struct, Extern bool
|
| 546 |
+
pkg debug/macho, type Reloc struct, Len uint8
|
| 547 |
+
pkg debug/macho, type Reloc struct, Pcrel bool
|
| 548 |
+
pkg debug/macho, type Reloc struct, Scattered bool
|
| 549 |
+
pkg debug/macho, type Reloc struct, Type uint8
|
| 550 |
+
pkg debug/macho, type Reloc struct, Value uint32
|
| 551 |
+
pkg debug/macho, type RelocTypeARM int
|
| 552 |
+
pkg debug/macho, type RelocTypeARM64 int
|
| 553 |
+
pkg debug/macho, type RelocTypeGeneric int
|
| 554 |
+
pkg debug/macho, type RelocTypeX86_64 int
|
| 555 |
+
pkg debug/macho, type Rpath struct
|
| 556 |
+
pkg debug/macho, type Rpath struct, Path string
|
| 557 |
+
pkg debug/macho, type Rpath struct, embedded LoadBytes
|
| 558 |
+
pkg debug/macho, type RpathCmd struct
|
| 559 |
+
pkg debug/macho, type RpathCmd struct, Cmd LoadCmd
|
| 560 |
+
pkg debug/macho, type RpathCmd struct, Len uint32
|
| 561 |
+
pkg debug/macho, type RpathCmd struct, Path uint32
|
| 562 |
+
pkg debug/macho, type Section struct, Relocs []Reloc
|
| 563 |
+
pkg encoding/asn1, const TagNumericString = 18
|
| 564 |
+
pkg encoding/asn1, const TagNumericString ideal-int
|
| 565 |
+
pkg encoding/asn1, func MarshalWithParams(interface{}, string) ([]uint8, error)
|
| 566 |
+
pkg encoding/csv, type ParseError struct, StartLine int
|
| 567 |
+
pkg encoding/hex, func NewDecoder(io.Reader) io.Reader
|
| 568 |
+
pkg encoding/hex, func NewEncoder(io.Writer) io.Writer
|
| 569 |
+
pkg encoding/json, method (*Decoder) DisallowUnknownFields()
|
| 570 |
+
pkg encoding/xml, func NewTokenDecoder(TokenReader) *Decoder
|
| 571 |
+
pkg encoding/xml, type TokenReader interface { Token }
|
| 572 |
+
pkg encoding/xml, type TokenReader interface, Token() (Token, error)
|
| 573 |
+
pkg flag, method (*FlagSet) ErrorHandling() ErrorHandling
|
| 574 |
+
pkg flag, method (*FlagSet) Name() string
|
| 575 |
+
pkg flag, method (*FlagSet) Output() io.Writer
|
| 576 |
+
pkg html/template, type Srcset string
|
| 577 |
+
pkg math, func Erfcinv(float64) float64
|
| 578 |
+
pkg math, func Erfinv(float64) float64
|
| 579 |
+
pkg math, func Round(float64) float64
|
| 580 |
+
pkg math, func RoundToEven(float64) float64
|
| 581 |
+
pkg math/big, const MaxBase = 62
|
| 582 |
+
pkg math/big, method (*Float) Sqrt(*Float) *Float
|
| 583 |
+
pkg math/big, method (*Int) CmpAbs(*Int) int
|
| 584 |
+
pkg math/rand, func Shuffle(int, func(int, int))
|
| 585 |
+
pkg math/rand, method (*Rand) Shuffle(int, func(int, int))
|
| 586 |
+
pkg net, method (*TCPListener) SyscallConn() (syscall.RawConn, error)
|
| 587 |
+
pkg net, method (*UnixListener) SyscallConn() (syscall.RawConn, error)
|
| 588 |
+
pkg net/smtp, method (*Client) Noop() error
|
| 589 |
+
pkg os, func IsTimeout(error) bool
|
| 590 |
+
pkg os, method (*File) SetDeadline(time.Time) error
|
| 591 |
+
pkg os, method (*File) SetReadDeadline(time.Time) error
|
| 592 |
+
pkg os, method (*File) SetWriteDeadline(time.Time) error
|
| 593 |
+
pkg os, method (*PathError) Timeout() bool
|
| 594 |
+
pkg os, method (*SyscallError) Timeout() bool
|
| 595 |
+
pkg os, var ErrNoDeadline error
|
| 596 |
+
pkg strings, method (*Builder) Grow(int)
|
| 597 |
+
pkg strings, method (*Builder) Len() int
|
| 598 |
+
pkg strings, method (*Builder) Reset()
|
| 599 |
+
pkg strings, method (*Builder) String() string
|
| 600 |
+
pkg strings, method (*Builder) Write([]uint8) (int, error)
|
| 601 |
+
pkg strings, method (*Builder) WriteByte(uint8) error
|
| 602 |
+
pkg strings, method (*Builder) WriteRune(int32) (int, error)
|
| 603 |
+
pkg strings, method (*Builder) WriteString(string) (int, error)
|
| 604 |
+
pkg strings, type Builder struct
|
| 605 |
+
pkg syscall (freebsd-386), const SYS_UTIMENSAT = 547
|
| 606 |
+
pkg syscall (freebsd-386), const SYS_UTIMENSAT ideal-int
|
| 607 |
+
pkg syscall (freebsd-386-cgo), const SYS_UTIMENSAT = 547
|
| 608 |
+
pkg syscall (freebsd-386-cgo), const SYS_UTIMENSAT ideal-int
|
| 609 |
+
pkg syscall (freebsd-amd64), const SYS_UTIMENSAT = 547
|
| 610 |
+
pkg syscall (freebsd-amd64), const SYS_UTIMENSAT ideal-int
|
| 611 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_UTIMENSAT = 547
|
| 612 |
+
pkg syscall (freebsd-amd64-cgo), const SYS_UTIMENSAT ideal-int
|
| 613 |
+
pkg syscall (freebsd-arm), const SYS_UTIMENSAT = 547
|
| 614 |
+
pkg syscall (freebsd-arm), const SYS_UTIMENSAT ideal-int
|
| 615 |
+
pkg syscall (freebsd-arm-cgo), const SYS_UTIMENSAT = 547
|
| 616 |
+
pkg syscall (freebsd-arm-cgo), const SYS_UTIMENSAT ideal-int
|
| 617 |
+
pkg syscall (windows-386), func CreateProcessAsUser(Token, *uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error
|
| 618 |
+
pkg syscall (windows-386), type SysProcAttr struct, Token Token
|
| 619 |
+
pkg syscall (windows-amd64), func CreateProcessAsUser(Token, *uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error
|
| 620 |
+
pkg syscall (windows-amd64), type SysProcAttr struct, Token Token
|
| 621 |
+
pkg time, func LoadLocationFromTZData(string, []uint8) (*Location, error)
|
| 622 |
+
pkg unicode, const Version = "10.0.0"
|
| 623 |
+
pkg unicode, var Masaram_Gondi *RangeTable
|
| 624 |
+
pkg unicode, var Nushu *RangeTable
|
| 625 |
+
pkg unicode, var Regional_Indicator *RangeTable
|
| 626 |
+
pkg unicode, var Soyombo *RangeTable
|
| 627 |
+
pkg unicode, var Zanabazar_Square *RangeTable
|
api/go1.11.txt
ADDED
|
@@ -0,0 +1,559 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg crypto/cipher, func NewGCMWithTagSize(Block, int) (AEAD, error)
|
| 2 |
+
pkg crypto/rsa, method (*PrivateKey) Size() int
|
| 3 |
+
pkg crypto/rsa, method (*PublicKey) Size() int
|
| 4 |
+
pkg crypto/tls, method (*ConnectionState) ExportKeyingMaterial(string, []uint8, int) ([]uint8, error)
|
| 5 |
+
pkg database/sql, method (IsolationLevel) String() string
|
| 6 |
+
pkg database/sql, type DBStats struct, Idle int
|
| 7 |
+
pkg database/sql, type DBStats struct, InUse int
|
| 8 |
+
pkg database/sql, type DBStats struct, MaxIdleClosed int64
|
| 9 |
+
pkg database/sql, type DBStats struct, MaxLifetimeClosed int64
|
| 10 |
+
pkg database/sql, type DBStats struct, MaxOpenConnections int
|
| 11 |
+
pkg database/sql, type DBStats struct, WaitCount int64
|
| 12 |
+
pkg database/sql, type DBStats struct, WaitDuration time.Duration
|
| 13 |
+
pkg debug/elf, const ELFOSABI_AROS = 15
|
| 14 |
+
pkg debug/elf, const ELFOSABI_AROS OSABI
|
| 15 |
+
pkg debug/elf, const ELFOSABI_CLOUDABI = 17
|
| 16 |
+
pkg debug/elf, const ELFOSABI_CLOUDABI OSABI
|
| 17 |
+
pkg debug/elf, const ELFOSABI_FENIXOS = 16
|
| 18 |
+
pkg debug/elf, const ELFOSABI_FENIXOS OSABI
|
| 19 |
+
pkg debug/elf, const EM_56800EX = 200
|
| 20 |
+
pkg debug/elf, const EM_56800EX Machine
|
| 21 |
+
pkg debug/elf, const EM_68HC05 = 72
|
| 22 |
+
pkg debug/elf, const EM_68HC05 Machine
|
| 23 |
+
pkg debug/elf, const EM_68HC08 = 71
|
| 24 |
+
pkg debug/elf, const EM_68HC08 Machine
|
| 25 |
+
pkg debug/elf, const EM_68HC11 = 70
|
| 26 |
+
pkg debug/elf, const EM_68HC11 Machine
|
| 27 |
+
pkg debug/elf, const EM_68HC16 = 69
|
| 28 |
+
pkg debug/elf, const EM_68HC16 Machine
|
| 29 |
+
pkg debug/elf, const EM_78KOR = 199
|
| 30 |
+
pkg debug/elf, const EM_78KOR Machine
|
| 31 |
+
pkg debug/elf, const EM_8051 = 165
|
| 32 |
+
pkg debug/elf, const EM_8051 Machine
|
| 33 |
+
pkg debug/elf, const EM_ALTERA_NIOS2 = 113
|
| 34 |
+
pkg debug/elf, const EM_ALTERA_NIOS2 Machine
|
| 35 |
+
pkg debug/elf, const EM_AMDGPU = 224
|
| 36 |
+
pkg debug/elf, const EM_AMDGPU Machine
|
| 37 |
+
pkg debug/elf, const EM_ARCA = 109
|
| 38 |
+
pkg debug/elf, const EM_ARCA Machine
|
| 39 |
+
pkg debug/elf, const EM_ARC_COMPACT = 93
|
| 40 |
+
pkg debug/elf, const EM_ARC_COMPACT Machine
|
| 41 |
+
pkg debug/elf, const EM_ARC_COMPACT2 = 195
|
| 42 |
+
pkg debug/elf, const EM_ARC_COMPACT2 Machine
|
| 43 |
+
pkg debug/elf, const EM_AVR = 83
|
| 44 |
+
pkg debug/elf, const EM_AVR Machine
|
| 45 |
+
pkg debug/elf, const EM_AVR32 = 185
|
| 46 |
+
pkg debug/elf, const EM_AVR32 Machine
|
| 47 |
+
pkg debug/elf, const EM_BA1 = 201
|
| 48 |
+
pkg debug/elf, const EM_BA1 Machine
|
| 49 |
+
pkg debug/elf, const EM_BA2 = 202
|
| 50 |
+
pkg debug/elf, const EM_BA2 Machine
|
| 51 |
+
pkg debug/elf, const EM_BLACKFIN = 106
|
| 52 |
+
pkg debug/elf, const EM_BLACKFIN Machine
|
| 53 |
+
pkg debug/elf, const EM_BPF = 247
|
| 54 |
+
pkg debug/elf, const EM_BPF Machine
|
| 55 |
+
pkg debug/elf, const EM_C166 = 116
|
| 56 |
+
pkg debug/elf, const EM_C166 Machine
|
| 57 |
+
pkg debug/elf, const EM_CDP = 215
|
| 58 |
+
pkg debug/elf, const EM_CDP Machine
|
| 59 |
+
pkg debug/elf, const EM_CE = 119
|
| 60 |
+
pkg debug/elf, const EM_CE Machine
|
| 61 |
+
pkg debug/elf, const EM_CLOUDSHIELD = 192
|
| 62 |
+
pkg debug/elf, const EM_CLOUDSHIELD Machine
|
| 63 |
+
pkg debug/elf, const EM_COGE = 216
|
| 64 |
+
pkg debug/elf, const EM_COGE Machine
|
| 65 |
+
pkg debug/elf, const EM_COOL = 217
|
| 66 |
+
pkg debug/elf, const EM_COOL Machine
|
| 67 |
+
pkg debug/elf, const EM_COREA_1ST = 193
|
| 68 |
+
pkg debug/elf, const EM_COREA_1ST Machine
|
| 69 |
+
pkg debug/elf, const EM_COREA_2ND = 194
|
| 70 |
+
pkg debug/elf, const EM_COREA_2ND Machine
|
| 71 |
+
pkg debug/elf, const EM_CR = 103
|
| 72 |
+
pkg debug/elf, const EM_CR Machine
|
| 73 |
+
pkg debug/elf, const EM_CR16 = 177
|
| 74 |
+
pkg debug/elf, const EM_CR16 Machine
|
| 75 |
+
pkg debug/elf, const EM_CRAYNV2 = 172
|
| 76 |
+
pkg debug/elf, const EM_CRAYNV2 Machine
|
| 77 |
+
pkg debug/elf, const EM_CRIS = 76
|
| 78 |
+
pkg debug/elf, const EM_CRIS Machine
|
| 79 |
+
pkg debug/elf, const EM_CRX = 114
|
| 80 |
+
pkg debug/elf, const EM_CRX Machine
|
| 81 |
+
pkg debug/elf, const EM_CSR_KALIMBA = 219
|
| 82 |
+
pkg debug/elf, const EM_CSR_KALIMBA Machine
|
| 83 |
+
pkg debug/elf, const EM_CUDA = 190
|
| 84 |
+
pkg debug/elf, const EM_CUDA Machine
|
| 85 |
+
pkg debug/elf, const EM_CYPRESS_M8C = 161
|
| 86 |
+
pkg debug/elf, const EM_CYPRESS_M8C Machine
|
| 87 |
+
pkg debug/elf, const EM_D10V = 85
|
| 88 |
+
pkg debug/elf, const EM_D10V Machine
|
| 89 |
+
pkg debug/elf, const EM_D30V = 86
|
| 90 |
+
pkg debug/elf, const EM_D30V Machine
|
| 91 |
+
pkg debug/elf, const EM_DSP24 = 136
|
| 92 |
+
pkg debug/elf, const EM_DSP24 Machine
|
| 93 |
+
pkg debug/elf, const EM_DSPIC30F = 118
|
| 94 |
+
pkg debug/elf, const EM_DSPIC30F Machine
|
| 95 |
+
pkg debug/elf, const EM_DXP = 112
|
| 96 |
+
pkg debug/elf, const EM_DXP Machine
|
| 97 |
+
pkg debug/elf, const EM_ECOG1 = 168
|
| 98 |
+
pkg debug/elf, const EM_ECOG1 Machine
|
| 99 |
+
pkg debug/elf, const EM_ECOG16 = 176
|
| 100 |
+
pkg debug/elf, const EM_ECOG16 Machine
|
| 101 |
+
pkg debug/elf, const EM_ECOG1X = 168
|
| 102 |
+
pkg debug/elf, const EM_ECOG1X Machine
|
| 103 |
+
pkg debug/elf, const EM_ECOG2 = 134
|
| 104 |
+
pkg debug/elf, const EM_ECOG2 Machine
|
| 105 |
+
pkg debug/elf, const EM_ETPU = 178
|
| 106 |
+
pkg debug/elf, const EM_ETPU Machine
|
| 107 |
+
pkg debug/elf, const EM_EXCESS = 111
|
| 108 |
+
pkg debug/elf, const EM_EXCESS Machine
|
| 109 |
+
pkg debug/elf, const EM_F2MC16 = 104
|
| 110 |
+
pkg debug/elf, const EM_F2MC16 Machine
|
| 111 |
+
pkg debug/elf, const EM_FIREPATH = 78
|
| 112 |
+
pkg debug/elf, const EM_FIREPATH Machine
|
| 113 |
+
pkg debug/elf, const EM_FR30 = 84
|
| 114 |
+
pkg debug/elf, const EM_FR30 Machine
|
| 115 |
+
pkg debug/elf, const EM_FT32 = 222
|
| 116 |
+
pkg debug/elf, const EM_FT32 Machine
|
| 117 |
+
pkg debug/elf, const EM_FX66 = 66
|
| 118 |
+
pkg debug/elf, const EM_FX66 Machine
|
| 119 |
+
pkg debug/elf, const EM_HUANY = 81
|
| 120 |
+
pkg debug/elf, const EM_HUANY Machine
|
| 121 |
+
pkg debug/elf, const EM_INTEL205 = 205
|
| 122 |
+
pkg debug/elf, const EM_INTEL205 Machine
|
| 123 |
+
pkg debug/elf, const EM_INTEL206 = 206
|
| 124 |
+
pkg debug/elf, const EM_INTEL206 Machine
|
| 125 |
+
pkg debug/elf, const EM_INTEL207 = 207
|
| 126 |
+
pkg debug/elf, const EM_INTEL207 Machine
|
| 127 |
+
pkg debug/elf, const EM_INTEL208 = 208
|
| 128 |
+
pkg debug/elf, const EM_INTEL208 Machine
|
| 129 |
+
pkg debug/elf, const EM_INTEL209 = 209
|
| 130 |
+
pkg debug/elf, const EM_INTEL209 Machine
|
| 131 |
+
pkg debug/elf, const EM_IP2K = 101
|
| 132 |
+
pkg debug/elf, const EM_IP2K Machine
|
| 133 |
+
pkg debug/elf, const EM_JAVELIN = 77
|
| 134 |
+
pkg debug/elf, const EM_JAVELIN Machine
|
| 135 |
+
pkg debug/elf, const EM_K10M = 181
|
| 136 |
+
pkg debug/elf, const EM_K10M Machine
|
| 137 |
+
pkg debug/elf, const EM_KM32 = 210
|
| 138 |
+
pkg debug/elf, const EM_KM32 Machine
|
| 139 |
+
pkg debug/elf, const EM_KMX16 = 212
|
| 140 |
+
pkg debug/elf, const EM_KMX16 Machine
|
| 141 |
+
pkg debug/elf, const EM_KMX32 = 211
|
| 142 |
+
pkg debug/elf, const EM_KMX32 Machine
|
| 143 |
+
pkg debug/elf, const EM_KMX8 = 213
|
| 144 |
+
pkg debug/elf, const EM_KMX8 Machine
|
| 145 |
+
pkg debug/elf, const EM_KVARC = 214
|
| 146 |
+
pkg debug/elf, const EM_KVARC Machine
|
| 147 |
+
pkg debug/elf, const EM_L10M = 180
|
| 148 |
+
pkg debug/elf, const EM_L10M Machine
|
| 149 |
+
pkg debug/elf, const EM_LANAI = 244
|
| 150 |
+
pkg debug/elf, const EM_LANAI Machine
|
| 151 |
+
pkg debug/elf, const EM_LATTICEMICO32 = 138
|
| 152 |
+
pkg debug/elf, const EM_LATTICEMICO32 Machine
|
| 153 |
+
pkg debug/elf, const EM_M16C = 117
|
| 154 |
+
pkg debug/elf, const EM_M16C Machine
|
| 155 |
+
pkg debug/elf, const EM_M32C = 120
|
| 156 |
+
pkg debug/elf, const EM_M32C Machine
|
| 157 |
+
pkg debug/elf, const EM_M32R = 88
|
| 158 |
+
pkg debug/elf, const EM_M32R Machine
|
| 159 |
+
pkg debug/elf, const EM_MANIK = 171
|
| 160 |
+
pkg debug/elf, const EM_MANIK Machine
|
| 161 |
+
pkg debug/elf, const EM_MAX = 102
|
| 162 |
+
pkg debug/elf, const EM_MAX Machine
|
| 163 |
+
pkg debug/elf, const EM_MAXQ30 = 169
|
| 164 |
+
pkg debug/elf, const EM_MAXQ30 Machine
|
| 165 |
+
pkg debug/elf, const EM_MCHP_PIC = 204
|
| 166 |
+
pkg debug/elf, const EM_MCHP_PIC Machine
|
| 167 |
+
pkg debug/elf, const EM_MCST_ELBRUS = 175
|
| 168 |
+
pkg debug/elf, const EM_MCST_ELBRUS Machine
|
| 169 |
+
pkg debug/elf, const EM_METAG = 174
|
| 170 |
+
pkg debug/elf, const EM_METAG Machine
|
| 171 |
+
pkg debug/elf, const EM_MICROBLAZE = 189
|
| 172 |
+
pkg debug/elf, const EM_MICROBLAZE Machine
|
| 173 |
+
pkg debug/elf, const EM_MMDSP_PLUS = 160
|
| 174 |
+
pkg debug/elf, const EM_MMDSP_PLUS Machine
|
| 175 |
+
pkg debug/elf, const EM_MMIX = 80
|
| 176 |
+
pkg debug/elf, const EM_MMIX Machine
|
| 177 |
+
pkg debug/elf, const EM_MN10200 = 90
|
| 178 |
+
pkg debug/elf, const EM_MN10200 Machine
|
| 179 |
+
pkg debug/elf, const EM_MN10300 = 89
|
| 180 |
+
pkg debug/elf, const EM_MN10300 Machine
|
| 181 |
+
pkg debug/elf, const EM_MOXIE = 223
|
| 182 |
+
pkg debug/elf, const EM_MOXIE Machine
|
| 183 |
+
pkg debug/elf, const EM_MSP430 = 105
|
| 184 |
+
pkg debug/elf, const EM_MSP430 Machine
|
| 185 |
+
pkg debug/elf, const EM_NDS32 = 167
|
| 186 |
+
pkg debug/elf, const EM_NDS32 Machine
|
| 187 |
+
pkg debug/elf, const EM_NORC = 218
|
| 188 |
+
pkg debug/elf, const EM_NORC Machine
|
| 189 |
+
pkg debug/elf, const EM_NS32K = 97
|
| 190 |
+
pkg debug/elf, const EM_NS32K Machine
|
| 191 |
+
pkg debug/elf, const EM_OPEN8 = 196
|
| 192 |
+
pkg debug/elf, const EM_OPEN8 Machine
|
| 193 |
+
pkg debug/elf, const EM_OPENRISC = 92
|
| 194 |
+
pkg debug/elf, const EM_OPENRISC Machine
|
| 195 |
+
pkg debug/elf, const EM_PDP10 = 64
|
| 196 |
+
pkg debug/elf, const EM_PDP10 Machine
|
| 197 |
+
pkg debug/elf, const EM_PDP11 = 65
|
| 198 |
+
pkg debug/elf, const EM_PDP11 Machine
|
| 199 |
+
pkg debug/elf, const EM_PDSP = 63
|
| 200 |
+
pkg debug/elf, const EM_PDSP Machine
|
| 201 |
+
pkg debug/elf, const EM_PJ = 91
|
| 202 |
+
pkg debug/elf, const EM_PJ Machine
|
| 203 |
+
pkg debug/elf, const EM_PRISM = 82
|
| 204 |
+
pkg debug/elf, const EM_PRISM Machine
|
| 205 |
+
pkg debug/elf, const EM_QDSP6 = 164
|
| 206 |
+
pkg debug/elf, const EM_QDSP6 Machine
|
| 207 |
+
pkg debug/elf, const EM_R32C = 162
|
| 208 |
+
pkg debug/elf, const EM_R32C Machine
|
| 209 |
+
pkg debug/elf, const EM_RISCV = 243
|
| 210 |
+
pkg debug/elf, const EM_RISCV Machine
|
| 211 |
+
pkg debug/elf, const EM_RL78 = 197
|
| 212 |
+
pkg debug/elf, const EM_RL78 Machine
|
| 213 |
+
pkg debug/elf, const EM_RS08 = 132
|
| 214 |
+
pkg debug/elf, const EM_RS08 Machine
|
| 215 |
+
pkg debug/elf, const EM_RX = 173
|
| 216 |
+
pkg debug/elf, const EM_RX Machine
|
| 217 |
+
pkg debug/elf, const EM_SCORE7 = 135
|
| 218 |
+
pkg debug/elf, const EM_SCORE7 Machine
|
| 219 |
+
pkg debug/elf, const EM_SEP = 108
|
| 220 |
+
pkg debug/elf, const EM_SEP Machine
|
| 221 |
+
pkg debug/elf, const EM_SE_C17 = 139
|
| 222 |
+
pkg debug/elf, const EM_SE_C17 Machine
|
| 223 |
+
pkg debug/elf, const EM_SE_C33 = 107
|
| 224 |
+
pkg debug/elf, const EM_SE_C33 Machine
|
| 225 |
+
pkg debug/elf, const EM_SHARC = 133
|
| 226 |
+
pkg debug/elf, const EM_SHARC Machine
|
| 227 |
+
pkg debug/elf, const EM_SLE9X = 179
|
| 228 |
+
pkg debug/elf, const EM_SLE9X Machine
|
| 229 |
+
pkg debug/elf, const EM_SNP1K = 99
|
| 230 |
+
pkg debug/elf, const EM_SNP1K Machine
|
| 231 |
+
pkg debug/elf, const EM_ST19 = 74
|
| 232 |
+
pkg debug/elf, const EM_ST19 Machine
|
| 233 |
+
pkg debug/elf, const EM_ST200 = 100
|
| 234 |
+
pkg debug/elf, const EM_ST200 Machine
|
| 235 |
+
pkg debug/elf, const EM_ST7 = 68
|
| 236 |
+
pkg debug/elf, const EM_ST7 Machine
|
| 237 |
+
pkg debug/elf, const EM_ST9PLUS = 67
|
| 238 |
+
pkg debug/elf, const EM_ST9PLUS Machine
|
| 239 |
+
pkg debug/elf, const EM_STM8 = 186
|
| 240 |
+
pkg debug/elf, const EM_STM8 Machine
|
| 241 |
+
pkg debug/elf, const EM_STXP7X = 166
|
| 242 |
+
pkg debug/elf, const EM_STXP7X Machine
|
| 243 |
+
pkg debug/elf, const EM_SVX = 73
|
| 244 |
+
pkg debug/elf, const EM_SVX Machine
|
| 245 |
+
pkg debug/elf, const EM_TILE64 = 187
|
| 246 |
+
pkg debug/elf, const EM_TILE64 Machine
|
| 247 |
+
pkg debug/elf, const EM_TILEGX = 191
|
| 248 |
+
pkg debug/elf, const EM_TILEGX Machine
|
| 249 |
+
pkg debug/elf, const EM_TILEPRO = 188
|
| 250 |
+
pkg debug/elf, const EM_TILEPRO Machine
|
| 251 |
+
pkg debug/elf, const EM_TI_ARP32 = 143
|
| 252 |
+
pkg debug/elf, const EM_TI_ARP32 Machine
|
| 253 |
+
pkg debug/elf, const EM_TI_C2000 = 141
|
| 254 |
+
pkg debug/elf, const EM_TI_C2000 Machine
|
| 255 |
+
pkg debug/elf, const EM_TI_C5500 = 142
|
| 256 |
+
pkg debug/elf, const EM_TI_C5500 Machine
|
| 257 |
+
pkg debug/elf, const EM_TI_C6000 = 140
|
| 258 |
+
pkg debug/elf, const EM_TI_C6000 Machine
|
| 259 |
+
pkg debug/elf, const EM_TI_PRU = 144
|
| 260 |
+
pkg debug/elf, const EM_TI_PRU Machine
|
| 261 |
+
pkg debug/elf, const EM_TMM_GPP = 96
|
| 262 |
+
pkg debug/elf, const EM_TMM_GPP Machine
|
| 263 |
+
pkg debug/elf, const EM_TPC = 98
|
| 264 |
+
pkg debug/elf, const EM_TPC Machine
|
| 265 |
+
pkg debug/elf, const EM_TRIMEDIA = 163
|
| 266 |
+
pkg debug/elf, const EM_TRIMEDIA Machine
|
| 267 |
+
pkg debug/elf, const EM_TSK3000 = 131
|
| 268 |
+
pkg debug/elf, const EM_TSK3000 Machine
|
| 269 |
+
pkg debug/elf, const EM_UNICORE = 110
|
| 270 |
+
pkg debug/elf, const EM_UNICORE Machine
|
| 271 |
+
pkg debug/elf, const EM_V850 = 87
|
| 272 |
+
pkg debug/elf, const EM_V850 Machine
|
| 273 |
+
pkg debug/elf, const EM_VAX = 75
|
| 274 |
+
pkg debug/elf, const EM_VAX Machine
|
| 275 |
+
pkg debug/elf, const EM_VIDEOCORE = 95
|
| 276 |
+
pkg debug/elf, const EM_VIDEOCORE Machine
|
| 277 |
+
pkg debug/elf, const EM_VIDEOCORE3 = 137
|
| 278 |
+
pkg debug/elf, const EM_VIDEOCORE3 Machine
|
| 279 |
+
pkg debug/elf, const EM_VIDEOCORE5 = 198
|
| 280 |
+
pkg debug/elf, const EM_VIDEOCORE5 Machine
|
| 281 |
+
pkg debug/elf, const EM_VISIUM = 221
|
| 282 |
+
pkg debug/elf, const EM_VISIUM Machine
|
| 283 |
+
pkg debug/elf, const EM_XCORE = 203
|
| 284 |
+
pkg debug/elf, const EM_XCORE Machine
|
| 285 |
+
pkg debug/elf, const EM_XGATE = 115
|
| 286 |
+
pkg debug/elf, const EM_XGATE Machine
|
| 287 |
+
pkg debug/elf, const EM_XIMO16 = 170
|
| 288 |
+
pkg debug/elf, const EM_XIMO16 Machine
|
| 289 |
+
pkg debug/elf, const EM_XTENSA = 94
|
| 290 |
+
pkg debug/elf, const EM_XTENSA Machine
|
| 291 |
+
pkg debug/elf, const EM_Z80 = 220
|
| 292 |
+
pkg debug/elf, const EM_Z80 Machine
|
| 293 |
+
pkg debug/elf, const EM_ZSP = 79
|
| 294 |
+
pkg debug/elf, const EM_ZSP Machine
|
| 295 |
+
pkg debug/elf, const R_RISCV_32 = 1
|
| 296 |
+
pkg debug/elf, const R_RISCV_32 R_RISCV
|
| 297 |
+
pkg debug/elf, const R_RISCV_64 = 2
|
| 298 |
+
pkg debug/elf, const R_RISCV_64 R_RISCV
|
| 299 |
+
pkg debug/elf, const R_RISCV_ADD16 = 34
|
| 300 |
+
pkg debug/elf, const R_RISCV_ADD16 R_RISCV
|
| 301 |
+
pkg debug/elf, const R_RISCV_ADD32 = 35
|
| 302 |
+
pkg debug/elf, const R_RISCV_ADD32 R_RISCV
|
| 303 |
+
pkg debug/elf, const R_RISCV_ADD64 = 36
|
| 304 |
+
pkg debug/elf, const R_RISCV_ADD64 R_RISCV
|
| 305 |
+
pkg debug/elf, const R_RISCV_ADD8 = 33
|
| 306 |
+
pkg debug/elf, const R_RISCV_ADD8 R_RISCV
|
| 307 |
+
pkg debug/elf, const R_RISCV_ALIGN = 43
|
| 308 |
+
pkg debug/elf, const R_RISCV_ALIGN R_RISCV
|
| 309 |
+
pkg debug/elf, const R_RISCV_BRANCH = 16
|
| 310 |
+
pkg debug/elf, const R_RISCV_BRANCH R_RISCV
|
| 311 |
+
pkg debug/elf, const R_RISCV_CALL = 18
|
| 312 |
+
pkg debug/elf, const R_RISCV_CALL R_RISCV
|
| 313 |
+
pkg debug/elf, const R_RISCV_CALL_PLT = 19
|
| 314 |
+
pkg debug/elf, const R_RISCV_CALL_PLT R_RISCV
|
| 315 |
+
pkg debug/elf, const R_RISCV_COPY = 4
|
| 316 |
+
pkg debug/elf, const R_RISCV_COPY R_RISCV
|
| 317 |
+
pkg debug/elf, const R_RISCV_GNU_VTENTRY = 42
|
| 318 |
+
pkg debug/elf, const R_RISCV_GNU_VTENTRY R_RISCV
|
| 319 |
+
pkg debug/elf, const R_RISCV_GNU_VTINHERIT = 41
|
| 320 |
+
pkg debug/elf, const R_RISCV_GNU_VTINHERIT R_RISCV
|
| 321 |
+
pkg debug/elf, const R_RISCV_GOT_HI20 = 20
|
| 322 |
+
pkg debug/elf, const R_RISCV_GOT_HI20 R_RISCV
|
| 323 |
+
pkg debug/elf, const R_RISCV_GPREL_I = 47
|
| 324 |
+
pkg debug/elf, const R_RISCV_GPREL_I R_RISCV
|
| 325 |
+
pkg debug/elf, const R_RISCV_GPREL_S = 48
|
| 326 |
+
pkg debug/elf, const R_RISCV_GPREL_S R_RISCV
|
| 327 |
+
pkg debug/elf, const R_RISCV_HI20 = 26
|
| 328 |
+
pkg debug/elf, const R_RISCV_HI20 R_RISCV
|
| 329 |
+
pkg debug/elf, const R_RISCV_JAL = 17
|
| 330 |
+
pkg debug/elf, const R_RISCV_JAL R_RISCV
|
| 331 |
+
pkg debug/elf, const R_RISCV_JUMP_SLOT = 5
|
| 332 |
+
pkg debug/elf, const R_RISCV_JUMP_SLOT R_RISCV
|
| 333 |
+
pkg debug/elf, const R_RISCV_LO12_I = 27
|
| 334 |
+
pkg debug/elf, const R_RISCV_LO12_I R_RISCV
|
| 335 |
+
pkg debug/elf, const R_RISCV_LO12_S = 28
|
| 336 |
+
pkg debug/elf, const R_RISCV_LO12_S R_RISCV
|
| 337 |
+
pkg debug/elf, const R_RISCV_NONE = 0
|
| 338 |
+
pkg debug/elf, const R_RISCV_NONE R_RISCV
|
| 339 |
+
pkg debug/elf, const R_RISCV_PCREL_HI20 = 23
|
| 340 |
+
pkg debug/elf, const R_RISCV_PCREL_HI20 R_RISCV
|
| 341 |
+
pkg debug/elf, const R_RISCV_PCREL_LO12_I = 24
|
| 342 |
+
pkg debug/elf, const R_RISCV_PCREL_LO12_I R_RISCV
|
| 343 |
+
pkg debug/elf, const R_RISCV_PCREL_LO12_S = 25
|
| 344 |
+
pkg debug/elf, const R_RISCV_PCREL_LO12_S R_RISCV
|
| 345 |
+
pkg debug/elf, const R_RISCV_RELATIVE = 3
|
| 346 |
+
pkg debug/elf, const R_RISCV_RELATIVE R_RISCV
|
| 347 |
+
pkg debug/elf, const R_RISCV_RELAX = 51
|
| 348 |
+
pkg debug/elf, const R_RISCV_RELAX R_RISCV
|
| 349 |
+
pkg debug/elf, const R_RISCV_RVC_BRANCH = 44
|
| 350 |
+
pkg debug/elf, const R_RISCV_RVC_BRANCH R_RISCV
|
| 351 |
+
pkg debug/elf, const R_RISCV_RVC_JUMP = 45
|
| 352 |
+
pkg debug/elf, const R_RISCV_RVC_JUMP R_RISCV
|
| 353 |
+
pkg debug/elf, const R_RISCV_RVC_LUI = 46
|
| 354 |
+
pkg debug/elf, const R_RISCV_RVC_LUI R_RISCV
|
| 355 |
+
pkg debug/elf, const R_RISCV_SET16 = 55
|
| 356 |
+
pkg debug/elf, const R_RISCV_SET16 R_RISCV
|
| 357 |
+
pkg debug/elf, const R_RISCV_SET32 = 56
|
| 358 |
+
pkg debug/elf, const R_RISCV_SET32 R_RISCV
|
| 359 |
+
pkg debug/elf, const R_RISCV_SET6 = 53
|
| 360 |
+
pkg debug/elf, const R_RISCV_SET6 R_RISCV
|
| 361 |
+
pkg debug/elf, const R_RISCV_SET8 = 54
|
| 362 |
+
pkg debug/elf, const R_RISCV_SET8 R_RISCV
|
| 363 |
+
pkg debug/elf, const R_RISCV_SUB16 = 38
|
| 364 |
+
pkg debug/elf, const R_RISCV_SUB16 R_RISCV
|
| 365 |
+
pkg debug/elf, const R_RISCV_SUB32 = 39
|
| 366 |
+
pkg debug/elf, const R_RISCV_SUB32 R_RISCV
|
| 367 |
+
pkg debug/elf, const R_RISCV_SUB6 = 52
|
| 368 |
+
pkg debug/elf, const R_RISCV_SUB6 R_RISCV
|
| 369 |
+
pkg debug/elf, const R_RISCV_SUB64 = 40
|
| 370 |
+
pkg debug/elf, const R_RISCV_SUB64 R_RISCV
|
| 371 |
+
pkg debug/elf, const R_RISCV_SUB8 = 37
|
| 372 |
+
pkg debug/elf, const R_RISCV_SUB8 R_RISCV
|
| 373 |
+
pkg debug/elf, const R_RISCV_TLS_DTPMOD32 = 6
|
| 374 |
+
pkg debug/elf, const R_RISCV_TLS_DTPMOD32 R_RISCV
|
| 375 |
+
pkg debug/elf, const R_RISCV_TLS_DTPMOD64 = 7
|
| 376 |
+
pkg debug/elf, const R_RISCV_TLS_DTPMOD64 R_RISCV
|
| 377 |
+
pkg debug/elf, const R_RISCV_TLS_DTPREL32 = 8
|
| 378 |
+
pkg debug/elf, const R_RISCV_TLS_DTPREL32 R_RISCV
|
| 379 |
+
pkg debug/elf, const R_RISCV_TLS_DTPREL64 = 9
|
| 380 |
+
pkg debug/elf, const R_RISCV_TLS_DTPREL64 R_RISCV
|
| 381 |
+
pkg debug/elf, const R_RISCV_TLS_GD_HI20 = 22
|
| 382 |
+
pkg debug/elf, const R_RISCV_TLS_GD_HI20 R_RISCV
|
| 383 |
+
pkg debug/elf, const R_RISCV_TLS_GOT_HI20 = 21
|
| 384 |
+
pkg debug/elf, const R_RISCV_TLS_GOT_HI20 R_RISCV
|
| 385 |
+
pkg debug/elf, const R_RISCV_TLS_TPREL32 = 10
|
| 386 |
+
pkg debug/elf, const R_RISCV_TLS_TPREL32 R_RISCV
|
| 387 |
+
pkg debug/elf, const R_RISCV_TLS_TPREL64 = 11
|
| 388 |
+
pkg debug/elf, const R_RISCV_TLS_TPREL64 R_RISCV
|
| 389 |
+
pkg debug/elf, const R_RISCV_TPREL_ADD = 32
|
| 390 |
+
pkg debug/elf, const R_RISCV_TPREL_ADD R_RISCV
|
| 391 |
+
pkg debug/elf, const R_RISCV_TPREL_HI20 = 29
|
| 392 |
+
pkg debug/elf, const R_RISCV_TPREL_HI20 R_RISCV
|
| 393 |
+
pkg debug/elf, const R_RISCV_TPREL_I = 49
|
| 394 |
+
pkg debug/elf, const R_RISCV_TPREL_I R_RISCV
|
| 395 |
+
pkg debug/elf, const R_RISCV_TPREL_LO12_I = 30
|
| 396 |
+
pkg debug/elf, const R_RISCV_TPREL_LO12_I R_RISCV
|
| 397 |
+
pkg debug/elf, const R_RISCV_TPREL_LO12_S = 31
|
| 398 |
+
pkg debug/elf, const R_RISCV_TPREL_LO12_S R_RISCV
|
| 399 |
+
pkg debug/elf, const R_RISCV_TPREL_S = 50
|
| 400 |
+
pkg debug/elf, const R_RISCV_TPREL_S R_RISCV
|
| 401 |
+
pkg debug/elf, method (R_RISCV) GoString() string
|
| 402 |
+
pkg debug/elf, method (R_RISCV) String() string
|
| 403 |
+
pkg debug/elf, type R_RISCV int
|
| 404 |
+
pkg debug/macho, const CpuArm64 = 16777228
|
| 405 |
+
pkg debug/macho, const CpuArm64 Cpu
|
| 406 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE = 7
|
| 407 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE ideal-int
|
| 408 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BASERELOC = 5
|
| 409 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BASERELOC ideal-int
|
| 410 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT = 11
|
| 411 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT ideal-int
|
| 412 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14
|
| 413 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR ideal-int
|
| 414 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG = 6
|
| 415 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG ideal-int
|
| 416 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT = 13
|
| 417 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT ideal-int
|
| 418 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION = 3
|
| 419 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION ideal-int
|
| 420 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXPORT = 0
|
| 421 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXPORT ideal-int
|
| 422 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_GLOBALPTR = 8
|
| 423 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_GLOBALPTR ideal-int
|
| 424 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IAT = 12
|
| 425 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IAT ideal-int
|
| 426 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT = 1
|
| 427 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT ideal-int
|
| 428 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG = 10
|
| 429 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG ideal-int
|
| 430 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_RESOURCE = 2
|
| 431 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_RESOURCE ideal-int
|
| 432 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_SECURITY = 4
|
| 433 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_SECURITY ideal-int
|
| 434 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_TLS = 9
|
| 435 |
+
pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_TLS ideal-int
|
| 436 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_ARM64 = 43620
|
| 437 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_ARM64 ideal-int
|
| 438 |
+
pkg go/ast, type CompositeLit struct, Incomplete bool
|
| 439 |
+
pkg go/token, method (*File) AddLineColumnInfo(int, string, int, int)
|
| 440 |
+
pkg go/types, func NewInterfaceType([]*Func, []Type) *Interface
|
| 441 |
+
pkg go/types, method (*Interface) EmbeddedType(int) Type
|
| 442 |
+
pkg go/types, method (*Var) Embedded() bool
|
| 443 |
+
pkg net, method (*ListenConfig) Listen(context.Context, string, string) (Listener, error)
|
| 444 |
+
pkg net, method (*ListenConfig) ListenPacket(context.Context, string, string) (PacketConn, error)
|
| 445 |
+
pkg net, type Dialer struct, Control func(string, string, syscall.RawConn) error
|
| 446 |
+
pkg net, type ListenConfig struct
|
| 447 |
+
pkg net, type ListenConfig struct, Control func(string, string, syscall.RawConn) error
|
| 448 |
+
pkg net/http, const SameSiteDefaultMode = 1
|
| 449 |
+
pkg net/http, const SameSiteDefaultMode SameSite
|
| 450 |
+
pkg net/http, const SameSiteLaxMode = 2
|
| 451 |
+
pkg net/http, const SameSiteLaxMode SameSite
|
| 452 |
+
pkg net/http, const SameSiteStrictMode = 3
|
| 453 |
+
pkg net/http, const SameSiteStrictMode SameSite
|
| 454 |
+
pkg net/http, const StatusMisdirectedRequest = 421
|
| 455 |
+
pkg net/http, const StatusMisdirectedRequest ideal-int
|
| 456 |
+
pkg net/http, type Cookie struct, SameSite SameSite
|
| 457 |
+
pkg net/http, type SameSite int
|
| 458 |
+
pkg net/http, type Transport struct, MaxConnsPerHost int
|
| 459 |
+
pkg net/http/httptrace, type ClientTrace struct, Got1xxResponse func(int, textproto.MIMEHeader) error
|
| 460 |
+
pkg net/http/httptrace, type ClientTrace struct, WroteHeaderField func(string, []string)
|
| 461 |
+
pkg net/http/httputil, type ReverseProxy struct, ErrorHandler func(http.ResponseWriter, *http.Request, error)
|
| 462 |
+
pkg os, const ModeIrregular = 524288
|
| 463 |
+
pkg os, const ModeIrregular FileMode
|
| 464 |
+
pkg os, const ModeType = 2399666176
|
| 465 |
+
pkg os, func UserCacheDir() (string, error)
|
| 466 |
+
pkg os/signal, func Ignored(os.Signal) bool
|
| 467 |
+
pkg regexp/syntax, method (Op) String() string
|
| 468 |
+
pkg runtime/trace, func IsEnabled() bool
|
| 469 |
+
pkg runtime/trace, func Log(context.Context, string, string)
|
| 470 |
+
pkg runtime/trace, func Logf(context.Context, string, string, ...interface{})
|
| 471 |
+
pkg runtime/trace, func NewTask(context.Context, string) (context.Context, *Task)
|
| 472 |
+
pkg runtime/trace, func StartRegion(context.Context, string) *Region
|
| 473 |
+
pkg runtime/trace, func WithRegion(context.Context, string, func())
|
| 474 |
+
pkg runtime/trace, method (*Region) End()
|
| 475 |
+
pkg runtime/trace, method (*Task) End()
|
| 476 |
+
pkg runtime/trace, type Region struct
|
| 477 |
+
pkg runtime/trace, type Task struct
|
| 478 |
+
pkg syscall (netbsd-386), func Accept4(int, int) (int, Sockaddr, error)
|
| 479 |
+
pkg syscall (netbsd-386), func Pipe2([]int, int) error
|
| 480 |
+
pkg syscall (netbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error)
|
| 481 |
+
pkg syscall (netbsd-386-cgo), func Pipe2([]int, int) error
|
| 482 |
+
pkg syscall (netbsd-amd64), func Accept4(int, int) (int, Sockaddr, error)
|
| 483 |
+
pkg syscall (netbsd-amd64), func Pipe2([]int, int) error
|
| 484 |
+
pkg syscall (netbsd-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error)
|
| 485 |
+
pkg syscall (netbsd-amd64-cgo), func Pipe2([]int, int) error
|
| 486 |
+
pkg syscall (netbsd-arm), func Accept4(int, int) (int, Sockaddr, error)
|
| 487 |
+
pkg syscall (netbsd-arm), func Pipe2([]int, int) error
|
| 488 |
+
pkg syscall (netbsd-arm-cgo), func Accept4(int, int) (int, Sockaddr, error)
|
| 489 |
+
pkg syscall (netbsd-arm-cgo), func Pipe2([]int, int) error
|
| 490 |
+
pkg syscall (openbsd-386), const SOCK_CLOEXEC = 32768
|
| 491 |
+
pkg syscall (openbsd-386), const SOCK_CLOEXEC ideal-int
|
| 492 |
+
pkg syscall (openbsd-386), const SOCK_NONBLOCK = 16384
|
| 493 |
+
pkg syscall (openbsd-386), const SOCK_NONBLOCK ideal-int
|
| 494 |
+
pkg syscall (openbsd-386), const SYS_ACCEPT4 = 93
|
| 495 |
+
pkg syscall (openbsd-386), const SYS_ACCEPT4 ideal-int
|
| 496 |
+
pkg syscall (openbsd-386), const SYS_PIPE2 = 101
|
| 497 |
+
pkg syscall (openbsd-386), const SYS_PIPE2 ideal-int
|
| 498 |
+
pkg syscall (openbsd-386), func Accept4(int, int) (int, Sockaddr, error)
|
| 499 |
+
pkg syscall (openbsd-386), func Pipe2([]int, int) error
|
| 500 |
+
pkg syscall (openbsd-386-cgo), const SOCK_CLOEXEC = 32768
|
| 501 |
+
pkg syscall (openbsd-386-cgo), const SOCK_CLOEXEC ideal-int
|
| 502 |
+
pkg syscall (openbsd-386-cgo), const SOCK_NONBLOCK = 16384
|
| 503 |
+
pkg syscall (openbsd-386-cgo), const SOCK_NONBLOCK ideal-int
|
| 504 |
+
pkg syscall (openbsd-386-cgo), const SYS_ACCEPT4 = 93
|
| 505 |
+
pkg syscall (openbsd-386-cgo), const SYS_ACCEPT4 ideal-int
|
| 506 |
+
pkg syscall (openbsd-386-cgo), const SYS_PIPE2 = 101
|
| 507 |
+
pkg syscall (openbsd-386-cgo), const SYS_PIPE2 ideal-int
|
| 508 |
+
pkg syscall (openbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error)
|
| 509 |
+
pkg syscall (openbsd-386-cgo), func Pipe2([]int, int) error
|
| 510 |
+
pkg syscall (openbsd-amd64), const SOCK_CLOEXEC = 32768
|
| 511 |
+
pkg syscall (openbsd-amd64), const SOCK_CLOEXEC ideal-int
|
| 512 |
+
pkg syscall (openbsd-amd64), const SOCK_NONBLOCK = 16384
|
| 513 |
+
pkg syscall (openbsd-amd64), const SOCK_NONBLOCK ideal-int
|
| 514 |
+
pkg syscall (openbsd-amd64), const SYS_ACCEPT4 = 93
|
| 515 |
+
pkg syscall (openbsd-amd64), const SYS_ACCEPT4 ideal-int
|
| 516 |
+
pkg syscall (openbsd-amd64), const SYS_PIPE2 = 101
|
| 517 |
+
pkg syscall (openbsd-amd64), const SYS_PIPE2 ideal-int
|
| 518 |
+
pkg syscall (openbsd-amd64), func Accept4(int, int) (int, Sockaddr, error)
|
| 519 |
+
pkg syscall (openbsd-amd64), func Pipe2([]int, int) error
|
| 520 |
+
pkg syscall (openbsd-amd64-cgo), const SOCK_CLOEXEC = 32768
|
| 521 |
+
pkg syscall (openbsd-amd64-cgo), const SOCK_CLOEXEC ideal-int
|
| 522 |
+
pkg syscall (openbsd-amd64-cgo), const SOCK_NONBLOCK = 16384
|
| 523 |
+
pkg syscall (openbsd-amd64-cgo), const SOCK_NONBLOCK ideal-int
|
| 524 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT4 = 93
|
| 525 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT4 ideal-int
|
| 526 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_PIPE2 = 101
|
| 527 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_PIPE2 ideal-int
|
| 528 |
+
pkg syscall (openbsd-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error)
|
| 529 |
+
pkg syscall (openbsd-amd64-cgo), func Pipe2([]int, int) error
|
| 530 |
+
pkg syscall (windows-386), const TOKEN_ADJUST_SESSIONID = 256
|
| 531 |
+
pkg syscall (windows-386), const TOKEN_ADJUST_SESSIONID ideal-int
|
| 532 |
+
pkg syscall (windows-386), const TOKEN_ALL_ACCESS = 983551
|
| 533 |
+
pkg syscall (windows-386), type AddrinfoW struct, Addr Pointer
|
| 534 |
+
pkg syscall (windows-386), type CertChainPolicyPara struct, ExtraPolicyPara Pointer
|
| 535 |
+
pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus Pointer
|
| 536 |
+
pkg syscall (windows-386), type CertContext struct, CertInfo *CertInfo
|
| 537 |
+
pkg syscall (windows-386), type CertInfo struct
|
| 538 |
+
pkg syscall (windows-386), type CertRevocationCrlInfo struct
|
| 539 |
+
pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo *CertRevocationCrlInfo
|
| 540 |
+
pkg syscall (windows-386), type CertRevocationInfo struct, OidSpecificInfo Pointer
|
| 541 |
+
pkg syscall (windows-386), type CertSimpleChain struct, TrustListInfo *CertTrustListInfo
|
| 542 |
+
pkg syscall (windows-386), type CertTrustListInfo struct
|
| 543 |
+
pkg syscall (windows-386), type Pointer *struct
|
| 544 |
+
pkg syscall (windows-amd64), const TOKEN_ADJUST_SESSIONID = 256
|
| 545 |
+
pkg syscall (windows-amd64), const TOKEN_ADJUST_SESSIONID ideal-int
|
| 546 |
+
pkg syscall (windows-amd64), const TOKEN_ALL_ACCESS = 983551
|
| 547 |
+
pkg syscall (windows-amd64), type AddrinfoW struct, Addr Pointer
|
| 548 |
+
pkg syscall (windows-amd64), type CertChainPolicyPara struct, ExtraPolicyPara Pointer
|
| 549 |
+
pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ExtraPolicyStatus Pointer
|
| 550 |
+
pkg syscall (windows-amd64), type CertContext struct, CertInfo *CertInfo
|
| 551 |
+
pkg syscall (windows-amd64), type CertInfo struct
|
| 552 |
+
pkg syscall (windows-amd64), type CertRevocationCrlInfo struct
|
| 553 |
+
pkg syscall (windows-amd64), type CertRevocationInfo struct, CrlInfo *CertRevocationCrlInfo
|
| 554 |
+
pkg syscall (windows-amd64), type CertRevocationInfo struct, OidSpecificInfo Pointer
|
| 555 |
+
pkg syscall (windows-amd64), type CertSimpleChain struct, TrustListInfo *CertTrustListInfo
|
| 556 |
+
pkg syscall (windows-amd64), type CertTrustListInfo struct
|
| 557 |
+
pkg syscall (windows-amd64), type Pointer *struct
|
| 558 |
+
pkg syscall, const ImplementsGetwd = true
|
| 559 |
+
pkg text/template/parse, type PipeNode struct, IsAssign bool
|
api/go1.12.txt
ADDED
|
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bytes, func ReplaceAll([]uint8, []uint8, []uint8) []uint8
|
| 2 |
+
pkg crypto/tls, const TLS_AES_128_GCM_SHA256 = 4865
|
| 3 |
+
pkg crypto/tls, const TLS_AES_128_GCM_SHA256 uint16
|
| 4 |
+
pkg crypto/tls, const TLS_AES_256_GCM_SHA384 = 4866
|
| 5 |
+
pkg crypto/tls, const TLS_AES_256_GCM_SHA384 uint16
|
| 6 |
+
pkg crypto/tls, const TLS_CHACHA20_POLY1305_SHA256 = 4867
|
| 7 |
+
pkg crypto/tls, const TLS_CHACHA20_POLY1305_SHA256 uint16
|
| 8 |
+
pkg crypto/tls, const VersionTLS13 = 772
|
| 9 |
+
pkg crypto/tls, const VersionTLS13 ideal-int
|
| 10 |
+
pkg crypto/tls, type RecordHeaderError struct, Conn net.Conn
|
| 11 |
+
pkg debug/elf, const R_RISCV_32_PCREL = 57
|
| 12 |
+
pkg debug/elf, const R_RISCV_32_PCREL R_RISCV
|
| 13 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT = 452
|
| 14 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT ideal-int
|
| 15 |
+
pkg expvar, method (*Map) Delete(string)
|
| 16 |
+
pkg go/doc, const PreserveAST = 4
|
| 17 |
+
pkg go/doc, const PreserveAST Mode
|
| 18 |
+
pkg go/importer, func ForCompiler(*token.FileSet, string, Lookup) types.Importer
|
| 19 |
+
pkg go/token, method (*File) LineStart(int) Pos
|
| 20 |
+
pkg io, type StringWriter interface { WriteString }
|
| 21 |
+
pkg io, type StringWriter interface, WriteString(string) (int, error)
|
| 22 |
+
pkg log, method (*Logger) Writer() io.Writer
|
| 23 |
+
pkg math/bits, func Add(uint, uint, uint) (uint, uint)
|
| 24 |
+
pkg math/bits, func Add32(uint32, uint32, uint32) (uint32, uint32)
|
| 25 |
+
pkg math/bits, func Add64(uint64, uint64, uint64) (uint64, uint64)
|
| 26 |
+
pkg math/bits, func Div(uint, uint, uint) (uint, uint)
|
| 27 |
+
pkg math/bits, func Div32(uint32, uint32, uint32) (uint32, uint32)
|
| 28 |
+
pkg math/bits, func Div64(uint64, uint64, uint64) (uint64, uint64)
|
| 29 |
+
pkg math/bits, func Mul(uint, uint) (uint, uint)
|
| 30 |
+
pkg math/bits, func Mul32(uint32, uint32) (uint32, uint32)
|
| 31 |
+
pkg math/bits, func Mul64(uint64, uint64) (uint64, uint64)
|
| 32 |
+
pkg math/bits, func Sub(uint, uint, uint) (uint, uint)
|
| 33 |
+
pkg math/bits, func Sub32(uint32, uint32, uint32) (uint32, uint32)
|
| 34 |
+
pkg math/bits, func Sub64(uint64, uint64, uint64) (uint64, uint64)
|
| 35 |
+
pkg net/http, const StatusTooEarly = 425
|
| 36 |
+
pkg net/http, const StatusTooEarly ideal-int
|
| 37 |
+
pkg net/http, method (*Client) CloseIdleConnections()
|
| 38 |
+
pkg os, const ModeType = 2401763328
|
| 39 |
+
pkg os, func UserHomeDir() (string, error)
|
| 40 |
+
pkg os, method (*File) SyscallConn() (syscall.RawConn, error)
|
| 41 |
+
pkg os, method (*ProcessState) ExitCode() int
|
| 42 |
+
pkg os/exec, method (ExitError) ExitCode() int
|
| 43 |
+
pkg reflect, method (*MapIter) Key() Value
|
| 44 |
+
pkg reflect, method (*MapIter) Next() bool
|
| 45 |
+
pkg reflect, method (*MapIter) Value() Value
|
| 46 |
+
pkg reflect, method (Value) MapRange() *MapIter
|
| 47 |
+
pkg reflect, type MapIter struct
|
| 48 |
+
pkg runtime/debug, func ReadBuildInfo() (*BuildInfo, bool)
|
| 49 |
+
pkg runtime/debug, type BuildInfo struct
|
| 50 |
+
pkg runtime/debug, type BuildInfo struct, Deps []*Module
|
| 51 |
+
pkg runtime/debug, type BuildInfo struct, Main Module
|
| 52 |
+
pkg runtime/debug, type BuildInfo struct, Path string
|
| 53 |
+
pkg runtime/debug, type Module struct
|
| 54 |
+
pkg runtime/debug, type Module struct, Path string
|
| 55 |
+
pkg runtime/debug, type Module struct, Replace *Module
|
| 56 |
+
pkg runtime/debug, type Module struct, Sum string
|
| 57 |
+
pkg runtime/debug, type Module struct, Version string
|
| 58 |
+
pkg strings, func ReplaceAll(string, string, string) string
|
| 59 |
+
pkg strings, method (*Builder) Cap() int
|
| 60 |
+
pkg syscall (freebsd-386), const S_IRWXG = 56
|
| 61 |
+
pkg syscall (freebsd-386), const S_IRWXG ideal-int
|
| 62 |
+
pkg syscall (freebsd-386), const S_IRWXO = 7
|
| 63 |
+
pkg syscall (freebsd-386), const S_IRWXO ideal-int
|
| 64 |
+
pkg syscall (freebsd-386), func Fstatat(int, string, *Stat_t, int) error
|
| 65 |
+
pkg syscall (freebsd-386), func Mknod(string, uint32, uint64) error
|
| 66 |
+
pkg syscall (freebsd-386), type Dirent struct, Fileno uint64
|
| 67 |
+
pkg syscall (freebsd-386), type Dirent struct, Namlen uint16
|
| 68 |
+
pkg syscall (freebsd-386), type Dirent struct, Off int64
|
| 69 |
+
pkg syscall (freebsd-386), type Dirent struct, Pad0 uint8
|
| 70 |
+
pkg syscall (freebsd-386), type Dirent struct, Pad1 uint16
|
| 71 |
+
pkg syscall (freebsd-386), type Stat_t struct, Atim_ext int32
|
| 72 |
+
pkg syscall (freebsd-386), type Stat_t struct, Blksize int32
|
| 73 |
+
pkg syscall (freebsd-386), type Stat_t struct, Btim_ext int32
|
| 74 |
+
pkg syscall (freebsd-386), type Stat_t struct, Ctim_ext int32
|
| 75 |
+
pkg syscall (freebsd-386), type Stat_t struct, Dev uint64
|
| 76 |
+
pkg syscall (freebsd-386), type Stat_t struct, Gen uint64
|
| 77 |
+
pkg syscall (freebsd-386), type Stat_t struct, Ino uint64
|
| 78 |
+
pkg syscall (freebsd-386), type Stat_t struct, Mtim_ext int32
|
| 79 |
+
pkg syscall (freebsd-386), type Stat_t struct, Nlink uint64
|
| 80 |
+
pkg syscall (freebsd-386), type Stat_t struct, Padding0 int16
|
| 81 |
+
pkg syscall (freebsd-386), type Stat_t struct, Padding1 int32
|
| 82 |
+
pkg syscall (freebsd-386), type Stat_t struct, Rdev uint64
|
| 83 |
+
pkg syscall (freebsd-386), type Stat_t struct, Spare [10]uint64
|
| 84 |
+
pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [1024]int8
|
| 85 |
+
pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [1024]int8
|
| 86 |
+
pkg syscall (freebsd-386-cgo), const S_IRWXG = 56
|
| 87 |
+
pkg syscall (freebsd-386-cgo), const S_IRWXG ideal-int
|
| 88 |
+
pkg syscall (freebsd-386-cgo), const S_IRWXO = 7
|
| 89 |
+
pkg syscall (freebsd-386-cgo), const S_IRWXO ideal-int
|
| 90 |
+
pkg syscall (freebsd-386-cgo), func Fstatat(int, string, *Stat_t, int) error
|
| 91 |
+
pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, uint64) error
|
| 92 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint64
|
| 93 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint16
|
| 94 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Off int64
|
| 95 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Pad0 uint8
|
| 96 |
+
pkg syscall (freebsd-386-cgo), type Dirent struct, Pad1 uint16
|
| 97 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Atim_ext int32
|
| 98 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize int32
|
| 99 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Btim_ext int32
|
| 100 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Ctim_ext int32
|
| 101 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint64
|
| 102 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint64
|
| 103 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint64
|
| 104 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Mtim_ext int32
|
| 105 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint64
|
| 106 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Padding0 int16
|
| 107 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Padding1 int32
|
| 108 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint64
|
| 109 |
+
pkg syscall (freebsd-386-cgo), type Stat_t struct, Spare [10]uint64
|
| 110 |
+
pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [1024]int8
|
| 111 |
+
pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [1024]int8
|
| 112 |
+
pkg syscall (freebsd-amd64), const S_IRWXG = 56
|
| 113 |
+
pkg syscall (freebsd-amd64), const S_IRWXG ideal-int
|
| 114 |
+
pkg syscall (freebsd-amd64), const S_IRWXO = 7
|
| 115 |
+
pkg syscall (freebsd-amd64), const S_IRWXO ideal-int
|
| 116 |
+
pkg syscall (freebsd-amd64), func Fstatat(int, string, *Stat_t, int) error
|
| 117 |
+
pkg syscall (freebsd-amd64), func Mknod(string, uint32, uint64) error
|
| 118 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Fileno uint64
|
| 119 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Namlen uint16
|
| 120 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Off int64
|
| 121 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Pad0 uint8
|
| 122 |
+
pkg syscall (freebsd-amd64), type Dirent struct, Pad1 uint16
|
| 123 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Blksize int32
|
| 124 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint64
|
| 125 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint64
|
| 126 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Ino uint64
|
| 127 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Nlink uint64
|
| 128 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Padding0 int16
|
| 129 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Padding1 int32
|
| 130 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Rdev uint64
|
| 131 |
+
pkg syscall (freebsd-amd64), type Stat_t struct, Spare [10]uint64
|
| 132 |
+
pkg syscall (freebsd-amd64), type Statfs_t struct, Mntfromname [1024]int8
|
| 133 |
+
pkg syscall (freebsd-amd64), type Statfs_t struct, Mntonname [1024]int8
|
| 134 |
+
pkg syscall (freebsd-amd64-cgo), const S_IRWXG = 56
|
| 135 |
+
pkg syscall (freebsd-amd64-cgo), const S_IRWXG ideal-int
|
| 136 |
+
pkg syscall (freebsd-amd64-cgo), const S_IRWXO = 7
|
| 137 |
+
pkg syscall (freebsd-amd64-cgo), const S_IRWXO ideal-int
|
| 138 |
+
pkg syscall (freebsd-amd64-cgo), func Fstatat(int, string, *Stat_t, int) error
|
| 139 |
+
pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, uint64) error
|
| 140 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint64
|
| 141 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint16
|
| 142 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Off int64
|
| 143 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Pad0 uint8
|
| 144 |
+
pkg syscall (freebsd-amd64-cgo), type Dirent struct, Pad1 uint16
|
| 145 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize int32
|
| 146 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint64
|
| 147 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint64
|
| 148 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint64
|
| 149 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint64
|
| 150 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Padding0 int16
|
| 151 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Padding1 int32
|
| 152 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint64
|
| 153 |
+
pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Spare [10]uint64
|
| 154 |
+
pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [1024]int8
|
| 155 |
+
pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [1024]int8
|
| 156 |
+
pkg syscall (freebsd-arm), const S_IRWXG = 56
|
| 157 |
+
pkg syscall (freebsd-arm), const S_IRWXG ideal-int
|
| 158 |
+
pkg syscall (freebsd-arm), const S_IRWXO = 7
|
| 159 |
+
pkg syscall (freebsd-arm), const S_IRWXO ideal-int
|
| 160 |
+
pkg syscall (freebsd-arm), func Fstatat(int, string, *Stat_t, int) error
|
| 161 |
+
pkg syscall (freebsd-arm), func Mknod(string, uint32, uint64) error
|
| 162 |
+
pkg syscall (freebsd-arm), type Dirent struct, Fileno uint64
|
| 163 |
+
pkg syscall (freebsd-arm), type Dirent struct, Namlen uint16
|
| 164 |
+
pkg syscall (freebsd-arm), type Dirent struct, Off int64
|
| 165 |
+
pkg syscall (freebsd-arm), type Dirent struct, Pad0 uint8
|
| 166 |
+
pkg syscall (freebsd-arm), type Dirent struct, Pad1 uint16
|
| 167 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Blksize int32
|
| 168 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Dev uint64
|
| 169 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Gen uint64
|
| 170 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Ino uint64
|
| 171 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint64
|
| 172 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Padding0 int16
|
| 173 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Padding1 int32
|
| 174 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint64
|
| 175 |
+
pkg syscall (freebsd-arm), type Stat_t struct, Spare [10]uint64
|
| 176 |
+
pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [1024]int8
|
| 177 |
+
pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [1024]int8
|
| 178 |
+
pkg syscall (freebsd-arm-cgo), const S_IRWXG = 56
|
| 179 |
+
pkg syscall (freebsd-arm-cgo), const S_IRWXG ideal-int
|
| 180 |
+
pkg syscall (freebsd-arm-cgo), const S_IRWXO = 7
|
| 181 |
+
pkg syscall (freebsd-arm-cgo), const S_IRWXO ideal-int
|
| 182 |
+
pkg syscall (freebsd-arm-cgo), func Fstatat(int, string, *Stat_t, int) error
|
| 183 |
+
pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, uint64) error
|
| 184 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint64
|
| 185 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint16
|
| 186 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Off int64
|
| 187 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Pad0 uint8
|
| 188 |
+
pkg syscall (freebsd-arm-cgo), type Dirent struct, Pad1 uint16
|
| 189 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize int32
|
| 190 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint64
|
| 191 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint64
|
| 192 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint64
|
| 193 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint64
|
| 194 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Padding0 int16
|
| 195 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Padding1 int32
|
| 196 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint64
|
| 197 |
+
pkg syscall (freebsd-arm-cgo), type Stat_t struct, Spare [10]uint64
|
| 198 |
+
pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [1024]int8
|
| 199 |
+
pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [1024]int8
|
| 200 |
+
pkg syscall (openbsd-386), const S_IRWXG = 56
|
| 201 |
+
pkg syscall (openbsd-386), const S_IRWXG ideal-int
|
| 202 |
+
pkg syscall (openbsd-386), const S_IRWXO = 7
|
| 203 |
+
pkg syscall (openbsd-386), const S_IRWXO ideal-int
|
| 204 |
+
pkg syscall (openbsd-386-cgo), const S_IRWXG = 56
|
| 205 |
+
pkg syscall (openbsd-386-cgo), const S_IRWXG ideal-int
|
| 206 |
+
pkg syscall (openbsd-386-cgo), const S_IRWXO = 7
|
| 207 |
+
pkg syscall (openbsd-386-cgo), const S_IRWXO ideal-int
|
| 208 |
+
pkg syscall (openbsd-amd64), const S_IRWXG = 56
|
| 209 |
+
pkg syscall (openbsd-amd64), const S_IRWXG ideal-int
|
| 210 |
+
pkg syscall (openbsd-amd64), const S_IRWXO = 7
|
| 211 |
+
pkg syscall (openbsd-amd64), const S_IRWXO ideal-int
|
| 212 |
+
pkg syscall (openbsd-amd64-cgo), const S_IRWXG = 56
|
| 213 |
+
pkg syscall (openbsd-amd64-cgo), const S_IRWXG ideal-int
|
| 214 |
+
pkg syscall (openbsd-amd64-cgo), const S_IRWXO = 7
|
| 215 |
+
pkg syscall (openbsd-amd64-cgo), const S_IRWXO ideal-int
|
| 216 |
+
pkg syscall (windows-386), const UNIX_PATH_MAX = 108
|
| 217 |
+
pkg syscall (windows-386), const UNIX_PATH_MAX ideal-int
|
| 218 |
+
pkg syscall (windows-386), func Syscall18(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
|
| 219 |
+
pkg syscall (windows-386), type RawSockaddrAny struct, Pad [100]int8
|
| 220 |
+
pkg syscall (windows-386), type RawSockaddrUnix struct, Family uint16
|
| 221 |
+
pkg syscall (windows-386), type RawSockaddrUnix struct, Path [108]int8
|
| 222 |
+
pkg syscall (windows-amd64), const UNIX_PATH_MAX = 108
|
| 223 |
+
pkg syscall (windows-amd64), const UNIX_PATH_MAX ideal-int
|
| 224 |
+
pkg syscall (windows-amd64), func Syscall18(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
|
| 225 |
+
pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [100]int8
|
| 226 |
+
pkg syscall (windows-amd64), type RawSockaddrUnix struct, Family uint16
|
| 227 |
+
pkg syscall (windows-amd64), type RawSockaddrUnix struct, Path [108]int8
|
| 228 |
+
pkg syscall, type RawSockaddrUnix struct
|
api/go1.13.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.14.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.15.txt
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bufio, var ErrBadReadCount error
|
| 2 |
+
pkg crypto, method (Hash) String() string
|
| 3 |
+
pkg crypto/ecdsa, func SignASN1(io.Reader, *PrivateKey, []uint8) ([]uint8, error)
|
| 4 |
+
pkg crypto/ecdsa, func VerifyASN1(*PublicKey, []uint8, []uint8) bool
|
| 5 |
+
pkg crypto/ecdsa, method (*PrivateKey) Equal(crypto.PrivateKey) bool
|
| 6 |
+
pkg crypto/ecdsa, method (*PublicKey) Equal(crypto.PublicKey) bool
|
| 7 |
+
pkg crypto/ed25519, method (PrivateKey) Equal(crypto.PrivateKey) bool
|
| 8 |
+
pkg crypto/ed25519, method (PublicKey) Equal(crypto.PublicKey) bool
|
| 9 |
+
pkg crypto/elliptic, func MarshalCompressed(Curve, *big.Int, *big.Int) []uint8
|
| 10 |
+
pkg crypto/elliptic, func UnmarshalCompressed(Curve, []uint8) (*big.Int, *big.Int)
|
| 11 |
+
pkg crypto/rsa, method (*PrivateKey) Equal(crypto.PrivateKey) bool
|
| 12 |
+
pkg crypto/rsa, method (*PublicKey) Equal(crypto.PublicKey) bool
|
| 13 |
+
pkg crypto/tls, method (*Dialer) Dial(string, string) (net.Conn, error)
|
| 14 |
+
pkg crypto/tls, method (*Dialer) DialContext(context.Context, string, string) (net.Conn, error)
|
| 15 |
+
pkg crypto/tls, method (ClientAuthType) String() string
|
| 16 |
+
pkg crypto/tls, method (CurveID) String() string
|
| 17 |
+
pkg crypto/tls, method (SignatureScheme) String() string
|
| 18 |
+
pkg crypto/tls, type Config struct, VerifyConnection func(ConnectionState) error
|
| 19 |
+
pkg crypto/tls, type Dialer struct
|
| 20 |
+
pkg crypto/tls, type Dialer struct, Config *Config
|
| 21 |
+
pkg crypto/tls, type Dialer struct, NetDialer *net.Dialer
|
| 22 |
+
pkg crypto/x509, func CreateRevocationList(io.Reader, *RevocationList, *Certificate, crypto.Signer) ([]uint8, error)
|
| 23 |
+
pkg crypto/x509, type RevocationList struct
|
| 24 |
+
pkg crypto/x509, type RevocationList struct, ExtraExtensions []pkix.Extension
|
| 25 |
+
pkg crypto/x509, type RevocationList struct, NextUpdate time.Time
|
| 26 |
+
pkg crypto/x509, type RevocationList struct, Number *big.Int
|
| 27 |
+
pkg crypto/x509, type RevocationList struct, RevokedCertificates []pkix.RevokedCertificate
|
| 28 |
+
pkg crypto/x509, type RevocationList struct, SignatureAlgorithm SignatureAlgorithm
|
| 29 |
+
pkg crypto/x509, type RevocationList struct, ThisUpdate time.Time
|
| 30 |
+
pkg database/sql, method (*DB) SetConnMaxIdleTime(time.Duration)
|
| 31 |
+
pkg database/sql, method (*Row) Err() error
|
| 32 |
+
pkg database/sql, type DBStats struct, MaxIdleTimeClosed int64
|
| 33 |
+
pkg database/sql/driver, type Validator interface { IsValid }
|
| 34 |
+
pkg database/sql/driver, type Validator interface, IsValid() bool
|
| 35 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_APPCONTAINER = 4096
|
| 36 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_APPCONTAINER ideal-int
|
| 37 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE = 64
|
| 38 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE ideal-int
|
| 39 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY = 128
|
| 40 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY ideal-int
|
| 41 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_GUARD_CF = 16384
|
| 42 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_GUARD_CF ideal-int
|
| 43 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA = 32
|
| 44 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA ideal-int
|
| 45 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_BIND = 2048
|
| 46 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_BIND ideal-int
|
| 47 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION = 512
|
| 48 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION ideal-int
|
| 49 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_SEH = 1024
|
| 50 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_SEH ideal-int
|
| 51 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT = 256
|
| 52 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT ideal-int
|
| 53 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 32768
|
| 54 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE ideal-int
|
| 55 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 8192
|
| 56 |
+
pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER ideal-int
|
| 57 |
+
pkg debug/pe, const IMAGE_FILE_32BIT_MACHINE = 256
|
| 58 |
+
pkg debug/pe, const IMAGE_FILE_32BIT_MACHINE ideal-int
|
| 59 |
+
pkg debug/pe, const IMAGE_FILE_AGGRESIVE_WS_TRIM = 16
|
| 60 |
+
pkg debug/pe, const IMAGE_FILE_AGGRESIVE_WS_TRIM ideal-int
|
| 61 |
+
pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_HI = 32768
|
| 62 |
+
pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_HI ideal-int
|
| 63 |
+
pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_LO = 128
|
| 64 |
+
pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_LO ideal-int
|
| 65 |
+
pkg debug/pe, const IMAGE_FILE_DEBUG_STRIPPED = 512
|
| 66 |
+
pkg debug/pe, const IMAGE_FILE_DEBUG_STRIPPED ideal-int
|
| 67 |
+
pkg debug/pe, const IMAGE_FILE_DLL = 8192
|
| 68 |
+
pkg debug/pe, const IMAGE_FILE_DLL ideal-int
|
| 69 |
+
pkg debug/pe, const IMAGE_FILE_EXECUTABLE_IMAGE = 2
|
| 70 |
+
pkg debug/pe, const IMAGE_FILE_EXECUTABLE_IMAGE ideal-int
|
| 71 |
+
pkg debug/pe, const IMAGE_FILE_LARGE_ADDRESS_AWARE = 32
|
| 72 |
+
pkg debug/pe, const IMAGE_FILE_LARGE_ADDRESS_AWARE ideal-int
|
| 73 |
+
pkg debug/pe, const IMAGE_FILE_LINE_NUMS_STRIPPED = 4
|
| 74 |
+
pkg debug/pe, const IMAGE_FILE_LINE_NUMS_STRIPPED ideal-int
|
| 75 |
+
pkg debug/pe, const IMAGE_FILE_LOCAL_SYMS_STRIPPED = 8
|
| 76 |
+
pkg debug/pe, const IMAGE_FILE_LOCAL_SYMS_STRIPPED ideal-int
|
| 77 |
+
pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP = 2048
|
| 78 |
+
pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP ideal-int
|
| 79 |
+
pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED = 1
|
| 80 |
+
pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED ideal-int
|
| 81 |
+
pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 1024
|
| 82 |
+
pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP ideal-int
|
| 83 |
+
pkg debug/pe, const IMAGE_FILE_SYSTEM = 4096
|
| 84 |
+
pkg debug/pe, const IMAGE_FILE_SYSTEM ideal-int
|
| 85 |
+
pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY = 16384
|
| 86 |
+
pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY ideal-int
|
| 87 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_APPLICATION = 10
|
| 88 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_APPLICATION ideal-int
|
| 89 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11
|
| 90 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER ideal-int
|
| 91 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM = 13
|
| 92 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM ideal-int
|
| 93 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER = 12
|
| 94 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER ideal-int
|
| 95 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE = 1
|
| 96 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE ideal-int
|
| 97 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE_WINDOWS = 8
|
| 98 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE_WINDOWS ideal-int
|
| 99 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_OS2_CUI = 5
|
| 100 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_OS2_CUI ideal-int
|
| 101 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_POSIX_CUI = 7
|
| 102 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_POSIX_CUI ideal-int
|
| 103 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_UNKNOWN = 0
|
| 104 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_UNKNOWN ideal-int
|
| 105 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION = 16
|
| 106 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION ideal-int
|
| 107 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI = 9
|
| 108 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI ideal-int
|
| 109 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CUI = 3
|
| 110 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CUI ideal-int
|
| 111 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_GUI = 2
|
| 112 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_GUI ideal-int
|
| 113 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_XBOX = 14
|
| 114 |
+
pkg debug/pe, const IMAGE_SUBSYSTEM_XBOX ideal-int
|
| 115 |
+
pkg math/big, method (*Int) FillBytes([]uint8) []uint8
|
| 116 |
+
pkg net, method (*Resolver) LookupIP(context.Context, string, string) ([]IP, error)
|
| 117 |
+
pkg net/url, method (*URL) EscapedFragment() string
|
| 118 |
+
pkg net/url, method (*URL) Redacted() string
|
| 119 |
+
pkg net/url, type URL struct, RawFragment string
|
| 120 |
+
pkg os, method (*File) ReadFrom(io.Reader) (int64, error)
|
| 121 |
+
pkg os, var ErrDeadlineExceeded error
|
| 122 |
+
pkg regexp, method (*Regexp) SubexpIndex(string) int
|
| 123 |
+
pkg strconv, func FormatComplex(complex128, uint8, int, int) string
|
| 124 |
+
pkg strconv, func ParseComplex(string, int) (complex128, error)
|
| 125 |
+
pkg sync, method (*Map) LoadAndDelete(interface{}) (interface{}, bool)
|
| 126 |
+
pkg testing, method (*B) TempDir() string
|
| 127 |
+
pkg testing, method (*T) Deadline() (time.Time, bool)
|
| 128 |
+
pkg testing, method (*T) TempDir() string
|
| 129 |
+
pkg testing, type TB interface, TempDir() string
|
| 130 |
+
pkg time, method (*Ticker) Reset(Duration)
|
api/go1.16.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.17.txt
ADDED
|
@@ -0,0 +1,303 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg archive/zip, method (*File) OpenRaw() (io.Reader, error)
|
| 2 |
+
pkg archive/zip, method (*Writer) Copy(*File) error
|
| 3 |
+
pkg archive/zip, method (*Writer) CreateRaw(*FileHeader) (io.Writer, error)
|
| 4 |
+
pkg compress/lzw, method (*Reader) Close() error
|
| 5 |
+
pkg compress/lzw, method (*Reader) Read([]uint8) (int, error)
|
| 6 |
+
pkg compress/lzw, method (*Reader) Reset(io.Reader, Order, int)
|
| 7 |
+
pkg compress/lzw, method (*Writer) Close() error
|
| 8 |
+
pkg compress/lzw, method (*Writer) Reset(io.Writer, Order, int)
|
| 9 |
+
pkg compress/lzw, method (*Writer) Write([]uint8) (int, error)
|
| 10 |
+
pkg compress/lzw, type Reader struct
|
| 11 |
+
pkg compress/lzw, type Writer struct
|
| 12 |
+
pkg crypto/tls, method (*CertificateRequestInfo) Context() context.Context
|
| 13 |
+
pkg crypto/tls, method (*ClientHelloInfo) Context() context.Context
|
| 14 |
+
pkg crypto/tls, method (*Conn) HandshakeContext(context.Context) error
|
| 15 |
+
pkg database/sql, method (*NullByte) Scan(interface{}) error
|
| 16 |
+
pkg database/sql, method (*NullInt16) Scan(interface{}) error
|
| 17 |
+
pkg database/sql, method (NullByte) Value() (driver.Value, error)
|
| 18 |
+
pkg database/sql, method (NullInt16) Value() (driver.Value, error)
|
| 19 |
+
pkg database/sql, type NullByte struct
|
| 20 |
+
pkg database/sql, type NullByte struct, Byte uint8
|
| 21 |
+
pkg database/sql, type NullByte struct, Valid bool
|
| 22 |
+
pkg database/sql, type NullInt16 struct
|
| 23 |
+
pkg database/sql, type NullInt16 struct, Int16 int16
|
| 24 |
+
pkg database/sql, type NullInt16 struct, Valid bool
|
| 25 |
+
pkg debug/elf, const SHT_MIPS_ABIFLAGS = 1879048234
|
| 26 |
+
pkg debug/elf, const SHT_MIPS_ABIFLAGS SectionType
|
| 27 |
+
pkg encoding/csv, method (*Reader) FieldPos(int) (int, int)
|
| 28 |
+
pkg go/build, type Context struct, ToolTags []string
|
| 29 |
+
pkg go/parser, const SkipObjectResolution = 64
|
| 30 |
+
pkg go/parser, const SkipObjectResolution Mode
|
| 31 |
+
pkg image, method (*Alpha) RGBA64At(int, int) color.RGBA64
|
| 32 |
+
pkg image, method (*Alpha) SetRGBA64(int, int, color.RGBA64)
|
| 33 |
+
pkg image, method (*Alpha16) RGBA64At(int, int) color.RGBA64
|
| 34 |
+
pkg image, method (*Alpha16) SetRGBA64(int, int, color.RGBA64)
|
| 35 |
+
pkg image, method (*CMYK) RGBA64At(int, int) color.RGBA64
|
| 36 |
+
pkg image, method (*CMYK) SetRGBA64(int, int, color.RGBA64)
|
| 37 |
+
pkg image, method (*Gray) RGBA64At(int, int) color.RGBA64
|
| 38 |
+
pkg image, method (*Gray) SetRGBA64(int, int, color.RGBA64)
|
| 39 |
+
pkg image, method (*Gray16) RGBA64At(int, int) color.RGBA64
|
| 40 |
+
pkg image, method (*Gray16) SetRGBA64(int, int, color.RGBA64)
|
| 41 |
+
pkg image, method (*NRGBA) RGBA64At(int, int) color.RGBA64
|
| 42 |
+
pkg image, method (*NRGBA) SetRGBA64(int, int, color.RGBA64)
|
| 43 |
+
pkg image, method (*NRGBA64) RGBA64At(int, int) color.RGBA64
|
| 44 |
+
pkg image, method (*NRGBA64) SetRGBA64(int, int, color.RGBA64)
|
| 45 |
+
pkg image, method (*NYCbCrA) RGBA64At(int, int) color.RGBA64
|
| 46 |
+
pkg image, method (*Paletted) RGBA64At(int, int) color.RGBA64
|
| 47 |
+
pkg image, method (*Paletted) SetRGBA64(int, int, color.RGBA64)
|
| 48 |
+
pkg image, method (*RGBA) RGBA64At(int, int) color.RGBA64
|
| 49 |
+
pkg image, method (*RGBA) SetRGBA64(int, int, color.RGBA64)
|
| 50 |
+
pkg image, method (*Uniform) RGBA64At(int, int) color.RGBA64
|
| 51 |
+
pkg image, method (*YCbCr) RGBA64At(int, int) color.RGBA64
|
| 52 |
+
pkg image, method (Rectangle) RGBA64At(int, int) color.RGBA64
|
| 53 |
+
pkg image, type RGBA64Image interface { At, Bounds, ColorModel, RGBA64At }
|
| 54 |
+
pkg image, type RGBA64Image interface, At(int, int) color.Color
|
| 55 |
+
pkg image, type RGBA64Image interface, Bounds() Rectangle
|
| 56 |
+
pkg image, type RGBA64Image interface, ColorModel() color.Model
|
| 57 |
+
pkg image, type RGBA64Image interface, RGBA64At(int, int) color.RGBA64
|
| 58 |
+
pkg image/draw, type RGBA64Image interface { At, Bounds, ColorModel, RGBA64At, Set, SetRGBA64 }
|
| 59 |
+
pkg image/draw, type RGBA64Image interface, At(int, int) color.Color
|
| 60 |
+
pkg image/draw, type RGBA64Image interface, Bounds() image.Rectangle
|
| 61 |
+
pkg image/draw, type RGBA64Image interface, ColorModel() color.Model
|
| 62 |
+
pkg image/draw, type RGBA64Image interface, RGBA64At(int, int) color.RGBA64
|
| 63 |
+
pkg image/draw, type RGBA64Image interface, Set(int, int, color.Color)
|
| 64 |
+
pkg image/draw, type RGBA64Image interface, SetRGBA64(int, int, color.RGBA64)
|
| 65 |
+
pkg io/fs, func FileInfoToDirEntry(FileInfo) DirEntry
|
| 66 |
+
pkg math (darwin-amd64), const MaxInt = 9223372036854775807
|
| 67 |
+
pkg math (darwin-amd64), const MaxUint = 18446744073709551615
|
| 68 |
+
pkg math (darwin-amd64), const MinInt = -9223372036854775808
|
| 69 |
+
pkg math (darwin-amd64-cgo), const MaxInt = 9223372036854775807
|
| 70 |
+
pkg math (darwin-amd64-cgo), const MaxUint = 18446744073709551615
|
| 71 |
+
pkg math (darwin-amd64-cgo), const MinInt = -9223372036854775808
|
| 72 |
+
pkg math (darwin-arm64), const MaxInt = 9223372036854775807
|
| 73 |
+
pkg math (darwin-arm64), const MaxUint = 18446744073709551615
|
| 74 |
+
pkg math (darwin-arm64), const MinInt = -9223372036854775808
|
| 75 |
+
pkg math (darwin-arm64-cgo), const MaxInt = 9223372036854775807
|
| 76 |
+
pkg math (darwin-arm64-cgo), const MaxUint = 18446744073709551615
|
| 77 |
+
pkg math (darwin-arm64-cgo), const MinInt = -9223372036854775808
|
| 78 |
+
pkg math (freebsd-386), const MaxInt = 2147483647
|
| 79 |
+
pkg math (freebsd-386), const MaxUint = 4294967295
|
| 80 |
+
pkg math (freebsd-386), const MinInt = -2147483648
|
| 81 |
+
pkg math (freebsd-386-cgo), const MaxInt = 2147483647
|
| 82 |
+
pkg math (freebsd-386-cgo), const MaxUint = 4294967295
|
| 83 |
+
pkg math (freebsd-386-cgo), const MinInt = -2147483648
|
| 84 |
+
pkg math (freebsd-amd64), const MaxInt = 9223372036854775807
|
| 85 |
+
pkg math (freebsd-amd64), const MaxUint = 18446744073709551615
|
| 86 |
+
pkg math (freebsd-amd64), const MinInt = -9223372036854775808
|
| 87 |
+
pkg math (freebsd-amd64-cgo), const MaxInt = 9223372036854775807
|
| 88 |
+
pkg math (freebsd-amd64-cgo), const MaxUint = 18446744073709551615
|
| 89 |
+
pkg math (freebsd-amd64-cgo), const MinInt = -9223372036854775808
|
| 90 |
+
pkg math (freebsd-arm), const MaxInt = 2147483647
|
| 91 |
+
pkg math (freebsd-arm), const MaxUint = 4294967295
|
| 92 |
+
pkg math (freebsd-arm), const MinInt = -2147483648
|
| 93 |
+
pkg math (freebsd-arm-cgo), const MaxInt = 2147483647
|
| 94 |
+
pkg math (freebsd-arm-cgo), const MaxUint = 4294967295
|
| 95 |
+
pkg math (freebsd-arm-cgo), const MinInt = -2147483648
|
| 96 |
+
pkg math (freebsd-arm64), const MaxInt = 9223372036854775807
|
| 97 |
+
pkg math (freebsd-arm64), const MaxUint = 18446744073709551615
|
| 98 |
+
pkg math (freebsd-arm64), const MinInt = -9223372036854775808
|
| 99 |
+
pkg math (freebsd-arm64-cgo), const MaxInt = 9223372036854775807
|
| 100 |
+
pkg math (freebsd-arm64-cgo), const MaxUint = 18446744073709551615
|
| 101 |
+
pkg math (freebsd-arm64-cgo), const MinInt = -9223372036854775808
|
| 102 |
+
pkg math (linux-386), const MaxInt = 2147483647
|
| 103 |
+
pkg math (linux-386), const MaxUint = 4294967295
|
| 104 |
+
pkg math (linux-386), const MinInt = -2147483648
|
| 105 |
+
pkg math (linux-386-cgo), const MaxInt = 2147483647
|
| 106 |
+
pkg math (linux-386-cgo), const MaxUint = 4294967295
|
| 107 |
+
pkg math (linux-386-cgo), const MinInt = -2147483648
|
| 108 |
+
pkg math (linux-amd64), const MaxInt = 9223372036854775807
|
| 109 |
+
pkg math (linux-amd64), const MaxUint = 18446744073709551615
|
| 110 |
+
pkg math (linux-amd64), const MinInt = -9223372036854775808
|
| 111 |
+
pkg math (linux-amd64-cgo), const MaxInt = 9223372036854775807
|
| 112 |
+
pkg math (linux-amd64-cgo), const MaxUint = 18446744073709551615
|
| 113 |
+
pkg math (linux-amd64-cgo), const MinInt = -9223372036854775808
|
| 114 |
+
pkg math (linux-arm), const MaxInt = 2147483647
|
| 115 |
+
pkg math (linux-arm), const MaxUint = 4294967295
|
| 116 |
+
pkg math (linux-arm), const MinInt = -2147483648
|
| 117 |
+
pkg math (linux-arm-cgo), const MaxInt = 2147483647
|
| 118 |
+
pkg math (linux-arm-cgo), const MaxUint = 4294967295
|
| 119 |
+
pkg math (linux-arm-cgo), const MinInt = -2147483648
|
| 120 |
+
pkg math (netbsd-386), const MaxInt = 2147483647
|
| 121 |
+
pkg math (netbsd-386), const MaxUint = 4294967295
|
| 122 |
+
pkg math (netbsd-386), const MinInt = -2147483648
|
| 123 |
+
pkg math (netbsd-386-cgo), const MaxInt = 2147483647
|
| 124 |
+
pkg math (netbsd-386-cgo), const MaxUint = 4294967295
|
| 125 |
+
pkg math (netbsd-386-cgo), const MinInt = -2147483648
|
| 126 |
+
pkg math (netbsd-amd64), const MaxInt = 9223372036854775807
|
| 127 |
+
pkg math (netbsd-amd64), const MaxUint = 18446744073709551615
|
| 128 |
+
pkg math (netbsd-amd64), const MinInt = -9223372036854775808
|
| 129 |
+
pkg math (netbsd-amd64-cgo), const MaxInt = 9223372036854775807
|
| 130 |
+
pkg math (netbsd-amd64-cgo), const MaxUint = 18446744073709551615
|
| 131 |
+
pkg math (netbsd-amd64-cgo), const MinInt = -9223372036854775808
|
| 132 |
+
pkg math (netbsd-arm), const MaxInt = 2147483647
|
| 133 |
+
pkg math (netbsd-arm), const MaxUint = 4294967295
|
| 134 |
+
pkg math (netbsd-arm), const MinInt = -2147483648
|
| 135 |
+
pkg math (netbsd-arm-cgo), const MaxInt = 2147483647
|
| 136 |
+
pkg math (netbsd-arm-cgo), const MaxUint = 4294967295
|
| 137 |
+
pkg math (netbsd-arm-cgo), const MinInt = -2147483648
|
| 138 |
+
pkg math (netbsd-arm64), const MaxInt = 9223372036854775807
|
| 139 |
+
pkg math (netbsd-arm64), const MaxUint = 18446744073709551615
|
| 140 |
+
pkg math (netbsd-arm64), const MinInt = -9223372036854775808
|
| 141 |
+
pkg math (netbsd-arm64-cgo), const MaxInt = 9223372036854775807
|
| 142 |
+
pkg math (netbsd-arm64-cgo), const MaxUint = 18446744073709551615
|
| 143 |
+
pkg math (netbsd-arm64-cgo), const MinInt = -9223372036854775808
|
| 144 |
+
pkg math (openbsd-386), const MaxInt = 2147483647
|
| 145 |
+
pkg math (openbsd-386), const MaxUint = 4294967295
|
| 146 |
+
pkg math (openbsd-386), const MinInt = -2147483648
|
| 147 |
+
pkg math (openbsd-386-cgo), const MaxInt = 2147483647
|
| 148 |
+
pkg math (openbsd-386-cgo), const MaxUint = 4294967295
|
| 149 |
+
pkg math (openbsd-386-cgo), const MinInt = -2147483648
|
| 150 |
+
pkg math (openbsd-amd64), const MaxInt = 9223372036854775807
|
| 151 |
+
pkg math (openbsd-amd64), const MaxUint = 18446744073709551615
|
| 152 |
+
pkg math (openbsd-amd64), const MinInt = -9223372036854775808
|
| 153 |
+
pkg math (openbsd-amd64-cgo), const MaxInt = 9223372036854775807
|
| 154 |
+
pkg math (openbsd-amd64-cgo), const MaxUint = 18446744073709551615
|
| 155 |
+
pkg math (openbsd-amd64-cgo), const MinInt = -9223372036854775808
|
| 156 |
+
pkg math (windows-386), const MaxInt = 2147483647
|
| 157 |
+
pkg math (windows-386), const MaxUint = 4294967295
|
| 158 |
+
pkg math (windows-386), const MinInt = -2147483648
|
| 159 |
+
pkg math (windows-amd64), const MaxInt = 9223372036854775807
|
| 160 |
+
pkg math (windows-amd64), const MaxUint = 18446744073709551615
|
| 161 |
+
pkg math (windows-amd64), const MinInt = -9223372036854775808
|
| 162 |
+
pkg math, const MaxFloat64 = 1.79769e+308 // 179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368
|
| 163 |
+
pkg math, const MaxInt ideal-int
|
| 164 |
+
pkg math, const MaxUint ideal-int
|
| 165 |
+
pkg math, const MinInt ideal-int
|
| 166 |
+
pkg math, const SmallestNonzeroFloat32 = 1.4013e-45 // 1/713623846352979940529142984724747568191373312
|
| 167 |
+
pkg math, const SmallestNonzeroFloat64 = 4.94066e-324 // 1/202402253307310618352495346718917307049556649764142118356901358027430339567995346891960383701437124495187077864316811911389808737385793476867013399940738509921517424276566361364466907742093216341239767678472745068562007483424692698618103355649159556340810056512358769552333414615230502532186327508646006263307707741093494784
|
| 168 |
+
pkg net, method (*ParseError) Temporary() bool
|
| 169 |
+
pkg net, method (*ParseError) Timeout() bool
|
| 170 |
+
pkg net, method (IP) IsPrivate() bool
|
| 171 |
+
pkg net/http, func AllowQuerySemicolons(Handler) Handler
|
| 172 |
+
pkg net/url, method (Values) Has(string) bool
|
| 173 |
+
pkg reflect, func VisibleFields(Type) []StructField
|
| 174 |
+
pkg reflect, method (Method) IsExported() bool
|
| 175 |
+
pkg reflect, method (StructField) IsExported() bool
|
| 176 |
+
pkg reflect, method (Value) CanConvert(Type) bool
|
| 177 |
+
pkg reflect, method (Value) InterfaceData //deprecated
|
| 178 |
+
pkg runtime/cgo (darwin-amd64-cgo), func NewHandle(interface{}) Handle
|
| 179 |
+
pkg runtime/cgo (darwin-amd64-cgo), method (Handle) Delete()
|
| 180 |
+
pkg runtime/cgo (darwin-amd64-cgo), method (Handle) Value() interface{}
|
| 181 |
+
pkg runtime/cgo (darwin-amd64-cgo), type Handle uintptr
|
| 182 |
+
pkg runtime/cgo (darwin-arm64-cgo), func NewHandle(interface{}) Handle
|
| 183 |
+
pkg runtime/cgo (darwin-arm64-cgo), method (Handle) Delete()
|
| 184 |
+
pkg runtime/cgo (darwin-arm64-cgo), method (Handle) Value() interface{}
|
| 185 |
+
pkg runtime/cgo (darwin-arm64-cgo), type Handle uintptr
|
| 186 |
+
pkg runtime/cgo (freebsd-386-cgo), func NewHandle(interface{}) Handle
|
| 187 |
+
pkg runtime/cgo (freebsd-386-cgo), method (Handle) Delete()
|
| 188 |
+
pkg runtime/cgo (freebsd-386-cgo), method (Handle) Value() interface{}
|
| 189 |
+
pkg runtime/cgo (freebsd-386-cgo), type Handle uintptr
|
| 190 |
+
pkg runtime/cgo (freebsd-amd64-cgo), func NewHandle(interface{}) Handle
|
| 191 |
+
pkg runtime/cgo (freebsd-amd64-cgo), method (Handle) Delete()
|
| 192 |
+
pkg runtime/cgo (freebsd-amd64-cgo), method (Handle) Value() interface{}
|
| 193 |
+
pkg runtime/cgo (freebsd-amd64-cgo), type Handle uintptr
|
| 194 |
+
pkg runtime/cgo (freebsd-arm-cgo), func NewHandle(interface{}) Handle
|
| 195 |
+
pkg runtime/cgo (freebsd-arm-cgo), method (Handle) Delete()
|
| 196 |
+
pkg runtime/cgo (freebsd-arm-cgo), method (Handle) Value() interface{}
|
| 197 |
+
pkg runtime/cgo (freebsd-arm-cgo), type Handle uintptr
|
| 198 |
+
pkg runtime/cgo (freebsd-arm64-cgo), func NewHandle(interface{}) Handle
|
| 199 |
+
pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Delete()
|
| 200 |
+
pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Value() interface{}
|
| 201 |
+
pkg runtime/cgo (freebsd-arm64-cgo), type Handle uintptr
|
| 202 |
+
pkg runtime/cgo (linux-386-cgo), func NewHandle(interface{}) Handle
|
| 203 |
+
pkg runtime/cgo (linux-386-cgo), method (Handle) Delete()
|
| 204 |
+
pkg runtime/cgo (linux-386-cgo), method (Handle) Value() interface{}
|
| 205 |
+
pkg runtime/cgo (linux-386-cgo), type Handle uintptr
|
| 206 |
+
pkg runtime/cgo (linux-amd64-cgo), func NewHandle(interface{}) Handle
|
| 207 |
+
pkg runtime/cgo (linux-amd64-cgo), method (Handle) Delete()
|
| 208 |
+
pkg runtime/cgo (linux-amd64-cgo), method (Handle) Value() interface{}
|
| 209 |
+
pkg runtime/cgo (linux-amd64-cgo), type Handle uintptr
|
| 210 |
+
pkg runtime/cgo (linux-arm-cgo), func NewHandle(interface{}) Handle
|
| 211 |
+
pkg runtime/cgo (linux-arm-cgo), method (Handle) Delete()
|
| 212 |
+
pkg runtime/cgo (linux-arm-cgo), method (Handle) Value() interface{}
|
| 213 |
+
pkg runtime/cgo (linux-arm-cgo), type Handle uintptr
|
| 214 |
+
pkg runtime/cgo (netbsd-386-cgo), func NewHandle(interface{}) Handle
|
| 215 |
+
pkg runtime/cgo (netbsd-386-cgo), method (Handle) Delete()
|
| 216 |
+
pkg runtime/cgo (netbsd-386-cgo), method (Handle) Value() interface{}
|
| 217 |
+
pkg runtime/cgo (netbsd-386-cgo), type Handle uintptr
|
| 218 |
+
pkg runtime/cgo (netbsd-amd64-cgo), func NewHandle(interface{}) Handle
|
| 219 |
+
pkg runtime/cgo (netbsd-amd64-cgo), method (Handle) Delete()
|
| 220 |
+
pkg runtime/cgo (netbsd-amd64-cgo), method (Handle) Value() interface{}
|
| 221 |
+
pkg runtime/cgo (netbsd-amd64-cgo), type Handle uintptr
|
| 222 |
+
pkg runtime/cgo (netbsd-arm-cgo), func NewHandle(interface{}) Handle
|
| 223 |
+
pkg runtime/cgo (netbsd-arm-cgo), method (Handle) Delete()
|
| 224 |
+
pkg runtime/cgo (netbsd-arm-cgo), method (Handle) Value() interface{}
|
| 225 |
+
pkg runtime/cgo (netbsd-arm-cgo), type Handle uintptr
|
| 226 |
+
pkg runtime/cgo (netbsd-arm64-cgo), func NewHandle(interface{}) Handle
|
| 227 |
+
pkg runtime/cgo (netbsd-arm64-cgo), method (Handle) Delete()
|
| 228 |
+
pkg runtime/cgo (netbsd-arm64-cgo), method (Handle) Value() interface{}
|
| 229 |
+
pkg runtime/cgo (netbsd-arm64-cgo), type Handle uintptr
|
| 230 |
+
pkg runtime/cgo (openbsd-386-cgo), func NewHandle(interface{}) Handle
|
| 231 |
+
pkg runtime/cgo (openbsd-386-cgo), method (Handle) Delete()
|
| 232 |
+
pkg runtime/cgo (openbsd-386-cgo), method (Handle) Value() interface{}
|
| 233 |
+
pkg runtime/cgo (openbsd-386-cgo), type Handle uintptr
|
| 234 |
+
pkg runtime/cgo (openbsd-amd64-cgo), func NewHandle(interface{}) Handle
|
| 235 |
+
pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Delete()
|
| 236 |
+
pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Value() interface{}
|
| 237 |
+
pkg runtime/cgo (openbsd-amd64-cgo), type Handle uintptr
|
| 238 |
+
pkg strconv, func QuotedPrefix(string) (string, error)
|
| 239 |
+
pkg sync/atomic, method (*Value) CompareAndSwap(interface{}, interface{}) bool
|
| 240 |
+
pkg sync/atomic, method (*Value) Swap(interface{}) interface{}
|
| 241 |
+
pkg syscall (netbsd-386), const SYS_WAIT6 = 481
|
| 242 |
+
pkg syscall (netbsd-386), const SYS_WAIT6 ideal-int
|
| 243 |
+
pkg syscall (netbsd-386), const WEXITED = 32
|
| 244 |
+
pkg syscall (netbsd-386), const WEXITED ideal-int
|
| 245 |
+
pkg syscall (netbsd-386-cgo), const SYS_WAIT6 = 481
|
| 246 |
+
pkg syscall (netbsd-386-cgo), const SYS_WAIT6 ideal-int
|
| 247 |
+
pkg syscall (netbsd-386-cgo), const WEXITED = 32
|
| 248 |
+
pkg syscall (netbsd-386-cgo), const WEXITED ideal-int
|
| 249 |
+
pkg syscall (netbsd-amd64), const SYS_WAIT6 = 481
|
| 250 |
+
pkg syscall (netbsd-amd64), const SYS_WAIT6 ideal-int
|
| 251 |
+
pkg syscall (netbsd-amd64), const WEXITED = 32
|
| 252 |
+
pkg syscall (netbsd-amd64), const WEXITED ideal-int
|
| 253 |
+
pkg syscall (netbsd-amd64-cgo), const SYS_WAIT6 = 481
|
| 254 |
+
pkg syscall (netbsd-amd64-cgo), const SYS_WAIT6 ideal-int
|
| 255 |
+
pkg syscall (netbsd-amd64-cgo), const WEXITED = 32
|
| 256 |
+
pkg syscall (netbsd-amd64-cgo), const WEXITED ideal-int
|
| 257 |
+
pkg syscall (netbsd-arm), const SYS_WAIT6 = 481
|
| 258 |
+
pkg syscall (netbsd-arm), const SYS_WAIT6 ideal-int
|
| 259 |
+
pkg syscall (netbsd-arm), const WEXITED = 32
|
| 260 |
+
pkg syscall (netbsd-arm), const WEXITED ideal-int
|
| 261 |
+
pkg syscall (netbsd-arm-cgo), const SYS_WAIT6 = 481
|
| 262 |
+
pkg syscall (netbsd-arm-cgo), const SYS_WAIT6 ideal-int
|
| 263 |
+
pkg syscall (netbsd-arm-cgo), const WEXITED = 32
|
| 264 |
+
pkg syscall (netbsd-arm-cgo), const WEXITED ideal-int
|
| 265 |
+
pkg syscall (netbsd-arm64), const SYS_WAIT6 = 481
|
| 266 |
+
pkg syscall (netbsd-arm64), const SYS_WAIT6 ideal-int
|
| 267 |
+
pkg syscall (netbsd-arm64), const WEXITED = 32
|
| 268 |
+
pkg syscall (netbsd-arm64), const WEXITED ideal-int
|
| 269 |
+
pkg syscall (netbsd-arm64-cgo), const SYS_WAIT6 = 481
|
| 270 |
+
pkg syscall (netbsd-arm64-cgo), const SYS_WAIT6 ideal-int
|
| 271 |
+
pkg syscall (netbsd-arm64-cgo), const WEXITED = 32
|
| 272 |
+
pkg syscall (netbsd-arm64-cgo), const WEXITED ideal-int
|
| 273 |
+
pkg syscall (openbsd-386), const MSG_CMSG_CLOEXEC = 2048
|
| 274 |
+
pkg syscall (openbsd-386), const MSG_CMSG_CLOEXEC ideal-int
|
| 275 |
+
pkg syscall (openbsd-386-cgo), const MSG_CMSG_CLOEXEC = 2048
|
| 276 |
+
pkg syscall (openbsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int
|
| 277 |
+
pkg syscall (openbsd-amd64), const MSG_CMSG_CLOEXEC = 2048
|
| 278 |
+
pkg syscall (openbsd-amd64), const MSG_CMSG_CLOEXEC ideal-int
|
| 279 |
+
pkg syscall (openbsd-amd64-cgo), const MSG_CMSG_CLOEXEC = 2048
|
| 280 |
+
pkg syscall (openbsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int
|
| 281 |
+
pkg syscall (windows-386), func CreateIoCompletionPort //deprecated
|
| 282 |
+
pkg syscall (windows-386), func GetQueuedCompletionStatus //deprecated
|
| 283 |
+
pkg syscall (windows-386), func PostQueuedCompletionStatus //deprecated
|
| 284 |
+
pkg syscall (windows-386), type SysProcAttr struct, AdditionalInheritedHandles []Handle
|
| 285 |
+
pkg syscall (windows-386), type SysProcAttr struct, ParentProcess Handle
|
| 286 |
+
pkg syscall (windows-amd64), func CreateIoCompletionPort //deprecated
|
| 287 |
+
pkg syscall (windows-amd64), func GetQueuedCompletionStatus //deprecated
|
| 288 |
+
pkg syscall (windows-amd64), func PostQueuedCompletionStatus //deprecated
|
| 289 |
+
pkg syscall (windows-amd64), type SysProcAttr struct, AdditionalInheritedHandles []Handle
|
| 290 |
+
pkg syscall (windows-amd64), type SysProcAttr struct, ParentProcess Handle
|
| 291 |
+
pkg testing, method (*B) Setenv(string, string)
|
| 292 |
+
pkg testing, method (*T) Setenv(string, string)
|
| 293 |
+
pkg testing, type TB interface, Setenv(string, string)
|
| 294 |
+
pkg text/template/parse, const SkipFuncCheck = 2
|
| 295 |
+
pkg text/template/parse, const SkipFuncCheck Mode
|
| 296 |
+
pkg time, const Layout = "01/02 03:04:05PM '06 -0700"
|
| 297 |
+
pkg time, const Layout ideal-string
|
| 298 |
+
pkg time, func UnixMicro(int64) Time
|
| 299 |
+
pkg time, func UnixMilli(int64) Time
|
| 300 |
+
pkg time, method (Time) GoString() string
|
| 301 |
+
pkg time, method (Time) IsDST() bool
|
| 302 |
+
pkg time, method (Time) UnixMicro() int64
|
| 303 |
+
pkg time, method (Time) UnixMilli() int64
|
api/go1.18.txt
ADDED
|
@@ -0,0 +1,253 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bufio, method (*Writer) AvailableBuffer() []uint8
|
| 2 |
+
pkg bufio, method (ReadWriter) AvailableBuffer() []uint8
|
| 3 |
+
pkg bytes, func Cut([]uint8, []uint8) ([]uint8, []uint8, bool)
|
| 4 |
+
pkg bytes, func Title //deprecated
|
| 5 |
+
pkg crypto/tls, method (*Conn) NetConn() net.Conn
|
| 6 |
+
pkg crypto/tls, type Config struct, PreferServerCipherSuites //deprecated
|
| 7 |
+
pkg crypto/x509, method (*CertPool) Subjects //deprecated
|
| 8 |
+
pkg debug/buildinfo, func Read(io.ReaderAt) (*debug.BuildInfo, error)
|
| 9 |
+
pkg debug/buildinfo, func ReadFile(string) (*debug.BuildInfo, error)
|
| 10 |
+
pkg debug/buildinfo, type BuildInfo = debug.BuildInfo
|
| 11 |
+
pkg debug/dwarf, type BasicType struct, DataBitOffset int64
|
| 12 |
+
pkg debug/dwarf, type StructField struct, DataBitOffset int64
|
| 13 |
+
pkg debug/elf, const R_PPC64_RELATIVE = 22
|
| 14 |
+
pkg debug/elf, const R_PPC64_RELATIVE R_PPC64
|
| 15 |
+
pkg debug/plan9obj, var ErrNoSymbols error
|
| 16 |
+
pkg go/ast, method (*IndexListExpr) End() token.Pos
|
| 17 |
+
pkg go/ast, method (*IndexListExpr) Pos() token.Pos
|
| 18 |
+
pkg go/ast, type FuncType struct, TypeParams *FieldList
|
| 19 |
+
pkg go/ast, type IndexListExpr struct
|
| 20 |
+
pkg go/ast, type IndexListExpr struct, Indices []Expr
|
| 21 |
+
pkg go/ast, type IndexListExpr struct, Lbrack token.Pos
|
| 22 |
+
pkg go/ast, type IndexListExpr struct, Rbrack token.Pos
|
| 23 |
+
pkg go/ast, type IndexListExpr struct, X Expr
|
| 24 |
+
pkg go/ast, type TypeSpec struct, TypeParams *FieldList
|
| 25 |
+
pkg go/constant, method (Kind) String() string
|
| 26 |
+
pkg go/token, const TILDE = 88
|
| 27 |
+
pkg go/token, const TILDE Token
|
| 28 |
+
pkg go/types, func Instantiate(*Context, Type, []Type, bool) (Type, error)
|
| 29 |
+
pkg go/types, func NewContext() *Context
|
| 30 |
+
pkg go/types, func NewSignature //deprecated
|
| 31 |
+
pkg go/types, func NewSignatureType(*Var, []*TypeParam, []*TypeParam, *Tuple, *Tuple, bool) *Signature
|
| 32 |
+
pkg go/types, func NewTerm(bool, Type) *Term
|
| 33 |
+
pkg go/types, func NewTypeParam(*TypeName, Type) *TypeParam
|
| 34 |
+
pkg go/types, func NewUnion([]*Term) *Union
|
| 35 |
+
pkg go/types, method (*ArgumentError) Error() string
|
| 36 |
+
pkg go/types, method (*ArgumentError) Unwrap() error
|
| 37 |
+
pkg go/types, method (*Interface) IsComparable() bool
|
| 38 |
+
pkg go/types, method (*Interface) IsImplicit() bool
|
| 39 |
+
pkg go/types, method (*Interface) IsMethodSet() bool
|
| 40 |
+
pkg go/types, method (*Interface) MarkImplicit()
|
| 41 |
+
pkg go/types, method (*Named) Origin() *Named
|
| 42 |
+
pkg go/types, method (*Named) SetTypeParams([]*TypeParam)
|
| 43 |
+
pkg go/types, method (*Named) TypeArgs() *TypeList
|
| 44 |
+
pkg go/types, method (*Named) TypeParams() *TypeParamList
|
| 45 |
+
pkg go/types, method (*Signature) RecvTypeParams() *TypeParamList
|
| 46 |
+
pkg go/types, method (*Signature) TypeParams() *TypeParamList
|
| 47 |
+
pkg go/types, method (*Term) String() string
|
| 48 |
+
pkg go/types, method (*Term) Tilde() bool
|
| 49 |
+
pkg go/types, method (*Term) Type() Type
|
| 50 |
+
pkg go/types, method (*TypeList) At(int) Type
|
| 51 |
+
pkg go/types, method (*TypeList) Len() int
|
| 52 |
+
pkg go/types, method (*TypeParam) Constraint() Type
|
| 53 |
+
pkg go/types, method (*TypeParam) Index() int
|
| 54 |
+
pkg go/types, method (*TypeParam) Obj() *TypeName
|
| 55 |
+
pkg go/types, method (*TypeParam) SetConstraint(Type)
|
| 56 |
+
pkg go/types, method (*TypeParam) String() string
|
| 57 |
+
pkg go/types, method (*TypeParam) Underlying() Type
|
| 58 |
+
pkg go/types, method (*TypeParamList) At(int) *TypeParam
|
| 59 |
+
pkg go/types, method (*TypeParamList) Len() int
|
| 60 |
+
pkg go/types, method (*Union) Len() int
|
| 61 |
+
pkg go/types, method (*Union) String() string
|
| 62 |
+
pkg go/types, method (*Union) Term(int) *Term
|
| 63 |
+
pkg go/types, method (*Union) Underlying() Type
|
| 64 |
+
pkg go/types, type ArgumentError struct
|
| 65 |
+
pkg go/types, type ArgumentError struct, Err error
|
| 66 |
+
pkg go/types, type ArgumentError struct, Index int
|
| 67 |
+
pkg go/types, type Config struct, Context *Context
|
| 68 |
+
pkg go/types, type Config struct, GoVersion string
|
| 69 |
+
pkg go/types, type Context struct
|
| 70 |
+
pkg go/types, type Info struct, Instances map[*ast.Ident]Instance
|
| 71 |
+
pkg go/types, type Instance struct
|
| 72 |
+
pkg go/types, type Instance struct, Type Type
|
| 73 |
+
pkg go/types, type Instance struct, TypeArgs *TypeList
|
| 74 |
+
pkg go/types, type Term struct
|
| 75 |
+
pkg go/types, type TypeList struct
|
| 76 |
+
pkg go/types, type TypeParam struct
|
| 77 |
+
pkg go/types, type TypeParamList struct
|
| 78 |
+
pkg go/types, type Union struct
|
| 79 |
+
pkg net, func TCPAddrFromAddrPort(netip.AddrPort) *TCPAddr
|
| 80 |
+
pkg net, func UDPAddrFromAddrPort(netip.AddrPort) *UDPAddr
|
| 81 |
+
pkg net, method (*Resolver) LookupNetIP(context.Context, string, string) ([]netip.Addr, error)
|
| 82 |
+
pkg net, method (*TCPAddr) AddrPort() netip.AddrPort
|
| 83 |
+
pkg net, method (*UDPAddr) AddrPort() netip.AddrPort
|
| 84 |
+
pkg net, method (*UDPConn) ReadFromUDPAddrPort([]uint8) (int, netip.AddrPort, error)
|
| 85 |
+
pkg net, method (*UDPConn) ReadMsgUDPAddrPort([]uint8, []uint8) (int, int, int, netip.AddrPort, error)
|
| 86 |
+
pkg net, method (*UDPConn) WriteMsgUDPAddrPort([]uint8, []uint8, netip.AddrPort) (int, int, error)
|
| 87 |
+
pkg net, method (*UDPConn) WriteToUDPAddrPort([]uint8, netip.AddrPort) (int, error)
|
| 88 |
+
pkg net, type Error interface, Temporary //deprecated
|
| 89 |
+
pkg net/http, func MaxBytesHandler(Handler, int64) Handler
|
| 90 |
+
pkg net/http, method (*Cookie) Valid() error
|
| 91 |
+
pkg net/netip, func AddrFrom16([16]uint8) Addr
|
| 92 |
+
pkg net/netip, func AddrFrom4([4]uint8) Addr
|
| 93 |
+
pkg net/netip, func AddrFromSlice([]uint8) (Addr, bool)
|
| 94 |
+
pkg net/netip, func AddrPortFrom(Addr, uint16) AddrPort
|
| 95 |
+
pkg net/netip, func IPv4Unspecified() Addr
|
| 96 |
+
pkg net/netip, func IPv6LinkLocalAllNodes() Addr
|
| 97 |
+
pkg net/netip, func IPv6Unspecified() Addr
|
| 98 |
+
pkg net/netip, func MustParseAddr(string) Addr
|
| 99 |
+
pkg net/netip, func MustParseAddrPort(string) AddrPort
|
| 100 |
+
pkg net/netip, func MustParsePrefix(string) Prefix
|
| 101 |
+
pkg net/netip, func ParseAddr(string) (Addr, error)
|
| 102 |
+
pkg net/netip, func ParseAddrPort(string) (AddrPort, error)
|
| 103 |
+
pkg net/netip, func ParsePrefix(string) (Prefix, error)
|
| 104 |
+
pkg net/netip, func PrefixFrom(Addr, int) Prefix
|
| 105 |
+
pkg net/netip, method (*Addr) UnmarshalBinary([]uint8) error
|
| 106 |
+
pkg net/netip, method (*Addr) UnmarshalText([]uint8) error
|
| 107 |
+
pkg net/netip, method (*AddrPort) UnmarshalBinary([]uint8) error
|
| 108 |
+
pkg net/netip, method (*AddrPort) UnmarshalText([]uint8) error
|
| 109 |
+
pkg net/netip, method (*Prefix) UnmarshalBinary([]uint8) error
|
| 110 |
+
pkg net/netip, method (*Prefix) UnmarshalText([]uint8) error
|
| 111 |
+
pkg net/netip, method (Addr) AppendTo([]uint8) []uint8
|
| 112 |
+
pkg net/netip, method (Addr) As16() [16]uint8
|
| 113 |
+
pkg net/netip, method (Addr) As4() [4]uint8
|
| 114 |
+
pkg net/netip, method (Addr) AsSlice() []uint8
|
| 115 |
+
pkg net/netip, method (Addr) BitLen() int
|
| 116 |
+
pkg net/netip, method (Addr) Compare(Addr) int
|
| 117 |
+
pkg net/netip, method (Addr) Is4() bool
|
| 118 |
+
pkg net/netip, method (Addr) Is4In6() bool
|
| 119 |
+
pkg net/netip, method (Addr) Is6() bool
|
| 120 |
+
pkg net/netip, method (Addr) IsGlobalUnicast() bool
|
| 121 |
+
pkg net/netip, method (Addr) IsInterfaceLocalMulticast() bool
|
| 122 |
+
pkg net/netip, method (Addr) IsLinkLocalMulticast() bool
|
| 123 |
+
pkg net/netip, method (Addr) IsLinkLocalUnicast() bool
|
| 124 |
+
pkg net/netip, method (Addr) IsLoopback() bool
|
| 125 |
+
pkg net/netip, method (Addr) IsMulticast() bool
|
| 126 |
+
pkg net/netip, method (Addr) IsPrivate() bool
|
| 127 |
+
pkg net/netip, method (Addr) IsUnspecified() bool
|
| 128 |
+
pkg net/netip, method (Addr) IsValid() bool
|
| 129 |
+
pkg net/netip, method (Addr) Less(Addr) bool
|
| 130 |
+
pkg net/netip, method (Addr) MarshalBinary() ([]uint8, error)
|
| 131 |
+
pkg net/netip, method (Addr) MarshalText() ([]uint8, error)
|
| 132 |
+
pkg net/netip, method (Addr) Next() Addr
|
| 133 |
+
pkg net/netip, method (Addr) Prefix(int) (Prefix, error)
|
| 134 |
+
pkg net/netip, method (Addr) Prev() Addr
|
| 135 |
+
pkg net/netip, method (Addr) String() string
|
| 136 |
+
pkg net/netip, method (Addr) StringExpanded() string
|
| 137 |
+
pkg net/netip, method (Addr) Unmap() Addr
|
| 138 |
+
pkg net/netip, method (Addr) WithZone(string) Addr
|
| 139 |
+
pkg net/netip, method (Addr) Zone() string
|
| 140 |
+
pkg net/netip, method (AddrPort) Addr() Addr
|
| 141 |
+
pkg net/netip, method (AddrPort) AppendTo([]uint8) []uint8
|
| 142 |
+
pkg net/netip, method (AddrPort) IsValid() bool
|
| 143 |
+
pkg net/netip, method (AddrPort) MarshalBinary() ([]uint8, error)
|
| 144 |
+
pkg net/netip, method (AddrPort) MarshalText() ([]uint8, error)
|
| 145 |
+
pkg net/netip, method (AddrPort) Port() uint16
|
| 146 |
+
pkg net/netip, method (AddrPort) String() string
|
| 147 |
+
pkg net/netip, method (Prefix) Addr() Addr
|
| 148 |
+
pkg net/netip, method (Prefix) AppendTo([]uint8) []uint8
|
| 149 |
+
pkg net/netip, method (Prefix) Bits() int
|
| 150 |
+
pkg net/netip, method (Prefix) Contains(Addr) bool
|
| 151 |
+
pkg net/netip, method (Prefix) IsSingleIP() bool
|
| 152 |
+
pkg net/netip, method (Prefix) IsValid() bool
|
| 153 |
+
pkg net/netip, method (Prefix) MarshalBinary() ([]uint8, error)
|
| 154 |
+
pkg net/netip, method (Prefix) MarshalText() ([]uint8, error)
|
| 155 |
+
pkg net/netip, method (Prefix) Masked() Prefix
|
| 156 |
+
pkg net/netip, method (Prefix) Overlaps(Prefix) bool
|
| 157 |
+
pkg net/netip, method (Prefix) String() string
|
| 158 |
+
pkg net/netip, type Addr struct
|
| 159 |
+
pkg net/netip, type AddrPort struct
|
| 160 |
+
pkg net/netip, type Prefix struct
|
| 161 |
+
pkg reflect, const Pointer = 22
|
| 162 |
+
pkg reflect, const Pointer Kind
|
| 163 |
+
pkg reflect, func PointerTo(Type) Type
|
| 164 |
+
pkg reflect, method (*MapIter) Reset(Value)
|
| 165 |
+
pkg reflect, method (Value) CanComplex() bool
|
| 166 |
+
pkg reflect, method (Value) CanFloat() bool
|
| 167 |
+
pkg reflect, method (Value) CanInt() bool
|
| 168 |
+
pkg reflect, method (Value) CanUint() bool
|
| 169 |
+
pkg reflect, method (Value) FieldByIndexErr([]int) (Value, error)
|
| 170 |
+
pkg reflect, method (Value) SetIterKey(*MapIter)
|
| 171 |
+
pkg reflect, method (Value) SetIterValue(*MapIter)
|
| 172 |
+
pkg reflect, method (Value) UnsafePointer() unsafe.Pointer
|
| 173 |
+
pkg runtime/debug, func ParseBuildInfo(string) (*BuildInfo, error)
|
| 174 |
+
pkg runtime/debug, method (*BuildInfo) String() string
|
| 175 |
+
pkg runtime/debug, type BuildInfo struct, GoVersion string
|
| 176 |
+
pkg runtime/debug, type BuildInfo struct, Settings []BuildSetting
|
| 177 |
+
pkg runtime/debug, type BuildSetting struct
|
| 178 |
+
pkg runtime/debug, type BuildSetting struct, Key string
|
| 179 |
+
pkg runtime/debug, type BuildSetting struct, Value string
|
| 180 |
+
pkg strings, func Clone(string) string
|
| 181 |
+
pkg strings, func Cut(string, string) (string, string, bool)
|
| 182 |
+
pkg strings, func Title //deprecated
|
| 183 |
+
pkg sync, method (*Mutex) TryLock() bool
|
| 184 |
+
pkg sync, method (*RWMutex) TryLock() bool
|
| 185 |
+
pkg sync, method (*RWMutex) TryRLock() bool
|
| 186 |
+
pkg syscall (freebsd-386), type SysProcAttr struct, Pdeathsig Signal
|
| 187 |
+
pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Pdeathsig Signal
|
| 188 |
+
pkg syscall (freebsd-amd64), type SysProcAttr struct, Pdeathsig Signal
|
| 189 |
+
pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Pdeathsig Signal
|
| 190 |
+
pkg syscall (freebsd-arm), type SysProcAttr struct, Pdeathsig Signal
|
| 191 |
+
pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Pdeathsig Signal
|
| 192 |
+
pkg syscall (freebsd-arm64), type SysProcAttr struct, Pdeathsig Signal
|
| 193 |
+
pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Pdeathsig Signal
|
| 194 |
+
pkg syscall (windows-386), func Syscall //deprecated
|
| 195 |
+
pkg syscall (windows-386), func Syscall12 //deprecated
|
| 196 |
+
pkg syscall (windows-386), func Syscall15 //deprecated
|
| 197 |
+
pkg syscall (windows-386), func Syscall18 //deprecated
|
| 198 |
+
pkg syscall (windows-386), func Syscall6 //deprecated
|
| 199 |
+
pkg syscall (windows-386), func Syscall9 //deprecated
|
| 200 |
+
pkg syscall (windows-386), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno)
|
| 201 |
+
pkg syscall (windows-amd64), func Syscall //deprecated
|
| 202 |
+
pkg syscall (windows-amd64), func Syscall12 //deprecated
|
| 203 |
+
pkg syscall (windows-amd64), func Syscall15 //deprecated
|
| 204 |
+
pkg syscall (windows-amd64), func Syscall18 //deprecated
|
| 205 |
+
pkg syscall (windows-amd64), func Syscall6 //deprecated
|
| 206 |
+
pkg syscall (windows-amd64), func Syscall9 //deprecated
|
| 207 |
+
pkg syscall (windows-amd64), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno)
|
| 208 |
+
pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalFuzzTarget, []InternalExample) *M
|
| 209 |
+
pkg testing, method (*F) Add(...interface{})
|
| 210 |
+
pkg testing, method (*F) Cleanup(func())
|
| 211 |
+
pkg testing, method (*F) Error(...interface{})
|
| 212 |
+
pkg testing, method (*F) Errorf(string, ...interface{})
|
| 213 |
+
pkg testing, method (*F) Fail()
|
| 214 |
+
pkg testing, method (*F) FailNow()
|
| 215 |
+
pkg testing, method (*F) Failed() bool
|
| 216 |
+
pkg testing, method (*F) Fatal(...interface{})
|
| 217 |
+
pkg testing, method (*F) Fatalf(string, ...interface{})
|
| 218 |
+
pkg testing, method (*F) Fuzz(interface{})
|
| 219 |
+
pkg testing, method (*F) Helper()
|
| 220 |
+
pkg testing, method (*F) Log(...interface{})
|
| 221 |
+
pkg testing, method (*F) Logf(string, ...interface{})
|
| 222 |
+
pkg testing, method (*F) Name() string
|
| 223 |
+
pkg testing, method (*F) Setenv(string, string)
|
| 224 |
+
pkg testing, method (*F) Skip(...interface{})
|
| 225 |
+
pkg testing, method (*F) SkipNow()
|
| 226 |
+
pkg testing, method (*F) Skipf(string, ...interface{})
|
| 227 |
+
pkg testing, method (*F) Skipped() bool
|
| 228 |
+
pkg testing, method (*F) TempDir() string
|
| 229 |
+
pkg testing, type F struct
|
| 230 |
+
pkg testing, type InternalFuzzTarget struct
|
| 231 |
+
pkg testing, type InternalFuzzTarget struct, Fn func(*F)
|
| 232 |
+
pkg testing, type InternalFuzzTarget struct, Name string
|
| 233 |
+
pkg text/template/parse, const NodeBreak = 21
|
| 234 |
+
pkg text/template/parse, const NodeBreak NodeType
|
| 235 |
+
pkg text/template/parse, const NodeContinue = 22
|
| 236 |
+
pkg text/template/parse, const NodeContinue NodeType
|
| 237 |
+
pkg text/template/parse, method (*BreakNode) Copy() Node
|
| 238 |
+
pkg text/template/parse, method (*BreakNode) String() string
|
| 239 |
+
pkg text/template/parse, method (*ContinueNode) Copy() Node
|
| 240 |
+
pkg text/template/parse, method (*ContinueNode) String() string
|
| 241 |
+
pkg text/template/parse, method (BreakNode) Position() Pos
|
| 242 |
+
pkg text/template/parse, method (BreakNode) Type() NodeType
|
| 243 |
+
pkg text/template/parse, method (ContinueNode) Position() Pos
|
| 244 |
+
pkg text/template/parse, method (ContinueNode) Type() NodeType
|
| 245 |
+
pkg text/template/parse, type BreakNode struct
|
| 246 |
+
pkg text/template/parse, type BreakNode struct, Line int
|
| 247 |
+
pkg text/template/parse, type BreakNode struct, embedded NodeType
|
| 248 |
+
pkg text/template/parse, type BreakNode struct, embedded Pos
|
| 249 |
+
pkg text/template/parse, type ContinueNode struct
|
| 250 |
+
pkg text/template/parse, type ContinueNode struct, Line int
|
| 251 |
+
pkg text/template/parse, type ContinueNode struct, embedded NodeType
|
| 252 |
+
pkg text/template/parse, type ContinueNode struct, embedded Pos
|
| 253 |
+
pkg unicode/utf8, func AppendRune([]uint8, int32) []uint8
|
api/go1.19.txt
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg crypto/x509, func ParseRevocationList([]uint8) (*RevocationList, error) #50674
|
| 2 |
+
pkg crypto/x509, method (*CertPool) Clone() *CertPool #35044
|
| 3 |
+
pkg crypto/x509, method (*CertPool) Equal(*CertPool) bool #46057
|
| 4 |
+
pkg crypto/x509, method (*RevocationList) CheckSignatureFrom(*Certificate) error #50674
|
| 5 |
+
pkg crypto/x509, type RevocationList struct, AuthorityKeyId []uint8 #50674
|
| 6 |
+
pkg crypto/x509, type RevocationList struct, Extensions []pkix.Extension #50674
|
| 7 |
+
pkg crypto/x509, type RevocationList struct, Issuer pkix.Name #50674
|
| 8 |
+
pkg crypto/x509, type RevocationList struct, Raw []uint8 #50674
|
| 9 |
+
pkg crypto/x509, type RevocationList struct, RawIssuer []uint8 #50674
|
| 10 |
+
pkg crypto/x509, type RevocationList struct, RawTBSRevocationList []uint8 #50674
|
| 11 |
+
pkg crypto/x509, type RevocationList struct, Signature []uint8 #50674
|
| 12 |
+
pkg debug/elf, const EM_LOONGARCH = 258 #46229
|
| 13 |
+
pkg debug/elf, const EM_LOONGARCH Machine #46229
|
| 14 |
+
pkg debug/elf, const R_LARCH_32 = 1 #46229
|
| 15 |
+
pkg debug/elf, const R_LARCH_32 R_LARCH #46229
|
| 16 |
+
pkg debug/elf, const R_LARCH_64 = 2 #46229
|
| 17 |
+
pkg debug/elf, const R_LARCH_64 R_LARCH #46229
|
| 18 |
+
pkg debug/elf, const R_LARCH_ADD16 = 48 #46229
|
| 19 |
+
pkg debug/elf, const R_LARCH_ADD16 R_LARCH #46229
|
| 20 |
+
pkg debug/elf, const R_LARCH_ADD24 = 49 #46229
|
| 21 |
+
pkg debug/elf, const R_LARCH_ADD24 R_LARCH #46229
|
| 22 |
+
pkg debug/elf, const R_LARCH_ADD32 = 50 #46229
|
| 23 |
+
pkg debug/elf, const R_LARCH_ADD32 R_LARCH #46229
|
| 24 |
+
pkg debug/elf, const R_LARCH_ADD64 = 51 #46229
|
| 25 |
+
pkg debug/elf, const R_LARCH_ADD64 R_LARCH #46229
|
| 26 |
+
pkg debug/elf, const R_LARCH_ADD8 = 47 #46229
|
| 27 |
+
pkg debug/elf, const R_LARCH_ADD8 R_LARCH #46229
|
| 28 |
+
pkg debug/elf, const R_LARCH_COPY = 4 #46229
|
| 29 |
+
pkg debug/elf, const R_LARCH_COPY R_LARCH #46229
|
| 30 |
+
pkg debug/elf, const R_LARCH_IRELATIVE = 12 #46229
|
| 31 |
+
pkg debug/elf, const R_LARCH_IRELATIVE R_LARCH #46229
|
| 32 |
+
pkg debug/elf, const R_LARCH_JUMP_SLOT = 5 #46229
|
| 33 |
+
pkg debug/elf, const R_LARCH_JUMP_SLOT R_LARCH #46229
|
| 34 |
+
pkg debug/elf, const R_LARCH_MARK_LA = 20 #46229
|
| 35 |
+
pkg debug/elf, const R_LARCH_MARK_LA R_LARCH #46229
|
| 36 |
+
pkg debug/elf, const R_LARCH_MARK_PCREL = 21 #46229
|
| 37 |
+
pkg debug/elf, const R_LARCH_MARK_PCREL R_LARCH #46229
|
| 38 |
+
pkg debug/elf, const R_LARCH_NONE = 0 #46229
|
| 39 |
+
pkg debug/elf, const R_LARCH_NONE R_LARCH #46229
|
| 40 |
+
pkg debug/elf, const R_LARCH_RELATIVE = 3 #46229
|
| 41 |
+
pkg debug/elf, const R_LARCH_RELATIVE R_LARCH #46229
|
| 42 |
+
pkg debug/elf, const R_LARCH_SOP_ADD = 35 #46229
|
| 43 |
+
pkg debug/elf, const R_LARCH_SOP_ADD R_LARCH #46229
|
| 44 |
+
pkg debug/elf, const R_LARCH_SOP_AND = 36 #46229
|
| 45 |
+
pkg debug/elf, const R_LARCH_SOP_AND R_LARCH #46229
|
| 46 |
+
pkg debug/elf, const R_LARCH_SOP_ASSERT = 30 #46229
|
| 47 |
+
pkg debug/elf, const R_LARCH_SOP_ASSERT R_LARCH #46229
|
| 48 |
+
pkg debug/elf, const R_LARCH_SOP_IF_ELSE = 37 #46229
|
| 49 |
+
pkg debug/elf, const R_LARCH_SOP_IF_ELSE R_LARCH #46229
|
| 50 |
+
pkg debug/elf, const R_LARCH_SOP_NOT = 31 #46229
|
| 51 |
+
pkg debug/elf, const R_LARCH_SOP_NOT R_LARCH #46229
|
| 52 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_10_10_16_S2 = 45 #46229
|
| 53 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_10_10_16_S2 R_LARCH #46229
|
| 54 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_5_10_16_S2 = 44 #46229
|
| 55 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_5_10_16_S2 R_LARCH #46229
|
| 56 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_12 = 40 #46229
|
| 57 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_12 R_LARCH #46229
|
| 58 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16 = 41 #46229
|
| 59 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16 R_LARCH #46229
|
| 60 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16_S2 = 42 #46229
|
| 61 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16_S2 R_LARCH #46229
|
| 62 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_5 = 38 #46229
|
| 63 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_5 R_LARCH #46229
|
| 64 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_5_20 = 43 #46229
|
| 65 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_S_5_20 R_LARCH #46229
|
| 66 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_U = 46 #46229
|
| 67 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_U R_LARCH #46229
|
| 68 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_U_10_12 = 39 #46229
|
| 69 |
+
pkg debug/elf, const R_LARCH_SOP_POP_32_U_10_12 R_LARCH #46229
|
| 70 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_ABSOLUTE = 23 #46229
|
| 71 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_ABSOLUTE R_LARCH #46229
|
| 72 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_DUP = 24 #46229
|
| 73 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_DUP R_LARCH #46229
|
| 74 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_GPREL = 25 #46229
|
| 75 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_GPREL R_LARCH #46229
|
| 76 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_PCREL = 22 #46229
|
| 77 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_PCREL R_LARCH #46229
|
| 78 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_PLT_PCREL = 29 #46229
|
| 79 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_PLT_PCREL R_LARCH #46229
|
| 80 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GD = 28 #46229
|
| 81 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GD R_LARCH #46229
|
| 82 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GOT = 27 #46229
|
| 83 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GOT R_LARCH #46229
|
| 84 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_TPREL = 26 #46229
|
| 85 |
+
pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_TPREL R_LARCH #46229
|
| 86 |
+
pkg debug/elf, const R_LARCH_SOP_SL = 33 #46229
|
| 87 |
+
pkg debug/elf, const R_LARCH_SOP_SL R_LARCH #46229
|
| 88 |
+
pkg debug/elf, const R_LARCH_SOP_SR = 34 #46229
|
| 89 |
+
pkg debug/elf, const R_LARCH_SOP_SR R_LARCH #46229
|
| 90 |
+
pkg debug/elf, const R_LARCH_SOP_SUB = 32 #46229
|
| 91 |
+
pkg debug/elf, const R_LARCH_SOP_SUB R_LARCH #46229
|
| 92 |
+
pkg debug/elf, const R_LARCH_SUB16 = 53 #46229
|
| 93 |
+
pkg debug/elf, const R_LARCH_SUB16 R_LARCH #46229
|
| 94 |
+
pkg debug/elf, const R_LARCH_SUB24 = 54 #46229
|
| 95 |
+
pkg debug/elf, const R_LARCH_SUB24 R_LARCH #46229
|
| 96 |
+
pkg debug/elf, const R_LARCH_SUB32 = 55 #46229
|
| 97 |
+
pkg debug/elf, const R_LARCH_SUB32 R_LARCH #46229
|
| 98 |
+
pkg debug/elf, const R_LARCH_SUB64 = 56 #46229
|
| 99 |
+
pkg debug/elf, const R_LARCH_SUB64 R_LARCH #46229
|
| 100 |
+
pkg debug/elf, const R_LARCH_SUB8 = 52 #46229
|
| 101 |
+
pkg debug/elf, const R_LARCH_SUB8 R_LARCH #46229
|
| 102 |
+
pkg debug/elf, const R_LARCH_TLS_DTPMOD32 = 6 #46229
|
| 103 |
+
pkg debug/elf, const R_LARCH_TLS_DTPMOD32 R_LARCH #46229
|
| 104 |
+
pkg debug/elf, const R_LARCH_TLS_DTPMOD64 = 7 #46229
|
| 105 |
+
pkg debug/elf, const R_LARCH_TLS_DTPMOD64 R_LARCH #46229
|
| 106 |
+
pkg debug/elf, const R_LARCH_TLS_DTPREL32 = 8 #46229
|
| 107 |
+
pkg debug/elf, const R_LARCH_TLS_DTPREL32 R_LARCH #46229
|
| 108 |
+
pkg debug/elf, const R_LARCH_TLS_DTPREL64 = 9 #46229
|
| 109 |
+
pkg debug/elf, const R_LARCH_TLS_DTPREL64 R_LARCH #46229
|
| 110 |
+
pkg debug/elf, const R_LARCH_TLS_TPREL32 = 10 #46229
|
| 111 |
+
pkg debug/elf, const R_LARCH_TLS_TPREL32 R_LARCH #46229
|
| 112 |
+
pkg debug/elf, const R_LARCH_TLS_TPREL64 = 11 #46229
|
| 113 |
+
pkg debug/elf, const R_LARCH_TLS_TPREL64 R_LARCH #46229
|
| 114 |
+
pkg debug/elf, method (R_LARCH) GoString() string #46229
|
| 115 |
+
pkg debug/elf, method (R_LARCH) String() string #46229
|
| 116 |
+
pkg debug/elf, type R_LARCH int #46229
|
| 117 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY = 2 #51868
|
| 118 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY ideal-int #51868
|
| 119 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE = 5 #51868
|
| 120 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE ideal-int #51868
|
| 121 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_EXACT_MATCH = 4 #51868
|
| 122 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_EXACT_MATCH ideal-int #51868
|
| 123 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_LARGEST = 6 #51868
|
| 124 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_LARGEST ideal-int #51868
|
| 125 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_NODUPLICATES = 1 #51868
|
| 126 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_NODUPLICATES ideal-int #51868
|
| 127 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE = 3 #51868
|
| 128 |
+
pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE ideal-int #51868
|
| 129 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 = 25138 #46229
|
| 130 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 ideal-int #46229
|
| 131 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH64 = 25188 #46229
|
| 132 |
+
pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH64 ideal-int #46229
|
| 133 |
+
pkg debug/pe, const IMAGE_SCN_CNT_CODE = 32 #51868
|
| 134 |
+
pkg debug/pe, const IMAGE_SCN_CNT_CODE ideal-int #51868
|
| 135 |
+
pkg debug/pe, const IMAGE_SCN_CNT_INITIALIZED_DATA = 64 #51868
|
| 136 |
+
pkg debug/pe, const IMAGE_SCN_CNT_INITIALIZED_DATA ideal-int #51868
|
| 137 |
+
pkg debug/pe, const IMAGE_SCN_CNT_UNINITIALIZED_DATA = 128 #51868
|
| 138 |
+
pkg debug/pe, const IMAGE_SCN_CNT_UNINITIALIZED_DATA ideal-int #51868
|
| 139 |
+
pkg debug/pe, const IMAGE_SCN_LNK_COMDAT = 4096 #51868
|
| 140 |
+
pkg debug/pe, const IMAGE_SCN_LNK_COMDAT ideal-int #51868
|
| 141 |
+
pkg debug/pe, const IMAGE_SCN_MEM_DISCARDABLE = 33554432 #51868
|
| 142 |
+
pkg debug/pe, const IMAGE_SCN_MEM_DISCARDABLE ideal-int #51868
|
| 143 |
+
pkg debug/pe, const IMAGE_SCN_MEM_EXECUTE = 536870912 #51868
|
| 144 |
+
pkg debug/pe, const IMAGE_SCN_MEM_EXECUTE ideal-int #51868
|
| 145 |
+
pkg debug/pe, const IMAGE_SCN_MEM_READ = 1073741824 #51868
|
| 146 |
+
pkg debug/pe, const IMAGE_SCN_MEM_READ ideal-int #51868
|
| 147 |
+
pkg debug/pe, const IMAGE_SCN_MEM_WRITE = 2147483648 #51868
|
| 148 |
+
pkg debug/pe, const IMAGE_SCN_MEM_WRITE ideal-int #51868
|
| 149 |
+
pkg debug/pe, method (*File) COFFSymbolReadSectionDefAux(int) (*COFFSymbolAuxFormat5, error) #51868
|
| 150 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct #51868
|
| 151 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct, Checksum uint32 #51868
|
| 152 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct, NumLineNumbers uint16 #51868
|
| 153 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct, NumRelocs uint16 #51868
|
| 154 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct, SecNum uint16 #51868
|
| 155 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct, Selection uint8 #51868
|
| 156 |
+
pkg debug/pe, type COFFSymbolAuxFormat5 struct, Size uint32 #51868
|
| 157 |
+
pkg encoding/binary, func AppendUvarint([]uint8, uint64) []uint8 #51644
|
| 158 |
+
pkg encoding/binary, func AppendVarint([]uint8, int64) []uint8 #51644
|
| 159 |
+
pkg encoding/binary, type AppendByteOrder interface { AppendUint16, AppendUint32, AppendUint64, String } #50601
|
| 160 |
+
pkg encoding/binary, type AppendByteOrder interface, AppendUint16([]uint8, uint16) []uint8 #50601
|
| 161 |
+
pkg encoding/binary, type AppendByteOrder interface, AppendUint32([]uint8, uint32) []uint8 #50601
|
| 162 |
+
pkg encoding/binary, type AppendByteOrder interface, AppendUint64([]uint8, uint64) []uint8 #50601
|
| 163 |
+
pkg encoding/binary, type AppendByteOrder interface, String() string #50601
|
| 164 |
+
pkg encoding/csv, method (*Reader) InputOffset() int64 #43401
|
| 165 |
+
pkg encoding/xml, method (*Decoder) InputPos() (int, int) #45628
|
| 166 |
+
pkg flag, func TextVar(encoding.TextUnmarshaler, string, encoding.TextMarshaler, string) #45754
|
| 167 |
+
pkg flag, method (*FlagSet) TextVar(encoding.TextUnmarshaler, string, encoding.TextMarshaler, string) #45754
|
| 168 |
+
pkg fmt, func Append([]uint8, ...interface{}) []uint8 #47579
|
| 169 |
+
pkg fmt, func Appendf([]uint8, string, ...interface{}) []uint8 #47579
|
| 170 |
+
pkg fmt, func Appendln([]uint8, ...interface{}) []uint8 #47579
|
| 171 |
+
pkg go/doc, method (*Package) HTML(string) []uint8 #51082
|
| 172 |
+
pkg go/doc, method (*Package) Markdown(string) []uint8 #51082
|
| 173 |
+
pkg go/doc, method (*Package) Parser() *comment.Parser #51082
|
| 174 |
+
pkg go/doc, method (*Package) Printer() *comment.Printer #51082
|
| 175 |
+
pkg go/doc, method (*Package) Synopsis(string) string #51082
|
| 176 |
+
pkg go/doc, method (*Package) Text(string) []uint8 #51082
|
| 177 |
+
pkg go/doc/comment, func DefaultLookupPackage(string) (string, bool) #51082
|
| 178 |
+
pkg go/doc/comment, method (*DocLink) DefaultURL(string) string #51082
|
| 179 |
+
pkg go/doc/comment, method (*Heading) DefaultID() string #51082
|
| 180 |
+
pkg go/doc/comment, method (*List) BlankBefore() bool #51082
|
| 181 |
+
pkg go/doc/comment, method (*List) BlankBetween() bool #51082
|
| 182 |
+
pkg go/doc/comment, method (*Parser) Parse(string) *Doc #51082
|
| 183 |
+
pkg go/doc/comment, method (*Printer) Comment(*Doc) []uint8 #51082
|
| 184 |
+
pkg go/doc/comment, method (*Printer) HTML(*Doc) []uint8 #51082
|
| 185 |
+
pkg go/doc/comment, method (*Printer) Markdown(*Doc) []uint8 #51082
|
| 186 |
+
pkg go/doc/comment, method (*Printer) Text(*Doc) []uint8 #51082
|
| 187 |
+
pkg go/doc/comment, type Block interface, unexported methods #51082
|
| 188 |
+
pkg go/doc/comment, type Code struct #51082
|
| 189 |
+
pkg go/doc/comment, type Code struct, Text string #51082
|
| 190 |
+
pkg go/doc/comment, type Doc struct #51082
|
| 191 |
+
pkg go/doc/comment, type Doc struct, Content []Block #51082
|
| 192 |
+
pkg go/doc/comment, type Doc struct, Links []*LinkDef #51082
|
| 193 |
+
pkg go/doc/comment, type DocLink struct #51082
|
| 194 |
+
pkg go/doc/comment, type DocLink struct, ImportPath string #51082
|
| 195 |
+
pkg go/doc/comment, type DocLink struct, Name string #51082
|
| 196 |
+
pkg go/doc/comment, type DocLink struct, Recv string #51082
|
| 197 |
+
pkg go/doc/comment, type DocLink struct, Text []Text #51082
|
| 198 |
+
pkg go/doc/comment, type Heading struct #51082
|
| 199 |
+
pkg go/doc/comment, type Heading struct, Text []Text #51082
|
| 200 |
+
pkg go/doc/comment, type Italic string #51082
|
| 201 |
+
pkg go/doc/comment, type Link struct #51082
|
| 202 |
+
pkg go/doc/comment, type Link struct, Auto bool #51082
|
| 203 |
+
pkg go/doc/comment, type Link struct, Text []Text #51082
|
| 204 |
+
pkg go/doc/comment, type Link struct, URL string #51082
|
| 205 |
+
pkg go/doc/comment, type LinkDef struct #51082
|
| 206 |
+
pkg go/doc/comment, type LinkDef struct, Text string #51082
|
| 207 |
+
pkg go/doc/comment, type LinkDef struct, URL string #51082
|
| 208 |
+
pkg go/doc/comment, type LinkDef struct, Used bool #51082
|
| 209 |
+
pkg go/doc/comment, type List struct #51082
|
| 210 |
+
pkg go/doc/comment, type List struct, ForceBlankBefore bool #51082
|
| 211 |
+
pkg go/doc/comment, type List struct, ForceBlankBetween bool #51082
|
| 212 |
+
pkg go/doc/comment, type List struct, Items []*ListItem #51082
|
| 213 |
+
pkg go/doc/comment, type ListItem struct #51082
|
| 214 |
+
pkg go/doc/comment, type ListItem struct, Content []Block #51082
|
| 215 |
+
pkg go/doc/comment, type ListItem struct, Number string #51082
|
| 216 |
+
pkg go/doc/comment, type Paragraph struct #51082
|
| 217 |
+
pkg go/doc/comment, type Paragraph struct, Text []Text #51082
|
| 218 |
+
pkg go/doc/comment, type Parser struct #51082
|
| 219 |
+
pkg go/doc/comment, type Parser struct, LookupPackage func(string) (string, bool) #51082
|
| 220 |
+
pkg go/doc/comment, type Parser struct, LookupSym func(string, string) bool #51082
|
| 221 |
+
pkg go/doc/comment, type Parser struct, Words map[string]string #51082
|
| 222 |
+
pkg go/doc/comment, type Plain string #51082
|
| 223 |
+
pkg go/doc/comment, type Printer struct #51082
|
| 224 |
+
pkg go/doc/comment, type Printer struct, DocLinkBaseURL string #51082
|
| 225 |
+
pkg go/doc/comment, type Printer struct, DocLinkURL func(*DocLink) string #51082
|
| 226 |
+
pkg go/doc/comment, type Printer struct, HeadingID func(*Heading) string #51082
|
| 227 |
+
pkg go/doc/comment, type Printer struct, HeadingLevel int #51082
|
| 228 |
+
pkg go/doc/comment, type Printer struct, TextCodePrefix string #51082
|
| 229 |
+
pkg go/doc/comment, type Printer struct, TextPrefix string #51082
|
| 230 |
+
pkg go/doc/comment, type Printer struct, TextWidth int #51082
|
| 231 |
+
pkg go/doc/comment, type Text interface, unexported methods #51082
|
| 232 |
+
pkg go/types, method (*Func) Origin() *Func #51682
|
| 233 |
+
pkg go/types, method (*Var) Origin() *Var #51682
|
| 234 |
+
pkg hash/maphash, func Bytes(Seed, []uint8) uint64 #42710
|
| 235 |
+
pkg hash/maphash, func String(Seed, string) uint64 #42710
|
| 236 |
+
pkg html/template, method (*Template) Funcs(template.FuncMap) *Template #46121
|
| 237 |
+
pkg html/template, type FuncMap = template.FuncMap #46121
|
| 238 |
+
pkg net/http, method (*MaxBytesError) Error() string #30715
|
| 239 |
+
pkg net/http, type MaxBytesError struct #30715
|
| 240 |
+
pkg net/http, type MaxBytesError struct, Limit int64 #30715
|
| 241 |
+
pkg net/url, func JoinPath(string, ...string) (string, error) #47005
|
| 242 |
+
pkg net/url, method (*URL) JoinPath(...string) *URL #47005
|
| 243 |
+
pkg net/url, type URL struct, OmitHost bool #46059
|
| 244 |
+
pkg os/exec, method (*Cmd) Environ() []string #50599
|
| 245 |
+
pkg os/exec, type Cmd struct, Err error #43724
|
| 246 |
+
pkg os/exec, var ErrDot error #43724
|
| 247 |
+
pkg regexp/syntax, const ErrNestingDepth = "expression nests too deeply" #51684
|
| 248 |
+
pkg regexp/syntax, const ErrNestingDepth ErrorCode #51684
|
| 249 |
+
pkg runtime/debug, func SetMemoryLimit(int64) int64 #48409
|
| 250 |
+
pkg sort, func Find(int, func(int) int) (int, bool) #50340
|
| 251 |
+
pkg sync/atomic, method (*Bool) CompareAndSwap(bool, bool) bool #50860
|
| 252 |
+
pkg sync/atomic, method (*Bool) Load() bool #50860
|
| 253 |
+
pkg sync/atomic, method (*Bool) Store(bool) #50860
|
| 254 |
+
pkg sync/atomic, method (*Bool) Swap(bool) bool #50860
|
| 255 |
+
pkg sync/atomic, method (*Int32) Add(int32) int32 #50860
|
| 256 |
+
pkg sync/atomic, method (*Int32) CompareAndSwap(int32, int32) bool #50860
|
| 257 |
+
pkg sync/atomic, method (*Int32) Load() int32 #50860
|
| 258 |
+
pkg sync/atomic, method (*Int32) Store(int32) #50860
|
| 259 |
+
pkg sync/atomic, method (*Int32) Swap(int32) int32 #50860
|
| 260 |
+
pkg sync/atomic, method (*Int64) Add(int64) int64 #50860
|
| 261 |
+
pkg sync/atomic, method (*Int64) CompareAndSwap(int64, int64) bool #50860
|
| 262 |
+
pkg sync/atomic, method (*Int64) Load() int64 #50860
|
| 263 |
+
pkg sync/atomic, method (*Int64) Store(int64) #50860
|
| 264 |
+
pkg sync/atomic, method (*Int64) Swap(int64) int64 #50860
|
| 265 |
+
pkg sync/atomic, method (*Pointer[$0]) CompareAndSwap(*$0, *$0) bool #50860
|
| 266 |
+
pkg sync/atomic, method (*Pointer[$0]) Load() *$0 #50860
|
| 267 |
+
pkg sync/atomic, method (*Pointer[$0]) Store(*$0) #50860
|
| 268 |
+
pkg sync/atomic, method (*Pointer[$0]) Swap(*$0) *$0 #50860
|
| 269 |
+
pkg sync/atomic, method (*Uint32) Add(uint32) uint32 #50860
|
| 270 |
+
pkg sync/atomic, method (*Uint32) CompareAndSwap(uint32, uint32) bool #50860
|
| 271 |
+
pkg sync/atomic, method (*Uint32) Load() uint32 #50860
|
| 272 |
+
pkg sync/atomic, method (*Uint32) Store(uint32) #50860
|
| 273 |
+
pkg sync/atomic, method (*Uint32) Swap(uint32) uint32 #50860
|
| 274 |
+
pkg sync/atomic, method (*Uint64) Add(uint64) uint64 #50860
|
| 275 |
+
pkg sync/atomic, method (*Uint64) CompareAndSwap(uint64, uint64) bool #50860
|
| 276 |
+
pkg sync/atomic, method (*Uint64) Load() uint64 #50860
|
| 277 |
+
pkg sync/atomic, method (*Uint64) Store(uint64) #50860
|
| 278 |
+
pkg sync/atomic, method (*Uint64) Swap(uint64) uint64 #50860
|
| 279 |
+
pkg sync/atomic, method (*Uintptr) Add(uintptr) uintptr #50860
|
| 280 |
+
pkg sync/atomic, method (*Uintptr) CompareAndSwap(uintptr, uintptr) bool #50860
|
| 281 |
+
pkg sync/atomic, method (*Uintptr) Load() uintptr #50860
|
| 282 |
+
pkg sync/atomic, method (*Uintptr) Store(uintptr) #50860
|
| 283 |
+
pkg sync/atomic, method (*Uintptr) Swap(uintptr) uintptr #50860
|
| 284 |
+
pkg sync/atomic, type Bool struct #50860
|
| 285 |
+
pkg sync/atomic, type Int32 struct #50860
|
| 286 |
+
pkg sync/atomic, type Int64 struct #50860
|
| 287 |
+
pkg sync/atomic, type Pointer[$0 interface{}] struct #50860
|
| 288 |
+
pkg sync/atomic, type Uint32 struct #50860
|
| 289 |
+
pkg sync/atomic, type Uint64 struct #50860
|
| 290 |
+
pkg sync/atomic, type Uintptr struct #50860
|
| 291 |
+
pkg time, method (Duration) Abs() Duration #51414
|
| 292 |
+
pkg time, method (Time) ZoneBounds() (Time, Time) #50062
|
| 293 |
+
pkg crypto/x509, func ParseCRL //deprecated #50674
|
| 294 |
+
pkg crypto/x509, func ParseDERCRL //deprecated #50674
|
| 295 |
+
pkg crypto/x509, method (*Certificate) CheckCRLSignature //deprecated #50674
|
| 296 |
+
pkg crypto/x509, method (*Certificate) CreateCRL //deprecated #50674
|
| 297 |
+
pkg crypto/x509/pkix, type CertificateList //deprecated #50674
|
| 298 |
+
pkg crypto/x509/pkix, type TBSCertificateList //deprecated #50674
|
| 299 |
+
pkg go/doc, func Synopsis //deprecated #51082
|
| 300 |
+
pkg go/doc, func ToHTML //deprecated #51082
|
| 301 |
+
pkg go/doc, func ToText //deprecated #51082
|
| 302 |
+
pkg io/ioutil, func NopCloser //deprecated #42026
|
| 303 |
+
pkg io/ioutil, func ReadAll //deprecated #42026
|
| 304 |
+
pkg io/ioutil, func ReadDir //deprecated #42026
|
| 305 |
+
pkg io/ioutil, func ReadFile //deprecated #42026
|
| 306 |
+
pkg io/ioutil, func TempDir //deprecated #42026
|
| 307 |
+
pkg io/ioutil, func TempFile //deprecated #42026
|
| 308 |
+
pkg io/ioutil, func WriteFile //deprecated #42026
|
| 309 |
+
pkg io/ioutil, var Discard //deprecated #42026
|
api/go1.2.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.20.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.21.txt
ADDED
|
@@ -0,0 +1,426 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bytes, func ContainsFunc([]uint8, func(int32) bool) bool #54386
|
| 2 |
+
pkg bytes, method (*Buffer) AvailableBuffer() []uint8 #53685
|
| 3 |
+
pkg bytes, method (*Buffer) Available() int #53685
|
| 4 |
+
pkg cmp, func Compare[$0 Ordered]($0, $0) int #59488
|
| 5 |
+
pkg cmp, func Less[$0 Ordered]($0, $0) bool #59488
|
| 6 |
+
pkg cmp, type Ordered interface {} #59488
|
| 7 |
+
pkg context, func AfterFunc(Context, func()) func() bool #57928
|
| 8 |
+
pkg context, func WithDeadlineCause(Context, time.Time, error) (Context, CancelFunc) #56661
|
| 9 |
+
pkg context, func WithoutCancel(Context) Context #40221
|
| 10 |
+
pkg context, func WithTimeoutCause(Context, time.Duration, error) (Context, CancelFunc) #56661
|
| 11 |
+
pkg crypto/elliptic, func GenerateKey //deprecated #52221
|
| 12 |
+
pkg crypto/elliptic, func Marshal //deprecated #52221
|
| 13 |
+
pkg crypto/elliptic, func Unmarshal //deprecated #52221
|
| 14 |
+
pkg crypto/elliptic, method (*CurveParams) Add //deprecated #34648
|
| 15 |
+
pkg crypto/elliptic, method (*CurveParams) Double //deprecated #34648
|
| 16 |
+
pkg crypto/elliptic, method (*CurveParams) IsOnCurve //deprecated #34648
|
| 17 |
+
pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult //deprecated #34648
|
| 18 |
+
pkg crypto/elliptic, method (*CurveParams) ScalarMult //deprecated #34648
|
| 19 |
+
pkg crypto/elliptic, type Curve interface, Add //deprecated #52221
|
| 20 |
+
pkg crypto/elliptic, type Curve interface, Double //deprecated #52221
|
| 21 |
+
pkg crypto/elliptic, type Curve interface, IsOnCurve //deprecated #52221
|
| 22 |
+
pkg crypto/elliptic, type Curve interface, ScalarBaseMult //deprecated #52221
|
| 23 |
+
pkg crypto/elliptic, type Curve interface, ScalarMult //deprecated #52221
|
| 24 |
+
pkg crypto/rsa, func GenerateMultiPrimeKey //deprecated #56921
|
| 25 |
+
pkg crypto/rsa, type PrecomputedValues struct, CRTValues //deprecated #56921
|
| 26 |
+
pkg crypto/tls, const QUICEncryptionLevelApplication = 3 #44886
|
| 27 |
+
pkg crypto/tls, const QUICEncryptionLevelApplication QUICEncryptionLevel #44886
|
| 28 |
+
pkg crypto/tls, const QUICEncryptionLevelEarly = 1 #60107
|
| 29 |
+
pkg crypto/tls, const QUICEncryptionLevelEarly QUICEncryptionLevel #60107
|
| 30 |
+
pkg crypto/tls, const QUICEncryptionLevelHandshake = 2 #44886
|
| 31 |
+
pkg crypto/tls, const QUICEncryptionLevelHandshake QUICEncryptionLevel #44886
|
| 32 |
+
pkg crypto/tls, const QUICEncryptionLevelInitial = 0 #44886
|
| 33 |
+
pkg crypto/tls, const QUICEncryptionLevelInitial QUICEncryptionLevel #44886
|
| 34 |
+
pkg crypto/tls, const QUICHandshakeDone = 7 #44886
|
| 35 |
+
pkg crypto/tls, const QUICHandshakeDone QUICEventKind #44886
|
| 36 |
+
pkg crypto/tls, const QUICNoEvent = 0 #44886
|
| 37 |
+
pkg crypto/tls, const QUICNoEvent QUICEventKind #44886
|
| 38 |
+
pkg crypto/tls, const QUICRejectedEarlyData = 6 #60107
|
| 39 |
+
pkg crypto/tls, const QUICRejectedEarlyData QUICEventKind #60107
|
| 40 |
+
pkg crypto/tls, const QUICSetReadSecret = 1 #44886
|
| 41 |
+
pkg crypto/tls, const QUICSetReadSecret QUICEventKind #44886
|
| 42 |
+
pkg crypto/tls, const QUICSetWriteSecret = 2 #44886
|
| 43 |
+
pkg crypto/tls, const QUICSetWriteSecret QUICEventKind #44886
|
| 44 |
+
pkg crypto/tls, const QUICTransportParameters = 4 #44886
|
| 45 |
+
pkg crypto/tls, const QUICTransportParameters QUICEventKind #44886
|
| 46 |
+
pkg crypto/tls, const QUICTransportParametersRequired = 5 #44886
|
| 47 |
+
pkg crypto/tls, const QUICTransportParametersRequired QUICEventKind #44886
|
| 48 |
+
pkg crypto/tls, const QUICWriteData = 3 #44886
|
| 49 |
+
pkg crypto/tls, const QUICWriteData QUICEventKind #44886
|
| 50 |
+
pkg crypto/tls, func NewResumptionState([]uint8, *SessionState) (*ClientSessionState, error) #60105
|
| 51 |
+
pkg crypto/tls, func ParseSessionState([]uint8) (*SessionState, error) #60105
|
| 52 |
+
pkg crypto/tls, func QUICClient(*QUICConfig) *QUICConn #44886
|
| 53 |
+
pkg crypto/tls, func QUICServer(*QUICConfig) *QUICConn #44886
|
| 54 |
+
pkg crypto/tls, func VersionName(uint16) string #46308
|
| 55 |
+
pkg crypto/tls, method (AlertError) Error() string #44886
|
| 56 |
+
pkg crypto/tls, method (*ClientSessionState) ResumptionState() ([]uint8, *SessionState, error) #60105
|
| 57 |
+
pkg crypto/tls, method (*Config) DecryptTicket([]uint8, ConnectionState) (*SessionState, error) #60105
|
| 58 |
+
pkg crypto/tls, method (*Config) EncryptTicket(ConnectionState, *SessionState) ([]uint8, error) #60105
|
| 59 |
+
pkg crypto/tls, method (*QUICConn) Close() error #44886
|
| 60 |
+
pkg crypto/tls, method (*QUICConn) ConnectionState() ConnectionState #44886
|
| 61 |
+
pkg crypto/tls, method (*QUICConn) HandleData(QUICEncryptionLevel, []uint8) error #44886
|
| 62 |
+
pkg crypto/tls, method (*QUICConn) NextEvent() QUICEvent #44886
|
| 63 |
+
pkg crypto/tls, method (*QUICConn) SendSessionTicket(QUICSessionTicketOptions) error #60107
|
| 64 |
+
pkg crypto/tls, type QUICSessionTicketOptions struct #60107
|
| 65 |
+
pkg crypto/tls, type QUICSessionTicketOptions struct, EarlyData bool #60107
|
| 66 |
+
pkg crypto/tls, method (*QUICConn) SetTransportParameters([]uint8) #44886
|
| 67 |
+
pkg crypto/tls, method (*QUICConn) Start(context.Context) error #44886
|
| 68 |
+
pkg crypto/tls, method (QUICEncryptionLevel) String() string #44886
|
| 69 |
+
pkg crypto/tls, method (*SessionState) Bytes() ([]uint8, error) #60105
|
| 70 |
+
pkg crypto/tls, type AlertError uint8 #44886
|
| 71 |
+
pkg crypto/tls, type Config struct, UnwrapSession func([]uint8, ConnectionState) (*SessionState, error) #60105
|
| 72 |
+
pkg crypto/tls, type Config struct, WrapSession func(ConnectionState, *SessionState) ([]uint8, error) #60105
|
| 73 |
+
pkg crypto/tls, type QUICConfig struct #44886
|
| 74 |
+
pkg crypto/tls, type QUICConfig struct, TLSConfig *Config #44886
|
| 75 |
+
pkg crypto/tls, type QUICConn struct #44886
|
| 76 |
+
pkg crypto/tls, type QUICEncryptionLevel int #44886
|
| 77 |
+
pkg crypto/tls, type QUICEventKind int #44886
|
| 78 |
+
pkg crypto/tls, type QUICEvent struct #44886
|
| 79 |
+
pkg crypto/tls, type QUICEvent struct, Data []uint8 #44886
|
| 80 |
+
pkg crypto/tls, type QUICEvent struct, Kind QUICEventKind #44886
|
| 81 |
+
pkg crypto/tls, type QUICEvent struct, Level QUICEncryptionLevel #44886
|
| 82 |
+
pkg crypto/tls, type QUICEvent struct, Suite uint16 #44886
|
| 83 |
+
pkg crypto/tls, type SessionState struct #60105
|
| 84 |
+
pkg crypto/tls, type SessionState struct, EarlyData bool #60107
|
| 85 |
+
pkg crypto/tls, type SessionState struct, Extra [][]uint8 #60539
|
| 86 |
+
pkg crypto/x509, type RevocationListEntry struct #53573
|
| 87 |
+
pkg crypto/x509, type RevocationListEntry struct, Extensions []pkix.Extension #53573
|
| 88 |
+
pkg crypto/x509, type RevocationListEntry struct, ExtraExtensions []pkix.Extension #53573
|
| 89 |
+
pkg crypto/x509, type RevocationListEntry struct, Raw []uint8 #53573
|
| 90 |
+
pkg crypto/x509, type RevocationListEntry struct, ReasonCode int #53573
|
| 91 |
+
pkg crypto/x509, type RevocationListEntry struct, RevocationTime time.Time #53573
|
| 92 |
+
pkg crypto/x509, type RevocationListEntry struct, SerialNumber *big.Int #53573
|
| 93 |
+
pkg crypto/x509, type RevocationList struct, RevokedCertificateEntries []RevocationListEntry #53573
|
| 94 |
+
pkg crypto/x509, type RevocationList struct, RevokedCertificates //deprecated #53573
|
| 95 |
+
pkg debug/elf, const COMPRESS_ZSTD = 2 #55107
|
| 96 |
+
pkg debug/elf, const COMPRESS_ZSTD CompressionType #55107
|
| 97 |
+
pkg debug/elf, const DF_1_CONFALT = 8192 #56887
|
| 98 |
+
pkg debug/elf, const DF_1_CONFALT DynFlag1 #56887
|
| 99 |
+
pkg debug/elf, const DF_1_DIRECT = 256 #56887
|
| 100 |
+
pkg debug/elf, const DF_1_DIRECT DynFlag1 #56887
|
| 101 |
+
pkg debug/elf, const DF_1_DISPRELDNE = 32768 #56887
|
| 102 |
+
pkg debug/elf, const DF_1_DISPRELDNE DynFlag1 #56887
|
| 103 |
+
pkg debug/elf, const DF_1_DISPRELPND = 65536 #56887
|
| 104 |
+
pkg debug/elf, const DF_1_DISPRELPND DynFlag1 #56887
|
| 105 |
+
pkg debug/elf, const DF_1_EDITED = 2097152 #56887
|
| 106 |
+
pkg debug/elf, const DF_1_EDITED DynFlag1 #56887
|
| 107 |
+
pkg debug/elf, const DF_1_ENDFILTEE = 16384 #56887
|
| 108 |
+
pkg debug/elf, const DF_1_ENDFILTEE DynFlag1 #56887
|
| 109 |
+
pkg debug/elf, const DF_1_GLOBAL = 2 #56887
|
| 110 |
+
pkg debug/elf, const DF_1_GLOBAL DynFlag1 #56887
|
| 111 |
+
pkg debug/elf, const DF_1_GLOBAUDIT = 16777216 #56887
|
| 112 |
+
pkg debug/elf, const DF_1_GLOBAUDIT DynFlag1 #56887
|
| 113 |
+
pkg debug/elf, const DF_1_GROUP = 4 #56887
|
| 114 |
+
pkg debug/elf, const DF_1_GROUP DynFlag1 #56887
|
| 115 |
+
pkg debug/elf, const DF_1_IGNMULDEF = 262144 #56887
|
| 116 |
+
pkg debug/elf, const DF_1_IGNMULDEF DynFlag1 #56887
|
| 117 |
+
pkg debug/elf, const DF_1_INITFIRST = 32 #56887
|
| 118 |
+
pkg debug/elf, const DF_1_INITFIRST DynFlag1 #56887
|
| 119 |
+
pkg debug/elf, const DF_1_INTERPOSE = 1024 #56887
|
| 120 |
+
pkg debug/elf, const DF_1_INTERPOSE DynFlag1 #56887
|
| 121 |
+
pkg debug/elf, const DF_1_KMOD = 268435456 #56887
|
| 122 |
+
pkg debug/elf, const DF_1_KMOD DynFlag1 #56887
|
| 123 |
+
pkg debug/elf, const DF_1_LOADFLTR = 16 #56887
|
| 124 |
+
pkg debug/elf, const DF_1_LOADFLTR DynFlag1 #56887
|
| 125 |
+
pkg debug/elf, const DF_1_NOCOMMON = 1073741824 #56887
|
| 126 |
+
pkg debug/elf, const DF_1_NOCOMMON DynFlag1 #56887
|
| 127 |
+
pkg debug/elf, const DF_1_NODEFLIB = 2048 #56887
|
| 128 |
+
pkg debug/elf, const DF_1_NODEFLIB DynFlag1 #56887
|
| 129 |
+
pkg debug/elf, const DF_1_NODELETE = 8 #56887
|
| 130 |
+
pkg debug/elf, const DF_1_NODELETE DynFlag1 #56887
|
| 131 |
+
pkg debug/elf, const DF_1_NODIRECT = 131072 #56887
|
| 132 |
+
pkg debug/elf, const DF_1_NODIRECT DynFlag1 #56887
|
| 133 |
+
pkg debug/elf, const DF_1_NODUMP = 4096 #56887
|
| 134 |
+
pkg debug/elf, const DF_1_NODUMP DynFlag1 #56887
|
| 135 |
+
pkg debug/elf, const DF_1_NOHDR = 1048576 #56887
|
| 136 |
+
pkg debug/elf, const DF_1_NOHDR DynFlag1 #56887
|
| 137 |
+
pkg debug/elf, const DF_1_NOKSYMS = 524288 #56887
|
| 138 |
+
pkg debug/elf, const DF_1_NOKSYMS DynFlag1 #56887
|
| 139 |
+
pkg debug/elf, const DF_1_NOOPEN = 64 #56887
|
| 140 |
+
pkg debug/elf, const DF_1_NOOPEN DynFlag1 #56887
|
| 141 |
+
pkg debug/elf, const DF_1_NORELOC = 4194304 #56887
|
| 142 |
+
pkg debug/elf, const DF_1_NORELOC DynFlag1 #56887
|
| 143 |
+
pkg debug/elf, const DF_1_NOW = 1 #56887
|
| 144 |
+
pkg debug/elf, const DF_1_NOW DynFlag1 #56887
|
| 145 |
+
pkg debug/elf, const DF_1_ORIGIN = 128 #56887
|
| 146 |
+
pkg debug/elf, const DF_1_ORIGIN DynFlag1 #56887
|
| 147 |
+
pkg debug/elf, const DF_1_PIE = 134217728 #56887
|
| 148 |
+
pkg debug/elf, const DF_1_PIE DynFlag1 #56887
|
| 149 |
+
pkg debug/elf, const DF_1_SINGLETON = 33554432 #56887
|
| 150 |
+
pkg debug/elf, const DF_1_SINGLETON DynFlag1 #56887
|
| 151 |
+
pkg debug/elf, const DF_1_STUB = 67108864 #56887
|
| 152 |
+
pkg debug/elf, const DF_1_STUB DynFlag1 #56887
|
| 153 |
+
pkg debug/elf, const DF_1_SYMINTPOSE = 8388608 #56887
|
| 154 |
+
pkg debug/elf, const DF_1_SYMINTPOSE DynFlag1 #56887
|
| 155 |
+
pkg debug/elf, const DF_1_TRANS = 512 #56887
|
| 156 |
+
pkg debug/elf, const DF_1_TRANS DynFlag1 #56887
|
| 157 |
+
pkg debug/elf, const DF_1_WEAKFILTER = 536870912 #56887
|
| 158 |
+
pkg debug/elf, const DF_1_WEAKFILTER DynFlag1 #56887
|
| 159 |
+
pkg debug/elf, const R_PPC64_REL24_P9NOTOC = 124 #60348
|
| 160 |
+
pkg debug/elf, const R_PPC64_REL24_P9NOTOC R_PPC64 #60348
|
| 161 |
+
pkg debug/elf, method (DynFlag1) GoString() string #56887
|
| 162 |
+
pkg debug/elf, method (DynFlag1) String() string #56887
|
| 163 |
+
pkg debug/elf, method (*File) DynValue(DynTag) ([]uint64, error) #56892
|
| 164 |
+
pkg debug/elf, type DynFlag1 uint32 #56887
|
| 165 |
+
pkg encoding/binary, var NativeEndian nativeEndian #57237
|
| 166 |
+
pkg errors, var ErrUnsupported error #41198
|
| 167 |
+
pkg flag, func BoolFunc(string, string, func(string) error) #53747
|
| 168 |
+
pkg flag, method (*FlagSet) BoolFunc(string, string, func(string) error) #53747
|
| 169 |
+
pkg go/ast, func IsGenerated(*File) bool #28089
|
| 170 |
+
pkg go/ast, func NewPackage //deprecated #52463
|
| 171 |
+
pkg go/ast, type File struct, GoVersion string #59033
|
| 172 |
+
pkg go/ast, type Importer //deprecated #52463
|
| 173 |
+
pkg go/ast, type Object //deprecated #52463
|
| 174 |
+
pkg go/ast, type Package //deprecated #52463
|
| 175 |
+
pkg go/ast, type Scope //deprecated #52463
|
| 176 |
+
pkg go/build/constraint, func GoVersion(Expr) string #59033
|
| 177 |
+
pkg go/build, type Directive struct #56986
|
| 178 |
+
pkg go/build, type Directive struct, Pos token.Position #56986
|
| 179 |
+
pkg go/build, type Directive struct, Text string #56986
|
| 180 |
+
pkg go/build, type Package struct, Directives []Directive #56986
|
| 181 |
+
pkg go/build, type Package struct, TestDirectives []Directive #56986
|
| 182 |
+
pkg go/build, type Package struct, XTestDirectives []Directive #56986
|
| 183 |
+
pkg go/token, method (*File) Lines() []int #57708
|
| 184 |
+
pkg go/types, method (*Package) GoVersion() string #61175
|
| 185 |
+
pkg html/template, const ErrJSTemplate = 12 #59584
|
| 186 |
+
pkg html/template, const ErrJSTemplate ErrorCode #59584
|
| 187 |
+
pkg io/fs, func FormatDirEntry(DirEntry) string #54451
|
| 188 |
+
pkg io/fs, func FormatFileInfo(FileInfo) string #54451
|
| 189 |
+
pkg log/slog, const KindAny = 0 #56345
|
| 190 |
+
pkg log/slog, const KindAny Kind #56345
|
| 191 |
+
pkg log/slog, const KindBool = 1 #56345
|
| 192 |
+
pkg log/slog, const KindBool Kind #56345
|
| 193 |
+
pkg log/slog, const KindDuration = 2 #56345
|
| 194 |
+
pkg log/slog, const KindDuration Kind #56345
|
| 195 |
+
pkg log/slog, const KindFloat64 = 3 #56345
|
| 196 |
+
pkg log/slog, const KindFloat64 Kind #56345
|
| 197 |
+
pkg log/slog, const KindGroup = 8 #56345
|
| 198 |
+
pkg log/slog, const KindGroup Kind #56345
|
| 199 |
+
pkg log/slog, const KindInt64 = 4 #56345
|
| 200 |
+
pkg log/slog, const KindInt64 Kind #56345
|
| 201 |
+
pkg log/slog, const KindLogValuer = 9 #56345
|
| 202 |
+
pkg log/slog, const KindLogValuer Kind #56345
|
| 203 |
+
pkg log/slog, const KindString = 5 #56345
|
| 204 |
+
pkg log/slog, const KindString Kind #56345
|
| 205 |
+
pkg log/slog, const KindTime = 6 #56345
|
| 206 |
+
pkg log/slog, const KindTime Kind #56345
|
| 207 |
+
pkg log/slog, const KindUint64 = 7 #56345
|
| 208 |
+
pkg log/slog, const KindUint64 Kind #56345
|
| 209 |
+
pkg log/slog, const LevelDebug = -4 #56345
|
| 210 |
+
pkg log/slog, const LevelDebug Level #56345
|
| 211 |
+
pkg log/slog, const LevelError = 8 #56345
|
| 212 |
+
pkg log/slog, const LevelError Level #56345
|
| 213 |
+
pkg log/slog, const LevelInfo = 0 #56345
|
| 214 |
+
pkg log/slog, const LevelInfo Level #56345
|
| 215 |
+
pkg log/slog, const LevelKey ideal-string #56345
|
| 216 |
+
pkg log/slog, const LevelKey = "level" #56345
|
| 217 |
+
pkg log/slog, const LevelWarn = 4 #56345
|
| 218 |
+
pkg log/slog, const LevelWarn Level #56345
|
| 219 |
+
pkg log/slog, const MessageKey ideal-string #56345
|
| 220 |
+
pkg log/slog, const MessageKey = "msg" #56345
|
| 221 |
+
pkg log/slog, const SourceKey ideal-string #56345
|
| 222 |
+
pkg log/slog, const SourceKey = "source" #56345
|
| 223 |
+
pkg log/slog, const TimeKey ideal-string #56345
|
| 224 |
+
pkg log/slog, const TimeKey = "time" #56345
|
| 225 |
+
pkg log/slog, func Any(string, interface{}) Attr #56345
|
| 226 |
+
pkg log/slog, func AnyValue(interface{}) Value #56345
|
| 227 |
+
pkg log/slog, func Bool(string, bool) Attr #56345
|
| 228 |
+
pkg log/slog, func BoolValue(bool) Value #56345
|
| 229 |
+
pkg log/slog, func DebugContext(context.Context, string, ...interface{}) #61200
|
| 230 |
+
pkg log/slog, func Debug(string, ...interface{}) #56345
|
| 231 |
+
pkg log/slog, func Default() *Logger #56345
|
| 232 |
+
pkg log/slog, func Duration(string, time.Duration) Attr #56345
|
| 233 |
+
pkg log/slog, func DurationValue(time.Duration) Value #56345
|
| 234 |
+
pkg log/slog, func ErrorContext(context.Context, string, ...interface{}) #61200
|
| 235 |
+
pkg log/slog, func Error(string, ...interface{}) #56345
|
| 236 |
+
pkg log/slog, func Float64(string, float64) Attr #56345
|
| 237 |
+
pkg log/slog, func Float64Value(float64) Value #56345
|
| 238 |
+
pkg log/slog, func Group(string, ...interface{}) Attr #59204
|
| 239 |
+
pkg log/slog, func GroupValue(...Attr) Value #56345
|
| 240 |
+
pkg log/slog, func InfoContext(context.Context, string, ...interface{}) #61200
|
| 241 |
+
pkg log/slog, func Info(string, ...interface{}) #56345
|
| 242 |
+
pkg log/slog, func Int64(string, int64) Attr #56345
|
| 243 |
+
pkg log/slog, func Int64Value(int64) Value #56345
|
| 244 |
+
pkg log/slog, func Int(string, int) Attr #56345
|
| 245 |
+
pkg log/slog, func IntValue(int) Value #56345
|
| 246 |
+
pkg log/slog, func LogAttrs(context.Context, Level, string, ...Attr) #56345
|
| 247 |
+
pkg log/slog, func Log(context.Context, Level, string, ...interface{}) #56345
|
| 248 |
+
pkg log/slog, func New(Handler) *Logger #56345
|
| 249 |
+
pkg log/slog, func NewJSONHandler(io.Writer, *HandlerOptions) *JSONHandler #59339
|
| 250 |
+
pkg log/slog, func NewLogLogger(Handler, Level) *log.Logger #56345
|
| 251 |
+
pkg log/slog, func NewRecord(time.Time, Level, string, uintptr) Record #56345
|
| 252 |
+
pkg log/slog, func NewTextHandler(io.Writer, *HandlerOptions) *TextHandler #59339
|
| 253 |
+
pkg log/slog, func SetDefault(*Logger) #56345
|
| 254 |
+
pkg log/slog, func String(string, string) Attr #56345
|
| 255 |
+
pkg log/slog, func StringValue(string) Value #56345
|
| 256 |
+
pkg log/slog, func Time(string, time.Time) Attr #56345
|
| 257 |
+
pkg log/slog, func TimeValue(time.Time) Value #56345
|
| 258 |
+
pkg log/slog, func Uint64(string, uint64) Attr #56345
|
| 259 |
+
pkg log/slog, func Uint64Value(uint64) Value #56345
|
| 260 |
+
pkg log/slog, func WarnContext(context.Context, string, ...interface{}) #61200
|
| 261 |
+
pkg log/slog, func Warn(string, ...interface{}) #56345
|
| 262 |
+
pkg log/slog, func With(...interface{}) *Logger #56345
|
| 263 |
+
pkg log/slog, method (Attr) Equal(Attr) bool #56345
|
| 264 |
+
pkg log/slog, method (Attr) String() string #56345
|
| 265 |
+
pkg log/slog, method (*JSONHandler) Enabled(context.Context, Level) bool #56345
|
| 266 |
+
pkg log/slog, method (*JSONHandler) Handle(context.Context, Record) error #56345
|
| 267 |
+
pkg log/slog, method (*JSONHandler) WithAttrs([]Attr) Handler #56345
|
| 268 |
+
pkg log/slog, method (*JSONHandler) WithGroup(string) Handler #56345
|
| 269 |
+
pkg log/slog, method (Kind) String() string #56345
|
| 270 |
+
pkg log/slog, method (Level) Level() Level #56345
|
| 271 |
+
pkg log/slog, method (Level) MarshalJSON() ([]uint8, error) #56345
|
| 272 |
+
pkg log/slog, method (Level) MarshalText() ([]uint8, error) #56345
|
| 273 |
+
pkg log/slog, method (Level) String() string #56345
|
| 274 |
+
pkg log/slog, method (*Level) UnmarshalJSON([]uint8) error #56345
|
| 275 |
+
pkg log/slog, method (*Level) UnmarshalText([]uint8) error #56345
|
| 276 |
+
pkg log/slog, method (*LevelVar) Level() Level #56345
|
| 277 |
+
pkg log/slog, method (*LevelVar) MarshalText() ([]uint8, error) #56345
|
| 278 |
+
pkg log/slog, method (*LevelVar) Set(Level) #56345
|
| 279 |
+
pkg log/slog, method (*LevelVar) String() string #56345
|
| 280 |
+
pkg log/slog, method (*LevelVar) UnmarshalText([]uint8) error #56345
|
| 281 |
+
pkg log/slog, method (*Logger) DebugContext(context.Context, string, ...interface{}) #61200
|
| 282 |
+
pkg log/slog, method (*Logger) Debug(string, ...interface{}) #56345
|
| 283 |
+
pkg log/slog, method (*Logger) Enabled(context.Context, Level) bool #56345
|
| 284 |
+
pkg log/slog, method (*Logger) ErrorContext(context.Context, string, ...interface{}) #61200
|
| 285 |
+
pkg log/slog, method (*Logger) Error(string, ...interface{}) #56345
|
| 286 |
+
pkg log/slog, method (*Logger) Handler() Handler #56345
|
| 287 |
+
pkg log/slog, method (*Logger) InfoContext(context.Context, string, ...interface{}) #61200
|
| 288 |
+
pkg log/slog, method (*Logger) Info(string, ...interface{}) #56345
|
| 289 |
+
pkg log/slog, method (*Logger) LogAttrs(context.Context, Level, string, ...Attr) #56345
|
| 290 |
+
pkg log/slog, method (*Logger) Log(context.Context, Level, string, ...interface{}) #56345
|
| 291 |
+
pkg log/slog, method (*Logger) WarnContext(context.Context, string, ...interface{}) #61200
|
| 292 |
+
pkg log/slog, method (*Logger) Warn(string, ...interface{}) #56345
|
| 293 |
+
pkg log/slog, method (*Logger) WithGroup(string) *Logger #56345
|
| 294 |
+
pkg log/slog, method (*Logger) With(...interface{}) *Logger #56345
|
| 295 |
+
pkg log/slog, method (*Record) AddAttrs(...Attr) #56345
|
| 296 |
+
pkg log/slog, method (*Record) Add(...interface{}) #56345
|
| 297 |
+
pkg log/slog, method (Record) Attrs(func(Attr) bool) #59060
|
| 298 |
+
pkg log/slog, method (Record) Clone() Record #56345
|
| 299 |
+
pkg log/slog, method (Record) NumAttrs() int #56345
|
| 300 |
+
pkg log/slog, method (*TextHandler) Enabled(context.Context, Level) bool #56345
|
| 301 |
+
pkg log/slog, method (*TextHandler) Handle(context.Context, Record) error #56345
|
| 302 |
+
pkg log/slog, method (*TextHandler) WithAttrs([]Attr) Handler #56345
|
| 303 |
+
pkg log/slog, method (*TextHandler) WithGroup(string) Handler #56345
|
| 304 |
+
pkg log/slog, method (Value) Any() interface{} #56345
|
| 305 |
+
pkg log/slog, method (Value) Bool() bool #56345
|
| 306 |
+
pkg log/slog, method (Value) Duration() time.Duration #56345
|
| 307 |
+
pkg log/slog, method (Value) Equal(Value) bool #56345
|
| 308 |
+
pkg log/slog, method (Value) Float64() float64 #56345
|
| 309 |
+
pkg log/slog, method (Value) Group() []Attr #56345
|
| 310 |
+
pkg log/slog, method (Value) Int64() int64 #56345
|
| 311 |
+
pkg log/slog, method (Value) Kind() Kind #56345
|
| 312 |
+
pkg log/slog, method (Value) LogValuer() LogValuer #56345
|
| 313 |
+
pkg log/slog, method (Value) Resolve() Value #56345
|
| 314 |
+
pkg log/slog, method (Value) String() string #56345
|
| 315 |
+
pkg log/slog, method (Value) Time() time.Time #56345
|
| 316 |
+
pkg log/slog, method (Value) Uint64() uint64 #56345
|
| 317 |
+
pkg log/slog, type Attr struct #56345
|
| 318 |
+
pkg log/slog, type Attr struct, Key string #56345
|
| 319 |
+
pkg log/slog, type Attr struct, Value Value #56345
|
| 320 |
+
pkg log/slog, type Handler interface, Enabled(context.Context, Level) bool #56345
|
| 321 |
+
pkg log/slog, type Handler interface { Enabled, Handle, WithAttrs, WithGroup } #56345
|
| 322 |
+
pkg log/slog, type Handler interface, Handle(context.Context, Record) error #56345
|
| 323 |
+
pkg log/slog, type Handler interface, WithAttrs([]Attr) Handler #56345
|
| 324 |
+
pkg log/slog, type Handler interface, WithGroup(string) Handler #56345
|
| 325 |
+
pkg log/slog, type HandlerOptions struct #56345
|
| 326 |
+
pkg log/slog, type HandlerOptions struct, AddSource bool #56345
|
| 327 |
+
pkg log/slog, type HandlerOptions struct, Level Leveler #56345
|
| 328 |
+
pkg log/slog, type HandlerOptions struct, ReplaceAttr func([]string, Attr) Attr #56345
|
| 329 |
+
pkg log/slog, type JSONHandler struct #56345
|
| 330 |
+
pkg log/slog, type Kind int #56345
|
| 331 |
+
pkg log/slog, type Leveler interface { Level } #56345
|
| 332 |
+
pkg log/slog, type Leveler interface, Level() Level #56345
|
| 333 |
+
pkg log/slog, type Level int #56345
|
| 334 |
+
pkg log/slog, type LevelVar struct #56345
|
| 335 |
+
pkg log/slog, type Logger struct #56345
|
| 336 |
+
pkg log/slog, type LogValuer interface { LogValue } #56345
|
| 337 |
+
pkg log/slog, type LogValuer interface, LogValue() Value #56345
|
| 338 |
+
pkg log/slog, type Record struct #56345
|
| 339 |
+
pkg log/slog, type Record struct, Level Level #56345
|
| 340 |
+
pkg log/slog, type Record struct, Message string #56345
|
| 341 |
+
pkg log/slog, type Record struct, PC uintptr #56345
|
| 342 |
+
pkg log/slog, type Record struct, Time time.Time #56345
|
| 343 |
+
pkg log/slog, type Source struct #59280
|
| 344 |
+
pkg log/slog, type Source struct, File string #59280
|
| 345 |
+
pkg log/slog, type Source struct, Function string #59280
|
| 346 |
+
pkg log/slog, type Source struct, Line int #59280
|
| 347 |
+
pkg log/slog, type TextHandler struct #56345
|
| 348 |
+
pkg log/slog, type Value struct #56345
|
| 349 |
+
pkg maps, func Clone[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0) $0 #57436
|
| 350 |
+
pkg maps, func Copy[$0 interface{ ~map[$2]$3 }, $1 interface{ ~map[$2]$3 }, $2 comparable, $3 interface{}]($0, $1) #57436
|
| 351 |
+
pkg maps, func DeleteFunc[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0, func($1, $2) bool) #57436
|
| 352 |
+
pkg maps, func Equal[$0 interface{ ~map[$2]$3 }, $1 interface{ ~map[$2]$3 }, $2 comparable, $3 comparable]($0, $1) bool #57436
|
| 353 |
+
pkg maps, func EqualFunc[$0 interface{ ~map[$2]$3 }, $1 interface{ ~map[$2]$4 }, $2 comparable, $3 interface{}, $4 interface{}]($0, $1, func($3, $4) bool) bool #57436
|
| 354 |
+
pkg math/big, method (*Int) Float64() (float64, Accuracy) #56984
|
| 355 |
+
pkg net/http, method (*ProtocolError) Is(error) bool #41198
|
| 356 |
+
pkg net/http, method (*ResponseController) EnableFullDuplex() error #57786
|
| 357 |
+
pkg net/http, var ErrSchemeMismatch error #44855
|
| 358 |
+
pkg net, method (*Dialer) MultipathTCP() bool #56539
|
| 359 |
+
pkg net, method (*Dialer) SetMultipathTCP(bool) #56539
|
| 360 |
+
pkg net, method (*ListenConfig) MultipathTCP() bool #56539
|
| 361 |
+
pkg net, method (*ListenConfig) SetMultipathTCP(bool) #56539
|
| 362 |
+
pkg net, method (*TCPConn) MultipathTCP() (bool, error) #59166
|
| 363 |
+
pkg reflect, method (Value) Clear() #55002
|
| 364 |
+
pkg reflect, type SliceHeader //deprecated #56906
|
| 365 |
+
pkg reflect, type StringHeader //deprecated #56906
|
| 366 |
+
pkg regexp, method (*Regexp) MarshalText() ([]uint8, error) #46159
|
| 367 |
+
pkg regexp, method (*Regexp) UnmarshalText([]uint8) error #46159
|
| 368 |
+
pkg runtime, method (*PanicNilError) Error() string #25448
|
| 369 |
+
pkg runtime, method (*PanicNilError) RuntimeError() #25448
|
| 370 |
+
pkg runtime, method (*Pinner) Pin(interface{}) #46787
|
| 371 |
+
pkg runtime, method (*Pinner) Unpin() #46787
|
| 372 |
+
pkg runtime, type PanicNilError struct #25448
|
| 373 |
+
pkg runtime, type Pinner struct #46787
|
| 374 |
+
pkg slices, func BinarySearch[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0, $1) (int, bool) #60091
|
| 375 |
+
pkg slices, func BinarySearchFunc[$0 interface{ ~[]$1 }, $1 interface{}, $2 interface{}]($0, $2, func($1, $2) int) (int, bool) #60091
|
| 376 |
+
pkg slices, func Clip[$0 interface{ ~[]$1 }, $1 interface{}]($0) $0 #57433
|
| 377 |
+
pkg slices, func Clone[$0 interface{ ~[]$1 }, $1 interface{}]($0) $0 #57433
|
| 378 |
+
pkg slices, func Compact[$0 interface{ ~[]$1 }, $1 comparable]($0) $0 #57433
|
| 379 |
+
pkg slices, func CompactFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) bool) $0 #57433
|
| 380 |
+
pkg slices, func Compare[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0, $0) int #60091
|
| 381 |
+
pkg slices, func CompareFunc[$0 interface{ ~[]$2 }, $1 interface{ ~[]$3 }, $2 interface{}, $3 interface{}]($0, $1, func($2, $3) int) int #60091
|
| 382 |
+
pkg slices, func Contains[$0 interface{ ~[]$1 }, $1 comparable]($0, $1) bool #57433
|
| 383 |
+
pkg slices, func ContainsFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1) bool) bool #57433
|
| 384 |
+
pkg slices, func Delete[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, int) $0 #57433
|
| 385 |
+
pkg slices, func DeleteFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1) bool) $0 #54768
|
| 386 |
+
pkg slices, func Equal[$0 interface{ ~[]$1 }, $1 comparable]($0, $0) bool #57433
|
| 387 |
+
pkg slices, func EqualFunc[$0 interface{ ~[]$2 }, $1 interface{ ~[]$3 }, $2 interface{}, $3 interface{}]($0, $1, func($2, $3) bool) bool #57433
|
| 388 |
+
pkg slices, func Grow[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) $0 #57433
|
| 389 |
+
pkg slices, func Index[$0 interface{ ~[]$1 }, $1 comparable]($0, $1) int #57433
|
| 390 |
+
pkg slices, func IndexFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1) bool) int #57433
|
| 391 |
+
pkg slices, func Insert[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, ...$1) $0 #57433
|
| 392 |
+
pkg slices, func IsSorted[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) bool #60091
|
| 393 |
+
pkg slices, func IsSortedFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) bool #60091
|
| 394 |
+
pkg slices, func Max[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091
|
| 395 |
+
pkg slices, func MaxFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091
|
| 396 |
+
pkg slices, func Min[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091
|
| 397 |
+
pkg slices, func MinFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091
|
| 398 |
+
pkg slices, func Replace[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, int, ...$1) $0 #57433
|
| 399 |
+
pkg slices, func Reverse[$0 interface{ ~[]$1 }, $1 interface{}]($0) #58565
|
| 400 |
+
pkg slices, func Sort[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) #60091
|
| 401 |
+
pkg slices, func SortFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) #60091
|
| 402 |
+
pkg slices, func SortStableFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) #60091
|
| 403 |
+
pkg strings, func ContainsFunc(string, func(int32) bool) bool #54386
|
| 404 |
+
pkg sync, func OnceFunc(func()) func() #56102
|
| 405 |
+
pkg sync, func OnceValue[$0 interface{}](func() $0) func() $0 #56102
|
| 406 |
+
pkg sync, func OnceValues[$0 interface{}, $1 interface{}](func() ($0, $1)) func() ($0, $1) #56102
|
| 407 |
+
pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Jail int #46259
|
| 408 |
+
pkg syscall (freebsd-386), type SysProcAttr struct, Jail int #46259
|
| 409 |
+
pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Jail int #46259
|
| 410 |
+
pkg syscall (freebsd-amd64), type SysProcAttr struct, Jail int #46259
|
| 411 |
+
pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Jail int #46259
|
| 412 |
+
pkg syscall (freebsd-arm64), type SysProcAttr struct, Jail int #46259
|
| 413 |
+
pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Jail int #46259
|
| 414 |
+
pkg syscall (freebsd-arm), type SysProcAttr struct, Jail int #46259
|
| 415 |
+
pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Jail int #46259
|
| 416 |
+
pkg syscall (freebsd-riscv64), type SysProcAttr struct, Jail int #46259
|
| 417 |
+
pkg testing, func Testing() bool #52600
|
| 418 |
+
pkg testing/slogtest, func TestHandler(slog.Handler, func() []map[string]interface{}) error #56345
|
| 419 |
+
pkg unicode, const Version = "15.0.0" #55079
|
| 420 |
+
pkg unicode, var Cypro_Minoan *RangeTable #55079
|
| 421 |
+
pkg unicode, var Kawi *RangeTable #55079
|
| 422 |
+
pkg unicode, var Nag_Mundari *RangeTable #55079
|
| 423 |
+
pkg unicode, var Old_Uyghur *RangeTable #55079
|
| 424 |
+
pkg unicode, var Tangsa *RangeTable #55079
|
| 425 |
+
pkg unicode, var Toto *RangeTable #55079
|
| 426 |
+
pkg unicode, var Vithkuqi *RangeTable #55079
|
api/go1.22.txt
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg archive/tar, method (*Writer) AddFS(fs.FS) error #58000
|
| 2 |
+
pkg archive/zip, method (*Writer) AddFS(fs.FS) error #54898
|
| 3 |
+
pkg cmp, func Or[$0 comparable](...$0) $0 #60204
|
| 4 |
+
pkg crypto/x509, func OIDFromInts([]uint64) (OID, error) #60665
|
| 5 |
+
pkg crypto/x509, method (*CertPool) AddCertWithConstraint(*Certificate, func([]*Certificate) error) #57178
|
| 6 |
+
pkg crypto/x509, method (OID) Equal(OID) bool #60665
|
| 7 |
+
pkg crypto/x509, method (OID) EqualASN1OID(asn1.ObjectIdentifier) bool #60665
|
| 8 |
+
pkg crypto/x509, method (OID) String() string #60665
|
| 9 |
+
pkg crypto/x509, type Certificate struct, Policies []OID #60665
|
| 10 |
+
pkg crypto/x509, type OID struct #60665
|
| 11 |
+
pkg database/sql, method (*Null[$0]) Scan(interface{}) error #60370
|
| 12 |
+
pkg database/sql, method (Null[$0]) Value() (driver.Value, error) #60370
|
| 13 |
+
pkg database/sql, type Null[$0 interface{}] struct #60370
|
| 14 |
+
pkg database/sql, type Null[$0 interface{}] struct, V $0 #60370
|
| 15 |
+
pkg database/sql, type Null[$0 interface{}] struct, Valid bool #60370
|
| 16 |
+
pkg debug/elf, const R_LARCH_64_PCREL = 109 #63725
|
| 17 |
+
pkg debug/elf, const R_LARCH_64_PCREL R_LARCH #63725
|
| 18 |
+
pkg debug/elf, const R_LARCH_ADD6 = 105 #63725
|
| 19 |
+
pkg debug/elf, const R_LARCH_ADD6 R_LARCH #63725
|
| 20 |
+
pkg debug/elf, const R_LARCH_ADD_ULEB128 = 107 #63725
|
| 21 |
+
pkg debug/elf, const R_LARCH_ADD_ULEB128 R_LARCH #63725
|
| 22 |
+
pkg debug/elf, const R_LARCH_ALIGN = 102 #63725
|
| 23 |
+
pkg debug/elf, const R_LARCH_ALIGN R_LARCH #63725
|
| 24 |
+
pkg debug/elf, const R_LARCH_CFA = 104 #63725
|
| 25 |
+
pkg debug/elf, const R_LARCH_CFA R_LARCH #63725
|
| 26 |
+
pkg debug/elf, const R_LARCH_DELETE = 101 #63725
|
| 27 |
+
pkg debug/elf, const R_LARCH_DELETE R_LARCH #63725
|
| 28 |
+
pkg debug/elf, const R_LARCH_PCREL20_S2 = 103 #63725
|
| 29 |
+
pkg debug/elf, const R_LARCH_PCREL20_S2 R_LARCH #63725
|
| 30 |
+
pkg debug/elf, const R_LARCH_SUB6 = 106 #63725
|
| 31 |
+
pkg debug/elf, const R_LARCH_SUB6 R_LARCH #63725
|
| 32 |
+
pkg debug/elf, const R_LARCH_SUB_ULEB128 = 108 #63725
|
| 33 |
+
pkg debug/elf, const R_LARCH_SUB_ULEB128 R_LARCH #63725
|
| 34 |
+
pkg debug/elf, const R_MIPS_PC32 = 248 #61974
|
| 35 |
+
pkg debug/elf, const R_MIPS_PC32 R_MIPS #61974
|
| 36 |
+
pkg encoding/base32, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
|
| 37 |
+
pkg encoding/base32, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693
|
| 38 |
+
pkg encoding/base64, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
|
| 39 |
+
pkg encoding/base64, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693
|
| 40 |
+
pkg encoding/hex, func AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
|
| 41 |
+
pkg encoding/hex, func AppendEncode([]uint8, []uint8) []uint8 #53693
|
| 42 |
+
pkg go/ast, func NewPackage //deprecated #52463
|
| 43 |
+
pkg go/ast, func Unparen(Expr) Expr #60061
|
| 44 |
+
pkg go/ast, type Importer //deprecated #52463
|
| 45 |
+
pkg go/ast, type Object //deprecated #52463
|
| 46 |
+
pkg go/ast, type Package //deprecated #52463
|
| 47 |
+
pkg go/ast, type Scope //deprecated #52463
|
| 48 |
+
pkg go/types, func NewAlias(*TypeName, Type) *Alias #63223
|
| 49 |
+
pkg go/types, func Unalias(Type) Type #63223
|
| 50 |
+
pkg go/types, method (*Alias) Obj() *TypeName #63223
|
| 51 |
+
pkg go/types, method (*Alias) String() string #63223
|
| 52 |
+
pkg go/types, method (*Alias) Underlying() Type #63223
|
| 53 |
+
pkg go/types, method (*Info) PkgNameOf(*ast.ImportSpec) *PkgName #62037
|
| 54 |
+
pkg go/types, method (Checker) PkgNameOf(*ast.ImportSpec) *PkgName #62037
|
| 55 |
+
pkg go/types, type Alias struct #63223
|
| 56 |
+
pkg go/types, type Info struct, FileVersions map[*ast.File]string #62605
|
| 57 |
+
pkg go/version, func Compare(string, string) int #62039
|
| 58 |
+
pkg go/version, func IsValid(string) bool #62039
|
| 59 |
+
pkg go/version, func Lang(string) string #62039
|
| 60 |
+
pkg html/template, const ErrJSTemplate //deprecated #61619
|
| 61 |
+
pkg io, method (*SectionReader) Outer() (ReaderAt, int64, int64) #61870
|
| 62 |
+
pkg log/slog, func SetLogLoggerLevel(Level) Level #62418
|
| 63 |
+
pkg math/big, method (*Rat) FloatPrec() (int, bool) #50489
|
| 64 |
+
pkg math/rand/v2, func ExpFloat64() float64 #61716
|
| 65 |
+
pkg math/rand/v2, func Float32() float32 #61716
|
| 66 |
+
pkg math/rand/v2, func Float64() float64 #61716
|
| 67 |
+
pkg math/rand/v2, func Int() int #61716
|
| 68 |
+
pkg math/rand/v2, func Int32() int32 #61716
|
| 69 |
+
pkg math/rand/v2, func Int32N(int32) int32 #61716
|
| 70 |
+
pkg math/rand/v2, func Int64() int64 #61716
|
| 71 |
+
pkg math/rand/v2, func Int64N(int64) int64 #61716
|
| 72 |
+
pkg math/rand/v2, func IntN(int) int #61716
|
| 73 |
+
pkg math/rand/v2, func N[$0 intType]($0) $0 #61716
|
| 74 |
+
pkg math/rand/v2, func New(Source) *Rand #61716
|
| 75 |
+
pkg math/rand/v2, func NewChaCha8([32]uint8) *ChaCha8 #61716
|
| 76 |
+
pkg math/rand/v2, func NewPCG(uint64, uint64) *PCG #61716
|
| 77 |
+
pkg math/rand/v2, func NewZipf(*Rand, float64, float64, uint64) *Zipf #61716
|
| 78 |
+
pkg math/rand/v2, func NormFloat64() float64 #61716
|
| 79 |
+
pkg math/rand/v2, func Perm(int) []int #61716
|
| 80 |
+
pkg math/rand/v2, func Shuffle(int, func(int, int)) #61716
|
| 81 |
+
pkg math/rand/v2, func Uint32() uint32 #61716
|
| 82 |
+
pkg math/rand/v2, func Uint32N(uint32) uint32 #61716
|
| 83 |
+
pkg math/rand/v2, func Uint64() uint64 #61716
|
| 84 |
+
pkg math/rand/v2, func Uint64N(uint64) uint64 #61716
|
| 85 |
+
pkg math/rand/v2, func UintN(uint) uint #61716
|
| 86 |
+
pkg math/rand/v2, method (*ChaCha8) MarshalBinary() ([]uint8, error) #61716
|
| 87 |
+
pkg math/rand/v2, method (*ChaCha8) Seed([32]uint8) #61716
|
| 88 |
+
pkg math/rand/v2, method (*ChaCha8) Uint64() uint64 #61716
|
| 89 |
+
pkg math/rand/v2, method (*ChaCha8) UnmarshalBinary([]uint8) error #61716
|
| 90 |
+
pkg math/rand/v2, method (*PCG) MarshalBinary() ([]uint8, error) #61716
|
| 91 |
+
pkg math/rand/v2, method (*PCG) Seed(uint64, uint64) #61716
|
| 92 |
+
pkg math/rand/v2, method (*PCG) Uint64() uint64 #61716
|
| 93 |
+
pkg math/rand/v2, method (*PCG) UnmarshalBinary([]uint8) error #61716
|
| 94 |
+
pkg math/rand/v2, method (*Rand) ExpFloat64() float64 #61716
|
| 95 |
+
pkg math/rand/v2, method (*Rand) Float32() float32 #61716
|
| 96 |
+
pkg math/rand/v2, method (*Rand) Float64() float64 #61716
|
| 97 |
+
pkg math/rand/v2, method (*Rand) Int() int #61716
|
| 98 |
+
pkg math/rand/v2, method (*Rand) Int32() int32 #61716
|
| 99 |
+
pkg math/rand/v2, method (*Rand) Int32N(int32) int32 #61716
|
| 100 |
+
pkg math/rand/v2, method (*Rand) Int64() int64 #61716
|
| 101 |
+
pkg math/rand/v2, method (*Rand) Int64N(int64) int64 #61716
|
| 102 |
+
pkg math/rand/v2, method (*Rand) IntN(int) int #61716
|
| 103 |
+
pkg math/rand/v2, method (*Rand) NormFloat64() float64 #61716
|
| 104 |
+
pkg math/rand/v2, method (*Rand) Perm(int) []int #61716
|
| 105 |
+
pkg math/rand/v2, method (*Rand) Shuffle(int, func(int, int)) #61716
|
| 106 |
+
pkg math/rand/v2, method (*Rand) Uint32() uint32 #61716
|
| 107 |
+
pkg math/rand/v2, method (*Rand) Uint32N(uint32) uint32 #61716
|
| 108 |
+
pkg math/rand/v2, method (*Rand) Uint64() uint64 #61716
|
| 109 |
+
pkg math/rand/v2, method (*Rand) Uint64N(uint64) uint64 #61716
|
| 110 |
+
pkg math/rand/v2, method (*Rand) UintN(uint) uint #61716
|
| 111 |
+
pkg math/rand/v2, method (*Zipf) Uint64() uint64 #61716
|
| 112 |
+
pkg math/rand/v2, type ChaCha8 struct #61716
|
| 113 |
+
pkg math/rand/v2, type PCG struct #61716
|
| 114 |
+
pkg math/rand/v2, type Rand struct #61716
|
| 115 |
+
pkg math/rand/v2, type Source interface { Uint64 } #61716
|
| 116 |
+
pkg math/rand/v2, type Source interface, Uint64() uint64 #61716
|
| 117 |
+
pkg math/rand/v2, type Zipf struct #61716
|
| 118 |
+
pkg net, method (*TCPConn) WriteTo(io.Writer) (int64, error) #58808
|
| 119 |
+
pkg net/http, func FileServerFS(fs.FS) Handler #51971
|
| 120 |
+
pkg net/http, func NewFileTransportFS(fs.FS) RoundTripper #51971
|
| 121 |
+
pkg net/http, func ServeFileFS(ResponseWriter, *Request, fs.FS, string) #51971
|
| 122 |
+
pkg net/http, method (*Request) PathValue(string) string #61410
|
| 123 |
+
pkg net/http, method (*Request) SetPathValue(string, string) #61410
|
| 124 |
+
pkg net/netip, method (AddrPort) Compare(AddrPort) int #61642
|
| 125 |
+
pkg os, method (*File) WriteTo(io.Writer) (int64, error) #58808
|
| 126 |
+
pkg reflect, func PtrTo //deprecated #59599
|
| 127 |
+
pkg reflect, func TypeFor[$0 interface{}]() Type #60088
|
| 128 |
+
pkg slices, func Concat[$0 interface{ ~[]$1 }, $1 interface{}](...$0) $0 #56353
|
| 129 |
+
pkg syscall (linux-386), type SysProcAttr struct, PidFD *int #51246
|
| 130 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, PidFD *int #51246
|
| 131 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, PidFD *int #51246
|
| 132 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, PidFD *int #51246
|
| 133 |
+
pkg syscall (linux-arm), type SysProcAttr struct, PidFD *int #51246
|
| 134 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, PidFD *int #51246
|
| 135 |
+
pkg testing/slogtest, func Run(*testing.T, func(*testing.T) slog.Handler, func(*testing.T) map[string]interface{}) #61758
|
api/go1.23.txt
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg archive/tar, type FileInfoNames interface { Gname, IsDir, ModTime, Mode, Name, Size, Sys, Uname } #50102
|
| 2 |
+
pkg archive/tar, type FileInfoNames interface, Gname() (string, error) #50102
|
| 3 |
+
pkg archive/tar, type FileInfoNames interface, IsDir() bool #50102
|
| 4 |
+
pkg archive/tar, type FileInfoNames interface, ModTime() time.Time #50102
|
| 5 |
+
pkg archive/tar, type FileInfoNames interface, Mode() fs.FileMode #50102
|
| 6 |
+
pkg archive/tar, type FileInfoNames interface, Name() string #50102
|
| 7 |
+
pkg archive/tar, type FileInfoNames interface, Size() int64 #50102
|
| 8 |
+
pkg archive/tar, type FileInfoNames interface, Sys() interface{} #50102
|
| 9 |
+
pkg archive/tar, type FileInfoNames interface, Uname() (string, error) #50102
|
| 10 |
+
pkg crypto/tls, const QUICResumeSession = 8 #63691
|
| 11 |
+
pkg crypto/tls, const QUICResumeSession QUICEventKind #63691
|
| 12 |
+
pkg crypto/tls, const QUICStoreSession = 9 #63691
|
| 13 |
+
pkg crypto/tls, const QUICStoreSession QUICEventKind #63691
|
| 14 |
+
pkg crypto/tls, method (*ECHRejectionError) Error() string #63369
|
| 15 |
+
pkg crypto/tls, method (*QUICConn) StoreSession(*SessionState) error #63691
|
| 16 |
+
pkg crypto/tls, type Config struct, EncryptedClientHelloConfigList []uint8 #63369
|
| 17 |
+
pkg crypto/tls, type Config struct, EncryptedClientHelloRejectionVerify func(ConnectionState) error #63369
|
| 18 |
+
pkg crypto/tls, type ConnectionState struct, ECHAccepted bool #63369
|
| 19 |
+
pkg crypto/tls, type ECHRejectionError struct #63369
|
| 20 |
+
pkg crypto/tls, type ECHRejectionError struct, RetryConfigList []uint8 #63369
|
| 21 |
+
pkg crypto/tls, type QUICConfig struct, EnableSessionEvents bool #63691
|
| 22 |
+
pkg crypto/tls, type QUICEvent struct, SessionState *SessionState #63691
|
| 23 |
+
pkg crypto/tls, type QUICSessionTicketOptions struct, Extra [][]uint8 #63691
|
| 24 |
+
pkg crypto/x509, func ParseOID(string) (OID, error) #66249
|
| 25 |
+
pkg crypto/x509, method (*OID) UnmarshalBinary([]uint8) error #66249
|
| 26 |
+
pkg crypto/x509, method (*OID) UnmarshalText([]uint8) error #66249
|
| 27 |
+
pkg crypto/x509, method (OID) MarshalBinary() ([]uint8, error) #66249
|
| 28 |
+
pkg crypto/x509, method (OID) MarshalText() ([]uint8, error) #66249
|
| 29 |
+
pkg debug/elf, const PT_OPENBSD_NOBTCFI = 1705237480 #66054
|
| 30 |
+
pkg debug/elf, const PT_OPENBSD_NOBTCFI ProgType #66054
|
| 31 |
+
pkg debug/elf, const STT_GNU_IFUNC = 10 #66836
|
| 32 |
+
pkg debug/elf, const STT_GNU_IFUNC SymType #66836
|
| 33 |
+
pkg debug/elf, const STT_RELC = 8 #66836
|
| 34 |
+
pkg debug/elf, const STT_RELC SymType #66836
|
| 35 |
+
pkg debug/elf, const STT_SRELC = 9 #66836
|
| 36 |
+
pkg debug/elf, const STT_SRELC SymType #66836
|
| 37 |
+
pkg encoding/binary, func Append([]uint8, ByteOrder, interface{}) ([]uint8, error) #60023
|
| 38 |
+
pkg encoding/binary, func Decode([]uint8, ByteOrder, interface{}) (int, error) #60023
|
| 39 |
+
pkg encoding/binary, func Encode([]uint8, ByteOrder, interface{}) (int, error) #60023
|
| 40 |
+
pkg go/ast, func Preorder(Node) iter.Seq[Node] #66339
|
| 41 |
+
pkg go/types, method (*Alias) Origin() *Alias #67143
|
| 42 |
+
pkg go/types, method (*Alias) Rhs() Type #66559
|
| 43 |
+
pkg go/types, method (*Alias) SetTypeParams([]*TypeParam) #67143
|
| 44 |
+
pkg go/types, method (*Alias) TypeArgs() *TypeList #67143
|
| 45 |
+
pkg go/types, method (*Alias) TypeParams() *TypeParamList #67143
|
| 46 |
+
pkg go/types, method (*Func) Signature() *Signature #65772
|
| 47 |
+
pkg iter, func Pull2[$0 interface{}, $1 interface{}](Seq2[$0, $1]) (func() ($0, $1, bool), func()) #61897
|
| 48 |
+
pkg iter, func Pull[$0 interface{}](Seq[$0]) (func() ($0, bool), func()) #61897
|
| 49 |
+
pkg iter, type Seq2[$0 interface{}, $1 interface{}] func(func($0, $1) bool) #61897
|
| 50 |
+
pkg iter, type Seq[$0 interface{}] func(func($0) bool) #61897
|
| 51 |
+
pkg maps, func All[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0) iter.Seq2[$1, $2] #61900
|
| 52 |
+
pkg maps, func Collect[$0 comparable, $1 interface{}](iter.Seq2[$0, $1]) map[$0]$1 #61900
|
| 53 |
+
pkg maps, func Insert[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0, iter.Seq2[$1, $2]) #61900
|
| 54 |
+
pkg maps, func Keys[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0) iter.Seq[$1] #61900
|
| 55 |
+
pkg maps, func Values[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0) iter.Seq[$2] #61900
|
| 56 |
+
pkg math/rand/v2, func Uint() uint #61716
|
| 57 |
+
pkg math/rand/v2, method (*ChaCha8) Read([]uint8) (int, error) #67059
|
| 58 |
+
pkg math/rand/v2, method (*Rand) Uint() uint #61716
|
| 59 |
+
pkg net, method (*DNSError) Unwrap() error #63116
|
| 60 |
+
pkg net, method (*TCPConn) SetKeepAliveConfig(KeepAliveConfig) error #62254
|
| 61 |
+
pkg net, type DNSError struct, UnwrapErr error #63116
|
| 62 |
+
pkg net, type Dialer struct, KeepAliveConfig KeepAliveConfig #62254
|
| 63 |
+
pkg net, type KeepAliveConfig struct #62254
|
| 64 |
+
pkg net, type KeepAliveConfig struct, Count int #62254
|
| 65 |
+
pkg net, type KeepAliveConfig struct, Enable bool #62254
|
| 66 |
+
pkg net, type KeepAliveConfig struct, Idle time.Duration #62254
|
| 67 |
+
pkg net, type KeepAliveConfig struct, Interval time.Duration #62254
|
| 68 |
+
pkg net, type ListenConfig struct, KeepAliveConfig KeepAliveConfig #62254
|
| 69 |
+
pkg net/http, func ParseCookie(string) ([]*Cookie, error) #66008
|
| 70 |
+
pkg net/http, func ParseSetCookie(string) (*Cookie, error) #66008
|
| 71 |
+
pkg net/http, method (*Request) CookiesNamed(string) []*Cookie #61472
|
| 72 |
+
pkg net/http, type Cookie struct, Partitioned bool #62490
|
| 73 |
+
pkg net/http, type Cookie struct, Quoted bool #46443
|
| 74 |
+
pkg net/http, type Request struct, Pattern string #66405
|
| 75 |
+
pkg net/http/httptest, func NewRequestWithContext(context.Context, string, string, io.Reader) *http.Request #59473
|
| 76 |
+
pkg os, func CopyFS(string, fs.FS) error #62484
|
| 77 |
+
pkg path/filepath, func Localize(string) (string, error) #57151
|
| 78 |
+
pkg reflect, func SliceAt(Type, unsafe.Pointer, int) Value #61308
|
| 79 |
+
pkg reflect, method (Value) Seq() iter.Seq[Value] #66056
|
| 80 |
+
pkg reflect, method (Value) Seq2() iter.Seq2[Value, Value] #66056
|
| 81 |
+
pkg reflect, type Type interface, CanSeq() bool #66056
|
| 82 |
+
pkg reflect, type Type interface, CanSeq2() bool #66056
|
| 83 |
+
pkg reflect, type Type interface, OverflowComplex(complex128) bool #60427
|
| 84 |
+
pkg reflect, type Type interface, OverflowFloat(float64) bool #60427
|
| 85 |
+
pkg reflect, type Type interface, OverflowInt(int64) bool #60427
|
| 86 |
+
pkg reflect, type Type interface, OverflowUint(uint64) bool #60427
|
| 87 |
+
pkg runtime/debug, func SetCrashOutput(*os.File, CrashOptions) error #42888
|
| 88 |
+
pkg runtime/debug, type CrashOptions struct #67182
|
| 89 |
+
pkg slices, func All[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq2[int, $1] #61899
|
| 90 |
+
pkg slices, func AppendSeq[$0 interface{ ~[]$1 }, $1 interface{}]($0, iter.Seq[$1]) $0 #61899
|
| 91 |
+
pkg slices, func Backward[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq2[int, $1] #61899
|
| 92 |
+
pkg slices, func Chunk[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) iter.Seq[$0] #53987
|
| 93 |
+
pkg slices, func Collect[$0 interface{}](iter.Seq[$0]) []$0 #61899
|
| 94 |
+
pkg slices, func Repeat[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) $0 #65238
|
| 95 |
+
pkg slices, func SortedFunc[$0 interface{}](iter.Seq[$0], func($0, $0) int) []$0 #61899
|
| 96 |
+
pkg slices, func SortedStableFunc[$0 interface{}](iter.Seq[$0], func($0, $0) int) []$0 #61899
|
| 97 |
+
pkg slices, func Sorted[$0 cmp.Ordered](iter.Seq[$0]) []$0 #61899
|
| 98 |
+
pkg slices, func Values[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq[$1] #61899
|
| 99 |
+
pkg structs, type HostLayout struct #66408
|
| 100 |
+
pkg sync, method (*Map) Clear() #61696
|
| 101 |
+
pkg sync/atomic, func AndInt32(*int32, int32) int32 #61395
|
| 102 |
+
pkg sync/atomic, func AndInt64(*int64, int64) int64 #61395
|
| 103 |
+
pkg sync/atomic, func AndUint32(*uint32, uint32) uint32 #61395
|
| 104 |
+
pkg sync/atomic, func AndUint64(*uint64, uint64) uint64 #61395
|
| 105 |
+
pkg sync/atomic, func AndUintptr(*uintptr, uintptr) uintptr #61395
|
| 106 |
+
pkg sync/atomic, func OrInt32(*int32, int32) int32 #61395
|
| 107 |
+
pkg sync/atomic, func OrInt64(*int64, int64) int64 #61395
|
| 108 |
+
pkg sync/atomic, func OrUint32(*uint32, uint32) uint32 #61395
|
| 109 |
+
pkg sync/atomic, func OrUint64(*uint64, uint64) uint64 #61395
|
| 110 |
+
pkg sync/atomic, func OrUintptr(*uintptr, uintptr) uintptr #61395
|
| 111 |
+
pkg sync/atomic, method (*Int32) And(int32) int32 #61395
|
| 112 |
+
pkg sync/atomic, method (*Int32) Or(int32) int32 #61395
|
| 113 |
+
pkg sync/atomic, method (*Int64) And(int64) int64 #61395
|
| 114 |
+
pkg sync/atomic, method (*Int64) Or(int64) int64 #61395
|
| 115 |
+
pkg sync/atomic, method (*Uint32) And(uint32) uint32 #61395
|
| 116 |
+
pkg sync/atomic, method (*Uint32) Or(uint32) uint32 #61395
|
| 117 |
+
pkg sync/atomic, method (*Uint64) And(uint64) uint64 #61395
|
| 118 |
+
pkg sync/atomic, method (*Uint64) Or(uint64) uint64 #61395
|
| 119 |
+
pkg sync/atomic, method (*Uintptr) And(uintptr) uintptr #61395
|
| 120 |
+
pkg sync/atomic, method (*Uintptr) Or(uintptr) uintptr #61395
|
| 121 |
+
pkg syscall (openbsd-386), const EBADMSG = 92 #67998
|
| 122 |
+
pkg syscall (openbsd-386), const ELAST = 95 #67998
|
| 123 |
+
pkg syscall (openbsd-386), const ENOTRECOVERABLE = 93 #67998
|
| 124 |
+
pkg syscall (openbsd-386), const ENOTRECOVERABLE Errno #67998
|
| 125 |
+
pkg syscall (openbsd-386), const EOWNERDEAD = 94 #67998
|
| 126 |
+
pkg syscall (openbsd-386), const EOWNERDEAD Errno #67998
|
| 127 |
+
pkg syscall (openbsd-386), const EPROTO = 95 #67998
|
| 128 |
+
pkg syscall (openbsd-386-cgo), const EBADMSG = 92 #67998
|
| 129 |
+
pkg syscall (openbsd-386-cgo), const ELAST = 95 #67998
|
| 130 |
+
pkg syscall (openbsd-386-cgo), const ENOTRECOVERABLE = 93 #67998
|
| 131 |
+
pkg syscall (openbsd-386-cgo), const ENOTRECOVERABLE Errno #67998
|
| 132 |
+
pkg syscall (openbsd-386-cgo), const EOWNERDEAD = 94 #67998
|
| 133 |
+
pkg syscall (openbsd-386-cgo), const EOWNERDEAD Errno #67998
|
| 134 |
+
pkg syscall (openbsd-386-cgo), const EPROTO = 95 #67998
|
| 135 |
+
pkg syscall (openbsd-amd64), const EBADMSG = 92 #67998
|
| 136 |
+
pkg syscall (openbsd-amd64), const ELAST = 95 #67998
|
| 137 |
+
pkg syscall (openbsd-amd64), const ENOTRECOVERABLE = 93 #67998
|
| 138 |
+
pkg syscall (openbsd-amd64), const ENOTRECOVERABLE Errno #67998
|
| 139 |
+
pkg syscall (openbsd-amd64), const EOWNERDEAD = 94 #67998
|
| 140 |
+
pkg syscall (openbsd-amd64), const EOWNERDEAD Errno #67998
|
| 141 |
+
pkg syscall (openbsd-amd64), const EPROTO = 95 #67998
|
| 142 |
+
pkg syscall (openbsd-amd64-cgo), const EBADMSG = 92 #67998
|
| 143 |
+
pkg syscall (openbsd-amd64-cgo), const ELAST = 95 #67998
|
| 144 |
+
pkg syscall (openbsd-amd64-cgo), const ENOTRECOVERABLE = 93 #67998
|
| 145 |
+
pkg syscall (openbsd-amd64-cgo), const ENOTRECOVERABLE Errno #67998
|
| 146 |
+
pkg syscall (openbsd-amd64-cgo), const EOWNERDEAD = 94 #67998
|
| 147 |
+
pkg syscall (openbsd-amd64-cgo), const EOWNERDEAD Errno #67998
|
| 148 |
+
pkg syscall (openbsd-amd64-cgo), const EPROTO = 95 #67998
|
| 149 |
+
pkg syscall (windows-386), const WSAENOPROTOOPT = 10042 #62254
|
| 150 |
+
pkg syscall (windows-386), const WSAENOPROTOOPT Errno #62254
|
| 151 |
+
pkg syscall (windows-amd64), const WSAENOPROTOOPT = 10042 #62254
|
| 152 |
+
pkg syscall (windows-amd64), const WSAENOPROTOOPT Errno #62254
|
| 153 |
+
pkg syscall, const EBADMSG Errno #67998
|
| 154 |
+
pkg syscall, const EPROTO Errno #67998
|
| 155 |
+
pkg unicode/utf16, func RuneLen(int32) int #44940
|
| 156 |
+
pkg unique, func Make[$0 comparable]($0) Handle[$0] #62483
|
| 157 |
+
pkg unique, method (Handle[$0]) Value() $0 #62483
|
| 158 |
+
pkg unique, type Handle[$0 comparable] struct #62483
|
api/go1.24.txt
ADDED
|
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bytes, func FieldsFuncSeq([]uint8, func(int32) bool) iter.Seq[[]uint8] #61901
|
| 2 |
+
pkg bytes, func FieldsSeq([]uint8) iter.Seq[[]uint8] #61901
|
| 3 |
+
pkg bytes, func Lines([]uint8) iter.Seq[[]uint8] #61901
|
| 4 |
+
pkg bytes, func SplitAfterSeq([]uint8, []uint8) iter.Seq[[]uint8] #61901
|
| 5 |
+
pkg bytes, func SplitSeq([]uint8, []uint8) iter.Seq[[]uint8] #61901
|
| 6 |
+
pkg crypto/cipher, func NewCFBDecrypter //deprecated #69445
|
| 7 |
+
pkg crypto/cipher, func NewCFBEncrypter //deprecated #69445
|
| 8 |
+
pkg crypto/cipher, func NewGCMWithRandomNonce(Block) (AEAD, error) #69981
|
| 9 |
+
pkg crypto/cipher, func NewOFB //deprecated #69445
|
| 10 |
+
pkg crypto/fips140, func Enabled() bool #70123
|
| 11 |
+
pkg crypto/hkdf, func Expand[$0 hash.Hash](func() $0, []uint8, string, int) ([]uint8, error) #61477
|
| 12 |
+
pkg crypto/hkdf, func Extract[$0 hash.Hash](func() $0, []uint8, []uint8) ([]uint8, error) #61477
|
| 13 |
+
pkg crypto/hkdf, func Key[$0 hash.Hash](func() $0, []uint8, []uint8, string, int) ([]uint8, error) #61477
|
| 14 |
+
pkg crypto/mlkem, const CiphertextSize1024 = 1568 #70122
|
| 15 |
+
pkg crypto/mlkem, const CiphertextSize1024 ideal-int #70122
|
| 16 |
+
pkg crypto/mlkem, const CiphertextSize768 = 1088 #70122
|
| 17 |
+
pkg crypto/mlkem, const CiphertextSize768 ideal-int #70122
|
| 18 |
+
pkg crypto/mlkem, const EncapsulationKeySize1024 = 1568 #70122
|
| 19 |
+
pkg crypto/mlkem, const EncapsulationKeySize1024 ideal-int #70122
|
| 20 |
+
pkg crypto/mlkem, const EncapsulationKeySize768 = 1184 #70122
|
| 21 |
+
pkg crypto/mlkem, const EncapsulationKeySize768 ideal-int #70122
|
| 22 |
+
pkg crypto/mlkem, const SeedSize = 64 #70122
|
| 23 |
+
pkg crypto/mlkem, const SeedSize ideal-int #70122
|
| 24 |
+
pkg crypto/mlkem, const SharedKeySize = 32 #70122
|
| 25 |
+
pkg crypto/mlkem, const SharedKeySize ideal-int #70122
|
| 26 |
+
pkg crypto/mlkem, func GenerateKey1024() (*DecapsulationKey1024, error) #70122
|
| 27 |
+
pkg crypto/mlkem, func GenerateKey768() (*DecapsulationKey768, error) #70122
|
| 28 |
+
pkg crypto/mlkem, func NewDecapsulationKey1024([]uint8) (*DecapsulationKey1024, error) #70122
|
| 29 |
+
pkg crypto/mlkem, func NewDecapsulationKey768([]uint8) (*DecapsulationKey768, error) #70122
|
| 30 |
+
pkg crypto/mlkem, func NewEncapsulationKey1024([]uint8) (*EncapsulationKey1024, error) #70122
|
| 31 |
+
pkg crypto/mlkem, func NewEncapsulationKey768([]uint8) (*EncapsulationKey768, error) #70122
|
| 32 |
+
pkg crypto/mlkem, method (*DecapsulationKey1024) Bytes() []uint8 #70122
|
| 33 |
+
pkg crypto/mlkem, method (*DecapsulationKey1024) Decapsulate([]uint8) ([]uint8, error) #70122
|
| 34 |
+
pkg crypto/mlkem, method (*DecapsulationKey1024) EncapsulationKey() *EncapsulationKey1024 #70122
|
| 35 |
+
pkg crypto/mlkem, method (*DecapsulationKey768) Bytes() []uint8 #70122
|
| 36 |
+
pkg crypto/mlkem, method (*DecapsulationKey768) Decapsulate([]uint8) ([]uint8, error) #70122
|
| 37 |
+
pkg crypto/mlkem, method (*DecapsulationKey768) EncapsulationKey() *EncapsulationKey768 #70122
|
| 38 |
+
pkg crypto/mlkem, method (*EncapsulationKey1024) Bytes() []uint8 #70122
|
| 39 |
+
pkg crypto/mlkem, method (*EncapsulationKey1024) Encapsulate() ([]uint8, []uint8) #70122
|
| 40 |
+
pkg crypto/mlkem, method (*EncapsulationKey768) Bytes() []uint8 #70122
|
| 41 |
+
pkg crypto/mlkem, method (*EncapsulationKey768) Encapsulate() ([]uint8, []uint8) #70122
|
| 42 |
+
pkg crypto/mlkem, type DecapsulationKey1024 struct #70122
|
| 43 |
+
pkg crypto/mlkem, type DecapsulationKey768 struct #70122
|
| 44 |
+
pkg crypto/mlkem, type EncapsulationKey1024 struct #70122
|
| 45 |
+
pkg crypto/mlkem, type EncapsulationKey768 struct #70122
|
| 46 |
+
pkg crypto/pbkdf2, func Key[$0 hash.Hash](func() $0, string, []uint8, int, int) ([]uint8, error) #69488
|
| 47 |
+
pkg crypto/rand, func Text() string #67057
|
| 48 |
+
pkg crypto/sha3, func New224() *SHA3 #69982
|
| 49 |
+
pkg crypto/sha3, func New256() *SHA3 #69982
|
| 50 |
+
pkg crypto/sha3, func New384() *SHA3 #69982
|
| 51 |
+
pkg crypto/sha3, func New512() *SHA3 #69982
|
| 52 |
+
pkg crypto/sha3, func NewCSHAKE128([]uint8, []uint8) *SHAKE #69982
|
| 53 |
+
pkg crypto/sha3, func NewCSHAKE256([]uint8, []uint8) *SHAKE #69982
|
| 54 |
+
pkg crypto/sha3, func NewSHAKE128() *SHAKE #69982
|
| 55 |
+
pkg crypto/sha3, func NewSHAKE256() *SHAKE #69982
|
| 56 |
+
pkg crypto/sha3, func Sum224([]uint8) [28]uint8 #69982
|
| 57 |
+
pkg crypto/sha3, func Sum256([]uint8) [32]uint8 #69982
|
| 58 |
+
pkg crypto/sha3, func Sum384([]uint8) [48]uint8 #69982
|
| 59 |
+
pkg crypto/sha3, func Sum512([]uint8) [64]uint8 #69982
|
| 60 |
+
pkg crypto/sha3, func SumSHAKE128([]uint8, int) []uint8 #69982
|
| 61 |
+
pkg crypto/sha3, func SumSHAKE256([]uint8, int) []uint8 #69982
|
| 62 |
+
pkg crypto/sha3, method (*SHA3) AppendBinary([]uint8) ([]uint8, error) #69982
|
| 63 |
+
pkg crypto/sha3, method (*SHA3) BlockSize() int #69982
|
| 64 |
+
pkg crypto/sha3, method (*SHA3) MarshalBinary() ([]uint8, error) #69982
|
| 65 |
+
pkg crypto/sha3, method (*SHA3) Reset() #69982
|
| 66 |
+
pkg crypto/sha3, method (*SHA3) Size() int #69982
|
| 67 |
+
pkg crypto/sha3, method (*SHA3) Sum([]uint8) []uint8 #69982
|
| 68 |
+
pkg crypto/sha3, method (*SHA3) UnmarshalBinary([]uint8) error #69982
|
| 69 |
+
pkg crypto/sha3, method (*SHA3) Write([]uint8) (int, error) #69982
|
| 70 |
+
pkg crypto/sha3, method (*SHAKE) AppendBinary([]uint8) ([]uint8, error) #69982
|
| 71 |
+
pkg crypto/sha3, method (*SHAKE) BlockSize() int #69982
|
| 72 |
+
pkg crypto/sha3, method (*SHAKE) MarshalBinary() ([]uint8, error) #69982
|
| 73 |
+
pkg crypto/sha3, method (*SHAKE) Read([]uint8) (int, error) #69982
|
| 74 |
+
pkg crypto/sha3, method (*SHAKE) Reset() #69982
|
| 75 |
+
pkg crypto/sha3, method (*SHAKE) UnmarshalBinary([]uint8) error #69982
|
| 76 |
+
pkg crypto/sha3, method (*SHAKE) Write([]uint8) (int, error) #69982
|
| 77 |
+
pkg crypto/sha3, type SHA3 struct #69982
|
| 78 |
+
pkg crypto/sha3, type SHAKE struct #69982
|
| 79 |
+
pkg crypto/subtle, func WithDataIndependentTiming(func()) #66450
|
| 80 |
+
pkg crypto/tls, const X25519MLKEM768 = 4588 #69985
|
| 81 |
+
pkg crypto/tls, const X25519MLKEM768 CurveID #69985
|
| 82 |
+
pkg crypto/tls, type ClientHelloInfo struct, Extensions []uint16 #32936
|
| 83 |
+
pkg crypto/tls, type Config struct, EncryptedClientHelloKeys []EncryptedClientHelloKey #68500
|
| 84 |
+
pkg crypto/tls, type EncryptedClientHelloKey struct #68500
|
| 85 |
+
pkg crypto/tls, type EncryptedClientHelloKey struct, Config []uint8 #68500
|
| 86 |
+
pkg crypto/tls, type EncryptedClientHelloKey struct, PrivateKey []uint8 #68500
|
| 87 |
+
pkg crypto/tls, type EncryptedClientHelloKey struct, SendAsRetry bool #68500
|
| 88 |
+
pkg crypto/x509, const NoValidChains = 10 #68484
|
| 89 |
+
pkg crypto/x509, const NoValidChains InvalidReason #68484
|
| 90 |
+
pkg crypto/x509, method (OID) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 91 |
+
pkg crypto/x509, method (OID) AppendText([]uint8) ([]uint8, error) #62384
|
| 92 |
+
pkg crypto/x509, type Certificate struct, InhibitAnyPolicy int #68484
|
| 93 |
+
pkg crypto/x509, type Certificate struct, InhibitAnyPolicyZero bool #68484
|
| 94 |
+
pkg crypto/x509, type Certificate struct, InhibitPolicyMapping int #68484
|
| 95 |
+
pkg crypto/x509, type Certificate struct, InhibitPolicyMappingZero bool #68484
|
| 96 |
+
pkg crypto/x509, type Certificate struct, PolicyMappings []PolicyMapping #68484
|
| 97 |
+
pkg crypto/x509, type Certificate struct, RequireExplicitPolicy int #68484
|
| 98 |
+
pkg crypto/x509, type Certificate struct, RequireExplicitPolicyZero bool #68484
|
| 99 |
+
pkg crypto/x509, type PolicyMapping struct #68484
|
| 100 |
+
pkg crypto/x509, type PolicyMapping struct, IssuerDomainPolicy OID #68484
|
| 101 |
+
pkg crypto/x509, type PolicyMapping struct, SubjectDomainPolicy OID #68484
|
| 102 |
+
pkg crypto/x509, type VerifyOptions struct, CertificatePolicies []OID #68484
|
| 103 |
+
pkg debug/elf, const VER_FLG_BASE = 1 #63952
|
| 104 |
+
pkg debug/elf, const VER_FLG_BASE DynamicVersionFlag #63952
|
| 105 |
+
pkg debug/elf, const VER_FLG_INFO = 4 #63952
|
| 106 |
+
pkg debug/elf, const VER_FLG_INFO DynamicVersionFlag #63952
|
| 107 |
+
pkg debug/elf, const VER_FLG_WEAK = 2 #63952
|
| 108 |
+
pkg debug/elf, const VER_FLG_WEAK DynamicVersionFlag #63952
|
| 109 |
+
pkg debug/elf, method (*File) DynamicVersionNeeds() ([]DynamicVersionNeed, error) #63952
|
| 110 |
+
pkg debug/elf, method (*File) DynamicVersions() ([]DynamicVersion, error) #63952
|
| 111 |
+
pkg debug/elf, type DynamicVersion struct #63952
|
| 112 |
+
pkg debug/elf, type DynamicVersion struct, Deps []string #63952
|
| 113 |
+
pkg debug/elf, type DynamicVersion struct, Flags DynamicVersionFlag #63952
|
| 114 |
+
pkg debug/elf, type DynamicVersion struct, Name string #63952
|
| 115 |
+
pkg debug/elf, type DynamicVersion struct, Index uint16 #63952
|
| 116 |
+
pkg debug/elf, type DynamicVersionDep struct #63952
|
| 117 |
+
pkg debug/elf, type DynamicVersionDep struct, Dep string #63952
|
| 118 |
+
pkg debug/elf, type DynamicVersionDep struct, Flags DynamicVersionFlag #63952
|
| 119 |
+
pkg debug/elf, type DynamicVersionDep struct, Index uint16 #63952
|
| 120 |
+
pkg debug/elf, type DynamicVersionFlag uint16 #63952
|
| 121 |
+
pkg debug/elf, type DynamicVersionNeed struct #63952
|
| 122 |
+
pkg debug/elf, type DynamicVersionNeed struct, Name string #63952
|
| 123 |
+
pkg debug/elf, type DynamicVersionNeed struct, Needs []DynamicVersionDep #63952
|
| 124 |
+
pkg debug/elf, type Symbol struct, HasVersion bool #63952
|
| 125 |
+
pkg debug/elf, type Symbol struct, VersionIndex VersionIndex #63952
|
| 126 |
+
pkg debug/elf, method (VersionIndex) Index() uint16 #63952
|
| 127 |
+
pkg debug/elf, method (VersionIndex) IsHidden() bool #63952
|
| 128 |
+
pkg debug/elf, type VersionIndex uint16 #63952
|
| 129 |
+
pkg encoding, type BinaryAppender interface { AppendBinary } #62384
|
| 130 |
+
pkg encoding, type BinaryAppender interface, AppendBinary([]uint8) ([]uint8, error) #62384
|
| 131 |
+
pkg encoding, type TextAppender interface { AppendText } #62384
|
| 132 |
+
pkg encoding, type TextAppender interface, AppendText([]uint8) ([]uint8, error) #62384
|
| 133 |
+
pkg go/types, method (*Interface) EmbeddedTypes() iter.Seq[Type] #66626
|
| 134 |
+
pkg go/types, method (*Interface) ExplicitMethods() iter.Seq[*Func] #66626
|
| 135 |
+
pkg go/types, method (*Interface) Methods() iter.Seq[*Func] #66626
|
| 136 |
+
pkg go/types, method (*MethodSet) Methods() iter.Seq[*Selection] #66626
|
| 137 |
+
pkg go/types, method (*Named) Methods() iter.Seq[*Func] #66626
|
| 138 |
+
pkg go/types, method (*Scope) Children() iter.Seq[*Scope] #66626
|
| 139 |
+
pkg go/types, method (*Struct) Fields() iter.Seq[*Var] #66626
|
| 140 |
+
pkg go/types, method (*Tuple) Variables() iter.Seq[*Var] #66626
|
| 141 |
+
pkg go/types, method (*TypeList) Types() iter.Seq[Type] #66626
|
| 142 |
+
pkg go/types, method (*TypeParamList) TypeParams() iter.Seq[*TypeParam] #66626
|
| 143 |
+
pkg go/types, method (*Union) Terms() iter.Seq[*Term] #66626
|
| 144 |
+
pkg hash/maphash, func Comparable[$0 comparable](Seed, $0) uint64 #54670
|
| 145 |
+
pkg hash/maphash, func WriteComparable[$0 comparable](*Hash, $0) #54670
|
| 146 |
+
pkg log/slog, method (*LevelVar) AppendText([]uint8) ([]uint8, error) #62384
|
| 147 |
+
pkg log/slog, method (Level) AppendText([]uint8) ([]uint8, error) #62384
|
| 148 |
+
pkg log/slog, var DiscardHandler Handler #62005
|
| 149 |
+
pkg math/big, method (*Float) AppendText([]uint8) ([]uint8, error) #62384
|
| 150 |
+
pkg math/big, method (*Int) AppendText([]uint8) ([]uint8, error) #62384
|
| 151 |
+
pkg math/big, method (*Rat) AppendText([]uint8) ([]uint8, error) #62384
|
| 152 |
+
pkg math/rand/v2, method (*ChaCha8) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 153 |
+
pkg math/rand/v2, method (*PCG) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 154 |
+
pkg net, method (IP) AppendText([]uint8) ([]uint8, error) #62384
|
| 155 |
+
pkg net/http, method (*Protocols) SetHTTP1(bool) #67814
|
| 156 |
+
pkg net/http, method (*Protocols) SetHTTP2(bool) #67814
|
| 157 |
+
pkg net/http, method (*Protocols) SetUnencryptedHTTP2(bool) #67816
|
| 158 |
+
pkg net/http, method (Protocols) HTTP1() bool #67814
|
| 159 |
+
pkg net/http, method (Protocols) HTTP2() bool #67814
|
| 160 |
+
pkg net/http, method (Protocols) String() string #67814
|
| 161 |
+
pkg net/http, method (Protocols) UnencryptedHTTP2() bool #67816
|
| 162 |
+
pkg net/http, type HTTP2Config struct #67813
|
| 163 |
+
pkg net/http, type HTTP2Config struct, CountError func(string) #67813
|
| 164 |
+
pkg net/http, type HTTP2Config struct, MaxConcurrentStreams int #67813
|
| 165 |
+
pkg net/http, type HTTP2Config struct, MaxDecoderHeaderTableSize int #67813
|
| 166 |
+
pkg net/http, type HTTP2Config struct, MaxEncoderHeaderTableSize int #67813
|
| 167 |
+
pkg net/http, type HTTP2Config struct, MaxReadFrameSize int #67813
|
| 168 |
+
pkg net/http, type HTTP2Config struct, MaxReceiveBufferPerConnection int #67813
|
| 169 |
+
pkg net/http, type HTTP2Config struct, MaxReceiveBufferPerStream int #67813
|
| 170 |
+
pkg net/http, type HTTP2Config struct, PermitProhibitedCipherSuites bool #67813
|
| 171 |
+
pkg net/http, type HTTP2Config struct, PingTimeout time.Duration #67813
|
| 172 |
+
pkg net/http, type HTTP2Config struct, SendPingTimeout time.Duration #67813
|
| 173 |
+
pkg net/http, type HTTP2Config struct, WriteByteTimeout time.Duration #67813
|
| 174 |
+
pkg net/http, type Protocols struct #67814
|
| 175 |
+
pkg net/http, type Server struct, HTTP2 *HTTP2Config #67813
|
| 176 |
+
pkg net/http, type Server struct, Protocols *Protocols #67814
|
| 177 |
+
pkg net/http, type Transport struct, HTTP2 *HTTP2Config #67813
|
| 178 |
+
pkg net/http, type Transport struct, Protocols *Protocols #67814
|
| 179 |
+
pkg net/netip, method (Addr) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 180 |
+
pkg net/netip, method (Addr) AppendText([]uint8) ([]uint8, error) #62384
|
| 181 |
+
pkg net/netip, method (AddrPort) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 182 |
+
pkg net/netip, method (AddrPort) AppendText([]uint8) ([]uint8, error) #62384
|
| 183 |
+
pkg net/netip, method (Prefix) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 184 |
+
pkg net/netip, method (Prefix) AppendText([]uint8) ([]uint8, error) #62384
|
| 185 |
+
pkg net/url, method (*URL) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 186 |
+
pkg os, func OpenInRoot(string, string) (*File, error) #67002
|
| 187 |
+
pkg os, func OpenRoot(string) (*Root, error) #67002
|
| 188 |
+
pkg os, method (*Root) Close() error #67002
|
| 189 |
+
pkg os, method (*Root) Create(string) (*File, error) #67002
|
| 190 |
+
pkg os, method (*Root) FS() fs.FS #67002
|
| 191 |
+
pkg os, method (*Root) Lstat(string) (fs.FileInfo, error) #67002
|
| 192 |
+
pkg os, method (*Root) Mkdir(string, fs.FileMode) error #67002
|
| 193 |
+
pkg os, method (*Root) Name() string #67002
|
| 194 |
+
pkg os, method (*Root) Open(string) (*File, error) #67002
|
| 195 |
+
pkg os, method (*Root) OpenFile(string, int, fs.FileMode) (*File, error) #67002
|
| 196 |
+
pkg os, method (*Root) OpenRoot(string) (*Root, error) #67002
|
| 197 |
+
pkg os, method (*Root) Remove(string) error #67002
|
| 198 |
+
pkg os, method (*Root) Stat(string) (fs.FileInfo, error) #67002
|
| 199 |
+
pkg os, type Root struct #67002
|
| 200 |
+
pkg regexp, method (*Regexp) AppendText([]uint8) ([]uint8, error) #62384
|
| 201 |
+
pkg runtime, func AddCleanup[$0 interface{}, $1 interface{}](*$0, func($1), $1) Cleanup #67535
|
| 202 |
+
pkg runtime, func GOROOT //deprecated #51473
|
| 203 |
+
pkg runtime, method (Cleanup) Stop() #67535
|
| 204 |
+
pkg runtime, type Cleanup struct #67535
|
| 205 |
+
pkg strings, func FieldsFuncSeq(string, func(int32) bool) iter.Seq[string] #61901
|
| 206 |
+
pkg strings, func FieldsSeq(string) iter.Seq[string] #61901
|
| 207 |
+
pkg strings, func Lines(string) iter.Seq[string] #61901
|
| 208 |
+
pkg strings, func SplitAfterSeq(string, string) iter.Seq[string] #61901
|
| 209 |
+
pkg strings, func SplitSeq(string, string) iter.Seq[string] #61901
|
| 210 |
+
pkg testing, method (*B) Chdir(string) #62516
|
| 211 |
+
pkg testing, method (*B) Context() context.Context #36532
|
| 212 |
+
pkg testing, method (*B) Loop() bool #61515
|
| 213 |
+
pkg testing, method (*F) Chdir(string) #62516
|
| 214 |
+
pkg testing, method (*F) Context() context.Context #36532
|
| 215 |
+
pkg testing, method (*T) Chdir(string) #62516
|
| 216 |
+
pkg testing, method (*T) Context() context.Context #36532
|
| 217 |
+
pkg testing, type TB interface, Chdir(string) #62516
|
| 218 |
+
pkg testing, type TB interface, Context() context.Context #36532
|
| 219 |
+
pkg time, method (Time) AppendBinary([]uint8) ([]uint8, error) #62384
|
| 220 |
+
pkg time, method (Time) AppendText([]uint8) ([]uint8, error) #62384
|
| 221 |
+
pkg weak, func Make[$0 interface{}](*$0) Pointer[$0] #67552
|
| 222 |
+
pkg weak, method (Pointer[$0]) Value() *$0 #67552
|
| 223 |
+
pkg weak, type Pointer[$0 interface{}] struct #67552
|
api/go1.25.txt
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg crypto, func SignMessage(Signer, io.Reader, []uint8, SignerOpts) ([]uint8, error) #63405
|
| 2 |
+
pkg crypto, type MessageSigner interface { Public, Sign, SignMessage } #63405
|
| 3 |
+
pkg crypto, type MessageSigner interface, Public() PublicKey #63405
|
| 4 |
+
pkg crypto, type MessageSigner interface, Sign(io.Reader, []uint8, SignerOpts) ([]uint8, error) #63405
|
| 5 |
+
pkg crypto, type MessageSigner interface, SignMessage(io.Reader, []uint8, SignerOpts) ([]uint8, error) #63405
|
| 6 |
+
pkg crypto/ecdsa, func ParseRawPrivateKey(elliptic.Curve, []uint8) (*PrivateKey, error) #63963
|
| 7 |
+
pkg crypto/ecdsa, func ParseUncompressedPublicKey(elliptic.Curve, []uint8) (*PublicKey, error) #63963
|
| 8 |
+
pkg crypto/ecdsa, method (*PrivateKey) Bytes() ([]uint8, error) #63963
|
| 9 |
+
pkg crypto/ecdsa, method (*PublicKey) Bytes() ([]uint8, error) #63963
|
| 10 |
+
pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521
|
| 11 |
+
pkg crypto/tls, type Config struct, GetEncryptedClientHelloKeys func(*ClientHelloInfo) ([]EncryptedClientHelloKey, error) #71920
|
| 12 |
+
pkg crypto/tls, type ConnectionState struct, CurveID CurveID #67516
|
| 13 |
+
pkg debug/elf, const PT_RISCV_ATTRIBUTES = 1879048195 #72843
|
| 14 |
+
pkg debug/elf, const PT_RISCV_ATTRIBUTES ProgType #72843
|
| 15 |
+
pkg debug/elf, const SHT_RISCV_ATTRIBUTES = 1879048195 #72843
|
| 16 |
+
pkg debug/elf, const SHT_RISCV_ATTRIBUTES SectionType #72843
|
| 17 |
+
pkg go/ast, const FilterFuncDuplicates //deprecated #73088
|
| 18 |
+
pkg go/ast, const FilterImportDuplicates //deprecated #73088
|
| 19 |
+
pkg go/ast, const FilterUnassociatedComments //deprecated #73088
|
| 20 |
+
pkg go/ast, func FilterPackage //deprecated #73088
|
| 21 |
+
pkg go/ast, func MergePackageFiles //deprecated #73088
|
| 22 |
+
pkg go/ast, func PackageExports //deprecated #73088
|
| 23 |
+
pkg go/ast, func PreorderStack(Node, []Node, func(Node, []Node) bool) #73319
|
| 24 |
+
pkg go/ast, type MergeMode //deprecated #73088
|
| 25 |
+
pkg go/parser, func ParseDir //deprecated #71122
|
| 26 |
+
pkg go/token, method (*FileSet) AddExistingFiles(...*File) #73205
|
| 27 |
+
pkg go/types, const FieldVar = 6 #70250
|
| 28 |
+
pkg go/types, const FieldVar VarKind #70250
|
| 29 |
+
pkg go/types, const LocalVar = 2 #70250
|
| 30 |
+
pkg go/types, const LocalVar VarKind #70250
|
| 31 |
+
pkg go/types, const PackageVar = 1 #70250
|
| 32 |
+
pkg go/types, const PackageVar VarKind #70250
|
| 33 |
+
pkg go/types, const ParamVar = 4 #70250
|
| 34 |
+
pkg go/types, const ParamVar VarKind #70250
|
| 35 |
+
pkg go/types, const RecvVar = 3 #70250
|
| 36 |
+
pkg go/types, const RecvVar VarKind #70250
|
| 37 |
+
pkg go/types, const ResultVar = 5 #70250
|
| 38 |
+
pkg go/types, const ResultVar VarKind #70250
|
| 39 |
+
pkg go/types, func LookupSelection(Type, bool, *Package, string) (Selection, bool) #70737
|
| 40 |
+
pkg go/types, method (*Var) Kind() VarKind #70250
|
| 41 |
+
pkg go/types, method (*Var) SetKind(VarKind) #70250
|
| 42 |
+
pkg go/types, method (VarKind) String() string #70250
|
| 43 |
+
pkg go/types, type VarKind uint8 #70250
|
| 44 |
+
pkg hash, type Cloner interface { BlockSize, Clone, Reset, Size, Sum, Write } #69521
|
| 45 |
+
pkg hash, type Cloner interface, BlockSize() int #69521
|
| 46 |
+
pkg hash, type Cloner interface, Clone() (Cloner, error) #69521
|
| 47 |
+
pkg hash, type Cloner interface, Reset() #69521
|
| 48 |
+
pkg hash, type Cloner interface, Size() int #69521
|
| 49 |
+
pkg hash, type Cloner interface, Sum([]uint8) []uint8 #69521
|
| 50 |
+
pkg hash, type Cloner interface, Write([]uint8) (int, error) #69521
|
| 51 |
+
pkg hash, type XOF interface { BlockSize, Read, Reset, Write } #69518
|
| 52 |
+
pkg hash, type XOF interface, BlockSize() int #69518
|
| 53 |
+
pkg hash, type XOF interface, Read([]uint8) (int, error) #69518
|
| 54 |
+
pkg hash, type XOF interface, Reset() #69518
|
| 55 |
+
pkg hash, type XOF interface, Write([]uint8) (int, error) #69518
|
| 56 |
+
pkg hash/maphash, method (*Hash) Clone() (hash.Cloner, error) #69521
|
| 57 |
+
pkg io/fs, func Lstat(FS, string) (FileInfo, error) #49580
|
| 58 |
+
pkg io/fs, func ReadLink(FS, string) (string, error) #49580
|
| 59 |
+
pkg io/fs, type ReadLinkFS interface { Lstat, Open, ReadLink } #49580
|
| 60 |
+
pkg io/fs, type ReadLinkFS interface, Lstat(string) (FileInfo, error) #49580
|
| 61 |
+
pkg io/fs, type ReadLinkFS interface, Open(string) (File, error) #49580
|
| 62 |
+
pkg io/fs, type ReadLinkFS interface, ReadLink(string) (string, error) #49580
|
| 63 |
+
pkg log/slog, func GroupAttrs(string, ...Attr) Attr #66365
|
| 64 |
+
pkg log/slog, method (Record) Source() *Source #70280
|
| 65 |
+
pkg mime/multipart, func FileContentDisposition(string, string) string #46771
|
| 66 |
+
pkg net/http, func NewCrossOriginProtection() *CrossOriginProtection #73626
|
| 67 |
+
pkg net/http, method (*CrossOriginProtection) AddInsecureBypassPattern(string) #73626
|
| 68 |
+
pkg net/http, method (*CrossOriginProtection) AddTrustedOrigin(string) error #73626
|
| 69 |
+
pkg net/http, method (*CrossOriginProtection) Check(*Request) error #73626
|
| 70 |
+
pkg net/http, method (*CrossOriginProtection) Handler(Handler) Handler #73626
|
| 71 |
+
pkg net/http, method (*CrossOriginProtection) SetDenyHandler(Handler) #73626
|
| 72 |
+
pkg net/http, type CrossOriginProtection struct #73626
|
| 73 |
+
pkg os, method (*Root) Chmod(string, fs.FileMode) error #67002
|
| 74 |
+
pkg os, method (*Root) Chown(string, int, int) error #67002
|
| 75 |
+
pkg os, method (*Root) Chtimes(string, time.Time, time.Time) error #67002
|
| 76 |
+
pkg os, method (*Root) Lchown(string, int, int) error #67002
|
| 77 |
+
pkg os, method (*Root) Link(string, string) error #67002
|
| 78 |
+
pkg os, method (*Root) MkdirAll(string, fs.FileMode) error #67002
|
| 79 |
+
pkg os, method (*Root) ReadFile(string) ([]uint8, error) #73126
|
| 80 |
+
pkg os, method (*Root) Readlink(string) (string, error) #67002
|
| 81 |
+
pkg os, method (*Root) RemoveAll(string) error #67002
|
| 82 |
+
pkg os, method (*Root) Rename(string, string) error #67002
|
| 83 |
+
pkg os, method (*Root) Symlink(string, string) error #67002
|
| 84 |
+
pkg os, method (*Root) WriteFile(string, []uint8, fs.FileMode) error #73126
|
| 85 |
+
pkg reflect, func TypeAssert[$0 interface{}](Value) ($0, bool) #62121
|
| 86 |
+
pkg runtime, func SetDefaultGOMAXPROCS() #73193
|
| 87 |
+
pkg runtime/trace, func NewFlightRecorder(FlightRecorderConfig) *FlightRecorder #63185
|
| 88 |
+
pkg runtime/trace, method (*FlightRecorder) Enabled() bool #63185
|
| 89 |
+
pkg runtime/trace, method (*FlightRecorder) Start() error #63185
|
| 90 |
+
pkg runtime/trace, method (*FlightRecorder) Stop() #63185
|
| 91 |
+
pkg runtime/trace, method (*FlightRecorder) WriteTo(io.Writer) (int64, error) #63185
|
| 92 |
+
pkg runtime/trace, type FlightRecorder struct #63185
|
| 93 |
+
pkg runtime/trace, type FlightRecorderConfig struct #63185
|
| 94 |
+
pkg runtime/trace, type FlightRecorderConfig struct, MaxBytes uint64 #63185
|
| 95 |
+
pkg runtime/trace, type FlightRecorderConfig struct, MinAge time.Duration #63185
|
| 96 |
+
pkg sync, method (*WaitGroup) Go(func()) #63796
|
| 97 |
+
pkg testing, method (*B) Attr(string, string) #43936
|
| 98 |
+
pkg testing, method (*B) Output() io.Writer #59928
|
| 99 |
+
pkg testing, method (*F) Attr(string, string) #43936
|
| 100 |
+
pkg testing, method (*F) Output() io.Writer #59928
|
| 101 |
+
pkg testing, method (*T) Attr(string, string) #43936
|
| 102 |
+
pkg testing, method (*T) Output() io.Writer #59928
|
| 103 |
+
pkg testing, type TB interface, Attr(string, string) #43936
|
| 104 |
+
pkg testing, type TB interface, Output() io.Writer #59928
|
| 105 |
+
pkg testing/fstest, method (MapFS) Lstat(string) (fs.FileInfo, error) #49580
|
| 106 |
+
pkg testing/fstest, method (MapFS) ReadLink(string) (string, error) #49580
|
| 107 |
+
pkg testing/synctest, func Test(*testing.T, func(*testing.T)) #67434
|
| 108 |
+
pkg testing/synctest, func Wait() #67434
|
| 109 |
+
pkg unicode, var CategoryAliases map[string]string #70780
|
| 110 |
+
pkg unicode, var Cn *RangeTable #70780
|
| 111 |
+
pkg unicode, var LC *RangeTable #70780
|
api/go1.26.txt
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bytes, method (*Buffer) Peek(int) ([]uint8, error) #73794
|
| 2 |
+
pkg crypto, type Decapsulator interface { Decapsulate, Encapsulator } #75300
|
| 3 |
+
pkg crypto, type Decapsulator interface, Decapsulate([]uint8) ([]uint8, error) #75300
|
| 4 |
+
pkg crypto, type Decapsulator interface, Encapsulator() Encapsulator #75300
|
| 5 |
+
pkg crypto, type Encapsulator interface { Bytes, Encapsulate } #75300
|
| 6 |
+
pkg crypto, type Encapsulator interface, Bytes() []uint8 #75300
|
| 7 |
+
pkg crypto, type Encapsulator interface, Encapsulate() ([]uint8, []uint8) #75300
|
| 8 |
+
pkg crypto/ecdh, type KeyExchanger interface { Curve, ECDH, PublicKey } #75300
|
| 9 |
+
pkg crypto/ecdh, type KeyExchanger interface, Curve() Curve #75300
|
| 10 |
+
pkg crypto/ecdh, type KeyExchanger interface, ECDH(*PublicKey) ([]uint8, error) #75300
|
| 11 |
+
pkg crypto/ecdh, type KeyExchanger interface, PublicKey() *PublicKey #75300
|
| 12 |
+
pkg crypto/ecdsa, type PrivateKey struct, D //deprecated #63963
|
| 13 |
+
pkg crypto/ecdsa, type PublicKey struct, X //deprecated #63963
|
| 14 |
+
pkg crypto/ecdsa, type PublicKey struct, Y //deprecated #63963
|
| 15 |
+
pkg crypto/fips140, func Enforced() bool #74630
|
| 16 |
+
pkg crypto/fips140, func Version() string #75301
|
| 17 |
+
pkg crypto/fips140, func WithoutEnforcement(func()) #74630
|
| 18 |
+
pkg crypto/hpke, func AES128GCM() AEAD #75300
|
| 19 |
+
pkg crypto/hpke, func AES256GCM() AEAD #75300
|
| 20 |
+
pkg crypto/hpke, func ChaCha20Poly1305() AEAD #75300
|
| 21 |
+
pkg crypto/hpke, func DHKEM(ecdh.Curve) KEM #75300
|
| 22 |
+
pkg crypto/hpke, func ExportOnly() AEAD #75300
|
| 23 |
+
pkg crypto/hpke, func HKDFSHA256() KDF #75300
|
| 24 |
+
pkg crypto/hpke, func HKDFSHA384() KDF #75300
|
| 25 |
+
pkg crypto/hpke, func HKDFSHA512() KDF #75300
|
| 26 |
+
pkg crypto/hpke, func MLKEM1024() KEM #75300
|
| 27 |
+
pkg crypto/hpke, func MLKEM1024P384() KEM #75300
|
| 28 |
+
pkg crypto/hpke, func MLKEM768() KEM #75300
|
| 29 |
+
pkg crypto/hpke, func MLKEM768P256() KEM #75300
|
| 30 |
+
pkg crypto/hpke, func MLKEM768X25519() KEM #75300
|
| 31 |
+
pkg crypto/hpke, func NewAEAD(uint16) (AEAD, error) #75300
|
| 32 |
+
pkg crypto/hpke, func NewDHKEMPrivateKey(ecdh.KeyExchanger) (PrivateKey, error) #75300
|
| 33 |
+
pkg crypto/hpke, func NewDHKEMPublicKey(*ecdh.PublicKey) (PublicKey, error) #75300
|
| 34 |
+
pkg crypto/hpke, func NewHybridPrivateKey(crypto.Decapsulator, ecdh.KeyExchanger) (PrivateKey, error) #75300
|
| 35 |
+
pkg crypto/hpke, func NewHybridPublicKey(crypto.Encapsulator, *ecdh.PublicKey) (PublicKey, error) #75300
|
| 36 |
+
pkg crypto/hpke, func NewKDF(uint16) (KDF, error) #75300
|
| 37 |
+
pkg crypto/hpke, func NewKEM(uint16) (KEM, error) #75300
|
| 38 |
+
pkg crypto/hpke, func NewMLKEMPrivateKey(crypto.Decapsulator) (PrivateKey, error) #75300
|
| 39 |
+
pkg crypto/hpke, func NewMLKEMPublicKey(crypto.Encapsulator) (PublicKey, error) #75300
|
| 40 |
+
pkg crypto/hpke, func NewRecipient([]uint8, PrivateKey, KDF, AEAD, []uint8) (*Recipient, error) #75300
|
| 41 |
+
pkg crypto/hpke, func NewSender(PublicKey, KDF, AEAD, []uint8) ([]uint8, *Sender, error) #75300
|
| 42 |
+
pkg crypto/hpke, func Open(PrivateKey, KDF, AEAD, []uint8, []uint8) ([]uint8, error) #75300
|
| 43 |
+
pkg crypto/hpke, func SHAKE128() KDF #75300
|
| 44 |
+
pkg crypto/hpke, func SHAKE256() KDF #75300
|
| 45 |
+
pkg crypto/hpke, func Seal(PublicKey, KDF, AEAD, []uint8, []uint8) ([]uint8, error) #75300
|
| 46 |
+
pkg crypto/hpke, method (*Recipient) Export(string, int) ([]uint8, error) #75300
|
| 47 |
+
pkg crypto/hpke, method (*Recipient) Open([]uint8, []uint8) ([]uint8, error) #75300
|
| 48 |
+
pkg crypto/hpke, method (*Sender) Export(string, int) ([]uint8, error) #75300
|
| 49 |
+
pkg crypto/hpke, method (*Sender) Seal([]uint8, []uint8) ([]uint8, error) #75300
|
| 50 |
+
pkg crypto/hpke, type AEAD interface, ID() uint16 #75300
|
| 51 |
+
pkg crypto/hpke, type AEAD interface, unexported methods #75300
|
| 52 |
+
pkg crypto/hpke, type KDF interface, ID() uint16 #75300
|
| 53 |
+
pkg crypto/hpke, type KDF interface, unexported methods #75300
|
| 54 |
+
pkg crypto/hpke, type KEM interface, DeriveKeyPair([]uint8) (PrivateKey, error) #75300
|
| 55 |
+
pkg crypto/hpke, type KEM interface, GenerateKey() (PrivateKey, error) #75300
|
| 56 |
+
pkg crypto/hpke, type KEM interface, ID() uint16 #75300
|
| 57 |
+
pkg crypto/hpke, type KEM interface, NewPrivateKey([]uint8) (PrivateKey, error) #75300
|
| 58 |
+
pkg crypto/hpke, type KEM interface, NewPublicKey([]uint8) (PublicKey, error) #75300
|
| 59 |
+
pkg crypto/hpke, type KEM interface, unexported methods #75300
|
| 60 |
+
pkg crypto/hpke, type PrivateKey interface, Bytes() ([]uint8, error) #75300
|
| 61 |
+
pkg crypto/hpke, type PrivateKey interface, KEM() KEM #75300
|
| 62 |
+
pkg crypto/hpke, type PrivateKey interface, PublicKey() PublicKey #75300
|
| 63 |
+
pkg crypto/hpke, type PrivateKey interface, unexported methods #75300
|
| 64 |
+
pkg crypto/hpke, type PublicKey interface, Bytes() []uint8 #75300
|
| 65 |
+
pkg crypto/hpke, type PublicKey interface, KEM() KEM #75300
|
| 66 |
+
pkg crypto/hpke, type PublicKey interface, unexported methods #75300
|
| 67 |
+
pkg crypto/hpke, type Recipient struct #75300
|
| 68 |
+
pkg crypto/hpke, type Sender struct #75300
|
| 69 |
+
pkg crypto/mlkem, method (*DecapsulationKey1024) Encapsulator() crypto.Encapsulator #75300
|
| 70 |
+
pkg crypto/mlkem, method (*DecapsulationKey768) Encapsulator() crypto.Encapsulator #75300
|
| 71 |
+
pkg crypto/mlkem/mlkemtest, func Encapsulate1024(*mlkem.EncapsulationKey1024, []uint8) ([]uint8, []uint8, error) #73627
|
| 72 |
+
pkg crypto/mlkem/mlkemtest, func Encapsulate768(*mlkem.EncapsulationKey768, []uint8) ([]uint8, []uint8, error) #73627
|
| 73 |
+
pkg crypto/rsa, func DecryptPKCS1v15 //deprecated #75302
|
| 74 |
+
pkg crypto/rsa, func DecryptPKCS1v15SessionKey //deprecated #75302
|
| 75 |
+
pkg crypto/rsa, func EncryptOAEPWithOptions(io.Reader, *PublicKey, []uint8, *OAEPOptions) ([]uint8, error) #65716
|
| 76 |
+
pkg crypto/rsa, func EncryptPKCS1v15 //deprecated #75302
|
| 77 |
+
pkg crypto/rsa, type PKCS1v15DecryptOptions //deprecated #75302
|
| 78 |
+
pkg crypto/tls, const QUICErrorEvent = 10 #75108
|
| 79 |
+
pkg crypto/tls, const QUICErrorEvent QUICEventKind #75108
|
| 80 |
+
pkg crypto/tls, const SecP256r1MLKEM768 = 4587 #71206
|
| 81 |
+
pkg crypto/tls, const SecP256r1MLKEM768 CurveID #71206
|
| 82 |
+
pkg crypto/tls, const SecP384r1MLKEM1024 = 4589 #71206
|
| 83 |
+
pkg crypto/tls, const SecP384r1MLKEM1024 CurveID #71206
|
| 84 |
+
pkg crypto/tls, type ClientHelloInfo struct, HelloRetryRequest bool #74425
|
| 85 |
+
pkg crypto/tls, type ConnectionState struct, HelloRetryRequest bool #74425
|
| 86 |
+
pkg crypto/tls, type QUICEvent struct, Err error #75108
|
| 87 |
+
pkg crypto/x509, func OIDFromASN1OID(asn1.ObjectIdentifier) (OID, error) #75325
|
| 88 |
+
pkg crypto/x509, method (ExtKeyUsage) OID() OID #75325
|
| 89 |
+
pkg crypto/x509, method (ExtKeyUsage) String() string #56866
|
| 90 |
+
pkg crypto/x509, method (KeyUsage) String() string #56866
|
| 91 |
+
pkg debug/elf, const R_LARCH_CALL36 = 110 #75562
|
| 92 |
+
pkg debug/elf, const R_LARCH_CALL36 R_LARCH #75562
|
| 93 |
+
pkg debug/elf, const R_LARCH_TLS_DESC32 = 13 #75562
|
| 94 |
+
pkg debug/elf, const R_LARCH_TLS_DESC32 R_LARCH #75562
|
| 95 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64 = 14 #75562
|
| 96 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64 R_LARCH #75562
|
| 97 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_HI12 = 118 #75562
|
| 98 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_HI12 R_LARCH #75562
|
| 99 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_LO20 = 117 #75562
|
| 100 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_LO20 R_LARCH #75562
|
| 101 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_PC_HI12 = 114 #75562
|
| 102 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_PC_HI12 R_LARCH #75562
|
| 103 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_PC_LO20 = 113 #75562
|
| 104 |
+
pkg debug/elf, const R_LARCH_TLS_DESC64_PC_LO20 R_LARCH #75562
|
| 105 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_CALL = 120 #75562
|
| 106 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_CALL R_LARCH #75562
|
| 107 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_HI20 = 115 #75562
|
| 108 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_HI20 R_LARCH #75562
|
| 109 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_LD = 119 #75562
|
| 110 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_LD R_LARCH #75562
|
| 111 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_LO12 = 116 #75562
|
| 112 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_LO12 R_LARCH #75562
|
| 113 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_PCREL20_S2 = 126 #75562
|
| 114 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_PCREL20_S2 R_LARCH #75562
|
| 115 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_PC_HI20 = 111 #75562
|
| 116 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_PC_HI20 R_LARCH #75562
|
| 117 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_PC_LO12 = 112 #75562
|
| 118 |
+
pkg debug/elf, const R_LARCH_TLS_DESC_PC_LO12 R_LARCH #75562
|
| 119 |
+
pkg debug/elf, const R_LARCH_TLS_GD_PCREL20_S2 = 125 #75562
|
| 120 |
+
pkg debug/elf, const R_LARCH_TLS_GD_PCREL20_S2 R_LARCH #75562
|
| 121 |
+
pkg debug/elf, const R_LARCH_TLS_LD_PCREL20_S2 = 124 #75562
|
| 122 |
+
pkg debug/elf, const R_LARCH_TLS_LD_PCREL20_S2 R_LARCH #75562
|
| 123 |
+
pkg debug/elf, const R_LARCH_TLS_LE_ADD_R = 122 #75562
|
| 124 |
+
pkg debug/elf, const R_LARCH_TLS_LE_ADD_R R_LARCH #75562
|
| 125 |
+
pkg debug/elf, const R_LARCH_TLS_LE_HI20_R = 121 #75562
|
| 126 |
+
pkg debug/elf, const R_LARCH_TLS_LE_HI20_R R_LARCH #75562
|
| 127 |
+
pkg debug/elf, const R_LARCH_TLS_LE_LO12_R = 123 #75562
|
| 128 |
+
pkg debug/elf, const R_LARCH_TLS_LE_LO12_R R_LARCH #75562
|
| 129 |
+
pkg errors, func AsType[$0 error](error) ($0, bool) #51945
|
| 130 |
+
pkg go/ast, func ParseDirective(token.Pos, string) (Directive, bool) #68021
|
| 131 |
+
pkg go/ast, method (*Directive) End() token.Pos #68021
|
| 132 |
+
pkg go/ast, method (*Directive) ParseArgs() ([]DirectiveArg, error) #68021
|
| 133 |
+
pkg go/ast, method (*Directive) Pos() token.Pos #68021
|
| 134 |
+
pkg go/ast, type BasicLit struct, ValueEnd token.Pos #76031
|
| 135 |
+
pkg go/ast, type Directive struct #68021
|
| 136 |
+
pkg go/ast, type Directive struct, Args string #68021
|
| 137 |
+
pkg go/ast, type Directive struct, ArgsPos token.Pos #68021
|
| 138 |
+
pkg go/ast, type Directive struct, Name string #68021
|
| 139 |
+
pkg go/ast, type Directive struct, Slash token.Pos #68021
|
| 140 |
+
pkg go/ast, type Directive struct, Tool string #68021
|
| 141 |
+
pkg go/ast, type DirectiveArg struct #68021
|
| 142 |
+
pkg go/ast, type DirectiveArg struct, Arg string #68021
|
| 143 |
+
pkg go/ast, type DirectiveArg struct, Pos token.Pos #68021
|
| 144 |
+
pkg go/token, method (*File) End() Pos #75849
|
| 145 |
+
pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954
|
| 146 |
+
pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954
|
| 147 |
+
pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954
|
| 148 |
+
pkg log/slog, method (*MultiHandler) WithAttrs([]Attr) Handler #65954
|
| 149 |
+
pkg log/slog, method (*MultiHandler) WithGroup(string) Handler #65954
|
| 150 |
+
pkg log/slog, type MultiHandler struct #65954
|
| 151 |
+
pkg net, method (*Dialer) DialIP(context.Context, string, netip.Addr, netip.Addr) (*IPConn, error) #49097
|
| 152 |
+
pkg net, method (*Dialer) DialTCP(context.Context, string, netip.AddrPort, netip.AddrPort) (*TCPConn, error) #49097
|
| 153 |
+
pkg net, method (*Dialer) DialUDP(context.Context, string, netip.AddrPort, netip.AddrPort) (*UDPConn, error) #49097
|
| 154 |
+
pkg net, method (*Dialer) DialUnix(context.Context, string, *UnixAddr, *UnixAddr) (*UnixConn, error) #49097
|
| 155 |
+
pkg net/http, method (*ClientConn) Available() int #75772
|
| 156 |
+
pkg net/http, method (*ClientConn) Close() error #75772
|
| 157 |
+
pkg net/http, method (*ClientConn) Err() error #75772
|
| 158 |
+
pkg net/http, method (*ClientConn) InFlight() int #75772
|
| 159 |
+
pkg net/http, method (*ClientConn) Release() #75772
|
| 160 |
+
pkg net/http, method (*ClientConn) Reserve() error #75772
|
| 161 |
+
pkg net/http, method (*ClientConn) RoundTrip(*Request) (*Response, error) #75772
|
| 162 |
+
pkg net/http, method (*ClientConn) SetStateHook(func(*ClientConn)) #75772
|
| 163 |
+
pkg net/http, method (*Transport) NewClientConn(context.Context, string, string) (*ClientConn, error) #75772
|
| 164 |
+
pkg net/http, type ClientConn struct #75772
|
| 165 |
+
pkg net/http, type HTTP2Config struct, StrictMaxConcurrentRequests bool #67813
|
| 166 |
+
pkg net/http/httputil, type ReverseProxy struct, Director //deprecated #73161
|
| 167 |
+
pkg net/netip, method (Prefix) Compare(Prefix) int #61642
|
| 168 |
+
pkg os, method (*Process) WithHandle(func(uintptr)) error #70352
|
| 169 |
+
pkg os, var ErrNoHandle error #70352
|
| 170 |
+
pkg reflect, method (Value) Fields() iter.Seq2[StructField, Value] #66631
|
| 171 |
+
pkg reflect, method (Value) Methods() iter.Seq2[Method, Value] #66631
|
| 172 |
+
pkg reflect, type Type interface, Fields() iter.Seq[StructField] #66631
|
| 173 |
+
pkg reflect, type Type interface, Ins() iter.Seq[Type] #66631
|
| 174 |
+
pkg reflect, type Type interface, Methods() iter.Seq[Method] #66631
|
| 175 |
+
pkg reflect, type Type interface, Outs() iter.Seq[Type] #66631
|
| 176 |
+
pkg testing, method (*B) ArtifactDir() string #71287
|
| 177 |
+
pkg testing, method (*F) ArtifactDir() string #71287
|
| 178 |
+
pkg testing, method (*T) ArtifactDir() string #71287
|
| 179 |
+
pkg testing, type TB interface, ArtifactDir() string #71287
|
| 180 |
+
pkg testing/cryptotest, func SetGlobalRandom(*testing.T, uint64) #70942
|
api/go1.3.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
api/go1.4.txt
ADDED
|
@@ -0,0 +1,604 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CL 134210043 archive/zip: add Writer.Flush, Brad Fitzpatrick <bradfitz@golang.org>
|
| 2 |
+
pkg archive/zip, method (*Writer) Flush() error
|
| 3 |
+
|
| 4 |
+
# CL 97140043 compress/flate: add Reset() to allow reusing large buffers to compress multiple buffers, James Robinson <jamesr@google.com>
|
| 5 |
+
pkg compress/flate, type Resetter interface { Reset }
|
| 6 |
+
pkg compress/flate, type Resetter interface, Reset(io.Reader, []uint8) error
|
| 7 |
+
pkg compress/zlib, type Resetter interface { Reset }
|
| 8 |
+
pkg compress/zlib, type Resetter interface, Reset(io.Reader, []uint8) error
|
| 9 |
+
|
| 10 |
+
# CL 159120044 compress/gzip: allow stopping at end of first stream, Russ Cox <rsc@golang.org>
|
| 11 |
+
pkg compress/gzip, method (*Reader) Multistream(bool)
|
| 12 |
+
|
| 13 |
+
# CL 138800043 crypto: Add SHA3 functions in go.crypto/sha3 to the Hash enum., David Leon Gil <coruus@gmail.com>
|
| 14 |
+
pkg crypto, const SHA3_224 = 10
|
| 15 |
+
pkg crypto, const SHA3_224 Hash
|
| 16 |
+
pkg crypto, const SHA3_256 = 11
|
| 17 |
+
pkg crypto, const SHA3_256 Hash
|
| 18 |
+
pkg crypto, const SHA3_384 = 12
|
| 19 |
+
pkg crypto, const SHA3_384 Hash
|
| 20 |
+
pkg crypto, const SHA3_512 = 13
|
| 21 |
+
pkg crypto, const SHA3_512 Hash
|
| 22 |
+
|
| 23 |
+
# CL 114680043 crypto: add Signer, Adam Langley <agl@golang.org>
|
| 24 |
+
pkg crypto, method (Hash) HashFunc() Hash
|
| 25 |
+
pkg crypto, type Signer interface { Public, Sign }
|
| 26 |
+
pkg crypto, type Signer interface, Public() PublicKey
|
| 27 |
+
pkg crypto, type Signer interface, Sign(io.Reader, []uint8, SignerOpts) ([]uint8, error)
|
| 28 |
+
pkg crypto, type SignerOpts interface { HashFunc }
|
| 29 |
+
pkg crypto, type SignerOpts interface, HashFunc() Hash
|
| 30 |
+
pkg crypto/ecdsa, method (*PrivateKey) Public() crypto.PublicKey
|
| 31 |
+
pkg crypto/ecdsa, method (*PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)
|
| 32 |
+
pkg crypto/rsa, method (*PSSOptions) HashFunc() crypto.Hash
|
| 33 |
+
pkg crypto/rsa, method (*PrivateKey) Public() crypto.PublicKey
|
| 34 |
+
pkg crypto/rsa, method (*PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)
|
| 35 |
+
pkg crypto/rsa, type PSSOptions struct, Hash crypto.Hash
|
| 36 |
+
|
| 37 |
+
# CL 157090043 crypto/tls: support TLS_FALLBACK_SCSV as a server., Adam Langley <agl@golang.org>
|
| 38 |
+
pkg crypto/tls, const TLS_FALLBACK_SCSV = 22016
|
| 39 |
+
pkg crypto/tls, const TLS_FALLBACK_SCSV uint16
|
| 40 |
+
|
| 41 |
+
# CL 107400043 crypto/tls: Added dynamic alternative to NameToCertificate map for SNI, Percy Wegmann <ox.to.a.cart@gmail.com>
|
| 42 |
+
pkg crypto/tls, type ClientHelloInfo struct
|
| 43 |
+
pkg crypto/tls, type ClientHelloInfo struct, CipherSuites []uint16
|
| 44 |
+
pkg crypto/tls, type ClientHelloInfo struct, ServerName string
|
| 45 |
+
pkg crypto/tls, type ClientHelloInfo struct, SupportedCurves []CurveID
|
| 46 |
+
pkg crypto/tls, type ClientHelloInfo struct, SupportedPoints []uint8
|
| 47 |
+
pkg crypto/tls, type Config struct, GetCertificate func(*ClientHelloInfo) (*Certificate, error)
|
| 48 |
+
pkg crypto/tls, type ConnectionState struct, TLSUnique []uint8
|
| 49 |
+
|
| 50 |
+
# CL 153420045 crypto/x509: continue to recognise MaxPathLen of zero as "no value"., Adam Langley <agl@golang.org>
|
| 51 |
+
pkg crypto/x509, type Certificate struct, MaxPathLenZero bool
|
| 52 |
+
|
| 53 |
+
# CL 158950043 database/sql: add Drivers, returning list of registered drivers, Russ Cox <rsc@golang.org>
|
| 54 |
+
pkg database/sql, func Drivers() []string
|
| 55 |
+
|
| 56 |
+
# CL 117280043 debug/dwarf: fix Reader panic on DW_TAG_unspecified_type, Derek Parker <parkerderek86@gmail.com>
|
| 57 |
+
pkg debug/dwarf, method (*UnspecifiedType) Basic() *BasicType
|
| 58 |
+
pkg debug/dwarf, method (*UnspecifiedType) Common() *CommonType
|
| 59 |
+
pkg debug/dwarf, method (*UnspecifiedType) Size() int64
|
| 60 |
+
pkg debug/dwarf, method (*UnspecifiedType) String() string
|
| 61 |
+
pkg debug/dwarf, type UnspecifiedType struct
|
| 62 |
+
pkg debug/dwarf, type UnspecifiedType struct, embedded BasicType
|
| 63 |
+
|
| 64 |
+
# CL 132000043 debug/elf: support arm64 relocations, Michael Hudson-Doyle <michael.hudson@linaro.org>
|
| 65 |
+
pkg debug/elf, const EM_AARCH64 = 183
|
| 66 |
+
pkg debug/elf, const EM_AARCH64 Machine
|
| 67 |
+
pkg debug/elf, const R_AARCH64_ABS16 = 259
|
| 68 |
+
pkg debug/elf, const R_AARCH64_ABS16 R_AARCH64
|
| 69 |
+
pkg debug/elf, const R_AARCH64_ABS32 = 258
|
| 70 |
+
pkg debug/elf, const R_AARCH64_ABS32 R_AARCH64
|
| 71 |
+
pkg debug/elf, const R_AARCH64_ABS64 = 257
|
| 72 |
+
pkg debug/elf, const R_AARCH64_ABS64 R_AARCH64
|
| 73 |
+
pkg debug/elf, const R_AARCH64_ADD_ABS_LO12_NC = 277
|
| 74 |
+
pkg debug/elf, const R_AARCH64_ADD_ABS_LO12_NC R_AARCH64
|
| 75 |
+
pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE = 311
|
| 76 |
+
pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE R_AARCH64
|
| 77 |
+
pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 = 274
|
| 78 |
+
pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 R_AARCH64
|
| 79 |
+
pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 = 275
|
| 80 |
+
pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 R_AARCH64
|
| 81 |
+
pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC = 276
|
| 82 |
+
pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC R_AARCH64
|
| 83 |
+
pkg debug/elf, const R_AARCH64_CALL26 = 283
|
| 84 |
+
pkg debug/elf, const R_AARCH64_CALL26 R_AARCH64
|
| 85 |
+
pkg debug/elf, const R_AARCH64_CONDBR19 = 280
|
| 86 |
+
pkg debug/elf, const R_AARCH64_CONDBR19 R_AARCH64
|
| 87 |
+
pkg debug/elf, const R_AARCH64_COPY = 1024
|
| 88 |
+
pkg debug/elf, const R_AARCH64_COPY R_AARCH64
|
| 89 |
+
pkg debug/elf, const R_AARCH64_GLOB_DAT = 1025
|
| 90 |
+
pkg debug/elf, const R_AARCH64_GLOB_DAT R_AARCH64
|
| 91 |
+
pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 = 309
|
| 92 |
+
pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 R_AARCH64
|
| 93 |
+
pkg debug/elf, const R_AARCH64_IRELATIVE = 1032
|
| 94 |
+
pkg debug/elf, const R_AARCH64_IRELATIVE R_AARCH64
|
| 95 |
+
pkg debug/elf, const R_AARCH64_JUMP26 = 282
|
| 96 |
+
pkg debug/elf, const R_AARCH64_JUMP26 R_AARCH64
|
| 97 |
+
pkg debug/elf, const R_AARCH64_JUMP_SLOT = 1026
|
| 98 |
+
pkg debug/elf, const R_AARCH64_JUMP_SLOT R_AARCH64
|
| 99 |
+
pkg debug/elf, const R_AARCH64_LD64_GOT_LO12_NC = 312
|
| 100 |
+
pkg debug/elf, const R_AARCH64_LD64_GOT_LO12_NC R_AARCH64
|
| 101 |
+
pkg debug/elf, const R_AARCH64_LDST128_ABS_LO12_NC = 299
|
| 102 |
+
pkg debug/elf, const R_AARCH64_LDST128_ABS_LO12_NC R_AARCH64
|
| 103 |
+
pkg debug/elf, const R_AARCH64_LDST16_ABS_LO12_NC = 284
|
| 104 |
+
pkg debug/elf, const R_AARCH64_LDST16_ABS_LO12_NC R_AARCH64
|
| 105 |
+
pkg debug/elf, const R_AARCH64_LDST32_ABS_LO12_NC = 285
|
| 106 |
+
pkg debug/elf, const R_AARCH64_LDST32_ABS_LO12_NC R_AARCH64
|
| 107 |
+
pkg debug/elf, const R_AARCH64_LDST64_ABS_LO12_NC = 286
|
| 108 |
+
pkg debug/elf, const R_AARCH64_LDST64_ABS_LO12_NC R_AARCH64
|
| 109 |
+
pkg debug/elf, const R_AARCH64_LDST8_ABS_LO12_NC = 278
|
| 110 |
+
pkg debug/elf, const R_AARCH64_LDST8_ABS_LO12_NC R_AARCH64
|
| 111 |
+
pkg debug/elf, const R_AARCH64_LD_PREL_LO19 = 273
|
| 112 |
+
pkg debug/elf, const R_AARCH64_LD_PREL_LO19 R_AARCH64
|
| 113 |
+
pkg debug/elf, const R_AARCH64_MOVW_SABS_G0 = 270
|
| 114 |
+
pkg debug/elf, const R_AARCH64_MOVW_SABS_G0 R_AARCH64
|
| 115 |
+
pkg debug/elf, const R_AARCH64_MOVW_SABS_G1 = 271
|
| 116 |
+
pkg debug/elf, const R_AARCH64_MOVW_SABS_G1 R_AARCH64
|
| 117 |
+
pkg debug/elf, const R_AARCH64_MOVW_SABS_G2 = 272
|
| 118 |
+
pkg debug/elf, const R_AARCH64_MOVW_SABS_G2 R_AARCH64
|
| 119 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G0 = 263
|
| 120 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G0 R_AARCH64
|
| 121 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G0_NC = 264
|
| 122 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G0_NC R_AARCH64
|
| 123 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G1 = 265
|
| 124 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G1 R_AARCH64
|
| 125 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G1_NC = 266
|
| 126 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G1_NC R_AARCH64
|
| 127 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G2 = 267
|
| 128 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G2 R_AARCH64
|
| 129 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G2_NC = 268
|
| 130 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G2_NC R_AARCH64
|
| 131 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G3 = 269
|
| 132 |
+
pkg debug/elf, const R_AARCH64_MOVW_UABS_G3 R_AARCH64
|
| 133 |
+
pkg debug/elf, const R_AARCH64_NONE = 0
|
| 134 |
+
pkg debug/elf, const R_AARCH64_NONE R_AARCH64
|
| 135 |
+
pkg debug/elf, const R_AARCH64_NULL = 256
|
| 136 |
+
pkg debug/elf, const R_AARCH64_NULL R_AARCH64
|
| 137 |
+
pkg debug/elf, const R_AARCH64_P32_ABS16 = 2
|
| 138 |
+
pkg debug/elf, const R_AARCH64_P32_ABS16 R_AARCH64
|
| 139 |
+
pkg debug/elf, const R_AARCH64_P32_ABS32 = 1
|
| 140 |
+
pkg debug/elf, const R_AARCH64_P32_ABS32 R_AARCH64
|
| 141 |
+
pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC = 12
|
| 142 |
+
pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC R_AARCH64
|
| 143 |
+
pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE = 26
|
| 144 |
+
pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE R_AARCH64
|
| 145 |
+
pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 = 10
|
| 146 |
+
pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 R_AARCH64
|
| 147 |
+
pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 = 11
|
| 148 |
+
pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 R_AARCH64
|
| 149 |
+
pkg debug/elf, const R_AARCH64_P32_CALL26 = 21
|
| 150 |
+
pkg debug/elf, const R_AARCH64_P32_CALL26 R_AARCH64
|
| 151 |
+
pkg debug/elf, const R_AARCH64_P32_CONDBR19 = 19
|
| 152 |
+
pkg debug/elf, const R_AARCH64_P32_CONDBR19 R_AARCH64
|
| 153 |
+
pkg debug/elf, const R_AARCH64_P32_COPY = 180
|
| 154 |
+
pkg debug/elf, const R_AARCH64_P32_COPY R_AARCH64
|
| 155 |
+
pkg debug/elf, const R_AARCH64_P32_GLOB_DAT = 181
|
| 156 |
+
pkg debug/elf, const R_AARCH64_P32_GLOB_DAT R_AARCH64
|
| 157 |
+
pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 = 25
|
| 158 |
+
pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 R_AARCH64
|
| 159 |
+
pkg debug/elf, const R_AARCH64_P32_IRELATIVE = 188
|
| 160 |
+
pkg debug/elf, const R_AARCH64_P32_IRELATIVE R_AARCH64
|
| 161 |
+
pkg debug/elf, const R_AARCH64_P32_JUMP26 = 20
|
| 162 |
+
pkg debug/elf, const R_AARCH64_P32_JUMP26 R_AARCH64
|
| 163 |
+
pkg debug/elf, const R_AARCH64_P32_JUMP_SLOT = 182
|
| 164 |
+
pkg debug/elf, const R_AARCH64_P32_JUMP_SLOT R_AARCH64
|
| 165 |
+
pkg debug/elf, const R_AARCH64_P32_LD32_GOT_LO12_NC = 27
|
| 166 |
+
pkg debug/elf, const R_AARCH64_P32_LD32_GOT_LO12_NC R_AARCH64
|
| 167 |
+
pkg debug/elf, const R_AARCH64_P32_LDST128_ABS_LO12_NC = 17
|
| 168 |
+
pkg debug/elf, const R_AARCH64_P32_LDST128_ABS_LO12_NC R_AARCH64
|
| 169 |
+
pkg debug/elf, const R_AARCH64_P32_LDST16_ABS_LO12_NC = 14
|
| 170 |
+
pkg debug/elf, const R_AARCH64_P32_LDST16_ABS_LO12_NC R_AARCH64
|
| 171 |
+
pkg debug/elf, const R_AARCH64_P32_LDST32_ABS_LO12_NC = 15
|
| 172 |
+
pkg debug/elf, const R_AARCH64_P32_LDST32_ABS_LO12_NC R_AARCH64
|
| 173 |
+
pkg debug/elf, const R_AARCH64_P32_LDST64_ABS_LO12_NC = 16
|
| 174 |
+
pkg debug/elf, const R_AARCH64_P32_LDST64_ABS_LO12_NC R_AARCH64
|
| 175 |
+
pkg debug/elf, const R_AARCH64_P32_LDST8_ABS_LO12_NC = 13
|
| 176 |
+
pkg debug/elf, const R_AARCH64_P32_LDST8_ABS_LO12_NC R_AARCH64
|
| 177 |
+
pkg debug/elf, const R_AARCH64_P32_LD_PREL_LO19 = 9
|
| 178 |
+
pkg debug/elf, const R_AARCH64_P32_LD_PREL_LO19 R_AARCH64
|
| 179 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_SABS_G0 = 8
|
| 180 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_SABS_G0 R_AARCH64
|
| 181 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0 = 5
|
| 182 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0 R_AARCH64
|
| 183 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0_NC = 6
|
| 184 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0_NC R_AARCH64
|
| 185 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G1 = 7
|
| 186 |
+
pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G1 R_AARCH64
|
| 187 |
+
pkg debug/elf, const R_AARCH64_P32_PREL16 = 4
|
| 188 |
+
pkg debug/elf, const R_AARCH64_P32_PREL16 R_AARCH64
|
| 189 |
+
pkg debug/elf, const R_AARCH64_P32_PREL32 = 3
|
| 190 |
+
pkg debug/elf, const R_AARCH64_P32_PREL32 R_AARCH64
|
| 191 |
+
pkg debug/elf, const R_AARCH64_P32_RELATIVE = 183
|
| 192 |
+
pkg debug/elf, const R_AARCH64_P32_RELATIVE R_AARCH64
|
| 193 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC = 187
|
| 194 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC R_AARCH64
|
| 195 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADD_LO12_NC = 126
|
| 196 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADD_LO12_NC R_AARCH64
|
| 197 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PAGE21 = 124
|
| 198 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PAGE21 R_AARCH64
|
| 199 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PREL21 = 123
|
| 200 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PREL21 R_AARCH64
|
| 201 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_CALL = 127
|
| 202 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_CALL R_AARCH64
|
| 203 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD32_LO12_NC = 125
|
| 204 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD32_LO12_NC R_AARCH64
|
| 205 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD_PREL19 = 122
|
| 206 |
+
pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD_PREL19 R_AARCH64
|
| 207 |
+
pkg debug/elf, const R_AARCH64_P32_TLSGD_ADD_LO12_NC = 82
|
| 208 |
+
pkg debug/elf, const R_AARCH64_P32_TLSGD_ADD_LO12_NC R_AARCH64
|
| 209 |
+
pkg debug/elf, const R_AARCH64_P32_TLSGD_ADR_PAGE21 = 81
|
| 210 |
+
pkg debug/elf, const R_AARCH64_P32_TLSGD_ADR_PAGE21 R_AARCH64
|
| 211 |
+
pkg debug/elf, const R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 = 103
|
| 212 |
+
pkg debug/elf, const R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64
|
| 213 |
+
pkg debug/elf, const R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC = 104
|
| 214 |
+
pkg debug/elf, const R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC R_AARCH64
|
| 215 |
+
pkg debug/elf, const R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 = 105
|
| 216 |
+
pkg debug/elf, const R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64
|
| 217 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 = 109
|
| 218 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 R_AARCH64
|
| 219 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 = 110
|
| 220 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 R_AARCH64
|
| 221 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC = 111
|
| 222 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC R_AARCH64
|
| 223 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 = 107
|
| 224 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 R_AARCH64
|
| 225 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC = 108
|
| 226 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC R_AARCH64
|
| 227 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 = 106
|
| 228 |
+
pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 R_AARCH64
|
| 229 |
+
pkg debug/elf, const R_AARCH64_P32_TLS_DTPMOD = 184
|
| 230 |
+
pkg debug/elf, const R_AARCH64_P32_TLS_DTPMOD R_AARCH64
|
| 231 |
+
pkg debug/elf, const R_AARCH64_P32_TLS_DTPREL = 185
|
| 232 |
+
pkg debug/elf, const R_AARCH64_P32_TLS_DTPREL R_AARCH64
|
| 233 |
+
pkg debug/elf, const R_AARCH64_P32_TLS_TPREL = 186
|
| 234 |
+
pkg debug/elf, const R_AARCH64_P32_TLS_TPREL R_AARCH64
|
| 235 |
+
pkg debug/elf, const R_AARCH64_P32_TSTBR14 = 18
|
| 236 |
+
pkg debug/elf, const R_AARCH64_P32_TSTBR14 R_AARCH64
|
| 237 |
+
pkg debug/elf, const R_AARCH64_PREL16 = 262
|
| 238 |
+
pkg debug/elf, const R_AARCH64_PREL16 R_AARCH64
|
| 239 |
+
pkg debug/elf, const R_AARCH64_PREL32 = 261
|
| 240 |
+
pkg debug/elf, const R_AARCH64_PREL32 R_AARCH64
|
| 241 |
+
pkg debug/elf, const R_AARCH64_PREL64 = 260
|
| 242 |
+
pkg debug/elf, const R_AARCH64_PREL64 R_AARCH64
|
| 243 |
+
pkg debug/elf, const R_AARCH64_RELATIVE = 1027
|
| 244 |
+
pkg debug/elf, const R_AARCH64_RELATIVE R_AARCH64
|
| 245 |
+
pkg debug/elf, const R_AARCH64_TLSDESC = 1031
|
| 246 |
+
pkg debug/elf, const R_AARCH64_TLSDESC R_AARCH64
|
| 247 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADD = 568
|
| 248 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADD R_AARCH64
|
| 249 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADD_LO12_NC = 564
|
| 250 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADD_LO12_NC R_AARCH64
|
| 251 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PAGE21 = 562
|
| 252 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PAGE21 R_AARCH64
|
| 253 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PREL21 = 561
|
| 254 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PREL21 R_AARCH64
|
| 255 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_CALL = 569
|
| 256 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_CALL R_AARCH64
|
| 257 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_LD64_LO12_NC = 563
|
| 258 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_LD64_LO12_NC R_AARCH64
|
| 259 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_LDR = 567
|
| 260 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_LDR R_AARCH64
|
| 261 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_LD_PREL19 = 560
|
| 262 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_LD_PREL19 R_AARCH64
|
| 263 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G0_NC = 566
|
| 264 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G0_NC R_AARCH64
|
| 265 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G1 = 565
|
| 266 |
+
pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G1 R_AARCH64
|
| 267 |
+
pkg debug/elf, const R_AARCH64_TLSGD_ADD_LO12_NC = 514
|
| 268 |
+
pkg debug/elf, const R_AARCH64_TLSGD_ADD_LO12_NC R_AARCH64
|
| 269 |
+
pkg debug/elf, const R_AARCH64_TLSGD_ADR_PAGE21 = 513
|
| 270 |
+
pkg debug/elf, const R_AARCH64_TLSGD_ADR_PAGE21 R_AARCH64
|
| 271 |
+
pkg debug/elf, const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 = 541
|
| 272 |
+
pkg debug/elf, const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64
|
| 273 |
+
pkg debug/elf, const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC = 542
|
| 274 |
+
pkg debug/elf, const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC R_AARCH64
|
| 275 |
+
pkg debug/elf, const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 = 543
|
| 276 |
+
pkg debug/elf, const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64
|
| 277 |
+
pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC = 540
|
| 278 |
+
pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC R_AARCH64
|
| 279 |
+
pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 = 539
|
| 280 |
+
pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 R_AARCH64
|
| 281 |
+
pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_HI12 = 549
|
| 282 |
+
pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_HI12 R_AARCH64
|
| 283 |
+
pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12 = 550
|
| 284 |
+
pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12 R_AARCH64
|
| 285 |
+
pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC = 551
|
| 286 |
+
pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC R_AARCH64
|
| 287 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0 = 547
|
| 288 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0 R_AARCH64
|
| 289 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC = 548
|
| 290 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC R_AARCH64
|
| 291 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1 = 545
|
| 292 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1 R_AARCH64
|
| 293 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC = 546
|
| 294 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC R_AARCH64
|
| 295 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G2 = 544
|
| 296 |
+
pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G2 R_AARCH64
|
| 297 |
+
pkg debug/elf, const R_AARCH64_TLS_DTPMOD64 = 1028
|
| 298 |
+
pkg debug/elf, const R_AARCH64_TLS_DTPMOD64 R_AARCH64
|
| 299 |
+
pkg debug/elf, const R_AARCH64_TLS_DTPREL64 = 1029
|
| 300 |
+
pkg debug/elf, const R_AARCH64_TLS_DTPREL64 R_AARCH64
|
| 301 |
+
pkg debug/elf, const R_AARCH64_TLS_TPREL64 = 1030
|
| 302 |
+
pkg debug/elf, const R_AARCH64_TLS_TPREL64 R_AARCH64
|
| 303 |
+
pkg debug/elf, const R_AARCH64_TSTBR14 = 279
|
| 304 |
+
pkg debug/elf, const R_AARCH64_TSTBR14 R_AARCH64
|
| 305 |
+
pkg debug/elf, method (R_AARCH64) GoString() string
|
| 306 |
+
pkg debug/elf, method (R_AARCH64) String() string
|
| 307 |
+
pkg debug/elf, type R_AARCH64 int
|
| 308 |
+
|
| 309 |
+
# CL 107530043 debug/elf: add (*File).DynamicSymbols, ErrNoSymbols, and tests for (*File).Symbols and (*File).DynamicSymbols, and formalize symbol order., Pietro Gagliardi <pietro10@mac.com>
|
| 310 |
+
pkg debug/elf, method (*File) DynamicSymbols() ([]Symbol, error)
|
| 311 |
+
pkg debug/elf, var ErrNoSymbols error
|
| 312 |
+
|
| 313 |
+
# CL 106460044 debug/plan9obj, cmd/addr2line: on Plan 9 use a.out header, Aram Hăvărneanu <aram@mgk.ro>
|
| 314 |
+
pkg debug/plan9obj, type FileHeader struct, HdrSize uint64
|
| 315 |
+
pkg debug/plan9obj, type FileHeader struct, LoadAddress uint64
|
| 316 |
+
|
| 317 |
+
# CL 122960043 encoding/xml: add InputOffset method to Decoder, Russ Cox <rsc@golang.org>
|
| 318 |
+
pkg encoding/xml, method (*Decoder) InputOffset() int64
|
| 319 |
+
|
| 320 |
+
# CL 124940043 cmd/go, go/build: implement import comment checking, Russ Cox <rsc@golang.org>
|
| 321 |
+
pkg go/build, const ImportComment = 4
|
| 322 |
+
pkg go/build, const ImportComment ImportMode
|
| 323 |
+
pkg go/build, type Package struct, ImportComment string
|
| 324 |
+
|
| 325 |
+
# CL 155050043 go/build: Return MultiplePackageError on importing a dir containing multiple packages, Jens Frederich <jfrederich@gmail.com>
|
| 326 |
+
pkg go/build, method (*MultiplePackageError) Error() string
|
| 327 |
+
pkg go/build, type MultiplePackageError struct
|
| 328 |
+
pkg go/build, type MultiplePackageError struct, Dir string
|
| 329 |
+
pkg go/build, type MultiplePackageError struct, Files []string
|
| 330 |
+
pkg go/build, type MultiplePackageError struct, Packages []string
|
| 331 |
+
|
| 332 |
+
# CL 135110044 go/token: implement PositionFor accessors, Robert Griesemer <gri@golang.org>
|
| 333 |
+
pkg go/token, method (*File) PositionFor(Pos, bool) Position
|
| 334 |
+
pkg go/token, method (*FileSet) PositionFor(Pos, bool) Position
|
| 335 |
+
|
| 336 |
+
# CL 109000049 image: add RGBAAt, Gray16At, etc., ChaiShushan <chaishushan@gmail.com>
|
| 337 |
+
pkg image, method (*Alpha) AlphaAt(int, int) color.Alpha
|
| 338 |
+
pkg image, method (*Alpha16) Alpha16At(int, int) color.Alpha16
|
| 339 |
+
pkg image, method (*Gray) GrayAt(int, int) color.Gray
|
| 340 |
+
pkg image, method (*Gray16) Gray16At(int, int) color.Gray16
|
| 341 |
+
pkg image, method (*NRGBA) NRGBAAt(int, int) color.NRGBA
|
| 342 |
+
pkg image, method (*NRGBA64) NRGBA64At(int, int) color.NRGBA64
|
| 343 |
+
pkg image, method (*RGBA) RGBAAt(int, int) color.RGBA
|
| 344 |
+
pkg image, method (*RGBA64) RGBA64At(int, int) color.RGBA64
|
| 345 |
+
pkg image, method (*YCbCr) YCbCrAt(int, int) color.YCbCr
|
| 346 |
+
|
| 347 |
+
# CL 129190043 png: make the encoder configurable, Jeff R. Allen <jra@nella.org>
|
| 348 |
+
pkg image/png, const BestCompression = -3
|
| 349 |
+
pkg image/png, const BestCompression CompressionLevel
|
| 350 |
+
pkg image/png, const BestSpeed = -2
|
| 351 |
+
pkg image/png, const BestSpeed CompressionLevel
|
| 352 |
+
pkg image/png, const DefaultCompression = 0
|
| 353 |
+
pkg image/png, const DefaultCompression CompressionLevel
|
| 354 |
+
pkg image/png, const NoCompression = -1
|
| 355 |
+
pkg image/png, const NoCompression CompressionLevel
|
| 356 |
+
pkg image/png, method (*Encoder) Encode(io.Writer, image.Image) error
|
| 357 |
+
pkg image/png, type CompressionLevel int
|
| 358 |
+
pkg image/png, type Encoder struct
|
| 359 |
+
pkg image/png, type Encoder struct, CompressionLevel CompressionLevel
|
| 360 |
+
|
| 361 |
+
# CL 101750048 math: implement Nextafter32, Robert Griesemer <gri@golang.org>
|
| 362 |
+
pkg math, func Nextafter32(float32, float32) float32
|
| 363 |
+
|
| 364 |
+
# CL 93550043 math/big: implement Rat.Float32, Robert Griesemer <gri@golang.org>
|
| 365 |
+
pkg math/big, method (*Rat) Float32() (float32, bool)
|
| 366 |
+
|
| 367 |
+
# CL 76540043 net/http: add BasicAuth method to *http.Request, Kelsey Hightower <kelsey.hightower@gmail.com>
|
| 368 |
+
pkg net/http, method (*Request) BasicAuth() (string, string, bool)
|
| 369 |
+
|
| 370 |
+
# CL 137940043 net/http: add Transport.DialTLS hook, Brad Fitzpatrick <bradfitz@golang.org>
|
| 371 |
+
pkg net/http, type Transport struct, DialTLS func(string, string) (net.Conn, error)
|
| 372 |
+
|
| 373 |
+
# CL 132750043 net/http/httputil: Pass a Logger to ReverseProxy, allowing the user to control logging., Mark Theunissen <mark.theunissen@gmail.com>
|
| 374 |
+
pkg net/http/httputil, type ReverseProxy struct, ErrorLog *log.Logger
|
| 375 |
+
|
| 376 |
+
# CL 148370043 os, syscall: add Unsetenv, Brad Fitzpatrick <bradfitz@golang.org>
|
| 377 |
+
pkg os, func Unsetenv(string) error
|
| 378 |
+
pkg syscall, func Unsetenv(string) error
|
| 379 |
+
|
| 380 |
+
# CL 144020043 reflect: add Type.Comparable, Russ Cox <rsc@golang.org>
|
| 381 |
+
pkg reflect, type Type interface, Comparable() bool
|
| 382 |
+
|
| 383 |
+
# CL 153670043 runtime: add PauseEnd array to MemStats and GCStats, Jens Frederich <jfrederich@gmail.com>
|
| 384 |
+
pkg runtime, type MemStats struct, PauseEnd [256]uint64
|
| 385 |
+
pkg runtime/debug, type GCStats struct, PauseEnd []time.Time
|
| 386 |
+
|
| 387 |
+
# CL 136710045 sync/atomic: add Value, Dmitriy Vyukov <dvyukov@google.com>
|
| 388 |
+
pkg sync/atomic, method (*Value) Load() interface{}
|
| 389 |
+
pkg sync/atomic, method (*Value) Store(interface{})
|
| 390 |
+
pkg sync/atomic, type Value struct
|
| 391 |
+
|
| 392 |
+
# CL 126190043 syscall: support UID/GID map files for Linux user namespaces, Mrunal Patel <mrunalp@gmail.com>
|
| 393 |
+
pkg syscall (linux-386), type SysProcAttr struct, GidMappings []SysProcIDMap
|
| 394 |
+
pkg syscall (linux-386), type SysProcAttr struct, UidMappings []SysProcIDMap
|
| 395 |
+
pkg syscall (linux-386), type SysProcIDMap struct
|
| 396 |
+
pkg syscall (linux-386), type SysProcIDMap struct, ContainerID int
|
| 397 |
+
pkg syscall (linux-386), type SysProcIDMap struct, HostID int
|
| 398 |
+
pkg syscall (linux-386), type SysProcIDMap struct, Size int
|
| 399 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap
|
| 400 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap
|
| 401 |
+
pkg syscall (linux-386-cgo), type SysProcIDMap struct
|
| 402 |
+
pkg syscall (linux-386-cgo), type SysProcIDMap struct, ContainerID int
|
| 403 |
+
pkg syscall (linux-386-cgo), type SysProcIDMap struct, HostID int
|
| 404 |
+
pkg syscall (linux-386-cgo), type SysProcIDMap struct, Size int
|
| 405 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, GidMappings []SysProcIDMap
|
| 406 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, UidMappings []SysProcIDMap
|
| 407 |
+
pkg syscall (linux-amd64), type SysProcIDMap struct
|
| 408 |
+
pkg syscall (linux-amd64), type SysProcIDMap struct, ContainerID int
|
| 409 |
+
pkg syscall (linux-amd64), type SysProcIDMap struct, HostID int
|
| 410 |
+
pkg syscall (linux-amd64), type SysProcIDMap struct, Size int
|
| 411 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap
|
| 412 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap
|
| 413 |
+
pkg syscall (linux-amd64-cgo), type SysProcIDMap struct
|
| 414 |
+
pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, ContainerID int
|
| 415 |
+
pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, HostID int
|
| 416 |
+
pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, Size int
|
| 417 |
+
pkg syscall (linux-arm), type SysProcAttr struct, GidMappings []SysProcIDMap
|
| 418 |
+
pkg syscall (linux-arm), type SysProcAttr struct, UidMappings []SysProcIDMap
|
| 419 |
+
pkg syscall (linux-arm), type SysProcIDMap struct
|
| 420 |
+
pkg syscall (linux-arm), type SysProcIDMap struct, ContainerID int
|
| 421 |
+
pkg syscall (linux-arm), type SysProcIDMap struct, HostID int
|
| 422 |
+
pkg syscall (linux-arm), type SysProcIDMap struct, Size int
|
| 423 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap
|
| 424 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap
|
| 425 |
+
pkg syscall (linux-arm-cgo), type SysProcIDMap struct
|
| 426 |
+
pkg syscall (linux-arm-cgo), type SysProcIDMap struct, ContainerID int
|
| 427 |
+
pkg syscall (linux-arm-cgo), type SysProcIDMap struct, HostID int
|
| 428 |
+
pkg syscall (linux-arm-cgo), type SysProcIDMap struct, Size int
|
| 429 |
+
|
| 430 |
+
# CL 122200043 net: fix CNAME resolving on Windows, Egon Elbre <egonelbre@gmail.com>
|
| 431 |
+
pkg syscall (windows-386), const DNS_INFO_NO_RECORDS = 9501
|
| 432 |
+
pkg syscall (windows-386), const DNS_INFO_NO_RECORDS ideal-int
|
| 433 |
+
pkg syscall (windows-386), const DnsSectionAdditional = 3
|
| 434 |
+
pkg syscall (windows-386), const DnsSectionAdditional ideal-int
|
| 435 |
+
pkg syscall (windows-386), const DnsSectionAnswer = 1
|
| 436 |
+
pkg syscall (windows-386), const DnsSectionAnswer ideal-int
|
| 437 |
+
pkg syscall (windows-386), const DnsSectionAuthority = 2
|
| 438 |
+
pkg syscall (windows-386), const DnsSectionAuthority ideal-int
|
| 439 |
+
pkg syscall (windows-386), const DnsSectionQuestion = 0
|
| 440 |
+
pkg syscall (windows-386), const DnsSectionQuestion ideal-int
|
| 441 |
+
pkg syscall (windows-386), func DnsNameCompare(*uint16, *uint16) bool
|
| 442 |
+
pkg syscall (windows-amd64), const DNS_INFO_NO_RECORDS = 9501
|
| 443 |
+
pkg syscall (windows-amd64), const DNS_INFO_NO_RECORDS ideal-int
|
| 444 |
+
pkg syscall (windows-amd64), const DnsSectionAdditional = 3
|
| 445 |
+
pkg syscall (windows-amd64), const DnsSectionAdditional ideal-int
|
| 446 |
+
pkg syscall (windows-amd64), const DnsSectionAnswer = 1
|
| 447 |
+
pkg syscall (windows-amd64), const DnsSectionAnswer ideal-int
|
| 448 |
+
pkg syscall (windows-amd64), const DnsSectionAuthority = 2
|
| 449 |
+
pkg syscall (windows-amd64), const DnsSectionAuthority ideal-int
|
| 450 |
+
pkg syscall (windows-amd64), const DnsSectionQuestion = 0
|
| 451 |
+
pkg syscall (windows-amd64), const DnsSectionQuestion ideal-int
|
| 452 |
+
pkg syscall (windows-amd64), func DnsNameCompare(*uint16, *uint16) bool
|
| 453 |
+
|
| 454 |
+
# CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <michael.fraenkel@gmail.com>
|
| 455 |
+
pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD = 1314
|
| 456 |
+
pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD Errno
|
| 457 |
+
pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD = 1314
|
| 458 |
+
pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD Errno
|
| 459 |
+
|
| 460 |
+
# CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <michael.fraenkel@gmail.com>
|
| 461 |
+
pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT = 1024
|
| 462 |
+
pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int
|
| 463 |
+
pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152
|
| 464 |
+
pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int
|
| 465 |
+
pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT = 589992
|
| 466 |
+
pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT ideal-int
|
| 467 |
+
pkg syscall (windows-386), const IO_REPARSE_TAG_SYMLINK = 2684354572
|
| 468 |
+
pkg syscall (windows-386), const IO_REPARSE_TAG_SYMLINK ideal-int
|
| 469 |
+
pkg syscall (windows-386), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16384
|
| 470 |
+
pkg syscall (windows-386), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE ideal-int
|
| 471 |
+
pkg syscall (windows-386), const SYMBOLIC_LINK_FLAG_DIRECTORY = 1
|
| 472 |
+
pkg syscall (windows-386), const SYMBOLIC_LINK_FLAG_DIRECTORY ideal-int
|
| 473 |
+
pkg syscall (windows-386), func CreateHardLink(*uint16, *uint16, uintptr) error
|
| 474 |
+
pkg syscall (windows-386), func CreateSymbolicLink(*uint16, *uint16, uint32) error
|
| 475 |
+
pkg syscall (windows-386), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error
|
| 476 |
+
pkg syscall (windows-386), func LoadCreateSymbolicLink() error
|
| 477 |
+
pkg syscall (windows-amd64), const FILE_ATTRIBUTE_REPARSE_POINT = 1024
|
| 478 |
+
pkg syscall (windows-amd64), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int
|
| 479 |
+
pkg syscall (windows-amd64), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152
|
| 480 |
+
pkg syscall (windows-amd64), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int
|
| 481 |
+
pkg syscall (windows-amd64), const FSCTL_GET_REPARSE_POINT = 589992
|
| 482 |
+
pkg syscall (windows-amd64), const FSCTL_GET_REPARSE_POINT ideal-int
|
| 483 |
+
pkg syscall (windows-amd64), const IO_REPARSE_TAG_SYMLINK = 2684354572
|
| 484 |
+
pkg syscall (windows-amd64), const IO_REPARSE_TAG_SYMLINK ideal-int
|
| 485 |
+
pkg syscall (windows-amd64), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16384
|
| 486 |
+
pkg syscall (windows-amd64), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE ideal-int
|
| 487 |
+
pkg syscall (windows-amd64), const SYMBOLIC_LINK_FLAG_DIRECTORY = 1
|
| 488 |
+
pkg syscall (windows-amd64), const SYMBOLIC_LINK_FLAG_DIRECTORY ideal-int
|
| 489 |
+
pkg syscall (windows-amd64), func CreateHardLink(*uint16, *uint16, uintptr) error
|
| 490 |
+
pkg syscall (windows-amd64), func CreateSymbolicLink(*uint16, *uint16, uint32) error
|
| 491 |
+
pkg syscall (windows-amd64), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error
|
| 492 |
+
pkg syscall (windows-amd64), func LoadCreateSymbolicLink() error
|
| 493 |
+
|
| 494 |
+
# CL 149510043 net: disable SIO_UDP_CONNRESET behavior on windows., Ron Hashimoto <mail@h2so5.net>
|
| 495 |
+
pkg syscall (windows-386), const SIO_UDP_CONNRESET = 2550136844
|
| 496 |
+
pkg syscall (windows-386), const SIO_UDP_CONNRESET ideal-int
|
| 497 |
+
pkg syscall (windows-amd64), const SIO_UDP_CONNRESET = 2550136844
|
| 498 |
+
pkg syscall (windows-amd64), const SIO_UDP_CONNRESET ideal-int
|
| 499 |
+
|
| 500 |
+
# CL 102320044 syscall: implement syscall.Getppid() on Windows, Alan Shreve <alan@inconshreveable.com>
|
| 501 |
+
pkg syscall (windows-386), const TH32CS_INHERIT = 2147483648
|
| 502 |
+
pkg syscall (windows-386), const TH32CS_INHERIT ideal-int
|
| 503 |
+
pkg syscall (windows-386), const TH32CS_SNAPALL = 15
|
| 504 |
+
pkg syscall (windows-386), const TH32CS_SNAPALL ideal-int
|
| 505 |
+
pkg syscall (windows-386), const TH32CS_SNAPHEAPLIST = 1
|
| 506 |
+
pkg syscall (windows-386), const TH32CS_SNAPHEAPLIST ideal-int
|
| 507 |
+
pkg syscall (windows-386), const TH32CS_SNAPMODULE = 8
|
| 508 |
+
pkg syscall (windows-386), const TH32CS_SNAPMODULE ideal-int
|
| 509 |
+
pkg syscall (windows-386), const TH32CS_SNAPMODULE32 = 16
|
| 510 |
+
pkg syscall (windows-386), const TH32CS_SNAPMODULE32 ideal-int
|
| 511 |
+
pkg syscall (windows-386), const TH32CS_SNAPPROCESS = 2
|
| 512 |
+
pkg syscall (windows-386), const TH32CS_SNAPPROCESS ideal-int
|
| 513 |
+
pkg syscall (windows-386), const TH32CS_SNAPTHREAD = 4
|
| 514 |
+
pkg syscall (windows-386), const TH32CS_SNAPTHREAD ideal-int
|
| 515 |
+
pkg syscall (windows-386), func CreateToolhelp32Snapshot(uint32, uint32) (Handle, error)
|
| 516 |
+
pkg syscall (windows-386), func Process32First(Handle, *ProcessEntry32) error
|
| 517 |
+
pkg syscall (windows-386), func Process32Next(Handle, *ProcessEntry32) error
|
| 518 |
+
pkg syscall (windows-386), type ProcessEntry32 struct
|
| 519 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, DefaultHeapID uintptr
|
| 520 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, ExeFile [260]uint16
|
| 521 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, Flags uint32
|
| 522 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, ModuleID uint32
|
| 523 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32
|
| 524 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, PriClassBase int32
|
| 525 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, ProcessID uint32
|
| 526 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, Size uint32
|
| 527 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, Threads uint32
|
| 528 |
+
pkg syscall (windows-386), type ProcessEntry32 struct, Usage uint32
|
| 529 |
+
pkg syscall (windows-amd64), const TH32CS_INHERIT = 2147483648
|
| 530 |
+
pkg syscall (windows-amd64), const TH32CS_INHERIT ideal-int
|
| 531 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPALL = 15
|
| 532 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPALL ideal-int
|
| 533 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPHEAPLIST = 1
|
| 534 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPHEAPLIST ideal-int
|
| 535 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPMODULE = 8
|
| 536 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPMODULE ideal-int
|
| 537 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPMODULE32 = 16
|
| 538 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPMODULE32 ideal-int
|
| 539 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPPROCESS = 2
|
| 540 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPPROCESS ideal-int
|
| 541 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPTHREAD = 4
|
| 542 |
+
pkg syscall (windows-amd64), const TH32CS_SNAPTHREAD ideal-int
|
| 543 |
+
pkg syscall (windows-amd64), func CreateToolhelp32Snapshot(uint32, uint32) (Handle, error)
|
| 544 |
+
pkg syscall (windows-amd64), func Process32First(Handle, *ProcessEntry32) error
|
| 545 |
+
pkg syscall (windows-amd64), func Process32Next(Handle, *ProcessEntry32) error
|
| 546 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct
|
| 547 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, DefaultHeapID uintptr
|
| 548 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, ExeFile [260]uint16
|
| 549 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, Flags uint32
|
| 550 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, ModuleID uint32
|
| 551 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, ParentProcessID uint32
|
| 552 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, PriClassBase int32
|
| 553 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, ProcessID uint32
|
| 554 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, Size uint32
|
| 555 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, Threads uint32
|
| 556 |
+
pkg syscall (windows-amd64), type ProcessEntry32 struct, Usage uint32
|
| 557 |
+
|
| 558 |
+
# CL 127740043 os: make SameFile handle paths like c:a.txt properly, Alex Brainman <alex.brainman@gmail.com>
|
| 559 |
+
pkg syscall (windows-386), func FullPath(string) (string, error)
|
| 560 |
+
pkg syscall (windows-amd64), func FullPath(string) (string, error)
|
| 561 |
+
|
| 562 |
+
# CL 98150043 testing: add Coverage function, Russ Cox <rsc@golang.org>
|
| 563 |
+
pkg testing, func Coverage() float64
|
| 564 |
+
|
| 565 |
+
# CL 148770043 cmd/go, testing: add TestMain support, Russ Cox <rsc@golang.org>
|
| 566 |
+
pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M
|
| 567 |
+
pkg testing, method (*M) Run() int
|
| 568 |
+
pkg testing, type M struct
|
| 569 |
+
|
| 570 |
+
# CL 108030044 text/scanner: provide facility for custom identifiers, Robert Griesemer <gri@golang.org>
|
| 571 |
+
pkg text/scanner, type Scanner struct, IsIdentRune func(int32, int) bool
|
| 572 |
+
|
| 573 |
+
# CL 130620043 text/template: add back pointer to Nodes for better error generation, Rob Pike <r@golang.org>
|
| 574 |
+
pkg text/template/parse, type DotNode struct, embedded NodeType
|
| 575 |
+
pkg text/template/parse, type NilNode struct, embedded NodeType
|
| 576 |
+
pkg text/template/parse, method (*BranchNode) Copy() Node
|
| 577 |
+
pkg text/template/parse, method (*IdentifierNode) SetTree(*Tree) *IdentifierNode
|
| 578 |
+
pkg html/template, type Error struct, Node parse.Node
|
| 579 |
+
|
| 580 |
+
# CL 127470043 unicode: strconv: regexp: Upgrade to Unicode 7.0.0., Marcel van Lohuizen <mpvl@golang.org>
|
| 581 |
+
pkg unicode, const Version = "7.0.0"
|
| 582 |
+
pkg unicode, var Bassa_Vah *RangeTable
|
| 583 |
+
pkg unicode, var Caucasian_Albanian *RangeTable
|
| 584 |
+
pkg unicode, var Duployan *RangeTable
|
| 585 |
+
pkg unicode, var Elbasan *RangeTable
|
| 586 |
+
pkg unicode, var Grantha *RangeTable
|
| 587 |
+
pkg unicode, var Khojki *RangeTable
|
| 588 |
+
pkg unicode, var Khudawadi *RangeTable
|
| 589 |
+
pkg unicode, var Linear_A *RangeTable
|
| 590 |
+
pkg unicode, var Mahajani *RangeTable
|
| 591 |
+
pkg unicode, var Manichaean *RangeTable
|
| 592 |
+
pkg unicode, var Mende_Kikakui *RangeTable
|
| 593 |
+
pkg unicode, var Modi *RangeTable
|
| 594 |
+
pkg unicode, var Mro *RangeTable
|
| 595 |
+
pkg unicode, var Nabataean *RangeTable
|
| 596 |
+
pkg unicode, var Old_North_Arabian *RangeTable
|
| 597 |
+
pkg unicode, var Old_Permic *RangeTable
|
| 598 |
+
pkg unicode, var Pahawh_Hmong *RangeTable
|
| 599 |
+
pkg unicode, var Palmyrene *RangeTable
|
| 600 |
+
pkg unicode, var Pau_Cin_Hau *RangeTable
|
| 601 |
+
pkg unicode, var Psalter_Pahlavi *RangeTable
|
| 602 |
+
pkg unicode, var Siddham *RangeTable
|
| 603 |
+
pkg unicode, var Tirhuta *RangeTable
|
| 604 |
+
pkg unicode, var Warang_Citi *RangeTable
|
api/go1.5.txt
ADDED
|
@@ -0,0 +1,975 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg archive/zip, method (*Writer) SetOffset(int64)
|
| 2 |
+
pkg bufio, method (*Reader) Discard(int) (int, error)
|
| 3 |
+
pkg bufio, method (ReadWriter) Discard(int) (int, error)
|
| 4 |
+
pkg bytes, func LastIndexByte([]uint8, uint8) int
|
| 5 |
+
pkg bytes, method (*Buffer) Cap() int
|
| 6 |
+
pkg bytes, method (*Reader) Size() int64
|
| 7 |
+
pkg crypto, const SHA512_224 = 14
|
| 8 |
+
pkg crypto, const SHA512_224 Hash
|
| 9 |
+
pkg crypto, const SHA512_256 = 15
|
| 10 |
+
pkg crypto, const SHA512_256 Hash
|
| 11 |
+
pkg crypto, type Decrypter interface { Decrypt, Public }
|
| 12 |
+
pkg crypto, type Decrypter interface, Decrypt(io.Reader, []uint8, DecrypterOpts) ([]uint8, error)
|
| 13 |
+
pkg crypto, type Decrypter interface, Public() PublicKey
|
| 14 |
+
pkg crypto, type DecrypterOpts interface {}
|
| 15 |
+
pkg crypto/cipher, func NewGCMWithNonceSize(Block, int) (AEAD, error)
|
| 16 |
+
pkg crypto/elliptic, type CurveParams struct, Name string
|
| 17 |
+
pkg crypto/rsa, method (*PrivateKey) Decrypt(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)
|
| 18 |
+
pkg crypto/rsa, type OAEPOptions struct
|
| 19 |
+
pkg crypto/rsa, type OAEPOptions struct, Hash crypto.Hash
|
| 20 |
+
pkg crypto/rsa, type OAEPOptions struct, Label []uint8
|
| 21 |
+
pkg crypto/rsa, type PKCS1v15DecryptOptions struct
|
| 22 |
+
pkg crypto/rsa, type PKCS1v15DecryptOptions struct, SessionKeyLen int
|
| 23 |
+
pkg crypto/sha512, const Size224 = 28
|
| 24 |
+
pkg crypto/sha512, const Size224 ideal-int
|
| 25 |
+
pkg crypto/sha512, const Size256 = 32
|
| 26 |
+
pkg crypto/sha512, const Size256 ideal-int
|
| 27 |
+
pkg crypto/sha512, func New512_224() hash.Hash
|
| 28 |
+
pkg crypto/sha512, func New512_256() hash.Hash
|
| 29 |
+
pkg crypto/sha512, func Sum512_224([]uint8) [28]uint8
|
| 30 |
+
pkg crypto/sha512, func Sum512_256([]uint8) [32]uint8
|
| 31 |
+
pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 = 49196
|
| 32 |
+
pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 uint16
|
| 33 |
+
pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 = 49200
|
| 34 |
+
pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 uint16
|
| 35 |
+
pkg crypto/tls, method (*Config) SetSessionTicketKeys([][32]uint8)
|
| 36 |
+
pkg crypto/tls, type Certificate struct, SignedCertificateTimestamps [][]uint8
|
| 37 |
+
pkg crypto/tls, type ConnectionState struct, OCSPResponse []uint8
|
| 38 |
+
pkg crypto/tls, type ConnectionState struct, SignedCertificateTimestamps [][]uint8
|
| 39 |
+
pkg crypto/x509, method (*CertificateRequest) CheckSignature() error
|
| 40 |
+
pkg crypto/x509, type Certificate struct, UnhandledCriticalExtensions []asn1.ObjectIdentifier
|
| 41 |
+
pkg crypto/x509/pkix, type Name struct, ExtraNames []AttributeTypeAndValue
|
| 42 |
+
pkg database/sql, method (*DB) Stats() DBStats
|
| 43 |
+
pkg database/sql, type DBStats struct
|
| 44 |
+
pkg database/sql, type DBStats struct, OpenConnections int
|
| 45 |
+
pkg debug/dwarf, const ClassAddress = 1
|
| 46 |
+
pkg debug/dwarf, const ClassAddress Class
|
| 47 |
+
pkg debug/dwarf, const ClassBlock = 2
|
| 48 |
+
pkg debug/dwarf, const ClassBlock Class
|
| 49 |
+
pkg debug/dwarf, const ClassConstant = 3
|
| 50 |
+
pkg debug/dwarf, const ClassConstant Class
|
| 51 |
+
pkg debug/dwarf, const ClassExprLoc = 4
|
| 52 |
+
pkg debug/dwarf, const ClassExprLoc Class
|
| 53 |
+
pkg debug/dwarf, const ClassFlag = 5
|
| 54 |
+
pkg debug/dwarf, const ClassFlag Class
|
| 55 |
+
pkg debug/dwarf, const ClassLinePtr = 6
|
| 56 |
+
pkg debug/dwarf, const ClassLinePtr Class
|
| 57 |
+
pkg debug/dwarf, const ClassLocListPtr = 7
|
| 58 |
+
pkg debug/dwarf, const ClassLocListPtr Class
|
| 59 |
+
pkg debug/dwarf, const ClassMacPtr = 8
|
| 60 |
+
pkg debug/dwarf, const ClassMacPtr Class
|
| 61 |
+
pkg debug/dwarf, const ClassRangeListPtr = 9
|
| 62 |
+
pkg debug/dwarf, const ClassRangeListPtr Class
|
| 63 |
+
pkg debug/dwarf, const ClassReference = 10
|
| 64 |
+
pkg debug/dwarf, const ClassReference Class
|
| 65 |
+
pkg debug/dwarf, const ClassReferenceAlt = 13
|
| 66 |
+
pkg debug/dwarf, const ClassReferenceAlt Class
|
| 67 |
+
pkg debug/dwarf, const ClassReferenceSig = 11
|
| 68 |
+
pkg debug/dwarf, const ClassReferenceSig Class
|
| 69 |
+
pkg debug/dwarf, const ClassString = 12
|
| 70 |
+
pkg debug/dwarf, const ClassString Class
|
| 71 |
+
pkg debug/dwarf, const ClassStringAlt = 14
|
| 72 |
+
pkg debug/dwarf, const ClassStringAlt Class
|
| 73 |
+
pkg debug/dwarf, method (*Data) LineReader(*Entry) (*LineReader, error)
|
| 74 |
+
pkg debug/dwarf, method (*Entry) AttrField(Attr) *Field
|
| 75 |
+
pkg debug/dwarf, method (*LineReader) Next(*LineEntry) error
|
| 76 |
+
pkg debug/dwarf, method (*LineReader) Reset()
|
| 77 |
+
pkg debug/dwarf, method (*LineReader) Seek(LineReaderPos)
|
| 78 |
+
pkg debug/dwarf, method (*LineReader) SeekPC(uint64, *LineEntry) error
|
| 79 |
+
pkg debug/dwarf, method (*LineReader) Tell() LineReaderPos
|
| 80 |
+
pkg debug/dwarf, method (*Reader) AddressSize() int
|
| 81 |
+
pkg debug/dwarf, method (Class) GoString() string
|
| 82 |
+
pkg debug/dwarf, method (Class) String() string
|
| 83 |
+
pkg debug/dwarf, type Class int
|
| 84 |
+
pkg debug/dwarf, type Field struct, Class Class
|
| 85 |
+
pkg debug/dwarf, type LineEntry struct
|
| 86 |
+
pkg debug/dwarf, type LineEntry struct, Address uint64
|
| 87 |
+
pkg debug/dwarf, type LineEntry struct, BasicBlock bool
|
| 88 |
+
pkg debug/dwarf, type LineEntry struct, Column int
|
| 89 |
+
pkg debug/dwarf, type LineEntry struct, Discriminator int
|
| 90 |
+
pkg debug/dwarf, type LineEntry struct, EndSequence bool
|
| 91 |
+
pkg debug/dwarf, type LineEntry struct, EpilogueBegin bool
|
| 92 |
+
pkg debug/dwarf, type LineEntry struct, File *LineFile
|
| 93 |
+
pkg debug/dwarf, type LineEntry struct, ISA int
|
| 94 |
+
pkg debug/dwarf, type LineEntry struct, IsStmt bool
|
| 95 |
+
pkg debug/dwarf, type LineEntry struct, Line int
|
| 96 |
+
pkg debug/dwarf, type LineEntry struct, OpIndex int
|
| 97 |
+
pkg debug/dwarf, type LineEntry struct, PrologueEnd bool
|
| 98 |
+
pkg debug/dwarf, type LineFile struct
|
| 99 |
+
pkg debug/dwarf, type LineFile struct, Length int
|
| 100 |
+
pkg debug/dwarf, type LineFile struct, Mtime uint64
|
| 101 |
+
pkg debug/dwarf, type LineFile struct, Name string
|
| 102 |
+
pkg debug/dwarf, type LineReader struct
|
| 103 |
+
pkg debug/dwarf, type LineReaderPos struct
|
| 104 |
+
pkg debug/dwarf, var ErrUnknownPC error
|
| 105 |
+
pkg debug/elf, const R_PPC64_ADDR14 = 7
|
| 106 |
+
pkg debug/elf, const R_PPC64_ADDR14 R_PPC64
|
| 107 |
+
pkg debug/elf, const R_PPC64_ADDR14_BRNTAKEN = 9
|
| 108 |
+
pkg debug/elf, const R_PPC64_ADDR14_BRNTAKEN R_PPC64
|
| 109 |
+
pkg debug/elf, const R_PPC64_ADDR14_BRTAKEN = 8
|
| 110 |
+
pkg debug/elf, const R_PPC64_ADDR14_BRTAKEN R_PPC64
|
| 111 |
+
pkg debug/elf, const R_PPC64_ADDR16 = 3
|
| 112 |
+
pkg debug/elf, const R_PPC64_ADDR16 R_PPC64
|
| 113 |
+
pkg debug/elf, const R_PPC64_ADDR16_DS = 56
|
| 114 |
+
pkg debug/elf, const R_PPC64_ADDR16_DS R_PPC64
|
| 115 |
+
pkg debug/elf, const R_PPC64_ADDR16_HA = 6
|
| 116 |
+
pkg debug/elf, const R_PPC64_ADDR16_HA R_PPC64
|
| 117 |
+
pkg debug/elf, const R_PPC64_ADDR16_HI = 5
|
| 118 |
+
pkg debug/elf, const R_PPC64_ADDR16_HI R_PPC64
|
| 119 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHER = 39
|
| 120 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHER R_PPC64
|
| 121 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHERA = 40
|
| 122 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHERA R_PPC64
|
| 123 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHEST = 41
|
| 124 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHEST R_PPC64
|
| 125 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA = 42
|
| 126 |
+
pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA R_PPC64
|
| 127 |
+
pkg debug/elf, const R_PPC64_ADDR16_LO = 4
|
| 128 |
+
pkg debug/elf, const R_PPC64_ADDR16_LO R_PPC64
|
| 129 |
+
pkg debug/elf, const R_PPC64_ADDR16_LO_DS = 57
|
| 130 |
+
pkg debug/elf, const R_PPC64_ADDR16_LO_DS R_PPC64
|
| 131 |
+
pkg debug/elf, const R_PPC64_ADDR24 = 2
|
| 132 |
+
pkg debug/elf, const R_PPC64_ADDR24 R_PPC64
|
| 133 |
+
pkg debug/elf, const R_PPC64_ADDR32 = 1
|
| 134 |
+
pkg debug/elf, const R_PPC64_ADDR32 R_PPC64
|
| 135 |
+
pkg debug/elf, const R_PPC64_ADDR64 = 38
|
| 136 |
+
pkg debug/elf, const R_PPC64_ADDR64 R_PPC64
|
| 137 |
+
pkg debug/elf, const R_PPC64_DTPMOD64 = 68
|
| 138 |
+
pkg debug/elf, const R_PPC64_DTPMOD64 R_PPC64
|
| 139 |
+
pkg debug/elf, const R_PPC64_DTPREL16 = 74
|
| 140 |
+
pkg debug/elf, const R_PPC64_DTPREL16 R_PPC64
|
| 141 |
+
pkg debug/elf, const R_PPC64_DTPREL16_DS = 101
|
| 142 |
+
pkg debug/elf, const R_PPC64_DTPREL16_DS R_PPC64
|
| 143 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HA = 77
|
| 144 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HA R_PPC64
|
| 145 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HI = 76
|
| 146 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HI R_PPC64
|
| 147 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHER = 103
|
| 148 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHER R_PPC64
|
| 149 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHERA = 104
|
| 150 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHERA R_PPC64
|
| 151 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHEST = 105
|
| 152 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHEST R_PPC64
|
| 153 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHESTA = 106
|
| 154 |
+
pkg debug/elf, const R_PPC64_DTPREL16_HIGHESTA R_PPC64
|
| 155 |
+
pkg debug/elf, const R_PPC64_DTPREL16_LO = 75
|
| 156 |
+
pkg debug/elf, const R_PPC64_DTPREL16_LO R_PPC64
|
| 157 |
+
pkg debug/elf, const R_PPC64_DTPREL16_LO_DS = 102
|
| 158 |
+
pkg debug/elf, const R_PPC64_DTPREL16_LO_DS R_PPC64
|
| 159 |
+
pkg debug/elf, const R_PPC64_DTPREL64 = 78
|
| 160 |
+
pkg debug/elf, const R_PPC64_DTPREL64 R_PPC64
|
| 161 |
+
pkg debug/elf, const R_PPC64_GOT16 = 14
|
| 162 |
+
pkg debug/elf, const R_PPC64_GOT16 R_PPC64
|
| 163 |
+
pkg debug/elf, const R_PPC64_GOT16_DS = 58
|
| 164 |
+
pkg debug/elf, const R_PPC64_GOT16_DS R_PPC64
|
| 165 |
+
pkg debug/elf, const R_PPC64_GOT16_HA = 17
|
| 166 |
+
pkg debug/elf, const R_PPC64_GOT16_HA R_PPC64
|
| 167 |
+
pkg debug/elf, const R_PPC64_GOT16_HI = 16
|
| 168 |
+
pkg debug/elf, const R_PPC64_GOT16_HI R_PPC64
|
| 169 |
+
pkg debug/elf, const R_PPC64_GOT16_LO = 15
|
| 170 |
+
pkg debug/elf, const R_PPC64_GOT16_LO R_PPC64
|
| 171 |
+
pkg debug/elf, const R_PPC64_GOT16_LO_DS = 59
|
| 172 |
+
pkg debug/elf, const R_PPC64_GOT16_LO_DS R_PPC64
|
| 173 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_DS = 91
|
| 174 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_DS R_PPC64
|
| 175 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_HA = 94
|
| 176 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_HA R_PPC64
|
| 177 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_HI = 93
|
| 178 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_HI R_PPC64
|
| 179 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_LO_DS = 92
|
| 180 |
+
pkg debug/elf, const R_PPC64_GOT_DTPREL16_LO_DS R_PPC64
|
| 181 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16 = 79
|
| 182 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16 R_PPC64
|
| 183 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16_HA = 82
|
| 184 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16_HA R_PPC64
|
| 185 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16_HI = 81
|
| 186 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16_HI R_PPC64
|
| 187 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16_LO = 80
|
| 188 |
+
pkg debug/elf, const R_PPC64_GOT_TLSGD16_LO R_PPC64
|
| 189 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16 = 83
|
| 190 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16 R_PPC64
|
| 191 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16_HA = 86
|
| 192 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16_HA R_PPC64
|
| 193 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16_HI = 85
|
| 194 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16_HI R_PPC64
|
| 195 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16_LO = 84
|
| 196 |
+
pkg debug/elf, const R_PPC64_GOT_TLSLD16_LO R_PPC64
|
| 197 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_DS = 87
|
| 198 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_DS R_PPC64
|
| 199 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_HA = 90
|
| 200 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_HA R_PPC64
|
| 201 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_HI = 89
|
| 202 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_HI R_PPC64
|
| 203 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_LO_DS = 88
|
| 204 |
+
pkg debug/elf, const R_PPC64_GOT_TPREL16_LO_DS R_PPC64
|
| 205 |
+
pkg debug/elf, const R_PPC64_JMP_SLOT = 21
|
| 206 |
+
pkg debug/elf, const R_PPC64_JMP_SLOT R_PPC64
|
| 207 |
+
pkg debug/elf, const R_PPC64_NONE = 0
|
| 208 |
+
pkg debug/elf, const R_PPC64_NONE R_PPC64
|
| 209 |
+
pkg debug/elf, const R_PPC64_REL14 = 11
|
| 210 |
+
pkg debug/elf, const R_PPC64_REL14 R_PPC64
|
| 211 |
+
pkg debug/elf, const R_PPC64_REL14_BRNTAKEN = 13
|
| 212 |
+
pkg debug/elf, const R_PPC64_REL14_BRNTAKEN R_PPC64
|
| 213 |
+
pkg debug/elf, const R_PPC64_REL14_BRTAKEN = 12
|
| 214 |
+
pkg debug/elf, const R_PPC64_REL14_BRTAKEN R_PPC64
|
| 215 |
+
pkg debug/elf, const R_PPC64_REL16 = 249
|
| 216 |
+
pkg debug/elf, const R_PPC64_REL16 R_PPC64
|
| 217 |
+
pkg debug/elf, const R_PPC64_REL16_HA = 252
|
| 218 |
+
pkg debug/elf, const R_PPC64_REL16_HA R_PPC64
|
| 219 |
+
pkg debug/elf, const R_PPC64_REL16_HI = 251
|
| 220 |
+
pkg debug/elf, const R_PPC64_REL16_HI R_PPC64
|
| 221 |
+
pkg debug/elf, const R_PPC64_REL16_LO = 250
|
| 222 |
+
pkg debug/elf, const R_PPC64_REL16_LO R_PPC64
|
| 223 |
+
pkg debug/elf, const R_PPC64_REL24 = 10
|
| 224 |
+
pkg debug/elf, const R_PPC64_REL24 R_PPC64
|
| 225 |
+
pkg debug/elf, const R_PPC64_REL32 = 26
|
| 226 |
+
pkg debug/elf, const R_PPC64_REL32 R_PPC64
|
| 227 |
+
pkg debug/elf, const R_PPC64_REL64 = 44
|
| 228 |
+
pkg debug/elf, const R_PPC64_REL64 R_PPC64
|
| 229 |
+
pkg debug/elf, const R_PPC64_TLS = 67
|
| 230 |
+
pkg debug/elf, const R_PPC64_TLS R_PPC64
|
| 231 |
+
pkg debug/elf, const R_PPC64_TLSGD = 107
|
| 232 |
+
pkg debug/elf, const R_PPC64_TLSGD R_PPC64
|
| 233 |
+
pkg debug/elf, const R_PPC64_TLSLD = 108
|
| 234 |
+
pkg debug/elf, const R_PPC64_TLSLD R_PPC64
|
| 235 |
+
pkg debug/elf, const R_PPC64_TOC = 51
|
| 236 |
+
pkg debug/elf, const R_PPC64_TOC R_PPC64
|
| 237 |
+
pkg debug/elf, const R_PPC64_TOC16 = 47
|
| 238 |
+
pkg debug/elf, const R_PPC64_TOC16 R_PPC64
|
| 239 |
+
pkg debug/elf, const R_PPC64_TOC16_DS = 63
|
| 240 |
+
pkg debug/elf, const R_PPC64_TOC16_DS R_PPC64
|
| 241 |
+
pkg debug/elf, const R_PPC64_TOC16_HA = 50
|
| 242 |
+
pkg debug/elf, const R_PPC64_TOC16_HA R_PPC64
|
| 243 |
+
pkg debug/elf, const R_PPC64_TOC16_HI = 49
|
| 244 |
+
pkg debug/elf, const R_PPC64_TOC16_HI R_PPC64
|
| 245 |
+
pkg debug/elf, const R_PPC64_TOC16_LO = 48
|
| 246 |
+
pkg debug/elf, const R_PPC64_TOC16_LO R_PPC64
|
| 247 |
+
pkg debug/elf, const R_PPC64_TOC16_LO_DS = 64
|
| 248 |
+
pkg debug/elf, const R_PPC64_TOC16_LO_DS R_PPC64
|
| 249 |
+
pkg debug/elf, const R_PPC64_TPREL16 = 69
|
| 250 |
+
pkg debug/elf, const R_PPC64_TPREL16 R_PPC64
|
| 251 |
+
pkg debug/elf, const R_PPC64_TPREL16_DS = 95
|
| 252 |
+
pkg debug/elf, const R_PPC64_TPREL16_DS R_PPC64
|
| 253 |
+
pkg debug/elf, const R_PPC64_TPREL16_HA = 72
|
| 254 |
+
pkg debug/elf, const R_PPC64_TPREL16_HA R_PPC64
|
| 255 |
+
pkg debug/elf, const R_PPC64_TPREL16_HI = 71
|
| 256 |
+
pkg debug/elf, const R_PPC64_TPREL16_HI R_PPC64
|
| 257 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHER = 97
|
| 258 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHER R_PPC64
|
| 259 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHERA = 98
|
| 260 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHERA R_PPC64
|
| 261 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHEST = 99
|
| 262 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHEST R_PPC64
|
| 263 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHESTA = 100
|
| 264 |
+
pkg debug/elf, const R_PPC64_TPREL16_HIGHESTA R_PPC64
|
| 265 |
+
pkg debug/elf, const R_PPC64_TPREL16_LO = 70
|
| 266 |
+
pkg debug/elf, const R_PPC64_TPREL16_LO R_PPC64
|
| 267 |
+
pkg debug/elf, const R_PPC64_TPREL16_LO_DS = 96
|
| 268 |
+
pkg debug/elf, const R_PPC64_TPREL16_LO_DS R_PPC64
|
| 269 |
+
pkg debug/elf, const R_PPC64_TPREL64 = 73
|
| 270 |
+
pkg debug/elf, const R_PPC64_TPREL64 R_PPC64
|
| 271 |
+
pkg debug/elf, method (R_PPC64) GoString() string
|
| 272 |
+
pkg debug/elf, method (R_PPC64) String() string
|
| 273 |
+
pkg debug/elf, type R_PPC64 int
|
| 274 |
+
pkg encoding/base64, const NoPadding = -1
|
| 275 |
+
pkg encoding/base64, const NoPadding int32
|
| 276 |
+
pkg encoding/base64, const StdPadding = 61
|
| 277 |
+
pkg encoding/base64, const StdPadding int32
|
| 278 |
+
pkg encoding/base64, method (Encoding) WithPadding(int32) *Encoding
|
| 279 |
+
pkg encoding/base64, var RawStdEncoding *Encoding
|
| 280 |
+
pkg encoding/base64, var RawURLEncoding *Encoding
|
| 281 |
+
pkg encoding/json, method (*Decoder) More() bool
|
| 282 |
+
pkg encoding/json, method (*Decoder) Token() (Token, error)
|
| 283 |
+
pkg encoding/json, method (Delim) String() string
|
| 284 |
+
pkg encoding/json, type Delim int32
|
| 285 |
+
pkg encoding/json, type Token interface {}
|
| 286 |
+
pkg encoding/json, type UnmarshalTypeError struct, Offset int64
|
| 287 |
+
pkg flag, func UnquoteUsage(*Flag) (string, string)
|
| 288 |
+
pkg go/ast, type EmptyStmt struct, Implicit bool
|
| 289 |
+
pkg go/build, type Package struct, PkgTargetRoot string
|
| 290 |
+
pkg go/constant, const Bool = 1
|
| 291 |
+
pkg go/constant, const Bool Kind
|
| 292 |
+
pkg go/constant, const Complex = 5
|
| 293 |
+
pkg go/constant, const Complex Kind
|
| 294 |
+
pkg go/constant, const Float = 4
|
| 295 |
+
pkg go/constant, const Float Kind
|
| 296 |
+
pkg go/constant, const Int = 3
|
| 297 |
+
pkg go/constant, const Int Kind
|
| 298 |
+
pkg go/constant, const String = 2
|
| 299 |
+
pkg go/constant, const String Kind
|
| 300 |
+
pkg go/constant, const Unknown = 0
|
| 301 |
+
pkg go/constant, const Unknown Kind
|
| 302 |
+
pkg go/constant, func BinaryOp(Value, token.Token, Value) Value
|
| 303 |
+
pkg go/constant, func BitLen(Value) int
|
| 304 |
+
pkg go/constant, func BoolVal(Value) bool
|
| 305 |
+
pkg go/constant, func Bytes(Value) []uint8
|
| 306 |
+
pkg go/constant, func Compare(Value, token.Token, Value) bool
|
| 307 |
+
pkg go/constant, func Denom(Value) Value
|
| 308 |
+
pkg go/constant, func Float32Val(Value) (float32, bool)
|
| 309 |
+
pkg go/constant, func Float64Val(Value) (float64, bool)
|
| 310 |
+
pkg go/constant, func Imag(Value) Value
|
| 311 |
+
pkg go/constant, func Int64Val(Value) (int64, bool)
|
| 312 |
+
pkg go/constant, func MakeBool(bool) Value
|
| 313 |
+
pkg go/constant, func MakeFloat64(float64) Value
|
| 314 |
+
pkg go/constant, func MakeFromBytes([]uint8) Value
|
| 315 |
+
pkg go/constant, func MakeFromLiteral(string, token.Token, uint) Value
|
| 316 |
+
pkg go/constant, func MakeImag(Value) Value
|
| 317 |
+
pkg go/constant, func MakeInt64(int64) Value
|
| 318 |
+
pkg go/constant, func MakeString(string) Value
|
| 319 |
+
pkg go/constant, func MakeUint64(uint64) Value
|
| 320 |
+
pkg go/constant, func MakeUnknown() Value
|
| 321 |
+
pkg go/constant, func Num(Value) Value
|
| 322 |
+
pkg go/constant, func Real(Value) Value
|
| 323 |
+
pkg go/constant, func Shift(Value, token.Token, uint) Value
|
| 324 |
+
pkg go/constant, func Sign(Value) int
|
| 325 |
+
pkg go/constant, func StringVal(Value) string
|
| 326 |
+
pkg go/constant, func Uint64Val(Value) (uint64, bool)
|
| 327 |
+
pkg go/constant, func UnaryOp(token.Token, Value, uint) Value
|
| 328 |
+
pkg go/constant, type Kind int
|
| 329 |
+
pkg go/constant, type Value interface, Kind() Kind
|
| 330 |
+
pkg go/constant, type Value interface, String() string
|
| 331 |
+
pkg go/constant, type Value interface, unexported methods
|
| 332 |
+
pkg go/importer, func Default() types.Importer
|
| 333 |
+
pkg go/importer, func For(string, Lookup) types.Importer
|
| 334 |
+
pkg go/importer, type Lookup func(string) (io.ReadCloser, error)
|
| 335 |
+
pkg go/parser, func ParseExprFrom(*token.FileSet, string, interface{}, Mode) (ast.Expr, error)
|
| 336 |
+
pkg go/types, const Bool = 1
|
| 337 |
+
pkg go/types, const Bool BasicKind
|
| 338 |
+
pkg go/types, const Byte = 8
|
| 339 |
+
pkg go/types, const Byte BasicKind
|
| 340 |
+
pkg go/types, const Complex128 = 16
|
| 341 |
+
pkg go/types, const Complex128 BasicKind
|
| 342 |
+
pkg go/types, const Complex64 = 15
|
| 343 |
+
pkg go/types, const Complex64 BasicKind
|
| 344 |
+
pkg go/types, const FieldVal = 0
|
| 345 |
+
pkg go/types, const FieldVal SelectionKind
|
| 346 |
+
pkg go/types, const Float32 = 13
|
| 347 |
+
pkg go/types, const Float32 BasicKind
|
| 348 |
+
pkg go/types, const Float64 = 14
|
| 349 |
+
pkg go/types, const Float64 BasicKind
|
| 350 |
+
pkg go/types, const Int = 2
|
| 351 |
+
pkg go/types, const Int BasicKind
|
| 352 |
+
pkg go/types, const Int16 = 4
|
| 353 |
+
pkg go/types, const Int16 BasicKind
|
| 354 |
+
pkg go/types, const Int32 = 5
|
| 355 |
+
pkg go/types, const Int32 BasicKind
|
| 356 |
+
pkg go/types, const Int64 = 6
|
| 357 |
+
pkg go/types, const Int64 BasicKind
|
| 358 |
+
pkg go/types, const Int8 = 3
|
| 359 |
+
pkg go/types, const Int8 BasicKind
|
| 360 |
+
pkg go/types, const Invalid = 0
|
| 361 |
+
pkg go/types, const Invalid BasicKind
|
| 362 |
+
pkg go/types, const IsBoolean = 1
|
| 363 |
+
pkg go/types, const IsBoolean BasicInfo
|
| 364 |
+
pkg go/types, const IsComplex = 16
|
| 365 |
+
pkg go/types, const IsComplex BasicInfo
|
| 366 |
+
pkg go/types, const IsConstType = 59
|
| 367 |
+
pkg go/types, const IsConstType BasicInfo
|
| 368 |
+
pkg go/types, const IsFloat = 8
|
| 369 |
+
pkg go/types, const IsFloat BasicInfo
|
| 370 |
+
pkg go/types, const IsInteger = 2
|
| 371 |
+
pkg go/types, const IsInteger BasicInfo
|
| 372 |
+
pkg go/types, const IsNumeric = 26
|
| 373 |
+
pkg go/types, const IsNumeric BasicInfo
|
| 374 |
+
pkg go/types, const IsOrdered = 42
|
| 375 |
+
pkg go/types, const IsOrdered BasicInfo
|
| 376 |
+
pkg go/types, const IsString = 32
|
| 377 |
+
pkg go/types, const IsString BasicInfo
|
| 378 |
+
pkg go/types, const IsUnsigned = 4
|
| 379 |
+
pkg go/types, const IsUnsigned BasicInfo
|
| 380 |
+
pkg go/types, const IsUntyped = 64
|
| 381 |
+
pkg go/types, const IsUntyped BasicInfo
|
| 382 |
+
pkg go/types, const MethodExpr = 2
|
| 383 |
+
pkg go/types, const MethodExpr SelectionKind
|
| 384 |
+
pkg go/types, const MethodVal = 1
|
| 385 |
+
pkg go/types, const MethodVal SelectionKind
|
| 386 |
+
pkg go/types, const RecvOnly = 2
|
| 387 |
+
pkg go/types, const RecvOnly ChanDir
|
| 388 |
+
pkg go/types, const Rune = 5
|
| 389 |
+
pkg go/types, const Rune BasicKind
|
| 390 |
+
pkg go/types, const SendOnly = 1
|
| 391 |
+
pkg go/types, const SendOnly ChanDir
|
| 392 |
+
pkg go/types, const SendRecv = 0
|
| 393 |
+
pkg go/types, const SendRecv ChanDir
|
| 394 |
+
pkg go/types, const String = 17
|
| 395 |
+
pkg go/types, const String BasicKind
|
| 396 |
+
pkg go/types, const Uint = 7
|
| 397 |
+
pkg go/types, const Uint BasicKind
|
| 398 |
+
pkg go/types, const Uint16 = 9
|
| 399 |
+
pkg go/types, const Uint16 BasicKind
|
| 400 |
+
pkg go/types, const Uint32 = 10
|
| 401 |
+
pkg go/types, const Uint32 BasicKind
|
| 402 |
+
pkg go/types, const Uint64 = 11
|
| 403 |
+
pkg go/types, const Uint64 BasicKind
|
| 404 |
+
pkg go/types, const Uint8 = 8
|
| 405 |
+
pkg go/types, const Uint8 BasicKind
|
| 406 |
+
pkg go/types, const Uintptr = 12
|
| 407 |
+
pkg go/types, const Uintptr BasicKind
|
| 408 |
+
pkg go/types, const UnsafePointer = 18
|
| 409 |
+
pkg go/types, const UnsafePointer BasicKind
|
| 410 |
+
pkg go/types, const UntypedBool = 19
|
| 411 |
+
pkg go/types, const UntypedBool BasicKind
|
| 412 |
+
pkg go/types, const UntypedComplex = 23
|
| 413 |
+
pkg go/types, const UntypedComplex BasicKind
|
| 414 |
+
pkg go/types, const UntypedFloat = 22
|
| 415 |
+
pkg go/types, const UntypedFloat BasicKind
|
| 416 |
+
pkg go/types, const UntypedInt = 20
|
| 417 |
+
pkg go/types, const UntypedInt BasicKind
|
| 418 |
+
pkg go/types, const UntypedNil = 25
|
| 419 |
+
pkg go/types, const UntypedNil BasicKind
|
| 420 |
+
pkg go/types, const UntypedRune = 21
|
| 421 |
+
pkg go/types, const UntypedRune BasicKind
|
| 422 |
+
pkg go/types, const UntypedString = 24
|
| 423 |
+
pkg go/types, const UntypedString BasicKind
|
| 424 |
+
pkg go/types, func AssertableTo(*Interface, Type) bool
|
| 425 |
+
pkg go/types, func AssignableTo(Type, Type) bool
|
| 426 |
+
pkg go/types, func Comparable(Type) bool
|
| 427 |
+
pkg go/types, func ConvertibleTo(Type, Type) bool
|
| 428 |
+
pkg go/types, func DefPredeclaredTestFuncs()
|
| 429 |
+
pkg go/types, func Eval(*token.FileSet, *Package, token.Pos, string) (TypeAndValue, error)
|
| 430 |
+
pkg go/types, func ExprString(ast.Expr) string
|
| 431 |
+
pkg go/types, func Id(*Package, string) string
|
| 432 |
+
pkg go/types, func Identical(Type, Type) bool
|
| 433 |
+
pkg go/types, func Implements(Type, *Interface) bool
|
| 434 |
+
pkg go/types, func IsInterface(Type) bool
|
| 435 |
+
pkg go/types, func LookupFieldOrMethod(Type, bool, *Package, string) (Object, []int, bool)
|
| 436 |
+
pkg go/types, func MissingMethod(Type, *Interface, bool) (*Func, bool)
|
| 437 |
+
pkg go/types, func NewArray(Type, int64) *Array
|
| 438 |
+
pkg go/types, func NewChan(ChanDir, Type) *Chan
|
| 439 |
+
pkg go/types, func NewChecker(*Config, *token.FileSet, *Package, *Info) *Checker
|
| 440 |
+
pkg go/types, func NewConst(token.Pos, *Package, string, Type, constant.Value) *Const
|
| 441 |
+
pkg go/types, func NewField(token.Pos, *Package, string, Type, bool) *Var
|
| 442 |
+
pkg go/types, func NewFunc(token.Pos, *Package, string, *Signature) *Func
|
| 443 |
+
pkg go/types, func NewInterface([]*Func, []*Named) *Interface
|
| 444 |
+
pkg go/types, func NewLabel(token.Pos, *Package, string) *Label
|
| 445 |
+
pkg go/types, func NewMap(Type, Type) *Map
|
| 446 |
+
pkg go/types, func NewMethodSet(Type) *MethodSet
|
| 447 |
+
pkg go/types, func NewNamed(*TypeName, Type, []*Func) *Named
|
| 448 |
+
pkg go/types, func NewPackage(string, string) *Package
|
| 449 |
+
pkg go/types, func NewParam(token.Pos, *Package, string, Type) *Var
|
| 450 |
+
pkg go/types, func NewPkgName(token.Pos, *Package, string, *Package) *PkgName
|
| 451 |
+
pkg go/types, func NewPointer(Type) *Pointer
|
| 452 |
+
pkg go/types, func NewScope(*Scope, token.Pos, token.Pos, string) *Scope
|
| 453 |
+
pkg go/types, func NewSignature(*Var, *Tuple, *Tuple, bool) *Signature
|
| 454 |
+
pkg go/types, func NewSlice(Type) *Slice
|
| 455 |
+
pkg go/types, func NewStruct([]*Var, []string) *Struct
|
| 456 |
+
pkg go/types, func NewTuple(...*Var) *Tuple
|
| 457 |
+
pkg go/types, func NewTypeName(token.Pos, *Package, string, Type) *TypeName
|
| 458 |
+
pkg go/types, func NewVar(token.Pos, *Package, string, Type) *Var
|
| 459 |
+
pkg go/types, func ObjectString(Object, Qualifier) string
|
| 460 |
+
pkg go/types, func RelativeTo(*Package) Qualifier
|
| 461 |
+
pkg go/types, func SelectionString(*Selection, Qualifier) string
|
| 462 |
+
pkg go/types, func TypeString(Type, Qualifier) string
|
| 463 |
+
pkg go/types, func WriteExpr(*bytes.Buffer, ast.Expr)
|
| 464 |
+
pkg go/types, func WriteSignature(*bytes.Buffer, *Signature, Qualifier)
|
| 465 |
+
pkg go/types, func WriteType(*bytes.Buffer, Type, Qualifier)
|
| 466 |
+
pkg go/types, method (*Array) Elem() Type
|
| 467 |
+
pkg go/types, method (*Array) Len() int64
|
| 468 |
+
pkg go/types, method (*Array) String() string
|
| 469 |
+
pkg go/types, method (*Array) Underlying() Type
|
| 470 |
+
pkg go/types, method (*Basic) Info() BasicInfo
|
| 471 |
+
pkg go/types, method (*Basic) Kind() BasicKind
|
| 472 |
+
pkg go/types, method (*Basic) Name() string
|
| 473 |
+
pkg go/types, method (*Basic) String() string
|
| 474 |
+
pkg go/types, method (*Basic) Underlying() Type
|
| 475 |
+
pkg go/types, method (*Builtin) Exported() bool
|
| 476 |
+
pkg go/types, method (*Builtin) Id() string
|
| 477 |
+
pkg go/types, method (*Builtin) Name() string
|
| 478 |
+
pkg go/types, method (*Builtin) Parent() *Scope
|
| 479 |
+
pkg go/types, method (*Builtin) Pkg() *Package
|
| 480 |
+
pkg go/types, method (*Builtin) Pos() token.Pos
|
| 481 |
+
pkg go/types, method (*Builtin) String() string
|
| 482 |
+
pkg go/types, method (*Builtin) Type() Type
|
| 483 |
+
pkg go/types, method (*Chan) Dir() ChanDir
|
| 484 |
+
pkg go/types, method (*Chan) Elem() Type
|
| 485 |
+
pkg go/types, method (*Chan) String() string
|
| 486 |
+
pkg go/types, method (*Chan) Underlying() Type
|
| 487 |
+
pkg go/types, method (*Checker) Files([]*ast.File) error
|
| 488 |
+
pkg go/types, method (*Config) Check(string, *token.FileSet, []*ast.File, *Info) (*Package, error)
|
| 489 |
+
pkg go/types, method (*Const) Exported() bool
|
| 490 |
+
pkg go/types, method (*Const) Id() string
|
| 491 |
+
pkg go/types, method (*Const) Name() string
|
| 492 |
+
pkg go/types, method (*Const) Parent() *Scope
|
| 493 |
+
pkg go/types, method (*Const) Pkg() *Package
|
| 494 |
+
pkg go/types, method (*Const) Pos() token.Pos
|
| 495 |
+
pkg go/types, method (*Const) String() string
|
| 496 |
+
pkg go/types, method (*Const) Type() Type
|
| 497 |
+
pkg go/types, method (*Const) Val() constant.Value
|
| 498 |
+
pkg go/types, method (*Func) Exported() bool
|
| 499 |
+
pkg go/types, method (*Func) FullName() string
|
| 500 |
+
pkg go/types, method (*Func) Id() string
|
| 501 |
+
pkg go/types, method (*Func) Name() string
|
| 502 |
+
pkg go/types, method (*Func) Parent() *Scope
|
| 503 |
+
pkg go/types, method (*Func) Pkg() *Package
|
| 504 |
+
pkg go/types, method (*Func) Pos() token.Pos
|
| 505 |
+
pkg go/types, method (*Func) Scope() *Scope
|
| 506 |
+
pkg go/types, method (*Func) String() string
|
| 507 |
+
pkg go/types, method (*Func) Type() Type
|
| 508 |
+
pkg go/types, method (*Info) ObjectOf(*ast.Ident) Object
|
| 509 |
+
pkg go/types, method (*Info) TypeOf(ast.Expr) Type
|
| 510 |
+
pkg go/types, method (*Initializer) String() string
|
| 511 |
+
pkg go/types, method (*Interface) Complete() *Interface
|
| 512 |
+
pkg go/types, method (*Interface) Embedded(int) *Named
|
| 513 |
+
pkg go/types, method (*Interface) Empty() bool
|
| 514 |
+
pkg go/types, method (*Interface) ExplicitMethod(int) *Func
|
| 515 |
+
pkg go/types, method (*Interface) Method(int) *Func
|
| 516 |
+
pkg go/types, method (*Interface) NumEmbeddeds() int
|
| 517 |
+
pkg go/types, method (*Interface) NumExplicitMethods() int
|
| 518 |
+
pkg go/types, method (*Interface) NumMethods() int
|
| 519 |
+
pkg go/types, method (*Interface) String() string
|
| 520 |
+
pkg go/types, method (*Interface) Underlying() Type
|
| 521 |
+
pkg go/types, method (*Label) Exported() bool
|
| 522 |
+
pkg go/types, method (*Label) Id() string
|
| 523 |
+
pkg go/types, method (*Label) Name() string
|
| 524 |
+
pkg go/types, method (*Label) Parent() *Scope
|
| 525 |
+
pkg go/types, method (*Label) Pkg() *Package
|
| 526 |
+
pkg go/types, method (*Label) Pos() token.Pos
|
| 527 |
+
pkg go/types, method (*Label) String() string
|
| 528 |
+
pkg go/types, method (*Label) Type() Type
|
| 529 |
+
pkg go/types, method (*Map) Elem() Type
|
| 530 |
+
pkg go/types, method (*Map) Key() Type
|
| 531 |
+
pkg go/types, method (*Map) String() string
|
| 532 |
+
pkg go/types, method (*Map) Underlying() Type
|
| 533 |
+
pkg go/types, method (*MethodSet) At(int) *Selection
|
| 534 |
+
pkg go/types, method (*MethodSet) Len() int
|
| 535 |
+
pkg go/types, method (*MethodSet) Lookup(*Package, string) *Selection
|
| 536 |
+
pkg go/types, method (*MethodSet) String() string
|
| 537 |
+
pkg go/types, method (*Named) AddMethod(*Func)
|
| 538 |
+
pkg go/types, method (*Named) Method(int) *Func
|
| 539 |
+
pkg go/types, method (*Named) NumMethods() int
|
| 540 |
+
pkg go/types, method (*Named) Obj() *TypeName
|
| 541 |
+
pkg go/types, method (*Named) SetUnderlying(Type)
|
| 542 |
+
pkg go/types, method (*Named) String() string
|
| 543 |
+
pkg go/types, method (*Named) Underlying() Type
|
| 544 |
+
pkg go/types, method (*Nil) Exported() bool
|
| 545 |
+
pkg go/types, method (*Nil) Id() string
|
| 546 |
+
pkg go/types, method (*Nil) Name() string
|
| 547 |
+
pkg go/types, method (*Nil) Parent() *Scope
|
| 548 |
+
pkg go/types, method (*Nil) Pkg() *Package
|
| 549 |
+
pkg go/types, method (*Nil) Pos() token.Pos
|
| 550 |
+
pkg go/types, method (*Nil) String() string
|
| 551 |
+
pkg go/types, method (*Nil) Type() Type
|
| 552 |
+
pkg go/types, method (*Package) Complete() bool
|
| 553 |
+
pkg go/types, method (*Package) Imports() []*Package
|
| 554 |
+
pkg go/types, method (*Package) MarkComplete()
|
| 555 |
+
pkg go/types, method (*Package) Name() string
|
| 556 |
+
pkg go/types, method (*Package) Path() string
|
| 557 |
+
pkg go/types, method (*Package) Scope() *Scope
|
| 558 |
+
pkg go/types, method (*Package) SetImports([]*Package)
|
| 559 |
+
pkg go/types, method (*Package) String() string
|
| 560 |
+
pkg go/types, method (*PkgName) Exported() bool
|
| 561 |
+
pkg go/types, method (*PkgName) Id() string
|
| 562 |
+
pkg go/types, method (*PkgName) Imported() *Package
|
| 563 |
+
pkg go/types, method (*PkgName) Name() string
|
| 564 |
+
pkg go/types, method (*PkgName) Parent() *Scope
|
| 565 |
+
pkg go/types, method (*PkgName) Pkg() *Package
|
| 566 |
+
pkg go/types, method (*PkgName) Pos() token.Pos
|
| 567 |
+
pkg go/types, method (*PkgName) String() string
|
| 568 |
+
pkg go/types, method (*PkgName) Type() Type
|
| 569 |
+
pkg go/types, method (*Pointer) Elem() Type
|
| 570 |
+
pkg go/types, method (*Pointer) String() string
|
| 571 |
+
pkg go/types, method (*Pointer) Underlying() Type
|
| 572 |
+
pkg go/types, method (*Scope) Child(int) *Scope
|
| 573 |
+
pkg go/types, method (*Scope) Contains(token.Pos) bool
|
| 574 |
+
pkg go/types, method (*Scope) End() token.Pos
|
| 575 |
+
pkg go/types, method (*Scope) Innermost(token.Pos) *Scope
|
| 576 |
+
pkg go/types, method (*Scope) Insert(Object) Object
|
| 577 |
+
pkg go/types, method (*Scope) Len() int
|
| 578 |
+
pkg go/types, method (*Scope) Lookup(string) Object
|
| 579 |
+
pkg go/types, method (*Scope) LookupParent(string, token.Pos) (*Scope, Object)
|
| 580 |
+
pkg go/types, method (*Scope) Names() []string
|
| 581 |
+
pkg go/types, method (*Scope) NumChildren() int
|
| 582 |
+
pkg go/types, method (*Scope) Parent() *Scope
|
| 583 |
+
pkg go/types, method (*Scope) Pos() token.Pos
|
| 584 |
+
pkg go/types, method (*Scope) String() string
|
| 585 |
+
pkg go/types, method (*Scope) WriteTo(io.Writer, int, bool)
|
| 586 |
+
pkg go/types, method (*Selection) Index() []int
|
| 587 |
+
pkg go/types, method (*Selection) Indirect() bool
|
| 588 |
+
pkg go/types, method (*Selection) Kind() SelectionKind
|
| 589 |
+
pkg go/types, method (*Selection) Obj() Object
|
| 590 |
+
pkg go/types, method (*Selection) Recv() Type
|
| 591 |
+
pkg go/types, method (*Selection) String() string
|
| 592 |
+
pkg go/types, method (*Selection) Type() Type
|
| 593 |
+
pkg go/types, method (*Signature) Params() *Tuple
|
| 594 |
+
pkg go/types, method (*Signature) Recv() *Var
|
| 595 |
+
pkg go/types, method (*Signature) Results() *Tuple
|
| 596 |
+
pkg go/types, method (*Signature) String() string
|
| 597 |
+
pkg go/types, method (*Signature) Underlying() Type
|
| 598 |
+
pkg go/types, method (*Signature) Variadic() bool
|
| 599 |
+
pkg go/types, method (*Slice) Elem() Type
|
| 600 |
+
pkg go/types, method (*Slice) String() string
|
| 601 |
+
pkg go/types, method (*Slice) Underlying() Type
|
| 602 |
+
pkg go/types, method (*StdSizes) Alignof(Type) int64
|
| 603 |
+
pkg go/types, method (*StdSizes) Offsetsof([]*Var) []int64
|
| 604 |
+
pkg go/types, method (*StdSizes) Sizeof(Type) int64
|
| 605 |
+
pkg go/types, method (*Struct) Field(int) *Var
|
| 606 |
+
pkg go/types, method (*Struct) NumFields() int
|
| 607 |
+
pkg go/types, method (*Struct) String() string
|
| 608 |
+
pkg go/types, method (*Struct) Tag(int) string
|
| 609 |
+
pkg go/types, method (*Struct) Underlying() Type
|
| 610 |
+
pkg go/types, method (*Tuple) At(int) *Var
|
| 611 |
+
pkg go/types, method (*Tuple) Len() int
|
| 612 |
+
pkg go/types, method (*Tuple) String() string
|
| 613 |
+
pkg go/types, method (*Tuple) Underlying() Type
|
| 614 |
+
pkg go/types, method (*TypeName) Exported() bool
|
| 615 |
+
pkg go/types, method (*TypeName) Id() string
|
| 616 |
+
pkg go/types, method (*TypeName) Name() string
|
| 617 |
+
pkg go/types, method (*TypeName) Parent() *Scope
|
| 618 |
+
pkg go/types, method (*TypeName) Pkg() *Package
|
| 619 |
+
pkg go/types, method (*TypeName) Pos() token.Pos
|
| 620 |
+
pkg go/types, method (*TypeName) String() string
|
| 621 |
+
pkg go/types, method (*TypeName) Type() Type
|
| 622 |
+
pkg go/types, method (*Var) Anonymous() bool
|
| 623 |
+
pkg go/types, method (*Var) Exported() bool
|
| 624 |
+
pkg go/types, method (*Var) Id() string
|
| 625 |
+
pkg go/types, method (*Var) IsField() bool
|
| 626 |
+
pkg go/types, method (*Var) Name() string
|
| 627 |
+
pkg go/types, method (*Var) Parent() *Scope
|
| 628 |
+
pkg go/types, method (*Var) Pkg() *Package
|
| 629 |
+
pkg go/types, method (*Var) Pos() token.Pos
|
| 630 |
+
pkg go/types, method (*Var) String() string
|
| 631 |
+
pkg go/types, method (*Var) Type() Type
|
| 632 |
+
pkg go/types, method (Checker) ObjectOf(*ast.Ident) Object
|
| 633 |
+
pkg go/types, method (Checker) TypeOf(ast.Expr) Type
|
| 634 |
+
pkg go/types, method (Error) Error() string
|
| 635 |
+
pkg go/types, method (TypeAndValue) Addressable() bool
|
| 636 |
+
pkg go/types, method (TypeAndValue) Assignable() bool
|
| 637 |
+
pkg go/types, method (TypeAndValue) HasOk() bool
|
| 638 |
+
pkg go/types, method (TypeAndValue) IsBuiltin() bool
|
| 639 |
+
pkg go/types, method (TypeAndValue) IsNil() bool
|
| 640 |
+
pkg go/types, method (TypeAndValue) IsType() bool
|
| 641 |
+
pkg go/types, method (TypeAndValue) IsValue() bool
|
| 642 |
+
pkg go/types, method (TypeAndValue) IsVoid() bool
|
| 643 |
+
pkg go/types, type Array struct
|
| 644 |
+
pkg go/types, type Basic struct
|
| 645 |
+
pkg go/types, type BasicInfo int
|
| 646 |
+
pkg go/types, type BasicKind int
|
| 647 |
+
pkg go/types, type Builtin struct
|
| 648 |
+
pkg go/types, type Chan struct
|
| 649 |
+
pkg go/types, type ChanDir int
|
| 650 |
+
pkg go/types, type Checker struct
|
| 651 |
+
pkg go/types, type Checker struct, embedded *Info
|
| 652 |
+
pkg go/types, type Config struct
|
| 653 |
+
pkg go/types, type Config struct, DisableUnusedImportCheck bool
|
| 654 |
+
pkg go/types, type Config struct, Error func(error)
|
| 655 |
+
pkg go/types, type Config struct, FakeImportC bool
|
| 656 |
+
pkg go/types, type Config struct, IgnoreFuncBodies bool
|
| 657 |
+
pkg go/types, type Config struct, Importer Importer
|
| 658 |
+
pkg go/types, type Config struct, Sizes Sizes
|
| 659 |
+
pkg go/types, type Const struct
|
| 660 |
+
pkg go/types, type Error struct
|
| 661 |
+
pkg go/types, type Error struct, Fset *token.FileSet
|
| 662 |
+
pkg go/types, type Error struct, Msg string
|
| 663 |
+
pkg go/types, type Error struct, Pos token.Pos
|
| 664 |
+
pkg go/types, type Error struct, Soft bool
|
| 665 |
+
pkg go/types, type Func struct
|
| 666 |
+
pkg go/types, type Importer interface { Import }
|
| 667 |
+
pkg go/types, type Importer interface, Import(string) (*Package, error)
|
| 668 |
+
pkg go/types, type Info struct
|
| 669 |
+
pkg go/types, type Info struct, Defs map[*ast.Ident]Object
|
| 670 |
+
pkg go/types, type Info struct, Implicits map[ast.Node]Object
|
| 671 |
+
pkg go/types, type Info struct, InitOrder []*Initializer
|
| 672 |
+
pkg go/types, type Info struct, Scopes map[ast.Node]*Scope
|
| 673 |
+
pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection
|
| 674 |
+
pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue
|
| 675 |
+
pkg go/types, type Info struct, Uses map[*ast.Ident]Object
|
| 676 |
+
pkg go/types, type Initializer struct
|
| 677 |
+
pkg go/types, type Initializer struct, Lhs []*Var
|
| 678 |
+
pkg go/types, type Initializer struct, Rhs ast.Expr
|
| 679 |
+
pkg go/types, type Interface struct
|
| 680 |
+
pkg go/types, type Label struct
|
| 681 |
+
pkg go/types, type Map struct
|
| 682 |
+
pkg go/types, type MethodSet struct
|
| 683 |
+
pkg go/types, type Named struct
|
| 684 |
+
pkg go/types, type Nil struct
|
| 685 |
+
pkg go/types, type Object interface, Exported() bool
|
| 686 |
+
pkg go/types, type Object interface, Id() string
|
| 687 |
+
pkg go/types, type Object interface, Name() string
|
| 688 |
+
pkg go/types, type Object interface, Parent() *Scope
|
| 689 |
+
pkg go/types, type Object interface, Pkg() *Package
|
| 690 |
+
pkg go/types, type Object interface, Pos() token.Pos
|
| 691 |
+
pkg go/types, type Object interface, String() string
|
| 692 |
+
pkg go/types, type Object interface, Type() Type
|
| 693 |
+
pkg go/types, type Object interface, unexported methods
|
| 694 |
+
pkg go/types, type Package struct
|
| 695 |
+
pkg go/types, type PkgName struct
|
| 696 |
+
pkg go/types, type Pointer struct
|
| 697 |
+
pkg go/types, type Qualifier func(*Package) string
|
| 698 |
+
pkg go/types, type Scope struct
|
| 699 |
+
pkg go/types, type Selection struct
|
| 700 |
+
pkg go/types, type SelectionKind int
|
| 701 |
+
pkg go/types, type Signature struct
|
| 702 |
+
pkg go/types, type Sizes interface { Alignof, Offsetsof, Sizeof }
|
| 703 |
+
pkg go/types, type Sizes interface, Alignof(Type) int64
|
| 704 |
+
pkg go/types, type Sizes interface, Offsetsof([]*Var) []int64
|
| 705 |
+
pkg go/types, type Sizes interface, Sizeof(Type) int64
|
| 706 |
+
pkg go/types, type Slice struct
|
| 707 |
+
pkg go/types, type StdSizes struct
|
| 708 |
+
pkg go/types, type StdSizes struct, MaxAlign int64
|
| 709 |
+
pkg go/types, type StdSizes struct, WordSize int64
|
| 710 |
+
pkg go/types, type Struct struct
|
| 711 |
+
pkg go/types, type Tuple struct
|
| 712 |
+
pkg go/types, type Type interface { String, Underlying }
|
| 713 |
+
pkg go/types, type Type interface, String() string
|
| 714 |
+
pkg go/types, type Type interface, Underlying() Type
|
| 715 |
+
pkg go/types, type TypeAndValue struct
|
| 716 |
+
pkg go/types, type TypeAndValue struct, Type Type
|
| 717 |
+
pkg go/types, type TypeAndValue struct, Value constant.Value
|
| 718 |
+
pkg go/types, type TypeName struct
|
| 719 |
+
pkg go/types, type Var struct
|
| 720 |
+
pkg go/types, var Typ []*Basic
|
| 721 |
+
pkg go/types, var Universe *Scope
|
| 722 |
+
pkg go/types, var Unsafe *Package
|
| 723 |
+
pkg html/template, method (*Template) Option(...string) *Template
|
| 724 |
+
pkg image, const YCbCrSubsampleRatio410 = 5
|
| 725 |
+
pkg image, const YCbCrSubsampleRatio410 YCbCrSubsampleRatio
|
| 726 |
+
pkg image, const YCbCrSubsampleRatio411 = 4
|
| 727 |
+
pkg image, const YCbCrSubsampleRatio411 YCbCrSubsampleRatio
|
| 728 |
+
pkg image, func NewCMYK(Rectangle) *CMYK
|
| 729 |
+
pkg image, method (*CMYK) At(int, int) color.Color
|
| 730 |
+
pkg image, method (*CMYK) Bounds() Rectangle
|
| 731 |
+
pkg image, method (*CMYK) CMYKAt(int, int) color.CMYK
|
| 732 |
+
pkg image, method (*CMYK) ColorModel() color.Model
|
| 733 |
+
pkg image, method (*CMYK) Opaque() bool
|
| 734 |
+
pkg image, method (*CMYK) PixOffset(int, int) int
|
| 735 |
+
pkg image, method (*CMYK) Set(int, int, color.Color)
|
| 736 |
+
pkg image, method (*CMYK) SetCMYK(int, int, color.CMYK)
|
| 737 |
+
pkg image, method (*CMYK) SubImage(Rectangle) Image
|
| 738 |
+
pkg image, method (Rectangle) At(int, int) color.Color
|
| 739 |
+
pkg image, method (Rectangle) Bounds() Rectangle
|
| 740 |
+
pkg image, method (Rectangle) ColorModel() color.Model
|
| 741 |
+
pkg image, type CMYK struct
|
| 742 |
+
pkg image, type CMYK struct, Pix []uint8
|
| 743 |
+
pkg image, type CMYK struct, Rect Rectangle
|
| 744 |
+
pkg image, type CMYK struct, Stride int
|
| 745 |
+
pkg image/color, func CMYKToRGB(uint8, uint8, uint8, uint8) (uint8, uint8, uint8)
|
| 746 |
+
pkg image/color, func RGBToCMYK(uint8, uint8, uint8) (uint8, uint8, uint8, uint8)
|
| 747 |
+
pkg image/color, method (CMYK) RGBA() (uint32, uint32, uint32, uint32)
|
| 748 |
+
pkg image/color, type CMYK struct
|
| 749 |
+
pkg image/color, type CMYK struct, C uint8
|
| 750 |
+
pkg image/color, type CMYK struct, K uint8
|
| 751 |
+
pkg image/color, type CMYK struct, M uint8
|
| 752 |
+
pkg image/color, type CMYK struct, Y uint8
|
| 753 |
+
pkg image/color, var CMYKModel Model
|
| 754 |
+
pkg image/gif, const DisposalBackground = 2
|
| 755 |
+
pkg image/gif, const DisposalBackground ideal-int
|
| 756 |
+
pkg image/gif, const DisposalNone = 1
|
| 757 |
+
pkg image/gif, const DisposalNone ideal-int
|
| 758 |
+
pkg image/gif, const DisposalPrevious = 3
|
| 759 |
+
pkg image/gif, const DisposalPrevious ideal-int
|
| 760 |
+
pkg image/gif, type GIF struct, BackgroundIndex uint8
|
| 761 |
+
pkg image/gif, type GIF struct, Config image.Config
|
| 762 |
+
pkg image/gif, type GIF struct, Disposal []uint8
|
| 763 |
+
pkg io, func CopyBuffer(Writer, Reader, []uint8) (int64, error)
|
| 764 |
+
pkg log, const LUTC = 32
|
| 765 |
+
pkg log, const LUTC ideal-int
|
| 766 |
+
pkg log, func Output(int, string) error
|
| 767 |
+
pkg log, method (*Logger) SetOutput(io.Writer)
|
| 768 |
+
pkg math/big, const Above = 1
|
| 769 |
+
pkg math/big, const Above Accuracy
|
| 770 |
+
pkg math/big, const AwayFromZero = 3
|
| 771 |
+
pkg math/big, const AwayFromZero RoundingMode
|
| 772 |
+
pkg math/big, const Below = -1
|
| 773 |
+
pkg math/big, const Below Accuracy
|
| 774 |
+
pkg math/big, const Exact = 0
|
| 775 |
+
pkg math/big, const Exact Accuracy
|
| 776 |
+
pkg math/big, const MaxExp = 2147483647
|
| 777 |
+
pkg math/big, const MaxExp ideal-int
|
| 778 |
+
pkg math/big, const MaxPrec = 4294967295
|
| 779 |
+
pkg math/big, const MaxPrec ideal-int
|
| 780 |
+
pkg math/big, const MinExp = -2147483648
|
| 781 |
+
pkg math/big, const MinExp ideal-int
|
| 782 |
+
pkg math/big, const ToNearestAway = 1
|
| 783 |
+
pkg math/big, const ToNearestAway RoundingMode
|
| 784 |
+
pkg math/big, const ToNearestEven = 0
|
| 785 |
+
pkg math/big, const ToNearestEven RoundingMode
|
| 786 |
+
pkg math/big, const ToNegativeInf = 4
|
| 787 |
+
pkg math/big, const ToNegativeInf RoundingMode
|
| 788 |
+
pkg math/big, const ToPositiveInf = 5
|
| 789 |
+
pkg math/big, const ToPositiveInf RoundingMode
|
| 790 |
+
pkg math/big, const ToZero = 2
|
| 791 |
+
pkg math/big, const ToZero RoundingMode
|
| 792 |
+
pkg math/big, func Jacobi(*Int, *Int) int
|
| 793 |
+
pkg math/big, func NewFloat(float64) *Float
|
| 794 |
+
pkg math/big, func ParseFloat(string, int, uint, RoundingMode) (*Float, int, error)
|
| 795 |
+
pkg math/big, method (*Float) Abs(*Float) *Float
|
| 796 |
+
pkg math/big, method (*Float) Acc() Accuracy
|
| 797 |
+
pkg math/big, method (*Float) Add(*Float, *Float) *Float
|
| 798 |
+
pkg math/big, method (*Float) Append([]uint8, uint8, int) []uint8
|
| 799 |
+
pkg math/big, method (*Float) Cmp(*Float) int
|
| 800 |
+
pkg math/big, method (*Float) Copy(*Float) *Float
|
| 801 |
+
pkg math/big, method (*Float) Float32() (float32, Accuracy)
|
| 802 |
+
pkg math/big, method (*Float) Float64() (float64, Accuracy)
|
| 803 |
+
pkg math/big, method (*Float) Format(fmt.State, int32)
|
| 804 |
+
pkg math/big, method (*Float) Int(*Int) (*Int, Accuracy)
|
| 805 |
+
pkg math/big, method (*Float) Int64() (int64, Accuracy)
|
| 806 |
+
pkg math/big, method (*Float) IsInf() bool
|
| 807 |
+
pkg math/big, method (*Float) IsInt() bool
|
| 808 |
+
pkg math/big, method (*Float) MantExp(*Float) int
|
| 809 |
+
pkg math/big, method (*Float) MinPrec() uint
|
| 810 |
+
pkg math/big, method (*Float) Mode() RoundingMode
|
| 811 |
+
pkg math/big, method (*Float) Mul(*Float, *Float) *Float
|
| 812 |
+
pkg math/big, method (*Float) Neg(*Float) *Float
|
| 813 |
+
pkg math/big, method (*Float) Parse(string, int) (*Float, int, error)
|
| 814 |
+
pkg math/big, method (*Float) Prec() uint
|
| 815 |
+
pkg math/big, method (*Float) Quo(*Float, *Float) *Float
|
| 816 |
+
pkg math/big, method (*Float) Rat(*Rat) (*Rat, Accuracy)
|
| 817 |
+
pkg math/big, method (*Float) Set(*Float) *Float
|
| 818 |
+
pkg math/big, method (*Float) SetFloat64(float64) *Float
|
| 819 |
+
pkg math/big, method (*Float) SetInf(bool) *Float
|
| 820 |
+
pkg math/big, method (*Float) SetInt(*Int) *Float
|
| 821 |
+
pkg math/big, method (*Float) SetInt64(int64) *Float
|
| 822 |
+
pkg math/big, method (*Float) SetMantExp(*Float, int) *Float
|
| 823 |
+
pkg math/big, method (*Float) SetMode(RoundingMode) *Float
|
| 824 |
+
pkg math/big, method (*Float) SetPrec(uint) *Float
|
| 825 |
+
pkg math/big, method (*Float) SetRat(*Rat) *Float
|
| 826 |
+
pkg math/big, method (*Float) SetString(string) (*Float, bool)
|
| 827 |
+
pkg math/big, method (*Float) SetUint64(uint64) *Float
|
| 828 |
+
pkg math/big, method (*Float) Sign() int
|
| 829 |
+
pkg math/big, method (*Float) Signbit() bool
|
| 830 |
+
pkg math/big, method (*Float) String() string
|
| 831 |
+
pkg math/big, method (*Float) Sub(*Float, *Float) *Float
|
| 832 |
+
pkg math/big, method (*Float) Text(uint8, int) string
|
| 833 |
+
pkg math/big, method (*Float) Uint64() (uint64, Accuracy)
|
| 834 |
+
pkg math/big, method (*Int) ModSqrt(*Int, *Int) *Int
|
| 835 |
+
pkg math/big, method (Accuracy) String() string
|
| 836 |
+
pkg math/big, method (ErrNaN) Error() string
|
| 837 |
+
pkg math/big, method (RoundingMode) String() string
|
| 838 |
+
pkg math/big, type Accuracy int8
|
| 839 |
+
pkg math/big, type ErrNaN struct
|
| 840 |
+
pkg math/big, type Float struct
|
| 841 |
+
pkg math/big, type RoundingMode uint8
|
| 842 |
+
pkg mime, const BEncoding = 98
|
| 843 |
+
pkg mime, const BEncoding WordEncoder
|
| 844 |
+
pkg mime, const QEncoding = 113
|
| 845 |
+
pkg mime, const QEncoding WordEncoder
|
| 846 |
+
pkg mime, func ExtensionsByType(string) ([]string, error)
|
| 847 |
+
pkg mime, method (*WordDecoder) Decode(string) (string, error)
|
| 848 |
+
pkg mime, method (*WordDecoder) DecodeHeader(string) (string, error)
|
| 849 |
+
pkg mime, method (WordEncoder) Encode(string, string) string
|
| 850 |
+
pkg mime, type WordDecoder struct
|
| 851 |
+
pkg mime, type WordDecoder struct, CharsetReader func(string, io.Reader) (io.Reader, error)
|
| 852 |
+
pkg mime, type WordEncoder uint8
|
| 853 |
+
pkg mime/quotedprintable, func NewReader(io.Reader) *Reader
|
| 854 |
+
pkg mime/quotedprintable, func NewWriter(io.Writer) *Writer
|
| 855 |
+
pkg mime/quotedprintable, method (*Reader) Read([]uint8) (int, error)
|
| 856 |
+
pkg mime/quotedprintable, method (*Writer) Close() error
|
| 857 |
+
pkg mime/quotedprintable, method (*Writer) Write([]uint8) (int, error)
|
| 858 |
+
pkg mime/quotedprintable, type Reader struct
|
| 859 |
+
pkg mime/quotedprintable, type Writer struct
|
| 860 |
+
pkg mime/quotedprintable, type Writer struct, Binary bool
|
| 861 |
+
pkg net, type Dialer struct, FallbackDelay time.Duration
|
| 862 |
+
pkg net, type OpError struct, Source Addr
|
| 863 |
+
pkg net/http, type Request struct, Cancel <-chan struct
|
| 864 |
+
pkg net/http/fcgi, var ErrConnClosed error
|
| 865 |
+
pkg net/http/fcgi, var ErrRequestAborted error
|
| 866 |
+
pkg net/http/pprof, func Trace(http.ResponseWriter, *http.Request)
|
| 867 |
+
pkg net/mail, method (*AddressParser) Parse(string) (*Address, error)
|
| 868 |
+
pkg net/mail, method (*AddressParser) ParseList(string) ([]*Address, error)
|
| 869 |
+
pkg net/mail, type AddressParser struct
|
| 870 |
+
pkg net/mail, type AddressParser struct, WordDecoder *mime.WordDecoder
|
| 871 |
+
pkg net/smtp, method (*Client) TLSConnectionState() (tls.ConnectionState, bool)
|
| 872 |
+
pkg net/url, method (*URL) EscapedPath() string
|
| 873 |
+
pkg net/url, type URL struct, RawPath string
|
| 874 |
+
pkg os, func LookupEnv(string) (string, bool)
|
| 875 |
+
pkg os/signal, func Ignore(...os.Signal)
|
| 876 |
+
pkg os/signal, func Reset(...os.Signal)
|
| 877 |
+
pkg reflect, func ArrayOf(int, Type) Type
|
| 878 |
+
pkg reflect, func FuncOf([]Type, []Type, bool) Type
|
| 879 |
+
pkg runtime, func ReadTrace() []uint8
|
| 880 |
+
pkg runtime, func StartTrace() error
|
| 881 |
+
pkg runtime, func StopTrace()
|
| 882 |
+
pkg runtime, type MemStats struct, GCCPUFraction float64
|
| 883 |
+
pkg runtime/trace, func Start(io.Writer) error
|
| 884 |
+
pkg runtime/trace, func Stop()
|
| 885 |
+
pkg strings, func Compare(string, string) int
|
| 886 |
+
pkg strings, func LastIndexByte(string, uint8) int
|
| 887 |
+
pkg strings, method (*Reader) Size() int64
|
| 888 |
+
pkg syscall (darwin-386), type SysProcAttr struct, Ctty int
|
| 889 |
+
pkg syscall (darwin-386), type SysProcAttr struct, Foreground bool
|
| 890 |
+
pkg syscall (darwin-386), type SysProcAttr struct, Pgid int
|
| 891 |
+
pkg syscall (darwin-386-cgo), type SysProcAttr struct, Ctty int
|
| 892 |
+
pkg syscall (darwin-386-cgo), type SysProcAttr struct, Foreground bool
|
| 893 |
+
pkg syscall (darwin-386-cgo), type SysProcAttr struct, Pgid int
|
| 894 |
+
pkg syscall (darwin-amd64), type SysProcAttr struct, Ctty int
|
| 895 |
+
pkg syscall (darwin-amd64), type SysProcAttr struct, Foreground bool
|
| 896 |
+
pkg syscall (darwin-amd64), type SysProcAttr struct, Pgid int
|
| 897 |
+
pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Ctty int
|
| 898 |
+
pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Foreground bool
|
| 899 |
+
pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Pgid int
|
| 900 |
+
pkg syscall (freebsd-386), type SysProcAttr struct, Ctty int
|
| 901 |
+
pkg syscall (freebsd-386), type SysProcAttr struct, Foreground bool
|
| 902 |
+
pkg syscall (freebsd-386), type SysProcAttr struct, Pgid int
|
| 903 |
+
pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Ctty int
|
| 904 |
+
pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Foreground bool
|
| 905 |
+
pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Pgid int
|
| 906 |
+
pkg syscall (freebsd-amd64), type SysProcAttr struct, Ctty int
|
| 907 |
+
pkg syscall (freebsd-amd64), type SysProcAttr struct, Foreground bool
|
| 908 |
+
pkg syscall (freebsd-amd64), type SysProcAttr struct, Pgid int
|
| 909 |
+
pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Ctty int
|
| 910 |
+
pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Foreground bool
|
| 911 |
+
pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Pgid int
|
| 912 |
+
pkg syscall (freebsd-arm), type SysProcAttr struct, Ctty int
|
| 913 |
+
pkg syscall (freebsd-arm), type SysProcAttr struct, Foreground bool
|
| 914 |
+
pkg syscall (freebsd-arm), type SysProcAttr struct, Pgid int
|
| 915 |
+
pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Ctty int
|
| 916 |
+
pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Foreground bool
|
| 917 |
+
pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Pgid int
|
| 918 |
+
pkg syscall (linux-386), type SysProcAttr struct, Foreground bool
|
| 919 |
+
pkg syscall (linux-386), type SysProcAttr struct, GidMappingsEnableSetgroups bool
|
| 920 |
+
pkg syscall (linux-386), type SysProcAttr struct, Pgid int
|
| 921 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, Foreground bool
|
| 922 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, GidMappingsEnableSetgroups bool
|
| 923 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, Pgid int
|
| 924 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, Foreground bool
|
| 925 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, GidMappingsEnableSetgroups bool
|
| 926 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, Pgid int
|
| 927 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Foreground bool
|
| 928 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, GidMappingsEnableSetgroups bool
|
| 929 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Pgid int
|
| 930 |
+
pkg syscall (linux-arm), type SysProcAttr struct, Foreground bool
|
| 931 |
+
pkg syscall (linux-arm), type SysProcAttr struct, GidMappingsEnableSetgroups bool
|
| 932 |
+
pkg syscall (linux-arm), type SysProcAttr struct, Pgid int
|
| 933 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, Foreground bool
|
| 934 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappingsEnableSetgroups bool
|
| 935 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, Pgid int
|
| 936 |
+
pkg syscall (netbsd-386), type SysProcAttr struct, Ctty int
|
| 937 |
+
pkg syscall (netbsd-386), type SysProcAttr struct, Foreground bool
|
| 938 |
+
pkg syscall (netbsd-386), type SysProcAttr struct, Pgid int
|
| 939 |
+
pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Ctty int
|
| 940 |
+
pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Foreground bool
|
| 941 |
+
pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Pgid int
|
| 942 |
+
pkg syscall (netbsd-amd64), type SysProcAttr struct, Ctty int
|
| 943 |
+
pkg syscall (netbsd-amd64), type SysProcAttr struct, Foreground bool
|
| 944 |
+
pkg syscall (netbsd-amd64), type SysProcAttr struct, Pgid int
|
| 945 |
+
pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Ctty int
|
| 946 |
+
pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Foreground bool
|
| 947 |
+
pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Pgid int
|
| 948 |
+
pkg syscall (netbsd-arm), type SysProcAttr struct, Ctty int
|
| 949 |
+
pkg syscall (netbsd-arm), type SysProcAttr struct, Foreground bool
|
| 950 |
+
pkg syscall (netbsd-arm), type SysProcAttr struct, Pgid int
|
| 951 |
+
pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Ctty int
|
| 952 |
+
pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Foreground bool
|
| 953 |
+
pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Pgid int
|
| 954 |
+
pkg syscall (openbsd-386), type SysProcAttr struct, Ctty int
|
| 955 |
+
pkg syscall (openbsd-386), type SysProcAttr struct, Foreground bool
|
| 956 |
+
pkg syscall (openbsd-386), type SysProcAttr struct, Pgid int
|
| 957 |
+
pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Ctty int
|
| 958 |
+
pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Foreground bool
|
| 959 |
+
pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Pgid int
|
| 960 |
+
pkg syscall (openbsd-amd64), type SysProcAttr struct, Ctty int
|
| 961 |
+
pkg syscall (openbsd-amd64), type SysProcAttr struct, Foreground bool
|
| 962 |
+
pkg syscall (openbsd-amd64), type SysProcAttr struct, Pgid int
|
| 963 |
+
pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Ctty int
|
| 964 |
+
pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Foreground bool
|
| 965 |
+
pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Pgid int
|
| 966 |
+
pkg text/template, method (*Template) DefinedTemplates() string
|
| 967 |
+
pkg text/template, method (*Template) Option(...string) *Template
|
| 968 |
+
pkg time, method (Time) AppendFormat([]uint8, string) []uint8
|
| 969 |
+
pkg unicode, const Version = "8.0.0"
|
| 970 |
+
pkg unicode, var Ahom *RangeTable
|
| 971 |
+
pkg unicode, var Anatolian_Hieroglyphs *RangeTable
|
| 972 |
+
pkg unicode, var Hatran *RangeTable
|
| 973 |
+
pkg unicode, var Multani *RangeTable
|
| 974 |
+
pkg unicode, var Old_Hungarian *RangeTable
|
| 975 |
+
pkg unicode, var SignWriting *RangeTable
|
api/go1.6.txt
ADDED
|
@@ -0,0 +1,275 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg archive/zip, method (*ReadCloser) RegisterDecompressor(uint16, Decompressor)
|
| 2 |
+
pkg archive/zip, method (*Reader) RegisterDecompressor(uint16, Decompressor)
|
| 3 |
+
pkg archive/zip, method (*Writer) RegisterCompressor(uint16, Compressor)
|
| 4 |
+
pkg bufio, method (*Scanner) Buffer([]uint8, int)
|
| 5 |
+
pkg bufio, var ErrFinalToken error
|
| 6 |
+
pkg crypto/tls, const TLS_RSA_WITH_AES_128_GCM_SHA256 = 156
|
| 7 |
+
pkg crypto/tls, const TLS_RSA_WITH_AES_128_GCM_SHA256 uint16
|
| 8 |
+
pkg crypto/tls, const TLS_RSA_WITH_AES_256_GCM_SHA384 = 157
|
| 9 |
+
pkg crypto/tls, const TLS_RSA_WITH_AES_256_GCM_SHA384 uint16
|
| 10 |
+
pkg crypto/tls, method (RecordHeaderError) Error() string
|
| 11 |
+
pkg crypto/tls, type RecordHeaderError struct
|
| 12 |
+
pkg crypto/tls, type RecordHeaderError struct, Msg string
|
| 13 |
+
pkg crypto/tls, type RecordHeaderError struct, RecordHeader [5]uint8
|
| 14 |
+
pkg crypto/x509, method (InsecureAlgorithmError) Error() string
|
| 15 |
+
pkg crypto/x509, method (SignatureAlgorithm) String() string
|
| 16 |
+
pkg crypto/x509, type InsecureAlgorithmError int
|
| 17 |
+
pkg database/sql, method (*DB) SetConnMaxLifetime(time.Duration)
|
| 18 |
+
pkg debug/dwarf, const ClassUnknown = 0
|
| 19 |
+
pkg debug/dwarf, const ClassUnknown Class
|
| 20 |
+
pkg debug/elf, const COMPRESS_HIOS = 1879048191
|
| 21 |
+
pkg debug/elf, const COMPRESS_HIOS CompressionType
|
| 22 |
+
pkg debug/elf, const COMPRESS_HIPROC = 2147483647
|
| 23 |
+
pkg debug/elf, const COMPRESS_HIPROC CompressionType
|
| 24 |
+
pkg debug/elf, const COMPRESS_LOOS = 1610612736
|
| 25 |
+
pkg debug/elf, const COMPRESS_LOOS CompressionType
|
| 26 |
+
pkg debug/elf, const COMPRESS_LOPROC = 1879048192
|
| 27 |
+
pkg debug/elf, const COMPRESS_LOPROC CompressionType
|
| 28 |
+
pkg debug/elf, const COMPRESS_ZLIB = 1
|
| 29 |
+
pkg debug/elf, const COMPRESS_ZLIB CompressionType
|
| 30 |
+
pkg debug/elf, const R_MIPS_16 = 1
|
| 31 |
+
pkg debug/elf, const R_MIPS_16 R_MIPS
|
| 32 |
+
pkg debug/elf, const R_MIPS_26 = 4
|
| 33 |
+
pkg debug/elf, const R_MIPS_26 R_MIPS
|
| 34 |
+
pkg debug/elf, const R_MIPS_32 = 2
|
| 35 |
+
pkg debug/elf, const R_MIPS_32 R_MIPS
|
| 36 |
+
pkg debug/elf, const R_MIPS_64 = 18
|
| 37 |
+
pkg debug/elf, const R_MIPS_64 R_MIPS
|
| 38 |
+
pkg debug/elf, const R_MIPS_ADD_IMMEDIATE = 34
|
| 39 |
+
pkg debug/elf, const R_MIPS_ADD_IMMEDIATE R_MIPS
|
| 40 |
+
pkg debug/elf, const R_MIPS_CALL16 = 11
|
| 41 |
+
pkg debug/elf, const R_MIPS_CALL16 R_MIPS
|
| 42 |
+
pkg debug/elf, const R_MIPS_CALL_HI16 = 30
|
| 43 |
+
pkg debug/elf, const R_MIPS_CALL_HI16 R_MIPS
|
| 44 |
+
pkg debug/elf, const R_MIPS_CALL_LO16 = 31
|
| 45 |
+
pkg debug/elf, const R_MIPS_CALL_LO16 R_MIPS
|
| 46 |
+
pkg debug/elf, const R_MIPS_DELETE = 27
|
| 47 |
+
pkg debug/elf, const R_MIPS_DELETE R_MIPS
|
| 48 |
+
pkg debug/elf, const R_MIPS_GOT16 = 9
|
| 49 |
+
pkg debug/elf, const R_MIPS_GOT16 R_MIPS
|
| 50 |
+
pkg debug/elf, const R_MIPS_GOT_DISP = 19
|
| 51 |
+
pkg debug/elf, const R_MIPS_GOT_DISP R_MIPS
|
| 52 |
+
pkg debug/elf, const R_MIPS_GOT_HI16 = 22
|
| 53 |
+
pkg debug/elf, const R_MIPS_GOT_HI16 R_MIPS
|
| 54 |
+
pkg debug/elf, const R_MIPS_GOT_LO16 = 23
|
| 55 |
+
pkg debug/elf, const R_MIPS_GOT_LO16 R_MIPS
|
| 56 |
+
pkg debug/elf, const R_MIPS_GOT_OFST = 21
|
| 57 |
+
pkg debug/elf, const R_MIPS_GOT_OFST R_MIPS
|
| 58 |
+
pkg debug/elf, const R_MIPS_GOT_PAGE = 20
|
| 59 |
+
pkg debug/elf, const R_MIPS_GOT_PAGE R_MIPS
|
| 60 |
+
pkg debug/elf, const R_MIPS_GPREL16 = 7
|
| 61 |
+
pkg debug/elf, const R_MIPS_GPREL16 R_MIPS
|
| 62 |
+
pkg debug/elf, const R_MIPS_GPREL32 = 12
|
| 63 |
+
pkg debug/elf, const R_MIPS_GPREL32 R_MIPS
|
| 64 |
+
pkg debug/elf, const R_MIPS_HI16 = 5
|
| 65 |
+
pkg debug/elf, const R_MIPS_HI16 R_MIPS
|
| 66 |
+
pkg debug/elf, const R_MIPS_HIGHER = 28
|
| 67 |
+
pkg debug/elf, const R_MIPS_HIGHER R_MIPS
|
| 68 |
+
pkg debug/elf, const R_MIPS_HIGHEST = 29
|
| 69 |
+
pkg debug/elf, const R_MIPS_HIGHEST R_MIPS
|
| 70 |
+
pkg debug/elf, const R_MIPS_INSERT_A = 25
|
| 71 |
+
pkg debug/elf, const R_MIPS_INSERT_A R_MIPS
|
| 72 |
+
pkg debug/elf, const R_MIPS_INSERT_B = 26
|
| 73 |
+
pkg debug/elf, const R_MIPS_INSERT_B R_MIPS
|
| 74 |
+
pkg debug/elf, const R_MIPS_JALR = 37
|
| 75 |
+
pkg debug/elf, const R_MIPS_JALR R_MIPS
|
| 76 |
+
pkg debug/elf, const R_MIPS_LITERAL = 8
|
| 77 |
+
pkg debug/elf, const R_MIPS_LITERAL R_MIPS
|
| 78 |
+
pkg debug/elf, const R_MIPS_LO16 = 6
|
| 79 |
+
pkg debug/elf, const R_MIPS_LO16 R_MIPS
|
| 80 |
+
pkg debug/elf, const R_MIPS_NONE = 0
|
| 81 |
+
pkg debug/elf, const R_MIPS_NONE R_MIPS
|
| 82 |
+
pkg debug/elf, const R_MIPS_PC16 = 10
|
| 83 |
+
pkg debug/elf, const R_MIPS_PC16 R_MIPS
|
| 84 |
+
pkg debug/elf, const R_MIPS_PJUMP = 35
|
| 85 |
+
pkg debug/elf, const R_MIPS_PJUMP R_MIPS
|
| 86 |
+
pkg debug/elf, const R_MIPS_REL16 = 33
|
| 87 |
+
pkg debug/elf, const R_MIPS_REL16 R_MIPS
|
| 88 |
+
pkg debug/elf, const R_MIPS_REL32 = 3
|
| 89 |
+
pkg debug/elf, const R_MIPS_REL32 R_MIPS
|
| 90 |
+
pkg debug/elf, const R_MIPS_RELGOT = 36
|
| 91 |
+
pkg debug/elf, const R_MIPS_RELGOT R_MIPS
|
| 92 |
+
pkg debug/elf, const R_MIPS_SCN_DISP = 32
|
| 93 |
+
pkg debug/elf, const R_MIPS_SCN_DISP R_MIPS
|
| 94 |
+
pkg debug/elf, const R_MIPS_SHIFT5 = 16
|
| 95 |
+
pkg debug/elf, const R_MIPS_SHIFT5 R_MIPS
|
| 96 |
+
pkg debug/elf, const R_MIPS_SHIFT6 = 17
|
| 97 |
+
pkg debug/elf, const R_MIPS_SHIFT6 R_MIPS
|
| 98 |
+
pkg debug/elf, const R_MIPS_SUB = 24
|
| 99 |
+
pkg debug/elf, const R_MIPS_SUB R_MIPS
|
| 100 |
+
pkg debug/elf, const R_MIPS_TLS_DTPMOD32 = 38
|
| 101 |
+
pkg debug/elf, const R_MIPS_TLS_DTPMOD32 R_MIPS
|
| 102 |
+
pkg debug/elf, const R_MIPS_TLS_DTPMOD64 = 40
|
| 103 |
+
pkg debug/elf, const R_MIPS_TLS_DTPMOD64 R_MIPS
|
| 104 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL32 = 39
|
| 105 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL32 R_MIPS
|
| 106 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL64 = 41
|
| 107 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL64 R_MIPS
|
| 108 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL_HI16 = 44
|
| 109 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL_HI16 R_MIPS
|
| 110 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL_LO16 = 45
|
| 111 |
+
pkg debug/elf, const R_MIPS_TLS_DTPREL_LO16 R_MIPS
|
| 112 |
+
pkg debug/elf, const R_MIPS_TLS_GD = 42
|
| 113 |
+
pkg debug/elf, const R_MIPS_TLS_GD R_MIPS
|
| 114 |
+
pkg debug/elf, const R_MIPS_TLS_GOTTPREL = 46
|
| 115 |
+
pkg debug/elf, const R_MIPS_TLS_GOTTPREL R_MIPS
|
| 116 |
+
pkg debug/elf, const R_MIPS_TLS_LDM = 43
|
| 117 |
+
pkg debug/elf, const R_MIPS_TLS_LDM R_MIPS
|
| 118 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL32 = 47
|
| 119 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL32 R_MIPS
|
| 120 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL64 = 48
|
| 121 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL64 R_MIPS
|
| 122 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 = 49
|
| 123 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 R_MIPS
|
| 124 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 = 50
|
| 125 |
+
pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 R_MIPS
|
| 126 |
+
pkg debug/elf, const SHF_COMPRESSED = 2048
|
| 127 |
+
pkg debug/elf, const SHF_COMPRESSED SectionFlag
|
| 128 |
+
pkg debug/elf, method (CompressionType) GoString() string
|
| 129 |
+
pkg debug/elf, method (CompressionType) String() string
|
| 130 |
+
pkg debug/elf, method (R_MIPS) GoString() string
|
| 131 |
+
pkg debug/elf, method (R_MIPS) String() string
|
| 132 |
+
pkg debug/elf, type Chdr32 struct
|
| 133 |
+
pkg debug/elf, type Chdr32 struct, Addralign uint32
|
| 134 |
+
pkg debug/elf, type Chdr32 struct, Size uint32
|
| 135 |
+
pkg debug/elf, type Chdr32 struct, Type uint32
|
| 136 |
+
pkg debug/elf, type Chdr64 struct
|
| 137 |
+
pkg debug/elf, type Chdr64 struct, Addralign uint64
|
| 138 |
+
pkg debug/elf, type Chdr64 struct, Size uint64
|
| 139 |
+
pkg debug/elf, type Chdr64 struct, Type uint32
|
| 140 |
+
pkg debug/elf, type CompressionType int
|
| 141 |
+
pkg debug/elf, type R_MIPS int
|
| 142 |
+
pkg debug/elf, type SectionHeader struct, FileSize uint64
|
| 143 |
+
pkg encoding/asn1, const ClassApplication = 1
|
| 144 |
+
pkg encoding/asn1, const ClassApplication ideal-int
|
| 145 |
+
pkg encoding/asn1, const ClassContextSpecific = 2
|
| 146 |
+
pkg encoding/asn1, const ClassContextSpecific ideal-int
|
| 147 |
+
pkg encoding/asn1, const ClassPrivate = 3
|
| 148 |
+
pkg encoding/asn1, const ClassPrivate ideal-int
|
| 149 |
+
pkg encoding/asn1, const ClassUniversal = 0
|
| 150 |
+
pkg encoding/asn1, const ClassUniversal ideal-int
|
| 151 |
+
pkg encoding/asn1, const TagBitString = 3
|
| 152 |
+
pkg encoding/asn1, const TagBitString ideal-int
|
| 153 |
+
pkg encoding/asn1, const TagBoolean = 1
|
| 154 |
+
pkg encoding/asn1, const TagBoolean ideal-int
|
| 155 |
+
pkg encoding/asn1, const TagEnum = 10
|
| 156 |
+
pkg encoding/asn1, const TagEnum ideal-int
|
| 157 |
+
pkg encoding/asn1, const TagGeneralString = 27
|
| 158 |
+
pkg encoding/asn1, const TagGeneralString ideal-int
|
| 159 |
+
pkg encoding/asn1, const TagGeneralizedTime = 24
|
| 160 |
+
pkg encoding/asn1, const TagGeneralizedTime ideal-int
|
| 161 |
+
pkg encoding/asn1, const TagIA5String = 22
|
| 162 |
+
pkg encoding/asn1, const TagIA5String ideal-int
|
| 163 |
+
pkg encoding/asn1, const TagInteger = 2
|
| 164 |
+
pkg encoding/asn1, const TagInteger ideal-int
|
| 165 |
+
pkg encoding/asn1, const TagOID = 6
|
| 166 |
+
pkg encoding/asn1, const TagOID ideal-int
|
| 167 |
+
pkg encoding/asn1, const TagOctetString = 4
|
| 168 |
+
pkg encoding/asn1, const TagOctetString ideal-int
|
| 169 |
+
pkg encoding/asn1, const TagPrintableString = 19
|
| 170 |
+
pkg encoding/asn1, const TagPrintableString ideal-int
|
| 171 |
+
pkg encoding/asn1, const TagSequence = 16
|
| 172 |
+
pkg encoding/asn1, const TagSequence ideal-int
|
| 173 |
+
pkg encoding/asn1, const TagSet = 17
|
| 174 |
+
pkg encoding/asn1, const TagSet ideal-int
|
| 175 |
+
pkg encoding/asn1, const TagT61String = 20
|
| 176 |
+
pkg encoding/asn1, const TagT61String ideal-int
|
| 177 |
+
pkg encoding/asn1, const TagUTCTime = 23
|
| 178 |
+
pkg encoding/asn1, const TagUTCTime ideal-int
|
| 179 |
+
pkg encoding/asn1, const TagUTF8String = 12
|
| 180 |
+
pkg encoding/asn1, const TagUTF8String ideal-int
|
| 181 |
+
pkg go/build, const IgnoreVendor = 8
|
| 182 |
+
pkg go/build, const IgnoreVendor ImportMode
|
| 183 |
+
pkg go/build, type Package struct, InvalidGoFiles []string
|
| 184 |
+
pkg go/constant, func ToComplex(Value) Value
|
| 185 |
+
pkg go/constant, func ToFloat(Value) Value
|
| 186 |
+
pkg go/constant, func ToInt(Value) Value
|
| 187 |
+
pkg go/constant, type Value interface, ExactString() string
|
| 188 |
+
pkg go/types, method (*Package) SetName(string)
|
| 189 |
+
pkg go/types, type ImportMode int
|
| 190 |
+
pkg go/types, type ImporterFrom interface { Import, ImportFrom }
|
| 191 |
+
pkg go/types, type ImporterFrom interface, Import(string) (*Package, error)
|
| 192 |
+
pkg go/types, type ImporterFrom interface, ImportFrom(string, string, ImportMode) (*Package, error)
|
| 193 |
+
pkg html/template, func IsTrue(interface{}) (bool, bool)
|
| 194 |
+
pkg html/template, method (*Template) DefinedTemplates() string
|
| 195 |
+
pkg image, func NewNYCbCrA(Rectangle, YCbCrSubsampleRatio) *NYCbCrA
|
| 196 |
+
pkg image, method (*NYCbCrA) AOffset(int, int) int
|
| 197 |
+
pkg image, method (*NYCbCrA) At(int, int) color.Color
|
| 198 |
+
pkg image, method (*NYCbCrA) Bounds() Rectangle
|
| 199 |
+
pkg image, method (*NYCbCrA) COffset(int, int) int
|
| 200 |
+
pkg image, method (*NYCbCrA) ColorModel() color.Model
|
| 201 |
+
pkg image, method (*NYCbCrA) NYCbCrAAt(int, int) color.NYCbCrA
|
| 202 |
+
pkg image, method (*NYCbCrA) Opaque() bool
|
| 203 |
+
pkg image, method (*NYCbCrA) SubImage(Rectangle) Image
|
| 204 |
+
pkg image, method (*NYCbCrA) YCbCrAt(int, int) color.YCbCr
|
| 205 |
+
pkg image, method (*NYCbCrA) YOffset(int, int) int
|
| 206 |
+
pkg image, type NYCbCrA struct
|
| 207 |
+
pkg image, type NYCbCrA struct, A []uint8
|
| 208 |
+
pkg image, type NYCbCrA struct, AStride int
|
| 209 |
+
pkg image, type NYCbCrA struct, embedded YCbCr
|
| 210 |
+
pkg image/color, method (NYCbCrA) RGBA() (uint32, uint32, uint32, uint32)
|
| 211 |
+
pkg image/color, type NYCbCrA struct
|
| 212 |
+
pkg image/color, type NYCbCrA struct, A uint8
|
| 213 |
+
pkg image/color, type NYCbCrA struct, embedded YCbCr
|
| 214 |
+
pkg image/color, var NYCbCrAModel Model
|
| 215 |
+
pkg math/big, method (*Float) MarshalText() ([]uint8, error)
|
| 216 |
+
pkg math/big, method (*Float) UnmarshalText([]uint8) error
|
| 217 |
+
pkg math/big, method (*Int) Append([]uint8, int) []uint8
|
| 218 |
+
pkg math/big, method (*Int) Text(int) string
|
| 219 |
+
pkg math/rand, func Read([]uint8) (int, error)
|
| 220 |
+
pkg math/rand, method (*Rand) Read([]uint8) (int, error)
|
| 221 |
+
pkg net, type DNSError struct, IsTemporary bool
|
| 222 |
+
pkg net, type Dialer struct, Cancel <-chan struct
|
| 223 |
+
pkg net/http, const MethodConnect = "CONNECT"
|
| 224 |
+
pkg net/http, const MethodConnect ideal-string
|
| 225 |
+
pkg net/http, const MethodDelete = "DELETE"
|
| 226 |
+
pkg net/http, const MethodDelete ideal-string
|
| 227 |
+
pkg net/http, const MethodGet = "GET"
|
| 228 |
+
pkg net/http, const MethodGet ideal-string
|
| 229 |
+
pkg net/http, const MethodHead = "HEAD"
|
| 230 |
+
pkg net/http, const MethodHead ideal-string
|
| 231 |
+
pkg net/http, const MethodOptions = "OPTIONS"
|
| 232 |
+
pkg net/http, const MethodOptions ideal-string
|
| 233 |
+
pkg net/http, const MethodPatch = "PATCH"
|
| 234 |
+
pkg net/http, const MethodPatch ideal-string
|
| 235 |
+
pkg net/http, const MethodPost = "POST"
|
| 236 |
+
pkg net/http, const MethodPost ideal-string
|
| 237 |
+
pkg net/http, const MethodPut = "PUT"
|
| 238 |
+
pkg net/http, const MethodPut ideal-string
|
| 239 |
+
pkg net/http, const MethodTrace = "TRACE"
|
| 240 |
+
pkg net/http, const MethodTrace ideal-string
|
| 241 |
+
pkg net/http, const StatusNetworkAuthenticationRequired = 511
|
| 242 |
+
pkg net/http, const StatusNetworkAuthenticationRequired ideal-int
|
| 243 |
+
pkg net/http, const StatusPreconditionRequired = 428
|
| 244 |
+
pkg net/http, const StatusPreconditionRequired ideal-int
|
| 245 |
+
pkg net/http, const StatusRequestHeaderFieldsTooLarge = 431
|
| 246 |
+
pkg net/http, const StatusRequestHeaderFieldsTooLarge ideal-int
|
| 247 |
+
pkg net/http, const StatusTooManyRequests = 429
|
| 248 |
+
pkg net/http, const StatusTooManyRequests ideal-int
|
| 249 |
+
pkg net/http, const StatusUnavailableForLegalReasons = 451
|
| 250 |
+
pkg net/http, const StatusUnavailableForLegalReasons ideal-int
|
| 251 |
+
pkg net/http, type Transport struct, ExpectContinueTimeout time.Duration
|
| 252 |
+
pkg net/http, type Transport struct, TLSNextProto map[string]func(string, *tls.Conn) RoundTripper
|
| 253 |
+
pkg net/http, var ErrSkipAltProtocol error
|
| 254 |
+
pkg net/http/httptest, method (*ResponseRecorder) WriteString(string) (int, error)
|
| 255 |
+
pkg net/http/httputil, type BufferPool interface { Get, Put }
|
| 256 |
+
pkg net/http/httputil, type BufferPool interface, Get() []uint8
|
| 257 |
+
pkg net/http/httputil, type BufferPool interface, Put([]uint8)
|
| 258 |
+
pkg net/http/httputil, type ReverseProxy struct, BufferPool BufferPool
|
| 259 |
+
pkg net/url, method (*Error) Temporary() bool
|
| 260 |
+
pkg net/url, method (*Error) Timeout() bool
|
| 261 |
+
pkg net/url, method (InvalidHostError) Error() string
|
| 262 |
+
pkg net/url, type InvalidHostError string
|
| 263 |
+
pkg os/exec, type ExitError struct, Stderr []uint8
|
| 264 |
+
pkg regexp, method (*Regexp) Copy() *Regexp
|
| 265 |
+
pkg runtime/debug, func SetTraceback(string)
|
| 266 |
+
pkg strconv, func AppendQuoteRuneToGraphic([]uint8, int32) []uint8
|
| 267 |
+
pkg strconv, func AppendQuoteToGraphic([]uint8, string) []uint8
|
| 268 |
+
pkg strconv, func IsGraphic(int32) bool
|
| 269 |
+
pkg strconv, func QuoteRuneToGraphic(int32) string
|
| 270 |
+
pkg strconv, func QuoteToGraphic(string) string
|
| 271 |
+
pkg text/template, func IsTrue(interface{}) (bool, bool)
|
| 272 |
+
pkg text/template, method (ExecError) Error() string
|
| 273 |
+
pkg text/template, type ExecError struct
|
| 274 |
+
pkg text/template, type ExecError struct, Err error
|
| 275 |
+
pkg text/template, type ExecError struct, Name string
|
api/go1.7.txt
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg bytes, func ContainsAny([]uint8, string) bool
|
| 2 |
+
pkg bytes, func ContainsRune([]uint8, int32) bool
|
| 3 |
+
pkg bytes, method (*Reader) Reset([]uint8)
|
| 4 |
+
pkg compress/flate, const HuffmanOnly = -2
|
| 5 |
+
pkg compress/flate, const HuffmanOnly ideal-int
|
| 6 |
+
pkg context, func Background() Context
|
| 7 |
+
pkg context, func TODO() Context
|
| 8 |
+
pkg context, func WithCancel(Context) (Context, CancelFunc)
|
| 9 |
+
pkg context, func WithDeadline(Context, time.Time) (Context, CancelFunc)
|
| 10 |
+
pkg context, func WithTimeout(Context, time.Duration) (Context, CancelFunc)
|
| 11 |
+
pkg context, func WithValue(Context, interface{}, interface{}) Context
|
| 12 |
+
pkg context, type CancelFunc func()
|
| 13 |
+
pkg context, type Context interface { Deadline, Done, Err, Value }
|
| 14 |
+
pkg context, type Context interface, Deadline() (time.Time, bool)
|
| 15 |
+
pkg context, type Context interface, Done() <-chan struct
|
| 16 |
+
pkg context, type Context interface, Err() error
|
| 17 |
+
pkg context, type Context interface, Value(interface{}) interface{}
|
| 18 |
+
pkg context, var Canceled error
|
| 19 |
+
pkg context, var DeadlineExceeded error
|
| 20 |
+
pkg crypto/tls, const RenegotiateFreelyAsClient = 2
|
| 21 |
+
pkg crypto/tls, const RenegotiateFreelyAsClient RenegotiationSupport
|
| 22 |
+
pkg crypto/tls, const RenegotiateNever = 0
|
| 23 |
+
pkg crypto/tls, const RenegotiateNever RenegotiationSupport
|
| 24 |
+
pkg crypto/tls, const RenegotiateOnceAsClient = 1
|
| 25 |
+
pkg crypto/tls, const RenegotiateOnceAsClient RenegotiationSupport
|
| 26 |
+
pkg crypto/tls, type Config struct, DynamicRecordSizingDisabled bool
|
| 27 |
+
pkg crypto/tls, type Config struct, Renegotiation RenegotiationSupport
|
| 28 |
+
pkg crypto/tls, type RenegotiationSupport int
|
| 29 |
+
pkg crypto/x509, func SystemCertPool() (*CertPool, error)
|
| 30 |
+
pkg crypto/x509, type SystemRootsError struct, Err error
|
| 31 |
+
pkg debug/dwarf, method (*Data) Ranges(*Entry) ([][2]uint64, error)
|
| 32 |
+
pkg debug/dwarf, method (*Reader) SeekPC(uint64) (*Entry, error)
|
| 33 |
+
pkg debug/elf, const R_390_12 = 2
|
| 34 |
+
pkg debug/elf, const R_390_12 R_390
|
| 35 |
+
pkg debug/elf, const R_390_16 = 3
|
| 36 |
+
pkg debug/elf, const R_390_16 R_390
|
| 37 |
+
pkg debug/elf, const R_390_20 = 57
|
| 38 |
+
pkg debug/elf, const R_390_20 R_390
|
| 39 |
+
pkg debug/elf, const R_390_32 = 4
|
| 40 |
+
pkg debug/elf, const R_390_32 R_390
|
| 41 |
+
pkg debug/elf, const R_390_64 = 22
|
| 42 |
+
pkg debug/elf, const R_390_64 R_390
|
| 43 |
+
pkg debug/elf, const R_390_8 = 1
|
| 44 |
+
pkg debug/elf, const R_390_8 R_390
|
| 45 |
+
pkg debug/elf, const R_390_COPY = 9
|
| 46 |
+
pkg debug/elf, const R_390_COPY R_390
|
| 47 |
+
pkg debug/elf, const R_390_GLOB_DAT = 10
|
| 48 |
+
pkg debug/elf, const R_390_GLOB_DAT R_390
|
| 49 |
+
pkg debug/elf, const R_390_GOT12 = 6
|
| 50 |
+
pkg debug/elf, const R_390_GOT12 R_390
|
| 51 |
+
pkg debug/elf, const R_390_GOT16 = 15
|
| 52 |
+
pkg debug/elf, const R_390_GOT16 R_390
|
| 53 |
+
pkg debug/elf, const R_390_GOT20 = 58
|
| 54 |
+
pkg debug/elf, const R_390_GOT20 R_390
|
| 55 |
+
pkg debug/elf, const R_390_GOT32 = 7
|
| 56 |
+
pkg debug/elf, const R_390_GOT32 R_390
|
| 57 |
+
pkg debug/elf, const R_390_GOT64 = 24
|
| 58 |
+
pkg debug/elf, const R_390_GOT64 R_390
|
| 59 |
+
pkg debug/elf, const R_390_GOTENT = 26
|
| 60 |
+
pkg debug/elf, const R_390_GOTENT R_390
|
| 61 |
+
pkg debug/elf, const R_390_GOTOFF = 13
|
| 62 |
+
pkg debug/elf, const R_390_GOTOFF R_390
|
| 63 |
+
pkg debug/elf, const R_390_GOTOFF16 = 27
|
| 64 |
+
pkg debug/elf, const R_390_GOTOFF16 R_390
|
| 65 |
+
pkg debug/elf, const R_390_GOTOFF64 = 28
|
| 66 |
+
pkg debug/elf, const R_390_GOTOFF64 R_390
|
| 67 |
+
pkg debug/elf, const R_390_GOTPC = 14
|
| 68 |
+
pkg debug/elf, const R_390_GOTPC R_390
|
| 69 |
+
pkg debug/elf, const R_390_GOTPCDBL = 21
|
| 70 |
+
pkg debug/elf, const R_390_GOTPCDBL R_390
|
| 71 |
+
pkg debug/elf, const R_390_GOTPLT12 = 29
|
| 72 |
+
pkg debug/elf, const R_390_GOTPLT12 R_390
|
| 73 |
+
pkg debug/elf, const R_390_GOTPLT16 = 30
|
| 74 |
+
pkg debug/elf, const R_390_GOTPLT16 R_390
|
| 75 |
+
pkg debug/elf, const R_390_GOTPLT20 = 59
|
| 76 |
+
pkg debug/elf, const R_390_GOTPLT20 R_390
|
| 77 |
+
pkg debug/elf, const R_390_GOTPLT32 = 31
|
| 78 |
+
pkg debug/elf, const R_390_GOTPLT32 R_390
|
| 79 |
+
pkg debug/elf, const R_390_GOTPLT64 = 32
|
| 80 |
+
pkg debug/elf, const R_390_GOTPLT64 R_390
|
| 81 |
+
pkg debug/elf, const R_390_GOTPLTENT = 33
|
| 82 |
+
pkg debug/elf, const R_390_GOTPLTENT R_390
|
| 83 |
+
pkg debug/elf, const R_390_GOTPLTOFF16 = 34
|
| 84 |
+
pkg debug/elf, const R_390_GOTPLTOFF16 R_390
|
| 85 |
+
pkg debug/elf, const R_390_GOTPLTOFF32 = 35
|
| 86 |
+
pkg debug/elf, const R_390_GOTPLTOFF32 R_390
|
| 87 |
+
pkg debug/elf, const R_390_GOTPLTOFF64 = 36
|
| 88 |
+
pkg debug/elf, const R_390_GOTPLTOFF64 R_390
|
| 89 |
+
pkg debug/elf, const R_390_JMP_SLOT = 11
|
| 90 |
+
pkg debug/elf, const R_390_JMP_SLOT R_390
|
| 91 |
+
pkg debug/elf, const R_390_NONE = 0
|
| 92 |
+
pkg debug/elf, const R_390_NONE R_390
|
| 93 |
+
pkg debug/elf, const R_390_PC16 = 16
|
| 94 |
+
pkg debug/elf, const R_390_PC16 R_390
|
| 95 |
+
pkg debug/elf, const R_390_PC16DBL = 17
|
| 96 |
+
pkg debug/elf, const R_390_PC16DBL R_390
|
| 97 |
+
pkg debug/elf, const R_390_PC32 = 5
|
| 98 |
+
pkg debug/elf, const R_390_PC32 R_390
|
| 99 |
+
pkg debug/elf, const R_390_PC32DBL = 19
|
| 100 |
+
pkg debug/elf, const R_390_PC32DBL R_390
|
| 101 |
+
pkg debug/elf, const R_390_PC64 = 23
|
| 102 |
+
pkg debug/elf, const R_390_PC64 R_390
|
| 103 |
+
pkg debug/elf, const R_390_PLT16DBL = 18
|
| 104 |
+
pkg debug/elf, const R_390_PLT16DBL R_390
|
| 105 |
+
pkg debug/elf, const R_390_PLT32 = 8
|
| 106 |
+
pkg debug/elf, const R_390_PLT32 R_390
|
| 107 |
+
pkg debug/elf, const R_390_PLT32DBL = 20
|
| 108 |
+
pkg debug/elf, const R_390_PLT32DBL R_390
|
| 109 |
+
pkg debug/elf, const R_390_PLT64 = 25
|
| 110 |
+
pkg debug/elf, const R_390_PLT64 R_390
|
| 111 |
+
pkg debug/elf, const R_390_RELATIVE = 12
|
| 112 |
+
pkg debug/elf, const R_390_RELATIVE R_390
|
| 113 |
+
pkg debug/elf, const R_390_TLS_DTPMOD = 54
|
| 114 |
+
pkg debug/elf, const R_390_TLS_DTPMOD R_390
|
| 115 |
+
pkg debug/elf, const R_390_TLS_DTPOFF = 55
|
| 116 |
+
pkg debug/elf, const R_390_TLS_DTPOFF R_390
|
| 117 |
+
pkg debug/elf, const R_390_TLS_GD32 = 40
|
| 118 |
+
pkg debug/elf, const R_390_TLS_GD32 R_390
|
| 119 |
+
pkg debug/elf, const R_390_TLS_GD64 = 41
|
| 120 |
+
pkg debug/elf, const R_390_TLS_GD64 R_390
|
| 121 |
+
pkg debug/elf, const R_390_TLS_GDCALL = 38
|
| 122 |
+
pkg debug/elf, const R_390_TLS_GDCALL R_390
|
| 123 |
+
pkg debug/elf, const R_390_TLS_GOTIE12 = 42
|
| 124 |
+
pkg debug/elf, const R_390_TLS_GOTIE12 R_390
|
| 125 |
+
pkg debug/elf, const R_390_TLS_GOTIE20 = 60
|
| 126 |
+
pkg debug/elf, const R_390_TLS_GOTIE20 R_390
|
| 127 |
+
pkg debug/elf, const R_390_TLS_GOTIE32 = 43
|
| 128 |
+
pkg debug/elf, const R_390_TLS_GOTIE32 R_390
|
| 129 |
+
pkg debug/elf, const R_390_TLS_GOTIE64 = 44
|
| 130 |
+
pkg debug/elf, const R_390_TLS_GOTIE64 R_390
|
| 131 |
+
pkg debug/elf, const R_390_TLS_IE32 = 47
|
| 132 |
+
pkg debug/elf, const R_390_TLS_IE32 R_390
|
| 133 |
+
pkg debug/elf, const R_390_TLS_IE64 = 48
|
| 134 |
+
pkg debug/elf, const R_390_TLS_IE64 R_390
|
| 135 |
+
pkg debug/elf, const R_390_TLS_IEENT = 49
|
| 136 |
+
pkg debug/elf, const R_390_TLS_IEENT R_390
|
| 137 |
+
pkg debug/elf, const R_390_TLS_LDCALL = 39
|
| 138 |
+
pkg debug/elf, const R_390_TLS_LDCALL R_390
|
| 139 |
+
pkg debug/elf, const R_390_TLS_LDM32 = 45
|
| 140 |
+
pkg debug/elf, const R_390_TLS_LDM32 R_390
|
| 141 |
+
pkg debug/elf, const R_390_TLS_LDM64 = 46
|
| 142 |
+
pkg debug/elf, const R_390_TLS_LDM64 R_390
|
| 143 |
+
pkg debug/elf, const R_390_TLS_LDO32 = 52
|
| 144 |
+
pkg debug/elf, const R_390_TLS_LDO32 R_390
|
| 145 |
+
pkg debug/elf, const R_390_TLS_LDO64 = 53
|
| 146 |
+
pkg debug/elf, const R_390_TLS_LDO64 R_390
|
| 147 |
+
pkg debug/elf, const R_390_TLS_LE32 = 50
|
| 148 |
+
pkg debug/elf, const R_390_TLS_LE32 R_390
|
| 149 |
+
pkg debug/elf, const R_390_TLS_LE64 = 51
|
| 150 |
+
pkg debug/elf, const R_390_TLS_LE64 R_390
|
| 151 |
+
pkg debug/elf, const R_390_TLS_LOAD = 37
|
| 152 |
+
pkg debug/elf, const R_390_TLS_LOAD R_390
|
| 153 |
+
pkg debug/elf, const R_390_TLS_TPOFF = 56
|
| 154 |
+
pkg debug/elf, const R_390_TLS_TPOFF R_390
|
| 155 |
+
pkg debug/elf, method (R_390) GoString() string
|
| 156 |
+
pkg debug/elf, method (R_390) String() string
|
| 157 |
+
pkg debug/elf, type R_390 int
|
| 158 |
+
pkg encoding/json, method (*Encoder) SetEscapeHTML(bool)
|
| 159 |
+
pkg encoding/json, method (*Encoder) SetIndent(string, string)
|
| 160 |
+
pkg go/build, type Package struct, BinaryOnly bool
|
| 161 |
+
pkg go/build, type Package struct, CgoFFLAGS []string
|
| 162 |
+
pkg go/build, type Package struct, FFiles []string
|
| 163 |
+
pkg go/doc, type Example struct, Unordered bool
|
| 164 |
+
pkg io, const SeekCurrent = 1
|
| 165 |
+
pkg io, const SeekCurrent ideal-int
|
| 166 |
+
pkg io, const SeekEnd = 2
|
| 167 |
+
pkg io, const SeekEnd ideal-int
|
| 168 |
+
pkg io, const SeekStart = 0
|
| 169 |
+
pkg io, const SeekStart ideal-int
|
| 170 |
+
pkg math/big, method (*Float) GobDecode([]uint8) error
|
| 171 |
+
pkg math/big, method (*Float) GobEncode() ([]uint8, error)
|
| 172 |
+
pkg net, method (*Dialer) DialContext(context.Context, string, string) (Conn, error)
|
| 173 |
+
pkg net/http, const StatusAlreadyReported = 208
|
| 174 |
+
pkg net/http, const StatusAlreadyReported ideal-int
|
| 175 |
+
pkg net/http, const StatusFailedDependency = 424
|
| 176 |
+
pkg net/http, const StatusFailedDependency ideal-int
|
| 177 |
+
pkg net/http, const StatusIMUsed = 226
|
| 178 |
+
pkg net/http, const StatusIMUsed ideal-int
|
| 179 |
+
pkg net/http, const StatusInsufficientStorage = 507
|
| 180 |
+
pkg net/http, const StatusInsufficientStorage ideal-int
|
| 181 |
+
pkg net/http, const StatusLocked = 423
|
| 182 |
+
pkg net/http, const StatusLocked ideal-int
|
| 183 |
+
pkg net/http, const StatusLoopDetected = 508
|
| 184 |
+
pkg net/http, const StatusLoopDetected ideal-int
|
| 185 |
+
pkg net/http, const StatusMultiStatus = 207
|
| 186 |
+
pkg net/http, const StatusMultiStatus ideal-int
|
| 187 |
+
pkg net/http, const StatusNotExtended = 510
|
| 188 |
+
pkg net/http, const StatusNotExtended ideal-int
|
| 189 |
+
pkg net/http, const StatusPermanentRedirect = 308
|
| 190 |
+
pkg net/http, const StatusPermanentRedirect ideal-int
|
| 191 |
+
pkg net/http, const StatusProcessing = 102
|
| 192 |
+
pkg net/http, const StatusProcessing ideal-int
|
| 193 |
+
pkg net/http, const StatusUnprocessableEntity = 422
|
| 194 |
+
pkg net/http, const StatusUnprocessableEntity ideal-int
|
| 195 |
+
pkg net/http, const StatusUpgradeRequired = 426
|
| 196 |
+
pkg net/http, const StatusUpgradeRequired ideal-int
|
| 197 |
+
pkg net/http, const StatusVariantAlsoNegotiates = 506
|
| 198 |
+
pkg net/http, const StatusVariantAlsoNegotiates ideal-int
|
| 199 |
+
pkg net/http, method (*Request) Context() context.Context
|
| 200 |
+
pkg net/http, method (*Request) WithContext(context.Context) *Request
|
| 201 |
+
pkg net/http, type Request struct, Response *Response
|
| 202 |
+
pkg net/http, type Response struct, Uncompressed bool
|
| 203 |
+
pkg net/http, type Transport struct, DialContext func(context.Context, string, string) (net.Conn, error)
|
| 204 |
+
pkg net/http, type Transport struct, IdleConnTimeout time.Duration
|
| 205 |
+
pkg net/http, type Transport struct, MaxIdleConns int
|
| 206 |
+
pkg net/http, type Transport struct, MaxResponseHeaderBytes int64
|
| 207 |
+
pkg net/http, var ErrUseLastResponse error
|
| 208 |
+
pkg net/http, var LocalAddrContextKey *contextKey
|
| 209 |
+
pkg net/http, var ServerContextKey *contextKey
|
| 210 |
+
pkg net/http/cgi, type Handler struct, Stderr io.Writer
|
| 211 |
+
pkg net/http/httptest, func NewRequest(string, string, io.Reader) *http.Request
|
| 212 |
+
pkg net/http/httptest, method (*ResponseRecorder) Result() *http.Response
|
| 213 |
+
pkg net/http/httptrace, func ContextClientTrace(context.Context) *ClientTrace
|
| 214 |
+
pkg net/http/httptrace, func WithClientTrace(context.Context, *ClientTrace) context.Context
|
| 215 |
+
pkg net/http/httptrace, type ClientTrace struct
|
| 216 |
+
pkg net/http/httptrace, type ClientTrace struct, ConnectDone func(string, string, error)
|
| 217 |
+
pkg net/http/httptrace, type ClientTrace struct, ConnectStart func(string, string)
|
| 218 |
+
pkg net/http/httptrace, type ClientTrace struct, DNSDone func(DNSDoneInfo)
|
| 219 |
+
pkg net/http/httptrace, type ClientTrace struct, DNSStart func(DNSStartInfo)
|
| 220 |
+
pkg net/http/httptrace, type ClientTrace struct, GetConn func(string)
|
| 221 |
+
pkg net/http/httptrace, type ClientTrace struct, Got100Continue func()
|
| 222 |
+
pkg net/http/httptrace, type ClientTrace struct, GotConn func(GotConnInfo)
|
| 223 |
+
pkg net/http/httptrace, type ClientTrace struct, GotFirstResponseByte func()
|
| 224 |
+
pkg net/http/httptrace, type ClientTrace struct, PutIdleConn func(error)
|
| 225 |
+
pkg net/http/httptrace, type ClientTrace struct, Wait100Continue func()
|
| 226 |
+
pkg net/http/httptrace, type ClientTrace struct, WroteHeaders func()
|
| 227 |
+
pkg net/http/httptrace, type ClientTrace struct, WroteRequest func(WroteRequestInfo)
|
| 228 |
+
pkg net/http/httptrace, type DNSDoneInfo struct
|
| 229 |
+
pkg net/http/httptrace, type DNSDoneInfo struct, Addrs []net.IPAddr
|
| 230 |
+
pkg net/http/httptrace, type DNSDoneInfo struct, Coalesced bool
|
| 231 |
+
pkg net/http/httptrace, type DNSDoneInfo struct, Err error
|
| 232 |
+
pkg net/http/httptrace, type DNSStartInfo struct
|
| 233 |
+
pkg net/http/httptrace, type DNSStartInfo struct, Host string
|
| 234 |
+
pkg net/http/httptrace, type GotConnInfo struct
|
| 235 |
+
pkg net/http/httptrace, type GotConnInfo struct, Conn net.Conn
|
| 236 |
+
pkg net/http/httptrace, type GotConnInfo struct, IdleTime time.Duration
|
| 237 |
+
pkg net/http/httptrace, type GotConnInfo struct, Reused bool
|
| 238 |
+
pkg net/http/httptrace, type GotConnInfo struct, WasIdle bool
|
| 239 |
+
pkg net/http/httptrace, type WroteRequestInfo struct
|
| 240 |
+
pkg net/http/httptrace, type WroteRequestInfo struct, Err error
|
| 241 |
+
pkg net/url, type URL struct, ForceQuery bool
|
| 242 |
+
pkg os/exec, func CommandContext(context.Context, string, ...string) *Cmd
|
| 243 |
+
pkg os/user, func LookupGroup(string) (*Group, error)
|
| 244 |
+
pkg os/user, func LookupGroupId(string) (*Group, error)
|
| 245 |
+
pkg os/user, method (*User) GroupIds() ([]string, error)
|
| 246 |
+
pkg os/user, method (UnknownGroupError) Error() string
|
| 247 |
+
pkg os/user, method (UnknownGroupIdError) Error() string
|
| 248 |
+
pkg os/user, type Group struct
|
| 249 |
+
pkg os/user, type Group struct, Gid string
|
| 250 |
+
pkg os/user, type Group struct, Name string
|
| 251 |
+
pkg os/user, type UnknownGroupError string
|
| 252 |
+
pkg os/user, type UnknownGroupIdError string
|
| 253 |
+
pkg reflect, func StructOf([]StructField) Type
|
| 254 |
+
pkg reflect, method (StructTag) Lookup(string) (string, bool)
|
| 255 |
+
pkg runtime, func CallersFrames([]uintptr) *Frames
|
| 256 |
+
pkg runtime, func KeepAlive(interface{})
|
| 257 |
+
pkg runtime, func SetCgoTraceback(int, unsafe.Pointer, unsafe.Pointer, unsafe.Pointer)
|
| 258 |
+
pkg runtime, method (*Frames) Next() (Frame, bool)
|
| 259 |
+
pkg runtime, type Frame struct
|
| 260 |
+
pkg runtime, type Frame struct, Entry uintptr
|
| 261 |
+
pkg runtime, type Frame struct, File string
|
| 262 |
+
pkg runtime, type Frame struct, Func *Func
|
| 263 |
+
pkg runtime, type Frame struct, Function string
|
| 264 |
+
pkg runtime, type Frame struct, Line int
|
| 265 |
+
pkg runtime, type Frame struct, PC uintptr
|
| 266 |
+
pkg runtime, type Frames struct
|
| 267 |
+
pkg strings, method (*Reader) Reset(string)
|
| 268 |
+
pkg syscall (linux-386), type SysProcAttr struct, Unshareflags uintptr
|
| 269 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, Unshareflags uintptr
|
| 270 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, Unshareflags uintptr
|
| 271 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Unshareflags uintptr
|
| 272 |
+
pkg syscall (linux-arm), type SysProcAttr struct, Unshareflags uintptr
|
| 273 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, Unshareflags uintptr
|
| 274 |
+
pkg testing, method (*B) Run(string, func(*B)) bool
|
| 275 |
+
pkg testing, method (*T) Run(string, func(*T)) bool
|
| 276 |
+
pkg testing, type InternalExample struct, Unordered bool
|
| 277 |
+
pkg unicode, const Version = "9.0.0"
|
| 278 |
+
pkg unicode, var Adlam *RangeTable
|
| 279 |
+
pkg unicode, var Bhaiksuki *RangeTable
|
| 280 |
+
pkg unicode, var Marchen *RangeTable
|
| 281 |
+
pkg unicode, var Newa *RangeTable
|
| 282 |
+
pkg unicode, var Osage *RangeTable
|
| 283 |
+
pkg unicode, var Prepended_Concatenation_Mark *RangeTable
|
| 284 |
+
pkg unicode, var Sentence_Terminal *RangeTable
|
| 285 |
+
pkg unicode, var Tangut *RangeTable
|
api/go1.8.txt
ADDED
|
@@ -0,0 +1,261 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg compress/gzip, const HuffmanOnly = -2
|
| 2 |
+
pkg compress/gzip, const HuffmanOnly ideal-int
|
| 3 |
+
pkg compress/zlib, const HuffmanOnly = -2
|
| 4 |
+
pkg compress/zlib, const HuffmanOnly ideal-int
|
| 5 |
+
pkg crypto/tls, const ECDSAWithP256AndSHA256 = 1027
|
| 6 |
+
pkg crypto/tls, const ECDSAWithP256AndSHA256 SignatureScheme
|
| 7 |
+
pkg crypto/tls, const ECDSAWithP384AndSHA384 = 1283
|
| 8 |
+
pkg crypto/tls, const ECDSAWithP384AndSHA384 SignatureScheme
|
| 9 |
+
pkg crypto/tls, const ECDSAWithP521AndSHA512 = 1539
|
| 10 |
+
pkg crypto/tls, const ECDSAWithP521AndSHA512 SignatureScheme
|
| 11 |
+
pkg crypto/tls, const PKCS1WithSHA1 = 513
|
| 12 |
+
pkg crypto/tls, const PKCS1WithSHA1 SignatureScheme
|
| 13 |
+
pkg crypto/tls, const PKCS1WithSHA256 = 1025
|
| 14 |
+
pkg crypto/tls, const PKCS1WithSHA256 SignatureScheme
|
| 15 |
+
pkg crypto/tls, const PKCS1WithSHA384 = 1281
|
| 16 |
+
pkg crypto/tls, const PKCS1WithSHA384 SignatureScheme
|
| 17 |
+
pkg crypto/tls, const PKCS1WithSHA512 = 1537
|
| 18 |
+
pkg crypto/tls, const PKCS1WithSHA512 SignatureScheme
|
| 19 |
+
pkg crypto/tls, const PSSWithSHA256 = 2052
|
| 20 |
+
pkg crypto/tls, const PSSWithSHA256 SignatureScheme
|
| 21 |
+
pkg crypto/tls, const PSSWithSHA384 = 2053
|
| 22 |
+
pkg crypto/tls, const PSSWithSHA384 SignatureScheme
|
| 23 |
+
pkg crypto/tls, const PSSWithSHA512 = 2054
|
| 24 |
+
pkg crypto/tls, const PSSWithSHA512 SignatureScheme
|
| 25 |
+
pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 = 49187
|
| 26 |
+
pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 uint16
|
| 27 |
+
pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 = 52393
|
| 28 |
+
pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 uint16
|
| 29 |
+
pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 49191
|
| 30 |
+
pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 uint16
|
| 31 |
+
pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 = 52392
|
| 32 |
+
pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 uint16
|
| 33 |
+
pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA256 = 60
|
| 34 |
+
pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA256 uint16
|
| 35 |
+
pkg crypto/tls, const X25519 = 29
|
| 36 |
+
pkg crypto/tls, const X25519 CurveID
|
| 37 |
+
pkg crypto/tls, method (*Config) Clone() *Config
|
| 38 |
+
pkg crypto/tls, method (*Conn) CloseWrite() error
|
| 39 |
+
pkg crypto/tls, type CertificateRequestInfo struct
|
| 40 |
+
pkg crypto/tls, type CertificateRequestInfo struct, AcceptableCAs [][]uint8
|
| 41 |
+
pkg crypto/tls, type CertificateRequestInfo struct, SignatureSchemes []SignatureScheme
|
| 42 |
+
pkg crypto/tls, type ClientHelloInfo struct, Conn net.Conn
|
| 43 |
+
pkg crypto/tls, type ClientHelloInfo struct, SignatureSchemes []SignatureScheme
|
| 44 |
+
pkg crypto/tls, type ClientHelloInfo struct, SupportedProtos []string
|
| 45 |
+
pkg crypto/tls, type ClientHelloInfo struct, SupportedVersions []uint16
|
| 46 |
+
pkg crypto/tls, type Config struct, GetClientCertificate func(*CertificateRequestInfo) (*Certificate, error)
|
| 47 |
+
pkg crypto/tls, type Config struct, GetConfigForClient func(*ClientHelloInfo) (*Config, error)
|
| 48 |
+
pkg crypto/tls, type Config struct, KeyLogWriter io.Writer
|
| 49 |
+
pkg crypto/tls, type Config struct, VerifyPeerCertificate func([][]uint8, [][]*x509.Certificate) error
|
| 50 |
+
pkg crypto/tls, type SignatureScheme uint16
|
| 51 |
+
pkg crypto/x509, const NameMismatch = 5
|
| 52 |
+
pkg crypto/x509, const NameMismatch InvalidReason
|
| 53 |
+
pkg crypto/x509, const SHA256WithRSAPSS = 13
|
| 54 |
+
pkg crypto/x509, const SHA256WithRSAPSS SignatureAlgorithm
|
| 55 |
+
pkg crypto/x509, const SHA384WithRSAPSS = 14
|
| 56 |
+
pkg crypto/x509, const SHA384WithRSAPSS SignatureAlgorithm
|
| 57 |
+
pkg crypto/x509, const SHA512WithRSAPSS = 15
|
| 58 |
+
pkg crypto/x509, const SHA512WithRSAPSS SignatureAlgorithm
|
| 59 |
+
pkg crypto/x509, type UnknownAuthorityError struct, Cert *Certificate
|
| 60 |
+
pkg database/sql, const LevelDefault = 0
|
| 61 |
+
pkg database/sql, const LevelDefault IsolationLevel
|
| 62 |
+
pkg database/sql, const LevelLinearizable = 7
|
| 63 |
+
pkg database/sql, const LevelLinearizable IsolationLevel
|
| 64 |
+
pkg database/sql, const LevelReadCommitted = 2
|
| 65 |
+
pkg database/sql, const LevelReadCommitted IsolationLevel
|
| 66 |
+
pkg database/sql, const LevelReadUncommitted = 1
|
| 67 |
+
pkg database/sql, const LevelReadUncommitted IsolationLevel
|
| 68 |
+
pkg database/sql, const LevelRepeatableRead = 4
|
| 69 |
+
pkg database/sql, const LevelRepeatableRead IsolationLevel
|
| 70 |
+
pkg database/sql, const LevelSerializable = 6
|
| 71 |
+
pkg database/sql, const LevelSerializable IsolationLevel
|
| 72 |
+
pkg database/sql, const LevelSnapshot = 5
|
| 73 |
+
pkg database/sql, const LevelSnapshot IsolationLevel
|
| 74 |
+
pkg database/sql, const LevelWriteCommitted = 3
|
| 75 |
+
pkg database/sql, const LevelWriteCommitted IsolationLevel
|
| 76 |
+
pkg database/sql/driver, type ConnBeginTx interface { BeginTx }
|
| 77 |
+
pkg database/sql/driver, type ConnBeginTx interface, BeginTx(context.Context, TxOptions) (Tx, error)
|
| 78 |
+
pkg database/sql/driver, type ConnPrepareContext interface { PrepareContext }
|
| 79 |
+
pkg database/sql/driver, type ConnPrepareContext interface, PrepareContext(context.Context, string) (Stmt, error)
|
| 80 |
+
pkg database/sql/driver, type ExecerContext interface { ExecContext }
|
| 81 |
+
pkg database/sql/driver, type ExecerContext interface, ExecContext(context.Context, string, []NamedValue) (Result, error)
|
| 82 |
+
pkg database/sql/driver, type IsolationLevel int
|
| 83 |
+
pkg database/sql/driver, type NamedValue struct
|
| 84 |
+
pkg database/sql/driver, type NamedValue struct, Name string
|
| 85 |
+
pkg database/sql/driver, type NamedValue struct, Ordinal int
|
| 86 |
+
pkg database/sql/driver, type NamedValue struct, Value Value
|
| 87 |
+
pkg database/sql/driver, type Pinger interface { Ping }
|
| 88 |
+
pkg database/sql/driver, type Pinger interface, Ping(context.Context) error
|
| 89 |
+
pkg database/sql/driver, type QueryerContext interface { QueryContext }
|
| 90 |
+
pkg database/sql/driver, type QueryerContext interface, QueryContext(context.Context, string, []NamedValue) (Rows, error)
|
| 91 |
+
pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface { Close, ColumnTypeDatabaseTypeName, Columns, Next }
|
| 92 |
+
pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Close() error
|
| 93 |
+
pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Columns() []string
|
| 94 |
+
pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, ColumnTypeDatabaseTypeName(int) string
|
| 95 |
+
pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Next([]Value) error
|
| 96 |
+
pkg database/sql/driver, type RowsColumnTypeLength interface { Close, ColumnTypeLength, Columns, Next }
|
| 97 |
+
pkg database/sql/driver, type RowsColumnTypeLength interface, Close() error
|
| 98 |
+
pkg database/sql/driver, type RowsColumnTypeLength interface, Columns() []string
|
| 99 |
+
pkg database/sql/driver, type RowsColumnTypeLength interface, ColumnTypeLength(int) (int64, bool)
|
| 100 |
+
pkg database/sql/driver, type RowsColumnTypeLength interface, Next([]Value) error
|
| 101 |
+
pkg database/sql/driver, type RowsColumnTypeNullable interface { Close, ColumnTypeNullable, Columns, Next }
|
| 102 |
+
pkg database/sql/driver, type RowsColumnTypeNullable interface, Close() error
|
| 103 |
+
pkg database/sql/driver, type RowsColumnTypeNullable interface, Columns() []string
|
| 104 |
+
pkg database/sql/driver, type RowsColumnTypeNullable interface, ColumnTypeNullable(int) (bool, bool)
|
| 105 |
+
pkg database/sql/driver, type RowsColumnTypeNullable interface, Next([]Value) error
|
| 106 |
+
pkg database/sql/driver, type RowsColumnTypePrecisionScale interface { Close, ColumnTypePrecisionScale, Columns, Next }
|
| 107 |
+
pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Close() error
|
| 108 |
+
pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Columns() []string
|
| 109 |
+
pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, ColumnTypePrecisionScale(int) (int64, int64, bool)
|
| 110 |
+
pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Next([]Value) error
|
| 111 |
+
pkg database/sql/driver, type RowsColumnTypeScanType interface { Close, ColumnTypeScanType, Columns, Next }
|
| 112 |
+
pkg database/sql/driver, type RowsColumnTypeScanType interface, Close() error
|
| 113 |
+
pkg database/sql/driver, type RowsColumnTypeScanType interface, Columns() []string
|
| 114 |
+
pkg database/sql/driver, type RowsColumnTypeScanType interface, ColumnTypeScanType(int) reflect.Type
|
| 115 |
+
pkg database/sql/driver, type RowsColumnTypeScanType interface, Next([]Value) error
|
| 116 |
+
pkg database/sql/driver, type RowsNextResultSet interface { Close, Columns, HasNextResultSet, Next, NextResultSet }
|
| 117 |
+
pkg database/sql/driver, type RowsNextResultSet interface, Close() error
|
| 118 |
+
pkg database/sql/driver, type RowsNextResultSet interface, Columns() []string
|
| 119 |
+
pkg database/sql/driver, type RowsNextResultSet interface, HasNextResultSet() bool
|
| 120 |
+
pkg database/sql/driver, type RowsNextResultSet interface, NextResultSet() error
|
| 121 |
+
pkg database/sql/driver, type RowsNextResultSet interface, Next([]Value) error
|
| 122 |
+
pkg database/sql/driver, type StmtExecContext interface { ExecContext }
|
| 123 |
+
pkg database/sql/driver, type StmtExecContext interface, ExecContext(context.Context, []NamedValue) (Result, error)
|
| 124 |
+
pkg database/sql/driver, type StmtQueryContext interface { QueryContext }
|
| 125 |
+
pkg database/sql/driver, type StmtQueryContext interface, QueryContext(context.Context, []NamedValue) (Rows, error)
|
| 126 |
+
pkg database/sql/driver, type TxOptions struct
|
| 127 |
+
pkg database/sql/driver, type TxOptions struct, Isolation IsolationLevel
|
| 128 |
+
pkg database/sql/driver, type TxOptions struct, ReadOnly bool
|
| 129 |
+
pkg database/sql, func Named(string, interface{}) NamedArg
|
| 130 |
+
pkg database/sql, method (*ColumnType) DatabaseTypeName() string
|
| 131 |
+
pkg database/sql, method (*ColumnType) DecimalSize() (int64, int64, bool)
|
| 132 |
+
pkg database/sql, method (*ColumnType) Length() (int64, bool)
|
| 133 |
+
pkg database/sql, method (*ColumnType) Name() string
|
| 134 |
+
pkg database/sql, method (*ColumnType) Nullable() (bool, bool)
|
| 135 |
+
pkg database/sql, method (*ColumnType) ScanType() reflect.Type
|
| 136 |
+
pkg database/sql, method (*DB) BeginTx(context.Context, *TxOptions) (*Tx, error)
|
| 137 |
+
pkg database/sql, method (*DB) ExecContext(context.Context, string, ...interface{}) (Result, error)
|
| 138 |
+
pkg database/sql, method (*DB) PingContext(context.Context) error
|
| 139 |
+
pkg database/sql, method (*DB) PrepareContext(context.Context, string) (*Stmt, error)
|
| 140 |
+
pkg database/sql, method (*DB) QueryContext(context.Context, string, ...interface{}) (*Rows, error)
|
| 141 |
+
pkg database/sql, method (*DB) QueryRowContext(context.Context, string, ...interface{}) *Row
|
| 142 |
+
pkg database/sql, method (*Rows) ColumnTypes() ([]*ColumnType, error)
|
| 143 |
+
pkg database/sql, method (*Rows) NextResultSet() bool
|
| 144 |
+
pkg database/sql, method (*Stmt) ExecContext(context.Context, ...interface{}) (Result, error)
|
| 145 |
+
pkg database/sql, method (*Stmt) QueryContext(context.Context, ...interface{}) (*Rows, error)
|
| 146 |
+
pkg database/sql, method (*Stmt) QueryRowContext(context.Context, ...interface{}) *Row
|
| 147 |
+
pkg database/sql, method (*Tx) ExecContext(context.Context, string, ...interface{}) (Result, error)
|
| 148 |
+
pkg database/sql, method (*Tx) PrepareContext(context.Context, string) (*Stmt, error)
|
| 149 |
+
pkg database/sql, method (*Tx) QueryContext(context.Context, string, ...interface{}) (*Rows, error)
|
| 150 |
+
pkg database/sql, method (*Tx) QueryRowContext(context.Context, string, ...interface{}) *Row
|
| 151 |
+
pkg database/sql, method (*Tx) StmtContext(context.Context, *Stmt) *Stmt
|
| 152 |
+
pkg database/sql, type ColumnType struct
|
| 153 |
+
pkg database/sql, type IsolationLevel int
|
| 154 |
+
pkg database/sql, type NamedArg struct
|
| 155 |
+
pkg database/sql, type NamedArg struct, Name string
|
| 156 |
+
pkg database/sql, type NamedArg struct, Value interface{}
|
| 157 |
+
pkg database/sql, type TxOptions struct
|
| 158 |
+
pkg database/sql, type TxOptions struct, Isolation IsolationLevel
|
| 159 |
+
pkg database/sql, type TxOptions struct, ReadOnly bool
|
| 160 |
+
pkg debug/pe, method (*COFFSymbol) FullName(StringTable) (string, error)
|
| 161 |
+
pkg debug/pe, method (StringTable) String(uint32) (string, error)
|
| 162 |
+
pkg debug/pe, type File struct, COFFSymbols []COFFSymbol
|
| 163 |
+
pkg debug/pe, type File struct, StringTable StringTable
|
| 164 |
+
pkg debug/pe, type Reloc struct
|
| 165 |
+
pkg debug/pe, type Reloc struct, SymbolTableIndex uint32
|
| 166 |
+
pkg debug/pe, type Reloc struct, Type uint16
|
| 167 |
+
pkg debug/pe, type Reloc struct, VirtualAddress uint32
|
| 168 |
+
pkg debug/pe, type Section struct, Relocs []Reloc
|
| 169 |
+
pkg debug/pe, type StringTable []uint8
|
| 170 |
+
pkg encoding/base64, method (Encoding) Strict() *Encoding
|
| 171 |
+
pkg encoding/json, method (RawMessage) MarshalJSON() ([]uint8, error)
|
| 172 |
+
pkg encoding/json, type UnmarshalTypeError struct, Field string
|
| 173 |
+
pkg encoding/json, type UnmarshalTypeError struct, Struct string
|
| 174 |
+
pkg expvar, func Handler() http.Handler
|
| 175 |
+
pkg expvar, method (*Float) Value() float64
|
| 176 |
+
pkg expvar, method (Func) Value() interface{}
|
| 177 |
+
pkg expvar, method (*Int) Value() int64
|
| 178 |
+
pkg expvar, method (*String) Value() string
|
| 179 |
+
pkg go/doc, func IsPredeclared(string) bool
|
| 180 |
+
pkg go/types, func Default(Type) Type
|
| 181 |
+
pkg go/types, func IdenticalIgnoreTags(Type, Type) bool
|
| 182 |
+
pkg math/big, method (*Float) Scan(fmt.ScanState, int32) error
|
| 183 |
+
pkg math/big, method (*Int) Sqrt(*Int) *Int
|
| 184 |
+
pkg math/rand, func Uint64() uint64
|
| 185 |
+
pkg math/rand, method (*Rand) Uint64() uint64
|
| 186 |
+
pkg math/rand, type Source64 interface, Int63() int64
|
| 187 |
+
pkg math/rand, type Source64 interface { Int63, Seed, Uint64 }
|
| 188 |
+
pkg math/rand, type Source64 interface, Seed(int64)
|
| 189 |
+
pkg math/rand, type Source64 interface, Uint64() uint64
|
| 190 |
+
pkg net/http, const TrailerPrefix ideal-string
|
| 191 |
+
pkg net/http, const TrailerPrefix = "Trailer:"
|
| 192 |
+
pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeDone func(tls.ConnectionState, error)
|
| 193 |
+
pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeStart func()
|
| 194 |
+
pkg net/http/httputil, type ReverseProxy struct, ModifyResponse func(*http.Response) error
|
| 195 |
+
pkg net/http, method (*Server) Close() error
|
| 196 |
+
pkg net/http, method (*Server) Shutdown(context.Context) error
|
| 197 |
+
pkg net/http, type Pusher interface { Push }
|
| 198 |
+
pkg net/http, type Pusher interface, Push(string, *PushOptions) error
|
| 199 |
+
pkg net/http, type PushOptions struct
|
| 200 |
+
pkg net/http, type PushOptions struct, Header Header
|
| 201 |
+
pkg net/http, type PushOptions struct, Method string
|
| 202 |
+
pkg net/http, type Request struct, GetBody func() (io.ReadCloser, error)
|
| 203 |
+
pkg net/http, type Server struct, IdleTimeout time.Duration
|
| 204 |
+
pkg net/http, type Server struct, ReadHeaderTimeout time.Duration
|
| 205 |
+
pkg net/http, type Transport struct, ProxyConnectHeader Header
|
| 206 |
+
pkg net/http, var ErrAbortHandler error
|
| 207 |
+
pkg net/http, var ErrServerClosed error
|
| 208 |
+
pkg net/http, var NoBody noBody
|
| 209 |
+
pkg net/mail, func ParseDate(string) (time.Time, error)
|
| 210 |
+
pkg net, method (*Buffers) Read([]uint8) (int, error)
|
| 211 |
+
pkg net, method (*Buffers) WriteTo(io.Writer) (int64, error)
|
| 212 |
+
pkg net, method (*Resolver) LookupAddr(context.Context, string) ([]string, error)
|
| 213 |
+
pkg net, method (*Resolver) LookupCNAME(context.Context, string) (string, error)
|
| 214 |
+
pkg net, method (*Resolver) LookupHost(context.Context, string) ([]string, error)
|
| 215 |
+
pkg net, method (*Resolver) LookupIPAddr(context.Context, string) ([]IPAddr, error)
|
| 216 |
+
pkg net, method (*Resolver) LookupMX(context.Context, string) ([]*MX, error)
|
| 217 |
+
pkg net, method (*Resolver) LookupNS(context.Context, string) ([]*NS, error)
|
| 218 |
+
pkg net, method (*Resolver) LookupPort(context.Context, string, string) (int, error)
|
| 219 |
+
pkg net, method (*Resolver) LookupSRV(context.Context, string, string, string) (string, []*SRV, error)
|
| 220 |
+
pkg net, method (*Resolver) LookupTXT(context.Context, string) ([]string, error)
|
| 221 |
+
pkg net, method (*UnixListener) SetUnlinkOnClose(bool)
|
| 222 |
+
pkg net, type Buffers [][]uint8
|
| 223 |
+
pkg net, type Dialer struct, Resolver *Resolver
|
| 224 |
+
pkg net, type Resolver struct
|
| 225 |
+
pkg net, type Resolver struct, PreferGo bool
|
| 226 |
+
pkg net/url, func PathEscape(string) string
|
| 227 |
+
pkg net/url, func PathUnescape(string) (string, error)
|
| 228 |
+
pkg net/url, method (*URL) Hostname() string
|
| 229 |
+
pkg net/url, method (*URL) MarshalBinary() ([]uint8, error)
|
| 230 |
+
pkg net/url, method (*URL) Port() string
|
| 231 |
+
pkg net/url, method (*URL) UnmarshalBinary([]uint8) error
|
| 232 |
+
pkg net, var DefaultResolver *Resolver
|
| 233 |
+
pkg os, func Executable() (string, error)
|
| 234 |
+
pkg os, var ErrClosed error
|
| 235 |
+
pkg plugin, func Open(string) (*Plugin, error)
|
| 236 |
+
pkg plugin, method (*Plugin) Lookup(string) (Symbol, error)
|
| 237 |
+
pkg plugin, type Plugin struct
|
| 238 |
+
pkg plugin, type Symbol interface {}
|
| 239 |
+
pkg reflect, func Swapper(interface{}) func(int, int)
|
| 240 |
+
pkg runtime, func MutexProfile([]BlockProfileRecord) (int, bool)
|
| 241 |
+
pkg runtime, func SetMutexProfileFraction(int) int
|
| 242 |
+
pkg runtime, type MemStats struct, NumForcedGC uint32
|
| 243 |
+
pkg sort, func Slice(interface{}, func(int, int) bool)
|
| 244 |
+
pkg sort, func SliceIsSorted(interface{}, func(int, int) bool) bool
|
| 245 |
+
pkg sort, func SliceStable(interface{}, func(int, int) bool)
|
| 246 |
+
pkg syscall (linux-arm-cgo), func TimevalToNsec(Timeval) int64
|
| 247 |
+
pkg syscall (linux-arm), func TimevalToNsec(Timeval) int64
|
| 248 |
+
pkg syscall (openbsd-386), const SYS_KILL = 122
|
| 249 |
+
pkg syscall (openbsd-386-cgo), const SYS_KILL = 122
|
| 250 |
+
pkg syscall (openbsd-amd64), const SYS_KILL = 122
|
| 251 |
+
pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 122
|
| 252 |
+
pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY = 145
|
| 253 |
+
pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY Errno
|
| 254 |
+
pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY = 145
|
| 255 |
+
pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY Errno
|
| 256 |
+
pkg testing, func CoverMode() string
|
| 257 |
+
pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M
|
| 258 |
+
pkg testing, method (*B) Name() string
|
| 259 |
+
pkg testing, method (*T) Name() string
|
| 260 |
+
pkg testing, type TB interface, Name() string
|
| 261 |
+
pkg time, func Until(Time) Duration
|
api/go1.9.txt
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pkg crypto, const BLAKE2b_256 = 17
|
| 2 |
+
pkg crypto, const BLAKE2b_256 Hash
|
| 3 |
+
pkg crypto, const BLAKE2b_384 = 18
|
| 4 |
+
pkg crypto, const BLAKE2b_384 Hash
|
| 5 |
+
pkg crypto, const BLAKE2b_512 = 19
|
| 6 |
+
pkg crypto, const BLAKE2b_512 Hash
|
| 7 |
+
pkg crypto, const BLAKE2s_256 = 16
|
| 8 |
+
pkg crypto, const BLAKE2s_256 Hash
|
| 9 |
+
pkg crypto/x509, type Certificate struct, ExcludedDNSDomains []string
|
| 10 |
+
pkg database/sql, method (*Conn) BeginTx(context.Context, *TxOptions) (*Tx, error)
|
| 11 |
+
pkg database/sql, method (*Conn) Close() error
|
| 12 |
+
pkg database/sql, method (*Conn) ExecContext(context.Context, string, ...interface{}) (Result, error)
|
| 13 |
+
pkg database/sql, method (*Conn) PingContext(context.Context) error
|
| 14 |
+
pkg database/sql, method (*Conn) PrepareContext(context.Context, string) (*Stmt, error)
|
| 15 |
+
pkg database/sql, method (*Conn) QueryContext(context.Context, string, ...interface{}) (*Rows, error)
|
| 16 |
+
pkg database/sql, method (*Conn) QueryRowContext(context.Context, string, ...interface{}) *Row
|
| 17 |
+
pkg database/sql, method (*DB) Conn(context.Context) (*Conn, error)
|
| 18 |
+
pkg database/sql, type Conn struct
|
| 19 |
+
pkg database/sql, type Out struct
|
| 20 |
+
pkg database/sql, type Out struct, Dest interface{}
|
| 21 |
+
pkg database/sql, type Out struct, In bool
|
| 22 |
+
pkg database/sql, var ErrConnDone error
|
| 23 |
+
pkg database/sql/driver, type NamedValueChecker interface { CheckNamedValue }
|
| 24 |
+
pkg database/sql/driver, type NamedValueChecker interface, CheckNamedValue(*NamedValue) error
|
| 25 |
+
pkg database/sql/driver, var ErrRemoveArgument error
|
| 26 |
+
pkg encoding/asn1, const TagNull = 5
|
| 27 |
+
pkg encoding/asn1, const TagNull ideal-int
|
| 28 |
+
pkg encoding/asn1, var NullBytes []uint8
|
| 29 |
+
pkg encoding/asn1, var NullRawValue RawValue
|
| 30 |
+
pkg encoding/base32, const NoPadding = -1
|
| 31 |
+
pkg encoding/base32, const NoPadding int32
|
| 32 |
+
pkg encoding/base32, const StdPadding = 61
|
| 33 |
+
pkg encoding/base32, const StdPadding int32
|
| 34 |
+
pkg encoding/base32, method (Encoding) WithPadding(int32) *Encoding
|
| 35 |
+
pkg encoding/csv, type Reader struct, ReuseRecord bool
|
| 36 |
+
pkg encoding/json, func Valid([]uint8) bool
|
| 37 |
+
pkg go/ast, type TypeSpec struct, Assign token.Pos
|
| 38 |
+
pkg go/types, func SizesFor(string, string) Sizes
|
| 39 |
+
pkg go/types, method (*TypeName) IsAlias() bool
|
| 40 |
+
pkg hash/fnv, func New128() hash.Hash
|
| 41 |
+
pkg hash/fnv, func New128a() hash.Hash
|
| 42 |
+
pkg html/template, const ErrPredefinedEscaper = 11
|
| 43 |
+
pkg html/template, const ErrPredefinedEscaper ErrorCode
|
| 44 |
+
pkg image/png, type Encoder struct, BufferPool EncoderBufferPool
|
| 45 |
+
pkg image/png, type EncoderBuffer struct
|
| 46 |
+
pkg image/png, type EncoderBufferPool interface { Get, Put }
|
| 47 |
+
pkg image/png, type EncoderBufferPool interface, Get() *EncoderBuffer
|
| 48 |
+
pkg image/png, type EncoderBufferPool interface, Put(*EncoderBuffer)
|
| 49 |
+
pkg math/big, method (*Int) IsInt64() bool
|
| 50 |
+
pkg math/big, method (*Int) IsUint64() bool
|
| 51 |
+
pkg math/big, type Word uint
|
| 52 |
+
pkg math/bits (darwin-amd64), const UintSize = 64
|
| 53 |
+
pkg math/bits (darwin-amd64-cgo), const UintSize = 64
|
| 54 |
+
pkg math/bits (freebsd-386), const UintSize = 32
|
| 55 |
+
pkg math/bits (freebsd-386-cgo), const UintSize = 32
|
| 56 |
+
pkg math/bits (freebsd-amd64), const UintSize = 64
|
| 57 |
+
pkg math/bits (freebsd-amd64-cgo), const UintSize = 64
|
| 58 |
+
pkg math/bits (freebsd-arm), const UintSize = 32
|
| 59 |
+
pkg math/bits (freebsd-arm-cgo), const UintSize = 32
|
| 60 |
+
pkg math/bits (linux-386), const UintSize = 32
|
| 61 |
+
pkg math/bits (linux-386-cgo), const UintSize = 32
|
| 62 |
+
pkg math/bits (linux-amd64), const UintSize = 64
|
| 63 |
+
pkg math/bits (linux-amd64-cgo), const UintSize = 64
|
| 64 |
+
pkg math/bits (linux-arm), const UintSize = 32
|
| 65 |
+
pkg math/bits (linux-arm-cgo), const UintSize = 32
|
| 66 |
+
pkg math/bits (netbsd-386), const UintSize = 32
|
| 67 |
+
pkg math/bits (netbsd-386-cgo), const UintSize = 32
|
| 68 |
+
pkg math/bits (netbsd-amd64), const UintSize = 64
|
| 69 |
+
pkg math/bits (netbsd-amd64-cgo), const UintSize = 64
|
| 70 |
+
pkg math/bits (netbsd-arm), const UintSize = 32
|
| 71 |
+
pkg math/bits (netbsd-arm-cgo), const UintSize = 32
|
| 72 |
+
pkg math/bits (netbsd-arm64), const UintSize = 64
|
| 73 |
+
pkg math/bits (netbsd-arm64-cgo), const UintSize = 64
|
| 74 |
+
pkg math/bits (openbsd-386), const UintSize = 32
|
| 75 |
+
pkg math/bits (openbsd-386-cgo), const UintSize = 32
|
| 76 |
+
pkg math/bits (openbsd-amd64), const UintSize = 64
|
| 77 |
+
pkg math/bits (openbsd-amd64-cgo), const UintSize = 64
|
| 78 |
+
pkg math/bits (windows-386), const UintSize = 32
|
| 79 |
+
pkg math/bits (windows-amd64), const UintSize = 64
|
| 80 |
+
pkg math/bits, const UintSize ideal-int
|
| 81 |
+
pkg math/bits, func LeadingZeros(uint) int
|
| 82 |
+
pkg math/bits, func LeadingZeros16(uint16) int
|
| 83 |
+
pkg math/bits, func LeadingZeros32(uint32) int
|
| 84 |
+
pkg math/bits, func LeadingZeros64(uint64) int
|
| 85 |
+
pkg math/bits, func LeadingZeros8(uint8) int
|
| 86 |
+
pkg math/bits, func Len(uint) int
|
| 87 |
+
pkg math/bits, func Len16(uint16) int
|
| 88 |
+
pkg math/bits, func Len32(uint32) int
|
| 89 |
+
pkg math/bits, func Len64(uint64) int
|
| 90 |
+
pkg math/bits, func Len8(uint8) int
|
| 91 |
+
pkg math/bits, func OnesCount(uint) int
|
| 92 |
+
pkg math/bits, func OnesCount16(uint16) int
|
| 93 |
+
pkg math/bits, func OnesCount32(uint32) int
|
| 94 |
+
pkg math/bits, func OnesCount64(uint64) int
|
| 95 |
+
pkg math/bits, func OnesCount8(uint8) int
|
| 96 |
+
pkg math/bits, func Reverse(uint) uint
|
| 97 |
+
pkg math/bits, func Reverse16(uint16) uint16
|
| 98 |
+
pkg math/bits, func Reverse32(uint32) uint32
|
| 99 |
+
pkg math/bits, func Reverse64(uint64) uint64
|
| 100 |
+
pkg math/bits, func Reverse8(uint8) uint8
|
| 101 |
+
pkg math/bits, func ReverseBytes(uint) uint
|
| 102 |
+
pkg math/bits, func ReverseBytes16(uint16) uint16
|
| 103 |
+
pkg math/bits, func ReverseBytes32(uint32) uint32
|
| 104 |
+
pkg math/bits, func ReverseBytes64(uint64) uint64
|
| 105 |
+
pkg math/bits, func RotateLeft(uint, int) uint
|
| 106 |
+
pkg math/bits, func RotateLeft16(uint16, int) uint16
|
| 107 |
+
pkg math/bits, func RotateLeft32(uint32, int) uint32
|
| 108 |
+
pkg math/bits, func RotateLeft64(uint64, int) uint64
|
| 109 |
+
pkg math/bits, func RotateLeft8(uint8, int) uint8
|
| 110 |
+
pkg math/bits, func TrailingZeros(uint) int
|
| 111 |
+
pkg math/bits, func TrailingZeros16(uint16) int
|
| 112 |
+
pkg math/bits, func TrailingZeros32(uint32) int
|
| 113 |
+
pkg math/bits, func TrailingZeros64(uint64) int
|
| 114 |
+
pkg math/bits, func TrailingZeros8(uint8) int
|
| 115 |
+
pkg mime, var ErrInvalidMediaParameter error
|
| 116 |
+
pkg mime/multipart, type FileHeader struct, Size int64
|
| 117 |
+
pkg mime/multipart, var ErrMessageTooLarge error
|
| 118 |
+
pkg net, method (*IPConn) SyscallConn() (syscall.RawConn, error)
|
| 119 |
+
pkg net, method (*TCPConn) SyscallConn() (syscall.RawConn, error)
|
| 120 |
+
pkg net, method (*UDPConn) SyscallConn() (syscall.RawConn, error)
|
| 121 |
+
pkg net, method (*UnixConn) SyscallConn() (syscall.RawConn, error)
|
| 122 |
+
pkg net, type Resolver struct, Dial func(context.Context, string, string) (Conn, error)
|
| 123 |
+
pkg net, type Resolver struct, StrictErrors bool
|
| 124 |
+
pkg net/http, func ServeTLS(net.Listener, Handler, string, string) error
|
| 125 |
+
pkg net/http, method (*Server) RegisterOnShutdown(func())
|
| 126 |
+
pkg net/http, method (*Server) ServeTLS(net.Listener, string, string) error
|
| 127 |
+
pkg net/http/fcgi, func ProcessEnv(*http.Request) map[string]string
|
| 128 |
+
pkg net/http/httptest, method (*Server) Certificate() *x509.Certificate
|
| 129 |
+
pkg net/http/httptest, method (*Server) Client() *http.Client
|
| 130 |
+
pkg reflect, func MakeMapWithSize(Type, int) Value
|
| 131 |
+
pkg runtime/pprof, func Do(context.Context, LabelSet, func(context.Context))
|
| 132 |
+
pkg runtime/pprof, func ForLabels(context.Context, func(string, string) bool)
|
| 133 |
+
pkg runtime/pprof, func Label(context.Context, string) (string, bool)
|
| 134 |
+
pkg runtime/pprof, func Labels(...string) LabelSet
|
| 135 |
+
pkg runtime/pprof, func SetGoroutineLabels(context.Context)
|
| 136 |
+
pkg runtime/pprof, func WithLabels(context.Context, LabelSet) context.Context
|
| 137 |
+
pkg runtime/pprof, type LabelSet struct
|
| 138 |
+
pkg sync, method (*Map) Delete(interface{})
|
| 139 |
+
pkg sync, method (*Map) Load(interface{}) (interface{}, bool)
|
| 140 |
+
pkg sync, method (*Map) LoadOrStore(interface{}, interface{}) (interface{}, bool)
|
| 141 |
+
pkg sync, method (*Map) Range(func(interface{}, interface{}) bool)
|
| 142 |
+
pkg sync, method (*Map) Store(interface{}, interface{})
|
| 143 |
+
pkg sync, type Map struct
|
| 144 |
+
pkg syscall (darwin-386-cgo), type Credential struct, NoSetGroups bool
|
| 145 |
+
pkg syscall (darwin-386), type Credential struct, NoSetGroups bool
|
| 146 |
+
pkg syscall (darwin-amd64-cgo), type Credential struct, NoSetGroups bool
|
| 147 |
+
pkg syscall (darwin-amd64), type Credential struct, NoSetGroups bool
|
| 148 |
+
pkg syscall (freebsd-386-cgo), func Pipe2([]int, int) error
|
| 149 |
+
pkg syscall (freebsd-386-cgo), type Credential struct, NoSetGroups bool
|
| 150 |
+
pkg syscall (freebsd-386), func Pipe2([]int, int) error
|
| 151 |
+
pkg syscall (freebsd-386), type Credential struct, NoSetGroups bool
|
| 152 |
+
pkg syscall (freebsd-amd64-cgo), func Pipe2([]int, int) error
|
| 153 |
+
pkg syscall (freebsd-amd64-cgo), type Credential struct, NoSetGroups bool
|
| 154 |
+
pkg syscall (freebsd-amd64), func Pipe2([]int, int) error
|
| 155 |
+
pkg syscall (freebsd-amd64), type Credential struct, NoSetGroups bool
|
| 156 |
+
pkg syscall (freebsd-arm-cgo), func Pipe2([]int, int) error
|
| 157 |
+
pkg syscall (freebsd-arm-cgo), type Credential struct, NoSetGroups bool
|
| 158 |
+
pkg syscall (freebsd-arm), func Pipe2([]int, int) error
|
| 159 |
+
pkg syscall (freebsd-arm), type Credential struct, NoSetGroups bool
|
| 160 |
+
pkg syscall (linux-386-cgo), type Credential struct, NoSetGroups bool
|
| 161 |
+
pkg syscall (linux-386-cgo), type SysProcAttr struct, AmbientCaps []uintptr
|
| 162 |
+
pkg syscall (linux-386), type Credential struct, NoSetGroups bool
|
| 163 |
+
pkg syscall (linux-386), type SysProcAttr struct, AmbientCaps []uintptr
|
| 164 |
+
pkg syscall (linux-amd64-cgo), type Credential struct, NoSetGroups bool
|
| 165 |
+
pkg syscall (linux-amd64-cgo), type SysProcAttr struct, AmbientCaps []uintptr
|
| 166 |
+
pkg syscall (linux-amd64), type Credential struct, NoSetGroups bool
|
| 167 |
+
pkg syscall (linux-amd64), type SysProcAttr struct, AmbientCaps []uintptr
|
| 168 |
+
pkg syscall (linux-arm-cgo), type Credential struct, NoSetGroups bool
|
| 169 |
+
pkg syscall (linux-arm-cgo), type SysProcAttr struct, AmbientCaps []uintptr
|
| 170 |
+
pkg syscall (linux-arm), type Credential struct, NoSetGroups bool
|
| 171 |
+
pkg syscall (linux-arm), type SysProcAttr struct, AmbientCaps []uintptr
|
| 172 |
+
pkg syscall (netbsd-386-cgo), type Credential struct, NoSetGroups bool
|
| 173 |
+
pkg syscall (netbsd-386), type Credential struct, NoSetGroups bool
|
| 174 |
+
pkg syscall (netbsd-amd64-cgo), type Credential struct, NoSetGroups bool
|
| 175 |
+
pkg syscall (netbsd-amd64), type Credential struct, NoSetGroups bool
|
| 176 |
+
pkg syscall (netbsd-arm-cgo), type Credential struct, NoSetGroups bool
|
| 177 |
+
pkg syscall (netbsd-arm), type Credential struct, NoSetGroups bool
|
| 178 |
+
pkg syscall (openbsd-386-cgo), type Credential struct, NoSetGroups bool
|
| 179 |
+
pkg syscall (openbsd-386), type Credential struct, NoSetGroups bool
|
| 180 |
+
pkg syscall (openbsd-amd64-cgo), type Credential struct, NoSetGroups bool
|
| 181 |
+
pkg syscall (openbsd-amd64), type Credential struct, NoSetGroups bool
|
| 182 |
+
pkg syscall (windows-386), const WSAECONNABORTED = 10053
|
| 183 |
+
pkg syscall (windows-386), const WSAECONNABORTED Errno
|
| 184 |
+
pkg syscall (windows-amd64), const WSAECONNABORTED = 10053
|
| 185 |
+
pkg syscall (windows-amd64), const WSAECONNABORTED Errno
|
| 186 |
+
pkg syscall, type Conn interface { SyscallConn }
|
| 187 |
+
pkg syscall, type Conn interface, SyscallConn() (RawConn, error)
|
| 188 |
+
pkg syscall, type RawConn interface { Control, Read, Write }
|
| 189 |
+
pkg syscall, type RawConn interface, Control(func(uintptr)) error
|
| 190 |
+
pkg syscall, type RawConn interface, Read(func(uintptr) bool) error
|
| 191 |
+
pkg syscall, type RawConn interface, Write(func(uintptr) bool) error
|
| 192 |
+
pkg testing, method (*B) Helper()
|
| 193 |
+
pkg testing, method (*T) Helper()
|
| 194 |
+
pkg testing, type TB interface, Helper()
|
| 195 |
+
pkg time, method (Duration) Round(Duration) Duration
|
| 196 |
+
pkg time, method (Duration) Truncate(Duration) Duration
|
api/go1.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
codereview.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
branch: master
|
doc/README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Release Notes
|
| 2 |
+
|
| 3 |
+
The `initial` and `next` subdirectories of this directory are for release notes.
|
| 4 |
+
|
| 5 |
+
## For developers
|
| 6 |
+
|
| 7 |
+
Release notes should be added to `next` by editing existing files or creating
|
| 8 |
+
new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
|
| 9 |
+
the CL (or ask the author to do so).
|
| 10 |
+
|
| 11 |
+
At the end of the development cycle, the files will be merged by being
|
| 12 |
+
concatenated in sorted order by pathname. Files in the directory matching the
|
| 13 |
+
glob "*stdlib/*minor" are treated specially. They should be in subdirectories
|
| 14 |
+
corresponding to standard library package paths, and headings for those package
|
| 15 |
+
paths will be generated automatically.
|
| 16 |
+
|
| 17 |
+
Files in this repo's `api/next` directory must have corresponding files in
|
| 18 |
+
`doc/next/*stdlib/*minor`.
|
| 19 |
+
The files should be in the subdirectory for the package with the new
|
| 20 |
+
API, and should be named after the issue number of the API proposal.
|
| 21 |
+
For example, if the directory `6-stdlib/99-minor` is present,
|
| 22 |
+
then an `api/next` file with the line
|
| 23 |
+
|
| 24 |
+
pkg net/http, function F #12345
|
| 25 |
+
|
| 26 |
+
should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
|
| 27 |
+
At a minimum, that file should contain either a full sentence or a TODO,
|
| 28 |
+
ideally referring to a person with the responsibility to complete the note.
|
| 29 |
+
|
| 30 |
+
If your CL addresses an accepted proposal, mention the proposal issue number in
|
| 31 |
+
your release note in the form `/issue/NUMBER`. A link to the issue in the text
|
| 32 |
+
will have this form (see below). If you don't want to mention the issue in the
|
| 33 |
+
text, add it as a comment:
|
| 34 |
+
```
|
| 35 |
+
<!-- go.dev/issue/12345 -->
|
| 36 |
+
```
|
| 37 |
+
If an accepted proposal is mentioned in a CL but not in the release notes, it will be
|
| 38 |
+
flagged as a TODO by the automated tooling. That is true even for proposals that add API.
|
| 39 |
+
|
| 40 |
+
Use the following forms in your markdown:
|
| 41 |
+
|
| 42 |
+
[http.Request] # symbol documentation; auto-linked as in Go doc strings
|
| 43 |
+
[Request] # short form, for symbols in the package being documented
|
| 44 |
+
[net/http] # package link
|
| 45 |
+
[#12345](/issue/12345) # GitHub issues
|
| 46 |
+
[CL 6789](/cl/6789) # Gerrit changelists
|
| 47 |
+
|
| 48 |
+
To preview `next` content in merged form using a local instance of the website, run:
|
| 49 |
+
|
| 50 |
+
```
|
| 51 |
+
go run golang.org/x/website/cmd/golangorg@latest -goroot=..
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits.
|
| 55 |
+
|
| 56 |
+
## For the release team
|
| 57 |
+
|
| 58 |
+
The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
|
| 59 |
+
in `doc/next`.
|
| 60 |
+
|
| 61 |
+
As a release cycle nears completion, run `relnote todo` to get a list of
|
| 62 |
+
unfinished release note work.
|
| 63 |
+
|
| 64 |
+
To prepare the release notes for a release, run `relnote generate`.
|
| 65 |
+
That will merge the `.md` files in `next` into a single file.
|
| 66 |
+
Atomically (as close to it as possible) add that file to `_content/doc` directory
|
| 67 |
+
of the website repository and remove the `doc/next` directory in this repository.
|
| 68 |
+
|
| 69 |
+
To begin the next release development cycle, populate the contents of `next`
|
| 70 |
+
with those of `initial`. From the repo root:
|
| 71 |
+
|
| 72 |
+
> cd doc
|
| 73 |
+
> cp -R initial/ next
|
| 74 |
+
|
| 75 |
+
Then edit `next/1-intro.md` to refer to the next version.
|