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

cmd/fix: disallow cgo errors in tests

The 'cgo' command invoked by 'go fix' was not valid when built with
-trimpath, but the test was ...

github.com/hack-pad/go - 17de9e2d18a62e28bb8032b04d81835e7705d4c7 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/go: automatically disable cgo on systems with no C compiler

The documentation for cgo has always said:

> The cgo tool is enabled by default for native buil...

github.com/hack-pad/go - 52d9e41ac303cfed4c4cfe86ec6d663a18c3448d authored almost 2 years ago by Russ Cox <[email protected]>
runtime/race: do not use cgo on macOS

The use of an empty import "C" to trigger cgo in runtime/race
serves two purposes:

1. Cause the...

github.com/hack-pad/go - 5bf9aeba1cfec8804425f3838b661fd6c2eb26ff authored almost 2 years ago by Russ Cox <[email protected]>
cmd/dist: simplify old code

Now that all uses of "go test" have been converted over to the new
abstraction, we can delete th...

github.com/hack-pad/go - 4d1052b0d4e8916fefb542ba8a6f9d325db214f6 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: convert host tests to use goTest

This adds support for host tests to goTest and registerTest and
modifies all uses of registerHos...

github.com/hack-pad/go - bf5b58708931bcbc04f5bb1359093c6fbc01cf0c authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: convert most remaining tests to use goTest

This converts most of the remaining manual "go test" command line
construction in cmd/dist to us...

github.com/hack-pad/go - 898d000c39af73e6d71e89e82c558b343d764e36 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: restructure cgo_test

Currently, dist test has a single test called "cgo_test" that runs a
large number of different "...

github.com/hack-pad/go - 36ce2ece09f74cc8d71cc1d097b62be6264ddb86 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: make registerTest take a goTest

The overall goal is to make registerTest the primary entry point for
adding dist tests and to co...

github.com/hack-pad/go - 135770abea9170dd518c636b70bb58329f008af9 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: use goTest for manual go test invocations

This CL rewrites everywhere in dist that manually constructs an
exec.Cmd to run "go test" to use...

github.com/hack-pad/go - 2946c887babdafd8e92550723d5bd0aeb5613335 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: introduce "go test" abstraction

This introduces an abstraction for constructing and running "go test"
commands. Currently, dist ...

github.com/hack-pad/go - c3a0854e31155de9baad65da70e8ffb653f3b721 authored almost 2 years ago by Austin Clements <[email protected]>
math/rand: deprecate Seed

Programs that call Seed and then expect a specific sequence
of results from the global random so...

github.com/hack-pad/go - ad7dc8ad55e6540bbf285df869d4ee6c12fff0e7 authored almost 2 years ago by Russ Cox <[email protected]>
cmd/internal/obj/ppc64: add ISA 3.1B opcodes

A few new opcodes are added to support ROP mitigation on
Power10.

Change-Id: I13045aebc0b6fb09c...

github.com/hack-pad/go - e6eaf39cfaf253ebaff7fff3737f0f1d91024345 authored almost 2 years ago by Paul E. Murphy <[email protected]>
cmd/go: make testterminal18153 a normal test

Currently, cmd/go's testterminal18153 is implemented as a special test
that doesn't run as part ...

github.com/hack-pad/go - cd9d26f0da769c5644ab7956433991385259ee0a authored almost 2 years ago by Austin Clements <[email protected]>
internal/testpty: move from os/signal/internal/pty

We're going to use this for another test, so make it more accessible.

Preparation for #37486.

...

github.com/hack-pad/go - 334d8e453b5d45ede5265debc51b4775195d9ce9 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: eliminate "time" special case

The registerTest function has a special case for commands that start
with "time", but we don't u...

github.com/hack-pad/go - 80d8c77a43f2445a78bd5b5c3b113c95e49766a9 authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: eliminate registerSeqTest

This is unused, and eliminating it lets us simplify the whole
registerTest mechanism.

Preparati...

github.com/hack-pad/go - 40cb04c95bdf9a8da6aed8cfe8f32075e0ecc4ac authored almost 2 years ago by Austin Clements <[email protected]>
cmd/dist: add doc comments to some functions

I keep having to reconstruct how dist test's command system works.
This CL documents the main fu...

github.com/hack-pad/go - 9c402305179e4d59bcbefe01629d38fc26808c43 authored almost 2 years ago by Austin Clements <[email protected]>
testing: in TestRacyOutput, ensure that the Run calls complete before cleanup

Also tweak the failure message added in CL 352349.

Updates #18741.
Updates #48515.

Change-Id: ...

github.com/hack-pad/go - 8c17505da792755ea59711fc8349547a4f24b5c5 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/dist: add curiously missing GOOS/GOARCH combinations

The cmd/dist cgo_test enumerates a large number of platforms in
various special cases. Some comb...

github.com/hack-pad/go - 0266671e3d829c216e10e1a5ad6b4647ea5e39c4 authored almost 2 years ago by Austin Clements <[email protected]>
net: remove unused goLookupHost method

Change-Id: I62b9d0dcbec647fdd3279d78b9999dd933ff0bbd
GitHub-Last-Rev: f83db66c935dd7a14128d1e87c...

github.com/hack-pad/go - 38218f398758f336c4848783b27a02847c317afc authored almost 2 years ago by Mateusz Poliwczak <[email protected]>
go/types, types2: ensure invalid generic types are marked as invalid

When detecting invalid types, we may detect cycles through instances.
Ensure that the uninstanti...

github.com/hack-pad/go - 70f585f018bd534a15933eb80e2812387d2283f5 authored almost 2 years ago by Robert Findley <[email protected]>
testing: reject calls to Run within Cleanup callbacks

Calling t.Run inside t.Cleanup can mess up the execution order of
registered Cleanup callbacks. ...

github.com/hack-pad/go - 978ce7e252b0d6ff0a19f66206ed5f3eca281059 authored almost 2 years ago by Changkun Ou <[email protected]>
internal/goroot: report PkgfileMap error on invalid line

Ref. https://go-review.googlesource.com/c/go/+/442303/comment/7caca6eb_0ebe4d51/

Change-Id: Id3...

github.com/hack-pad/go - 7c8c209b45ebe5c3d7979c44e53216f61e8b5f2a authored almost 2 years ago by Tobias Klauser <[email protected]>
crypto/x509: add support for PKCS8/PKIX X25519 key encodings

This specifically doesn't add support for X25519 certificates.
Refactored parsePublicKey not to ...

github.com/hack-pad/go - 80c5bbc627a37929ea571e99f0f15cb059fdaf70 authored almost 2 years ago by Filippo Valsorda <[email protected]>
crypto/ecdh: move ECDH method to PrivateKey

Fixes #56052

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

github.com/hack-pad/go - dafc9152047d14d511b37cdd8770324a90c43969 authored almost 2 years ago by Filippo Valsorda <[email protected]>
test: fix noinit on noopt builder

Fix noopt build break from CL 450136 by not running test.

I can't reproduce the failure locally...

github.com/hack-pad/go - 5947a07d72076f96eb6fb8e54b7979748962713b authored almost 2 years ago by Russ Cox <[email protected]>
cmd/compile: handle simple inlined calls in staticinit

Global variable initializers like

var myErr error = &myError{"msg"}

have been converted to st...

github.com/hack-pad/go - b1678e508bf04b32fcd8153d09c39ff25b51d287 authored almost 2 years ago by Russ Cox <[email protected]>
cmd/compile: do not emit a few more basic types from every compilation

We already emit types for any and func(error) string in runtime.a
but unlike the other pre-emitt...

github.com/hack-pad/go - cb5534c1c6d80727cb38a602f3ad5ba1a8b693d5 authored almost 2 years ago by Russ Cox <[email protected]>
doc/go1.20: document new sync.Map methods

For #51972.

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

github.com/hack-pad/go - c085c6cbff448830913d8e7e9b1141475eeda59e authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/compile: be more careful about pointer incrementing in range loops

For range loops, we use a pointer to the backing store that gets
incremented on each iteration o...

github.com/hack-pad/go - 8477562ce54868958f0f84f30815a220128aacf7 authored almost 2 years ago by Keith Randall <[email protected]>
crypto/rsa: return err when key too small to compute salt for RSA PSS

When PSSSaltLengthAuto is passed to SignPSS, and the key size is too
small to create a valid sal...

github.com/hack-pad/go - d03e442e2dace16ce125aa073a3c6ac8484d4457 authored almost 2 years ago by Roland Shoemaker <[email protected]>
cmd/addr2line: use the test binary as 'addr2line' instead of rebuilding it twice

This not only reduces the latency of the test, but also respects
build flags like '-race' and '-...

github.com/hack-pad/go - 318ceda632c3e961b2d883262ea57f06ab09d06d authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/addr2line: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default based on the test\'s deadline
and sends SIGQUIT (where supported)...

github.com/hack-pad/go - b95e9bc41e2d1e6c0c2077659f5996a68dc54c41 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/vet: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 0df08b955371b7953350a834fd27c594fc45fe73 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/vet: use the test binary as 'vet' instead of rebuilding it

This not only reduces the latency of the test, but also respects
build flags like '-race' and '-...

github.com/hack-pad/go - 509ac2ca6dbda4fff7a0e4e25589bb8827c897c2 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/pprof: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - ddf78189d47ff97afb76d3b4e47edbf3eb0ee11c authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/pprof: use the test binary as 'pprof' instead of rebuilding it

This not only reduces the latency of the test, but also respects
build flags like '-race' and '-...

github.com/hack-pad/go - a68f9113a2d4043ef28d2e4395485ee187e5532d authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/pack: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 3e1519d05a640701e1a2f1d9ba737fc912a1b624 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/pack: use the test binary as 'pack' instead of rebuilding it

This not only reduces the latency of the test, but also respects
build flags like '-race' and '-...

github.com/hack-pad/go - af7437cc8a62ca21b907628aed3ee484d4220317 authored almost 2 years ago by Bryan C. Mills <[email protected]>
go/internal/gcimporter: backport flattenImports optimization

Backport of go.dev/cl/450755 from the x/tools importer.

Change-Id: Ia9a2cc038d589a4cde1b31f7448...

github.com/hack-pad/go - 8373bfe88e92a77a498caeab2ca729330b007483 authored almost 2 years ago by Matthew Dempsky <[email protected]>
cmd/objdump: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 10661bd95225cc9d4e85bffe0de63e797ff4f2ac authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/objdump: use the test binary as 'objdump' instead of rebuilding it

This not only reduces the latency of the test, but also respects
build flags like '-race' and '-...

github.com/hack-pad/go - a3d545933fcc8bdd2edad56cc3f8c2aa6140814d authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/nm: use the test binary as 'nm' instead of rebuilding it

This not only reduces the latency of the test, but also respects
build flags like '-race' and '-...

github.com/hack-pad/go - 5e73f6a02928518bd8ea0a7b1112ce5e536d5dd6 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/link: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 0b82b670ed0ba6826ce8215e816df9c8016df323 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/internal/goobj: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 40e1e2e93eaa7d42cc2a3c9ff813710d36cace51 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/internal/archive: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - d703ad54bcf6268e1f1813b261067421b7caa816 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/internal/obj: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 5ccee1199e11b830ae32772d5ebc7b35e356b7f3 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/internal/moddeps: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 6484e813b5ec80a399ed1b8e4608070db2144b39 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/go: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - c9f7370a096a8b5c2db5996b8b6adbad4e2747d5 authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/compile: use testenv.Command instead of exec.Command in tests

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 2cb103ff58aab6a02cf94cebdb7c20d1e518f1ed authored almost 2 years ago by Bryan C. Mills <[email protected]>
cmd/cover: use testenv.Command instead of exec.Command

testenv.Command sets a default timeout based on the test's deadline
and sends SIGQUIT (where sup...

github.com/hack-pad/go - 9754bc7bb75fad4c645fa8057789c843ff537d81 authored almost 2 years ago by Bryan C. Mills <[email protected]>
go: use testenv.Command instead of exec.Command in tests

This may help to diagnose whether the hang observed in
https://build.golang.org/log/d03db1d27515...

github.com/hack-pad/go - a171f3fe49f8c5aa96189a822dbb8e3ef6900f91 authored almost 2 years ago by Bryan C. Mills <[email protected]>
net: rewrite nsswitch.conf parsing to work like other parsers

Seems simpler than having two different parsing mechanisms.

Change-Id: I4f8468bc025f8e03f59ec9c...

github.com/hack-pad/go - 37ca171ce79a86924b7db4dd07b1e7760cfed4fc authored almost 2 years ago by Ian Lance Taylor <[email protected]>
crypto/rsa: fix loop variable capture in test

Should fix builds.

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

github.com/hack-pad/go - 678cd71d11f927fcde0c1fa5d380860ce77f8391 authored almost 2 years ago by Cherry Mui <[email protected]>
cmd/compile: add testing-flag guard to package-is-collected assert

On advice of the department of garbage collection, forcing a garbage
collection generally does n...

github.com/hack-pad/go - 96711e4d8b9247a9b8502efef1b8714dd9e1915a authored almost 2 years ago by David Chase <[email protected]>
sync/atomic: allow linked list of atomic pointers again

For #56603, CL 448275 added a _ [0]T field to atomic.Pointer,
so that different kinds of atomic....

github.com/hack-pad/go - b14cf3d93ae5c477dd35f13f6ba41044f01a7f7d authored almost 2 years ago by Russ Cox <[email protected]>
crypto/x509: Reallow duplicate attributes in CSRs.

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

github.com/hack-pad/go - 56d18207823d6e1c18ca46409180c40ae800230c authored almost 2 years ago by Rob Stradling <[email protected]>
sync: add new Map method Swap, CompareAndSwap, CompareAndDelete

name time/op
SwapCollision/*sync_test.DeepCopy...

github.com/hack-pad/go - 395323c4d013f94c7e7c776959f460e83774114c authored almost 2 years ago by Changkun Ou <[email protected]>
cmd/compile: fix missing typecheck for static initialization slice

CL 440455 fixed missing walk pass for static initialization slice.
However, slicelit may produce...

github.com/hack-pad/go - 03a18104735c78ad71cbd67d59b25bdc7fe8dcdf authored almost 2 years ago by Cuong Manh Le <[email protected]>
runtime: clarify finalizer semantics for tiny objects

This change clarifies that a finalizer is not guaranteed to run,
not only for zero bytes objects...

github.com/hack-pad/go - 80d487111ba8fe1d0ddcd04972046070e2e4bbe9 authored almost 2 years ago by Changkun Ou <[email protected]>
crypto/rsa: add a test walking through every key size

We already had some tests for special cases such as PSS with 513 bit
keys. The upcoming backend ...

github.com/hack-pad/go - 1fcd4e9099c33b4baa74713d5639e61158d10b49 authored almost 2 years ago by Filippo Valsorda <[email protected]>
runtime/pprof: scale mutex profile samples when they are recorded

Samples in the mutex profile have their count and duration scaled
according to the probability t...

github.com/hack-pad/go - 30b1af00ff142a3f1a5e2a0f32cf04a649bd5e65 authored almost 2 years ago by Nick Ripley <[email protected]>
doc/go1.20: add release notes for net/http and net/http/httputil

For #41773
For #41773
For #50465
For #51914
For #53002
For #53896
For #53960
For #54136
For #542...

github.com/hack-pad/go - 8cca427d17d56cfa7bdf63386bc78cf946ecb5bf authored almost 2 years ago by Damien Neil <[email protected]>
doc/go1.20: add release notes for archive/zip, encoding/binary, mime

For #48866
For #54139
For #54801

Change-Id: Iafe72ccc7e756ec1edb5bb7e8e90d385458cff29
Reviewed-...

github.com/hack-pad/go - 6df542159b195f4564ea1f380dd95eddba5fb2b9 authored almost 2 years ago by Damien Neil <[email protected]>
doc/go1.20: add a release note for multiple error wrapping

For #53435.

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

github.com/hack-pad/go - 787f8167e433e156ead1b06a2f965f415b3635ec authored almost 2 years ago by Damien Neil <[email protected]>
cmd/compile: remove manually implemented popcount in _gen/main.go

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

github.com/hack-pad/go - b4ff4792989853b82150c1dc136ba024f6a09d0a authored almost 2 years ago by Jorropo <[email protected]>
cmd/pprof: debug TestDisasm

If pprof -disasm fails, print the profile content for debugging.

For #56574.

Change-Id: I5d937...

github.com/hack-pad/go - 362713183a8947394d2900563e711d05c9bbd67b authored almost 2 years ago by Cherry Mui <[email protected]>
runtime: make GC see object as allocated after it is initialized

When the GC is scanning some memory (possibly conservatively),
finding a pointer, while concurre...

github.com/hack-pad/go - febe7b8e2a4dd7cce6ab8d02cf79a5430819cbe5 authored almost 2 years ago by Cherry Mui <[email protected]>
net: use a consistent dnsConfig in hostLookupOrder

Use the same dnsConfig throughout a DNS lookup operation.
Before this CL it was possible to deci...

github.com/hack-pad/go - d52883f443e1d564b0300acdd382af1769bf0477 authored almost 2 years ago by Mateusz Poliwczak <[email protected]>
cmd/vet: enable timeformat analyzer

Fixes #48801

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

github.com/hack-pad/go - f977ffe82dad0d8d296e898141b37c8af22f2eef authored almost 2 years ago by Tim King <[email protected]>
cmd: update vendored golang.org/x/tools for loopclosure improvements

Updates vet to report errors where a loop variable escapes the current
loop iteration by a call ...

github.com/hack-pad/go - 6a9c76524fab12553108199352fc1faa3a76d783 authored almost 2 years ago by Tim King <[email protected]>
crypto/rsa: improve benchmarks

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

github.com/hack-pad/go - a86f05e390800138c5e7de0967bebe4815765d1e authored almost 2 years ago by Filippo Valsorda <[email protected]>
net/url, net/http/httputil: accept invalid percent encodings

Per https://url.spec.whatwg.org/#percent-encoded-bytes an invalid
percent encoding should be han...

github.com/hack-pad/go - e6ebbefaf848604c8df3e2a58e146948b03e608b authored almost 2 years ago by Ian Lance Taylor <[email protected]>
Revert "runtime: delay incrementing freeindex in malloc"

This reverts commit bed2b7cf41471e1521af5a83ae28bd643eb3e038.

Reason for revert: I clicked subm...

github.com/hack-pad/go - 2b59307ac21135ab8db58e08fb98211fbedbb10d authored almost 2 years ago by Michael Knyszek <[email protected]>
crypto/x509: remove unused member Raw from certificate

As noticed in the review of the CRL RawIssuer updates (https://go-review.googlesource.com/c/go/+...

github.com/hack-pad/go - 998c11d2187d8afaa315f58f29f80b6882d2701c authored almost 2 years ago by Alexander Scheel <[email protected]>
runtime,cmd/internal/obj/x86: use TEB TLS slots on windows/amd64

This CL redesign how we get the TLS pointer on windows/amd64.

We were previously reading it fro...

github.com/hack-pad/go - da564d0006e2cc286fecb3cec94ed143a2667866 authored almost 2 years ago by qmuntal <[email protected]>
os,syscall: File.Stat to use file handle for directories on Windows

Updates syscall.Open to support opening directories via CreateFileW.

CreateFileW handles are mo...

github.com/hack-pad/go - 0f0aa5d8a6a0253627d58b3aa083b24a1091933f authored almost 2 years ago by qmuntal <[email protected]>
cmd/compile: merge zero constant ISEL in PPC64 lateLower pass

Add a new SSA opcode ISELZ, similar to ISELB to represent a select
of value or 0. Then, merge ca...

github.com/hack-pad/go - dc6b7c86df3cac29c3506ef8b251345b8d914496 authored almost 2 years ago by Paul E. Murphy <[email protected]>
os: don't request read access from CreateFile in Stat

CL 448897 changed os.Stat to request GENERIC_READ access when using
CreateFile to examine a file...

github.com/hack-pad/go - 24fc64028c0faa7fcbdae2bf2a2ded825713c982 authored almost 2 years ago by Damien Neil <[email protected]>
doc/go1.20: add a release note for (*testing.B).Elapsed

Updates #43620.

Change-Id: If2b6f37d79c055ca5799071bf70fcc9d12b8a2a0
Reviewed-on: https://go-re...

github.com/hack-pad/go - 6234e467e50b35e967b9a91f8b6fa01fa6691bfa authored almost 2 years ago by Bryan C. Mills <[email protected]>
doc/go1.20: add release notes for cmd/go changes

Updates #41696.
Updates #50332.
Updates #41583.

Change-Id: I99e96a2996f14da262570a5cb5273dcdce4...

github.com/hack-pad/go - f02bc56d299e9cd7c264333488695fa70ddc937b authored almost 2 years ago by Bryan C. Mills <[email protected]>
crypto/x509: expand package docs and clarify package target

Fixes #26624

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

github.com/hack-pad/go - ed615aaf5bd6bb9ab0c9d88f4e41b4d2ff07a10e authored almost 2 years ago by Filippo Valsorda <[email protected]>
doc/go1.20: add TODOs found by x/build/cmd/relnote

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

github.com/hack-pad/go - 1a6a37f997d3e3b7d594874678cfb917b6665c6c authored almost 2 years ago by Russ Cox <[email protected]>
crypto/aes: rewrite ppc64le asm-cbc routine

This loads the keys once per call, not once per block. This
has the effect of unrolling the inne...

github.com/hack-pad/go - 01d12c947c2277a46477597c2148083744ccf284 authored almost 2 years ago by Paul E. Murphy <[email protected]>
database/sql: add a missing period to end of sentence in Rows.Scan docs

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

github.com/hack-pad/go - 74b6a22057b393f198d2d86f4ea7504dacf390f5 authored almost 2 years ago by Brad Fitzpatrick <[email protected]>
testing: fix error message when a parallel Cleanup calls runtime.Goexit

Fixes #48502

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

github.com/hack-pad/go - a650e399dfc2435eb18efc430a70cba9d87cec73 authored almost 2 years ago by Changkun Ou <[email protected]>
internal/godebug: define more efficient API

We have been expanding our use of GODEBUG for compatibility,
and the current implementation forc...

github.com/hack-pad/go - ea4631cc0cf301c824bd665a7980c13289ab5c9d authored almost 2 years ago by Russ Cox <[email protected]>
archive/zip: don't read directories containing file data

Fixes #54801

Change-Id: I3d03516792975ddb09835b2621c57e12e7cbad35
GitHub-Last-Rev: 4faa7e14dcc4...

github.com/hack-pad/go - 40bdcbb483548c0b660503c3ba80f9676b98fd5f authored almost 2 years ago by Alexander Yastrebov <[email protected]>
Update to Go 1.19, test on more versions in CI (#24)

- Lint on Go 1.19.
- Test on more versions of Go: 1.16 through 1.19.
- Fix incompatibilities f...

github.com/hack-pad/hackpadfs - 765873171fe3f6effb5a11a0dde0060d6d6c1ad0 authored almost 2 years ago by John Starich <[email protected]>
spec: document the new unsafe functions SliceData, String, and StringData

For #53003.

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

github.com/hack-pad/go - c55d184151d2a1d313b96d8e835341cd1f0ec0c5 authored almost 2 years ago by Robert Griesemer <[email protected]>
math/bits: directly calculate quo/rem when hi is zero in Div64

func Div64(hi, lo, y uint64) (quo, rem uint64) {...}

math/bits.Div64 returns the quotient and r...

github.com/hack-pad/go - d092f597d7f0bef88620d7340df9079477df727f authored almost 2 years ago by ruinan <[email protected]>
Update GitHub Actions to v3 (#5)

* Update to latest actions v3
* Fix warning for "check_latest"

github.com/hack-pad/go-indexeddb - 21062e130bd12027381977d89dcbb2ec67bf65dc authored almost 2 years ago by John Starich <[email protected]>
fix: js.Wrapper was removed in go1.19 (#20)

Fixes build against go1.19

js.Wrapper was removed: add it back as JSWrapper.

https://githu...

github.com/hack-pad/hackpadfs - d2147a6be2d2f5e2c7a8f3ea549e51c2355c74de authored almost 2 years ago by Christian Stewart <[email protected]>
spec: clarify struct field and array element comparison order

Fixes #8606.

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

github.com/hack-pad/go - 2041bde2b619c8e2cecaa72d986fc1f0d054c615 authored almost 2 years ago by Robert Griesemer <[email protected]>
Fix implementations of `*.FS.ReadDir()` when reading regular files (#23)

* Add ReadDir tests for reading a file as a directory
* Fix mem.FS.ReadDir() not returning ErrN...

github.com/hack-pad/hackpadfs - 610a3a497bcd3872bc595497f7610cfb8bd7b108 authored almost 2 years ago by John Starich <[email protected]>
internal/syscall/unix: use runtime.gostring for Gostring

Under the race detector, checkptr flags uses of unsafe.Slice that
result in slices that straddle...

github.com/hack-pad/go - 122a22e0e9eba7fe712030d429fc4bcf6f447f5e authored almost 2 years ago by Ian Lance Taylor <[email protected]>
os/exec: fix TestWaitInterrupt/WaitDelay error message

As the comments say. Here we expect err to be nil instead of ctx.Err()

Change-Id: I4cd02d62ac0a...

github.com/hack-pad/go - 7e4191e686c192b9c85065fd3b8775190d3e9c5f authored almost 2 years ago by scott <[email protected]>
net: handle correctly the _gateway and _outbound hostnames for nss myhostname

Fixes #56387

Change-Id: If412134344600caefec425699398522399986d4d
GitHub-Last-Rev: f33540ef8f90...

github.com/hack-pad/go - c3aac6c010f9293319ae5dbe0592bc7706b6a161 authored almost 2 years ago by Mateusz Poliwczak <[email protected]>
all: fix problematic comments

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

github.com/hack-pad/go - 5a3243e6b60ec7b006d8b65fd564133018cad777 authored almost 2 years ago by cui fliter <[email protected]>
runtime/race: add missing copyright headers to syso import files

These were apparently missed in CL 424034.

Change-Id: I60fcdd8c16992177a23c0e701f4224b250cfabee...

github.com/hack-pad/go - 46bed9d04c5f1e0da557d79b9a35bf9331fcd33f authored almost 2 years ago by Bryan C. Mills <[email protected]>