Re: RFR: 8283707: Support version format on Windows [v2]

2022-07-16 Thread Alexey Semenyuk
> 8283707: Support version format on Windows Alexey Semenyuk has updated the pull request incrementally with one additional commit since the last revision: Comments fixed and better naming in the code. - Changes: - all: https://git.openjdk.org/jdk/pull/9507/files - new:

RFR: 8290402: jpackage exe uninstallers don't return correct exit code in case of failure

2022-07-16 Thread Alexey Semenyuk
8290402: jpackage exe uninstallers don't return correct exit code in case of failure - Commit messages: - 8290402: jpackage exe uninstallers don't return correct exit code in case of failure Changes: https://git.openjdk.org/jdk/pull/9532/files Webrev:

Re: RFR: JDK-8277095 : Empty streams create too many objects [v2]

2022-07-16 Thread j3graham
On Tue, 16 Nov 2021 20:53:26 GMT, kabutz wrote: >> This is a draft proposal for how we could improve stream performance for the >> case where the streams are empty. Empty collections are common-place. If we >> iterate over them with an Iterator, we would have to create one small >> Iterator

RFR: 8290400: Must run exe installers in jpackage jtreg tests without UI

2022-07-16 Thread Alexey Semenyuk
8290400: Must run exe installers in jpackage jtreg tests without UI - Commit messages: - 8290400: Must run exe installers in jpackage jtreg tests without UI Changes: https://git.openjdk.org/jdk/pull/9531/files Webrev: https://webrevs.openjdk.org/?repo=jdk=9531=00 Issue:

RFR: 8290398: jpackage exe instellers are not installed in jtreg tests

2022-07-16 Thread Alexey Semenyuk
8290398: jpackage exe instellers are not installed in jtreg tests - Commit messages: - 8290398: jpackage exe instellers are not installed in jtreg tests Changes: https://git.openjdk.org/jdk/pull/9530/files Webrev: https://webrevs.openjdk.org/?repo=jdk=9530=00 Issue:

RFR: 8283707: Support version format on Windows

2022-07-16 Thread Alexey Semenyuk
8283707: Support version format on Windows - Commit messages: - Create separate tests for the new feature. - Trailing whitespaces fixed - Better test coverage - Bugfixes after manual testing - 8283707: Support version format on Windows Changes:

Re: RFR: JDK-8277095 : Empty streams create too many objects [v2]

2022-07-16 Thread j3graham
On Tue, 16 Nov 2021 20:53:26 GMT, kabutz wrote: >> This is a draft proposal for how we could improve stream performance for the >> case where the streams are empty. Empty collections are common-place. If we >> iterate over them with an Iterator, we would have to create one small >> Iterator

RFR: Merge jdk19

2022-07-16 Thread Jesper Wilhelmsson
Forwardport JDK 19 -> JDK 20 - Commit messages: - Merge remote-tracking branch 'jdk19/master' into Merge_jdk19 - 8281969: Bad result for the snippet @link tag if substring/regex consists of whitespace - 8290250: Shenandoah: disable Loom for iu mode - 8290252: Add TEST.properties

Re: RFR: 8290316: Ensure that all directory streams are closed in java.base [v2]

2022-07-16 Thread Chris Hegarty
On Sat, 16 Jul 2022 03:35:06 GMT, Bernd wrote: >> Ryan Ernst has updated the pull request incrementally with one additional >> commit since the last revision: >> >> address formatting feedback > > src/java.base/share/classes/java/time/chrono/HijrahChronology.java line 1041: > >> 1039:

Re: RFR: 8290316: Ensure that all directory streams are closed in java.base [v2]

2022-07-16 Thread Chris Hegarty
On Fri, 15 Jul 2022 19:33:56 GMT, Ryan Ernst wrote: >> This commit guards uses of Files methods returning path streams in >> java.base to use try-with-resources. > > Ryan Ernst has updated the pull request incrementally with one additional > commit since the last revision: > > address