Jake Wharton

Results 1660 comments of Jake Wharton

I discussed this with Xavier [on the mailing list](https://groups.google.com/d/topic/adt-dev/lpE4kY5X9DQ/discussion). Future versions of the Android plugin will correctly merge comments.

https://github.com/fluffysquirrels/mqtt-async-client-rs/blob/master/examples/mqttc.rs Means switching from async_std to tokio? So tide to hyper, I guess?

We aren't really advertising Picasso 2.71828 since it's a breaking change from 2.5.2. So for now, the library still has use for users of 2.5.x and earlier. It will be...

@ljmerza Yours looks unrelated. The other two are Windows paths. Yours just looks like the script cannot access that folder. Are you missing a folder mapping or something?

@svenvaz You cannot run the tool from a different machine. Either use `docker -H "ssh://user@box"` or regular SSH to run the tool directly on the Plex host such that it...

This is not currently implemented but it could be optionally added.

You could do it now. ``` java Phrase_greeting greeting = Phrase.greeting(); for (String name : listOfNames) { CharSequence foo = greeting.name(name).build(this); } ``` It'll still parse the string every iteration,...

Ok what about this guy? ``` java public final class Phrase { private static Phrase instance; public static Phrase from(Context context) { if (instance == null) { instance = new...

Or: ``` java public final class Phrase { private static final SparseArray TOKENIZED = new SparseArray(); private static Locale currentLocale = Locale.getDefault(); private static ParsedTokensInSomeFormat tokensFor(Context context, int resId) {...

Yeah it's implementation is a binary search tree packed into an `int[]` with adjacent `T[]` for the values. Lookup will be O(log n) since the R ids are alphabetically distributed...