Results 13 issues of Ernesto Jiménez

Chapter 2 contains the following phrase: > The difference seems immaterial, but it is worth noting that sequential consistency does not compose. However, it's not clear what you mean when...

### What do we want to do? We have a middleware that captures unexpected errors and sends them to our error reporting infrastructure. So far, we had been using `errors.As(err,...

Same thing we did in https://github.com/goadesign/clue/pull/90

The project has a couple of important requirements: 1. Running `runtime.LockOSThread` and `gallium.Loop` on the `main` function 2. Bundling the binary for certain features to work. e.g: the `menu` example...

There will be different security requirements for the HTTP connections from `libchromiumcontent`. 1. Restricting what domains/URLs `libchromiumcontent` has access to. 2. Starting an HTTP server embedded in the app that...

Right now there are some cases where `Equals` fails where `EqualValues` passes. e.g: comparing `assert.Equal(t, uint32(5), 5)` However, `Equal` is a broader term and seems to imply that it would...

enhancement
help wanted

There's a good deal of issues related to inconsistencies (e.g: argument ordering in `assert`) and confusing configuration (e.g: `mock.Times(0)` meaning any number of times). Fixing those would require releasing a...

revisit

Problem: we are using the package to integrate with a swift server that returns the `Last-Modified` header with `UTC` TZ instead of `GMT`. This causes [`time.Parse(http.TimeFormat, res.Header.Get("Last-Modified"))`](https://github.com/ncw/swift/blob/b964f2ca856aac39885e258ad25aec08d5f64ee6/swift.go#L1753) to fail, because...

enhancement

Hi @davecgh, Is it possible to setup spew to print a trailing comma for all elements in a map/array? It would help with https://github.com/stretchr/testify/issues/288 Also, is it possible to do...