guava
guava copied to clipboard
Google core libraries for Java
I get the source code, branch is master,local run 'mvn clean install ', there is an error. jdk: 1.8 How can I compile successfully locally? ``` [INFO] ------------------------------------------------------------------------ [INFO] Reactor...
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.10:unpack-dependencies (unpack-guava-sources) on project guava-gwt: Artifact has not been packaged yet. When used on reactor artifact, unpack should be executed after packaging: see MDEP-98. ->...
Please consider adding: - `ImmutableIntArray.toImmutableIntArray()` - `ImmutableLongArray.toImmutableLongArray()` - `ImmutableDoubleArray.toImmutableDoubleArray()` collector methods for streams. Yes, it is possible to use the already efficient `ImmutableLongArray.copyOf(stream)`, so this would be a small convenience....
NullPointerTester in guava-testlib has support for testing against different exception types based on a private enum `ExceptionTypePolicy`. However, this is currently set as a private field with no constructor or...
@nick-someone Thanks for your reply. > Are you getting 83300 permits per second consistently? Almost yes. ``` 2020-10-25 15:41:22.701 INFO main (RateLimiterTest.java:29) - Aquired: 83261 /s 2020-10-25 15:41:23.701 INFO main...
Do you plan on implementing more hash functions? My use case is for a temporal data store, which stores XML or JSON representations in a tree structure (and eventually in...
- Added lines() in LinedReader. - Modified LineBufferTest class to test lines() function. Solves https://github.com/google/guava/issues/6067
Hello - is there any ability to limit the "rate of change" rather than setting an absolute TPS limit using the RateLimiter. I am looking to do some type of...
Guava currently uses 1.3 version for com.google.j2objc.j2objc-annotations https://github.com/google/guava/blob/0a17f4a429323589396c38d8ce75ca058faa6c64/pom.xml#L278-L282 However, 2.x branch seems to be the one which is regularly maintained (https://github.com/google/j2objc). Though there are no new versions of 1.x branch...
It's nice to have a function to test whether a particular string is in which case format. In a tool application, a string will provided by external code. And if...