renthraysk

Results 3 comments of renthraysk

Get() only returns the first element of a slice. Have to iterate over the slice. Also use canonical values. ``` func AddVary(w http.ResponseWriter, value string) { value = textproto.CanonicalMIMEHeaderKey(value) for...

Only see two BSFQ instructions with go version devel go1.20-b726b0cadb Fri Oct 28 23:35:08 2022 +0000 linux/amd64 One is in B() and the other is from B() being in-lined into...

Seem to remember commenting on a similar issue, that couldn't do the same with binary.Uvarint(). #31666 But now with for loop inlining since added to go, Uvarint() can be made...