Russ Cox
Russ Cox
Have all remaining concerns about this proposal been addressed? The proposal is to add ``` package structs type HostLayout struct{} ``` that can be added as a field named `_`...
Re #49085, generic methods either require (A) dynamic code generation or (B) terrible speed or (C) hiding those methods from dynamic interface checks or (D) not doing them at all....
Based on the discussion above, this proposal seems like a **[likely accept](https://go.dev/s/proposal-status#likely-accept)**. — rsc for the proposal review group The proposal is to add ``` package structs type HostLayout struct{}...
The error text shows the command being run. It is one of the few git commands that doesn't actually care about having a git repo to run, so you can...
Possible duplicate of #26145 but the error message from git is different (no mention of terminal prompts disabled).
If you can make the https form work then vgo (and old go get) will be happy. The two possible ways to do that are: 1. Add to $HOME/.gitconfig: [url...
Retitling this to "cmd/go: github private repos require special configuration". Maybe for Go 1.12 we should think about some way to get this right by default. I'm not sure exactly...
This proposal has been added to the [active column](https://go.dev/s/proposal-status#active) of the proposals project and will now be reviewed at the weekly proposal review meetings. — rsc for the proposal review...
For what it's worth, I think it's a good thing that virtual time is included in this, because it makes sure that this package _isn't_ used in production settings. It...
It sounds like the API is still: ``` // Package synctest provides support for testing concurrent code. package synctest // Run executes f in a new goroutine. // // The...