Jake Wharton

Results 1657 comments of Jake Wharton

There are two external samples we manage in the Redwood repo which use Zipline: - https://github.com/cashapp/redwood/tree/trunk/samples/emoji-search - https://github.com/cashapp/redwood/tree/trunk/test-app Of course, you have to contend with that repo which is also...

No, it is not. But you could use the underlying `QuickJs` type for that. It is the raw JS engine.

I think that perhaps we want to consider accepting a frame clock even when using immediate mode. This would allow you to use an at-most-once-a-second frame clock either directly, or...

I was thinking that there was some advantage to still using the immediate mode such as immediately running if the period had already expired, but you're right that's just clock...

That seems like a good outcome! Suspending in the middle of an unsafe operation means another coroutine scheduled on the same thread could see invalid state. Larger question is why...

> even though the access to a buffer will be properly synchronized This doesn't sound like proper synchronization, though, if I'm understanding your scenario. Any other thread trying to access...

These will probably be `havingKeys()` and `havingValues()` based on the discussion in #522 and #521.

This is basically #4134 and https://issuetracker.google.com/issues/327250276, although in that case the interface becomes empty as a result of shrinking, rather than starting empty. From Retrofit's perspective an empty interface _is_...

Unless you all want to do me a solid and give me [the Mockito treatment 😁](https://r8.googlesource.com/r8/+/291cedfd6a0e5748293d8c9537b9b629b5f3a707%5E!).

In my experience the class instance that flows into `create` is almost exclusively a class literal rather than being sourced externally. The `Retrofit` instance can be passed around or provided...