Jaroslav Tulach
Jaroslav Tulach
You are right in both points, Matthias. First of all I haven't provided enough justification to convince you that the move away from Grizzly is good idea. Second, you haven't...
I believe ceb72dd0e9b192e1ce0f0ac77cc9aad07f83922c is the fix Matthias was calling for. Release 1.7.2 seems to provide stable `Generic` presenter even with Grizzly.
I am facing a dilemma, Matthias. I need to integrate the [jtulach/WebViews](https://github.com/apache/netbeans/compare/master...JaroslavTulach:jtulach/WebViews) in two weeks. Launching the HTTP server is the only solution I have for providing rich refactoring UIs,...
This PR properly implements the ideas discussed at https://github.com/oracle/graal/issues/8177#issuecomment-2376103806
[net.java.html.boot-2.0-SNAPSHOT.jar.gz](https://github.com/user-attachments/files/18385425/net.java.html.boot-2.0-SNAPSHOT.jar.gz) JAR (after `gzip -d`) contains the `Agent-Class` attribute in its manifest: ```bash /graalvm-21/bin/java \ -javaagent:net.java.html.boot-2.0-SNAPSHOT.jar \ -cp net.java.html.boot-2.0-SNAPSHOT.jar \ App.java ``` can be used to change the retention of...
### Testing with Native Image The primary goal of this change is to allow integration with [GraalVM](http://graalvm.org). Let's do a small test. Take [GraalVM repository](https://github.com/oracle/graal) at [release/graalvm-25.0](https://github.com/oracle/graal/tree/release/graal-vm/25.0) branch, in particular...
Yes, go on and replace `finalize` with (active) `ReferenceQueue`. There is no point in sticking with `finalize` - queues are more friendly to GC and provide similar experience.