James Baker
James Baker
Fixes #2720. In terms of memory allocations, this reduces the overall memory allocations of creating a Location by an order of magnitude in Java 9, and as compared to Java...
I'm trying to use Mockito in a test of a Java class I didn't write. It takes a dependency which I am stubbing out using Mockito. Skipping all of the...
per faq, filing issue with log. Seems git is struggling to connect to the ssh agent - have tried restarting SecretAgent a couple of times but no success. ``` ssh...
## What happened? With usage of Gradle toolchains, it's much more common for the Java version used for Gradle to substantially differ from the Java version used for compiling and...
## What happened? The formatter will format ```java public void initialize(SchedulerBackend newBackend) { this.backend = newBackend; schedulableBuilder = switch (schedulingMode) { case FIFO -> new ReFifoSchedulableBuilder(rootPool); case FAIR -> new...
At present, my IDE will take string literals and automatically break them across lines. An example might be ```java callMethod("some very very very long string"); ``` which it will break...
`7:53:16.426 [Thread-1] WARN c.p.d.c.e.AggressiveShutdownStrategy - Couldn't shut down containers due to btrfs volume error, see https://circleci.com/docs/docker-btrfs-error/ for more info.` this seems bogus since I'm not running in Circle CI.
I expected running ``` builder.files("foo", "bar") ``` to have the same effect as ``` builder.file("foo").file("bar") ``` which is sadly not the case. This is a bit of a UX bug.
## What happened? I have some code which I'm trying to keep as identical as possible to some third party code (rewrite of an algorithm in Java). So, I have...
## What happened? Using the PRs @iamdanfox wrote, I configured my JDK to use preview versions: ```gradle javaVersions { libraryTarget = '19_PREVIEW' distributionTarget = '19_PREVIEW' runtime = '19_PREVIEW' } ```...