Re: RFR: 8250950: Allow per-user and system wide configuration of a jpackaged app

2022-06-04 Thread Alexey Semenyuk
On Sat, 4 Jun 2022 01:45:21 GMT, Alexander Matveev wrote: >> 8250950: Allow per-user and system wide configuration of a jpackaged app > > test/jdk/tools/jpackage/share/PerUserCfgTest.java line 174: > >> 172: action.accept(cmd); >> 173: } finally { >> 174:

Re: RFR: 8287541: Files.writeString fails to throw IOException for charset "windows-1252"

2022-06-04 Thread Andrey Turbanov
On Fri, 3 Jun 2022 16:48:46 GMT, Naoto Sato wrote: > The code path calls `String.getBytesNoRepl()`, but it blindly replaces > unmappable characters with replacements if the encoder is an `ArrayEncoder`. > Changed only to do so if `doReplace` is `true` in > `String.encodeWithEncoder()`.

Integrated: 8284199: Implementation of Structured Concurrency (Incubator)

2022-06-04 Thread Alan Bateman
On Thu, 19 May 2022 13:05:54 GMT, Alan Bateman wrote: > This is the implementation of JEP 428: Structured Concurrency (Incubator). > > This is a non-final API that provides a gentle on-ramp to structure a task as > a family of concurrent subtasks, and to coordinate the subtasks as a unit.