Mikhail Mazurskiy
Mikhail Mazurskiy
> Copying it early creates often-unnecessary garbage (when the page is never viewed), and allowing it to be overwritten would corrupt that data. But isn't this the current situation -...
Some discussion on the same issue of stat handlers is in https://github.com/grpc/grpc-go/issues/6660.
For gRPC instrumentation I suggest to consider doing this refactoring as part of the change https://github.com/open-telemetry/opentelemetry-go-contrib/issues/197.
Conflict resolved, ready for merge.
@joejulian Hi! I wonder if there is a reason this is not getting merged but getting bumped each time? It shouldn't cause any breakage, it fixes a data race. It's...
Thank you! No pressure, just wanted to see if there is some other reason apart from lack of time.
Pros for such methods: - readability, the test author's intent is captured more precisely: ``` java assertThat(array).hasSameSizeAs(collection); ``` reads a lot better than ``` java assertThat(array).hasSize(collection.size()); ``` The less steps...
From wiki: ``` FEST Assertions 2.0 is a Java library that provides a fluent interface for writing assertions. Its main goal is to improve test code readability and make maintenance...
You meant ``` java public interface ComparableAssert