Ecosyste.ms: OpenCollective

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

Hackpad

We strive for making code editing in the browser a powerful, streamlined experience.
Collective - Host: opensource - https://opencollective.com/hackpad - Website: https://hackpad.org - Code: https://github.com/hack-pad

go/doc/comment: add heuristics for common badly formatted comments

In a set of 55M Go doc comments drawn from the latest version of
all public Go modules known to ...

github.com/hack-pad/go - 3651a6117e9a88576615c29c4faf7eeec55d7691 authored over 2 years ago by Russ Cox <[email protected]>
doc/go_mem: update revision date

CL 381315 added major revisions but neglected to update the date.

For #50859.

Change-Id: I086a...

github.com/hack-pad/go - 4c08260c51c6ebe405a78a30f970014af763ca38 authored over 2 years ago by Russ Cox <[email protected]>
doc/go1.19: gc requires -p=importpath

For #51400

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

github.com/hack-pad/go - 7271a0a287fdd765f29c193163b0f1305edb6205 authored over 2 years ago by Austin Clements <[email protected]>
doc/go1.19: document Resolver.PreferGo

Updates #51400

Change-Id: I61733574362d4cf3cb65122bd13361e5c0f6728c
Reviewed-on: https://go-rev...

github.com/hack-pad/go - c1e2ecbaf93b360f3384a23c77a01c2280b9e58e authored over 2 years ago by Brad Fitzpatrick <[email protected]>
cmd/go: use index to match packages in dependency modules

If we're trying to search in a module in the module cache, instead
iterate over the packages in ...

github.com/hack-pad/go - 11195c60e6197016c0d5d32b04d4cb0ca7594014 authored over 2 years ago by Michael Matloob <[email protected]>
[dev.unified] cmd/compile: export/import implicit attribute for conversion exprs

So they can be formatted more presicely, and make it easier in the
transition to Unified IR.

Up...

github.com/hack-pad/go - 46ddf0873e48de0062fbc67d058ddb13147cb9fe authored over 2 years ago by Cuong Manh Le <[email protected]>
[dev.unified] cmd/compile: fix missing method value wrapper in unified IR

Unified IR uses to generate wrappers after the global inlining pass, so
it needs to apply inlini...

github.com/hack-pad/go - a8780f94c3eb19dda8aaa15ad83468b2d54a0e5a authored over 2 years ago by Cuong Manh Le <[email protected]>
[dev.unified] cmd/compile: remove package height

After CL 410654, symbols are now sorted by package path, package height
is not necessary anymore...

github.com/hack-pad/go - 3a1f1e15757e4c2fd310e3659eefff577d87717b authored over 2 years ago by Cuong Manh Le <[email protected]>
[dev.unified] cmd/compile: only sort symbols by name and package path

Since CL 393715, the path of package being compiled is now always known,
so symbols can be sorte...

github.com/hack-pad/go - df7cb59de427dcfee9af0713ecf8b7033948303b authored over 2 years ago by Cuong Manh Le <[email protected]>
all: boringcrypto post-merge cleanup

This CL addresses the comments on CL 403154.

For #51940.

Change-Id: I99bb3530916d469077bfbd530...

github.com/hack-pad/go - ea5d7cbc2644643331bd675b1ebdf0aaac7419f1 authored over 2 years ago by Russ Cox <[email protected]>
go/doc/comment: do not turn ``` into “`

``` is Markdown, not Go doc comment, but some small fraction of users get confused.

In a set of...

github.com/hack-pad/go - 6c7b223c2bfa700d9e1dc53d58c1c998493126e0 authored over 2 years ago by Russ Cox <[email protected]>
go/doc/comment: add doc comment

A CL in the website repo will add go.dev/doc/comment.

One of the final steps for #51082.

Chang...

github.com/hack-pad/go - ce757e94e028a3c4b490a460b7b8b8266ae38fe4 authored over 2 years ago by Russ Cox <[email protected]>
cmd/compile: cast riscv64 rewrite shifts to unsigned int

This appeases Go 1.4, making it possible to bootstrap GOARCH=riscv64 with
a Go 1.4 compiler.

Fi...

github.com/hack-pad/go - 95547aee8c6377e73919d6f0b99484152fb3de04 authored over 2 years ago by Joel Sing <[email protected]>
[dev.unified] cmd/compile/internal/noder: push exprBlank up into assignment handling

Blanks can only appear on the LHS of an assignment. Instead of
handling them as an arbitrary exp...

github.com/hack-pad/go - b39ac808714add90df425298c1f1bdc9d47cfd45 authored over 2 years ago by Matthew Dempsky <[email protected]>
[dev.unified] cmd/compile/internal/noder: add optExpr for optional expressions

Previously, {writer,reader}.expr would allow for nil
expressions (i.e., no expression at all, no...

github.com/hack-pad/go - 55fc07e16416bd3677c81bb6379ac8f9e881e5cf authored over 2 years ago by Matthew Dempsky <[email protected]>
strconv: fix typo in atof.go

strings for 'NaN' -> string for 'NaN'

Change-Id: Ia415644a1b651e6ef9996ad24dd9708a60e57dfc
GitH...

github.com/hack-pad/go - d43ddc1f3fb25b4338433435caae7e6f4b3138a9 authored over 2 years ago by [email protected] <[email protected]>
cmd/link/internal/loadpe: handle _main reference properly

When building CGO internal linking on windows 386, make sure to avoid
rewriting references to "_...

github.com/hack-pad/go - 2fa45a4fcd57070967f081f3a5c33014c3f29fea authored over 2 years ago by Than McIntosh <[email protected]>
go/types, types2: simplify implementation of validType (fix TODO)

Now that validType is using the correct type nest (CL 409694),
the top entry of the type nest co...

github.com/hack-pad/go - fc9707594910452cce3fba794fa9ffe541e8cefa authored over 2 years ago by Robert Griesemer <[email protected]>
go/types, types2: use type nest to detect type cycles (fix validType)

validType was using a global type info map to detect invalid recursive
types, which was incorrec...

github.com/hack-pad/go - 07eca49055f7ef0d73be2ca28dcc5d489db129b9 authored over 2 years ago by Robert Griesemer <[email protected]>
[dev.unified] cmd/compile/internal/noder: rename exprName to exprGlobal

More descriptive.

Change-Id: I70a07adbe1d395da797fe15b54d2a1106f5f36a9
Reviewed-on: https://go-...

github.com/hack-pad/go - 6c33f1d52efd4f70fb8cdb1c3b4ea1c8c579af2a authored over 2 years ago by Matthew Dempsky <[email protected]>
doc/go1.19: add TODOs for changes to go/types

Add TODO items for significant changes to go/types: the inclusion of
Origin methods for Var and ...

github.com/hack-pad/go - 770146d5a857e8606222276040c6712b48e27e0e authored over 2 years ago by Robert Findley <[email protected]>
[dev.unified] all: update codereview.cfg for dev.unified branch

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

github.com/hack-pad/go - 4d28fcabb433a6588db4ab5f887062d9236f2397 authored over 2 years ago by Matthew Dempsky <[email protected]>
runtime: fix breakpoint in ppc64x

Currently runtime.Breakpoint generates a SIGSEGV in ppc64.
The solution is an unconditional trap...

github.com/hack-pad/go - 1b8ca75eaaff2985709ad61cc33c77a673c75a8c authored over 2 years ago by Alejandro Sáez <[email protected]>
text/template/parse: fix data race on lexer initialization

Before this change, `startParse` would write `lex.breakOK` and `lex.continueOK` when the lexer g...

github.com/hack-pad/go - 9ce28b518d9a792d2e3e741bcb38fa046891906e authored over 2 years ago by Eli Bendersky <[email protected]>
go/types, types2: ensure that named types never expand infinitely

During type-checking, newly created instances share a type checking
Context which de-duplicates ...

github.com/hack-pad/go - 47e34ca533b118bd47061b15fc7918563f4837a7 authored over 2 years ago by Robert Findley <[email protected]>
go/types, types2: store Named instance information separately

Separate instance information into an instance struct, to reduce memory
footprint for non-instan...

github.com/hack-pad/go - 02e69cfa9695f17902ff1806205c26a0d02a684f authored over 2 years ago by Robert Findley <[email protected]>
go/types, types2: eliminate methodList in favor of just using Named.mu

In order to clean up context after fully expanding a type (in subsequent
CLs), we must use a com...

github.com/hack-pad/go - 1323b0e8f0c5afb72afe51d8ee3bd5f66c23e353 authored over 2 years ago by Robert Findley <[email protected]>
go/types, types2: remove Named.once in favor of monotonic state

Introduce a monotonic state variable to track the lifecycle of a named
type, replacing the exist...

github.com/hack-pad/go - 846f971daa03fda149a3d66a3fda6eb6a2a7484e authored over 2 years ago by Robert Findley <[email protected]>
cmd/buildid: reject rewriting legacy buildids

This resolves legacy go binaries crashing the buildid tool when the -w flag is specified.

Fixes...

github.com/hack-pad/go - 66cbf67345b1631adbee2109f5bb78fb4e321144 authored over 2 years ago by Stephen Eckels <[email protected]>
strconv: clarify ParseFloat accepts Go syntax for float literals

The documentation for strconv.ParseFloat mentions that it "accepts
decimal and hexadecimal float...

github.com/hack-pad/go - 47f806ce81aac555946144f112b9f8733e2ed871 authored over 2 years ago by Ben Hoyt <[email protected]>
runtime: fix typo in libfuzzer_arm64.s

statment -> statement

Change-Id: Ia93a466fdc20157a7d6048903e359fe8717ecb8f
GitHub-Last-Rev: 0a9...

github.com/hack-pad/go - 2730c6af9fb8a7dea9bf610699be0d543aed4da1 authored over 2 years ago by Ikko Ashimine <[email protected]>
database/sql/driver: fix typo in driver.go

ExecerContext -> ExecContext
QueryerContext -> QueryContext

Change-Id: Id3b1f44de5aa47372d59696...

github.com/hack-pad/go - a32a592c8c14927c20ac42808e1fb2e55b2e9470 authored over 2 years ago by mstmdev <[email protected]>
regexp: avoid copying each instruction executed

Inst is a 40-byte struct, so avoiding the copy gives a decent speedup:

name ...

github.com/hack-pad/go - 0293c51bc5d8ca0728913c4b7f9f92339f8fd9a6 authored over 2 years ago by Bryan Boreham <[email protected]>
doc: update Go memory model

Following discussion on #47141, make the following changes:

- Document Go's overall approach.
-...

github.com/hack-pad/go - 865911424d509184d95d3f9fc6a8301927117fdc authored over 2 years ago by Russ Cox <[email protected]>
doc/go1.19: remove TODO about LimitedReader

Rolled back in CL 410133.

For #51115.

Change-Id: I009c557acf98a98a9e5648fa82d998d41974ae60
Rev...

github.com/hack-pad/go - fc66cae490a0cd8b8cefefbc0ace7c3fb030f779 authored over 2 years ago by Russ Cox <[email protected]>
io: revert: add an Err field to LimitedReader

We are having a hard time deciding the exact semantics
of the Err field, and we need to ship the...

github.com/hack-pad/go - f8a53df314e4af8cd350eedb0dae77d4c4fc30d0 authored over 2 years ago by Russ Cox <[email protected]>
cmd/go: index standard library packages

Change-Id: I07594303a1e9833723522d5ff94577a5510ca6f0
Reviewed-on: https://go-review.googlesourc...

github.com/hack-pad/go - 21f05284c79c3e823169c62d189826f735006d43 authored over 2 years ago by Michael Matloob <[email protected]>
doc/go1.19: add TODOs for undocumented runtime features

As of this CL, release notes for all packages owned by @golang/runtime
on https://dev.golang.org...

github.com/hack-pad/go - 9d3dbd78c7ade2a874c32e248618ad44aec6e63b authored over 2 years ago by Michael Pratt <[email protected]>
doc/go1.19: add release notes for runtime packages

This documents most of the changes in runtime packages, which the major
exception of GC changes,...

github.com/hack-pad/go - 54a2f4b6763b6e9c37ac86329af1b8d8f2e51b58 authored over 2 years ago by Michael Pratt <[email protected]>
runtime: track total idle time for GC CPU limiter

Currently the GC CPU limiter only tracks idle GC work time. However, in
very undersubscribed sit...

github.com/hack-pad/go - 54bd44e5738e3a6499b8b9f9fedc7b399d333cc0 authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
runtime: avoid string allocation in printDebuglog

Either due to a new nowritebarrierrec annotation or a change in escape
analysis, printDebuglog c...

github.com/hack-pad/go - 73587b71a62f7c7a27664a207781dedae223774b authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
runtime: only use CPU time from the current window in the GC CPU limiter

Currently the GC CPU limiter consumes CPU time from a few pools, but
because the events that flu...

github.com/hack-pad/go - d7941030c94ea14e9f32a4777424387b7f505cef authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
cmd/compile/internal/escape: escape values with >PtrSize alignment

After CL 381317 there exist values that may have an alignment greater
than the pointer size for ...

github.com/hack-pad/go - 162b88265ed41e61d6af20f7ad2039ddcdf51a2c authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
cmd/go: changes to use modindex

This CL makes the changes to actually use the module index when loading
packages and instead of ...

github.com/hack-pad/go - ee87cd1dd95fe46099e393143d9a6dcccf0a6db0 authored over 2 years ago by Michael Matloob <[email protected]>
cmd/go: add functions to read index file

The data read is used for three primary functions: ImportPackage,
IsDirWithGoFiles and ScanDir. ...

github.com/hack-pad/go - 06261062e9a1875338b04aaea3b6335d73b513a7 authored over 2 years ago by Michael Matloob <[email protected]>
sync/atomic: note that alignment responsibility doesn't apply to types

For #50860.

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

github.com/hack-pad/go - 0eb7051aada1c8f115419122322002f47c1d0fea authored over 2 years ago by Michael Pratt <[email protected]>
doc/go1.19: add release notes for syscall

For #51400

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

github.com/hack-pad/go - e1036a741cbefe17d6cd97eb3b549a405287a36e authored over 2 years ago by Michael Pratt <[email protected]>
doc/go1.19: add release notes for sync/atomic

For #51400

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

github.com/hack-pad/go - 559b17fe3422f070d6cb8e68ac2ac12431d78b43 authored over 2 years ago by Michael Pratt <[email protected]>
cmd/link: fix TestLargeText

Do not need to add single quotes '' when passing the parameter value of
the -ldflags option, ot...

github.com/hack-pad/go - 7846e25418a087ca15122b88fc179405e26bf768 authored over 2 years ago by eric fang <[email protected]>
doc/go1.19: add a release note for CL 404134

For #51473.

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

github.com/hack-pad/go - 74dc84a0e54f2ad1eaec07212b2908a1e55f5e93 authored over 2 years ago by Bryan C. Mills <[email protected]>
doc/go1.19: add release note for CL 398058

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

github.com/hack-pad/go - 3b6b9a7ef0b4849d87e7d30fbf1ef3255ea99f69 authored over 2 years ago by Bryan C. Mills <[email protected]>
archive/zip: use bufio.Reset rather than NewReader

A clean up for CL 408734, suggested by Joe Tsai.

Change-Id: Ida9db0b8d31785d5640938c286c9c6c82c...

github.com/hack-pad/go - aae0bef72f97f74318bb57da24efef49b1096a67 authored over 2 years ago by Ian Lance Taylor <[email protected]>
cmd/dist: use gohostarch for ssa rewrite check

Fix a build failure when bootstrapping the Go compiler with go-bootstrap 1.4
while the environme...

github.com/hack-pad/go - b3b8d2bfeb0ad36426f8b308afda634442708c3c authored over 2 years ago by Christian Stewart <[email protected]>
archive/zip: if non-zero base offset fails, fall back to zero

This permits us to read files that earlier Go releases could read.
It is also compatible with ot...

github.com/hack-pad/go - f70b93a6e9ab6ef6ec4a9f1748f852e1601c0905 authored over 2 years ago by Ian Lance Taylor <[email protected]>
encoding/json: mention SyntaxError in Unmarshal doc comment

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

github.com/hack-pad/go - 46ab7a5c4f80d912f25b6b3e1044282a2a79df8b authored over 2 years ago by Lukas Joisten <[email protected]>
cmd/go: add index creation methods

This change functions to scan modules and packages into an intermediate
RawPackage struct and al...

github.com/hack-pad/go - 293d43e17eaae8ccb83364e401538d51c035b8a4 authored over 2 years ago by Michael Matloob <[email protected]>
cmd/go: set GIT_TRACE_CURL for tests on builders

We have noticed a pattern of connection timeouts connecting to
github.com on the builders. Addin...

github.com/hack-pad/go - 8a56c7742d96c8ef8e8dcecaf3d1c0e9f022f708 authored over 2 years ago by Bryan C. Mills <[email protected]>
cmd/compile: fix wrong unsafe.Offsetof evaluation inside generic function

For instantiated generic functions, all implicit dot operations are
resolved. Thus unsafe.Offset...

github.com/hack-pad/go - 085529bd5fa3ab508784f6a3d42f15d2dafddc65 authored over 2 years ago by Cuong Manh Le <[email protected]>
cmd/link: call syscall.FlushFileBuffers on outbuf Unmap

In the windows version of OutBuf.munmap, call syscall.FlushFileBuffers
after the call to syscall...

github.com/hack-pad/go - cfd202c701d3c1fda740a8c3c725fbb704054591 authored over 2 years ago by Than McIntosh <[email protected]>
lib/time, time/tzdata: update to 2022a

Version 2022a was released on 2022-03-15 and we can start using it for
Go 1.19. Its release anno...

github.com/hack-pad/go - db19b42ca8771c25aa09e3747812f0229d44e75c authored over 2 years ago by Dmitri Shuralyov <[email protected]>
net: permit use of Resolver.PreferGo, netgo on Windows and Plan 9

This reverts commit CL 401754 (440c9312c8) which reverted CL 400654,
thus reapplying CL 400654, ...

github.com/hack-pad/go - af88fb6502ceee973aaa118471c9d953a10a68e5 authored over 2 years ago by Brad Fitzpatrick <[email protected]>
doc: add release note for reflect.Value.{Bytes,Len,Cap}

Update #47066
Update #52411

Change-Id: I85139d774c16c9e6d1a2592a5abba58a49338674
Reviewed-on: h...

github.com/hack-pad/go - a21cf916f418d0d48f46d8f256c5994a80558a94 authored over 2 years ago by Keith Randall <[email protected]>
os: Add Windows support (#13)

Add Windows support to os.FS, including automated regression tests.

Caveat: Some specific fst...

github.com/hack-pad/hackpadfs - 9711048bd7eafcca8321fedbd6bc3ca9481ddaa1 authored over 2 years ago by John Starich <[email protected]>
mime: ignore .js => text/plain in Windows registry

This seems to be a common registry misconfiguration on Windows.

Fixes #32350

Change-Id: I68c61...

github.com/hack-pad/go - 52f68efa45a34e60e8fc5a2ad5fc124a865ac2a4 authored over 2 years ago by Ian Lance Taylor <[email protected]>
doc/go1.19: mention runtime/trace's CPU samples

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

github.com/hack-pad/go - 1247354a08a377e4731e3004528ef28e83a47dec authored over 2 years ago by Rhys Hiltner <[email protected]>
test/heapsampling.go: slow down allocation rate and reduce iterations

As far as I can tell, this test suffers from #52433. For some reason,
this seems to become more ...

github.com/hack-pad/go - 70d499cd897ce7827f8ca3f7ba284bf97216c8d8 authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
runtime: cancel mark and scavenge assists if the limiter is enabled

This change forces mark and scavenge assists to be cancelled early if
the limiter is enabled. Th...

github.com/hack-pad/go - 1f0ef6bec73e972d15e1c44307558a8263f81ea4 authored over 2 years ago by Michael Anthony Knyszek <[email protected]>
misc/cgo/testsanitizers: buffer the signal channel in TestTSAN/tsan11

This fix is analogous to the one in CL 407888.

'go vet' catches the error, but it is not run on...

github.com/hack-pad/go - 0f57c88bce9899a91686646a1e9cd7aae55911ef authored over 2 years ago by Bryan C. Mills <[email protected]>
doc: fix up race detector release note

It's already mentioned under runtime/race, we don't need it
also mentioned under runtime.

Chang...

github.com/hack-pad/go - 42f1b37b7b46714455a3a54e506bff982aa50fa2 authored over 2 years ago by Keith Randall <[email protected]>
doc: lint Markdown for trailing spaces and code blocks

MD009 Trailing spaces.
MD031 Fenced code blocks should be surrounded by blank lines.

https://gi...

github.com/hack-pad/go - 524210bbb2866156892bbc8d2da24e00a6544f95 authored over 2 years ago by John Bampton <[email protected]>
doc/go1.19: don't mention golang.org/x/crypto/ssh

CL 392134 appears to have been marked for the release notes by accident.
Remove mention of this ...

github.com/hack-pad/go - f5b5273190d2c38544298038c4fcc581dab3ae58 authored over 2 years ago by Rhys Hiltner <[email protected]>
doc: replace tabs with spaces for alignment in code snippets

Fixes #52255

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

github.com/hack-pad/go - fd0ffedae2dd9e202efc2dd7f7937baa08600d26 authored over 2 years ago by George Looshch <[email protected]>
doc/go1.19: fix strconv.Quote pkg link

For #51400.

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

github.com/hack-pad/go - 55c42c289240c15171a8d05943cf7717f1a79cd6 authored over 2 years ago by Koichi Shiraishi <[email protected]>
runtime: don't inspect the stack for delayed signals from TSAN

Cgo TSAN (not the Go race detector) intercepts signals and calls
the signal handler at a later t...

github.com/hack-pad/go - d29d0314c1ee64b2cf925b9c8ee535a6e52c5386 authored over 2 years ago by Cherry Mui <[email protected]>
cmd/compile: mark closures made for generic function expressions as wrappers

Fixes #52237

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

github.com/hack-pad/go - dbf52204751b5231b28a977c9cda3189c9493b2e authored over 2 years ago by Keith Randall <[email protected]>
internal/cpu: fix cpu cacheLineSize for loong64

We choose 64 because the L1 Dcache of Loongson 3A5000 CPU is
4-way 256-line 64-byte-per-line.

C...

github.com/hack-pad/go - ec9258029e40f7952051f5762b036b9d7f4f91f9 authored over 2 years ago by Guoqi Chen <[email protected]>
syscall: update linux/loong64 kernel ABI, emulate fstatat with statx

The linux/loong64 kernel ABI has changed a little since the inception
of the Go port; most notab...

github.com/hack-pad/go - f8c26a59a49e23074b20b91ed3c75958ddc81559 authored over 2 years ago by WANG Xuerui <[email protected]>
cmd/dist: support spaces and quotes in CC

As of CL 334732 `go build` can accept `$CC` with spaces and quotes,
which lets us easily use `zi...

github.com/hack-pad/go - 78b8e4fbce8a49d7624362242e344968c4fa8382 authored over 2 years ago by Motiejus Jakštys <[email protected]>
Revert "reflect: deprecate (Slice|String)Header"

This reverts CL 401434.

Reason for revert: We should't deprecate these without a replacement.

...

github.com/hack-pad/go - e6d8b05a61e3977f5769e8e896d24d2d26dcb23c authored over 2 years ago by Ian Lance Taylor <[email protected]>
doc/go1.19: add pdqsort change to release notes

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

github.com/hack-pad/go - 581a63c93c4a239913b574d1bfa1a4d3d02c2788 authored over 2 years ago by Eli Bendersky <[email protected]>
doc/go1.19: fix reflect pkg link and "a" section

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

github.com/hack-pad/go - 0ab71cc065c0ce70d7df8bf498723b5a1c7a89c1 authored over 2 years ago by Koichi Shiraishi <[email protected]>
runtime/internal/syscall: use correct result names for loong64

Fixes "GOARCH=loong64 go vet runtime/internal/syscall"

Change-Id: I5879eec3ff07b0c69a5a8ac8e854...

github.com/hack-pad/go - 62b38000ab42603ec217c99d187e03bd51bfa739 authored over 2 years ago by Ian Lance Taylor <[email protected]>
cmd/cgo: use --no-gc-sections if available

zig cc passes `--gc-sections` to the underlying linker, which then
causes undefined symbol error...

github.com/hack-pad/go - 16e7613b2e1861b25c6549051337d1d8a850cf63 authored over 2 years ago by Motiejus Jakštys <[email protected]>
go/printer: if comment gets formatted away, don't squash

We were dropping the preceding whitespace.

Fixes #53059

Change-Id: Ide0d6a76c463a7481ec4883a85...

github.com/hack-pad/go - 557244cef70e508f0eeaaa23903e8859d39318be authored over 2 years ago by Ian Lance Taylor <[email protected]>
net: add even more timing slop for TestDialParallel

This test expects dials of a closed port to complete in about the same
amount of time: an initia...

github.com/hack-pad/go - 757f3c802aaf3e01647e644ff7ee160af1751c63 authored over 2 years ago by Damien Neil <[email protected]>
cmd/go: place GOROOT/bin at the beginning of PATH in 'go generate' and 'go test'

This causes tests and generators that execute 'go' as a subprocess to
use the same go command as...

github.com/hack-pad/go - 78b722d8c2f764c3048c6f0344e9ebcd2687813d authored over 2 years ago by Bryan C. Mills <[email protected]>
internal/pkgbits: add Index type

Element indices are very common in the pkgbits API, so introduce a new
defined type to help make...

github.com/hack-pad/go - 4e4db1e2572190bf172bcb8532047bc18571366f authored over 2 years ago by Matthew Dempsky <[email protected]>
internal/pkgbits: finish documentation

This CL adds documentation for all exported pkgbits APIs, and removes
its UNREVIEWED comments.

...

github.com/hack-pad/go - 8841699160946263859ea492779bea4aa909f1de authored over 2 years ago by Matthew Dempsky <[email protected]>
hash/crc32: fix typo in arm64 archInitCastagnoli panic message

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

github.com/hack-pad/go - 7791e934c882fd103357448aee0fd577b20013ce authored over 2 years ago by Tobias Klauser <[email protected]>
path/filepath: do not remove prefix "." when following path contains ":".

Fixes #52476

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

github.com/hack-pad/go - 9cd1818a7d019c02fa4898b3e45a323e35033290 authored over 2 years ago by Yasuhiro Matsumoto <[email protected]>
doc/go1.19: update Go 1.19 relese note TODOs using relnote

This updates the release notes with TODOs using relnote. It also
changes all refrences of golang...

github.com/hack-pad/go - b6bcd0d1352578033eea0490790b6af3bf300b3f authored over 2 years ago by Carlos Amedee <[email protected]>
cmd/compile: catch pointless recursion on function types

If a function type has no type parameters, note when it
is visited and do not recur. (It must b...

github.com/hack-pad/go - ccf84a97501b1cc894536162479279df1e165fc5 authored over 2 years ago by David Chase <[email protected]>
builtin: clarify effect of close on receive

Fixes #53041

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

github.com/hack-pad/go - 0a30cf9536f06d52a214370e9eeb03f8bcfc1e6a authored over 2 years ago by Sean Liao <[email protected]>
go/types, types2: remove redundant calls to Named.resolve

The resolved status of a Named type should be owned by its API, and
callers should access resolv...

github.com/hack-pad/go - d5ae7a64876630ab40f7bd04fdb5ad6a3733dae7 authored over 2 years ago by Robert Findley <[email protected]>
cmd/go/internal/modfetch: wrap errors from HTTP response bodies

The Read method on the Body returned from a net/http.Transport does
not wrap errors returned by ...

github.com/hack-pad/go - 7ce38641564e5c0183bb09df8c523caf5e0ab8e1 authored over 2 years ago by Bryan C. Mills <[email protected]>
go/types, types2: don't panic with invalid recursive generic type

Add cycle detection to hasVarType to avoid infinite recursions
caused by invalid cyclic types. T...

github.com/hack-pad/go - 70668a4144c27a2100995dbbdbd97b4924cf5e35 authored over 2 years ago by Robert Griesemer <[email protected]>
cmd/compile/internal/types2: mention go.mod file when using undeclared any

Use the existing versionErrorf mechanism to report use of undeclared
any and comparable.

Also, ...

github.com/hack-pad/go - eb3ac1f5a471c07a84353ae693024a251db9845f authored over 2 years ago by Robert Griesemer <[email protected]>
misc/cgo/testsanitizers: use buffered channel in tsan12.go

os/signal.Notify requires that "the caller must ensure that c has
sufficient buffer space to kee...

github.com/hack-pad/go - 62e130226767a088ace196da90a774c9a9d14689 authored over 2 years ago by Cherry Mui <[email protected]>
runtime: add missing {TOPFRAME,NOFRAME} flag for linux/loong64

Co-authored-by: limeidan <[email protected]>
Change-Id: I0011a10f831e6c2b0da96265682212b0747f...

github.com/hack-pad/go - 61fc5df6897544d8ecf8efd5b39648a6bd121ec8 authored over 2 years ago by Guoqi Chen <[email protected]>
cmd/internal/obj: add FuncInfo SPWRITE flag for linux/loong64

Co-authored-by: limeidan <[email protected]>
Change-Id: Iac4f706fc9ff1047f1fa02f7178ebfbe38ad...

github.com/hack-pad/go - 654b03167f7d887d09a2d25bb3d1b4db9c8ae4f8 authored over 2 years ago by Guoqi Chen <[email protected]>