l0rinc
l0rinc
Fixes https://github.com/brettwooldridge/HikariCP/issues/1212 --- Seeing that the Postgres JDBC driver [explicitly checks for closed connections](https://github.com/pgjdbc/pgjdbc/blob/master/pgjdbc/src/main/java/org/postgresql/jdbc/PgConnection.java#L1639) during `setNetworkTimeout`: ``` Caused by: org.postgresql.util.PSQLException: This connection has been closed. at org.postgresql.jdbc.PgConnection.*checkClosed*(PgConnection.java:857) at org.postgresql.jdbc.PgConnection.setNetworkTimeout(PgConnection.java:1639) at...
Hey, We're trying out `js-joda` as a ` moment` alternative for `TypeScript`. So far we like it, and have a question. Knowing that these return the expeced results: ```typescript LocalDate.of(2017,1,10)...
The current https://github.com/javaslang/javaslang homepage is quite dry, newcomers won't be sold instantly by the idea - every link clicked halves the audience. The best examples from the tests and http://www.javaslang.io/javaslang-docs...
`removeAll` and `retainAll` seem to have the same usages, I think they should come in pairs: where there is one, the other should be also. `Traversable` should: ``` java /**...
Where block elements lack consistency in many cases, e.g.: - derived parameterizations (`b = a + 1`) aren't data providers - data providers cannot refer to their value - data...
Hey, I was combining many (>10.000) similar file names to a unified regexp (all escaped and `|`-ed). In Java it compiles (though is extremely slow), but in Re2/j it fails...
Hey, thanks for sharing this little library! Since `UUID`s are sometimes the result of hashing calculations (e.g. `MessageDigest.getInstance("md5")#digest`), it may make sense to extend the lib with `FastUUID.toString(byte[] uuid)` and...
For even better performance, it could even take an existing byte[] array, fill it with values and not create any garbage. This would be great especially on Java 9+, where...
## What happened? See: https://github.com/palantir/gradle-docker/commit/4e6e9001b9b50bea0b353b5b8e092295e5af7ff9#r40970860 ## What did you want to happen?
In Kotlin you can create method names with spaces - they're supported in JUnit already. E.g. ```java @Benchmark fun `transitive dependency calculation`() = dependencies.transitive(root) ``` The bytecode will actually contain...