Danny Thomas

Results 106 comments of Danny Thomas

Going to set a breakpoint and catch the length, and get a heap dump and tell you exactly what the utilisation is. Certainly in the hundreds of megabytes, due to...

The final md5sums file is 33M. The StringBuilder will retain double that of course, thanks to Java's 2-byte representation of strings: ``` java.lang.StringBuilder [JNI Global, Stack Local ← checksums, md5s]...

Same here when upgrading to JDK 17 from 8: ``` # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007fd71406e06b, pid=32266,...

@marchof I couldn't find it documented, but I believe you can use Add-Opens in the manifest and you wouldn't need that code at all. It appears that's how NewRelic got...

@Godin amazing, that's a great find! Temporarily turning off the agent is indeed not a big deal because once we've dealt with illegal accesses in our migration, I doubt they'll...

Rebased around the latest changes. Should be good to go now.

Reproducer is here https://github.com/DanielThomas/gradle-issue-21490. The workaround is to configure regular project dependencies so they exist when the task graph is created. `withDependencies` should fail on any attempt of mutation that...

That's odd @ericterpstra - the script uses `describe-images` to locate the AMI, so I'm not sure how the lookup can succeed, but the instance request fail. I assume `aws configure...

Siiiick. You've picked up exactly the dependencies I'd earmarked, you'll want this guy for the WinRM stuff: https://github.com/masterzen/winrm Example usage in this project: https://github.com/masterzen/winrm-cli

WinRM example of using psexec to start a process that interacts with the console session: ``` bin/winrm -hostname 10.8.0.1 -username administrator -password 'psexec -accepteula -i 1 -u administrator -p cmd.exe...