Withdrawn: 8356255: Add Stable Field Updaters to allow efficient lazy field evaluations

2025-09-04 Thread duke
On Mon, 5 May 2025 13:41:22 GMT, Per Minborg wrote: > This sketch shows how "Stable Updaters" can be used to create stable > computations of `@Stable` fields. Only one updater is needed per class, > similar to `AtomicIntegerFieldUpdater`. This pull request has been closed without being integra

Re: RFR: 8349910: Implement JEP 517: HTTP/3 for the HTTP Client API [v16]

2025-09-04 Thread Daniel JeliƄski
On Thu, 4 Sep 2025 14:06:52 GMT, Daniel Fuchs wrote: >> Hi, >> >> Please find here a PR for the implementation of [JEP 517: HTTP/3 for the >> HTTP Client API](https://openjdk.org/jeps/517). >> >> The CSR can be viewed at [JDK-8350588: Implement JEP 517: HTTP/3 for the >> HTTP Client API](http

Re: jdk.httpserver 101 status code closing connection

2025-09-04 Thread Josiah Noel
I've been playing around with it, and it looks like the interim problem of 1xx requests can be resolved if sendResponseHeaders is modified so that the sentHeaders is not set to true for 1xx status codes. The fix would be: - Check for 1xx status code - If so, do not close the streams - fl