Re: RFR: 8361593: Commented dead code in JDK-8342868 can be removed

2025-08-29 Thread Julian Waters
On Fri, 29 Aug 2025 20:12:42 GMT, Francesco Andreuzzi wrote: > [JDK-8342868](https://bugs.openjdk.org/browse/JDK-8342868) commented out code > rather than removing it. The code can be removed safely, as pointed out in > the PR review: #21654. Test failure is because JDK source failed to check

Re: RFR: 8361593: Commented dead code in JDK-8342868 can be removed

2025-08-29 Thread duke
On Fri, 29 Aug 2025 20:12:42 GMT, Francesco Andreuzzi wrote: > [JDK-8342868](https://bugs.openjdk.org/browse/JDK-8342868) commented out code > rather than removing it. The code can be removed safely, as pointed out in > the PR review: #21654. @fandreuz Your change (at version 09067914f31bdabe

Re: RFR: 8361593: Commented dead code in JDK-8342868 can be removed

2025-08-29 Thread Naoto Sato
On Fri, 29 Aug 2025 20:12:42 GMT, Francesco Andreuzzi wrote: > [JDK-8342868](https://bugs.openjdk.org/browse/JDK-8342868) commented out code > rather than removing it. The code can be removed safely, as pointed out in > the PR review: #21654. LGTM - Marked as reviewed by naoto (R

Re: RFR: 8361593: Commented dead code in JDK-8342868 can be removed

2025-08-29 Thread Justin Lu
On Fri, 29 Aug 2025 20:12:42 GMT, Francesco Andreuzzi wrote: > [JDK-8342868](https://bugs.openjdk.org/browse/JDK-8342868) commented out code > rather than removing it. The code can be removed safely, as pointed out in > the PR review: #21654. Removals are consistent with the ones commented out

RFR: 8361593: Commented dead code in JDK-8342868 can be removed

2025-08-29 Thread Francesco Andreuzzi
[JDK-8342868](https://bugs.openjdk.org/browse/JDK-8342868) commented out code rather than removing it. The code can be removed safely, as pointed out in the PR review: #21654. - Commit messages: - remove commented code Changes: https://git.openjdk.org/jdk/pull/27012/files Webrev

Re: RFR: 8325766: Extend CertificateBuilder to create trust and end entity certificates programmatically [v7]

2025-08-29 Thread Matthew Donovan
> This PR updates the CertificateBuilder with a new method that creates a new > instance with common fields (subject name, public key, serial number, > validity, and key uses) filled-in. One test, IPIdentities.java, is updated to > show how the method can be used to create various certificates.

Re: RFR: 8260555: Change the default TIMEOUT_FACTOR from 4 to 1 [v7]

2025-08-29 Thread Leo Korinth
> This changes the timeout factor from 4 to 1. Most of the changes add timeouts > to individual test cases so that I am able to run them with a timeout factor > of 0.7 (some margin to the checked in factor of one) > > In addition to changing the timeout factor, I am also using a library call to

Re: RFR: 8325766: Extend CertificateBuilder to create trust and end entity certificates programmatically [v7]

2025-08-29 Thread Sean Mullan
On Fri, 29 Aug 2025 15:16:04 GMT, Matthew Donovan wrote: >> This PR updates the CertificateBuilder with a new method that creates a new >> instance with common fields (subject name, public key, serial number, >> validity, and key uses) filled-in. One test, IPIdentities.java, is updated >> to s

Re: RFR: 8260555: Change the default TIMEOUT_FACTOR from 4 to 1 [v6]

2025-08-29 Thread Leo Korinth
On Tue, 26 Aug 2025 17:06:08 GMT, Matthew Donovan wrote: >> Leo Korinth has updated the pull request incrementally with two additional >> commits since the last revision: >> >> - revert added timeout, it is not needed >> - feedback from Mark Sheppard > > test/jdk/sun/security/krb5/name/Constr

Re: RFR: 8329829: HttpClient: Add a BodyPublishers.ofFileChannel method [v11]

2025-08-29 Thread Volkan Yazici
On Fri, 29 Aug 2025 08:50:52 GMT, Volkan Yazici wrote: >> Adds a new `ofFileChannel(FileChannel channel, long offset, long length)` >> method to `java.net.HttpRequest.BodyPublishers` to provide an `HttpClient` >> publisher to upload a certain region of a file. The new publisher does not >> mod

Re: RFR: 8329829: HttpClient: Add a BodyPublishers.ofFileChannel method [v12]

2025-08-29 Thread Volkan Yazici
> Adds a new `ofFileChannel(FileChannel channel, long offset, long length)` > method to `java.net.HttpRequest.BodyPublishers` to provide an `HttpClient` > publisher to upload a certain region of a file. The new publisher does not > modify the state of the passed `FileChannel`, streams the file c

Re: RFR: 8329829: HttpClient: Add a BodyPublishers.ofFileChannel method [v11]

2025-08-29 Thread Daniel Fuchs
On Fri, 29 Aug 2025 08:50:52 GMT, Volkan Yazici wrote: >> Adds a new `ofFileChannel(FileChannel channel, long offset, long length)` >> method to `java.net.HttpRequest.BodyPublishers` to provide an `HttpClient` >> publisher to upload a certain region of a file. The new publisher does not >> mod

Re: RFR: 8329829: HttpClient: Add a BodyPublishers.ofFileChannel method [v11]

2025-08-29 Thread Jaikiran Pai
On Fri, 29 Aug 2025 08:50:52 GMT, Volkan Yazici wrote: >> Adds a new `ofFileChannel(FileChannel channel, long offset, long length)` >> method to `java.net.HttpRequest.BodyPublishers` to provide an `HttpClient` >> publisher to upload a certain region of a file. The new publisher does not >> mod

Re: RFR: 8329829: HttpClient: Add a BodyPublishers.ofFileChannel method [v11]

2025-08-29 Thread Volkan Yazici
> Adds a new `ofFileChannel(FileChannel channel, long offset, long length)` > method to `java.net.HttpRequest.BodyPublishers` to provide an `HttpClient` > publisher to upload a certain region of a file. The new publisher does not > modify the state of the passed `FileChannel`, streams the file c