mirror of
https://github.com/golang/go
synced 2024-11-11 23:40:22 -07:00
0cf1e16bac
The new SetEnv method for *testing.T and *testing.B types was automatically supported by *testing.F since it was added to the *testing.common type. This function is not appropriate for *testing.F since fuzzing is run in parallel by default. Conflicts: - api/next.txt Merge List: + 2021-06-27c95464f0ea
internal/buildcfg: refactor GOEXPERIMENT parsing code somewhat + 2021-06-25ed01ceaf48
runtime/race: use race build tag on syso_test.go + 2021-06-25d1916e5e84
go/types: in TestCheck/issues.src, import regexp/syntax instead of cmd/compile/internal/syntax + 2021-06-255160896c69
go/types: in TestStdlib, import from source instead of export data + 2021-06-25d01bc571f7
runtime: make ncgocall a global counter + 2021-06-2537f9a8f69d
go/types: fix a bug in package qualification logic + 2021-06-24c309c89db5
reflect: document that InterfaceData is a low-entropy RNG + 2021-06-24cce621431a
cmd/compile: fix wrong type in SSA generation for OSLICE2ARRPTR + 2021-06-24600a2a4ffb
cmd/go: don't try to add replaced versions that won't be selected + 2021-06-24a9bb38222a
net: remove hard-coded timeout in dialClosedPort test helper + 2021-06-2486d72fa2cb
time: handle invalid UTF-8 byte sequences in quote to prevent panic + 2021-06-2444a12e5f33
cmd/go: search breadth-first instead of depth-first for test dependency cycles + 2021-06-2473496e0df0
net: use absDomainName in the Windows lookupPTR test helper + 2021-06-24222ed1b38a
os: enable TestFifoEOF on openbsd + 2021-06-220ebd5a8de0
cmd/go: update ToolTags based on GOARCH value + 2021-06-225bd09e5efc
spec: unsafe.Add/Slice are not permitted in statement context + 2021-06-22666315b4d3
runtime/internal/atomic: remove incorrect pointer indirection in comment + 2021-06-2263daa774b5
go/types: guard against checking instantiation when generics is disabled + 2021-06-22197a5ee2ab
cmd/gofmt: remove stale documentation for the -G flag + 2021-06-229afd158eb2
go/parser: parse an ast.IndexExpr for a[] + 2021-06-211bd5a20e3c
cmd/go: add a -go flag to 'go mod graph' + 2021-06-21761edf71f6
cmd/internal/moddeps: use a temporary directory for GOMODCACHE if needed + 2021-06-21a0400420ad
cmd/internal/moddeps: use -mod=readonly instead of -mod=mod + 2021-06-213f9ec83b10
cmd/go: document GOPPC64 environment variable + 2021-06-2120bdfba325
go/scanner: fall back to next() when encountering 0 bytes in parseIdentifier + 2021-06-2144f9a3566c
database/sql: fix deadlock test in prepare statement + 2021-06-2116e82be454
runtime: fix crash during VDSO calls on PowerPC + 2021-06-212e542c3c06
runtime/pprof: deflake TestMorestack more + 2021-06-21ced0fdbad0
doc/go1.17: note deprecation of 'go get' for installing commands + 2021-06-217a5e7047a4
doc/go1.17: add Go 1.18 pre-announcements + 2021-06-2185a2e24afd
doc/go1.17: add security-related release notes + 2021-06-211de332996c
doc/go1.17: document go/parser.SkipObjectResolution + 2021-06-21117ebe0f52
cmd/go: do not require the module cache to exist for 'go mod edit' + 2021-06-20460900a7b5
os/signal: test with a significantly longer fatal timeout + 2021-06-19b73cc4b02b
database/sql: do not rely on timeout for deadlock test + 2021-06-1886743e7d86
image: add RGBA64Image interface + 2021-06-189401172166
runtime: clarify Frames.Next documentation + 2021-06-1857aaa19aae
runtime: disable CPU profiling before removing the SIGPROF handler + 2021-06-186f22d2c682
doc/go1.17: fix typo + 2021-06-1745f251ad6c
cmd/pprof,runtime/pprof: disable test on more broken platforms + 2021-06-17ed834853ad
cmd/go: replace a TODO with an explanatory comment + 2021-06-174dede02550
cmd/pprof: make ObjAddr a no-op + 2021-06-1797cee43c93
testing: drop unusual characters from TempDir directory name + 2021-06-17b0355a3e72
time: fix receiver for Time.IsDST method + 2021-06-17881b6ea7ba
doc/go1.17: fix redundant space + 2021-06-160e67ce3d28
cmd/go: in lazy modules, add transitive imports for 'go get' arguments + 2021-06-166ea2af0890
cmd/go: add a regression test for #45979 + 2021-06-16a294e4e798
math/rand: mention half-open intervals explicitly + 2021-06-16a6a853f94c
cmd/asm: restore supporting of *1 scaling on ARM64 + 2021-06-16785a8f677f
cmd/compile: better error message for invalid untyped operation + 2021-06-16a752bc0746
syscall: fix TestGroupCleanupUserNamespace test failure on Fedora + 2021-06-15d77f4c0c5c
net/http: improve some server docs + 2021-06-15219fe9d547
cmd/go: ignore UTF8 BOM when reading source code + 2021-06-15723f199edd
cmd/link: set correct flags in .dynamic for PIE buildmode + 2021-06-154d2d89ff42
cmd/go, go/build: update docs to use //go:build syntax + 2021-06-15033d885315
doc/go1.17: document go run pkg@version + 2021-06-15ea8612ef42
syscall: disable c-shared test when no cgo, for windows/arm + 2021-06-15abc56fd1a0
internal/bytealg: remove duplicate go:build line + 2021-06-154061d3463b
syscall: rewrite handle inheritance test to use C rather than Powershell + 2021-06-15cf4e3e3d3b
reflect: explain why convertible or comparable types may still panic + 2021-06-147841cb14d9
doc/go1.17: assorted fixes + 2021-06-148a5a6f46dc
debug/elf: don't apply DWARF relocations for ET_EXEC binaries + 2021-06-149d13f8d43e
runtime: update the variable name in comment + 2021-06-140fd20ed5b6
reflect: use same conversion panic in reflect and runtime + 2021-06-146bbb0a9d4a
cmd/internal/sys: mark windows/arm64 as c-shared-capable + 2021-06-14d4f34f8c63
doc/go1.17: reword "results" in stack trace printing + 2021-06-14fdab5be159
doc/go1.17: further revise OpenBSD release notes + 2021-06-14326ea438bb
cmd/compile: rewrite a, b = f() to use temporaries when type not identical + 2021-06-143249b645c9
cmd/compile: factor out rewrite multi-valued f() + 2021-06-1314305bf0b9
misc/cgo: generate Windows import libraries for clang + 2021-06-1324cff0f044
cmd/go, misc/cgo: skip test if no .edata + 2021-06-1367b1b6a2e3
cmd/compile: allow ir.OSLICE2ARRPTR in mayCall + 2021-06-121ed0d129e9
runtime: testprogcgo: don't call exported Go functions directly from Go + 2021-06-129d46ee5ac4
reflect: handle stack-to-register translation in callMethod + 2021-06-11e552a6d312
cmd/go: remove hint when no module is suggested + 2021-06-1116b5d766d8
syscall: do not load native libraries on non-native powershell on arm + 2021-06-1177aa209b38
runtime: loop on EINTR in macOS sigNoteSleep + 2021-06-11e2dc6dd5c9
doc/go1.17: clean up formatting of gofmt section + 2021-06-112f1128461d
cmd/go: match Windows paths in TestScript/mod_invalid_version + 2021-06-112721da2608
doc/go1.17: fix formatting near httptest + 2021-06-10770f1de8c5
net/http: remove test-only private key from production binaries + 2021-06-108d11b1d117
cmd/go: report the imports of CompiledGoFiles in ImportMap + 2021-06-10dc00dc6c6b
crypto/tls: let HTTP/1.1 clients connect to servers with NextProtos "h2" + 2021-06-0927f83723e9
api: promote next to go1.17 + 2021-06-09182157c81a
doc/go1.17: remove lingering TODO + 2021-06-09a5bc060b42
doc/go1.17: document strconv changes for Go 1.17 + 2021-06-091402b27d46
strconv: document parsing of leading +/- + 2021-06-09df35ade067
doc/go1.17: document //go:build lines + 2021-06-09e4e7807d24
net/http: add AllowQuerySemicolons + 2021-06-09ec3026d032
doc/go1.17: remove TODO for ports section + 2021-06-09e6dda19888
net/url: reject query values with semicolons + 2021-06-09139e935d3c
math/big: comment division + 2021-06-09aa5540cd82
cmd/compile: make map.zero symbol content-addressable + 2021-06-0907ca28d529
cmd/link: fix bug in -strictdups checking of BSS symbols + 2021-06-08bcecae2af6
doc/go1.17: mention new possibility of type conversion panicking + 2021-06-0863dcab2e91
doc/go1.17: mention new vet checks sigchanyzer and stdmethods. + 2021-06-086551763a60
doc/go1.17: mention block profile bias fix + 2021-06-08cb80937bf6
Revert "doc/go1.17: mention block profile bias fix" + 2021-06-08d3e3d03666
net: reject leading zeros in IP address parsers + 2021-06-08da4a640141
doc/go1.17: revise OpenBSD release notes + 2021-06-08689f4c7415
doc/go1.17: mention block profile bias fix + 2021-06-089afe071c60
doc/go1.17: remove TODO for Tools section + 2021-06-08f753d7223e
doc/go1.17: resolve TODO for cmd/cover + 2021-06-089498b0155d
cmd/go: in Go 1.17+ modules, add indirect go.mod dependencies separately from direct ones + 2021-06-08949f00cebe
doc/go1.17: add release notes for crypto packages + 2021-06-080fb3e2c184
doc/go1.17: add a release note for the '-compat' flag to 'go mod tidy' + 2021-06-082169deb352
cmd/compile: use t.AllMethods when sorting typesByString + 2021-06-08c20bcb6488
runtime: remove out-of-date comments about frame skipping + 2021-06-0739c39ae52f
doc: document Go 1.17 language changes + 2021-06-07dc8b558951
cmd/dist: pass -Wno-lto-type-mismatch in swig_callback_lto + 2021-06-07909dd5e010
strconv: ParseFloat: always return ErrSyntax for bad syntax + 2021-06-078212707871
crypto/elliptic: update P-521 docs to say it's constant-time + 2021-06-077406180012
fmt: split package documentation into more sections + 2021-06-07e3176bbc3e
crypto/tls: fix typo in Config.NextProtos docs + 2021-06-05e1fa26026d
spec: improve wording consistency by eliminating "specifier" + 2021-06-05f490134126
spec: improve wording by choosing an official term "keyword" + 2021-06-05e3cb381704
go/internal/gcimporter: don't waste CPU copying bytes in `io.ReadAll` + 2021-06-059d669ed47a
misc/cgo/errors: use expected column numbers + 2021-06-0495939e8de7
cmd/compile/internal/abi: fix typo in comment + 2021-06-04831f9376d8
net/http: fix ResponseWriter.ReadFrom with short reads + 2021-06-043a9d906edc
os: avoid finalizer race in windows process object + 2021-06-04105c5b50e0
os: terminate windows processes via handle directly + 2021-06-0479cd407f88
syscall: regenerate zsyscall_windows.go + 2021-06-04c6b6211229
doc/go1.17: document testing changes for Go 1.17 + 2021-06-040214440075
syscall: do not pass console handles to PROC_THREAD_ATTRIBUTE_HANDLE_LIST on Windows 7 + 2021-06-04962d5c997a
cmd/compile,go/types: restrict use of unsafe.{Add,Slice} to go1.17 or newer + 2021-06-04b29b123e07
cmd/compile: remove spurious ir.Dump + 2021-06-036d98301114
cmd/link: use correct alignment in PE DWARF sections + 2021-06-03e0d029f758
runtime: avoid gp.lockedm race in exitsyscall0 Change-Id: I00216c3c36e64814c44c79f25d1f38e4df6c1f24
134 lines
7.4 KiB
Plaintext
134 lines
7.4 KiB
Plaintext
pkg compress/lzw, method (*Reader) Close() error
|
|
pkg compress/lzw, method (*Reader) Read([]uint8) (int, error)
|
|
pkg compress/lzw, method (*Reader) Reset(io.Reader, Order, int)
|
|
pkg compress/lzw, method (*Writer) Close() error
|
|
pkg compress/lzw, method (*Writer) Reset(io.Writer, Order, int)
|
|
pkg compress/lzw, method (*Writer) Write([]uint8) (int, error)
|
|
pkg compress/lzw, type Reader struct
|
|
pkg compress/lzw, type Writer struct
|
|
pkg crypto/tls, method (*CertificateRequestInfo) Context() context.Context
|
|
pkg crypto/tls, method (*ClientHelloInfo) Context() context.Context
|
|
pkg crypto/tls, method (*Conn) HandshakeContext(context.Context) error
|
|
pkg debug/elf, const SHT_MIPS_ABIFLAGS = 1879048234
|
|
pkg debug/elf, const SHT_MIPS_ABIFLAGS SectionType
|
|
pkg encoding/csv, method (*Reader) FieldPos(int) (int, int)
|
|
pkg go/ast, method (*FuncDecl) IsMethod() bool
|
|
pkg go/build, type Context struct, ToolTags []string
|
|
pkg go/parser, const SkipObjectResolution = 64
|
|
pkg go/parser, const SkipObjectResolution Mode
|
|
pkg go/types, type Config struct, GoVersion string
|
|
pkg io/fs, func FileInfoToDirEntry(FileInfo) DirEntry
|
|
pkg net, method (*ParseError) Temporary() bool
|
|
pkg net, method (*ParseError) Timeout() bool
|
|
pkg net, method (IP) IsPrivate() bool
|
|
pkg reflect, func VisibleFields(Type) []StructField
|
|
pkg reflect, method (Method) IsExported() bool
|
|
pkg reflect, method (StructField) IsExported() bool
|
|
pkg runtime/cgo (darwin-amd64-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (darwin-amd64-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (darwin-amd64-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (darwin-amd64-cgo), type Handle uintptr
|
|
pkg runtime/cgo (freebsd-386-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (freebsd-386-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (freebsd-386-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (freebsd-386-cgo), type Handle uintptr
|
|
pkg runtime/cgo (freebsd-amd64-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (freebsd-amd64-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (freebsd-amd64-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (freebsd-amd64-cgo), type Handle uintptr
|
|
pkg runtime/cgo (freebsd-arm-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (freebsd-arm-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (freebsd-arm-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (freebsd-arm-cgo), type Handle uintptr
|
|
pkg runtime/cgo (linux-386-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (linux-386-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (linux-386-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (linux-386-cgo), type Handle uintptr
|
|
pkg runtime/cgo (linux-amd64-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (linux-amd64-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (linux-amd64-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (linux-amd64-cgo), type Handle uintptr
|
|
pkg runtime/cgo (linux-arm-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (linux-arm-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (linux-arm-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (linux-arm-cgo), type Handle uintptr
|
|
pkg runtime/cgo (netbsd-386-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (netbsd-386-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (netbsd-386-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (netbsd-386-cgo), type Handle uintptr
|
|
pkg runtime/cgo (netbsd-amd64-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (netbsd-amd64-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (netbsd-amd64-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (netbsd-amd64-cgo), type Handle uintptr
|
|
pkg runtime/cgo (netbsd-arm-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (netbsd-arm-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (netbsd-arm-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (netbsd-arm-cgo), type Handle uintptr
|
|
pkg runtime/cgo (netbsd-arm64-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (netbsd-arm64-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (netbsd-arm64-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (netbsd-arm64-cgo), type Handle uintptr
|
|
pkg runtime/cgo (openbsd-386-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (openbsd-386-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (openbsd-386-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (openbsd-386-cgo), type Handle uintptr
|
|
pkg runtime/cgo (openbsd-amd64-cgo), func NewHandle(interface{}) Handle
|
|
pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Delete()
|
|
pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Value() interface{}
|
|
pkg runtime/cgo (openbsd-amd64-cgo), type Handle uintptr
|
|
pkg syscall (openbsd-386), const MSG_CMSG_CLOEXEC = 2048
|
|
pkg syscall (openbsd-386), const MSG_CMSG_CLOEXEC ideal-int
|
|
pkg syscall (openbsd-386-cgo), const MSG_CMSG_CLOEXEC = 2048
|
|
pkg syscall (openbsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int
|
|
pkg syscall (openbsd-amd64), const MSG_CMSG_CLOEXEC = 2048
|
|
pkg syscall (openbsd-amd64), const MSG_CMSG_CLOEXEC ideal-int
|
|
pkg syscall (openbsd-amd64-cgo), const MSG_CMSG_CLOEXEC = 2048
|
|
pkg syscall (openbsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int
|
|
pkg syscall (windows-386), type SysProcAttr struct, AdditionalInheritedHandles []Handle
|
|
pkg syscall (windows-386), type SysProcAttr struct, ParentProcess Handle
|
|
pkg syscall (windows-amd64), type SysProcAttr struct, AdditionalInheritedHandles []Handle
|
|
pkg syscall (windows-amd64), type SysProcAttr struct, ParentProcess Handle
|
|
pkg testing, func Fuzz(func(*F)) FuzzResult
|
|
pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalFuzzTarget, []InternalExample) *M
|
|
pkg testing, func RunFuzzTargets(func(string, string) (bool, error), []InternalFuzzTarget) bool
|
|
pkg testing, func RunFuzzing(func(string, string) (bool, error), []InternalFuzzTarget) bool
|
|
pkg testing, method (*B) Setenv(string, string)
|
|
pkg testing, method (*F) Add(...interface{})
|
|
pkg testing, method (*F) Cleanup(func())
|
|
pkg testing, method (*F) Error(...interface{})
|
|
pkg testing, method (*F) Errorf(string, ...interface{})
|
|
pkg testing, method (*F) Fail()
|
|
pkg testing, method (*F) FailNow()
|
|
pkg testing, method (*F) Failed() bool
|
|
pkg testing, method (*F) Fatal(...interface{})
|
|
pkg testing, method (*F) Fatalf(string, ...interface{})
|
|
pkg testing, method (*F) Fuzz(interface{})
|
|
pkg testing, method (*F) Helper()
|
|
pkg testing, method (*F) Log(...interface{})
|
|
pkg testing, method (*F) Logf(string, ...interface{})
|
|
pkg testing, method (*F) Name() string
|
|
pkg testing, method (*F) Setenv(string, string)
|
|
pkg testing, method (*F) Skip(...interface{})
|
|
pkg testing, method (*F) SkipNow()
|
|
pkg testing, method (*F) Skipf(string, ...interface{})
|
|
pkg testing, method (*F) Skipped() bool
|
|
pkg testing, method (*F) TempDir() string
|
|
pkg testing, method (*T) Setenv(string, string)
|
|
pkg testing, method (FuzzResult) String() string
|
|
pkg testing, type F struct
|
|
pkg testing, type FuzzResult struct
|
|
pkg testing, type FuzzResult struct, Crasher entry
|
|
pkg testing, type FuzzResult struct, Error error
|
|
pkg testing, type FuzzResult struct, N int
|
|
pkg testing, type FuzzResult struct, T time.Duration
|
|
pkg testing, type InternalFuzzTarget struct
|
|
pkg testing, type InternalFuzzTarget struct, Fn func(*F)
|
|
pkg testing, type InternalFuzzTarget struct, Name string
|
|
pkg text/template/parse, const SkipFuncCheck = 2
|
|
pkg text/template/parse, const SkipFuncCheck Mode
|
|
pkg time, func UnixMicro(int64) Time
|
|
pkg time, func UnixMilli(int64) Time
|
|
pkg time, method (*Time) IsDST() bool
|
|
pkg time, method (Time) UnixMicro() int64
|
|
pkg time, method (Time) UnixMilli() int64
|