Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

golang/go

findleyr closed an issue on golang/go
x/pkgsite: package removal request for github.com/terenceodonoghue/golang
### What is the path of the package that you would like to have removed? github.com/terenceodonoghue/golang ### Are you the owner of this package? Yes ### What is the reason that you could not ...
josharian created a comment on an issue on golang/go
I just ran djLint on my codebase. It appears that it formats Go template actions by destroying all indentation: ``` {{ range .Choices }} {{ if .InsertText }} {{ template "collapsible-code-blo...

View on GitHub

gopherbot created a comment on an issue on golang/go
Change https://go.dev/cl/622415 mentions this issue: `cmd/compile: spell "go.runtime" correctly for inline "cheap" test`

View on GitHub

griesemer closed an issue on golang/go
go/types: inconsistent AssignableTo, ConvertibleTo behavior w/ invalid type
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.18.3 darwin/arm64 </pr...
gopherbot created a comment on a pull request on golang/go
Message from Cherry Mui: Patch Set 2: Code-Review+2 --- Please don’t reply on this GitHub thread. Visit [golang.org/cl/622075](https://go-review.googlesource.com/c/go/+/622075#message-3df6abf2d57...

View on GitHub

DmitriyMV created a comment on an issue on golang/go
> Another function proposal: > > ```go > func Drain[T any](seq iter.Seq[T]) (last T, ok bool) { > for v := range seq { > last = v > ok = true > } > return last, ok > } > ``...

View on GitHub

findleyr created a comment on an issue on golang/go
This is unlikely to get prioritized, since there are a finite number of importers and they are all working as intended. Therefore, this is an unfortunate API, but we probably won't improve it in th...

View on GitHub

findleyr created a comment on an issue on golang/go
Unfortunately, no I don't think this is something we can change. Now that we have documented this and worked around the limination, we should close and move on.

View on GitHub

seankhliao created a comment on an issue on golang/go
I was thinking more along the lines of: ```go var globalResource sync.Mutex func TestMyThing(t *testing.T) { // or Lock() if you want to just sequence the tests gotLock := globalRe...

View on GitHub

xzbdmw created a comment on an issue on golang/go
@shashank-priyadarshi One useful tip is using goland to debug, I remember there is a test file called fix_test.go, construct a similar test for missing function, and set breakpoints in undeclaredna...

View on GitHub

adonovan created a comment on an issue on golang/go
The GNU find command (last I looked) used chdir and cwd-relative operations for traversal, I assume because of some combination of (a) it being faster because it avoids repeatedly parsing the name ...

View on GitHub

seankhliao created a comment on an issue on golang/go
Duplicate of #39014

View on GitHub

seankhliao closed an issue on golang/go
container/list: Init followed by Remove (of invalid Element) leads to negative Len
### Go version go version go1.22.5 linux/amd64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='on' GOARCH='amd64' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='am...
adonovan created a comment on an issue on golang/go
The workaround is a good one, but it still relies on the race detector. I don't think the request to publish t.CheckParallel is unreasonable.

View on GitHub

gopherbot created a comment on an issue on golang/go
Change https://go.dev/cl/622395 mentions this issue: `crypto/internal/fips: add SHAKE-* ACVP test coverage`

View on GitHub

findleyr created a comment on an issue on golang/go
Sorry, we don't support the bazel integration. Perhaps you should report this to rules_go?

View on GitHub

findleyr closed an issue on golang/go
x/tools/gopls: GOPACKAGESDRIVER breaks telescope.builtin.lsp_definitions
### gopls version ``` Build info ---------- golang.org/x/tools/gopls v0.16.2 golang.org/x/tools/[email protected] h1:K1z03MlikHfaMTtG01cUeL5FAOTJnITuNe0TWOcg8tM= github.com/BurntSushi/tom...
findleyr created a comment on an issue on golang/go
Unbelievably slow builder. Going to chalk this up to builder issues, unless it recurs.

View on GitHub

findleyr closed an issue on golang/go
x/tools/gopls/internal/cmd: TestCheck failures
``` #!watchflakes default <- pkg == "golang.org/x/tools/gopls/internal/cmd" && test == "TestCheck" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.or...
adonovan created a comment on an issue on golang/go
Dup of https://github.com/golang/go/issues/69912

View on GitHub

adonovan closed an issue on golang/go
x/tools/internal/gcimporter: TestIssue69912 failures [consistent failure]
``` #!watchflakes default <- pkg == "golang.org/x/tools/internal/gcimporter" && test == "TestIssue69912" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chrom...
adonovan created a comment on an issue on golang/go
The Init method has an undocumented postcondition: all elements of the list are now invalid. It could dynamically assert this condition by adding a counter to every element and to the list itsel...

View on GitHub

seankhliao created a comment on an issue on golang/go
note that we can't change the `Channel` interface definition for backwards compatibility reasons.

View on GitHub

gopherbot created a comment on a pull request on golang/go
Message from Keith Randall: Patch Set 6: Code-Review+1 --- Please don’t reply on this GitHub thread. Visit [golang.org/cl/620855](https://go-review.googlesource.com/c/go/+/620855#message-4ab04e53...

View on GitHub

gopherbot pushed 1 commit to master golang/go
  • cmd/compile/internal/ssa: fix PPC64 shift codegen regression CL 621357 introduced new generic lowering rules which c... 1846dd5

View on GitHub

gopherbot closed an issue on golang/go
cmd/internal/testdir: Test/codegen/shift.go failures [consistent failure]
``` #!watchflakes default <- pkg == "cmd/internal/testdir" && test == "Test/codegen/shift.go" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8...
BrushAway starred golang/go
gopherbot created a comment on a pull request on golang/go
Message from Keith Randall: Patch Set 2: Code-Review+1 --- Please don’t reply on this GitHub thread. Visit [golang.org/cl/622075](https://go-review.googlesource.com/c/go/+/622075#message-615e0f21...

View on GitHub

gopherbot created a comment on a pull request on golang/go
Message from Keith Randall: Patch Set 2: Code-Review+2 --- Please don’t reply on this GitHub thread. Visit [golang.org/cl/622075](https://go-review.googlesource.com/c/go/+/622075#message-b0c6ac5c...

View on GitHub

gopherbot created a comment on a pull request on golang/go
Message from Keith Randall: Patch Set 6: Code-Review+2 --- Please don’t reply on this GitHub thread. Visit [golang.org/cl/620855](https://go-review.googlesource.com/c/go/+/620855#message-e8a1de32...

View on GitHub

Load more