Joe Tsai

Results 382 comments of Joe Tsai

This edge case should also be added the conformance test suite to ensure that future implementations agree with each other.

I regret not writing a more descriptive rationale for the reason for the change, but the timing of the commit aligns with @neild's hypothesis.

Hi @mejedi, sorry to hear about the issue, but this is working as intended. The documentation on Diff says: > Do not depend on this output being stable. If you...

> What is the best way to showcase cmp.Diff output in docs? Unfortunately there is no answer at the moment, but the ability to evolve the output is currently deemed...

As a former maintainer, I can give some historical context (also as someone who's outside of Google now). The protobuf reflection and opaque API both began around the same time...

> Controlling generation behavior in files can make portability difficult. Let's say that a rust project sets api_level to be Opaque and we need to use them in a project...

Hi, this is not a priority for us at the moment since we primarily use HuJSON in a web UI that already provides syntax highlighting. You're welcome to contribute a...

For `RWMutex`, `Do` and `RDo` sound fine.

Alternatively, we could do: ```go func WithLock(lock Locker, f func()) { lock.Lock() defer lock.Unlock() f() } func WithLockValue[T any](lock Locker, f func() T) T { lock.Lock() defer lock.Unlock() return f()...

Hi, this module is hosted on GitHub, so the inability to get the package is almost certainly an issue with the Go module proxy or GitHub itself. I don't think...