Integrated: 8346773: Fix unmatched brackets in some misc files

2025-01-05 Thread Qizheng Xing
On Mon, 23 Dec 2024 09:45:00 GMT, Qizheng Xing wrote: > This patch fixes unmatched brackets in some files, mostly in comments, docs > and man pages. This pull request has now been integrated. Changeset: f1d85ab3 Author:Qizheng Xing URL: https://git.openjdk.org/jdk/commit/f1d85ab3e6

Re: RFR: 8346773: Fix unmatched brackets in some misc files [v3]

2025-01-05 Thread David Holmes
On Wed, 25 Dec 2024 02:34:16 GMT, Qizheng Xing wrote: >> This patch fixes unmatched brackets in some files, mostly in comments, docs >> and man pages. > > Qizheng Xing has updated the pull request incrementally with one additional > commit since the last revision: > > Revert fix in the CTW M

Re: RFR: 8345782: Refining the cases that libjsig deprecation warning is issued

2025-01-05 Thread David Holmes
On Wed, 18 Dec 2024 09:12:55 GMT, Joakim Nordström wrote: > Could I get a review of this fix to refine the warnings printed by `libjsig` > when using the deprecated `signal()`/`sigset()` functions? > > Currently the libjsig library supports chaining `signal()` and `sigset()`. > With these fun

Re: Docs for ExecutorService#close and canceled tasks

2025-01-05 Thread Alan Bateman
On 05/01/2025 10:20, Fabian Meumertzheim wrote: Hi, I recently traced a race in an application (https://github.com/bazelbuild/bazel/issues/21773) down to a particular behavior of ExecutorService#close that, to me, doesn't seem to be obvious from its documentation: If a task that has been submitt

Re: RFR: 8347009: Speed ​​up parseInt and parseLong [v5]

2025-01-05 Thread Shaojin Wen
On Sun, 5 Jan 2025 11:01:18 GMT, Shaojin Wen wrote: >> This is an optimization for decimal Integer.parseInt and Long.parseLong, >> which improves performance by about 10%. The optimization includes: >> 1. Improve performance by parsing 2 numbers at a time, which has performance >> improvements

Re: RFR: 8347009: Speed ​​up parseInt and parseLong [v5]

2025-01-05 Thread Shaojin Wen
> This is an optimization for decimal Integer.parseInt and Long.parseLong, > which improves performance by about 10%. The optimization includes: > 1. Improve performance by parsing 2 numbers at a time, which has performance > improvements for numbers with length >= 3. > 2. It uses charAt(0) for t

Docs for ExecutorService#close and canceled tasks

2025-01-05 Thread Fabian Meumertzheim
Hi, I recently traced a race in an application (https://github.com/bazelbuild/bazel/issues/21773) down to a particular behavior of ExecutorService#close that, to me, doesn't seem to be obvious from its documentation: If a task that has been submitted to the executor is canceled while it is already