Róbert Papp

Results 852 comments of Róbert Papp

@akshayabd this might be an answer to my question about checking code. @eskatos I would love to see this merged too, would a PR be accepted? Are there extra considerations...

Gradle Nexus Publish Plugin would use this facility to support configuration cache. The value is set via provider already, but when Configuration Cache is enabled, the serialization eagerly resolves the...

Heh, I just mentioned this to Sam yesterday. I settled on reflective access to `Glide.engine.engineJobFactory.*service`, but I didn't test it yet. Let me see how it works now.

~Here's a working version. It's not ideal because it may do many unnecessary checks. Incorporating https://gist.github.com/stefanodacchille/9995163 or `AsyncTaskPoolMonitor` may be a better solution.~ UPDATE: **this solution is flawed, doesn't work...

They should be fairly trivial. However this impl is flawed as far as I remember. I'll have to update it.

Hi @dral3x, here's the updated version. It's crazy complex, I hope it works for you as well. Watch out for the package declarations, due to visibility of Glide internals it...

@poldz123 hmm, that may also work. You can use `GlideModule.applyOptions` to call `GlideBuilder.setResizeService/setDiskCacheService`. Note that my first shared impl here is hacking those services, but it didn't work, because those...

Does Espresso do automatic idle detection on all executor services?

Ah, so it's not automatic, that sounds like my first solution, but without reflection and manual queue counting. Thanks for sharing it, it's a valuable idea!

@sumio NB: when I wrote my `GlideIdlingResource` above I also started with the executor, but that wasn't enough to get functioning UI tests. Only the heavy I/O is pushed to...