Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/hack-pad/go

The Go programming language
https://github.com/hack-pad/go

cmd/go/internal/modload: ignore disallowed errors when checking for updates

addUpdate calls Query with the query "upgrade". Normally, this returns
the highest release versi...

27794c4d4a18c61d8c158d253421d72b5a6a8673 authored over 2 years ago by Jay Conrod <[email protected]>
internal/pkgbits: change EnableSync into a dynamic knob

Rather than requiring users to recompile the compiler and all tools to
enable/disable sync marke...

9371a6558412f621b5fbb54c42b43b93f8080e68 authored over 2 years ago by Matthew Dempsky <[email protected]>
compress/gzip: fix stack exhaustion bug in Reader.Read

Replace recursion with iteration in Reader.Read to avoid stack
exhaustion when there are a large...

b2b8872c876201eac2d0707276c6999ff3eb185e authored over 2 years ago by Tatiana Bradley <[email protected]>
path/filepath: fix stack exhaustion in Glob

A limit is added to the number of path separators allowed by an input to
Glob, to prevent stack ...

ac68c6c683409f98250d34ad282b9e1b0c9095ef authored over 2 years ago by Julie Qiu <[email protected]>
io/fs: fix stack exhaustion in Glob

A limit is added to the number of path separators allowed by an input to
Glob, to prevent stack ...

fa2d41d0ca736f3ad6b200b2a4e134364e9acc59 authored over 2 years ago by Julie Qiu <[email protected]>
encoding/gob: add a depth limit for ignored fields

Enforce a nesting limit of 10,000 for ignored fields during decoding
of messages. This prevents ...

6fa37e98ea4382bf881428ee0c150ce591500eb7 authored over 2 years ago by Roland Shoemaker <[email protected]>
go/parser: limit recursion depth

Limit nested parsing to 100,000, which prevents stack exhaustion when
parsing deeply nested stat...

695be961d57508da5a82217f7415200a11845879 authored over 2 years ago by Roland Shoemaker <[email protected]>
encoding/xml: use iterative Skip, rather than recursive

Prevents exhausting the stack limit in _incredibly_ deeply nested
structures.

Fixes #53614
Fixe...

08c46ed43d80bbb67cb904944ea3417989be4af3 authored over 2 years ago by Roland Shoemaker <[email protected]>
encoding/xml: limit depth of nesting in unmarshal

Prevent exhausting the stack limit when unmarshalling extremely deeply
nested structures into ne...

c4c1993fd2a5b26fe45c09592af6d3388a3b2e08 authored over 2 years ago by Roland Shoemaker <[email protected]>
cmd/go: avoid spurious readdir during fsys.Walk

fsys.Walk is cloned from filepath.Walk, which has always handled
a walk of a directory by readin...

913d05133c7fb3adfd2b1a34a47d635d8e072fa2 authored over 2 years ago by Russ Cox <[email protected]>
net/http: clarify that MaxBytesReader returns *MaxBytesError

A MaxBytesReader returns a *MaxBytesError when reading beyond
its limit, not a MaxBytesError.

F...

d3d7998756c33f69706488cade1cd2b9b10a4c7f authored over 2 years ago by Damien Neil <[email protected]>
syscall: gofmt after CL 412114

Change-Id: Ie51545eaebd22a31379bf8814a2c62b91d1d105b
Reviewed-on: https://go-review.googlesource...

126c22a09824a7b52c019ed9a1d198b4e7781676 authored over 2 years ago by Tobias Klauser <[email protected]>
internal/trace: don't report regions on system goroutines

If a goroutine is started within a user region, internal/trace assigns
the child goroutine a nam...

123a6328b7bd31ed6725d9412913fed6a4436aad authored over 2 years ago by Michael Pratt <[email protected]>
runtime/race: update amd64 syso images to avoid sse4

Rebuild selected amd64 syso images with updated LLVM build rules that
avoid the use of SSE4, so ...

846490110ab1117b5f7366e3a531d24d88800074 authored over 2 years ago by Than McIntosh <[email protected]>
cmd/trace: fix typo in web documentation

Change-Id: I950224c3f698fbdf2bcab6f847f4afddaa6e9c2d
Reviewed-on: https://go-review.googlesource...

b75ad09cae8918343000e304c66c5df27101829b authored over 2 years ago by Tobias Klauser <[email protected]>
cmd/go: make module index loading O(1)

For a large module, opening the index was populating tables with
entries for every package in th...

7510e597def68cee77e8ba280fc0f04d3cfd2a22 authored over 2 years ago by Russ Cox <[email protected]>
cmd/nm: don't rely on an erroneous install target in tests

Non-main packages in module mode should not be installed to
GOPATH/pkg, but due to #37015 they w...

b8bf820d5d4602f7e83ff89c0f8d0f2bd3a220d4 authored over 2 years ago by Bryan C. Mills <[email protected]>
misc/cgo/testcarchive: don't rely on an erroneous install target in tests

Non-main packages in module mode should not be installed to
GOPATH/pkg, but due to #37015 they w...

ad641e8521381886bc6274d78e986f2bb8ac561b authored over 2 years ago by Bryan C. Mills <[email protected]>
net/url: use EscapedPath for url.JoinPath

Fixes #53763

Change-Id: I08b53f159ebdce7907e8cc17316fd0c982363239
Reviewed-on: https://go-revie...

bf5898ef53d1693aa572da0da746c05e9a6f15c5 authored over 2 years ago by Sean Liao <[email protected]>
database/sql: make TestTxContextWaitNoDiscard test more robust

Similar to CL 385934, rely on waiter trigger instead of the WAIT query
prefix and factor out the...

398dcd1cf00a1536dad98cf87c16f8ad0c8913fc authored over 2 years ago by Dmitri Goutnik <[email protected]>
cmd/go: use package index for std in load.loadPackageData

load.loadPackageData was only using an index for modules,
not for standard library packages. Oth...

f956941b0f5a5a841827bd3e84401d32916bb73e authored over 2 years ago by Russ Cox <[email protected]>
net/http: remove Content-Encoding in writeNotModified

Additional header to remove if set before calling http.ServeContent.

The API of ServeContent is...

59ab6f351a370a27458755dc69f4a837e55a05a6 authored over 2 years ago by Mitar <[email protected]>
cmd/compile: fix libfuzzer instrumentation line number

Set a reasonable starting line number before processing the body of
the function in the order pa...

c1a4e0fe014568501b194eb8b04309f54eee6b4c authored over 2 years ago by Keith Randall <[email protected]>
cmd/go: avoid setting variables for '/' and ':' in TestScript subprocess environments

Also simplify platform-dependent handling of the PATH variable,
to make it more like the existin...

5c1a13e7a47bc47c07057c0acf626e3fafe064c9 authored over 2 years ago by Bryan C. Mills <[email protected]>
net/http: wait for listeners to exit in Server.Close and Shutdown

Avoid race conditions when a new connection is accepted just after
Server.Close or Server.Shutdo...

180bcad33dcd3d59443fe8eda5ae7556b1b2945b authored over 2 years ago by Damien Neil <[email protected]>
cmd/compile: don't convert to interface{} for un-comparable types in generic switch

Fixes #53635

Change-Id: I41f383be8870432fc0d29fa83687911ddd8217f1
Reviewed-on: https://go-revie...

14abe8aa7324bdf0e09e1dfebfb3519cc30f4918 authored over 2 years ago by Cuong Manh Le <[email protected]>
runtime: overestimate the amount of allocated memory in heapLive

CL 377516 made it so that memory metrics are truly monotonic, but also
updated how heapLive trac...

1ebc983000ed411a1c06f6b8a61770be1392e707 authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
crypto/x509: restrict CRL number to <=20 octets

Similar to certificate serial numbers, RFC 5280 restricts the length of
the CRL number field to ...

c177d9d98a7bfb21346f6309c115d0a2bf3167e3 authored over 2 years ago by Roland Shoemaker <[email protected]>
crypto/x509: correctly parse CRL entry extensions

When checking to see if a CRL entry has any extensions, attempt to read
them from the individual...

486fc0177068277a51235c7794660b238e70d622 authored over 2 years ago by Aaron Gable <[email protected]>
crypto/x509: populate Number and AKI of parsed CRLs

The x509.RevocationList type has two fields which correspond to
extensions, rather than native f...

8ac58de1857637f372a00ea16ab5497193b784a6 authored over 2 years ago by Aaron Gable <[email protected]>
cmd/link: explicitly disable PIE for windows/amd64 -race mode

Turn off PIE explicitly for windows/amd64 when -race is in effect,
since at the moment the race ...

0c7fcf6bd1fd8df2bfae3a482f1261886f6313c1 authored over 2 years ago by Than McIntosh <[email protected]>
cmd/go: default to "exe" build mode for windows -race

This patch changes the default build mode from "pie" to "exe" when
building programs on windows ...

eaf21256545ae04a35fa070763faa6eb2098591d authored over 2 years ago by Than McIntosh <[email protected]>
cmd/compile: only check implicit dots for method call enabled by a type bound

Fixes #53419

Change-Id: Ibad64f5c4af2112deeb0a9ecc9c589b17594bd05
Reviewed-on: https://go-revie...

1243ec9c177007879958443262fe4d25099c5ede authored over 2 years ago by Cuong Manh Le <[email protected]>
cmd/go: set up git identity for build_buildvcs_auto.txt

Just like in other tests like get_dotfiles.txt or
version_buildvcs_git.txt. Without it, I get a ...

c391156f96357593fa18fccee305401e3f82a1a6 authored over 2 years ago by Daniel Martí <[email protected]>
cmd/compile: rework induction variable detector

Induction variable detection is still not quite right. I've added
another failing test.

Redo th...

2acd3646fc448b760e82fcace189adda94a1904a authored over 2 years ago by Keith Randall <[email protected]>
os/exec: clarify that Wait must be called

Fixes #52580

Change-Id: Ib2dd8a793b9c6fcb083abb3f7c346f6279adefc9
Reviewed-on: https://go-revie...

53a4152d478d75ef4b71e428b9d69ed54144081f authored over 2 years ago by Ian Lance Taylor <[email protected]>
cmd/internal/notsha256: add purego tag as needed

This permits building the package with gccgo, when using gccgo
as a bootstrap compiler.

Fixes #...

177306f6305b35bf6993c2d74baa7fb60cd3f5d4 authored over 2 years ago by Ian Lance Taylor <[email protected]>
cmd/dist: use purego tag when building the bootstrap binaries

This is in addition to the current math_big_pure_go tag.
Using purego ensures that we can build ...

f4755fc7333f524666f6ba3140cee0d180bce8b3 authored over 2 years ago by Ian Lance Taylor <[email protected]>
misc/cgo/test: make TestSetgidStress cheaper

TestSetgidStress spawns 1000 threads, which can be expensive on
some platforms or slow builders....

4484c30f788835d8dda0afcefdb12e4b25b2c312 authored over 2 years ago by Cherry Mui <[email protected]>
test: recognize new gofrontend error message

The new gofrontend message matches other gofrontend error messages,
so adjust the test to accept...

2007599dc83aff17d8261338e8d2ab1f2c518a9b authored over 2 years ago by Ian Lance Taylor <[email protected]>
cmd/compile: drop "buildcfg" from no instrument packages

Package buildcfg was added to this list by CL 403851, but package
buildcfg does not exist.

This...

d602380f58e2a2ab4b262c7d69b78ff634cba5e8 authored over 2 years ago by Michael Pratt <[email protected]>
cmd/go: make module@nonexistentversion failures reusable

CL 411398 added the -reuse flag for reusing cached JSON output
when the remote Git repository ha...

c1110910713766eb06d75ed48db3722d318a845e authored over 2 years ago by Russ Cox <[email protected]>
cmd/go: add -reuse flag to make proxy invocations more efficient

The go list -m and go mod download commands now have a -reuse flag,
which is passed the name of ...

5f305ae8e5796ea3821088863a6842117c58da72 authored over 2 years ago by Russ Cox <[email protected]>
cmd/go: record origin metadata during module download

This change adds an "Origin" JSON key to the output of
go list -json -m and go mod download -jso...

84e091eef033255b4a3fdb515d677faa135714dc authored over 2 years ago by Russ Cox <[email protected]>
build/constraint: update doc to mention a feature added in Go 1.17

The pkg documentation mentions that the "//go:build" syntax "will be"
added in Go 1.17. In fact,...

ceda93ed673294f0ce5eb3a723d563091bff0a39 authored over 2 years ago by Cristian Greco <[email protected]>
runtime: pass correct string to exits on Plan 9

In CL 405901 the definition of exit in the Plan 9 go runtime
was changed like so:

- ...

3cf79d96105d890d7097d274804644b2a2093df1 authored over 2 years ago by Ori Bernstein <[email protected]>
net/http: omit invalid header value from error message

Updates #43631

Change-Id: I0fe3aafdf7ef889fed1a830128721393f8d020e6
GitHub-Last-Rev: c359542d74...

e822b1e26e20ef1c76672c0b77b0fd8a97a1fe84 authored over 2 years ago by Alexander Yastrebov <[email protected]>
cmd/go, go/build: clarify build constraint docs

Clarify that the //go:build line is an expression of constraints,
not a constraint itself.

Fixe...

4a2a3bca180509bc39fe99992e16b5e0a45e0e43 authored over 2 years ago by Ian Lance Taylor <[email protected]>
flag: highlight support for double dashes in docs

Updating examples, to show that double dashes are also permitted. This has been easy to miss pre...

9a4d5357f40c367fcad279184f245290ba0a8fb9 authored over 2 years ago by Sebastian Gassner <[email protected]>
[dev.unified] cmd/compile/internal/walk: RType fields for range assignments

This CL adds extra fields to RangeStmt that can be used when
desugaring into primitive assignmen...

d667be88310de6f91d9f1a88d949ea6c5b48650d authored over 2 years ago by Matthew Dempsky <[email protected]>
go/types, types2: document that exported predicates are unspecified for invalid type arguments

Per discussion on the issue.

For #53595.

Change-Id: Iefd161e5c7e792d454652cbe831a0c2d769f748e
...

c847a2c9f024f47eee25c132f2d80e7037adea36 authored over 2 years ago by Robert Griesemer <[email protected]>
go/types, types2: re-enable a couple of commented out tests

Change-Id: Ibb27012b18fc0f0f9f9ef74cc120e7ef981e6d43
Reviewed-on: https://go-review.googlesource...

405c269b858941c46e35fb9a92b45aa75c61561c authored over 2 years ago by Robert Griesemer <[email protected]>
go/doc/comment: support links in lists in comments

The proposed (#51082) new go doc comment additions supports lists,
links, and doc links, but doe...

aad9382e590265efb5e5fa3591c30486dcf215e0 authored over 2 years ago by Ben Sarah Golightly <[email protected]>
os: fix a typo in path_windows.go

I believe the path_windows.go file has a typo, which is fixed in this PR

Change-Id: Ibf1a7189a6...

af725f42864c8fb56afcf3ba76d2df7d372534e4 authored over 2 years ago by AndreasHGK <[email protected]>
[dev.unified] all: merge master (993c387) into dev.unified

Conflicts:

- test/run.go: textual conflict in 1.18 known failures list

Merge List:

+ 2022-06-...

1b838e95562b20c1268a3c9145d46510e034e61f authored over 2 years ago by Matthew Dempsky <[email protected]>
os: simplify deadline fluctuation tests

This applies the net package CL 365334, CL 366176, CL 372215 to the os
package.

CL 365334:

...

993c387032fb569ca8fe1ff2b3c1822304c0ecca authored over 2 years ago by Ian Lance Taylor <[email protected]>
cmd/go/internal/modindex: remove spurious field from index_format documentation

The 'path' field was removed in an earlier revision to the format.

While auditing the format, I...

4914e4e334b33cd823a770bd5860f525aad44c61 authored over 2 years ago by Bryan C. Mills <[email protected]>
[dev.unified] cmd/compile: refactor `range` desugaring

This CL refactors the code responsible for emitting the user-visible
assignments within a range ...

0a503cf43a58e3a514f254c7dba1daf654557b17 authored over 2 years ago by Matthew Dempsky <[email protected]>
[dev.unified] cmd/compile/internal/noder: implicit conversions for multi-valued expressions

This CL changes GOEXPERIMENT=unified to insert implicit conversions
for multi-valued expressions...

3635b07d16c9fe3f344b3271fb3bf7029d8b4001 authored over 2 years ago by Matthew Dempsky <[email protected]>
[dev.unified] cmd/compile/internal/noder: refactor N:1 expression handling

Pull all multi-value expression handling logic into a new multiExpr
helper method.

Change-Id: I...

e7219cc093aca07bdb7179fa1a42d44e56eaf9d4 authored over 2 years ago by Matthew Dempsky <[email protected]>
[dev.unified] test: tweak nilcheck test

A subsequent CL will change Unified IR to emit extra temporary
variables for multi-value express...

2f3ef73e18ba9e2433248ca2f5d9c2fb3647a07d authored over 2 years ago by Matthew Dempsky <[email protected]>
[dev.unified] test: break escape_iface.go into unified/nounified variants

The assignment `sink, *(&ok) = y.(int)` should (and does) escape a
value to the heap, but this d...

95d7ce9ab1dea5dface92736305470965a41f61e authored over 2 years ago by Matthew Dempsky <[email protected]>
[dev.unified] test: relax live_regabi.go

Unified IR will soon introduce additional temporary variables for
multi-valued expressions, whic...

f751319a0b51b9557a2f7f6000e692769f78da01 authored over 2 years ago by Matthew Dempsky <[email protected]>
cmd/go: include module root in package index key

The package index format includes the directory relative to the module
root. The module root for...

981d5947aff1551a1c0787664b77c4ac1e8f6c6a authored over 2 years ago by Bryan C. Mills <[email protected]>
cmd/go: add a 'sleep' command for script tests

Due to mtime skew we don't index mutable packages with an mtime
younger than 2 seconds. In order...

84db00ffd1c0e11180fc433df1ef7521de37a49b authored over 2 years ago by Bryan C. Mills <[email protected]>
[dev.unified] cmd/compile/internal/walk: fix typo in debug print

We want to print `init` here. We called `ir.TakeInit(r)` earlier, so
`r.Init()` always evaluates...

e3cdc981c802350780a3eec109980acf28fc8746 authored over 2 years ago by Matthew Dempsky <[email protected]>
cmd/compile: fix prove pass when upper condition is <= maxint

When the terminating condition is <= X, we need to make sure that
X+step doesn't overflow.

Fixe...

31b8c23c5702f129aca9241bbb2132c90b1929cc authored over 2 years ago by Keith Randall <[email protected]>
spec: retitle section on "Assignments" to "Assignment statements"

This permits a clear distinction between an individual assignment
and an assignment statement wh...

17083a2fdf4475c3f11a3e6a0ef8cb595a5fc4d6 authored over 2 years ago by Robert Griesemer <[email protected]>
test: add regress test for #53619

Works with cmd/compile, but fails with gccgo currently.

Updates #53619.

Change-Id: I787faa9584...

4d95fe6653b531b549b68f83c85d5a66468a44cf authored over 2 years ago by Matthew Dempsky <[email protected]>
debug/pe: add IMAGE_FILE_MACHINE_LOONGARCH{64,32}

Related: https://github.com/MicrosoftDocs/win32/pull/1067

Change-Id: I946253f217a5c616ae4a19be4...

6a7c64fde5407e83f12475b9a0a1e6315d246ba8 authored over 2 years ago by Guoqi Chen <[email protected]>
net/http: preserve nil values in Header.Clone

ReverseProxy makes a distinction between nil and zero-length header values.
Avoid losing nil-nes...

b2cc0fecc2ccd80e6d5d16542cc684f97b3a9c8a authored over 2 years ago by Damien Neil <[email protected]>
cmd/internal/obj/arm64: save LR and SP in one instruction for small frames

When we create a thread with signals blocked. But glibc's
pthread_sigmask doesn't really allow u...

64ef16e77795957d47e3889bca9483d6f3099bbf authored over 2 years ago by Cherry Mui <[email protected]>
go/token: use atomics not Mutex for last file cache

Previously, FileSet would cache the last *File found by a lookup,
using a full (exclusive) mutex...

0750107074c39f7b846515de47c2857cbdb7e3d6 authored over 2 years ago by Alan Donovan <[email protected]>
net/http: don't strip whitespace from Transfer-Encoding headers

Do not accept "Transfer-Encoding: \rchunked" as a valid TE header
setting chunked encoding.

Tha...

e5017a93fcde94f09836200bca55324af037ee5f authored over 2 years ago by Damien Neil <[email protected]>
runtime: add race annotations to cbs.lock

cbs.lock protects a map. The map implementation is race instrumented
regardless of which package...

20760cff001e9acc05627dfeab42ea50b57920e6 authored over 2 years ago by Michael Pratt <[email protected]>
[dev.unified] test: add regress test for generic select statements

The Go 1.18 frontend ICEs on select case clauses that involve an
implicit conversion.

Change-Id...

2280d897d6e936b47565504227355ad9a509c916 authored over 2 years ago by Matthew Dempsky <[email protected]>
crypto/x509/pkix: move crl deprecation message

There was a deprecation message on RevokedCertificate which was
intended to be on CertificateLis...

e6c0546c54f6f3fa7c6cb5002ecc839bc89d5d20 authored over 2 years ago by Roland Shoemaker <[email protected]>
cmd/internal/obj/mips,s390x,riscv: save LR after decrementing SP

Following CL 412474, for the rest of the LR architectures. On
MIPS(32/64), S390X, and RISCV, the...

3562977b6fe944b2c3da0455bdd6e9294c47c931 authored over 2 years ago by Cherry Mui <[email protected]>
runtime: add race annotations to metricsSema

metricsSema protects the metrics map. The map implementation is race
instrumented regardless of ...

d6481d5b9662b29453004204746945a93a6b4eb2 authored over 2 years ago by Michael Pratt <[email protected]>
crypto/x509: improve RevocationList documentation

Adds documentation for a handful of RevocationList fields.

Updates #50674

Change-Id: I26b83855...

bd1783e812bf10f5829b742135ef886623cccc5c authored over 2 years ago by Roland Shoemaker <[email protected]>
cmd/internal/obj/arm64: fix BITCON constant printing error

For some 32-bit instructions whose first operand is a constant, we
copy the lower 32 bits of the...

160414ca6a30a210b82fb09abbd3541802a51017 authored over 2 years ago by eric fang <[email protected]>
cmd/go: pass --no-decorate when listing git tags for a commit

This avoids a parse error when the user's global .gitconfig sets
log.decorate to true.

Fixes #5...

a30f4346674ec43bf576e6f56a9cd1c7ca482e1f authored over 2 years ago by hidu <[email protected]>
os/exec: on Windows, suppress ErrDot if the implicit path matches the explicit one

If the current directory is also listed explicitly in %PATH%,
this changes the behavior of LookP...

3580ef9d64bdc0176cde032d170737a6e67ef8f2 authored over 2 years ago by Bryan C. Mills <[email protected]>
cmd/compile: fix generic inter-inter comparisons from value switch statements

If value is a non-empty interface and has shape, we still need to
convert it to an interface{} f...

34f3ac5f165d50356d3a8940dc87b77e9b2b7fb9 authored over 2 years ago by Cuong Manh Le <[email protected]>
cmd/go/internal/modfetch: cache latest revinfo in Versions func

The responses have been cached by the web2 package before removed
it in CL 170879. This change a...

7df0a002e64e92f35db5a70e64345651ad2cbf97 authored over 2 years ago by Baokun Lee <[email protected]>
test: add more tests for const decls with ommitted RHS expressions

Add analogous tests to go/types and types2 test suites.
Make sure "assert" built-in is available...

d5bf9604aa597d23085435701f5f8d1584596dbd authored over 2 years ago by Robert Griesemer <[email protected]>
test: add test that gofrontend failed to compile

For #51475

Change-Id: Ie1b27304687225194a323dc8305e5d62578fff4f
Reviewed-on: https://go-review....

533082d1a08fd2c3b0c7ee43f3cf5c29f4e12d84 authored over 2 years ago by Ian Lance Taylor <[email protected]>
runtime: clean up unused function gosave on loong64

Change-Id: I28960a33d251a36e5e364fa6e27c5b2e13349f6b
Reviewed-on: https://go-review.googlesource...

47e792e22eb0dd85c0197e32c2791f252be7244d authored over 2 years ago by Guoqi Chen <[email protected]>
cmd/go: omit build metadata that may contain system paths when -trimpath is set

CGO flag variables often include system paths for header files and
compiled libraries. The point...

a6e5be0d30770e8bd1ba1e4bac2089218df121d9 authored over 2 years ago by Bryan C. Mills <[email protected]>
api: correct debug/pe issue number for Go 1.19 changes

It was #51868 not #51686.

For #53310.

Change-Id: I2cf28ca4de65e7030fdbd05e7f32fe42c8f3ca0a
Rev...

d3ffff2790059226ae3aa90856d687e138701b5c authored over 2 years ago by Russ Cox <[email protected]>
cmd/go/internal/modload: fix doc comment

Change-Id: Ib7f47c7fc2fa5db3adbe51612b1e7a9bb49647b5
Reviewed-on: https://go-review.googlesource...

751cae8855f34116b0596d15cd499bb07b4e6747 authored over 2 years ago by Russ Cox <[email protected]>
go/printer: report allocs and set bytes

We now get more than just time/op.

name time/op
Print-16 6.29ms ± 3%

name spee...

85d7bab91d9a3ed1f76842e4328973ea75efef54 authored over 2 years ago by Daniel Martí <[email protected]>
[dev.unified] cmd/compile: drop package height from Unified IR importer

CL 410342 removed package height, but still needs to keep writing out 0
for iexport for compatib...

4b78ece3d7cc34ae7a5175177159599d381400c4 authored over 2 years ago by Cuong Manh Le <[email protected]>
[dev.unified] cmd/compile/internal/types2: remove package height

Same as CL 410342, but for types2.

Updates #51734

Change-Id: I6d6cb8fbb7567d3acf0b8cec0fa74f13...

398d46d538e70852c6e8c50dc4fb9e1ef3c3a97c authored over 2 years ago by Cuong Manh Le <[email protected]>
net: really skip Windows PTR tests if we say we are skipping them

For #38111

Change-Id: I2651687367af68ee070ea91106f4bc18adab2762
Reviewed-on: https://go-review....

3af5280c003038e5fea1a84e7e57e85e96e131a3 authored over 2 years ago by Ian Lance Taylor <[email protected]>
net: avoid darwin/arm64 platform bug in TestCloseWrite

On darwin_arm64, reading from a socket at the same time as the other
end is closing it will occa...

a42573c2f1d6a806439ec0cf65ace0508a37747f authored over 2 years ago by Bryan C. Mills <[email protected]>
html/template: fix typo in content_test.go

esacped -> escaped

Change-Id: I253c46b30bb1cf7cdfb4668628907d16428fefb9
GitHub-Last-Rev: accd0e...

68289f39f0019ff5c03e047d68e5b7f6a9f9e9e2 authored over 2 years ago by SemihBKGR <[email protected]>
cmd/link: link against libsynchronization.a for -race on windows

As of LLVM rev 41cb504b7c4b18ac15830107431a0c1eec73a6b2, the
race detector runtime now refers to...

c3bea70d9b3b80ceb7733cd7bde0cdf0a1bfd0d0 authored over 2 years ago by Than McIntosh <[email protected]>
test: add test that caused gofrontend crash

For #52871

Change-Id: Id6102222a8b1ec8a84b716425bed0e349c65dbc4
Reviewed-on: https://go-review....

f093cf90bff4bfc4e0a304283eef0d2445d67538 authored over 2 years ago by Ian Lance Taylor <[email protected]>
test: add test that caused gofrontend crash

The gofrontend crashed importing a complex 0 constant.

For #52862

Change-Id: Ia87d8eadb9c5ddf5...

155612a9b981eb32b2312659409fc46bac535c90 authored over 2 years ago by Ian Lance Taylor <[email protected]>