guava
guava copied to clipboard
Google core libraries for Java
We would want to detect anything that breaks with more recent versions than what we currently test with (Java 11). To do so, I'm told that we'll have to omit...
Newer Javadoc has done away with HTML frames, which means it's much harder to browse available classes. This is especially damaging for a project like Guava which tends to provide...
(For that matter, `ExecutorService.awaitTermination` itself -- though that change would ideally be made in Error Prone itself, rather than in our subclass `ListeningExecutorService`.) I just had a bug in my...
Seems very strange that the Range class doesn't have an overlaps(Range) or intersects(Range) method. I expect it would essentially be ``` public boolean overlaps(Range other) { return isConnected(other) && !intersection(other).isEmpty();...
Propagate sizeIfKnown for fixed-width character encodings RELNOTES=n/a
_[Original issue](https://code.google.com/p/guava-libraries/issues/detail?id=786) created by **kofemann** on 2011-11-10 at 07:56 PM_ --- Hi, sometimes you need to to match IP addresses with netmask, e.g.: 192.168.2.2 in the allowed range 192.168.2.0/24. As...
_[Original issue](https://code.google.com/p/guava-libraries/issues/detail?id=1642) created by **[email protected]** on 2014-01-22 at 09:00 PM_ --- One reason we check in our benchmarks is so that people can verify that they get equivalent results in...
Maybe this is easier to get worked on? applied patch from https://codereview.appspot.com/5271042/ Beware: It seems that there have been some refactorings to UnsignedInteger/UnsignedInts that are probably not reflected within the...
Add overloads for `checkArgument`, `checkState` and `verify` to avoid boxing of sole `double` format parameter.