nailgun
nailgun copied to clipboard
Nailgun is a client, protocol, and server for running Java programs from the command line without incurring the JVM startup overhead.
The server was sending the expected EXIT chunk, followed by an EXIT chunk containing a newline character.
Currently, all output is completely swallowed in the try-with-resources catch statements for NGSession.runImpl, as the output streams are closed before the catch blocks are run. With this change, we add...
Are there any plans to support latest JDK LTS release (or even better, JDK 12)?
When I run `mvn package` on Mac OS with Java 11 active, I see the following error: ``` ... snip ... Generating /Users/tim/src/oss/nailgun/nailgun-server/target/apidocs/help-doc.html... 1 error 34 warnings [INFO] ------------------------------------------------------------------------ [INFO]...
https://github.com/facebook/nailgun/blob/84d7725f59210f4fd03f1d18191558367829c986/nailgun-examples/src/main/java/com/facebook/nailgun/examples/Hash.java#L57 Unused value
Server's sockets are not shut down in an orderly fashion; sending heartbeats can occasionally fail
I've been working on the node nailgun client [jvmpin](https://www.npmjs.com/package/jvmpin) — updating it to work with the current nailgun server. I've noticed that occasionally I encounter an error from writing to...
I can't find any link on the main page to any documentation. This old page http://www.martiansoftware.com/nailgun/quickstart.html is helpful. The api is not self-explanatory, especially given the fact that there is...
Hi Nailgun Team How to run the java codes without adding them to the classpath? I have two HelloWorld.java files. 1/HelloWorld.java ``` public class HelloWorld { public static void main(String[]...
I tried out nailgun and kept wondering why it wasn't working, until I switched Java versions down from 12 all the way back to 8, whereupon it worked. Is it...