Jake Wharton

Results 1657 comments of Jake Wharton

The `implementation` and `api` configurations of Gradle. A db module can be an `implementation` dependency of a store module which entirely encapsulates SQL interaction behind a high-level interface with semantic...

SQL Delight is not a library though. If it were you would be able to just declare an `implementation` dependency on it and be done (like you can with an...

Any strong motivation? One reason this is nice is when you do math to determine skip values you don't have to worry about checking whether the result is positive and...

FYI #1131 moves a Darwin-specific extension function onto the actual type's companion so that it becomes visible across the Objective-C bridge. We will want to do that same here, but...

I believe when I looked the code did `configuration.add(dependencies.create(any))`. I'll look into it more.

Fix the after migration callback thing?

It wasn't receiving the db instance. Didn't we add a second type or something? Should fix that back to one.

We have no control of that.

2.0 must be next because of breaking changes. What are you looking for? It's possible, but not fun, to perform a release from a branch with back port cherry-picks.

You can use `Request.peekBody(Long.MAX_VALUE)` to get a copy of the `RequestBody`, but this has a HUGE downside: it buffers the entire response in memory. What you want is to write...