go icon indicating copy to clipboard operation
go copied to clipboard

The Go programming language

Results 868 go issues
Sort by recently updated
recently updated
newest added

### Proposal Details The TCP_INFO support in x/sys/unix should be expanded to also cover TCP_CC_INFO. There is at least [one](https://github.com/mikioh/tcpinfo) external package providing this functionality, but since it requires unsafe...

Proposal

In this example ``` -- go.mod -- module example.com go 1.23 -- foo.go -- //go:build go1.21 package pkg import "reflect" func main() { _ = reflect.TypeFor[int] } ``` stdversion reports...

Tools

### gopls version dev version installed from https://github.com/golang/tools/commit/8fa4173de3eb0507050500109922ff5012c5d635 ### go env ```shell GO111MODULE='' GOARCH='arm64' GOBIN='' GOCACHE='/Users/emuller/Library/Caches/go-build' GOENV='/Users/emuller/Library/Application Support/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='arm64' GOHOSTOS='darwin' GOINSECURE='' GOMODCACHE='/Users/emuller/go/pkg/mod' GONOPROXY='github.com/fastly,github.com/signalsciences' GONOSUMDB='github.com/fastly,github.com/signalsciences' GOOS='darwin' GOPATH='/Users/emuller/go' GOPRIVATE='github.com/fastly,github.com/signalsciences'...

gopls
Tools

Update the help message for the go clean command to include the correct usage and flags for better clarity. This change follows instructions by Ian on this thread .

This issue tracks progress toward releasing [email protected] - [x] create or update gopls-release-branch.0.16 - [ ] update go.mod/go.sum (remove x/tools replace, update x/tools version) - [ ] tag gopls/v0.16.1-pre.1 -...

gopls
Tools

crypto/cipher has well defined interfaces with plenty of tricky requirements (about aliasing, different lengths, state) that are hard to test for and easy to overlook. cryptotest will be an interface...

Proposal-Accepted
NeedsFix
Proposal-Crypto

``` #!watchflakes default

help wanted
NeedsInvestigation
compiler/runtime

Hi, @dmitshur : When I click the ”**CHOOSE TYRJOBS**“ button to select one of the builders, such as gotip-linux-loong64, and click the “**ADD**” button, it fails, and an error message...

NeedsInvestigation
DevExp

Functions with type parameters [cannot be inlined](https://cs.opensource.google/go/x/tools/+/master:internal/refactor/inline/callee.go;l=122;drc=bcec0994e0bf81991b2e35f788768c9074a20152) at the moment. This is a feature request to make it possible to inline functions with type parameters.

NeedsFix
FeatureRequest
Tools
Refactoring

### Go version go 1.21.11 windows/amd64 ### Output of `go env` in your module/workspace: ```shell set GO111MODULE= set GOARCH=amd64 set GOBIN= set GOCACHE=C:\Users\runneradmin\AppData\Local\go-build set GOENV=C:\Users\runneradmin\AppData\Roaming\go\env set GOEXE=.exe set GOEXPERIMENT= set...

NeedsInvestigation
compiler/runtime
gabywins