1
0
mirror of https://github.com/golang/go synced 2024-11-23 21:40:05 -07:00
go/src
Russ Cox b4a472b1c3 syscall: fix vet complaints for all dragonfly, freebsd, netbsd, openbsd
Working toward making the tree vet-safe instead of having
so many exceptions in cmd/vet/all/whitelist.

This CL makes "go vet -unsafeptr=false runtime" happy for these GOOSes,
while keeping "GO_BUILDER_NAME=misc-vetall go tool dist test" happy too.

For #31916.

Change-Id: Id2e1223497bd0cd6e880cd81f3ece6363e58219f
Reviewed-on: https://go-review.googlesource.com/c/go/+/176104
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
2019-05-09 21:13:25 +00:00
..
archive
bufio
builtin
bytes strings, bytes: add ToValidUTF8 2019-05-01 18:31:47 +00:00
cmd syscall: fix vet complaints for all dragonfly, freebsd, netbsd, openbsd 2019-05-09 21:13:25 +00:00
compress
container
context all: add Unwrap and Is methods to various error types 2019-05-04 16:14:12 +00:00
crypto doc: fixed some links 2019-05-08 16:38:55 +00:00
database/sql all: simplify code using "gofmt -s -w" 2019-05-06 22:19:22 +00:00
debug all: simplify code using "gofmt -s -w" 2019-05-06 22:19:22 +00:00
encoding encoding/gob: rename encBuffer.WriteByte to writeByte 2019-05-09 18:02:19 +00:00
errors errors: fix Is panics if target is uncomparable 2019-05-06 17:02:59 +00:00
expvar
flag
fmt fmt: rename buffer.WriteByte to writeByte 2019-05-09 17:49:12 +00:00
go go/types: add CheckExpr function to type-check an expression 2019-05-08 18:24:30 +00:00
hash
html html/template: add support for JavaScript modules 2019-05-06 17:06:16 +00:00
image image/png: fix palette extension to handle 255 color images 2019-05-08 01:49:03 +00:00
index/suffixarray index/suffixarray: add 32-bit implementation 2019-05-01 15:19:07 +00:00
internal cmd/go: set the "generate" build tag in go generate, per design doc 2019-05-08 23:13:44 +00:00
io
log
math math/big: stack allocate scaleDenom return value 2019-05-08 17:11:57 +00:00
mime
net net/url: add tests for URLHostname 2019-05-06 23:07:15 +00:00
os all: add Unwrap and Is methods to various error types 2019-05-04 16:14:12 +00:00
path
plugin
reflect reflect: add a test for Calling a Method of a direct interface type 2019-05-08 13:56:52 +00:00
regexp regexp: clarify docs re Submatch result 2019-05-08 17:03:20 +00:00
runtime runtime: fix vet complaints for solaris/amd64, illumos/amd64 2019-05-09 21:13:23 +00:00
sort sort: simplify bootstrap 2019-05-02 20:30:31 +00:00
strconv
strings strings, bytes: add ToValidUTF8 2019-05-01 18:31:47 +00:00
sync
syscall syscall: fix vet complaints for all dragonfly, freebsd, netbsd, openbsd 2019-05-09 21:13:25 +00:00
testdata
testing
text all: add Unwrap and Is methods to various error types 2019-05-04 16:14:12 +00:00
time os,time: fix tests on iOS 2019-05-01 13:53:44 +00:00
unicode
unsafe
vendor cmd/go: diagnose go.mod and vendor out of sync in std and cmd 2019-05-09 00:01:25 +00:00
all.bash
all.bat
all.rc
bootstrap.bash
buildall.bash
clean.bash
clean.bat
clean.rc
cmp.bash
go.mod cmd/go: diagnose go.mod and vendor out of sync in std and cmd 2019-05-09 00:01:25 +00:00
go.sum cmd/go: diagnose go.mod and vendor out of sync in std and cmd 2019-05-09 00:01:25 +00:00
iostest.bash
make.bash
make.bat
Make.dist
make.rc
naclmake.bash
nacltest.bash
race.bash
race.bat
README.vendor all: document vendoring in the standard library 2019-05-09 17:11:16 +00:00
run.bash cmd/dist: allow builders to control granularity of test/ directory sharding 2019-05-06 23:02:29 +00:00
run.bat
run.rc

Vendoring in std and cmd
========================

The Go command maintains copies of external packages needed by the
standard library in the src/vendor and src/cmd/vendor directories.

In GOPATH mode, imports of vendored packages are resolved to these
directories following normal vendor directory logic
(see golang.org/s/go15vendor).

In module mode, std and cmd are modules (defined in src/go.mod and
src/cmd/go.mod). When a package outside std or cmd is imported
by a package inside std or cmd, the import path is interpreted
as if it had a "vendor/" prefix. For example, within "crypto/tls",
an import of "golang.org/x/crypto/cryptobyte" resolves to
"vendor/golang.org/x/crypto/cryptobyte". When a package with the
same path is imported from a package outside std or cmd, it will
be resolved normally. Consequently, a binary may be built with two
copies of a package at different versions if the package is
imported normally and vendored by the standard library.

Vendored packages are internally renamed with a "vendor/" prefix
to preserve the invariant that all packages have distinct paths.
This is necessary to avoid compiler and linker conflicts. Adding
a "vendor/" prefix also maintains the invariant that standard
library packages begin with a dotless path element.

The module requirements of std and cmd do not influence version
selection in other modules. They are only considered when running
module commands like 'go get' and 'go mod vendor' from a directory
in GOROOT/src.

Maintaining vendor directories
==============================

Before updating vendor directories, ensure that module mode is enabled.
Make sure GO111MODULE=off is not set ('on' or 'auto' should work).

Requirements may be added, updated, and removed with 'go get'.
The vendor directory may be updated with 'go mod vendor'.
A typical sequence might be:

    cd src
    go get -m golang.org/x/net@latest
    go mod tidy
    go mod vendor

Use caution when passing '-u' to 'go get'. The '-u' flag updates
modules providing all transitively imported packages, not just
the target module.

Note that 'go mod vendor' only copies packages that are transitively
imported by packages in the current module. If a new package is needed,
it should be imported before running 'go mod vendor'.