Damien Neil
Damien Neil
> @neild can we add a backport for 1.19 as well? Created #54376.
HTTP/2 has both per-connection and per-stream flow control. The behavior you're seeing is because the slow stream has consumed not just its own flow-control tokens, but the connection tokens as...
You're describing having only per-stream flow control, with no per-connection flow control. If that's what you want, then you can set `MaxUploadBufferPerConnection` to `MaxUploadBufferPerStream*MaxConcurrentStreams`, which will effectively disable connection-level flow...
> At this point in time, it's a bit awkward to merge cmpopts into cmp since there would now be two ways to get at the cmpopts functionality. Presumably everything...
> Alternatively, we could modify cmp.FilterValues to also accept a function of the form func(T) bool where it effectively performs the AND of the predicate function applies to both arguments....
I haven't thought about this in detail yet, so these are just a few ideas: - `FilterTree(T1, Continue())` makes me think of find's `-prune`. - Instead of having a way...
I think that recursive comparison may become a necessary feature at some point, but perhaps I'm wrong about that. I'd envision something like: ```go type EqualFunc func(x, y interface{}, opts...
Panic on chan and func. I'd just convert UnsafePointer to a uintptr; it's runtime dependent but so are most uintptrs. Defining an ordering for maps is straightforward, but I don't...
LGTM. (Is there no button to press for LGTM? If so, I can't find it. I miss Gerrit.)
Hm. "Module" has a very specific definition, however, revolving around go.mod files. I think we should stay away from it unless we really mean it. "PackagePrefix" is verbose, but seems...